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.
 
 
 

44847 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: "Normal",
  1889. height: math.unit(2.2428, "meter")
  1890. },
  1891. {
  1892. name: "Big",
  1893. height: math.unit(12, "feet")
  1894. },
  1895. {
  1896. name: "Minimacro",
  1897. height: math.unit(40, "feet"),
  1898. default: true,
  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(11, "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(11, "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(11, "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(11, "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(2.6, "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(11, "feet")
  2446. },
  2447. {
  2448. name: "Macro",
  2449. height: math.unit(302, "feet"),
  2450. default: true
  2451. },
  2452. ]
  2453. ))
  2454. characterMakers.push(() => makeCharacter(
  2455. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2456. {
  2457. frontDressed: {
  2458. height: math.unit(216, "feet"),
  2459. weight: math.unit(7000000, "lb"),
  2460. name: "Front (Dressed)",
  2461. image: {
  2462. source: "./media/characters/jazzy/front-dressed.svg",
  2463. extra: 2738 / 2651,
  2464. bottom: 41.8 / 2786
  2465. }
  2466. },
  2467. backDressed: {
  2468. height: math.unit(216, "feet"),
  2469. weight: math.unit(7000000, "lb"),
  2470. name: "Back (Dressed)",
  2471. image: {
  2472. source: "./media/characters/jazzy/back-dressed.svg",
  2473. extra: 2775 / 2673,
  2474. bottom: 36.8 / 2817
  2475. }
  2476. },
  2477. front: {
  2478. height: math.unit(216, "feet"),
  2479. weight: math.unit(7000000, "lb"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/jazzy/front.svg",
  2483. extra: 2738 / 2651,
  2484. bottom: 41.8 / 2786
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(216, "feet"),
  2489. weight: math.unit(7000000, "lb"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/jazzy/back.svg",
  2493. extra: 2775 / 2673,
  2494. bottom: 36.8 / 2817
  2495. }
  2496. },
  2497. maw: {
  2498. height: math.unit(20, "feet"),
  2499. name: "Maw",
  2500. image: {
  2501. source: "./media/characters/jazzy/maw.svg"
  2502. }
  2503. },
  2504. paws: {
  2505. height: math.unit(27.5, "feet"),
  2506. name: "Paws",
  2507. image: {
  2508. source: "./media/characters/jazzy/paws.svg"
  2509. }
  2510. },
  2511. eye: {
  2512. height: math.unit(4.4, "feet"),
  2513. name: "Eye",
  2514. image: {
  2515. source: "./media/characters/jazzy/eye.svg"
  2516. }
  2517. },
  2518. droneOffense: {
  2519. height: math.unit(9.5, "inches"),
  2520. name: "Drone (Offense)",
  2521. image: {
  2522. source: "./media/characters/jazzy/drone-offense.svg"
  2523. }
  2524. },
  2525. droneRecon: {
  2526. height: math.unit(9.5, "inches"),
  2527. name: "Drone (Recon)",
  2528. image: {
  2529. source: "./media/characters/jazzy/drone-recon.svg"
  2530. }
  2531. },
  2532. droneDefense: {
  2533. height: math.unit(9.5, "inches"),
  2534. name: "Drone (Defense)",
  2535. image: {
  2536. source: "./media/characters/jazzy/drone-defense.svg"
  2537. }
  2538. },
  2539. },
  2540. [
  2541. {
  2542. name: "Macro",
  2543. height: math.unit(216, "feet"),
  2544. default: true
  2545. },
  2546. ]
  2547. ))
  2548. characterMakers.push(() => makeCharacter(
  2549. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2550. {
  2551. front: {
  2552. height: math.unit(9 + 6/12, "feet"),
  2553. weight: math.unit(700, "lb"),
  2554. name: "Front",
  2555. image: {
  2556. source: "./media/characters/flamm/front.svg",
  2557. extra: 1751/1632,
  2558. bottom: 46/1797
  2559. }
  2560. },
  2561. buff: {
  2562. height: math.unit(9 + 6/12, "feet"),
  2563. weight: math.unit(950, "lb"),
  2564. name: "Buff",
  2565. image: {
  2566. source: "./media/characters/flamm/buff.svg",
  2567. extra: 3018/2874,
  2568. bottom: 221/3239
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Normal",
  2575. height: math.unit(9.5, "feet")
  2576. },
  2577. {
  2578. name: "Macro",
  2579. height: math.unit(200, "feet"),
  2580. default: true
  2581. },
  2582. ]
  2583. ))
  2584. characterMakers.push(() => makeCharacter(
  2585. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2586. {
  2587. front: {
  2588. height: math.unit(5 + 3/12, "feet"),
  2589. weight: math.unit(60, "kg"),
  2590. name: "Front",
  2591. image: {
  2592. source: "./media/characters/zephiro/front.svg",
  2593. extra: 2309 / 2162,
  2594. bottom: 0.069
  2595. }
  2596. },
  2597. side: {
  2598. height: math.unit(5 + 3/12, "feet"),
  2599. weight: math.unit(60, "kg"),
  2600. name: "Side",
  2601. image: {
  2602. source: "./media/characters/zephiro/side.svg",
  2603. extra: 2403 / 2279,
  2604. bottom: 0.015
  2605. }
  2606. },
  2607. back: {
  2608. height: math.unit(5 + 3/12, "feet"),
  2609. weight: math.unit(60, "kg"),
  2610. name: "Back",
  2611. image: {
  2612. source: "./media/characters/zephiro/back.svg",
  2613. extra: 2373 / 2244,
  2614. bottom: 0.013
  2615. }
  2616. },
  2617. hand: {
  2618. height: math.unit(0.68, "feet"),
  2619. name: "Hand",
  2620. image: {
  2621. source: "./media/characters/zephiro/hand.svg"
  2622. }
  2623. },
  2624. paw: {
  2625. height: math.unit(1, "feet"),
  2626. name: "Paw",
  2627. image: {
  2628. source: "./media/characters/zephiro/paw.svg"
  2629. }
  2630. },
  2631. beans: {
  2632. height: math.unit(0.93, "feet"),
  2633. name: "Beans",
  2634. image: {
  2635. source: "./media/characters/zephiro/beans.svg"
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Micro",
  2642. height: math.unit(3, "inches")
  2643. },
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(5 + 3 / 12, "feet"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Macro",
  2651. height: math.unit(118, "feet")
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2657. {
  2658. front: {
  2659. height: math.unit(5, "feet"),
  2660. weight: math.unit(90, "kg"),
  2661. name: "Front",
  2662. image: {
  2663. source: "./media/characters/fory/front.svg",
  2664. extra: 2862 / 2674,
  2665. bottom: 180 / 3043.8
  2666. }
  2667. },
  2668. back: {
  2669. height: math.unit(5, "feet"),
  2670. weight: math.unit(90, "kg"),
  2671. name: "Back",
  2672. image: {
  2673. source: "./media/characters/fory/back.svg",
  2674. extra: 2962 / 2791,
  2675. bottom: 106 / 3071.8
  2676. }
  2677. },
  2678. foot: {
  2679. height: math.unit(2.14, "feet"),
  2680. name: "Foot",
  2681. image: {
  2682. source: "./media/characters/fory/foot.svg"
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Normal",
  2689. height: math.unit(5, "feet")
  2690. },
  2691. {
  2692. name: "Macro",
  2693. height: math.unit(50, "feet"),
  2694. default: true
  2695. },
  2696. {
  2697. name: "Megamacro",
  2698. height: math.unit(10, "miles")
  2699. },
  2700. {
  2701. name: "Gigamacro",
  2702. height: math.unit(5, "earths")
  2703. },
  2704. ]
  2705. ))
  2706. characterMakers.push(() => makeCharacter(
  2707. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2708. {
  2709. front: {
  2710. height: math.unit(7, "feet"),
  2711. weight: math.unit(90, "kg"),
  2712. name: "Front",
  2713. image: {
  2714. source: "./media/characters/kurrikage/front.svg",
  2715. extra: 1,
  2716. bottom: 0.035
  2717. }
  2718. },
  2719. back: {
  2720. height: math.unit(7, "feet"),
  2721. weight: math.unit(90, "lb"),
  2722. name: "Back",
  2723. image: {
  2724. source: "./media/characters/kurrikage/back.svg"
  2725. }
  2726. },
  2727. paw: {
  2728. height: math.unit(1.5, "feet"),
  2729. name: "Paw",
  2730. image: {
  2731. source: "./media/characters/kurrikage/paw.svg"
  2732. }
  2733. },
  2734. staff: {
  2735. height: math.unit(6.7, "feet"),
  2736. name: "Staff",
  2737. image: {
  2738. source: "./media/characters/kurrikage/staff.svg"
  2739. }
  2740. },
  2741. peek: {
  2742. height: math.unit(1.05, "feet"),
  2743. name: "Peeking",
  2744. image: {
  2745. source: "./media/characters/kurrikage/peek.svg",
  2746. bottom: 0.08
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(12, "feet"),
  2754. default: true
  2755. },
  2756. {
  2757. name: "Big",
  2758. height: math.unit(20, "feet")
  2759. },
  2760. {
  2761. name: "Macro",
  2762. height: math.unit(500, "feet")
  2763. },
  2764. {
  2765. name: "Megamacro",
  2766. height: math.unit(20, "miles")
  2767. },
  2768. ]
  2769. ))
  2770. characterMakers.push(() => makeCharacter(
  2771. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2772. {
  2773. front: {
  2774. height: math.unit(6, "feet"),
  2775. weight: math.unit(75, "kg"),
  2776. name: "Front",
  2777. image: {
  2778. source: "./media/characters/shingo/front.svg",
  2779. extra: 1900/1825,
  2780. bottom: 82/1982
  2781. }
  2782. },
  2783. side: {
  2784. height: math.unit(6, "feet"),
  2785. weight: math.unit(75, "kg"),
  2786. name: "Side",
  2787. image: {
  2788. source: "./media/characters/shingo/side.svg",
  2789. extra: 1930/1865,
  2790. bottom: 16/1946
  2791. }
  2792. },
  2793. back: {
  2794. height: math.unit(6, "feet"),
  2795. weight: math.unit(75, "kg"),
  2796. name: "Back",
  2797. image: {
  2798. source: "./media/characters/shingo/back.svg",
  2799. extra: 1922/1852,
  2800. bottom: 16/1938
  2801. }
  2802. },
  2803. frontDressed: {
  2804. height: math.unit(6, "feet"),
  2805. weight: math.unit(150, "lb"),
  2806. name: "Front-dressed",
  2807. image: {
  2808. source: "./media/characters/shingo/front-dressed.svg",
  2809. extra: 1900/1825,
  2810. bottom: 82/1982
  2811. }
  2812. },
  2813. paw: {
  2814. height: math.unit(1.29, "feet"),
  2815. name: "Paw",
  2816. image: {
  2817. source: "./media/characters/shingo/paw.svg"
  2818. }
  2819. },
  2820. hand: {
  2821. height: math.unit(1.07, "feet"),
  2822. name: "Hand",
  2823. image: {
  2824. source: "./media/characters/shingo/hand.svg"
  2825. }
  2826. },
  2827. frontAlt: {
  2828. height: math.unit(6, "feet"),
  2829. weight: math.unit(75, "kg"),
  2830. name: "Front (Alt)",
  2831. image: {
  2832. source: "./media/characters/shingo/front-alt.svg",
  2833. extra: 3511 / 3338,
  2834. bottom: 0.005
  2835. }
  2836. },
  2837. frontAlt2: {
  2838. height: math.unit(6, "feet"),
  2839. weight: math.unit(75, "kg"),
  2840. name: "Front (Alt 2)",
  2841. image: {
  2842. source: "./media/characters/shingo/front-alt-2.svg",
  2843. extra: 706/681,
  2844. bottom: 11/717
  2845. }
  2846. },
  2847. pawAlt: {
  2848. height: math.unit(1, "feet"),
  2849. name: "Paw (Alt)",
  2850. image: {
  2851. source: "./media/characters/shingo/paw-alt.svg"
  2852. }
  2853. },
  2854. },
  2855. [
  2856. {
  2857. name: "Micro",
  2858. height: math.unit(4, "inches")
  2859. },
  2860. {
  2861. name: "Normal",
  2862. height: math.unit(6, "feet"),
  2863. default: true
  2864. },
  2865. {
  2866. name: "Macro",
  2867. height: math.unit(108, "feet")
  2868. },
  2869. {
  2870. name: "Macro+",
  2871. height: math.unit(1500, "feet")
  2872. },
  2873. ]
  2874. ))
  2875. characterMakers.push(() => makeCharacter(
  2876. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2877. {
  2878. side: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(75, "kg"),
  2881. name: "Side",
  2882. image: {
  2883. source: "./media/characters/aigey/side.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Macro",
  2890. height: math.unit(200, "feet"),
  2891. default: true
  2892. },
  2893. {
  2894. name: "Megamacro",
  2895. height: math.unit(100, "miles")
  2896. },
  2897. ]
  2898. )
  2899. )
  2900. characterMakers.push(() => makeCharacter(
  2901. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2902. {
  2903. front: {
  2904. height: math.unit(5 + 5 / 12, "feet"),
  2905. weight: math.unit(75, "kg"),
  2906. name: "Front",
  2907. image: {
  2908. source: "./media/characters/natasha/front.svg",
  2909. extra: 859 / 824,
  2910. bottom: 23 / 879.6
  2911. }
  2912. },
  2913. frontNsfw: {
  2914. height: math.unit(5 + 5 / 12, "feet"),
  2915. weight: math.unit(75, "kg"),
  2916. name: "Front (NSFW)",
  2917. image: {
  2918. source: "./media/characters/natasha/front-nsfw.svg",
  2919. extra: 859 / 824,
  2920. bottom: 23 / 879.6
  2921. }
  2922. },
  2923. frontErect: {
  2924. height: math.unit(5 + 5 / 12, "feet"),
  2925. weight: math.unit(75, "kg"),
  2926. name: "Front (Erect)",
  2927. image: {
  2928. source: "./media/characters/natasha/front-erect.svg",
  2929. extra: 859 / 824,
  2930. bottom: 23 / 879.6
  2931. }
  2932. },
  2933. back: {
  2934. height: math.unit(5 + 5 / 12, "feet"),
  2935. weight: math.unit(75, "kg"),
  2936. name: "Back",
  2937. image: {
  2938. source: "./media/characters/natasha/back.svg",
  2939. extra: 887.9 / 852.6,
  2940. bottom: 9.7 / 896.4
  2941. }
  2942. },
  2943. backAlt: {
  2944. height: math.unit(5 + 5 / 12, "feet"),
  2945. weight: math.unit(75, "kg"),
  2946. name: "Back (Alt)",
  2947. image: {
  2948. source: "./media/characters/natasha/back-alt.svg",
  2949. extra: 1236.7 / 1192,
  2950. bottom: 22.3 / 1258.2
  2951. }
  2952. },
  2953. dick: {
  2954. height: math.unit(1.772, "feet"),
  2955. name: "Dick",
  2956. image: {
  2957. source: "./media/characters/natasha/dick.svg"
  2958. }
  2959. },
  2960. paw: {
  2961. height: math.unit(0.250, "meters"),
  2962. name: "Paw",
  2963. image: {
  2964. source: "./media/characters/natasha/paw.svg"
  2965. }
  2966. },
  2967. },
  2968. [
  2969. {
  2970. name: "Normal",
  2971. height: math.unit(5 + 5 / 12, "feet")
  2972. },
  2973. {
  2974. name: "Large",
  2975. height: math.unit(12, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(100, "feet"),
  2980. default: true
  2981. },
  2982. {
  2983. name: "Macro+",
  2984. height: math.unit(260, "feet")
  2985. },
  2986. {
  2987. name: "Macro++",
  2988. height: math.unit(1, "mile")
  2989. },
  2990. ]
  2991. ))
  2992. characterMakers.push(() => makeCharacter(
  2993. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2994. {
  2995. front: {
  2996. height: math.unit(6, "feet"),
  2997. weight: math.unit(75, "kg"),
  2998. name: "Front",
  2999. image: {
  3000. source: "./media/characters/malik/front.svg"
  3001. }
  3002. },
  3003. side: {
  3004. height: math.unit(6, "feet"),
  3005. weight: math.unit(75, "kg"),
  3006. name: "Side",
  3007. image: {
  3008. source: "./media/characters/malik/side.svg",
  3009. extra: 1.1539
  3010. }
  3011. },
  3012. back: {
  3013. height: math.unit(6, "feet"),
  3014. weight: math.unit(75, "kg"),
  3015. name: "Back",
  3016. image: {
  3017. source: "./media/characters/malik/back.svg"
  3018. }
  3019. },
  3020. },
  3021. [
  3022. {
  3023. name: "Macro",
  3024. height: math.unit(156, "feet"),
  3025. default: true
  3026. },
  3027. {
  3028. name: "Macro+",
  3029. height: math.unit(1188, "feet")
  3030. },
  3031. ]
  3032. ))
  3033. characterMakers.push(() => makeCharacter(
  3034. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3035. {
  3036. front: {
  3037. height: math.unit(6, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Front",
  3040. image: {
  3041. source: "./media/characters/sefer/front.svg",
  3042. extra: 848 / 659,
  3043. bottom: 28.3 / 876.442
  3044. }
  3045. },
  3046. back: {
  3047. height: math.unit(6, "feet"),
  3048. weight: math.unit(75, "kg"),
  3049. name: "Back",
  3050. image: {
  3051. source: "./media/characters/sefer/back.svg",
  3052. extra: 864 / 695,
  3053. bottom: 10 / 871
  3054. }
  3055. },
  3056. frontDressed: {
  3057. height: math.unit(6, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Front (Dressed)",
  3060. image: {
  3061. source: "./media/characters/sefer/front-dressed.svg",
  3062. extra: 839 / 653,
  3063. bottom: 37.6 / 878
  3064. }
  3065. },
  3066. },
  3067. [
  3068. {
  3069. name: "Normal",
  3070. height: math.unit(6, "feet"),
  3071. default: true
  3072. },
  3073. ]
  3074. ))
  3075. characterMakers.push(() => makeCharacter(
  3076. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3077. {
  3078. body: {
  3079. height: math.unit(2.2428, "meter"),
  3080. weight: math.unit(124.738, "kg"),
  3081. name: "Body",
  3082. image: {
  3083. extra: 1225 / 1050,
  3084. source: "./media/characters/north/front.svg"
  3085. }
  3086. }
  3087. },
  3088. [
  3089. {
  3090. name: "Micro",
  3091. height: math.unit(4, "inches")
  3092. },
  3093. {
  3094. name: "Macro",
  3095. height: math.unit(63, "meters")
  3096. },
  3097. {
  3098. name: "Megamacro",
  3099. height: math.unit(101, "miles"),
  3100. default: true
  3101. }
  3102. ]
  3103. ))
  3104. characterMakers.push(() => makeCharacter(
  3105. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3106. {
  3107. angled: {
  3108. height: math.unit(4, "meter"),
  3109. weight: math.unit(150, "kg"),
  3110. name: "Angled",
  3111. image: {
  3112. source: "./media/characters/talan/angled-sfw.svg",
  3113. bottom: 29 / 3734
  3114. }
  3115. },
  3116. angledNsfw: {
  3117. height: math.unit(4, "meter"),
  3118. weight: math.unit(150, "kg"),
  3119. name: "Angled (NSFW)",
  3120. image: {
  3121. source: "./media/characters/talan/angled-nsfw.svg",
  3122. bottom: 29 / 3734
  3123. }
  3124. },
  3125. frontNsfw: {
  3126. height: math.unit(4, "meter"),
  3127. weight: math.unit(150, "kg"),
  3128. name: "Front (NSFW)",
  3129. image: {
  3130. source: "./media/characters/talan/front-nsfw.svg",
  3131. bottom: 29 / 3734
  3132. }
  3133. },
  3134. sideNsfw: {
  3135. height: math.unit(4, "meter"),
  3136. weight: math.unit(150, "kg"),
  3137. name: "Side (NSFW)",
  3138. image: {
  3139. source: "./media/characters/talan/side-nsfw.svg",
  3140. bottom: 29 / 3734
  3141. }
  3142. },
  3143. back: {
  3144. height: math.unit(4, "meter"),
  3145. weight: math.unit(150, "kg"),
  3146. name: "Back",
  3147. image: {
  3148. source: "./media/characters/talan/back.svg"
  3149. }
  3150. },
  3151. dickBottom: {
  3152. height: math.unit(0.621, "meter"),
  3153. name: "Dick (Bottom)",
  3154. image: {
  3155. source: "./media/characters/talan/dick-bottom.svg"
  3156. }
  3157. },
  3158. dickTop: {
  3159. height: math.unit(0.621, "meter"),
  3160. name: "Dick (Top)",
  3161. image: {
  3162. source: "./media/characters/talan/dick-top.svg"
  3163. }
  3164. },
  3165. dickSide: {
  3166. height: math.unit(0.305, "meter"),
  3167. name: "Dick (Side)",
  3168. image: {
  3169. source: "./media/characters/talan/dick-side.svg"
  3170. }
  3171. },
  3172. dickFront: {
  3173. height: math.unit(0.305, "meter"),
  3174. name: "Dick (Front)",
  3175. image: {
  3176. source: "./media/characters/talan/dick-front.svg"
  3177. }
  3178. },
  3179. },
  3180. [
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(4, "meters")
  3184. },
  3185. {
  3186. name: "Macro",
  3187. height: math.unit(100, "meters")
  3188. },
  3189. {
  3190. name: "Megamacro",
  3191. height: math.unit(2, "miles"),
  3192. default: true
  3193. },
  3194. {
  3195. name: "Gigamacro",
  3196. height: math.unit(5000, "miles")
  3197. },
  3198. {
  3199. name: "Teramacro",
  3200. height: math.unit(100, "parsecs")
  3201. }
  3202. ]
  3203. ))
  3204. characterMakers.push(() => makeCharacter(
  3205. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3206. {
  3207. front: {
  3208. height: math.unit(2, "meter"),
  3209. weight: math.unit(90, "kg"),
  3210. name: "Front",
  3211. image: {
  3212. source: "./media/characters/gael'rathus/front.svg"
  3213. }
  3214. },
  3215. frontAlt: {
  3216. height: math.unit(2, "meter"),
  3217. weight: math.unit(90, "kg"),
  3218. name: "Front (alt)",
  3219. image: {
  3220. source: "./media/characters/gael'rathus/front-alt.svg"
  3221. }
  3222. },
  3223. frontAlt2: {
  3224. height: math.unit(2, "meter"),
  3225. weight: math.unit(90, "kg"),
  3226. name: "Front (alt 2)",
  3227. image: {
  3228. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3229. }
  3230. }
  3231. },
  3232. [
  3233. {
  3234. name: "Normal",
  3235. height: math.unit(9, "feet"),
  3236. default: true
  3237. },
  3238. {
  3239. name: "Large",
  3240. height: math.unit(25, "feet")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(0.25, "miles")
  3245. },
  3246. {
  3247. name: "Megamacro",
  3248. height: math.unit(10, "miles")
  3249. }
  3250. ]
  3251. ))
  3252. characterMakers.push(() => makeCharacter(
  3253. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3254. {
  3255. side: {
  3256. height: math.unit(2, "meter"),
  3257. weight: math.unit(140, "kg"),
  3258. name: "Side",
  3259. image: {
  3260. source: "./media/characters/sosha/side.svg",
  3261. bottom: 0.042
  3262. }
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(12, "feet"),
  3269. default: true
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3275. {
  3276. side: {
  3277. height: math.unit(5 + 5 / 12, "feet"),
  3278. weight: math.unit(170, "kg"),
  3279. name: "Side",
  3280. image: {
  3281. source: "./media/characters/runnola/side.svg",
  3282. extra: 741 / 448,
  3283. bottom: 0.05
  3284. }
  3285. },
  3286. },
  3287. [
  3288. {
  3289. name: "Small",
  3290. height: math.unit(3, "feet")
  3291. },
  3292. {
  3293. name: "Normal",
  3294. height: math.unit(5 + 5 / 12, "feet"),
  3295. default: true
  3296. },
  3297. {
  3298. name: "Big",
  3299. height: math.unit(10, "feet")
  3300. },
  3301. ]
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3305. {
  3306. front: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(50, "kg"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/kurribird/front.svg",
  3312. bottom: 0.015
  3313. }
  3314. },
  3315. frontAlt: {
  3316. height: math.unit(1.5, "meter"),
  3317. weight: math.unit(50, "kg"),
  3318. name: "Front (Alt)",
  3319. image: {
  3320. source: "./media/characters/kurribird/front-alt.svg",
  3321. extra: 1.45
  3322. }
  3323. },
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(7, "feet")
  3329. },
  3330. {
  3331. name: "Big",
  3332. height: math.unit(12, "feet"),
  3333. default: true
  3334. },
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(1500, "feet")
  3338. },
  3339. {
  3340. name: "Megamacro",
  3341. height: math.unit(2, "miles")
  3342. }
  3343. ]
  3344. ))
  3345. characterMakers.push(() => makeCharacter(
  3346. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3347. {
  3348. front: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(80, "kg"),
  3351. name: "Front",
  3352. image: {
  3353. source: "./media/characters/elbial/front.svg",
  3354. extra: 1643 / 1556,
  3355. bottom: 60.2 / 1696
  3356. }
  3357. },
  3358. side: {
  3359. height: math.unit(2, "meter"),
  3360. weight: math.unit(80, "kg"),
  3361. name: "Side",
  3362. image: {
  3363. source: "./media/characters/elbial/side.svg",
  3364. extra: 1630 / 1565,
  3365. bottom: 71.5 / 1697
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(80, "kg"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/elbial/back.svg",
  3374. extra: 1668 / 1595,
  3375. bottom: 5.6 / 1672
  3376. }
  3377. },
  3378. frontDressed: {
  3379. height: math.unit(2, "meter"),
  3380. weight: math.unit(80, "kg"),
  3381. name: "Front (Dressed)",
  3382. image: {
  3383. source: "./media/characters/elbial/front-dressed.svg",
  3384. extra: 1653 / 1584,
  3385. bottom: 57 / 1708
  3386. }
  3387. },
  3388. genitals: {
  3389. height: math.unit(2 / 3.367, "meter"),
  3390. name: "Genitals",
  3391. image: {
  3392. source: "./media/characters/elbial/genitals.svg"
  3393. }
  3394. },
  3395. },
  3396. [
  3397. {
  3398. name: "Large",
  3399. height: math.unit(100, "feet")
  3400. },
  3401. {
  3402. name: "Macro",
  3403. height: math.unit(500, "feet"),
  3404. default: true
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(10, "miles")
  3409. },
  3410. {
  3411. name: "Gigamacro",
  3412. height: math.unit(25000, "miles")
  3413. },
  3414. {
  3415. name: "Full-Size",
  3416. height: math.unit(8000000, "gigaparsecs")
  3417. }
  3418. ]
  3419. ))
  3420. characterMakers.push(() => makeCharacter(
  3421. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3422. {
  3423. front: {
  3424. height: math.unit(2, "meter"),
  3425. weight: math.unit(60, "kg"),
  3426. name: "Front",
  3427. image: {
  3428. source: "./media/characters/noah/front.svg"
  3429. }
  3430. },
  3431. talons: {
  3432. height: math.unit(0.315, "meter"),
  3433. name: "Talons",
  3434. image: {
  3435. source: "./media/characters/noah/talons.svg"
  3436. }
  3437. }
  3438. },
  3439. [
  3440. {
  3441. name: "Large",
  3442. height: math.unit(50, "feet")
  3443. },
  3444. {
  3445. name: "Macro",
  3446. height: math.unit(750, "feet"),
  3447. default: true
  3448. },
  3449. {
  3450. name: "Megamacro",
  3451. height: math.unit(50, "miles")
  3452. },
  3453. {
  3454. name: "Gigamacro",
  3455. height: math.unit(100000, "miles")
  3456. },
  3457. {
  3458. name: "Full-Size",
  3459. height: math.unit(3000000000, "miles")
  3460. }
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(2, "meter"),
  3468. weight: math.unit(80, "kg"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/natalya/front.svg"
  3472. }
  3473. },
  3474. back: {
  3475. height: math.unit(2, "meter"),
  3476. weight: math.unit(80, "kg"),
  3477. name: "Back",
  3478. image: {
  3479. source: "./media/characters/natalya/back.svg"
  3480. }
  3481. }
  3482. },
  3483. [
  3484. {
  3485. name: "Normal",
  3486. height: math.unit(150, "feet"),
  3487. default: true
  3488. },
  3489. {
  3490. name: "Megamacro",
  3491. height: math.unit(5, "miles")
  3492. },
  3493. {
  3494. name: "Full-Size",
  3495. height: math.unit(600, "kiloparsecs")
  3496. }
  3497. ]
  3498. ))
  3499. characterMakers.push(() => makeCharacter(
  3500. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3501. {
  3502. front: {
  3503. height: math.unit(2, "meter"),
  3504. weight: math.unit(50, "kg"),
  3505. name: "Front",
  3506. image: {
  3507. source: "./media/characters/erestrebah/front.svg",
  3508. extra: 208 / 193,
  3509. bottom: 0.055
  3510. }
  3511. },
  3512. back: {
  3513. height: math.unit(2, "meter"),
  3514. weight: math.unit(50, "kg"),
  3515. name: "Back",
  3516. image: {
  3517. source: "./media/characters/erestrebah/back.svg",
  3518. extra: 1.3
  3519. }
  3520. }
  3521. },
  3522. [
  3523. {
  3524. name: "Normal",
  3525. height: math.unit(10, "feet")
  3526. },
  3527. {
  3528. name: "Large",
  3529. height: math.unit(50, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(300, "feet")
  3535. },
  3536. {
  3537. name: "Macro+",
  3538. height: math.unit(750, "feet")
  3539. },
  3540. {
  3541. name: "Megamacro",
  3542. height: math.unit(3, "miles")
  3543. }
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(2, "meter"),
  3551. weight: math.unit(80, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/jennifer/front.svg",
  3555. bottom: 0.11,
  3556. extra: 1.16
  3557. }
  3558. },
  3559. frontAlt: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(80, "kg"),
  3562. name: "Front (Alt)",
  3563. image: {
  3564. source: "./media/characters/jennifer/front-alt.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Canon Height",
  3571. height: math.unit(120, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Macro+",
  3576. height: math.unit(300, "feet")
  3577. },
  3578. {
  3579. name: "Megamacro",
  3580. height: math.unit(20000, "feet")
  3581. }
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3586. {
  3587. front: {
  3588. height: math.unit(2, "meter"),
  3589. weight: math.unit(50, "kg"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/kalista/front.svg",
  3593. extra: 1947 / 1700,
  3594. bottom: 76.6 / 1412.98
  3595. }
  3596. },
  3597. back: {
  3598. height: math.unit(2, "meter"),
  3599. weight: math.unit(50, "kg"),
  3600. name: "Back",
  3601. image: {
  3602. source: "./media/characters/kalista/back.svg",
  3603. extra: 1366 / 1156,
  3604. bottom: 33.9 / 1362.78
  3605. }
  3606. }
  3607. },
  3608. [
  3609. {
  3610. name: "Uncomfortably Small",
  3611. height: math.unit(10, "feet")
  3612. },
  3613. {
  3614. name: "Small",
  3615. height: math.unit(30, "feet")
  3616. },
  3617. {
  3618. name: "Macro",
  3619. height: math.unit(100, "feet"),
  3620. default: true
  3621. },
  3622. {
  3623. name: "Macro+",
  3624. height: math.unit(2000, "feet")
  3625. },
  3626. {
  3627. name: "True Form",
  3628. height: math.unit(8924, "miles")
  3629. }
  3630. ]
  3631. ))
  3632. characterMakers.push(() => makeCharacter(
  3633. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3634. {
  3635. front: {
  3636. height: math.unit(2, "meter"),
  3637. weight: math.unit(120, "kg"),
  3638. name: "Front",
  3639. image: {
  3640. source: "./media/characters/ggv/front.svg"
  3641. }
  3642. },
  3643. side: {
  3644. height: math.unit(2, "meter"),
  3645. weight: math.unit(120, "kg"),
  3646. name: "Side",
  3647. image: {
  3648. source: "./media/characters/ggv/side.svg"
  3649. }
  3650. }
  3651. },
  3652. [
  3653. {
  3654. name: "Extremely Puny",
  3655. height: math.unit(9 + 5 / 12, "feet")
  3656. },
  3657. {
  3658. name: "Horribly Small",
  3659. height: math.unit(47.7, "miles"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Reasonably Sized",
  3664. height: math.unit(25000, "parsecs")
  3665. },
  3666. {
  3667. name: "Slightly Uncompressed",
  3668. height: math.unit(7.77e31, "parsecs")
  3669. },
  3670. {
  3671. name: "Omniversal",
  3672. height: math.unit(1e300, "meters")
  3673. },
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(75, "lb"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/napalm/front.svg"
  3685. }
  3686. },
  3687. back: {
  3688. height: math.unit(2, "meter"),
  3689. weight: math.unit(75, "lb"),
  3690. name: "Back",
  3691. image: {
  3692. source: "./media/characters/napalm/back.svg"
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Standard",
  3699. height: math.unit(55, "feet"),
  3700. default: true
  3701. }
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3706. {
  3707. front: {
  3708. height: math.unit(7 + 5 / 6, "feet"),
  3709. weight: math.unit(325, "lb"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/asana/front.svg",
  3713. extra: 1133 / 1060,
  3714. bottom: 15.2 / 1148.6
  3715. }
  3716. },
  3717. back: {
  3718. height: math.unit(7 + 5 / 6, "feet"),
  3719. weight: math.unit(325, "lb"),
  3720. name: "Back",
  3721. image: {
  3722. source: "./media/characters/asana/back.svg",
  3723. extra: 1114 / 1043,
  3724. bottom: 5 / 1120
  3725. }
  3726. },
  3727. dressedDark: {
  3728. height: math.unit(7 + 5 / 6, "feet"),
  3729. weight: math.unit(325, "lb"),
  3730. name: "Dressed (Dark)",
  3731. image: {
  3732. source: "./media/characters/asana/dressed-dark.svg",
  3733. extra: 1133 / 1060,
  3734. bottom: 15.2 / 1148.6
  3735. }
  3736. },
  3737. dressedLight: {
  3738. height: math.unit(7 + 5 / 6, "feet"),
  3739. weight: math.unit(325, "lb"),
  3740. name: "Dressed (Light)",
  3741. image: {
  3742. source: "./media/characters/asana/dressed-light.svg",
  3743. extra: 1133 / 1060,
  3744. bottom: 15.2 / 1148.6
  3745. }
  3746. },
  3747. },
  3748. [
  3749. {
  3750. name: "Standard",
  3751. height: math.unit(7 + 5 / 6, "feet"),
  3752. default: true
  3753. },
  3754. {
  3755. name: "Large",
  3756. height: math.unit(10, "meters")
  3757. },
  3758. {
  3759. name: "Macro",
  3760. height: math.unit(2500, "meters")
  3761. },
  3762. {
  3763. name: "Megamacro",
  3764. height: math.unit(5e6, "meters")
  3765. },
  3766. {
  3767. name: "Examacro",
  3768. height: math.unit(5e12, "lightyears")
  3769. },
  3770. {
  3771. name: "Max Size",
  3772. height: math.unit(1e31, "lightyears")
  3773. }
  3774. ]
  3775. ))
  3776. characterMakers.push(() => makeCharacter(
  3777. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3778. {
  3779. front: {
  3780. height: math.unit(2, "meter"),
  3781. weight: math.unit(60, "kg"),
  3782. name: "Front",
  3783. image: {
  3784. source: "./media/characters/ebony/front.svg",
  3785. bottom: 0.03,
  3786. extra: 1045 / 810 + 0.03
  3787. }
  3788. },
  3789. side: {
  3790. height: math.unit(2, "meter"),
  3791. weight: math.unit(60, "kg"),
  3792. name: "Side",
  3793. image: {
  3794. source: "./media/characters/ebony/side.svg",
  3795. bottom: 0.03,
  3796. extra: 1045 / 810 + 0.03
  3797. }
  3798. },
  3799. back: {
  3800. height: math.unit(2, "meter"),
  3801. weight: math.unit(60, "kg"),
  3802. name: "Back",
  3803. image: {
  3804. source: "./media/characters/ebony/back.svg",
  3805. bottom: 0.01,
  3806. extra: 1045 / 810 + 0.01
  3807. }
  3808. },
  3809. },
  3810. [
  3811. // TODO check why I did this lol
  3812. {
  3813. name: "Standard",
  3814. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro",
  3819. height: math.unit(200, "feet")
  3820. },
  3821. {
  3822. name: "Gigamacro",
  3823. height: math.unit(13000, "km")
  3824. }
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3829. {
  3830. front: {
  3831. height: math.unit(6, "feet"),
  3832. weight: math.unit(175, "lb"),
  3833. name: "Front",
  3834. image: {
  3835. source: "./media/characters/mountain/front.svg",
  3836. extra: 972 / 955,
  3837. bottom: 64 / 1036.6
  3838. }
  3839. },
  3840. back: {
  3841. height: math.unit(6, "feet"),
  3842. weight: math.unit(175, "lb"),
  3843. name: "Back",
  3844. image: {
  3845. source: "./media/characters/mountain/back.svg",
  3846. extra: 970 / 950,
  3847. bottom: 28.25 / 999
  3848. }
  3849. },
  3850. },
  3851. [
  3852. {
  3853. name: "Large",
  3854. height: math.unit(20, "meters")
  3855. },
  3856. {
  3857. name: "Macro",
  3858. height: math.unit(300, "meters")
  3859. },
  3860. {
  3861. name: "Gigamacro",
  3862. height: math.unit(10000, "km"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Examacro",
  3867. height: math.unit(10e9, "lightyears")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(8, "feet"),
  3876. weight: math.unit(500, "lb"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/rick/front.svg"
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(8, "feet"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Macro",
  3891. height: math.unit(5, "km")
  3892. }
  3893. ]
  3894. ))
  3895. characterMakers.push(() => makeCharacter(
  3896. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3897. {
  3898. front: {
  3899. height: math.unit(8, "feet"),
  3900. weight: math.unit(120, "lb"),
  3901. name: "Front",
  3902. image: {
  3903. source: "./media/characters/ona/front.svg"
  3904. }
  3905. },
  3906. frontAlt: {
  3907. height: math.unit(8, "feet"),
  3908. weight: math.unit(120, "lb"),
  3909. name: "Front (Alt)",
  3910. image: {
  3911. source: "./media/characters/ona/front-alt.svg"
  3912. }
  3913. },
  3914. back: {
  3915. height: math.unit(8, "feet"),
  3916. weight: math.unit(120, "lb"),
  3917. name: "Back",
  3918. image: {
  3919. source: "./media/characters/ona/back.svg"
  3920. }
  3921. },
  3922. foot: {
  3923. height: math.unit(1.1, "feet"),
  3924. name: "Foot",
  3925. image: {
  3926. source: "./media/characters/ona/foot.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Megamacro",
  3933. height: math.unit(70, "km"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Gigamacro",
  3938. height: math.unit(681818, "miles")
  3939. },
  3940. {
  3941. name: "Examacro",
  3942. height: math.unit(3800000, "lightyears")
  3943. },
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(12, "feet"),
  3951. weight: math.unit(3000, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/mech/front.svg",
  3955. extra: 2900 / 2770,
  3956. bottom: 110 / 3010
  3957. }
  3958. },
  3959. back: {
  3960. height: math.unit(12, "feet"),
  3961. weight: math.unit(3000, "lb"),
  3962. name: "Back",
  3963. image: {
  3964. source: "./media/characters/mech/back.svg",
  3965. extra: 3011 / 2890,
  3966. bottom: 94 / 3105
  3967. }
  3968. },
  3969. maw: {
  3970. height: math.unit(3.07, "feet"),
  3971. name: "Maw",
  3972. image: {
  3973. source: "./media/characters/mech/maw.svg"
  3974. }
  3975. },
  3976. head: {
  3977. height: math.unit(2.82, "feet"),
  3978. name: "Head",
  3979. image: {
  3980. source: "./media/characters/mech/head.svg"
  3981. }
  3982. },
  3983. dick: {
  3984. height: math.unit(1.43, "feet"),
  3985. name: "Dick",
  3986. image: {
  3987. source: "./media/characters/mech/dick.svg"
  3988. }
  3989. },
  3990. },
  3991. [
  3992. {
  3993. name: "Normal",
  3994. height: math.unit(12, "feet")
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(300, "feet"),
  3999. default: true
  4000. },
  4001. {
  4002. name: "Macro+",
  4003. height: math.unit(1500, "feet")
  4004. },
  4005. ]
  4006. ))
  4007. characterMakers.push(() => makeCharacter(
  4008. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4009. {
  4010. front: {
  4011. height: math.unit(1.3, "meter"),
  4012. weight: math.unit(30, "kg"),
  4013. name: "Front",
  4014. image: {
  4015. source: "./media/characters/gregory/front.svg",
  4016. }
  4017. }
  4018. },
  4019. [
  4020. {
  4021. name: "Normal",
  4022. height: math.unit(1.3, "meter"),
  4023. default: true
  4024. },
  4025. {
  4026. name: "Macro",
  4027. height: math.unit(20, "meter")
  4028. }
  4029. ]
  4030. ))
  4031. characterMakers.push(() => makeCharacter(
  4032. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4033. {
  4034. front: {
  4035. height: math.unit(2.8, "meter"),
  4036. weight: math.unit(200, "kg"),
  4037. name: "Front",
  4038. image: {
  4039. source: "./media/characters/elory/front.svg",
  4040. }
  4041. }
  4042. },
  4043. [
  4044. {
  4045. name: "Normal",
  4046. height: math.unit(2.8, "meter"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(38, "meter")
  4052. }
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4057. {
  4058. front: {
  4059. height: math.unit(470, "feet"),
  4060. weight: math.unit(924, "tons"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/angelpatamon/front.svg",
  4064. }
  4065. }
  4066. },
  4067. [
  4068. {
  4069. name: "Normal",
  4070. height: math.unit(470, "feet"),
  4071. default: true
  4072. },
  4073. {
  4074. name: "Deity Size I",
  4075. height: math.unit(28651.2, "km")
  4076. },
  4077. {
  4078. name: "Deity Size II",
  4079. height: math.unit(171907.2, "km")
  4080. }
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4085. {
  4086. side: {
  4087. height: math.unit(7.2, "meter"),
  4088. weight: math.unit(8.2, "tons"),
  4089. name: "Side",
  4090. image: {
  4091. source: "./media/characters/cryae/side.svg",
  4092. extra: 3500 / 1500
  4093. }
  4094. }
  4095. },
  4096. [
  4097. {
  4098. name: "Normal",
  4099. height: math.unit(7.2, "meter"),
  4100. default: true
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4106. {
  4107. front: {
  4108. height: math.unit(6, "feet"),
  4109. weight: math.unit(175, "lb"),
  4110. name: "Front",
  4111. image: {
  4112. source: "./media/characters/xera/front.svg",
  4113. extra: 2377 / 1972,
  4114. bottom: 75.5 / 2452
  4115. }
  4116. },
  4117. side: {
  4118. height: math.unit(6, "feet"),
  4119. weight: math.unit(175, "lb"),
  4120. name: "Side",
  4121. image: {
  4122. source: "./media/characters/xera/side.svg",
  4123. extra: 2345 / 2019,
  4124. bottom: 39.7 / 2384
  4125. }
  4126. },
  4127. back: {
  4128. height: math.unit(6, "feet"),
  4129. weight: math.unit(175, "lb"),
  4130. name: "Back",
  4131. image: {
  4132. source: "./media/characters/xera/back.svg",
  4133. extra: 2095 / 1984,
  4134. bottom: 67 / 2166
  4135. }
  4136. },
  4137. },
  4138. [
  4139. {
  4140. name: "Small",
  4141. height: math.unit(10, "feet")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(500, "meters"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Macro+",
  4150. height: math.unit(10, "km")
  4151. },
  4152. {
  4153. name: "Gigamacro",
  4154. height: math.unit(25000, "km")
  4155. },
  4156. {
  4157. name: "Teramacro",
  4158. height: math.unit(3e6, "km")
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4164. {
  4165. front: {
  4166. height: math.unit(6, "feet"),
  4167. weight: math.unit(175, "lb"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/nebula/front.svg",
  4171. extra: 2566 / 2362,
  4172. bottom: 81 / 2644
  4173. }
  4174. }
  4175. },
  4176. [
  4177. {
  4178. name: "Small",
  4179. height: math.unit(4.5, "meters")
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(1500, "meters"),
  4184. default: true
  4185. },
  4186. {
  4187. name: "Megamacro",
  4188. height: math.unit(150, "km")
  4189. },
  4190. {
  4191. name: "Gigamacro",
  4192. height: math.unit(27000, "km")
  4193. }
  4194. ]
  4195. ))
  4196. characterMakers.push(() => makeCharacter(
  4197. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4198. {
  4199. front: {
  4200. height: math.unit(6, "feet"),
  4201. weight: math.unit(225, "lb"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/abysgar/front.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Small",
  4211. height: math.unit(4.5, "meters")
  4212. },
  4213. {
  4214. name: "Macro",
  4215. height: math.unit(1250, "meters"),
  4216. default: true
  4217. },
  4218. {
  4219. name: "Megamacro",
  4220. height: math.unit(125, "km")
  4221. },
  4222. {
  4223. name: "Gigamacro",
  4224. height: math.unit(26000, "km")
  4225. }
  4226. ]
  4227. ))
  4228. characterMakers.push(() => makeCharacter(
  4229. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4230. {
  4231. front: {
  4232. height: math.unit(6, "feet"),
  4233. weight: math.unit(180, "lb"),
  4234. name: "Front",
  4235. image: {
  4236. source: "./media/characters/yakuz/front.svg"
  4237. }
  4238. }
  4239. },
  4240. [
  4241. {
  4242. name: "Small",
  4243. height: math.unit(5, "meters")
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(1500, "meters"),
  4248. default: true
  4249. },
  4250. {
  4251. name: "Megamacro",
  4252. height: math.unit(200, "km")
  4253. },
  4254. {
  4255. name: "Gigamacro",
  4256. height: math.unit(100000, "km")
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(6, "feet"),
  4265. weight: math.unit(175, "lb"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/mirova/front.svg",
  4269. extra: 3334 / 3071,
  4270. bottom: 42 / 3375.6
  4271. }
  4272. }
  4273. },
  4274. [
  4275. {
  4276. name: "Small",
  4277. height: math.unit(5, "meters")
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(900, "meters"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(135, "km")
  4287. },
  4288. {
  4289. name: "Gigamacro",
  4290. height: math.unit(20000, "km")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4296. {
  4297. side: {
  4298. height: math.unit(28.35, "feet"),
  4299. weight: math.unit(99.75, "tons"),
  4300. name: "Side",
  4301. image: {
  4302. source: "./media/characters/asana-mech/side.svg",
  4303. extra: 923 / 699,
  4304. bottom: 50 / 975
  4305. }
  4306. },
  4307. chaingun: {
  4308. height: math.unit(7, "feet"),
  4309. weight: math.unit(2400, "lb"),
  4310. name: "Chaingun",
  4311. image: {
  4312. source: "./media/characters/asana-mech/chaingun.svg"
  4313. }
  4314. },
  4315. laser: {
  4316. height: math.unit(7.12, "feet"),
  4317. weight: math.unit(2000, "lb"),
  4318. name: "Laser",
  4319. image: {
  4320. source: "./media/characters/asana-mech/laser.svg"
  4321. }
  4322. },
  4323. },
  4324. [
  4325. {
  4326. name: "Normal",
  4327. height: math.unit(28.35, "feet"),
  4328. default: true
  4329. },
  4330. {
  4331. name: "Macro",
  4332. height: math.unit(2500, "feet")
  4333. },
  4334. {
  4335. name: "Megamacro",
  4336. height: math.unit(25, "miles")
  4337. },
  4338. {
  4339. name: "Examacro",
  4340. height: math.unit(6e8, "lightyears")
  4341. },
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4346. {
  4347. front: {
  4348. height: math.unit(5, "meters"),
  4349. weight: math.unit(1000, "kg"),
  4350. name: "Front",
  4351. image: {
  4352. source: "./media/characters/asche/front.svg",
  4353. extra: 1258 / 1190,
  4354. bottom: 47 / 1305
  4355. }
  4356. },
  4357. frontUnderwear: {
  4358. height: math.unit(5, "meters"),
  4359. weight: math.unit(1000, "kg"),
  4360. name: "Front (Underwear)",
  4361. image: {
  4362. source: "./media/characters/asche/front-underwear.svg",
  4363. extra: 1258 / 1190,
  4364. bottom: 47 / 1305
  4365. }
  4366. },
  4367. frontDressed: {
  4368. height: math.unit(5, "meters"),
  4369. weight: math.unit(1000, "kg"),
  4370. name: "Front (Dressed)",
  4371. image: {
  4372. source: "./media/characters/asche/front-dressed.svg",
  4373. extra: 1258 / 1190,
  4374. bottom: 47 / 1305
  4375. }
  4376. },
  4377. frontArmor: {
  4378. height: math.unit(5, "meters"),
  4379. weight: math.unit(1000, "kg"),
  4380. name: "Front (Armored)",
  4381. image: {
  4382. source: "./media/characters/asche/front-armored.svg",
  4383. extra: 1374 / 1308,
  4384. bottom: 23 / 1397
  4385. }
  4386. },
  4387. mp724: {
  4388. height: math.unit(0.96, "meters"),
  4389. weight: math.unit(38, "kg"),
  4390. name: "H&K MP724",
  4391. image: {
  4392. source: "./media/characters/asche/h&k-mp724.svg"
  4393. }
  4394. },
  4395. side: {
  4396. height: math.unit(5, "meters"),
  4397. weight: math.unit(1000, "kg"),
  4398. name: "Side",
  4399. image: {
  4400. source: "./media/characters/asche/side.svg",
  4401. extra: 1717 / 1609,
  4402. bottom: 0.005
  4403. }
  4404. },
  4405. back: {
  4406. height: math.unit(5, "meters"),
  4407. weight: math.unit(1000, "kg"),
  4408. name: "Back",
  4409. image: {
  4410. source: "./media/characters/asche/back.svg",
  4411. extra: 1570 / 1501
  4412. }
  4413. },
  4414. },
  4415. [
  4416. {
  4417. name: "DEFCON 5",
  4418. height: math.unit(5, "meters")
  4419. },
  4420. {
  4421. name: "DEFCON 4",
  4422. height: math.unit(500, "meters"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "DEFCON 3",
  4427. height: math.unit(5, "km")
  4428. },
  4429. {
  4430. name: "DEFCON 2",
  4431. height: math.unit(500, "km")
  4432. },
  4433. {
  4434. name: "DEFCON 1",
  4435. height: math.unit(500000, "km")
  4436. },
  4437. {
  4438. name: "DEFCON 0",
  4439. height: math.unit(3, "gigaparsecs")
  4440. },
  4441. ]
  4442. ))
  4443. characterMakers.push(() => makeCharacter(
  4444. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4445. {
  4446. front: {
  4447. height: math.unit(2, "meters"),
  4448. weight: math.unit(76, "kg"),
  4449. name: "Front",
  4450. image: {
  4451. source: "./media/characters/gale/front.svg"
  4452. }
  4453. },
  4454. frontAlt1: {
  4455. height: math.unit(2, "meters"),
  4456. weight: math.unit(76, "kg"),
  4457. name: "Front (Alt 1)",
  4458. image: {
  4459. source: "./media/characters/gale/front-alt-1.svg"
  4460. }
  4461. },
  4462. frontAlt2: {
  4463. height: math.unit(2, "meters"),
  4464. weight: math.unit(76, "kg"),
  4465. name: "Front (Alt 2)",
  4466. image: {
  4467. source: "./media/characters/gale/front-alt-2.svg"
  4468. }
  4469. },
  4470. },
  4471. [
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(7, "feet")
  4475. },
  4476. {
  4477. name: "Macro",
  4478. height: math.unit(150, "feet"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Macro+",
  4483. height: math.unit(300, "feet")
  4484. },
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(5 + 10/12, "feet"),
  4492. weight: math.unit(67, "kg"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/draylen/front.svg",
  4496. extra: 832/777,
  4497. bottom: 85/917
  4498. }
  4499. }
  4500. },
  4501. [
  4502. {
  4503. name: "Normal",
  4504. height: math.unit(5 + 10/12, "feet")
  4505. },
  4506. {
  4507. name: "Macro",
  4508. height: math.unit(150, "feet"),
  4509. default: true
  4510. }
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4515. {
  4516. front: {
  4517. height: math.unit(7 + 9 / 12, "feet"),
  4518. weight: math.unit(379, "lbs"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/chez/front.svg"
  4522. }
  4523. },
  4524. side: {
  4525. height: math.unit(7 + 9 / 12, "feet"),
  4526. weight: math.unit(379, "lbs"),
  4527. name: "Side",
  4528. image: {
  4529. source: "./media/characters/chez/side.svg"
  4530. }
  4531. }
  4532. },
  4533. [
  4534. {
  4535. name: "Normal",
  4536. height: math.unit(7 + 9 / 12, "feet"),
  4537. default: true
  4538. },
  4539. {
  4540. name: "God King",
  4541. height: math.unit(9750000, "meters")
  4542. }
  4543. ]
  4544. ))
  4545. characterMakers.push(() => makeCharacter(
  4546. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4547. {
  4548. front: {
  4549. height: math.unit(6, "feet"),
  4550. weight: math.unit(275, "lbs"),
  4551. name: "Front",
  4552. image: {
  4553. source: "./media/characters/kaylum/front.svg",
  4554. bottom: 0.01,
  4555. extra: 1166 / 1031
  4556. }
  4557. },
  4558. frontWingless: {
  4559. height: math.unit(6, "feet"),
  4560. weight: math.unit(275, "lbs"),
  4561. name: "Front (Wingless)",
  4562. image: {
  4563. source: "./media/characters/kaylum/front-wingless.svg",
  4564. bottom: 0.01,
  4565. extra: 1117 / 1031
  4566. }
  4567. }
  4568. },
  4569. [
  4570. {
  4571. name: "Normal",
  4572. height: math.unit(3.05, "meters")
  4573. },
  4574. {
  4575. name: "Master",
  4576. height: math.unit(5.5, "meters")
  4577. },
  4578. {
  4579. name: "Rampage",
  4580. height: math.unit(19, "meters")
  4581. },
  4582. {
  4583. name: "Macro Lite",
  4584. height: math.unit(37, "meters")
  4585. },
  4586. {
  4587. name: "Hyper Predator",
  4588. height: math.unit(61, "meters")
  4589. },
  4590. {
  4591. name: "Macro",
  4592. height: math.unit(138, "meters"),
  4593. default: true
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(6, "feet"),
  4602. weight: math.unit(150, "lbs"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/geta/front.svg"
  4606. }
  4607. }
  4608. },
  4609. [
  4610. {
  4611. name: "Micro",
  4612. height: math.unit(3, "inches"),
  4613. default: true
  4614. },
  4615. {
  4616. name: "Normal",
  4617. height: math.unit(5 + 5 / 12, "feet")
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4623. {
  4624. front: {
  4625. height: math.unit(6, "feet"),
  4626. weight: math.unit(300, "lbs"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/tyrnn/front.svg"
  4630. }
  4631. }
  4632. },
  4633. [
  4634. {
  4635. name: "Main Height",
  4636. height: math.unit(355, "feet"),
  4637. default: true
  4638. },
  4639. {
  4640. name: "Fave. Height",
  4641. height: math.unit(2400, "feet")
  4642. }
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4647. {
  4648. front: {
  4649. height: math.unit(6, "feet"),
  4650. weight: math.unit(300, "lbs"),
  4651. name: "Front",
  4652. image: {
  4653. source: "./media/characters/appledectomy/front.svg"
  4654. }
  4655. }
  4656. },
  4657. [
  4658. {
  4659. name: "Macro",
  4660. height: math.unit(2500, "feet")
  4661. },
  4662. {
  4663. name: "Megamacro",
  4664. height: math.unit(50, "miles"),
  4665. default: true
  4666. },
  4667. {
  4668. name: "Gigamacro",
  4669. height: math.unit(5000, "miles")
  4670. },
  4671. {
  4672. name: "Teramacro",
  4673. height: math.unit(250000, "miles")
  4674. },
  4675. ]
  4676. ))
  4677. characterMakers.push(() => makeCharacter(
  4678. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4679. {
  4680. front: {
  4681. height: math.unit(6, "feet"),
  4682. weight: math.unit(200, "lbs"),
  4683. name: "Front",
  4684. image: {
  4685. source: "./media/characters/vulpes/front.svg",
  4686. extra: 573 / 543,
  4687. bottom: 0.033
  4688. }
  4689. },
  4690. side: {
  4691. height: math.unit(6, "feet"),
  4692. weight: math.unit(200, "lbs"),
  4693. name: "Side",
  4694. image: {
  4695. source: "./media/characters/vulpes/side.svg",
  4696. extra: 577 / 549,
  4697. bottom: 11 / 588
  4698. }
  4699. },
  4700. back: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(200, "lbs"),
  4703. name: "Back",
  4704. image: {
  4705. source: "./media/characters/vulpes/back.svg",
  4706. extra: 573 / 549,
  4707. bottom: 20 / 593
  4708. }
  4709. },
  4710. feet: {
  4711. height: math.unit(1.276, "feet"),
  4712. name: "Feet",
  4713. image: {
  4714. source: "./media/characters/vulpes/feet.svg"
  4715. }
  4716. },
  4717. maw: {
  4718. height: math.unit(1.18, "feet"),
  4719. name: "Maw",
  4720. image: {
  4721. source: "./media/characters/vulpes/maw.svg"
  4722. }
  4723. },
  4724. },
  4725. [
  4726. {
  4727. name: "Micro",
  4728. height: math.unit(2, "inches")
  4729. },
  4730. {
  4731. name: "Normal",
  4732. height: math.unit(6.3, "feet")
  4733. },
  4734. {
  4735. name: "Macro",
  4736. height: math.unit(850, "feet")
  4737. },
  4738. {
  4739. name: "Megamacro",
  4740. height: math.unit(7500, "feet"),
  4741. default: true
  4742. },
  4743. {
  4744. name: "Gigamacro",
  4745. height: math.unit(570000, "miles")
  4746. }
  4747. ]
  4748. ))
  4749. characterMakers.push(() => makeCharacter(
  4750. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4751. {
  4752. front: {
  4753. height: math.unit(6, "feet"),
  4754. weight: math.unit(210, "lbs"),
  4755. name: "Front",
  4756. image: {
  4757. source: "./media/characters/rain-fallen/front.svg"
  4758. }
  4759. },
  4760. side: {
  4761. height: math.unit(6, "feet"),
  4762. weight: math.unit(210, "lbs"),
  4763. name: "Side",
  4764. image: {
  4765. source: "./media/characters/rain-fallen/side.svg"
  4766. }
  4767. },
  4768. back: {
  4769. height: math.unit(6, "feet"),
  4770. weight: math.unit(210, "lbs"),
  4771. name: "Back",
  4772. image: {
  4773. source: "./media/characters/rain-fallen/back.svg"
  4774. }
  4775. },
  4776. feral: {
  4777. height: math.unit(9, "feet"),
  4778. weight: math.unit(700, "lbs"),
  4779. name: "Feral",
  4780. image: {
  4781. source: "./media/characters/rain-fallen/feral.svg"
  4782. }
  4783. },
  4784. },
  4785. [
  4786. {
  4787. name: "Meddling with Mortals",
  4788. height: math.unit(8 + 8/12, "feet")
  4789. },
  4790. {
  4791. name: "Normal",
  4792. height: math.unit(5, "meter")
  4793. },
  4794. {
  4795. name: "Macro",
  4796. height: math.unit(150, "meter"),
  4797. default: true
  4798. },
  4799. {
  4800. name: "Megamacro",
  4801. height: math.unit(278e6, "meter")
  4802. },
  4803. {
  4804. name: "Gigamacro",
  4805. height: math.unit(2e9, "meter")
  4806. },
  4807. {
  4808. name: "Teramacro",
  4809. height: math.unit(8e12, "meter")
  4810. },
  4811. {
  4812. name: "Devourer",
  4813. height: math.unit(14, "zettameters")
  4814. },
  4815. {
  4816. name: "Scarlet King",
  4817. height: math.unit(18, "yottameters")
  4818. },
  4819. {
  4820. name: "Void",
  4821. height: math.unit(1e88, "yottameters")
  4822. }
  4823. ]
  4824. ))
  4825. characterMakers.push(() => makeCharacter(
  4826. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4827. {
  4828. standing: {
  4829. height: math.unit(6, "feet"),
  4830. weight: math.unit(180, "lbs"),
  4831. name: "Standing",
  4832. image: {
  4833. source: "./media/characters/zaakira/standing.svg",
  4834. extra: 1599/1504,
  4835. bottom: 39/1638
  4836. }
  4837. },
  4838. laying: {
  4839. height: math.unit(3, "feet"),
  4840. weight: math.unit(180, "lbs"),
  4841. name: "Laying",
  4842. image: {
  4843. source: "./media/characters/zaakira/laying.svg"
  4844. }
  4845. },
  4846. },
  4847. [
  4848. {
  4849. name: "Normal",
  4850. height: math.unit(12, "feet")
  4851. },
  4852. {
  4853. name: "Macro",
  4854. height: math.unit(279, "feet"),
  4855. default: true
  4856. }
  4857. ]
  4858. ))
  4859. characterMakers.push(() => makeCharacter(
  4860. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4861. {
  4862. femSfw: {
  4863. height: math.unit(8, "feet"),
  4864. weight: math.unit(350, "lb"),
  4865. name: "Fem",
  4866. image: {
  4867. source: "./media/characters/sigvald/fem-sfw.svg",
  4868. extra: 182 / 164,
  4869. bottom: 8.7 / 190.5
  4870. }
  4871. },
  4872. femNsfw: {
  4873. height: math.unit(8, "feet"),
  4874. weight: math.unit(350, "lb"),
  4875. name: "Fem (NSFW)",
  4876. image: {
  4877. source: "./media/characters/sigvald/fem-nsfw.svg",
  4878. extra: 182 / 164,
  4879. bottom: 8.7 / 190.5
  4880. }
  4881. },
  4882. maleNsfw: {
  4883. height: math.unit(8, "feet"),
  4884. weight: math.unit(350, "lb"),
  4885. name: "Male (NSFW)",
  4886. image: {
  4887. source: "./media/characters/sigvald/male-nsfw.svg",
  4888. extra: 182 / 164,
  4889. bottom: 8.7 / 190.5
  4890. }
  4891. },
  4892. hermNsfw: {
  4893. height: math.unit(8, "feet"),
  4894. weight: math.unit(350, "lb"),
  4895. name: "Herm (NSFW)",
  4896. image: {
  4897. source: "./media/characters/sigvald/herm-nsfw.svg",
  4898. extra: 182 / 164,
  4899. bottom: 8.7 / 190.5
  4900. }
  4901. },
  4902. dick: {
  4903. height: math.unit(2.36, "feet"),
  4904. name: "Dick",
  4905. image: {
  4906. source: "./media/characters/sigvald/dick.svg"
  4907. }
  4908. },
  4909. eye: {
  4910. height: math.unit(0.31, "feet"),
  4911. name: "Eye",
  4912. image: {
  4913. source: "./media/characters/sigvald/eye.svg"
  4914. }
  4915. },
  4916. mouth: {
  4917. height: math.unit(0.92, "feet"),
  4918. name: "Mouth",
  4919. image: {
  4920. source: "./media/characters/sigvald/mouth.svg"
  4921. }
  4922. },
  4923. paws: {
  4924. height: math.unit(2.2, "feet"),
  4925. name: "Paws",
  4926. image: {
  4927. source: "./media/characters/sigvald/paws.svg"
  4928. }
  4929. }
  4930. },
  4931. [
  4932. {
  4933. name: "Normal",
  4934. height: math.unit(8, "feet")
  4935. },
  4936. {
  4937. name: "Large",
  4938. height: math.unit(12, "feet")
  4939. },
  4940. {
  4941. name: "Larger",
  4942. height: math.unit(20, "feet")
  4943. },
  4944. {
  4945. name: "Macro",
  4946. height: math.unit(150, "feet")
  4947. },
  4948. {
  4949. name: "Macro+",
  4950. height: math.unit(200, "feet"),
  4951. default: true
  4952. },
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4957. {
  4958. side: {
  4959. height: math.unit(12, "feet"),
  4960. weight: math.unit(2000, "kg"),
  4961. name: "Side",
  4962. image: {
  4963. source: "./media/characters/scott/side.svg",
  4964. extra: 754 / 724,
  4965. bottom: 0.069
  4966. }
  4967. },
  4968. upright: {
  4969. height: math.unit(12, "feet"),
  4970. weight: math.unit(2000, "kg"),
  4971. name: "Upright",
  4972. image: {
  4973. source: "./media/characters/scott/upright.svg",
  4974. extra: 3881 / 3722,
  4975. bottom: 0.05
  4976. }
  4977. },
  4978. },
  4979. [
  4980. {
  4981. name: "Normal",
  4982. height: math.unit(12, "feet"),
  4983. default: true
  4984. },
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4989. {
  4990. side: {
  4991. height: math.unit(8, "meters"),
  4992. weight: math.unit(84755, "lbs"),
  4993. name: "Side",
  4994. image: {
  4995. source: "./media/characters/tobias/side.svg",
  4996. extra: 1474 / 1096,
  4997. bottom: 38.9 / 1513.1235
  4998. }
  4999. },
  5000. },
  5001. [
  5002. {
  5003. name: "Normal",
  5004. height: math.unit(8, "meters"),
  5005. default: true
  5006. },
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5011. {
  5012. front: {
  5013. height: math.unit(5.5, "feet"),
  5014. weight: math.unit(400, "lbs"),
  5015. name: "Front",
  5016. image: {
  5017. source: "./media/characters/kieran/front.svg",
  5018. extra: 2694 / 2364,
  5019. bottom: 217 / 2908
  5020. }
  5021. },
  5022. side: {
  5023. height: math.unit(5.5, "feet"),
  5024. weight: math.unit(400, "lbs"),
  5025. name: "Side",
  5026. image: {
  5027. source: "./media/characters/kieran/side.svg",
  5028. extra: 875 / 777,
  5029. bottom: 84.6 / 959
  5030. }
  5031. },
  5032. },
  5033. [
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(5.5, "feet"),
  5037. default: true
  5038. },
  5039. ]
  5040. ))
  5041. characterMakers.push(() => makeCharacter(
  5042. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5043. {
  5044. side: {
  5045. height: math.unit(2, "meters"),
  5046. weight: math.unit(70, "kg"),
  5047. name: "Side",
  5048. image: {
  5049. source: "./media/characters/sanya/side.svg",
  5050. bottom: 0.02,
  5051. extra: 1.02
  5052. }
  5053. },
  5054. },
  5055. [
  5056. {
  5057. name: "Small",
  5058. height: math.unit(2, "meters")
  5059. },
  5060. {
  5061. name: "Normal",
  5062. height: math.unit(3, "meters")
  5063. },
  5064. {
  5065. name: "Macro",
  5066. height: math.unit(16, "meters"),
  5067. default: true
  5068. },
  5069. ]
  5070. ))
  5071. characterMakers.push(() => makeCharacter(
  5072. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5073. {
  5074. front: {
  5075. height: math.unit(2, "meters"),
  5076. weight: math.unit(120, "kg"),
  5077. name: "Front",
  5078. image: {
  5079. source: "./media/characters/miranda/front.svg",
  5080. extra: 195 / 185,
  5081. bottom: 10.9 / 206.5
  5082. }
  5083. },
  5084. back: {
  5085. height: math.unit(2, "meters"),
  5086. weight: math.unit(120, "kg"),
  5087. name: "Back",
  5088. image: {
  5089. source: "./media/characters/miranda/back.svg",
  5090. extra: 201 / 193,
  5091. bottom: 2.3 / 203.7
  5092. }
  5093. },
  5094. },
  5095. [
  5096. {
  5097. name: "Normal",
  5098. height: math.unit(10, "feet"),
  5099. default: true
  5100. }
  5101. ]
  5102. ))
  5103. characterMakers.push(() => makeCharacter(
  5104. { name: "James", species: ["deer"], tags: ["anthro"] },
  5105. {
  5106. side: {
  5107. height: math.unit(2, "meters"),
  5108. weight: math.unit(100, "kg"),
  5109. name: "Front",
  5110. image: {
  5111. source: "./media/characters/james/front.svg",
  5112. extra: 10 / 8.5
  5113. }
  5114. },
  5115. },
  5116. [
  5117. {
  5118. name: "Normal",
  5119. height: math.unit(8.5, "feet"),
  5120. default: true
  5121. }
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5126. {
  5127. side: {
  5128. height: math.unit(9.5, "feet"),
  5129. weight: math.unit(2500, "lbs"),
  5130. name: "Side",
  5131. image: {
  5132. source: "./media/characters/heather/side.svg"
  5133. }
  5134. },
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(9.5, "feet"),
  5140. default: true
  5141. }
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5146. {
  5147. side: {
  5148. height: math.unit(6.5, "feet"),
  5149. weight: math.unit(400, "lbs"),
  5150. name: "Side",
  5151. image: {
  5152. source: "./media/characters/lukas/side.svg",
  5153. extra: 7.25 / 6.5
  5154. }
  5155. },
  5156. },
  5157. [
  5158. {
  5159. name: "Normal",
  5160. height: math.unit(6.5, "feet"),
  5161. default: true
  5162. }
  5163. ]
  5164. ))
  5165. characterMakers.push(() => makeCharacter(
  5166. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5167. {
  5168. side: {
  5169. height: math.unit(5, "feet"),
  5170. weight: math.unit(3000, "lbs"),
  5171. name: "Side",
  5172. image: {
  5173. source: "./media/characters/louise/side.svg"
  5174. }
  5175. },
  5176. },
  5177. [
  5178. {
  5179. name: "Normal",
  5180. height: math.unit(5, "feet"),
  5181. default: true
  5182. }
  5183. ]
  5184. ))
  5185. characterMakers.push(() => makeCharacter(
  5186. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5187. {
  5188. side: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(150, "lbs"),
  5191. name: "Side",
  5192. image: {
  5193. source: "./media/characters/ramona/side.svg"
  5194. }
  5195. },
  5196. },
  5197. [
  5198. {
  5199. name: "Normal",
  5200. height: math.unit(5.3, "meters"),
  5201. default: true
  5202. },
  5203. {
  5204. name: "Macro",
  5205. height: math.unit(20, "stories")
  5206. },
  5207. {
  5208. name: "Macro+",
  5209. height: math.unit(50, "stories")
  5210. },
  5211. ]
  5212. ))
  5213. characterMakers.push(() => makeCharacter(
  5214. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5215. {
  5216. standing: {
  5217. height: math.unit(5.75, "feet"),
  5218. weight: math.unit(160, "lbs"),
  5219. name: "Standing",
  5220. image: {
  5221. source: "./media/characters/deerpuff/standing.svg",
  5222. extra: 682 / 624
  5223. }
  5224. },
  5225. sitting: {
  5226. height: math.unit(5.75 / 1.79, "feet"),
  5227. weight: math.unit(160, "lbs"),
  5228. name: "Sitting",
  5229. image: {
  5230. source: "./media/characters/deerpuff/sitting.svg",
  5231. bottom: 44 / 400,
  5232. extra: 1
  5233. }
  5234. },
  5235. taurLaying: {
  5236. height: math.unit(6, "feet"),
  5237. weight: math.unit(400, "lbs"),
  5238. name: "Taur (Laying)",
  5239. image: {
  5240. source: "./media/characters/deerpuff/taur-laying.svg"
  5241. }
  5242. },
  5243. },
  5244. [
  5245. {
  5246. name: "Puffball",
  5247. height: math.unit(6, "inches")
  5248. },
  5249. {
  5250. name: "Normalpuff",
  5251. height: math.unit(5.75, "feet")
  5252. },
  5253. {
  5254. name: "Macropuff",
  5255. height: math.unit(1500, "feet"),
  5256. default: true
  5257. },
  5258. {
  5259. name: "Megapuff",
  5260. height: math.unit(500, "miles")
  5261. },
  5262. {
  5263. name: "Gigapuff",
  5264. height: math.unit(250000, "miles")
  5265. },
  5266. {
  5267. name: "Omegapuff",
  5268. height: math.unit(1000, "lightyears")
  5269. },
  5270. ]
  5271. ))
  5272. characterMakers.push(() => makeCharacter(
  5273. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5274. {
  5275. stomping: {
  5276. height: math.unit(6, "feet"),
  5277. weight: math.unit(170, "lbs"),
  5278. name: "Stomping",
  5279. image: {
  5280. source: "./media/characters/vivian/stomping.svg"
  5281. }
  5282. },
  5283. sitting: {
  5284. height: math.unit(6 / 1.75, "feet"),
  5285. weight: math.unit(170, "lbs"),
  5286. name: "Sitting",
  5287. image: {
  5288. source: "./media/characters/vivian/sitting.svg",
  5289. bottom: 1 / 6.4,
  5290. extra: 1,
  5291. }
  5292. },
  5293. },
  5294. [
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(7, "feet"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Macro",
  5302. height: math.unit(10, "stories")
  5303. },
  5304. {
  5305. name: "Macro+",
  5306. height: math.unit(30, "stories")
  5307. },
  5308. {
  5309. name: "Megamacro",
  5310. height: math.unit(10, "miles")
  5311. },
  5312. {
  5313. name: "Megamacro+",
  5314. height: math.unit(2750000, "meters")
  5315. },
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5320. {
  5321. front: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(160, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/prince/front.svg",
  5327. extra: 3400 / 3000
  5328. }
  5329. },
  5330. jumping: {
  5331. height: math.unit(6, "feet"),
  5332. weight: math.unit(160, "lbs"),
  5333. name: "Jumping",
  5334. image: {
  5335. source: "./media/characters/prince/jump.svg",
  5336. extra: 2555 / 2134
  5337. }
  5338. },
  5339. },
  5340. [
  5341. {
  5342. name: "Normal",
  5343. height: math.unit(7.75, "feet"),
  5344. default: true
  5345. },
  5346. {
  5347. name: "Not cute",
  5348. height: math.unit(17, "feet")
  5349. },
  5350. {
  5351. name: "I said NOT",
  5352. height: math.unit(91, "feet")
  5353. },
  5354. {
  5355. name: "Please stop",
  5356. height: math.unit(560, "feet")
  5357. },
  5358. {
  5359. name: "What have you done",
  5360. height: math.unit(2200, "feet")
  5361. },
  5362. {
  5363. name: "Deer God",
  5364. height: math.unit(3.6, "miles")
  5365. },
  5366. ]
  5367. ))
  5368. characterMakers.push(() => makeCharacter(
  5369. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5370. {
  5371. standing: {
  5372. height: math.unit(6, "feet"),
  5373. weight: math.unit(300, "lbs"),
  5374. name: "Standing",
  5375. image: {
  5376. source: "./media/characters/psymon/standing.svg",
  5377. extra: 1888 / 1810,
  5378. bottom: 0.05
  5379. }
  5380. },
  5381. slithering: {
  5382. height: math.unit(6, "feet"),
  5383. weight: math.unit(300, "lbs"),
  5384. name: "Slithering",
  5385. image: {
  5386. source: "./media/characters/psymon/slithering.svg",
  5387. extra: 1330 / 1224
  5388. }
  5389. },
  5390. slitheringAlt: {
  5391. height: math.unit(6, "feet"),
  5392. weight: math.unit(300, "lbs"),
  5393. name: "Slithering (Alt)",
  5394. image: {
  5395. source: "./media/characters/psymon/slithering-alt.svg",
  5396. extra: 1330 / 1224
  5397. }
  5398. },
  5399. },
  5400. [
  5401. {
  5402. name: "Normal",
  5403. height: math.unit(11.25, "feet"),
  5404. default: true
  5405. },
  5406. {
  5407. name: "Large",
  5408. height: math.unit(27, "feet")
  5409. },
  5410. {
  5411. name: "Giant",
  5412. height: math.unit(87, "feet")
  5413. },
  5414. {
  5415. name: "Macro",
  5416. height: math.unit(365, "feet")
  5417. },
  5418. {
  5419. name: "Megamacro",
  5420. height: math.unit(3, "miles")
  5421. },
  5422. {
  5423. name: "World Serpent",
  5424. height: math.unit(8000, "miles")
  5425. },
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5430. {
  5431. front: {
  5432. height: math.unit(6, "feet"),
  5433. weight: math.unit(180, "lbs"),
  5434. name: "Front",
  5435. image: {
  5436. source: "./media/characters/daimos/front.svg",
  5437. extra: 4160 / 3897,
  5438. bottom: 0.021
  5439. }
  5440. }
  5441. },
  5442. [
  5443. {
  5444. name: "Normal",
  5445. height: math.unit(8, "feet"),
  5446. default: true
  5447. },
  5448. {
  5449. name: "Big Dog",
  5450. height: math.unit(22, "feet")
  5451. },
  5452. {
  5453. name: "Macro",
  5454. height: math.unit(127, "feet")
  5455. },
  5456. {
  5457. name: "Megamacro",
  5458. height: math.unit(3600, "feet")
  5459. },
  5460. ]
  5461. ))
  5462. characterMakers.push(() => makeCharacter(
  5463. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5464. {
  5465. side: {
  5466. height: math.unit(6, "feet"),
  5467. weight: math.unit(180, "lbs"),
  5468. name: "Side",
  5469. image: {
  5470. source: "./media/characters/blake/side.svg",
  5471. extra: 1212 / 1120,
  5472. bottom: 0.05
  5473. }
  5474. },
  5475. crouched: {
  5476. height: math.unit(6 * 0.57, "feet"),
  5477. weight: math.unit(180, "lbs"),
  5478. name: "Crouched",
  5479. image: {
  5480. source: "./media/characters/blake/crouched.svg",
  5481. extra: 840 / 587,
  5482. bottom: 0.04
  5483. }
  5484. },
  5485. bent: {
  5486. height: math.unit(6 * 0.75, "feet"),
  5487. weight: math.unit(180, "lbs"),
  5488. name: "Bent",
  5489. image: {
  5490. source: "./media/characters/blake/bent.svg",
  5491. extra: 592 / 544,
  5492. bottom: 0.035
  5493. }
  5494. },
  5495. },
  5496. [
  5497. {
  5498. name: "Normal",
  5499. height: math.unit(8 + 1 / 6, "feet"),
  5500. default: true
  5501. },
  5502. {
  5503. name: "Big Backside",
  5504. height: math.unit(37, "feet")
  5505. },
  5506. {
  5507. name: "Subway Shredder",
  5508. height: math.unit(72, "feet")
  5509. },
  5510. {
  5511. name: "City Carver",
  5512. height: math.unit(1675, "feet")
  5513. },
  5514. {
  5515. name: "Tectonic Tweaker",
  5516. height: math.unit(2300, "miles")
  5517. },
  5518. ]
  5519. ))
  5520. characterMakers.push(() => makeCharacter(
  5521. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5522. {
  5523. front: {
  5524. height: math.unit(6, "feet"),
  5525. weight: math.unit(180, "lbs"),
  5526. name: "Front",
  5527. image: {
  5528. source: "./media/characters/guisetto/front.svg",
  5529. extra: 856 / 817,
  5530. bottom: 0.06
  5531. }
  5532. },
  5533. airborne: {
  5534. height: math.unit(6, "feet"),
  5535. weight: math.unit(180, "lbs"),
  5536. name: "Airborne",
  5537. image: {
  5538. source: "./media/characters/guisetto/airborne.svg",
  5539. extra: 584 / 525
  5540. }
  5541. },
  5542. },
  5543. [
  5544. {
  5545. name: "Normal",
  5546. height: math.unit(10 + 11 / 12, "feet"),
  5547. default: true
  5548. },
  5549. {
  5550. name: "Large",
  5551. height: math.unit(35, "feet")
  5552. },
  5553. {
  5554. name: "Macro",
  5555. height: math.unit(475, "feet")
  5556. },
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5561. {
  5562. front: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(180, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/luxor/front.svg",
  5568. extra: 2940 / 2152
  5569. }
  5570. },
  5571. back: {
  5572. height: math.unit(6, "feet"),
  5573. weight: math.unit(180, "lbs"),
  5574. name: "Back",
  5575. image: {
  5576. source: "./media/characters/luxor/back.svg",
  5577. extra: 1083 / 960
  5578. }
  5579. },
  5580. },
  5581. [
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(5 + 5 / 6, "feet"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Lamp",
  5589. height: math.unit(50, "feet")
  5590. },
  5591. {
  5592. name: "Lämp",
  5593. height: math.unit(300, "feet")
  5594. },
  5595. {
  5596. name: "The sun is a lamp",
  5597. height: math.unit(250000, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(50, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/huoyan/front.svg"
  5610. }
  5611. },
  5612. side: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(180, "lbs"),
  5615. name: "Side",
  5616. image: {
  5617. source: "./media/characters/huoyan/side.svg"
  5618. }
  5619. },
  5620. },
  5621. [
  5622. {
  5623. name: "Chef",
  5624. height: math.unit(9, "feet")
  5625. },
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(65, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "Macro",
  5633. height: math.unit(780, "feet")
  5634. },
  5635. {
  5636. name: "Flaming Mountain",
  5637. height: math.unit(4.8, "miles")
  5638. },
  5639. {
  5640. name: "Celestial",
  5641. height: math.unit(765000, "miles")
  5642. },
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(5 + 3 / 4, "feet"),
  5650. weight: math.unit(120, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/tails/front.svg"
  5654. }
  5655. }
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(5 + 3 / 4, "feet"),
  5661. default: true
  5662. }
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(4, "feet"),
  5670. weight: math.unit(50, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/rainy/front.svg"
  5674. }
  5675. }
  5676. },
  5677. [
  5678. {
  5679. name: "Macro",
  5680. height: math.unit(800, "feet"),
  5681. default: true
  5682. }
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5687. {
  5688. front: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(150, "lbs"),
  5691. name: "Front",
  5692. image: {
  5693. source: "./media/characters/rainier/front.svg"
  5694. }
  5695. }
  5696. },
  5697. [
  5698. {
  5699. name: "Micro",
  5700. height: math.unit(2, "mm"),
  5701. default: true
  5702. }
  5703. ]
  5704. ))
  5705. characterMakers.push(() => makeCharacter(
  5706. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5707. {
  5708. front: {
  5709. height: math.unit(8 + 4/12, "feet"),
  5710. name: "Front",
  5711. image: {
  5712. source: "./media/characters/andy-renard/front.svg",
  5713. extra: 1839/1726,
  5714. bottom: 134/1973
  5715. }
  5716. },
  5717. back: {
  5718. height: math.unit(8 + 4/12, "feet"),
  5719. name: "Back",
  5720. image: {
  5721. source: "./media/characters/andy-renard/back.svg",
  5722. extra: 1838/1710,
  5723. bottom: 105/1943
  5724. }
  5725. },
  5726. },
  5727. [
  5728. {
  5729. name: "Tall",
  5730. height: math.unit(8 + 4/12, "feet")
  5731. },
  5732. {
  5733. name: "Mini Macro",
  5734. height: math.unit(15, "feet"),
  5735. default: true
  5736. },
  5737. {
  5738. name: "Macro",
  5739. height: math.unit(100, "feet")
  5740. },
  5741. {
  5742. name: "Mega Macro",
  5743. height: math.unit(1000, "feet")
  5744. },
  5745. {
  5746. name: "Giga Macro",
  5747. height: math.unit(10, "miles")
  5748. },
  5749. {
  5750. name: "God Macro",
  5751. height: math.unit(1, "multiverse")
  5752. },
  5753. ]
  5754. ))
  5755. characterMakers.push(() => makeCharacter(
  5756. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5757. {
  5758. front: {
  5759. height: math.unit(6, "feet"),
  5760. weight: math.unit(210, "lbs"),
  5761. name: "Front",
  5762. image: {
  5763. source: "./media/characters/cimmaron/front-sfw.svg",
  5764. extra: 701 / 676,
  5765. bottom: 0.046
  5766. }
  5767. },
  5768. back: {
  5769. height: math.unit(6, "feet"),
  5770. weight: math.unit(210, "lbs"),
  5771. name: "Back",
  5772. image: {
  5773. source: "./media/characters/cimmaron/back-sfw.svg",
  5774. extra: 701 / 676,
  5775. bottom: 0.046
  5776. }
  5777. },
  5778. frontNsfw: {
  5779. height: math.unit(6, "feet"),
  5780. weight: math.unit(210, "lbs"),
  5781. name: "Front (NSFW)",
  5782. image: {
  5783. source: "./media/characters/cimmaron/front-nsfw.svg",
  5784. extra: 701 / 676,
  5785. bottom: 0.046
  5786. }
  5787. },
  5788. backNsfw: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(210, "lbs"),
  5791. name: "Back (NSFW)",
  5792. image: {
  5793. source: "./media/characters/cimmaron/back-nsfw.svg",
  5794. extra: 701 / 676,
  5795. bottom: 0.046
  5796. }
  5797. },
  5798. dick: {
  5799. height: math.unit(1.714, "feet"),
  5800. name: "Dick",
  5801. image: {
  5802. source: "./media/characters/cimmaron/dick.svg"
  5803. }
  5804. },
  5805. },
  5806. [
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(6, "feet"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Macro Mayor",
  5814. height: math.unit(350, "meters")
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(200, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/akari/front.svg",
  5827. extra: 962 / 901,
  5828. bottom: 0.04
  5829. }
  5830. }
  5831. },
  5832. [
  5833. {
  5834. name: "Micro",
  5835. height: math.unit(5, "inches"),
  5836. default: true
  5837. },
  5838. {
  5839. name: "Normal",
  5840. height: math.unit(7, "feet")
  5841. },
  5842. ]
  5843. ))
  5844. characterMakers.push(() => makeCharacter(
  5845. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5846. {
  5847. front: {
  5848. height: math.unit(6, "feet"),
  5849. weight: math.unit(140, "lbs"),
  5850. name: "Front",
  5851. image: {
  5852. source: "./media/characters/cynosura/front.svg",
  5853. extra: 896 / 847
  5854. }
  5855. },
  5856. back: {
  5857. height: math.unit(6, "feet"),
  5858. weight: math.unit(140, "lbs"),
  5859. name: "Back",
  5860. image: {
  5861. source: "./media/characters/cynosura/back.svg",
  5862. extra: 1365 / 1250
  5863. }
  5864. },
  5865. },
  5866. [
  5867. {
  5868. name: "Micro",
  5869. height: math.unit(4, "inches")
  5870. },
  5871. {
  5872. name: "Normal",
  5873. height: math.unit(5.75, "feet"),
  5874. default: true
  5875. },
  5876. {
  5877. name: "Tall",
  5878. height: math.unit(10, "feet")
  5879. },
  5880. {
  5881. name: "Big",
  5882. height: math.unit(20, "feet")
  5883. },
  5884. {
  5885. name: "Macro",
  5886. height: math.unit(50, "feet")
  5887. },
  5888. ]
  5889. ))
  5890. characterMakers.push(() => makeCharacter(
  5891. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5892. {
  5893. front: {
  5894. height: math.unit(13 + 2/12, "feet"),
  5895. weight: math.unit(800, "kg"),
  5896. name: "Front",
  5897. image: {
  5898. source: "./media/characters/gin/front.svg",
  5899. extra: 1312/1191,
  5900. bottom: 45/1357
  5901. }
  5902. },
  5903. mouth: {
  5904. height: math.unit(2.39 * 1.8, "feet"),
  5905. name: "Mouth",
  5906. image: {
  5907. source: "./media/characters/gin/mouth.svg"
  5908. }
  5909. },
  5910. hand: {
  5911. height: math.unit(1.57 * 2.19, "feet"),
  5912. name: "Hand",
  5913. image: {
  5914. source: "./media/characters/gin/hand.svg"
  5915. }
  5916. },
  5917. foot: {
  5918. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5919. name: "Foot",
  5920. image: {
  5921. source: "./media/characters/gin/foot.svg"
  5922. }
  5923. },
  5924. sole: {
  5925. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5926. name: "Sole",
  5927. image: {
  5928. source: "./media/characters/gin/sole.svg"
  5929. }
  5930. },
  5931. },
  5932. [
  5933. {
  5934. name: "Very Small",
  5935. height: math.unit(13 + 2 / 12, "feet")
  5936. },
  5937. {
  5938. name: "Micro",
  5939. height: math.unit(600, "miles")
  5940. },
  5941. {
  5942. name: "Regular",
  5943. height: math.unit(20, "earths"),
  5944. default: true
  5945. },
  5946. {
  5947. name: "Macro",
  5948. height: math.unit(2.2, "solarradii")
  5949. },
  5950. {
  5951. name: "Teramacro",
  5952. height: math.unit(1.2, "galaxies")
  5953. },
  5954. {
  5955. name: "Omegamacro",
  5956. height: math.unit(200, "universes")
  5957. },
  5958. ]
  5959. ))
  5960. characterMakers.push(() => makeCharacter(
  5961. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5962. {
  5963. front: {
  5964. height: math.unit(6 + 1 / 6, "feet"),
  5965. weight: math.unit(178, "lbs"),
  5966. name: "Front",
  5967. image: {
  5968. source: "./media/characters/guy/front.svg"
  5969. }
  5970. }
  5971. },
  5972. [
  5973. {
  5974. name: "Normal",
  5975. height: math.unit(6 + 1 / 6, "feet"),
  5976. default: true
  5977. },
  5978. {
  5979. name: "Large",
  5980. height: math.unit(25 + 7 / 12, "feet")
  5981. },
  5982. {
  5983. name: "Macro",
  5984. height: math.unit(60 + 9 / 12, "feet")
  5985. },
  5986. {
  5987. name: "Macro+",
  5988. height: math.unit(246, "feet")
  5989. },
  5990. {
  5991. name: "Macro++",
  5992. height: math.unit(878, "feet")
  5993. }
  5994. ]
  5995. ))
  5996. characterMakers.push(() => makeCharacter(
  5997. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5998. {
  5999. front: {
  6000. height: math.unit(9, "feet"),
  6001. weight: math.unit(800, "lbs"),
  6002. name: "Front",
  6003. image: {
  6004. source: "./media/characters/tiberius/front.svg",
  6005. extra: 2295 / 2071
  6006. }
  6007. },
  6008. back: {
  6009. height: math.unit(9, "feet"),
  6010. weight: math.unit(800, "lbs"),
  6011. name: "Back",
  6012. image: {
  6013. source: "./media/characters/tiberius/back.svg",
  6014. extra: 2373 / 2160
  6015. }
  6016. },
  6017. },
  6018. [
  6019. {
  6020. name: "Normal",
  6021. height: math.unit(9, "feet"),
  6022. default: true
  6023. }
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6028. {
  6029. front: {
  6030. height: math.unit(6, "feet"),
  6031. weight: math.unit(600, "lbs"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/surgo/front.svg",
  6035. extra: 3591 / 2227
  6036. }
  6037. },
  6038. back: {
  6039. height: math.unit(6, "feet"),
  6040. weight: math.unit(600, "lbs"),
  6041. name: "Back",
  6042. image: {
  6043. source: "./media/characters/surgo/back.svg",
  6044. extra: 3557 / 2228
  6045. }
  6046. },
  6047. laying: {
  6048. height: math.unit(6 * 0.85, "feet"),
  6049. weight: math.unit(600, "lbs"),
  6050. name: "Laying",
  6051. image: {
  6052. source: "./media/characters/surgo/laying.svg"
  6053. }
  6054. },
  6055. },
  6056. [
  6057. {
  6058. name: "Normal",
  6059. height: math.unit(6, "feet"),
  6060. default: true
  6061. }
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6066. {
  6067. side: {
  6068. height: math.unit(6, "feet"),
  6069. weight: math.unit(150, "lbs"),
  6070. name: "Side",
  6071. image: {
  6072. source: "./media/characters/cibus/side.svg",
  6073. extra: 800 / 400
  6074. }
  6075. },
  6076. },
  6077. [
  6078. {
  6079. name: "Normal",
  6080. height: math.unit(6, "feet"),
  6081. default: true
  6082. }
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6087. {
  6088. front: {
  6089. height: math.unit(6, "feet"),
  6090. weight: math.unit(240, "lbs"),
  6091. name: "Front",
  6092. image: {
  6093. source: "./media/characters/nibbles/front.svg"
  6094. }
  6095. },
  6096. side: {
  6097. height: math.unit(6, "feet"),
  6098. weight: math.unit(240, "lbs"),
  6099. name: "Side",
  6100. image: {
  6101. source: "./media/characters/nibbles/side.svg"
  6102. }
  6103. },
  6104. },
  6105. [
  6106. {
  6107. name: "Normal",
  6108. height: math.unit(9, "feet"),
  6109. default: true
  6110. }
  6111. ]
  6112. ))
  6113. characterMakers.push(() => makeCharacter(
  6114. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6115. {
  6116. side: {
  6117. height: math.unit(5 + 1 / 6, "feet"),
  6118. weight: math.unit(130, "lbs"),
  6119. name: "Side",
  6120. image: {
  6121. source: "./media/characters/rikky/side.svg",
  6122. extra: 851 / 801
  6123. }
  6124. },
  6125. },
  6126. [
  6127. {
  6128. name: "Normal",
  6129. height: math.unit(5 + 1 / 6, "feet")
  6130. },
  6131. {
  6132. name: "Macro",
  6133. height: math.unit(152, "feet"),
  6134. default: true
  6135. },
  6136. {
  6137. name: "Megamacro",
  6138. height: math.unit(7, "miles")
  6139. }
  6140. ]
  6141. ))
  6142. characterMakers.push(() => makeCharacter(
  6143. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6144. {
  6145. side: {
  6146. height: math.unit(370, "cm"),
  6147. weight: math.unit(350, "lbs"),
  6148. name: "Side",
  6149. image: {
  6150. source: "./media/characters/malfressa/side.svg"
  6151. }
  6152. },
  6153. walking: {
  6154. height: math.unit(370, "cm"),
  6155. weight: math.unit(350, "lbs"),
  6156. name: "Walking",
  6157. image: {
  6158. source: "./media/characters/malfressa/walking.svg"
  6159. }
  6160. },
  6161. feral: {
  6162. height: math.unit(2500, "cm"),
  6163. weight: math.unit(100000, "lbs"),
  6164. name: "Feral",
  6165. image: {
  6166. source: "./media/characters/malfressa/feral.svg",
  6167. extra: 2108 / 837,
  6168. bottom: 0.02
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Normal",
  6175. height: math.unit(370, "cm")
  6176. },
  6177. {
  6178. name: "Macro",
  6179. height: math.unit(300, "meters"),
  6180. default: true
  6181. }
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6186. {
  6187. front: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(60, "kg"),
  6190. name: "Front",
  6191. image: {
  6192. source: "./media/characters/jaro/front.svg"
  6193. }
  6194. },
  6195. back: {
  6196. height: math.unit(6, "feet"),
  6197. weight: math.unit(60, "kg"),
  6198. name: "Back",
  6199. image: {
  6200. source: "./media/characters/jaro/back.svg"
  6201. }
  6202. },
  6203. },
  6204. [
  6205. {
  6206. name: "Micro",
  6207. height: math.unit(7, "inches")
  6208. },
  6209. {
  6210. name: "Normal",
  6211. height: math.unit(5.5, "feet"),
  6212. default: true
  6213. },
  6214. {
  6215. name: "Minimacro",
  6216. height: math.unit(20, "feet")
  6217. },
  6218. {
  6219. name: "Macro",
  6220. height: math.unit(200, "meters")
  6221. }
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(195, "lb"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/rogue/front.svg"
  6233. }
  6234. },
  6235. },
  6236. [
  6237. {
  6238. name: "Macro",
  6239. height: math.unit(90, "feet"),
  6240. default: true
  6241. },
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6246. {
  6247. front: {
  6248. height: math.unit(5 + 8 / 12, "feet"),
  6249. weight: math.unit(140, "lb"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/piper/front.svg",
  6253. extra: 3948/3655,
  6254. bottom: 0/3948
  6255. }
  6256. },
  6257. },
  6258. [
  6259. {
  6260. name: "Micro",
  6261. height: math.unit(2, "inches")
  6262. },
  6263. {
  6264. name: "Normal",
  6265. height: math.unit(5 + 8 / 12, "feet")
  6266. },
  6267. {
  6268. name: "Macro",
  6269. height: math.unit(250, "feet"),
  6270. default: true
  6271. },
  6272. {
  6273. name: "Megamacro",
  6274. height: math.unit(7, "miles")
  6275. },
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6280. {
  6281. front: {
  6282. height: math.unit(6, "feet"),
  6283. weight: math.unit(220, "lb"),
  6284. name: "Front",
  6285. image: {
  6286. source: "./media/characters/gemini/front.svg"
  6287. }
  6288. },
  6289. back: {
  6290. height: math.unit(6, "feet"),
  6291. weight: math.unit(220, "lb"),
  6292. name: "Back",
  6293. image: {
  6294. source: "./media/characters/gemini/back.svg"
  6295. }
  6296. },
  6297. kneeling: {
  6298. height: math.unit(6 / 1.5, "feet"),
  6299. weight: math.unit(220, "lb"),
  6300. name: "Kneeling",
  6301. image: {
  6302. source: "./media/characters/gemini/kneeling.svg",
  6303. bottom: 0.02
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Macro",
  6310. height: math.unit(300, "meters"),
  6311. default: true
  6312. },
  6313. {
  6314. name: "Megamacro",
  6315. height: math.unit(6900, "meters")
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6321. {
  6322. anthro: {
  6323. height: math.unit(2.35, "meters"),
  6324. weight: math.unit(73, "kg"),
  6325. name: "Anthro",
  6326. image: {
  6327. source: "./media/characters/alicia/anthro.svg",
  6328. extra: 2571 / 2385,
  6329. bottom: 75 / 2648
  6330. }
  6331. },
  6332. paw: {
  6333. height: math.unit(1.32, "feet"),
  6334. name: "Paw",
  6335. image: {
  6336. source: "./media/characters/alicia/paw.svg"
  6337. }
  6338. },
  6339. feral: {
  6340. height: math.unit(1.69, "meters"),
  6341. weight: math.unit(73, "kg"),
  6342. name: "Feral",
  6343. image: {
  6344. source: "./media/characters/alicia/feral.svg",
  6345. extra: 2123 / 1715,
  6346. bottom: 222 / 2349
  6347. }
  6348. },
  6349. },
  6350. [
  6351. {
  6352. name: "Normal",
  6353. height: math.unit(2.35, "meters")
  6354. },
  6355. {
  6356. name: "Macro",
  6357. height: math.unit(60, "meters"),
  6358. default: true
  6359. },
  6360. {
  6361. name: "Megamacro",
  6362. height: math.unit(10000, "kilometers")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6368. {
  6369. front: {
  6370. height: math.unit(7, "feet"),
  6371. weight: math.unit(250, "lbs"),
  6372. name: "Front",
  6373. image: {
  6374. source: "./media/characters/archy/front.svg"
  6375. }
  6376. }
  6377. },
  6378. [
  6379. {
  6380. name: "Micro",
  6381. height: math.unit(1, "inch")
  6382. },
  6383. {
  6384. name: "Shorty",
  6385. height: math.unit(5, "feet")
  6386. },
  6387. {
  6388. name: "Normal",
  6389. height: math.unit(7, "feet")
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(600, "meters"),
  6394. default: true
  6395. },
  6396. {
  6397. name: "Megamacro",
  6398. height: math.unit(1, "mile")
  6399. },
  6400. ]
  6401. ))
  6402. characterMakers.push(() => makeCharacter(
  6403. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6404. {
  6405. front: {
  6406. height: math.unit(1.65, "meters"),
  6407. weight: math.unit(74, "kg"),
  6408. name: "Front",
  6409. image: {
  6410. source: "./media/characters/berri/front.svg",
  6411. extra: 857 / 837,
  6412. bottom: 18 / 877
  6413. }
  6414. },
  6415. bum: {
  6416. height: math.unit(1.46, "feet"),
  6417. name: "Bum",
  6418. image: {
  6419. source: "./media/characters/berri/bum.svg"
  6420. }
  6421. },
  6422. mouth: {
  6423. height: math.unit(0.44, "feet"),
  6424. name: "Mouth",
  6425. image: {
  6426. source: "./media/characters/berri/mouth.svg"
  6427. }
  6428. },
  6429. paw: {
  6430. height: math.unit(0.826, "feet"),
  6431. name: "Paw",
  6432. image: {
  6433. source: "./media/characters/berri/paw.svg"
  6434. }
  6435. },
  6436. },
  6437. [
  6438. {
  6439. name: "Normal",
  6440. height: math.unit(1.65, "meters")
  6441. },
  6442. {
  6443. name: "Macro",
  6444. height: math.unit(60, "m"),
  6445. default: true
  6446. },
  6447. {
  6448. name: "Megamacro",
  6449. height: math.unit(9.213, "km")
  6450. },
  6451. {
  6452. name: "Planet Eater",
  6453. height: math.unit(489, "megameters")
  6454. },
  6455. {
  6456. name: "Teramacro",
  6457. height: math.unit(2471635000000, "meters")
  6458. },
  6459. {
  6460. name: "Examacro",
  6461. height: math.unit(8.0624e+26, "meters")
  6462. }
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(1.72, "meters"),
  6470. weight: math.unit(68, "kg"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/lexi/front.svg"
  6474. }
  6475. }
  6476. },
  6477. [
  6478. {
  6479. name: "Very Smol",
  6480. height: math.unit(10, "mm")
  6481. },
  6482. {
  6483. name: "Micro",
  6484. height: math.unit(6.8, "cm"),
  6485. default: true
  6486. },
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(1.72, "m")
  6490. }
  6491. ]
  6492. ))
  6493. characterMakers.push(() => makeCharacter(
  6494. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6495. {
  6496. front: {
  6497. height: math.unit(1.69, "meters"),
  6498. weight: math.unit(68, "kg"),
  6499. name: "Front",
  6500. image: {
  6501. source: "./media/characters/martin/front.svg",
  6502. extra: 596 / 581
  6503. }
  6504. }
  6505. },
  6506. [
  6507. {
  6508. name: "Micro",
  6509. height: math.unit(6.85, "cm"),
  6510. default: true
  6511. },
  6512. {
  6513. name: "Normal",
  6514. height: math.unit(1.69, "m")
  6515. }
  6516. ]
  6517. ))
  6518. characterMakers.push(() => makeCharacter(
  6519. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6520. {
  6521. front: {
  6522. height: math.unit(1.69, "meters"),
  6523. weight: math.unit(68, "kg"),
  6524. name: "Front",
  6525. image: {
  6526. source: "./media/characters/juno/front.svg"
  6527. }
  6528. }
  6529. },
  6530. [
  6531. {
  6532. name: "Micro",
  6533. height: math.unit(7, "cm")
  6534. },
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(1.89, "m")
  6538. },
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(353, "meters"),
  6542. default: true
  6543. }
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(1.93, "meters"),
  6551. weight: math.unit(83, "kg"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/samantha/front.svg"
  6555. }
  6556. },
  6557. frontClothed: {
  6558. height: math.unit(1.93, "meters"),
  6559. weight: math.unit(83, "kg"),
  6560. name: "Front (Clothed)",
  6561. image: {
  6562. source: "./media/characters/samantha/front-clothed.svg"
  6563. }
  6564. },
  6565. back: {
  6566. height: math.unit(1.93, "meters"),
  6567. weight: math.unit(83, "kg"),
  6568. name: "Back",
  6569. image: {
  6570. source: "./media/characters/samantha/back.svg"
  6571. }
  6572. },
  6573. },
  6574. [
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(1.93, "m")
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(74, "meters"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Macro+",
  6586. height: math.unit(223, "meters"),
  6587. },
  6588. {
  6589. name: "Megamacro",
  6590. height: math.unit(8381, "meters"),
  6591. },
  6592. {
  6593. name: "Megamacro+",
  6594. height: math.unit(12000, "kilometers")
  6595. },
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(1.92, "meters"),
  6603. weight: math.unit(80, "kg"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/dr-clay/front.svg"
  6607. }
  6608. },
  6609. frontClothed: {
  6610. height: math.unit(1.92, "meters"),
  6611. weight: math.unit(80, "kg"),
  6612. name: "Front (Clothed)",
  6613. image: {
  6614. source: "./media/characters/dr-clay/front-clothed.svg"
  6615. }
  6616. }
  6617. },
  6618. [
  6619. {
  6620. name: "Normal",
  6621. height: math.unit(1.92, "m")
  6622. },
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(214, "meters"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Macro+",
  6630. height: math.unit(12.237, "meters"),
  6631. },
  6632. {
  6633. name: "Megamacro",
  6634. height: math.unit(557, "megameters"),
  6635. },
  6636. {
  6637. name: "Unimaginable",
  6638. height: math.unit(120e9, "lightyears")
  6639. },
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(2, "meters"),
  6647. weight: math.unit(80, "kg"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6651. }
  6652. }
  6653. },
  6654. [
  6655. {
  6656. name: "Teramacro",
  6657. height: math.unit(500000, "lightyears"),
  6658. default: true
  6659. },
  6660. ]
  6661. ))
  6662. characterMakers.push(() => makeCharacter(
  6663. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6664. {
  6665. crux: {
  6666. height: math.unit(2, "meters"),
  6667. weight: math.unit(150, "kg"),
  6668. name: "Crux",
  6669. image: {
  6670. source: "./media/characters/vemus/crux.svg",
  6671. extra: 1074/936,
  6672. bottom: 23/1097
  6673. }
  6674. },
  6675. skunkTanuki: {
  6676. height: math.unit(2, "meters"),
  6677. weight: math.unit(150, "kg"),
  6678. name: "Skunk-Tanuki",
  6679. image: {
  6680. source: "./media/characters/vemus/skunk-tanuki.svg",
  6681. extra: 926/893,
  6682. bottom: 20/946
  6683. }
  6684. },
  6685. },
  6686. [
  6687. {
  6688. name: "Normal",
  6689. height: math.unit(3.75, "meters"),
  6690. default: true
  6691. },
  6692. {
  6693. name: "Big",
  6694. height: math.unit(8, "meters")
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(100, "meters")
  6699. },
  6700. {
  6701. name: "Macro+",
  6702. height: math.unit(1500, "meters")
  6703. },
  6704. {
  6705. name: "Stellar",
  6706. height: math.unit(14e8, "meters")
  6707. },
  6708. ]
  6709. ))
  6710. characterMakers.push(() => makeCharacter(
  6711. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6712. {
  6713. front: {
  6714. height: math.unit(2, "meters"),
  6715. weight: math.unit(70, "kg"),
  6716. name: "Front",
  6717. image: {
  6718. source: "./media/characters/beherit/front.svg",
  6719. extra: 1408 / 1242
  6720. }
  6721. }
  6722. },
  6723. [
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(6, "feet")
  6727. },
  6728. {
  6729. name: "Lorg",
  6730. height: math.unit(25, "feet"),
  6731. default: true
  6732. },
  6733. {
  6734. name: "Lorger",
  6735. height: math.unit(75, "feet")
  6736. },
  6737. {
  6738. name: "Macro",
  6739. height: math.unit(200, "meters")
  6740. },
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(2, "meters"),
  6748. weight: math.unit(150, "kg"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/everett/front.svg",
  6752. extra: 2038 / 1737,
  6753. bottom: 0.03
  6754. }
  6755. },
  6756. paw: {
  6757. height: math.unit(2 / 3.6, "meters"),
  6758. name: "Paw",
  6759. image: {
  6760. source: "./media/characters/everett/paw.svg"
  6761. }
  6762. },
  6763. },
  6764. [
  6765. {
  6766. name: "Normal",
  6767. height: math.unit(15, "feet"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Lorg",
  6772. height: math.unit(70, "feet"),
  6773. default: true
  6774. },
  6775. {
  6776. name: "Lorger",
  6777. height: math.unit(250, "feet")
  6778. },
  6779. {
  6780. name: "Macro",
  6781. height: math.unit(500, "meters")
  6782. },
  6783. ]
  6784. ))
  6785. characterMakers.push(() => makeCharacter(
  6786. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6787. {
  6788. front: {
  6789. height: math.unit(2, "meters"),
  6790. weight: math.unit(86, "kg"),
  6791. name: "Front",
  6792. image: {
  6793. source: "./media/characters/rose/front.svg",
  6794. extra: 1785/1636,
  6795. bottom: 30/1815
  6796. }
  6797. },
  6798. frontSporty: {
  6799. height: math.unit(2, "meters"),
  6800. weight: math.unit(86, "kg"),
  6801. name: "Front (Sporty)",
  6802. image: {
  6803. source: "./media/characters/rose/front-sporty.svg",
  6804. extra: 350/335,
  6805. bottom: 10/360
  6806. }
  6807. },
  6808. frontAlt: {
  6809. height: math.unit(1.6, "meters"),
  6810. weight: math.unit(86, "kg"),
  6811. name: "Front (Alt)",
  6812. image: {
  6813. source: "./media/characters/rose/front-alt.svg",
  6814. extra: 299/283,
  6815. bottom: 3/302
  6816. }
  6817. },
  6818. plush: {
  6819. height: math.unit(2, "meters"),
  6820. weight: math.unit(86/3, "kg"),
  6821. name: "Plush",
  6822. image: {
  6823. source: "./media/characters/rose/plush.svg",
  6824. extra: 361/337,
  6825. bottom: 11/372
  6826. }
  6827. },
  6828. },
  6829. [
  6830. {
  6831. name: "True Micro",
  6832. height: math.unit(9, "cm")
  6833. },
  6834. {
  6835. name: "Micro",
  6836. height: math.unit(16, "cm")
  6837. },
  6838. {
  6839. name: "Normal",
  6840. height: math.unit(1.85, "meters"),
  6841. default: true
  6842. },
  6843. {
  6844. name: "Mini-Macro",
  6845. height: math.unit(5, "meters")
  6846. },
  6847. {
  6848. name: "Macro",
  6849. height: math.unit(15, "meters")
  6850. },
  6851. {
  6852. name: "True Macro",
  6853. height: math.unit(40, "meters")
  6854. },
  6855. {
  6856. name: "City Scale",
  6857. height: math.unit(1, "km")
  6858. },
  6859. ]
  6860. ))
  6861. characterMakers.push(() => makeCharacter(
  6862. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6863. {
  6864. front: {
  6865. height: math.unit(2, "meters"),
  6866. weight: math.unit(350, "lbs"),
  6867. name: "Front",
  6868. image: {
  6869. source: "./media/characters/regal/front.svg"
  6870. }
  6871. },
  6872. back: {
  6873. height: math.unit(2, "meters"),
  6874. weight: math.unit(350, "lbs"),
  6875. name: "Back",
  6876. image: {
  6877. source: "./media/characters/regal/back.svg"
  6878. }
  6879. },
  6880. },
  6881. [
  6882. {
  6883. name: "Macro",
  6884. height: math.unit(350, "feet"),
  6885. default: true
  6886. }
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6891. {
  6892. front: {
  6893. height: math.unit(4 + 11 / 12, "feet"),
  6894. weight: math.unit(100, "lbs"),
  6895. name: "Front",
  6896. image: {
  6897. source: "./media/characters/opal/front.svg"
  6898. }
  6899. },
  6900. frontAlt: {
  6901. height: math.unit(4 + 11 / 12, "feet"),
  6902. weight: math.unit(100, "lbs"),
  6903. name: "Front (Alt)",
  6904. image: {
  6905. source: "./media/characters/opal/front-alt.svg"
  6906. }
  6907. },
  6908. },
  6909. [
  6910. {
  6911. name: "Small",
  6912. height: math.unit(4 + 11 / 12, "feet")
  6913. },
  6914. {
  6915. name: "Normal",
  6916. height: math.unit(20, "feet"),
  6917. default: true
  6918. },
  6919. {
  6920. name: "Macro",
  6921. height: math.unit(120, "feet")
  6922. },
  6923. {
  6924. name: "Megamacro",
  6925. height: math.unit(80, "miles")
  6926. },
  6927. {
  6928. name: "True Size",
  6929. height: math.unit(100000, "lightyears")
  6930. },
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6935. {
  6936. front: {
  6937. height: math.unit(6, "feet"),
  6938. weight: math.unit(200, "lbs"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/vector-wuff/front.svg"
  6942. }
  6943. }
  6944. },
  6945. [
  6946. {
  6947. name: "Normal",
  6948. height: math.unit(2.8, "meters")
  6949. },
  6950. {
  6951. name: "Macro",
  6952. height: math.unit(450, "meters"),
  6953. default: true
  6954. },
  6955. {
  6956. name: "Megamacro",
  6957. height: math.unit(15, "kilometers")
  6958. }
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6963. {
  6964. front: {
  6965. height: math.unit(6, "feet"),
  6966. weight: math.unit(256, "lbs"),
  6967. name: "Front",
  6968. image: {
  6969. source: "./media/characters/dannik/front.svg"
  6970. }
  6971. }
  6972. },
  6973. [
  6974. {
  6975. name: "Macro",
  6976. height: math.unit(69.57, "meters"),
  6977. default: true
  6978. },
  6979. ]
  6980. ))
  6981. characterMakers.push(() => makeCharacter(
  6982. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6983. {
  6984. front: {
  6985. height: math.unit(6, "feet"),
  6986. weight: math.unit(120, "lbs"),
  6987. name: "Front",
  6988. image: {
  6989. source: "./media/characters/azura-saharah/front.svg"
  6990. }
  6991. },
  6992. back: {
  6993. height: math.unit(6, "feet"),
  6994. weight: math.unit(120, "lbs"),
  6995. name: "Back",
  6996. image: {
  6997. source: "./media/characters/azura-saharah/back.svg"
  6998. }
  6999. },
  7000. },
  7001. [
  7002. {
  7003. name: "Macro",
  7004. height: math.unit(100, "feet"),
  7005. default: true
  7006. },
  7007. ]
  7008. ))
  7009. characterMakers.push(() => makeCharacter(
  7010. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7011. {
  7012. side: {
  7013. height: math.unit(5 + 4 / 12, "feet"),
  7014. weight: math.unit(163, "lbs"),
  7015. name: "Side",
  7016. image: {
  7017. source: "./media/characters/kennedy/side.svg"
  7018. }
  7019. }
  7020. },
  7021. [
  7022. {
  7023. name: "Standard Doggo",
  7024. height: math.unit(5 + 4 / 12, "feet")
  7025. },
  7026. {
  7027. name: "Big Doggo",
  7028. height: math.unit(25 + 3 / 12, "feet"),
  7029. default: true
  7030. },
  7031. ]
  7032. ))
  7033. characterMakers.push(() => makeCharacter(
  7034. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7035. {
  7036. front: {
  7037. height: math.unit(6, "feet"),
  7038. weight: math.unit(90, "lbs"),
  7039. name: "Front",
  7040. image: {
  7041. source: "./media/characters/odi-lunar/front.svg"
  7042. }
  7043. }
  7044. },
  7045. [
  7046. {
  7047. name: "Micro",
  7048. height: math.unit(3, "inches"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Normal",
  7053. height: math.unit(5.5, "feet")
  7054. }
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7059. {
  7060. back: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(220, "lbs"),
  7063. name: "Back",
  7064. image: {
  7065. source: "./media/characters/mandake/back.svg"
  7066. }
  7067. }
  7068. },
  7069. [
  7070. {
  7071. name: "Normal",
  7072. height: math.unit(7, "feet"),
  7073. default: true
  7074. },
  7075. {
  7076. name: "Macro",
  7077. height: math.unit(78, "feet")
  7078. },
  7079. {
  7080. name: "Macro+",
  7081. height: math.unit(300, "meters")
  7082. },
  7083. {
  7084. name: "Macro++",
  7085. height: math.unit(2400, "feet")
  7086. },
  7087. {
  7088. name: "Megamacro",
  7089. height: math.unit(5167, "meters")
  7090. },
  7091. {
  7092. name: "Gigamacro",
  7093. height: math.unit(41769, "miles")
  7094. },
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7099. {
  7100. front: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(120, "lbs"),
  7103. name: "Front",
  7104. image: {
  7105. source: "./media/characters/yozey/front.svg"
  7106. }
  7107. },
  7108. frontAlt: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(120, "lbs"),
  7111. name: "Front (Alt)",
  7112. image: {
  7113. source: "./media/characters/yozey/front-alt.svg"
  7114. }
  7115. },
  7116. side: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(120, "lbs"),
  7119. name: "Side",
  7120. image: {
  7121. source: "./media/characters/yozey/side.svg"
  7122. }
  7123. },
  7124. },
  7125. [
  7126. {
  7127. name: "Micro",
  7128. height: math.unit(3, "inches"),
  7129. default: true
  7130. },
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(6, "feet")
  7134. }
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(103, "lbs"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/valeska-voss/front.svg"
  7146. }
  7147. }
  7148. },
  7149. [
  7150. {
  7151. name: "Mini-Sized Sub",
  7152. height: math.unit(3.1, "inches")
  7153. },
  7154. {
  7155. name: "Mid-Sized Sub",
  7156. height: math.unit(6.2, "inches")
  7157. },
  7158. {
  7159. name: "Full-Sized Sub",
  7160. height: math.unit(9.3, "inches")
  7161. },
  7162. {
  7163. name: "Normal",
  7164. height: math.unit(5 + 2 / 12, "foot"),
  7165. default: true
  7166. },
  7167. ]
  7168. ))
  7169. characterMakers.push(() => makeCharacter(
  7170. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7171. {
  7172. front: {
  7173. height: math.unit(6, "feet"),
  7174. weight: math.unit(160, "lbs"),
  7175. name: "Front",
  7176. image: {
  7177. source: "./media/characters/gene-zeta/front.svg",
  7178. extra: 3006 / 2826,
  7179. bottom: 182 / 3188
  7180. }
  7181. }
  7182. },
  7183. [
  7184. {
  7185. name: "Micro",
  7186. height: math.unit(6, "inches")
  7187. },
  7188. {
  7189. name: "Normal",
  7190. height: math.unit(5 + 11 / 12, "foot"),
  7191. default: true
  7192. },
  7193. {
  7194. name: "Macro",
  7195. height: math.unit(140, "feet")
  7196. },
  7197. {
  7198. name: "Supercharged",
  7199. height: math.unit(2500, "feet")
  7200. },
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(350, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/razinox/front.svg",
  7212. extra: 1686 / 1548,
  7213. bottom: 28.2 / 1868
  7214. }
  7215. },
  7216. back: {
  7217. height: math.unit(6, "feet"),
  7218. weight: math.unit(350, "lbs"),
  7219. name: "Back",
  7220. image: {
  7221. source: "./media/characters/razinox/back.svg",
  7222. extra: 1660 / 1590,
  7223. bottom: 15 / 1665
  7224. }
  7225. },
  7226. },
  7227. [
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(10 + 8 / 12, "foot")
  7231. },
  7232. {
  7233. name: "Minimacro",
  7234. height: math.unit(15, "foot")
  7235. },
  7236. {
  7237. name: "Macro",
  7238. height: math.unit(60, "foot"),
  7239. default: true
  7240. },
  7241. {
  7242. name: "Megamacro",
  7243. height: math.unit(5, "miles")
  7244. },
  7245. {
  7246. name: "Gigamacro",
  7247. height: math.unit(6000, "miles")
  7248. },
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7253. {
  7254. front: {
  7255. height: math.unit(6, "feet"),
  7256. weight: math.unit(150, "lbs"),
  7257. name: "Front",
  7258. image: {
  7259. source: "./media/characters/cobalt/front.svg"
  7260. }
  7261. }
  7262. },
  7263. [
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(8 + 1 / 12, "foot")
  7267. },
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(111, "foot"),
  7271. default: true
  7272. },
  7273. {
  7274. name: "Supracosmic",
  7275. height: math.unit(1e42, "feet")
  7276. },
  7277. ]
  7278. ))
  7279. characterMakers.push(() => makeCharacter(
  7280. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7281. {
  7282. front: {
  7283. height: math.unit(6, "feet"),
  7284. weight: math.unit(140, "lbs"),
  7285. name: "Front",
  7286. image: {
  7287. source: "./media/characters/amanda/front.svg"
  7288. }
  7289. }
  7290. },
  7291. [
  7292. {
  7293. name: "Micro",
  7294. height: math.unit(5, "inches"),
  7295. default: true
  7296. },
  7297. ]
  7298. ))
  7299. characterMakers.push(() => makeCharacter(
  7300. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7301. {
  7302. front: {
  7303. height: math.unit(2.75, "meters"),
  7304. weight: math.unit(1200, "lb"),
  7305. name: "Front",
  7306. image: {
  7307. source: "./media/characters/teal/front.svg",
  7308. extra: 2463 / 2320,
  7309. bottom: 166 / 2629
  7310. }
  7311. },
  7312. back: {
  7313. height: math.unit(2.75, "meters"),
  7314. weight: math.unit(1200, "lb"),
  7315. name: "Back",
  7316. image: {
  7317. source: "./media/characters/teal/back.svg",
  7318. extra: 2580 / 2489,
  7319. bottom: 151 / 2731
  7320. }
  7321. },
  7322. sitting: {
  7323. height: math.unit(1.9, "meters"),
  7324. weight: math.unit(1200, "lb"),
  7325. name: "Sitting",
  7326. image: {
  7327. source: "./media/characters/teal/sitting.svg",
  7328. extra: 623 / 590,
  7329. bottom: 121 / 744
  7330. }
  7331. },
  7332. standing: {
  7333. height: math.unit(2.75, "meters"),
  7334. weight: math.unit(1200, "lb"),
  7335. name: "Standing",
  7336. image: {
  7337. source: "./media/characters/teal/standing.svg",
  7338. extra: 923 / 893,
  7339. bottom: 60 / 983
  7340. }
  7341. },
  7342. stretching: {
  7343. height: math.unit(3.65, "meters"),
  7344. weight: math.unit(1200, "lb"),
  7345. name: "Stretching",
  7346. image: {
  7347. source: "./media/characters/teal/stretching.svg",
  7348. extra: 1276 / 1244,
  7349. bottom: 0 / 1276
  7350. }
  7351. },
  7352. legged: {
  7353. height: math.unit(1.3, "meters"),
  7354. weight: math.unit(100, "lb"),
  7355. name: "Legged",
  7356. image: {
  7357. source: "./media/characters/teal/legged.svg",
  7358. extra: 462 / 437,
  7359. bottom: 24 / 486
  7360. }
  7361. },
  7362. naga: {
  7363. height: math.unit(5.4, "meters"),
  7364. weight: math.unit(4000, "lb"),
  7365. name: "Naga",
  7366. image: {
  7367. source: "./media/characters/teal/naga.svg",
  7368. extra: 1902 / 1858,
  7369. bottom: 0 / 1902
  7370. }
  7371. },
  7372. hand: {
  7373. height: math.unit(0.52, "meters"),
  7374. name: "Hand",
  7375. image: {
  7376. source: "./media/characters/teal/hand.svg"
  7377. }
  7378. },
  7379. maw: {
  7380. height: math.unit(0.43, "meters"),
  7381. name: "Maw",
  7382. image: {
  7383. source: "./media/characters/teal/maw.svg"
  7384. }
  7385. },
  7386. slit: {
  7387. height: math.unit(0.25, "meters"),
  7388. name: "Slit",
  7389. image: {
  7390. source: "./media/characters/teal/slit.svg"
  7391. }
  7392. },
  7393. },
  7394. [
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(2.75, "meters"),
  7398. default: true
  7399. },
  7400. {
  7401. name: "Macro",
  7402. height: math.unit(300, "feet")
  7403. },
  7404. {
  7405. name: "Macro+",
  7406. height: math.unit(2000, "feet")
  7407. },
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7412. {
  7413. frontCat: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(180, "lbs"),
  7416. name: "Front (Cat)",
  7417. image: {
  7418. source: "./media/characters/ravin-amulet/front-cat.svg"
  7419. }
  7420. },
  7421. frontCatAlt: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(180, "lbs"),
  7424. name: "Front (Alt, Cat)",
  7425. image: {
  7426. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7427. }
  7428. },
  7429. frontWerewolf: {
  7430. height: math.unit(6 * 1.2, "feet"),
  7431. weight: math.unit(225, "lbs"),
  7432. name: "Front (Werewolf)",
  7433. image: {
  7434. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7435. }
  7436. },
  7437. backWerewolf: {
  7438. height: math.unit(6 * 1.2, "feet"),
  7439. weight: math.unit(225, "lbs"),
  7440. name: "Back (Werewolf)",
  7441. image: {
  7442. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7443. }
  7444. },
  7445. },
  7446. [
  7447. {
  7448. name: "Nano",
  7449. height: math.unit(1, "micrometer")
  7450. },
  7451. {
  7452. name: "Micro",
  7453. height: math.unit(1, "inch")
  7454. },
  7455. {
  7456. name: "Normal",
  7457. height: math.unit(6, "feet"),
  7458. default: true
  7459. },
  7460. {
  7461. name: "Macro",
  7462. height: math.unit(60, "feet")
  7463. }
  7464. ]
  7465. ))
  7466. characterMakers.push(() => makeCharacter(
  7467. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7468. {
  7469. front: {
  7470. height: math.unit(6, "feet"),
  7471. weight: math.unit(165, "lbs"),
  7472. name: "Front",
  7473. image: {
  7474. source: "./media/characters/fluoresce/front.svg"
  7475. }
  7476. }
  7477. },
  7478. [
  7479. {
  7480. name: "Micro",
  7481. height: math.unit(6, "cm")
  7482. },
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(5 + 7 / 12, "feet"),
  7486. default: true
  7487. },
  7488. {
  7489. name: "Macro",
  7490. height: math.unit(56, "feet")
  7491. },
  7492. {
  7493. name: "Megamacro",
  7494. height: math.unit(1.9, "miles")
  7495. },
  7496. ]
  7497. ))
  7498. characterMakers.push(() => makeCharacter(
  7499. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7500. {
  7501. front: {
  7502. height: math.unit(9 + 6 / 12, "feet"),
  7503. weight: math.unit(523, "lbs"),
  7504. name: "Side",
  7505. image: {
  7506. source: "./media/characters/aurora/side.svg"
  7507. }
  7508. }
  7509. },
  7510. [
  7511. {
  7512. name: "Normal",
  7513. height: math.unit(9 + 6 / 12, "feet")
  7514. },
  7515. {
  7516. name: "Macro",
  7517. height: math.unit(96, "feet"),
  7518. default: true
  7519. },
  7520. {
  7521. name: "Macro+",
  7522. height: math.unit(243, "feet")
  7523. },
  7524. ]
  7525. ))
  7526. characterMakers.push(() => makeCharacter(
  7527. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7528. {
  7529. front: {
  7530. height: math.unit(194, "cm"),
  7531. weight: math.unit(90, "kg"),
  7532. name: "Front",
  7533. image: {
  7534. source: "./media/characters/ranek/front.svg"
  7535. }
  7536. },
  7537. side: {
  7538. height: math.unit(194, "cm"),
  7539. weight: math.unit(90, "kg"),
  7540. name: "Side",
  7541. image: {
  7542. source: "./media/characters/ranek/side.svg"
  7543. }
  7544. },
  7545. back: {
  7546. height: math.unit(194, "cm"),
  7547. weight: math.unit(90, "kg"),
  7548. name: "Back",
  7549. image: {
  7550. source: "./media/characters/ranek/back.svg"
  7551. }
  7552. },
  7553. feral: {
  7554. height: math.unit(30, "cm"),
  7555. weight: math.unit(1.6, "lbs"),
  7556. name: "Feral",
  7557. image: {
  7558. source: "./media/characters/ranek/feral.svg"
  7559. }
  7560. },
  7561. },
  7562. [
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(194, "cm"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Macro",
  7570. height: math.unit(100, "meters")
  7571. },
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(5 + 6 / 12, "feet"),
  7579. weight: math.unit(153, "lbs"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/andrew-cooper/front.svg"
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Nano",
  7589. height: math.unit(1, "mm")
  7590. },
  7591. {
  7592. name: "Micro",
  7593. height: math.unit(2, "inches")
  7594. },
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(5 + 6 / 12, "feet"),
  7598. default: true
  7599. }
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7604. {
  7605. front: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(180, "lbs"),
  7608. name: "Front",
  7609. image: {
  7610. source: "./media/characters/akane-sato/front.svg",
  7611. extra: 1219 / 1140
  7612. }
  7613. },
  7614. back: {
  7615. height: math.unit(6, "feet"),
  7616. weight: math.unit(180, "lbs"),
  7617. name: "Back",
  7618. image: {
  7619. source: "./media/characters/akane-sato/back.svg",
  7620. extra: 1219 / 1170
  7621. }
  7622. },
  7623. },
  7624. [
  7625. {
  7626. name: "Normal",
  7627. height: math.unit(2.5, "meters")
  7628. },
  7629. {
  7630. name: "Macro",
  7631. height: math.unit(250, "meters"),
  7632. default: true
  7633. },
  7634. {
  7635. name: "Megamacro",
  7636. height: math.unit(25, "km")
  7637. },
  7638. ]
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7642. {
  7643. front: {
  7644. height: math.unit(6, "feet"),
  7645. weight: math.unit(65, "kg"),
  7646. name: "Front",
  7647. image: {
  7648. source: "./media/characters/rook/front.svg",
  7649. extra: 960 / 950
  7650. }
  7651. }
  7652. },
  7653. [
  7654. {
  7655. name: "Normal",
  7656. height: math.unit(8.8, "feet")
  7657. },
  7658. {
  7659. name: "Macro",
  7660. height: math.unit(88, "feet"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Megamacro",
  7665. height: math.unit(8, "miles")
  7666. },
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7671. {
  7672. front: {
  7673. height: math.unit(12 + 2 / 12, "feet"),
  7674. weight: math.unit(808, "lbs"),
  7675. name: "Front",
  7676. image: {
  7677. source: "./media/characters/prodigy/front.svg"
  7678. }
  7679. }
  7680. },
  7681. [
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(12 + 2 / 12, "feet"),
  7685. default: true
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(143, "feet")
  7690. },
  7691. {
  7692. name: "Macro+",
  7693. height: math.unit(400, "feet")
  7694. },
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7699. {
  7700. front: {
  7701. height: math.unit(6, "feet"),
  7702. weight: math.unit(225, "lbs"),
  7703. name: "Front",
  7704. image: {
  7705. source: "./media/characters/daniel/front.svg"
  7706. }
  7707. },
  7708. leaning: {
  7709. height: math.unit(6, "feet"),
  7710. weight: math.unit(225, "lbs"),
  7711. name: "Leaning",
  7712. image: {
  7713. source: "./media/characters/daniel/leaning.svg"
  7714. }
  7715. },
  7716. },
  7717. [
  7718. {
  7719. name: "Macro",
  7720. height: math.unit(1000, "feet"),
  7721. default: true
  7722. },
  7723. ]
  7724. ))
  7725. characterMakers.push(() => makeCharacter(
  7726. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7727. {
  7728. front: {
  7729. height: math.unit(6, "feet"),
  7730. weight: math.unit(88, "lbs"),
  7731. name: "Front",
  7732. image: {
  7733. source: "./media/characters/chiros/front.svg",
  7734. extra: 306 / 226
  7735. }
  7736. },
  7737. side: {
  7738. height: math.unit(6, "feet"),
  7739. weight: math.unit(88, "lbs"),
  7740. name: "Side",
  7741. image: {
  7742. source: "./media/characters/chiros/side.svg",
  7743. extra: 306 / 226
  7744. }
  7745. },
  7746. },
  7747. [
  7748. {
  7749. name: "Normal",
  7750. height: math.unit(6, "cm"),
  7751. default: true
  7752. },
  7753. ]
  7754. ))
  7755. characterMakers.push(() => makeCharacter(
  7756. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7757. {
  7758. front: {
  7759. height: math.unit(6, "feet"),
  7760. weight: math.unit(100, "lbs"),
  7761. name: "Front",
  7762. image: {
  7763. source: "./media/characters/selka/front.svg",
  7764. extra: 947 / 887
  7765. }
  7766. }
  7767. },
  7768. [
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(5, "cm"),
  7772. default: true
  7773. },
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7778. {
  7779. front: {
  7780. height: math.unit(8 + 3 / 12, "feet"),
  7781. weight: math.unit(424, "lbs"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/verin/front.svg",
  7785. extra: 1845 / 1550
  7786. }
  7787. },
  7788. frontArmored: {
  7789. height: math.unit(8 + 3 / 12, "feet"),
  7790. weight: math.unit(424, "lbs"),
  7791. name: "Front (Armored)",
  7792. image: {
  7793. source: "./media/characters/verin/front-armor.svg",
  7794. extra: 1845 / 1550,
  7795. bottom: 0.01
  7796. }
  7797. },
  7798. back: {
  7799. height: math.unit(8 + 3 / 12, "feet"),
  7800. weight: math.unit(424, "lbs"),
  7801. name: "Back",
  7802. image: {
  7803. source: "./media/characters/verin/back.svg",
  7804. bottom: 0.1,
  7805. extra: 1
  7806. }
  7807. },
  7808. foot: {
  7809. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7810. name: "Foot",
  7811. image: {
  7812. source: "./media/characters/verin/foot.svg"
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(8 + 3 / 12, "feet")
  7820. },
  7821. {
  7822. name: "Minimacro",
  7823. height: math.unit(21, "feet"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Macro",
  7828. height: math.unit(626, "feet")
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(2.718, "meters"),
  7837. weight: math.unit(150, "lbs"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/sovrim-terraquian/front.svg"
  7841. }
  7842. },
  7843. back: {
  7844. height: math.unit(2.718, "meters"),
  7845. weight: math.unit(150, "lbs"),
  7846. name: "Back",
  7847. image: {
  7848. source: "./media/characters/sovrim-terraquian/back.svg"
  7849. }
  7850. }
  7851. },
  7852. [
  7853. {
  7854. name: "Micro",
  7855. height: math.unit(2, "inches")
  7856. },
  7857. {
  7858. name: "Small",
  7859. height: math.unit(1, "meter")
  7860. },
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(Math.E, "meters"),
  7864. default: true
  7865. },
  7866. {
  7867. name: "Macro",
  7868. height: math.unit(20, "meters")
  7869. },
  7870. {
  7871. name: "Macro+",
  7872. height: math.unit(400, "meters")
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(7, "feet"),
  7881. weight: math.unit(489, "lbs"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/reece-silvermane/front.svg",
  7885. bottom: 0.02,
  7886. extra: 1
  7887. }
  7888. },
  7889. },
  7890. [
  7891. {
  7892. name: "Macro",
  7893. height: math.unit(1.5, "miles"),
  7894. default: true
  7895. },
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(6, "feet"),
  7903. weight: math.unit(78, "kg"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/kane/front.svg",
  7907. extra: 978 / 899
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Normal",
  7914. height: math.unit(2.1, "m"),
  7915. },
  7916. {
  7917. name: "Macro",
  7918. height: math.unit(1, "km"),
  7919. default: true
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7925. {
  7926. front: {
  7927. height: math.unit(6, "feet"),
  7928. weight: math.unit(200, "kg"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/tegon/front.svg",
  7932. bottom: 0.01,
  7933. extra: 1
  7934. }
  7935. },
  7936. },
  7937. [
  7938. {
  7939. name: "Micro",
  7940. height: math.unit(1, "inch")
  7941. },
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(6 + 3 / 12, "feet"),
  7945. default: true
  7946. },
  7947. {
  7948. name: "Macro",
  7949. height: math.unit(300, "feet")
  7950. },
  7951. {
  7952. name: "Megamacro",
  7953. height: math.unit(69, "miles")
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7959. {
  7960. side: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(2304, "lbs"),
  7963. name: "Side",
  7964. image: {
  7965. source: "./media/characters/arcturax/side.svg",
  7966. extra: 790 / 376,
  7967. bottom: 0.01
  7968. }
  7969. },
  7970. },
  7971. [
  7972. {
  7973. name: "Micro",
  7974. height: math.unit(2, "inch")
  7975. },
  7976. {
  7977. name: "Normal",
  7978. height: math.unit(6, "feet")
  7979. },
  7980. {
  7981. name: "Macro",
  7982. height: math.unit(39, "feet"),
  7983. default: true
  7984. },
  7985. {
  7986. name: "Megamacro",
  7987. height: math.unit(7, "miles")
  7988. },
  7989. ]
  7990. ))
  7991. characterMakers.push(() => makeCharacter(
  7992. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7993. {
  7994. front: {
  7995. height: math.unit(6, "feet"),
  7996. weight: math.unit(50, "lbs"),
  7997. name: "Front",
  7998. image: {
  7999. source: "./media/characters/sentri/front.svg",
  8000. extra: 1750 / 1570,
  8001. bottom: 0.025
  8002. }
  8003. },
  8004. frontAlt: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(50, "lbs"),
  8007. name: "Front (Alt)",
  8008. image: {
  8009. source: "./media/characters/sentri/front-alt.svg",
  8010. extra: 1750 / 1570,
  8011. bottom: 0.025
  8012. }
  8013. },
  8014. },
  8015. [
  8016. {
  8017. name: "Normal",
  8018. height: math.unit(15, "feet"),
  8019. default: true
  8020. },
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(2500, "feet")
  8024. }
  8025. ]
  8026. ))
  8027. characterMakers.push(() => makeCharacter(
  8028. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8029. {
  8030. front: {
  8031. height: math.unit(5 + 8 / 12, "feet"),
  8032. weight: math.unit(130, "lbs"),
  8033. name: "Front",
  8034. image: {
  8035. source: "./media/characters/corvin/front.svg",
  8036. extra: 1803 / 1629
  8037. }
  8038. },
  8039. frontShirt: {
  8040. height: math.unit(5 + 8 / 12, "feet"),
  8041. weight: math.unit(130, "lbs"),
  8042. name: "Front (Shirt)",
  8043. image: {
  8044. source: "./media/characters/corvin/front-shirt.svg",
  8045. extra: 1803 / 1629
  8046. }
  8047. },
  8048. frontPoncho: {
  8049. height: math.unit(5 + 8 / 12, "feet"),
  8050. weight: math.unit(130, "lbs"),
  8051. name: "Front (Poncho)",
  8052. image: {
  8053. source: "./media/characters/corvin/front-poncho.svg",
  8054. extra: 1803 / 1629
  8055. }
  8056. },
  8057. side: {
  8058. height: math.unit(5 + 8 / 12, "feet"),
  8059. weight: math.unit(130, "lbs"),
  8060. name: "Side",
  8061. image: {
  8062. source: "./media/characters/corvin/side.svg",
  8063. extra: 1012 / 945
  8064. }
  8065. },
  8066. back: {
  8067. height: math.unit(5 + 8 / 12, "feet"),
  8068. weight: math.unit(130, "lbs"),
  8069. name: "Back",
  8070. image: {
  8071. source: "./media/characters/corvin/back.svg",
  8072. extra: 1803 / 1629
  8073. }
  8074. },
  8075. },
  8076. [
  8077. {
  8078. name: "Micro",
  8079. height: math.unit(3, "inches")
  8080. },
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(5 + 8 / 12, "feet")
  8084. },
  8085. {
  8086. name: "Macro",
  8087. height: math.unit(300, "feet"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Megamacro",
  8092. height: math.unit(500, "miles")
  8093. }
  8094. ]
  8095. ))
  8096. characterMakers.push(() => makeCharacter(
  8097. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8098. {
  8099. front: {
  8100. height: math.unit(6, "feet"),
  8101. weight: math.unit(135, "lbs"),
  8102. name: "Front",
  8103. image: {
  8104. source: "./media/characters/q/front.svg",
  8105. extra: 854 / 752,
  8106. bottom: 0.005
  8107. }
  8108. },
  8109. back: {
  8110. height: math.unit(6, "feet"),
  8111. weight: math.unit(130, "lbs"),
  8112. name: "Back",
  8113. image: {
  8114. source: "./media/characters/q/back.svg",
  8115. extra: 854 / 752
  8116. }
  8117. },
  8118. },
  8119. [
  8120. {
  8121. name: "Macro",
  8122. height: math.unit(90, "feet"),
  8123. default: true
  8124. },
  8125. {
  8126. name: "Extra Macro",
  8127. height: math.unit(300, "feet"),
  8128. },
  8129. {
  8130. name: "BIG WALF",
  8131. height: math.unit(750, "feet"),
  8132. },
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8137. {
  8138. front: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(150, "lbs"),
  8141. name: "Front",
  8142. image: {
  8143. source: "./media/characters/carley/front.svg",
  8144. extra: 3927 / 3540,
  8145. bottom: 29.2 / 735
  8146. }
  8147. }
  8148. },
  8149. [
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(6 + 3 / 12, "feet")
  8153. },
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(185, "feet"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Megamacro",
  8161. height: math.unit(8, "miles"),
  8162. },
  8163. ]
  8164. ))
  8165. characterMakers.push(() => makeCharacter(
  8166. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8167. {
  8168. front: {
  8169. height: math.unit(3, "feet"),
  8170. weight: math.unit(28, "lbs"),
  8171. name: "Front",
  8172. image: {
  8173. source: "./media/characters/citrine/front.svg"
  8174. }
  8175. }
  8176. },
  8177. [
  8178. {
  8179. name: "Normal",
  8180. height: math.unit(3, "feet"),
  8181. default: true
  8182. }
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8187. {
  8188. front: {
  8189. height: math.unit(14, "feet"),
  8190. weight: math.unit(1450, "kg"),
  8191. capacity: math.unit(15, "people"),
  8192. name: "Front",
  8193. image: {
  8194. source: "./media/characters/aura-starwind/front.svg",
  8195. extra: 1440/1327,
  8196. bottom: 11/1451
  8197. }
  8198. },
  8199. side: {
  8200. height: math.unit(14, "feet"),
  8201. weight: math.unit(1450, "kg"),
  8202. capacity: math.unit(15, "people"),
  8203. name: "Side",
  8204. image: {
  8205. source: "./media/characters/aura-starwind/side.svg",
  8206. extra: 1654 / 1497
  8207. }
  8208. },
  8209. taur: {
  8210. height: math.unit(18, "feet"),
  8211. weight: math.unit(5500, "kg"),
  8212. capacity: math.unit(50, "people"),
  8213. name: "Taur",
  8214. image: {
  8215. source: "./media/characters/aura-starwind/taur.svg",
  8216. extra: 1760 / 1650
  8217. }
  8218. },
  8219. feral: {
  8220. height: math.unit(46, "feet"),
  8221. weight: math.unit(25000, "kg"),
  8222. capacity: math.unit(120, "people"),
  8223. name: "Feral",
  8224. image: {
  8225. source: "./media/characters/aura-starwind/feral.svg"
  8226. }
  8227. },
  8228. },
  8229. [
  8230. {
  8231. name: "Normal",
  8232. height: math.unit(14, "feet"),
  8233. default: true
  8234. },
  8235. {
  8236. name: "Macro",
  8237. height: math.unit(50, "meters")
  8238. },
  8239. {
  8240. name: "Megamacro",
  8241. height: math.unit(5000, "meters")
  8242. },
  8243. {
  8244. name: "Gigamacro",
  8245. height: math.unit(100000, "kilometers")
  8246. },
  8247. ]
  8248. ))
  8249. characterMakers.push(() => makeCharacter(
  8250. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8251. {
  8252. front: {
  8253. height: math.unit(2 + 7 / 12, "feet"),
  8254. weight: math.unit(32, "lbs"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/rivet/front.svg",
  8258. extra: 1716 / 1658,
  8259. bottom: 0.03
  8260. }
  8261. },
  8262. foot: {
  8263. height: math.unit(0.551, "feet"),
  8264. name: "Rivet's Foot",
  8265. image: {
  8266. source: "./media/characters/rivet/foot.svg"
  8267. },
  8268. rename: true
  8269. }
  8270. },
  8271. [
  8272. {
  8273. name: "Micro",
  8274. height: math.unit(1.5, "inches"),
  8275. },
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(2 + 7 / 12, "feet"),
  8279. default: true
  8280. },
  8281. {
  8282. name: "Macro",
  8283. height: math.unit(85, "feet")
  8284. },
  8285. {
  8286. name: "Megamacro",
  8287. height: math.unit(2.2, "km")
  8288. }
  8289. ]
  8290. ))
  8291. characterMakers.push(() => makeCharacter(
  8292. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8293. {
  8294. front: {
  8295. height: math.unit(5 + 9 / 12, "feet"),
  8296. weight: math.unit(150, "lbs"),
  8297. name: "Front",
  8298. image: {
  8299. source: "./media/characters/coffee/front.svg",
  8300. extra: 3666 / 3032,
  8301. bottom: 0.04
  8302. }
  8303. },
  8304. foot: {
  8305. height: math.unit(1.29, "feet"),
  8306. name: "Foot",
  8307. image: {
  8308. source: "./media/characters/coffee/foot.svg"
  8309. }
  8310. },
  8311. },
  8312. [
  8313. {
  8314. name: "Micro",
  8315. height: math.unit(2, "inches"),
  8316. },
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(5 + 9 / 12, "feet"),
  8320. default: true
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(800, "feet")
  8325. },
  8326. {
  8327. name: "Megamacro",
  8328. height: math.unit(25, "miles")
  8329. }
  8330. ]
  8331. ))
  8332. characterMakers.push(() => makeCharacter(
  8333. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8334. {
  8335. front: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(200, "lbs"),
  8338. name: "Front",
  8339. image: {
  8340. source: "./media/characters/chari-gal/front.svg",
  8341. extra: 1568 / 1385,
  8342. bottom: 0.047
  8343. }
  8344. },
  8345. gigantamax: {
  8346. height: math.unit(6 * 16, "feet"),
  8347. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8348. name: "Gigantamax",
  8349. image: {
  8350. source: "./media/characters/chari-gal/gigantamax.svg",
  8351. extra: 1124 / 888,
  8352. bottom: 0.03
  8353. }
  8354. },
  8355. },
  8356. [
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(5 + 7 / 12, "feet")
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(200, "feet"),
  8364. default: true
  8365. }
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(150, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/nova/front.svg",
  8377. extra: 5000 / 4722,
  8378. bottom: 0.02
  8379. }
  8380. }
  8381. },
  8382. [
  8383. {
  8384. name: "Micro-",
  8385. height: math.unit(0.8, "inches")
  8386. },
  8387. {
  8388. name: "Micro",
  8389. height: math.unit(2, "inches"),
  8390. default: true
  8391. },
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8396. {
  8397. front: {
  8398. height: math.unit(3 + 1 / 12, "feet"),
  8399. weight: math.unit(21.7, "lbs"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/argent/front.svg",
  8403. extra: 1471 / 1331,
  8404. bottom: 100.8 / 1575.5
  8405. }
  8406. }
  8407. },
  8408. [
  8409. {
  8410. name: "Micro",
  8411. height: math.unit(2, "inches")
  8412. },
  8413. {
  8414. name: "Normal",
  8415. height: math.unit(3 + 1 / 12, "feet"),
  8416. default: true
  8417. },
  8418. {
  8419. name: "Macro",
  8420. height: math.unit(120, "feet")
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8426. {
  8427. lamp: {
  8428. height: math.unit(7 * 1559 / 989, "feet"),
  8429. name: "Magic Lamp",
  8430. image: {
  8431. source: "./media/characters/mira-al-cul/lamp.svg",
  8432. extra: 1617 / 1559
  8433. }
  8434. },
  8435. front: {
  8436. height: math.unit(7, "feet"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/mira-al-cul/front.svg",
  8440. extra: 1044 / 990
  8441. }
  8442. },
  8443. },
  8444. [
  8445. {
  8446. name: "Heavily Restricted",
  8447. height: math.unit(7 * 1559 / 989, "feet")
  8448. },
  8449. {
  8450. name: "Freshly Freed",
  8451. height: math.unit(50 * 1559 / 989, "feet")
  8452. },
  8453. {
  8454. name: "World Encompassing",
  8455. height: math.unit(10000 * 1559 / 989, "miles")
  8456. },
  8457. {
  8458. name: "Galactic",
  8459. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8460. },
  8461. {
  8462. name: "Palmed Universe",
  8463. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8464. default: true
  8465. },
  8466. {
  8467. name: "Multiversal Matriarch",
  8468. height: math.unit(8.87e10, "yottameters")
  8469. },
  8470. {
  8471. name: "Void Mother",
  8472. height: math.unit(3.14e110, "yottaparsecs")
  8473. },
  8474. {
  8475. name: "Toying with Transcendence",
  8476. height: math.unit(1e307, "meters")
  8477. },
  8478. ]
  8479. ))
  8480. characterMakers.push(() => makeCharacter(
  8481. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8482. {
  8483. front: {
  8484. height: math.unit(17 + 1 / 12, "feet"),
  8485. weight: math.unit(476.2 * 5, "lbs"),
  8486. name: "Front",
  8487. image: {
  8488. source: "./media/characters/kuro-shi-uchū/front.svg",
  8489. extra: 2329 / 1835,
  8490. bottom: 0.02
  8491. }
  8492. },
  8493. },
  8494. [
  8495. {
  8496. name: "Micro",
  8497. height: math.unit(2, "inches")
  8498. },
  8499. {
  8500. name: "Normal",
  8501. height: math.unit(12, "meters")
  8502. },
  8503. {
  8504. name: "Planetary",
  8505. height: math.unit(0.00929, "AU"),
  8506. default: true
  8507. },
  8508. {
  8509. name: "Universal",
  8510. height: math.unit(20, "gigaparsecs")
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8516. {
  8517. front: {
  8518. height: math.unit(5 + 2 / 12, "feet"),
  8519. weight: math.unit(120, "lbs"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/katherine/front.svg",
  8523. extra: 2075 / 1969
  8524. }
  8525. },
  8526. dress: {
  8527. height: math.unit(5 + 2 / 12, "feet"),
  8528. weight: math.unit(120, "lbs"),
  8529. name: "Dress",
  8530. image: {
  8531. source: "./media/characters/katherine/dress.svg",
  8532. extra: 2258 / 2064
  8533. }
  8534. },
  8535. },
  8536. [
  8537. {
  8538. name: "Micro",
  8539. height: math.unit(1, "inches"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Normal",
  8544. height: math.unit(5 + 2 / 12, "feet")
  8545. },
  8546. {
  8547. name: "Macro",
  8548. height: math.unit(100, "meters")
  8549. },
  8550. {
  8551. name: "Megamacro",
  8552. height: math.unit(80, "miles")
  8553. },
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8558. {
  8559. front: {
  8560. height: math.unit(7 + 8 / 12, "feet"),
  8561. weight: math.unit(250, "lbs"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/yevis/front.svg",
  8565. extra: 1938 / 1755
  8566. }
  8567. }
  8568. },
  8569. [
  8570. {
  8571. name: "Mortal",
  8572. height: math.unit(7 + 8 / 12, "feet")
  8573. },
  8574. {
  8575. name: "Battle",
  8576. height: math.unit(25 + 11 / 12, "feet")
  8577. },
  8578. {
  8579. name: "Wrath",
  8580. height: math.unit(1654 + 11 / 12, "feet")
  8581. },
  8582. {
  8583. name: "Planet Destroyer",
  8584. height: math.unit(12000, "miles")
  8585. },
  8586. {
  8587. name: "Galaxy Conqueror",
  8588. height: math.unit(1.45, "zettameters"),
  8589. default: true
  8590. },
  8591. {
  8592. name: "Universal War",
  8593. height: math.unit(184, "gigaparsecs")
  8594. },
  8595. {
  8596. name: "Eternity War",
  8597. height: math.unit(1.98e55, "yottaparsecs")
  8598. },
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8603. {
  8604. front: {
  8605. height: math.unit(5 + 8 / 12, "feet"),
  8606. weight: math.unit(63, "kg"),
  8607. name: "Front",
  8608. image: {
  8609. source: "./media/characters/xavier/front.svg",
  8610. extra: 944 / 883
  8611. }
  8612. },
  8613. frontStretch: {
  8614. height: math.unit(5 + 8 / 12, "feet"),
  8615. weight: math.unit(63, "kg"),
  8616. name: "Stretching",
  8617. image: {
  8618. source: "./media/characters/xavier/front-stretch.svg",
  8619. extra: 962 / 820
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Normal",
  8626. height: math.unit(5 + 8 / 12, "feet")
  8627. },
  8628. {
  8629. name: "Macro",
  8630. height: math.unit(100, "meters"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "McLargeHuge",
  8635. height: math.unit(10, "miles")
  8636. },
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8641. {
  8642. front: {
  8643. height: math.unit(5 + 5 / 12, "feet"),
  8644. weight: math.unit(150, "lb"),
  8645. name: "Front",
  8646. image: {
  8647. source: "./media/characters/joshii/front.svg",
  8648. extra: 765 / 653,
  8649. bottom: 51 / 816
  8650. }
  8651. },
  8652. foot: {
  8653. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8654. name: "Foot",
  8655. image: {
  8656. source: "./media/characters/joshii/foot.svg"
  8657. }
  8658. },
  8659. },
  8660. [
  8661. {
  8662. name: "Micro",
  8663. height: math.unit(2, "inches"),
  8664. default: true
  8665. },
  8666. {
  8667. name: "Normal",
  8668. height: math.unit(5 + 5 / 12, "feet")
  8669. },
  8670. {
  8671. name: "Macro",
  8672. height: math.unit(785, "feet")
  8673. },
  8674. {
  8675. name: "Megamacro",
  8676. height: math.unit(24.5, "miles")
  8677. },
  8678. ]
  8679. ))
  8680. characterMakers.push(() => makeCharacter(
  8681. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8682. {
  8683. front: {
  8684. height: math.unit(6, "feet"),
  8685. weight: math.unit(150, "lb"),
  8686. name: "Front",
  8687. image: {
  8688. source: "./media/characters/goddess-elizabeth/front.svg",
  8689. extra: 1800 / 1525,
  8690. bottom: 0.005
  8691. }
  8692. },
  8693. foot: {
  8694. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8695. name: "Foot",
  8696. image: {
  8697. source: "./media/characters/goddess-elizabeth/foot.svg"
  8698. }
  8699. },
  8700. mouth: {
  8701. height: math.unit(6, "feet"),
  8702. name: "Mouth",
  8703. image: {
  8704. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8705. }
  8706. },
  8707. },
  8708. [
  8709. {
  8710. name: "Micro",
  8711. height: math.unit(12, "feet")
  8712. },
  8713. {
  8714. name: "Normal",
  8715. height: math.unit(80, "miles"),
  8716. default: true
  8717. },
  8718. {
  8719. name: "Macro",
  8720. height: math.unit(15000, "parsecs")
  8721. },
  8722. ]
  8723. ))
  8724. characterMakers.push(() => makeCharacter(
  8725. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8726. {
  8727. front: {
  8728. height: math.unit(5 + 9 / 12, "feet"),
  8729. weight: math.unit(144, "lb"),
  8730. name: "Front",
  8731. image: {
  8732. source: "./media/characters/kara/front.svg"
  8733. }
  8734. },
  8735. feet: {
  8736. height: math.unit(6 / 6.765, "feet"),
  8737. name: "Kara's Feet",
  8738. rename: true,
  8739. image: {
  8740. source: "./media/characters/kara/feet.svg"
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Normal",
  8747. height: math.unit(5 + 9 / 12, "feet")
  8748. },
  8749. {
  8750. name: "Macro",
  8751. height: math.unit(174, "feet"),
  8752. default: true
  8753. },
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8758. {
  8759. front: {
  8760. height: math.unit(18, "feet"),
  8761. weight: math.unit(4050, "lb"),
  8762. name: "Front",
  8763. image: {
  8764. source: "./media/characters/tyrone/front.svg",
  8765. extra: 2405 / 2270,
  8766. bottom: 182 / 2587
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Normal",
  8773. height: math.unit(18, "feet"),
  8774. default: true
  8775. },
  8776. {
  8777. name: "Macro",
  8778. height: math.unit(300, "feet")
  8779. },
  8780. {
  8781. name: "Megamacro",
  8782. height: math.unit(15, "km")
  8783. },
  8784. {
  8785. name: "Gigamacro",
  8786. height: math.unit(500, "km")
  8787. },
  8788. {
  8789. name: "Teramacro",
  8790. height: math.unit(0.5, "gigameters")
  8791. },
  8792. {
  8793. name: "Omnimacro",
  8794. height: math.unit(1e252, "yottauniverse")
  8795. },
  8796. ]
  8797. ))
  8798. characterMakers.push(() => makeCharacter(
  8799. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8800. {
  8801. front: {
  8802. height: math.unit(7 + 8 / 12, "feet"),
  8803. weight: math.unit(120, "lb"),
  8804. name: "Front",
  8805. image: {
  8806. source: "./media/characters/danny/front.svg",
  8807. extra: 1490 / 1350
  8808. }
  8809. },
  8810. back: {
  8811. height: math.unit(7 + 8 / 12, "feet"),
  8812. weight: math.unit(120, "lb"),
  8813. name: "Back",
  8814. image: {
  8815. source: "./media/characters/danny/back.svg",
  8816. extra: 1490 / 1350
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(7 + 8 / 12, "feet"),
  8824. default: true
  8825. },
  8826. ]
  8827. ))
  8828. characterMakers.push(() => makeCharacter(
  8829. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8830. {
  8831. front: {
  8832. height: math.unit(3.5, "inches"),
  8833. weight: math.unit(19, "grams"),
  8834. name: "Front",
  8835. image: {
  8836. source: "./media/characters/mallow/front.svg",
  8837. extra: 471 / 431
  8838. }
  8839. },
  8840. back: {
  8841. height: math.unit(3.5, "inches"),
  8842. weight: math.unit(19, "grams"),
  8843. name: "Back",
  8844. image: {
  8845. source: "./media/characters/mallow/back.svg",
  8846. extra: 471 / 431
  8847. }
  8848. },
  8849. },
  8850. [
  8851. {
  8852. name: "Normal",
  8853. height: math.unit(3.5, "inches"),
  8854. default: true
  8855. },
  8856. ]
  8857. ))
  8858. characterMakers.push(() => makeCharacter(
  8859. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8860. {
  8861. front: {
  8862. height: math.unit(9, "feet"),
  8863. weight: math.unit(230, "kg"),
  8864. name: "Front",
  8865. image: {
  8866. source: "./media/characters/starry-aqua/front.svg"
  8867. }
  8868. },
  8869. back: {
  8870. height: math.unit(9, "feet"),
  8871. weight: math.unit(230, "kg"),
  8872. name: "Back",
  8873. image: {
  8874. source: "./media/characters/starry-aqua/back.svg"
  8875. }
  8876. },
  8877. hand: {
  8878. height: math.unit(9 * 0.1168, "feet"),
  8879. name: "Hand",
  8880. image: {
  8881. source: "./media/characters/starry-aqua/hand.svg"
  8882. }
  8883. },
  8884. foot: {
  8885. height: math.unit(9 * 0.18, "feet"),
  8886. name: "Foot",
  8887. image: {
  8888. source: "./media/characters/starry-aqua/foot.svg"
  8889. }
  8890. }
  8891. },
  8892. [
  8893. {
  8894. name: "Micro",
  8895. height: math.unit(3, "inches")
  8896. },
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(9, "feet")
  8900. },
  8901. {
  8902. name: "Macro",
  8903. height: math.unit(300, "feet"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Megamacro",
  8908. height: math.unit(3200, "feet")
  8909. }
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(230, "lb"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/luka/front.svg",
  8921. extra: 1,
  8922. bottom: 0.025
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Normal",
  8929. height: math.unit(12 + 8 / 12, "feet"),
  8930. default: true
  8931. },
  8932. {
  8933. name: "Minimacro",
  8934. height: math.unit(20, "feet")
  8935. },
  8936. {
  8937. name: "Macro",
  8938. height: math.unit(250, "feet")
  8939. },
  8940. {
  8941. name: "Megamacro",
  8942. height: math.unit(5, "miles")
  8943. },
  8944. {
  8945. name: "Gigamacro",
  8946. height: math.unit(8000, "miles")
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(6, "feet"),
  8955. weight: math.unit(150, "lb"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/natalie-nightring/front.svg",
  8959. extra: 1,
  8960. bottom: 0.06
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Uh Oh",
  8967. height: math.unit(0.1, "mm")
  8968. },
  8969. {
  8970. name: "Small",
  8971. height: math.unit(3, "inches")
  8972. },
  8973. {
  8974. name: "Human Scale",
  8975. height: math.unit(6, "feet")
  8976. },
  8977. {
  8978. name: "Librarian",
  8979. height: math.unit(50, "feet"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Immense",
  8984. height: math.unit(200, "miles")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(6, "feet"),
  8993. weight: math.unit(180, "lbs"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/danni-rosie/front.svg",
  8997. extra: 1260 / 1128,
  8998. bottom: 0.022
  8999. }
  9000. },
  9001. },
  9002. [
  9003. {
  9004. name: "Micro",
  9005. height: math.unit(2, "inches"),
  9006. default: true
  9007. },
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9012. {
  9013. front: {
  9014. height: math.unit(5 + 9 / 12, "feet"),
  9015. weight: math.unit(220, "lb"),
  9016. name: "Front",
  9017. image: {
  9018. source: "./media/characters/samantha-kruse/front.svg",
  9019. extra: (985 / 935),
  9020. bottom: 0.03
  9021. }
  9022. },
  9023. frontUndressed: {
  9024. height: math.unit(5 + 9 / 12, "feet"),
  9025. weight: math.unit(220, "lb"),
  9026. name: "Front (Undressed)",
  9027. image: {
  9028. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9029. extra: (973 / 923),
  9030. bottom: 0.025
  9031. }
  9032. },
  9033. fat: {
  9034. height: math.unit(5 + 9 / 12, "feet"),
  9035. weight: math.unit(900, "lb"),
  9036. name: "Front (Fat)",
  9037. image: {
  9038. source: "./media/characters/samantha-kruse/fat.svg",
  9039. extra: 2688 / 2561
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Normal",
  9046. height: math.unit(5 + 9 / 12, "feet"),
  9047. default: true
  9048. }
  9049. ]
  9050. ))
  9051. characterMakers.push(() => makeCharacter(
  9052. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9053. {
  9054. back: {
  9055. height: math.unit(5 + 4 / 12, "feet"),
  9056. weight: math.unit(4963, "lb"),
  9057. name: "Back",
  9058. image: {
  9059. source: "./media/characters/amelia-rosie/back.svg",
  9060. extra: 1113 / 963,
  9061. bottom: 0.01
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Level 0",
  9068. height: math.unit(5 + 4 / 12, "feet")
  9069. },
  9070. {
  9071. name: "Level 1",
  9072. height: math.unit(164597, "feet"),
  9073. default: true
  9074. },
  9075. {
  9076. name: "Level 2",
  9077. height: math.unit(956243, "miles")
  9078. },
  9079. {
  9080. name: "Level 3",
  9081. height: math.unit(29421709423, "miles")
  9082. },
  9083. {
  9084. name: "Level 4",
  9085. height: math.unit(154, "lightyears")
  9086. },
  9087. {
  9088. name: "Level 5",
  9089. height: math.unit(4738272, "lightyears")
  9090. },
  9091. {
  9092. name: "Level 6",
  9093. height: math.unit(145787152896, "lightyears")
  9094. },
  9095. ]
  9096. ))
  9097. characterMakers.push(() => makeCharacter(
  9098. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9099. {
  9100. front: {
  9101. height: math.unit(5 + 11 / 12, "feet"),
  9102. weight: math.unit(65, "kg"),
  9103. name: "Front",
  9104. image: {
  9105. source: "./media/characters/rook-kitara/front.svg",
  9106. extra: 1347 / 1274,
  9107. bottom: 0.005
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Totally Unfair",
  9114. height: math.unit(1.8, "mm")
  9115. },
  9116. {
  9117. name: "Lap Rookie",
  9118. height: math.unit(1.4, "feet")
  9119. },
  9120. {
  9121. name: "Normal",
  9122. height: math.unit(5 + 11 / 12, "feet"),
  9123. default: true
  9124. },
  9125. {
  9126. name: "How Did This Happen",
  9127. height: math.unit(80, "miles")
  9128. }
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(7, "feet"),
  9136. weight: math.unit(300, "lb"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/pisces/front.svg",
  9140. extra: 2255 / 2115,
  9141. bottom: 0.03
  9142. }
  9143. },
  9144. back: {
  9145. height: math.unit(7, "feet"),
  9146. weight: math.unit(300, "lb"),
  9147. name: "Back",
  9148. image: {
  9149. source: "./media/characters/pisces/back.svg",
  9150. extra: 2146 / 2055,
  9151. bottom: 0.04
  9152. }
  9153. },
  9154. },
  9155. [
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(7, "feet"),
  9159. default: true
  9160. },
  9161. {
  9162. name: "Swimming Pool",
  9163. height: math.unit(12.2, "meters")
  9164. },
  9165. {
  9166. name: "Olympic Swimming Pool",
  9167. height: math.unit(56.3, "meters")
  9168. },
  9169. {
  9170. name: "Lake Superior",
  9171. height: math.unit(93900, "meters")
  9172. },
  9173. {
  9174. name: "Mediterranean Sea",
  9175. height: math.unit(644457, "meters")
  9176. },
  9177. {
  9178. name: "World's Oceans",
  9179. height: math.unit(4567491, "meters")
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(2.3, "meters"),
  9188. weight: math.unit(120, "kg"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/zelas/front.svg"
  9192. }
  9193. },
  9194. side: {
  9195. height: math.unit(2.3, "meters"),
  9196. weight: math.unit(120, "kg"),
  9197. name: "Side",
  9198. image: {
  9199. source: "./media/characters/zelas/side.svg"
  9200. }
  9201. },
  9202. back: {
  9203. height: math.unit(2.3, "meters"),
  9204. weight: math.unit(120, "kg"),
  9205. name: "Back",
  9206. image: {
  9207. source: "./media/characters/zelas/back.svg"
  9208. }
  9209. },
  9210. foot: {
  9211. height: math.unit(1.116, "feet"),
  9212. name: "Foot",
  9213. image: {
  9214. source: "./media/characters/zelas/foot.svg"
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Normal",
  9221. height: math.unit(2.3, "meters")
  9222. },
  9223. {
  9224. name: "Macro",
  9225. height: math.unit(30, "meters"),
  9226. default: true
  9227. },
  9228. ]
  9229. ))
  9230. characterMakers.push(() => makeCharacter(
  9231. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9232. {
  9233. front: {
  9234. height: math.unit(1, "inch"),
  9235. weight: math.unit(0.21, "grams"),
  9236. name: "Front",
  9237. image: {
  9238. source: "./media/characters/talbot/front.svg",
  9239. extra: 594 / 544
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Micro",
  9246. height: math.unit(1, "inch"),
  9247. default: true
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9253. {
  9254. front: {
  9255. height: math.unit(3 + 3 / 12, "feet"),
  9256. weight: math.unit(51.8, "lb"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/fliss/front.svg",
  9260. extra: 840 / 640
  9261. }
  9262. },
  9263. },
  9264. [
  9265. {
  9266. name: "Teeny Tiny",
  9267. height: math.unit(1, "mm")
  9268. },
  9269. {
  9270. name: "Small",
  9271. height: math.unit(1, "inch"),
  9272. default: true
  9273. },
  9274. {
  9275. name: "Standard Sylveon",
  9276. height: math.unit(3 + 3 / 12, "feet")
  9277. },
  9278. {
  9279. name: "Large Nuisance",
  9280. height: math.unit(33, "feet")
  9281. },
  9282. {
  9283. name: "City Filler",
  9284. height: math.unit(3000, "feet")
  9285. },
  9286. {
  9287. name: "New Horizon",
  9288. height: math.unit(6000, "miles")
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9294. {
  9295. front: {
  9296. height: math.unit(5, "cm"),
  9297. weight: math.unit(1.94, "g"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/fleta/front.svg",
  9301. extra: 835 / 803
  9302. }
  9303. },
  9304. back: {
  9305. height: math.unit(5, "cm"),
  9306. weight: math.unit(1.94, "g"),
  9307. name: "Back",
  9308. image: {
  9309. source: "./media/characters/fleta/back.svg",
  9310. extra: 835 / 803
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Micro",
  9317. height: math.unit(5, "cm"),
  9318. default: true
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(6, "feet"),
  9327. weight: math.unit(225, "lb"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/dominic/front.svg",
  9331. extra: 1770 / 1620,
  9332. bottom: 0.025
  9333. }
  9334. },
  9335. back: {
  9336. height: math.unit(6, "feet"),
  9337. weight: math.unit(225, "lb"),
  9338. name: "Back",
  9339. image: {
  9340. source: "./media/characters/dominic/back.svg",
  9341. extra: 1745 / 1620,
  9342. bottom: 0.065
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Nano",
  9349. height: math.unit(0.1, "mm")
  9350. },
  9351. {
  9352. name: "Micro-",
  9353. height: math.unit(1, "mm")
  9354. },
  9355. {
  9356. name: "Micro",
  9357. height: math.unit(4, "inches")
  9358. },
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(6 + 4 / 12, "feet"),
  9362. default: true
  9363. },
  9364. {
  9365. name: "Macro",
  9366. height: math.unit(115, "feet")
  9367. },
  9368. {
  9369. name: "Macro+",
  9370. height: math.unit(955, "feet")
  9371. },
  9372. {
  9373. name: "Megamacro",
  9374. height: math.unit(8990, "feet")
  9375. },
  9376. {
  9377. name: "Gigmacro",
  9378. height: math.unit(9310, "miles")
  9379. },
  9380. {
  9381. name: "Teramacro",
  9382. height: math.unit(1567005010, "miles")
  9383. },
  9384. {
  9385. name: "Examacro",
  9386. height: math.unit(1425, "parsecs")
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(400, "feet"),
  9395. weight: math.unit(44444444, "lb"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/major-colonel/front.svg"
  9399. }
  9400. },
  9401. back: {
  9402. height: math.unit(400, "feet"),
  9403. weight: math.unit(44444444, "lb"),
  9404. name: "Back",
  9405. image: {
  9406. source: "./media/characters/major-colonel/back.svg"
  9407. }
  9408. },
  9409. },
  9410. [
  9411. {
  9412. name: "Macro",
  9413. height: math.unit(400, "feet"),
  9414. default: true
  9415. },
  9416. ]
  9417. ))
  9418. characterMakers.push(() => makeCharacter(
  9419. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9420. {
  9421. catFront: {
  9422. height: math.unit(6, "feet"),
  9423. weight: math.unit(120, "lb"),
  9424. name: "Front (Cat Side)",
  9425. image: {
  9426. source: "./media/characters/axel-lycan/cat-front.svg",
  9427. extra: 430 / 402,
  9428. bottom: 43 / 472.35
  9429. }
  9430. },
  9431. catBack: {
  9432. height: math.unit(6, "feet"),
  9433. weight: math.unit(120, "lb"),
  9434. name: "Back (Cat Side)",
  9435. image: {
  9436. source: "./media/characters/axel-lycan/cat-back.svg",
  9437. extra: 447 / 419,
  9438. bottom: 23.3 / 469
  9439. }
  9440. },
  9441. wolfFront: {
  9442. height: math.unit(6, "feet"),
  9443. weight: math.unit(120, "lb"),
  9444. name: "Front (Wolf Side)",
  9445. image: {
  9446. source: "./media/characters/axel-lycan/wolf-front.svg",
  9447. extra: 485 / 456,
  9448. bottom: 19 / 504
  9449. }
  9450. },
  9451. wolfBack: {
  9452. height: math.unit(6, "feet"),
  9453. weight: math.unit(120, "lb"),
  9454. name: "Back (Wolf Side)",
  9455. image: {
  9456. source: "./media/characters/axel-lycan/wolf-back.svg",
  9457. extra: 475 / 438,
  9458. bottom: 39.2 / 514
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Macro",
  9465. height: math.unit(1, "km"),
  9466. default: true
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9472. {
  9473. front: {
  9474. height: math.unit(5 + 9 / 12, "feet"),
  9475. weight: math.unit(175, "lb"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/vanrel-hyena/front.svg",
  9479. extra: 1086 / 1010,
  9480. bottom: 0.04
  9481. }
  9482. },
  9483. },
  9484. [
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(5 + 9 / 12, "feet"),
  9488. default: true
  9489. },
  9490. ]
  9491. ))
  9492. characterMakers.push(() => makeCharacter(
  9493. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9494. {
  9495. front: {
  9496. height: math.unit(6, "feet"),
  9497. weight: math.unit(103, "lb"),
  9498. name: "Front",
  9499. image: {
  9500. source: "./media/characters/abbott-absol/front.svg",
  9501. extra: 2010 / 1842
  9502. }
  9503. },
  9504. },
  9505. [
  9506. {
  9507. name: "Megamicro",
  9508. height: math.unit(0.1, "mm")
  9509. },
  9510. {
  9511. name: "Micro",
  9512. height: math.unit(1, "inch")
  9513. },
  9514. {
  9515. name: "Normal",
  9516. height: math.unit(6, "feet"),
  9517. default: true
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9523. {
  9524. front: {
  9525. height: math.unit(6, "feet"),
  9526. weight: math.unit(264, "lb"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/hector/front.svg",
  9530. extra: 2280 / 2130,
  9531. bottom: 0.07
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Normal",
  9538. height: math.unit(12.25, "foot"),
  9539. default: true
  9540. },
  9541. {
  9542. name: "Macro",
  9543. height: math.unit(160, "feet")
  9544. },
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9549. {
  9550. front: {
  9551. height: math.unit(6, "feet"),
  9552. weight: math.unit(150, "lb"),
  9553. name: "Front",
  9554. image: {
  9555. source: "./media/characters/sal/front.svg",
  9556. extra: 1846 / 1699,
  9557. bottom: 0.04
  9558. }
  9559. },
  9560. },
  9561. [
  9562. {
  9563. name: "Megamacro",
  9564. height: math.unit(10, "miles"),
  9565. default: true
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9571. {
  9572. front: {
  9573. height: math.unit(3, "meters"),
  9574. weight: math.unit(450, "kg"),
  9575. name: "front",
  9576. image: {
  9577. source: "./media/characters/ranger/front.svg",
  9578. extra: 2401 / 2243,
  9579. bottom: 0.05
  9580. }
  9581. },
  9582. },
  9583. [
  9584. {
  9585. name: "Normal",
  9586. height: math.unit(3, "meters"),
  9587. default: true
  9588. },
  9589. ]
  9590. ))
  9591. characterMakers.push(() => makeCharacter(
  9592. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9593. {
  9594. front: {
  9595. height: math.unit(14, "feet"),
  9596. weight: math.unit(800, "kg"),
  9597. name: "Front",
  9598. image: {
  9599. source: "./media/characters/theresa/front.svg",
  9600. extra: 3575 / 3346,
  9601. bottom: 0.03
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Normal",
  9608. height: math.unit(14, "feet"),
  9609. default: true
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9615. {
  9616. front: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(3, "kg"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/ine/front.svg",
  9622. extra: 678 / 539,
  9623. bottom: 0.023
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(2.265, "feet"),
  9631. default: true
  9632. },
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9637. {
  9638. front: {
  9639. height: math.unit(5, "feet"),
  9640. weight: math.unit(30, "kg"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/vial/front.svg",
  9644. extra: 1365 / 1277,
  9645. bottom: 0.04
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Normal",
  9652. height: math.unit(5, "feet"),
  9653. default: true
  9654. },
  9655. ]
  9656. ))
  9657. characterMakers.push(() => makeCharacter(
  9658. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9659. {
  9660. side: {
  9661. height: math.unit(3.4, "meters"),
  9662. weight: math.unit(1000, "lb"),
  9663. name: "Side",
  9664. image: {
  9665. source: "./media/characters/rovoska/side.svg",
  9666. extra: 4403 / 1515
  9667. }
  9668. },
  9669. },
  9670. [
  9671. {
  9672. name: "Normal",
  9673. height: math.unit(3.4, "meters"),
  9674. default: true
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(8, "feet"),
  9683. weight: math.unit(315, "lb"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/gunner-rotthbauer/front.svg"
  9687. }
  9688. },
  9689. back: {
  9690. height: math.unit(8, "feet"),
  9691. weight: math.unit(315, "lb"),
  9692. name: "Back",
  9693. image: {
  9694. source: "./media/characters/gunner-rotthbauer/back.svg"
  9695. }
  9696. },
  9697. },
  9698. [
  9699. {
  9700. name: "Micro",
  9701. height: math.unit(3.5, "inches")
  9702. },
  9703. {
  9704. name: "Normal",
  9705. height: math.unit(8, "feet"),
  9706. default: true
  9707. },
  9708. {
  9709. name: "Macro",
  9710. height: math.unit(250, "feet")
  9711. },
  9712. {
  9713. name: "Megamacro",
  9714. height: math.unit(1, "AU")
  9715. },
  9716. ]
  9717. ))
  9718. characterMakers.push(() => makeCharacter(
  9719. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9720. {
  9721. front: {
  9722. height: math.unit(5 + 5 / 12, "feet"),
  9723. weight: math.unit(140, "lb"),
  9724. name: "Front",
  9725. image: {
  9726. source: "./media/characters/allatia/front.svg",
  9727. extra: 1227 / 1180,
  9728. bottom: 0.027
  9729. }
  9730. },
  9731. },
  9732. [
  9733. {
  9734. name: "Normal",
  9735. height: math.unit(5 + 5 / 12, "feet")
  9736. },
  9737. {
  9738. name: "Macro",
  9739. height: math.unit(250, "feet"),
  9740. default: true
  9741. },
  9742. {
  9743. name: "Megamacro",
  9744. height: math.unit(8, "miles")
  9745. }
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9750. {
  9751. front: {
  9752. height: math.unit(6, "feet"),
  9753. weight: math.unit(120, "lb"),
  9754. name: "Front",
  9755. image: {
  9756. source: "./media/characters/tene/front.svg",
  9757. extra: 1728 / 1578,
  9758. bottom: 0.022
  9759. }
  9760. },
  9761. stomping: {
  9762. height: math.unit(2.025, "meters"),
  9763. weight: math.unit(120, "lb"),
  9764. name: "Stomping",
  9765. image: {
  9766. source: "./media/characters/tene/stomping.svg",
  9767. extra: 938 / 873,
  9768. bottom: 0.01
  9769. }
  9770. },
  9771. sitting: {
  9772. height: math.unit(1, "meter"),
  9773. weight: math.unit(120, "lb"),
  9774. name: "Sitting",
  9775. image: {
  9776. source: "./media/characters/tene/sitting.svg",
  9777. extra: 437 / 415,
  9778. bottom: 0.1
  9779. }
  9780. },
  9781. feral: {
  9782. height: math.unit(3.9, "feet"),
  9783. weight: math.unit(250, "lb"),
  9784. name: "Feral",
  9785. image: {
  9786. source: "./media/characters/tene/feral.svg",
  9787. extra: 717 / 458,
  9788. bottom: 0.179
  9789. }
  9790. },
  9791. },
  9792. [
  9793. {
  9794. name: "Normal",
  9795. height: math.unit(6, "feet")
  9796. },
  9797. {
  9798. name: "Macro",
  9799. height: math.unit(300, "feet"),
  9800. default: true
  9801. },
  9802. {
  9803. name: "Megamacro",
  9804. height: math.unit(5, "miles")
  9805. },
  9806. ]
  9807. ))
  9808. characterMakers.push(() => makeCharacter(
  9809. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9810. {
  9811. side: {
  9812. height: math.unit(6, "feet"),
  9813. name: "Side",
  9814. image: {
  9815. source: "./media/characters/evander/side.svg",
  9816. extra: 877 / 477
  9817. }
  9818. },
  9819. },
  9820. [
  9821. {
  9822. name: "Normal",
  9823. height: math.unit(0.83, "meters"),
  9824. default: true
  9825. },
  9826. ]
  9827. ))
  9828. characterMakers.push(() => makeCharacter(
  9829. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9830. {
  9831. front: {
  9832. height: math.unit(12, "feet"),
  9833. weight: math.unit(1000, "lb"),
  9834. name: "Front",
  9835. image: {
  9836. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9837. extra: 1762 / 1611
  9838. }
  9839. },
  9840. back: {
  9841. height: math.unit(12, "feet"),
  9842. weight: math.unit(1000, "lb"),
  9843. name: "Back",
  9844. image: {
  9845. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9846. extra: 1762 / 1611
  9847. }
  9848. },
  9849. },
  9850. [
  9851. {
  9852. name: "Normal",
  9853. height: math.unit(12, "feet"),
  9854. default: true
  9855. },
  9856. {
  9857. name: "Kaiju",
  9858. height: math.unit(150, "feet")
  9859. },
  9860. ]
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9864. {
  9865. front: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(150, "lb"),
  9868. name: "Front",
  9869. image: {
  9870. source: "./media/characters/zero-alurus/front.svg"
  9871. }
  9872. },
  9873. back: {
  9874. height: math.unit(6, "feet"),
  9875. weight: math.unit(150, "lb"),
  9876. name: "Back",
  9877. image: {
  9878. source: "./media/characters/zero-alurus/back.svg"
  9879. }
  9880. },
  9881. },
  9882. [
  9883. {
  9884. name: "Normal",
  9885. height: math.unit(5 + 10 / 12, "feet")
  9886. },
  9887. {
  9888. name: "Macro",
  9889. height: math.unit(60, "feet"),
  9890. default: true
  9891. },
  9892. {
  9893. name: "Macro+",
  9894. height: math.unit(450, "feet")
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9900. {
  9901. front: {
  9902. height: math.unit(6, "feet"),
  9903. weight: math.unit(200, "lb"),
  9904. name: "Front",
  9905. image: {
  9906. source: "./media/characters/mega-shi/front.svg",
  9907. extra: 1279 / 1250,
  9908. bottom: 0.02
  9909. }
  9910. },
  9911. back: {
  9912. height: math.unit(6, "feet"),
  9913. weight: math.unit(200, "lb"),
  9914. name: "Back",
  9915. image: {
  9916. source: "./media/characters/mega-shi/back.svg",
  9917. extra: 1279 / 1250,
  9918. bottom: 0.02
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Micro",
  9925. height: math.unit(16 + 6 / 12, "feet")
  9926. },
  9927. {
  9928. name: "Third Dimension",
  9929. height: math.unit(40, "meters")
  9930. },
  9931. {
  9932. name: "Normal",
  9933. height: math.unit(660, "feet"),
  9934. default: true
  9935. },
  9936. {
  9937. name: "Megamacro",
  9938. height: math.unit(10, "miles")
  9939. },
  9940. {
  9941. name: "Planetary Launch",
  9942. height: math.unit(500, "miles")
  9943. },
  9944. {
  9945. name: "Interstellar",
  9946. height: math.unit(1e9, "miles")
  9947. },
  9948. {
  9949. name: "Leaving the Universe",
  9950. height: math.unit(1, "gigaparsec")
  9951. },
  9952. {
  9953. name: "Travelling Universes",
  9954. height: math.unit(30e15, "parsecs")
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9960. {
  9961. front: {
  9962. height: math.unit(6, "feet"),
  9963. weight: math.unit(150, "lb"),
  9964. name: "Front",
  9965. image: {
  9966. source: "./media/characters/odyssey/front.svg",
  9967. extra: 1782 / 1582,
  9968. bottom: 0.01
  9969. }
  9970. },
  9971. side: {
  9972. height: math.unit(5.7, "feet"),
  9973. weight: math.unit(140, "lb"),
  9974. name: "Side",
  9975. image: {
  9976. source: "./media/characters/odyssey/side.svg",
  9977. extra: 6462 / 5700
  9978. }
  9979. },
  9980. },
  9981. [
  9982. {
  9983. name: "Normal",
  9984. height: math.unit(5 + 4 / 12, "feet")
  9985. },
  9986. {
  9987. name: "Macro",
  9988. height: math.unit(1, "km")
  9989. },
  9990. {
  9991. name: "Megamacro",
  9992. height: math.unit(3000, "km")
  9993. },
  9994. {
  9995. name: "Gigamacro",
  9996. height: math.unit(1, "AU"),
  9997. default: true
  9998. },
  9999. {
  10000. name: "Omniversal",
  10001. height: math.unit(100e14, "lightyears")
  10002. },
  10003. ]
  10004. ))
  10005. characterMakers.push(() => makeCharacter(
  10006. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10007. {
  10008. front: {
  10009. height: math.unit(6, "feet"),
  10010. weight: math.unit(300, "lb"),
  10011. name: "Front",
  10012. image: {
  10013. source: "./media/characters/mekuto/front.svg",
  10014. extra: 921 / 832,
  10015. bottom: 0.03
  10016. }
  10017. },
  10018. hand: {
  10019. height: math.unit(6 / 10.24, "feet"),
  10020. name: "Hand",
  10021. image: {
  10022. source: "./media/characters/mekuto/hand.svg"
  10023. }
  10024. },
  10025. foot: {
  10026. height: math.unit(6 / 5.05, "feet"),
  10027. name: "Foot",
  10028. image: {
  10029. source: "./media/characters/mekuto/foot.svg"
  10030. }
  10031. },
  10032. },
  10033. [
  10034. {
  10035. name: "Minimicro",
  10036. height: math.unit(0.2, "inches")
  10037. },
  10038. {
  10039. name: "Micro",
  10040. height: math.unit(1.5, "inches")
  10041. },
  10042. {
  10043. name: "Normal",
  10044. height: math.unit(5 + 11 / 12, "feet"),
  10045. default: true
  10046. },
  10047. {
  10048. name: "Minimacro",
  10049. height: math.unit(17 + 9 / 12, "feet")
  10050. },
  10051. {
  10052. name: "Macro",
  10053. height: math.unit(177.5, "feet")
  10054. },
  10055. {
  10056. name: "Megamacro",
  10057. height: math.unit(152, "miles")
  10058. },
  10059. ]
  10060. ))
  10061. characterMakers.push(() => makeCharacter(
  10062. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10063. {
  10064. front: {
  10065. height: math.unit(6.5, "inches"),
  10066. weight: math.unit(13, "oz"),
  10067. name: "Front",
  10068. image: {
  10069. source: "./media/characters/dafydd-tomos/front.svg",
  10070. extra: 2990 / 2603,
  10071. bottom: 0.03
  10072. }
  10073. },
  10074. },
  10075. [
  10076. {
  10077. name: "Micro",
  10078. height: math.unit(6.5, "inches"),
  10079. default: true
  10080. },
  10081. ]
  10082. ))
  10083. characterMakers.push(() => makeCharacter(
  10084. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10085. {
  10086. front: {
  10087. height: math.unit(6, "feet"),
  10088. weight: math.unit(150, "lb"),
  10089. name: "Front",
  10090. image: {
  10091. source: "./media/characters/splinter/front.svg",
  10092. extra: 2990 / 2882,
  10093. bottom: 0.04
  10094. }
  10095. },
  10096. back: {
  10097. height: math.unit(6, "feet"),
  10098. weight: math.unit(150, "lb"),
  10099. name: "Back",
  10100. image: {
  10101. source: "./media/characters/splinter/back.svg",
  10102. extra: 2990 / 2882,
  10103. bottom: 0.04
  10104. }
  10105. },
  10106. },
  10107. [
  10108. {
  10109. name: "Normal",
  10110. height: math.unit(6, "feet")
  10111. },
  10112. {
  10113. name: "Macro",
  10114. height: math.unit(230, "meters"),
  10115. default: true
  10116. },
  10117. ]
  10118. ))
  10119. characterMakers.push(() => makeCharacter(
  10120. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10121. {
  10122. front: {
  10123. height: math.unit(4 + 10 / 12, "feet"),
  10124. weight: math.unit(480, "lb"),
  10125. name: "Front",
  10126. image: {
  10127. source: "./media/characters/snow-gabumon/front.svg",
  10128. extra: 1140 / 963,
  10129. bottom: 0.058
  10130. }
  10131. },
  10132. back: {
  10133. height: math.unit(4 + 10 / 12, "feet"),
  10134. weight: math.unit(480, "lb"),
  10135. name: "Back",
  10136. image: {
  10137. source: "./media/characters/snow-gabumon/back.svg",
  10138. extra: 1115 / 962,
  10139. bottom: 0.041
  10140. }
  10141. },
  10142. frontUndresed: {
  10143. height: math.unit(4 + 10 / 12, "feet"),
  10144. weight: math.unit(480, "lb"),
  10145. name: "Front (Undressed)",
  10146. image: {
  10147. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10148. extra: 1061 / 960,
  10149. bottom: 0.045
  10150. }
  10151. },
  10152. },
  10153. [
  10154. {
  10155. name: "Micro",
  10156. height: math.unit(1, "inch")
  10157. },
  10158. {
  10159. name: "Normal",
  10160. height: math.unit(4 + 10 / 12, "feet"),
  10161. default: true
  10162. },
  10163. {
  10164. name: "Macro",
  10165. height: math.unit(200, "feet")
  10166. },
  10167. {
  10168. name: "Megamacro",
  10169. height: math.unit(120, "miles")
  10170. },
  10171. {
  10172. name: "Gigamacro",
  10173. height: math.unit(9800, "miles")
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10179. {
  10180. front: {
  10181. height: math.unit(1.7, "meters"),
  10182. weight: math.unit(140, "lb"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/moody/front.svg",
  10186. extra: 3226 / 3007,
  10187. bottom: 0.087
  10188. }
  10189. },
  10190. },
  10191. [
  10192. {
  10193. name: "Micro",
  10194. height: math.unit(1, "mm")
  10195. },
  10196. {
  10197. name: "Normal",
  10198. height: math.unit(1.7, "meters"),
  10199. default: true
  10200. },
  10201. {
  10202. name: "Macro",
  10203. height: math.unit(80, "meters")
  10204. },
  10205. {
  10206. name: "Macro+",
  10207. height: math.unit(500, "meters")
  10208. },
  10209. ]
  10210. ))
  10211. characterMakers.push(() => makeCharacter(
  10212. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10213. {
  10214. front: {
  10215. height: math.unit(6, "feet"),
  10216. weight: math.unit(150, "lb"),
  10217. name: "Front",
  10218. image: {
  10219. source: "./media/characters/zyas/front.svg",
  10220. extra: 1180 / 1120,
  10221. bottom: 0.045
  10222. }
  10223. },
  10224. },
  10225. [
  10226. {
  10227. name: "Normal",
  10228. height: math.unit(10, "feet"),
  10229. default: true
  10230. },
  10231. {
  10232. name: "Macro",
  10233. height: math.unit(500, "feet")
  10234. },
  10235. {
  10236. name: "Megamacro",
  10237. height: math.unit(5, "miles")
  10238. },
  10239. {
  10240. name: "Teramacro",
  10241. height: math.unit(150000, "miles")
  10242. },
  10243. ]
  10244. ))
  10245. characterMakers.push(() => makeCharacter(
  10246. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10247. {
  10248. front: {
  10249. height: math.unit(6, "feet"),
  10250. weight: math.unit(150, "lb"),
  10251. name: "Front",
  10252. image: {
  10253. source: "./media/characters/cuon/front.svg",
  10254. extra: 1390 / 1320,
  10255. bottom: 0.008
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Micro",
  10262. height: math.unit(3, "inches")
  10263. },
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(18 + 9 / 12, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Macro",
  10271. height: math.unit(360, "feet")
  10272. },
  10273. {
  10274. name: "Megamacro",
  10275. height: math.unit(360, "miles")
  10276. },
  10277. ]
  10278. ))
  10279. characterMakers.push(() => makeCharacter(
  10280. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10281. {
  10282. front: {
  10283. height: math.unit(2.4, "meters"),
  10284. weight: math.unit(70, "kg"),
  10285. name: "Front",
  10286. image: {
  10287. source: "./media/characters/nyanuxk/front.svg",
  10288. extra: 1172 / 1084,
  10289. bottom: 0.065
  10290. }
  10291. },
  10292. side: {
  10293. height: math.unit(2.4, "meters"),
  10294. weight: math.unit(70, "kg"),
  10295. name: "Side",
  10296. image: {
  10297. source: "./media/characters/nyanuxk/side.svg",
  10298. extra: 1190 / 1132,
  10299. bottom: 0.007
  10300. }
  10301. },
  10302. back: {
  10303. height: math.unit(2.4, "meters"),
  10304. weight: math.unit(70, "kg"),
  10305. name: "Back",
  10306. image: {
  10307. source: "./media/characters/nyanuxk/back.svg",
  10308. extra: 1200 / 1141,
  10309. bottom: 0.015
  10310. }
  10311. },
  10312. foot: {
  10313. height: math.unit(0.52, "meters"),
  10314. name: "Foot",
  10315. image: {
  10316. source: "./media/characters/nyanuxk/foot.svg"
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Micro",
  10323. height: math.unit(2, "cm")
  10324. },
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(2.4, "meters"),
  10328. default: true
  10329. },
  10330. {
  10331. name: "Smaller Macro",
  10332. height: math.unit(120, "meters")
  10333. },
  10334. {
  10335. name: "Bigger Macro",
  10336. height: math.unit(1.2, "km")
  10337. },
  10338. {
  10339. name: "Megamacro",
  10340. height: math.unit(15, "kilometers")
  10341. },
  10342. {
  10343. name: "Gigamacro",
  10344. height: math.unit(2000, "km")
  10345. },
  10346. {
  10347. name: "Teramacro",
  10348. height: math.unit(500000, "km")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10354. {
  10355. side: {
  10356. height: math.unit(6, "feet"),
  10357. name: "Side",
  10358. image: {
  10359. source: "./media/characters/ailbhe/side.svg",
  10360. extra: 757 / 464,
  10361. bottom: 0.041
  10362. }
  10363. },
  10364. },
  10365. [
  10366. {
  10367. name: "Normal",
  10368. height: math.unit(1.07, "meters"),
  10369. default: true
  10370. },
  10371. ]
  10372. ))
  10373. characterMakers.push(() => makeCharacter(
  10374. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10375. {
  10376. front: {
  10377. height: math.unit(6, "feet"),
  10378. weight: math.unit(120, "kg"),
  10379. name: "Front",
  10380. image: {
  10381. source: "./media/characters/zevulfius/front.svg",
  10382. extra: 965 / 903
  10383. }
  10384. },
  10385. side: {
  10386. height: math.unit(6, "feet"),
  10387. weight: math.unit(120, "kg"),
  10388. name: "Side",
  10389. image: {
  10390. source: "./media/characters/zevulfius/side.svg",
  10391. extra: 939 / 900
  10392. }
  10393. },
  10394. back: {
  10395. height: math.unit(6, "feet"),
  10396. weight: math.unit(120, "kg"),
  10397. name: "Back",
  10398. image: {
  10399. source: "./media/characters/zevulfius/back.svg",
  10400. extra: 918 / 854,
  10401. bottom: 0.005
  10402. }
  10403. },
  10404. foot: {
  10405. height: math.unit(6 / 3.72, "feet"),
  10406. name: "Foot",
  10407. image: {
  10408. source: "./media/characters/zevulfius/foot.svg"
  10409. }
  10410. },
  10411. },
  10412. [
  10413. {
  10414. name: "Macro",
  10415. height: math.unit(750, "meters")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(20, "km"),
  10420. default: true
  10421. },
  10422. {
  10423. name: "Gigamacro",
  10424. height: math.unit(2000, "km")
  10425. },
  10426. {
  10427. name: "Teramacro",
  10428. height: math.unit(250000, "km")
  10429. },
  10430. ]
  10431. ))
  10432. characterMakers.push(() => makeCharacter(
  10433. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10434. {
  10435. front: {
  10436. height: math.unit(100, "feet"),
  10437. weight: math.unit(350, "kg"),
  10438. name: "Front",
  10439. image: {
  10440. source: "./media/characters/rikes/front.svg",
  10441. extra: 1565 / 1483,
  10442. bottom: 0.017
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Macro",
  10449. height: math.unit(100, "feet"),
  10450. default: true
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10456. {
  10457. front: {
  10458. height: math.unit(8, "feet"),
  10459. weight: math.unit(356, "lb"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/adam-silver-mane/front.svg",
  10463. extra: 1036/937,
  10464. bottom: 63/1099
  10465. }
  10466. },
  10467. side: {
  10468. height: math.unit(8, "feet"),
  10469. weight: math.unit(356, "lb"),
  10470. name: "Side",
  10471. image: {
  10472. source: "./media/characters/adam-silver-mane/side.svg",
  10473. extra: 997/901,
  10474. bottom: 59/1056
  10475. }
  10476. },
  10477. frontNsfw: {
  10478. height: math.unit(8, "feet"),
  10479. weight: math.unit(356, "lb"),
  10480. name: "Front (NSFW)",
  10481. image: {
  10482. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10483. extra: 1036/937,
  10484. bottom: 63/1099
  10485. }
  10486. },
  10487. sideNsfw: {
  10488. height: math.unit(8, "feet"),
  10489. weight: math.unit(356, "lb"),
  10490. name: "Side (NSFW)",
  10491. image: {
  10492. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10493. extra: 997/901,
  10494. bottom: 59/1056
  10495. }
  10496. },
  10497. dick: {
  10498. height: math.unit(2.1, "feet"),
  10499. name: "Dick",
  10500. image: {
  10501. source: "./media/characters/adam-silver-mane/dick.svg"
  10502. }
  10503. },
  10504. taur: {
  10505. height: math.unit(16, "feet"),
  10506. weight: math.unit(1500, "kg"),
  10507. name: "Taur",
  10508. image: {
  10509. source: "./media/characters/adam-silver-mane/taur.svg",
  10510. extra: 1713 / 1571,
  10511. bottom: 0.01
  10512. }
  10513. },
  10514. },
  10515. [
  10516. {
  10517. name: "Normal",
  10518. height: math.unit(8, "feet")
  10519. },
  10520. {
  10521. name: "Minimacro",
  10522. height: math.unit(80, "feet")
  10523. },
  10524. {
  10525. name: "MDA",
  10526. height: math.unit(80, "meters")
  10527. },
  10528. {
  10529. name: "Macro",
  10530. height: math.unit(800, "feet"),
  10531. default: true
  10532. },
  10533. {
  10534. name: "Megamacro",
  10535. height: math.unit(8000, "feet")
  10536. },
  10537. {
  10538. name: "Gigamacro",
  10539. height: math.unit(800, "miles")
  10540. },
  10541. {
  10542. name: "Teramacro",
  10543. height: math.unit(80000, "miles")
  10544. },
  10545. {
  10546. name: "Celestial",
  10547. height: math.unit(8e6, "miles")
  10548. },
  10549. {
  10550. name: "Star Dragon",
  10551. height: math.unit(800000, "parsecs")
  10552. },
  10553. {
  10554. name: "Godly",
  10555. height: math.unit(800, "teraparsecs")
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(6, "feet"),
  10564. weight: math.unit(150, "lb"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/ky'owin/front.svg",
  10568. extra: 3888 / 3068,
  10569. bottom: 0.015
  10570. }
  10571. },
  10572. },
  10573. [
  10574. {
  10575. name: "Normal",
  10576. height: math.unit(6 + 8 / 12, "feet")
  10577. },
  10578. {
  10579. name: "Large",
  10580. height: math.unit(68, "feet")
  10581. },
  10582. {
  10583. name: "Macro",
  10584. height: math.unit(132, "feet")
  10585. },
  10586. {
  10587. name: "Macro+",
  10588. height: math.unit(340, "feet")
  10589. },
  10590. {
  10591. name: "Macro++",
  10592. height: math.unit(680, "feet"),
  10593. default: true
  10594. },
  10595. {
  10596. name: "Megamacro",
  10597. height: math.unit(1, "mile")
  10598. },
  10599. {
  10600. name: "Megamacro+",
  10601. height: math.unit(10, "miles")
  10602. },
  10603. ]
  10604. ))
  10605. characterMakers.push(() => makeCharacter(
  10606. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10607. {
  10608. front: {
  10609. height: math.unit(4, "feet"),
  10610. weight: math.unit(50, "lb"),
  10611. name: "Front",
  10612. image: {
  10613. source: "./media/characters/mal/front.svg",
  10614. extra: 785 / 724,
  10615. bottom: 0.07
  10616. }
  10617. },
  10618. },
  10619. [
  10620. {
  10621. name: "Micro",
  10622. height: math.unit(4, "inches")
  10623. },
  10624. {
  10625. name: "Normal",
  10626. height: math.unit(4, "feet"),
  10627. default: true
  10628. },
  10629. {
  10630. name: "Macro",
  10631. height: math.unit(200, "feet")
  10632. },
  10633. ]
  10634. ))
  10635. characterMakers.push(() => makeCharacter(
  10636. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10637. {
  10638. front: {
  10639. height: math.unit(6, "feet"),
  10640. weight: math.unit(150, "lb"),
  10641. name: "Front",
  10642. image: {
  10643. source: "./media/characters/jordan-deware/front.svg",
  10644. extra: 1191 / 1012
  10645. }
  10646. },
  10647. },
  10648. [
  10649. {
  10650. name: "Nano",
  10651. height: math.unit(0.01, "mm")
  10652. },
  10653. {
  10654. name: "Minimicro",
  10655. height: math.unit(1, "mm")
  10656. },
  10657. {
  10658. name: "Micro",
  10659. height: math.unit(0.5, "inches")
  10660. },
  10661. {
  10662. name: "Normal",
  10663. height: math.unit(4, "feet"),
  10664. default: true
  10665. },
  10666. {
  10667. name: "Minimacro",
  10668. height: math.unit(40, "meters")
  10669. },
  10670. {
  10671. name: "Small Macro",
  10672. height: math.unit(400, "meters")
  10673. },
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(4, "miles")
  10677. },
  10678. {
  10679. name: "Megamacro",
  10680. height: math.unit(40, "miles")
  10681. },
  10682. {
  10683. name: "Megamacro+",
  10684. height: math.unit(400, "miles")
  10685. },
  10686. {
  10687. name: "Gigamacro",
  10688. height: math.unit(400000, "miles")
  10689. },
  10690. ]
  10691. ))
  10692. characterMakers.push(() => makeCharacter(
  10693. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10694. {
  10695. side: {
  10696. height: math.unit(6, "feet"),
  10697. weight: math.unit(150, "lb"),
  10698. name: "Side",
  10699. image: {
  10700. source: "./media/characters/kimiko/side.svg",
  10701. extra: 600 / 358
  10702. }
  10703. },
  10704. },
  10705. [
  10706. {
  10707. name: "Normal",
  10708. height: math.unit(15, "feet"),
  10709. default: true
  10710. },
  10711. {
  10712. name: "Macro",
  10713. height: math.unit(220, "feet")
  10714. },
  10715. {
  10716. name: "Macro+",
  10717. height: math.unit(1450, "feet")
  10718. },
  10719. {
  10720. name: "Megamacro",
  10721. height: math.unit(11500, "feet")
  10722. },
  10723. {
  10724. name: "Gigamacro",
  10725. height: math.unit(9500, "miles")
  10726. },
  10727. {
  10728. name: "Teramacro",
  10729. height: math.unit(2208005005, "miles")
  10730. },
  10731. {
  10732. name: "Examacro",
  10733. height: math.unit(2750, "parsecs")
  10734. },
  10735. {
  10736. name: "Zettamacro",
  10737. height: math.unit(101500, "parsecs")
  10738. },
  10739. ]
  10740. ))
  10741. characterMakers.push(() => makeCharacter(
  10742. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10743. {
  10744. front: {
  10745. height: math.unit(6, "feet"),
  10746. weight: math.unit(70, "kg"),
  10747. name: "Front",
  10748. image: {
  10749. source: "./media/characters/andrew-sleepy/front.svg"
  10750. }
  10751. },
  10752. side: {
  10753. height: math.unit(6, "feet"),
  10754. weight: math.unit(70, "kg"),
  10755. name: "Side",
  10756. image: {
  10757. source: "./media/characters/andrew-sleepy/side.svg"
  10758. }
  10759. },
  10760. },
  10761. [
  10762. {
  10763. name: "Micro",
  10764. height: math.unit(1, "mm"),
  10765. default: true
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(6, "feet"),
  10774. weight: math.unit(150, "lb"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/judio/front.svg",
  10778. extra: 1258 / 1110
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Normal",
  10785. height: math.unit(5 + 6 / 12, "feet")
  10786. },
  10787. {
  10788. name: "Macro",
  10789. height: math.unit(1000, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Megamacro",
  10794. height: math.unit(10, "miles")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(68, "kg"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/nomaxice/front.svg",
  10807. extra: 1498 / 1073,
  10808. bottom: 0.075
  10809. }
  10810. },
  10811. foot: {
  10812. height: math.unit(1.1, "feet"),
  10813. name: "Foot",
  10814. image: {
  10815. source: "./media/characters/nomaxice/foot.svg"
  10816. }
  10817. },
  10818. },
  10819. [
  10820. {
  10821. name: "Micro",
  10822. height: math.unit(8, "cm")
  10823. },
  10824. {
  10825. name: "Norm",
  10826. height: math.unit(1.82, "m")
  10827. },
  10828. {
  10829. name: "Norm+",
  10830. height: math.unit(8.8, "feet")
  10831. },
  10832. {
  10833. name: "Big",
  10834. height: math.unit(8, "meters"),
  10835. default: true
  10836. },
  10837. {
  10838. name: "Macro",
  10839. height: math.unit(18, "meters")
  10840. },
  10841. {
  10842. name: "Macro+",
  10843. height: math.unit(88, "meters")
  10844. },
  10845. ]
  10846. ))
  10847. characterMakers.push(() => makeCharacter(
  10848. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10849. {
  10850. front: {
  10851. height: math.unit(12, "feet"),
  10852. weight: math.unit(1.5, "tons"),
  10853. name: "Front",
  10854. image: {
  10855. source: "./media/characters/dydros/front.svg",
  10856. extra: 863 / 800,
  10857. bottom: 0.015
  10858. }
  10859. },
  10860. back: {
  10861. height: math.unit(12, "feet"),
  10862. weight: math.unit(1.5, "tons"),
  10863. name: "Back",
  10864. image: {
  10865. source: "./media/characters/dydros/back.svg",
  10866. extra: 900 / 843,
  10867. bottom: 0.005
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Normal",
  10874. height: math.unit(12, "feet"),
  10875. default: true
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10881. {
  10882. front: {
  10883. height: math.unit(6, "feet"),
  10884. weight: math.unit(100, "kg"),
  10885. name: "Front",
  10886. image: {
  10887. source: "./media/characters/riggi/front.svg",
  10888. extra: 5787 / 5303
  10889. }
  10890. },
  10891. hyper: {
  10892. height: math.unit(6 * 5 / 3, "feet"),
  10893. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10894. name: "Hyper",
  10895. image: {
  10896. source: "./media/characters/riggi/hyper.svg",
  10897. extra: 3595 / 3485
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Small Macro",
  10904. height: math.unit(50, "feet")
  10905. },
  10906. {
  10907. name: "Default",
  10908. height: math.unit(200, "feet"),
  10909. default: true
  10910. },
  10911. {
  10912. name: "Loom",
  10913. height: math.unit(10000, "feet")
  10914. },
  10915. {
  10916. name: "Cruising Altitude",
  10917. height: math.unit(30000, "feet")
  10918. },
  10919. {
  10920. name: "Megamacro",
  10921. height: math.unit(100, "miles")
  10922. },
  10923. {
  10924. name: "Continent Sized",
  10925. height: math.unit(2800, "miles")
  10926. },
  10927. {
  10928. name: "Earth Sized",
  10929. height: math.unit(8000, "miles")
  10930. },
  10931. ]
  10932. ))
  10933. characterMakers.push(() => makeCharacter(
  10934. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10935. {
  10936. front: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(250, "lb"),
  10939. name: "Front",
  10940. image: {
  10941. source: "./media/characters/alexi/front.svg",
  10942. extra: 3483 / 3291,
  10943. bottom: 0.04
  10944. }
  10945. },
  10946. back: {
  10947. height: math.unit(6, "feet"),
  10948. weight: math.unit(250, "lb"),
  10949. name: "Back",
  10950. image: {
  10951. source: "./media/characters/alexi/back.svg",
  10952. extra: 3533 / 3356,
  10953. bottom: 0.021
  10954. }
  10955. },
  10956. frontTransforming: {
  10957. height: math.unit(8.58, "feet"),
  10958. weight: math.unit(1300, "lb"),
  10959. name: "Transforming",
  10960. image: {
  10961. source: "./media/characters/alexi/front-transforming.svg",
  10962. extra: 437 / 409,
  10963. bottom: 19 / 458.66
  10964. }
  10965. },
  10966. frontTransformed: {
  10967. height: math.unit(12.5, "feet"),
  10968. weight: math.unit(4000, "lb"),
  10969. name: "Transformed",
  10970. image: {
  10971. source: "./media/characters/alexi/front-transformed.svg",
  10972. extra: 639 / 614,
  10973. bottom: 30.55 / 671
  10974. }
  10975. },
  10976. },
  10977. [
  10978. {
  10979. name: "Normal",
  10980. height: math.unit(14, "feet"),
  10981. default: true
  10982. },
  10983. {
  10984. name: "Minimacro",
  10985. height: math.unit(30, "meters")
  10986. },
  10987. {
  10988. name: "Macro",
  10989. height: math.unit(500, "meters")
  10990. },
  10991. {
  10992. name: "Megamacro",
  10993. height: math.unit(9000, "km")
  10994. },
  10995. {
  10996. name: "Teramacro",
  10997. height: math.unit(384000, "km")
  10998. },
  10999. ]
  11000. ))
  11001. characterMakers.push(() => makeCharacter(
  11002. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11003. {
  11004. front: {
  11005. height: math.unit(6, "feet"),
  11006. weight: math.unit(150, "lb"),
  11007. name: "Front",
  11008. image: {
  11009. source: "./media/characters/kayroo/front.svg",
  11010. extra: 1153 / 1038,
  11011. bottom: 0.06
  11012. }
  11013. },
  11014. foot: {
  11015. height: math.unit(6, "feet"),
  11016. weight: math.unit(150, "lb"),
  11017. name: "Foot",
  11018. image: {
  11019. source: "./media/characters/kayroo/foot.svg"
  11020. }
  11021. },
  11022. },
  11023. [
  11024. {
  11025. name: "Normal",
  11026. height: math.unit(8, "feet"),
  11027. default: true
  11028. },
  11029. {
  11030. name: "Minimacro",
  11031. height: math.unit(250, "feet")
  11032. },
  11033. {
  11034. name: "Macro",
  11035. height: math.unit(2800, "feet")
  11036. },
  11037. {
  11038. name: "Megamacro",
  11039. height: math.unit(5200, "feet")
  11040. },
  11041. {
  11042. name: "Gigamacro",
  11043. height: math.unit(27000, "feet")
  11044. },
  11045. {
  11046. name: "Omega",
  11047. height: math.unit(45000, "feet")
  11048. },
  11049. ]
  11050. ))
  11051. characterMakers.push(() => makeCharacter(
  11052. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11053. {
  11054. front: {
  11055. height: math.unit(18, "feet"),
  11056. weight: math.unit(5800, "lb"),
  11057. name: "Front",
  11058. image: {
  11059. source: "./media/characters/rhys/front.svg",
  11060. extra: 3386 / 3090,
  11061. bottom: 0.07
  11062. }
  11063. },
  11064. },
  11065. [
  11066. {
  11067. name: "Normal",
  11068. height: math.unit(18, "feet"),
  11069. default: true
  11070. },
  11071. {
  11072. name: "Working Size",
  11073. height: math.unit(200, "feet")
  11074. },
  11075. {
  11076. name: "Demolition Size",
  11077. height: math.unit(2000, "feet")
  11078. },
  11079. {
  11080. name: "Maximum Licensed Size",
  11081. height: math.unit(5, "miles")
  11082. },
  11083. {
  11084. name: "Maximum Observed Size",
  11085. height: math.unit(10, "yottameters")
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11091. {
  11092. front: {
  11093. height: math.unit(6, "feet"),
  11094. weight: math.unit(250, "lb"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/toto/front.svg",
  11098. extra: 527 / 479,
  11099. bottom: 0.05
  11100. }
  11101. },
  11102. },
  11103. [
  11104. {
  11105. name: "Micro",
  11106. height: math.unit(3, "feet")
  11107. },
  11108. {
  11109. name: "Normal",
  11110. height: math.unit(10, "feet")
  11111. },
  11112. {
  11113. name: "Macro",
  11114. height: math.unit(150, "feet"),
  11115. default: true
  11116. },
  11117. {
  11118. name: "Megamacro",
  11119. height: math.unit(1200, "feet")
  11120. },
  11121. ]
  11122. ))
  11123. characterMakers.push(() => makeCharacter(
  11124. { name: "King", species: ["lion"], tags: ["anthro"] },
  11125. {
  11126. back: {
  11127. height: math.unit(6, "feet"),
  11128. weight: math.unit(150, "lb"),
  11129. name: "Back",
  11130. image: {
  11131. source: "./media/characters/king/back.svg"
  11132. }
  11133. },
  11134. },
  11135. [
  11136. {
  11137. name: "Micro",
  11138. height: math.unit(2, "inches")
  11139. },
  11140. {
  11141. name: "Normal",
  11142. height: math.unit(8, "feet")
  11143. },
  11144. {
  11145. name: "Macro",
  11146. height: math.unit(200, "feet"),
  11147. default: true
  11148. },
  11149. {
  11150. name: "Megamacro",
  11151. height: math.unit(50, "miles")
  11152. },
  11153. ]
  11154. ))
  11155. characterMakers.push(() => makeCharacter(
  11156. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11157. {
  11158. anthro: {
  11159. height: math.unit(6 + 5 / 12, "feet"),
  11160. weight: math.unit(280, "lb"),
  11161. name: "Anthro",
  11162. image: {
  11163. source: "./media/characters/cordite/anthro.svg",
  11164. extra: 1986 / 1905,
  11165. bottom: 0.025
  11166. }
  11167. },
  11168. feral: {
  11169. height: math.unit(2, "feet"),
  11170. weight: math.unit(90, "lb"),
  11171. name: "Feral",
  11172. image: {
  11173. source: "./media/characters/cordite/feral.svg",
  11174. extra: 1260 / 755,
  11175. bottom: 0.05
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Normal",
  11182. height: math.unit(6 + 5 / 12, "feet"),
  11183. default: true
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11189. {
  11190. front: {
  11191. height: math.unit(6, "feet"),
  11192. weight: math.unit(150, "lb"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/pianostrong/front.svg",
  11196. extra: 6577 / 6254,
  11197. bottom: 0.02
  11198. }
  11199. },
  11200. side: {
  11201. height: math.unit(6, "feet"),
  11202. weight: math.unit(150, "lb"),
  11203. name: "Side",
  11204. image: {
  11205. source: "./media/characters/pianostrong/side.svg",
  11206. extra: 6106 / 5730
  11207. }
  11208. },
  11209. back: {
  11210. height: math.unit(6, "feet"),
  11211. weight: math.unit(150, "lb"),
  11212. name: "Back",
  11213. image: {
  11214. source: "./media/characters/pianostrong/back.svg",
  11215. extra: 6085 / 5733,
  11216. bottom: 0.01
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Macro",
  11223. height: math.unit(100, "feet")
  11224. },
  11225. {
  11226. name: "Macro+",
  11227. height: math.unit(300, "feet"),
  11228. default: true
  11229. },
  11230. {
  11231. name: "Macro++",
  11232. height: math.unit(1000, "feet")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(6, "feet"),
  11241. weight: math.unit(150, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/kona/front.svg",
  11245. extra: 2960 / 2629,
  11246. bottom: 0.005
  11247. }
  11248. },
  11249. },
  11250. [
  11251. {
  11252. name: "Normal",
  11253. height: math.unit(11 + 8 / 12, "feet")
  11254. },
  11255. {
  11256. name: "Macro",
  11257. height: math.unit(850, "feet"),
  11258. default: true
  11259. },
  11260. {
  11261. name: "Macro+",
  11262. height: math.unit(1.5, "km"),
  11263. default: true
  11264. },
  11265. {
  11266. name: "Megamacro",
  11267. height: math.unit(80, "miles")
  11268. },
  11269. {
  11270. name: "Gigamacro",
  11271. height: math.unit(3500, "miles")
  11272. },
  11273. ]
  11274. ))
  11275. characterMakers.push(() => makeCharacter(
  11276. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11277. {
  11278. side: {
  11279. height: math.unit(1.9, "meters"),
  11280. weight: math.unit(326, "kg"),
  11281. name: "Side",
  11282. image: {
  11283. source: "./media/characters/levi/side.svg",
  11284. extra: 1704 / 1334,
  11285. bottom: 0.02
  11286. }
  11287. },
  11288. },
  11289. [
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(1.9, "meters"),
  11293. default: true
  11294. },
  11295. {
  11296. name: "Macro",
  11297. height: math.unit(20, "meters")
  11298. },
  11299. {
  11300. name: "Macro+",
  11301. height: math.unit(200, "meters")
  11302. },
  11303. {
  11304. name: "Megamacro",
  11305. height: math.unit(2, "km")
  11306. },
  11307. {
  11308. name: "Megamacro+",
  11309. height: math.unit(20, "km")
  11310. },
  11311. {
  11312. name: "Gigamacro",
  11313. height: math.unit(2500, "km")
  11314. },
  11315. {
  11316. name: "Gigamacro+",
  11317. height: math.unit(120000, "km")
  11318. },
  11319. {
  11320. name: "Teramacro",
  11321. height: math.unit(7.77e6, "km")
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11327. {
  11328. front: {
  11329. height: math.unit(6 + 4/12, "feet"),
  11330. weight: math.unit(190, "lb"),
  11331. name: "Front",
  11332. image: {
  11333. source: "./media/characters/bmc/front.svg",
  11334. extra: 1626/1472,
  11335. bottom: 79/1705
  11336. }
  11337. },
  11338. back: {
  11339. height: math.unit(6 + 4/12, "feet"),
  11340. weight: math.unit(190, "lb"),
  11341. name: "Back",
  11342. image: {
  11343. source: "./media/characters/bmc/back.svg",
  11344. extra: 1640/1479,
  11345. bottom: 45/1685
  11346. }
  11347. },
  11348. frontArmor: {
  11349. height: math.unit(6 + 4/12, "feet"),
  11350. weight: math.unit(190, "lb"),
  11351. name: "Front-armor",
  11352. image: {
  11353. source: "./media/characters/bmc/front-armor.svg",
  11354. extra: 1538/1468,
  11355. bottom: 79/1617
  11356. }
  11357. },
  11358. },
  11359. [
  11360. {
  11361. name: "Human-sized",
  11362. height: math.unit(6 + 4 / 12, "feet")
  11363. },
  11364. {
  11365. name: "Interactive Size",
  11366. height: math.unit(25, "feet")
  11367. },
  11368. {
  11369. name: "Small",
  11370. height: math.unit(250, "feet")
  11371. },
  11372. {
  11373. name: "Normal",
  11374. height: math.unit(1250, "feet"),
  11375. default: true
  11376. },
  11377. {
  11378. name: "Good Day",
  11379. height: math.unit(88, "miles")
  11380. },
  11381. {
  11382. name: "Largest Measured Size",
  11383. height: math.unit(105.960, "galaxies")
  11384. },
  11385. ]
  11386. ))
  11387. characterMakers.push(() => makeCharacter(
  11388. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11389. {
  11390. front: {
  11391. height: math.unit(20, "feet"),
  11392. weight: math.unit(2016, "kg"),
  11393. name: "Front",
  11394. image: {
  11395. source: "./media/characters/sven-the-kaiju/front.svg",
  11396. extra: 1277/1250,
  11397. bottom: 35/1312
  11398. }
  11399. },
  11400. mouth: {
  11401. height: math.unit(1.85, "feet"),
  11402. name: "Mouth",
  11403. image: {
  11404. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Fairy",
  11411. height: math.unit(6, "inches")
  11412. },
  11413. {
  11414. name: "Normal",
  11415. height: math.unit(20, "feet"),
  11416. default: true
  11417. },
  11418. {
  11419. name: "Rampage",
  11420. height: math.unit(200, "feet")
  11421. },
  11422. {
  11423. name: "Archfey Forest Guardian",
  11424. height: math.unit(1, "mile")
  11425. },
  11426. ]
  11427. ))
  11428. characterMakers.push(() => makeCharacter(
  11429. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11430. {
  11431. front: {
  11432. height: math.unit(4, "meters"),
  11433. weight: math.unit(2, "tons"),
  11434. name: "Front",
  11435. image: {
  11436. source: "./media/characters/marik/front.svg",
  11437. extra: 1057 / 1003,
  11438. bottom: 0.08
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Normal",
  11445. height: math.unit(4, "meters"),
  11446. default: true
  11447. },
  11448. {
  11449. name: "Macro",
  11450. height: math.unit(20, "meters")
  11451. },
  11452. {
  11453. name: "Megamacro",
  11454. height: math.unit(50, "km")
  11455. },
  11456. {
  11457. name: "Gigamacro",
  11458. height: math.unit(100, "km")
  11459. },
  11460. {
  11461. name: "Alpha Macro",
  11462. height: math.unit(7.88e7, "yottameters")
  11463. },
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11468. {
  11469. front: {
  11470. height: math.unit(6, "feet"),
  11471. weight: math.unit(110, "lb"),
  11472. name: "Front",
  11473. image: {
  11474. source: "./media/characters/mel/front.svg",
  11475. extra: 736 / 617,
  11476. bottom: 0.017
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Pico",
  11483. height: math.unit(3, "pm")
  11484. },
  11485. {
  11486. name: "Nano",
  11487. height: math.unit(3, "nm")
  11488. },
  11489. {
  11490. name: "Micro",
  11491. height: math.unit(0.3, "mm"),
  11492. default: true
  11493. },
  11494. {
  11495. name: "Micro+",
  11496. height: math.unit(3, "mm")
  11497. },
  11498. {
  11499. name: "Normal",
  11500. height: math.unit(5 + 10.5 / 12, "feet")
  11501. },
  11502. ]
  11503. ))
  11504. characterMakers.push(() => makeCharacter(
  11505. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11506. {
  11507. kaiju: {
  11508. height: math.unit(1.75, "meters"),
  11509. weight: math.unit(55, "kg"),
  11510. name: "Kaiju",
  11511. image: {
  11512. source: "./media/characters/lykonous/kaiju.svg",
  11513. extra: 1055 / 946,
  11514. bottom: 0.135
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Normal",
  11521. height: math.unit(2.5, "meters"),
  11522. default: true
  11523. },
  11524. {
  11525. name: "Kaiju Dragon",
  11526. height: math.unit(60, "meters")
  11527. },
  11528. {
  11529. name: "Mega Kaiju",
  11530. height: math.unit(120, "km")
  11531. },
  11532. {
  11533. name: "Giga Kaiju",
  11534. height: math.unit(200, "megameters")
  11535. },
  11536. {
  11537. name: "Terra Kaiju",
  11538. height: math.unit(400, "gigameters")
  11539. },
  11540. {
  11541. name: "Kaiju Dragon God",
  11542. height: math.unit(13000, "exaparsecs")
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(6, "feet"),
  11551. weight: math.unit(150, "lb"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/blü/front.svg",
  11555. extra: 1883 / 1564,
  11556. bottom: 0.031
  11557. }
  11558. },
  11559. },
  11560. [
  11561. {
  11562. name: "Normal",
  11563. height: math.unit(13, "feet"),
  11564. default: true
  11565. },
  11566. {
  11567. name: "Big Boi",
  11568. height: math.unit(150, "meters")
  11569. },
  11570. {
  11571. name: "Mini Stomper",
  11572. height: math.unit(300, "meters")
  11573. },
  11574. {
  11575. name: "Macro",
  11576. height: math.unit(1000, "meters")
  11577. },
  11578. {
  11579. name: "Megamacro",
  11580. height: math.unit(11000, "meters")
  11581. },
  11582. {
  11583. name: "Gigamacro",
  11584. height: math.unit(11000, "km")
  11585. },
  11586. {
  11587. name: "Teramacro",
  11588. height: math.unit(420000, "km")
  11589. },
  11590. {
  11591. name: "Examacro",
  11592. height: math.unit(120, "parsecs")
  11593. },
  11594. {
  11595. name: "God Tho",
  11596. height: math.unit(98000000000, "parsecs")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11602. {
  11603. taurFront: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(200, "lb"),
  11606. name: "Taur (Front)",
  11607. image: {
  11608. source: "./media/characters/scales/taur-front.svg",
  11609. extra: 1,
  11610. bottom: 0.05
  11611. }
  11612. },
  11613. taurBack: {
  11614. height: math.unit(6, "feet"),
  11615. weight: math.unit(200, "lb"),
  11616. name: "Taur (Back)",
  11617. image: {
  11618. source: "./media/characters/scales/taur-back.svg",
  11619. extra: 1,
  11620. bottom: 0.08
  11621. }
  11622. },
  11623. anthro: {
  11624. height: math.unit(6 * 7 / 12, "feet"),
  11625. weight: math.unit(100, "lb"),
  11626. name: "Anthro",
  11627. image: {
  11628. source: "./media/characters/scales/anthro.svg",
  11629. extra: 1,
  11630. bottom: 0.06
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Normal",
  11637. height: math.unit(12, "feet"),
  11638. default: true
  11639. },
  11640. ]
  11641. ))
  11642. characterMakers.push(() => makeCharacter(
  11643. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11644. {
  11645. front: {
  11646. height: math.unit(6, "feet"),
  11647. weight: math.unit(150, "lb"),
  11648. name: "Front",
  11649. image: {
  11650. source: "./media/characters/koragos/front.svg",
  11651. extra: 841 / 794,
  11652. bottom: 0.035
  11653. }
  11654. },
  11655. back: {
  11656. height: math.unit(6, "feet"),
  11657. weight: math.unit(150, "lb"),
  11658. name: "Back",
  11659. image: {
  11660. source: "./media/characters/koragos/back.svg",
  11661. extra: 841 / 810,
  11662. bottom: 0.022
  11663. }
  11664. },
  11665. },
  11666. [
  11667. {
  11668. name: "Normal",
  11669. height: math.unit(6 + 11 / 12, "feet"),
  11670. default: true
  11671. },
  11672. {
  11673. name: "Macro",
  11674. height: math.unit(490, "feet")
  11675. },
  11676. {
  11677. name: "Megamacro",
  11678. height: math.unit(10, "miles")
  11679. },
  11680. {
  11681. name: "Gigamacro",
  11682. height: math.unit(50, "miles")
  11683. },
  11684. ]
  11685. ))
  11686. characterMakers.push(() => makeCharacter(
  11687. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11688. {
  11689. front: {
  11690. height: math.unit(6, "feet"),
  11691. weight: math.unit(250, "lb"),
  11692. name: "Front",
  11693. image: {
  11694. source: "./media/characters/xylrem/front.svg",
  11695. extra: 3323 / 3050,
  11696. bottom: 0.065
  11697. }
  11698. },
  11699. },
  11700. [
  11701. {
  11702. name: "Micro",
  11703. height: math.unit(4, "feet")
  11704. },
  11705. {
  11706. name: "Normal",
  11707. height: math.unit(16, "feet"),
  11708. default: true
  11709. },
  11710. {
  11711. name: "Macro",
  11712. height: math.unit(2720, "feet")
  11713. },
  11714. {
  11715. name: "Megamacro",
  11716. height: math.unit(25000, "miles")
  11717. },
  11718. ]
  11719. ))
  11720. characterMakers.push(() => makeCharacter(
  11721. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11722. {
  11723. front: {
  11724. height: math.unit(8, "feet"),
  11725. weight: math.unit(250, "kg"),
  11726. name: "Front",
  11727. image: {
  11728. source: "./media/characters/ikideru/front.svg",
  11729. extra: 930 / 870,
  11730. bottom: 0.087
  11731. }
  11732. },
  11733. back: {
  11734. height: math.unit(8, "feet"),
  11735. weight: math.unit(250, "kg"),
  11736. name: "Back",
  11737. image: {
  11738. source: "./media/characters/ikideru/back.svg",
  11739. extra: 919 / 852,
  11740. bottom: 0.055
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Rare",
  11747. height: math.unit(8, "feet"),
  11748. default: true
  11749. },
  11750. {
  11751. name: "Playful Loom",
  11752. height: math.unit(80, "feet")
  11753. },
  11754. {
  11755. name: "City Leaner",
  11756. height: math.unit(230, "feet")
  11757. },
  11758. {
  11759. name: "Megamacro",
  11760. height: math.unit(2500, "feet")
  11761. },
  11762. {
  11763. name: "Gigamacro",
  11764. height: math.unit(26400, "feet")
  11765. },
  11766. {
  11767. name: "Tectonic Shifter",
  11768. height: math.unit(1.7, "megameters")
  11769. },
  11770. {
  11771. name: "Planet Carer",
  11772. height: math.unit(21, "megameters")
  11773. },
  11774. {
  11775. name: "God",
  11776. height: math.unit(11157.22, "parsecs")
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11782. {
  11783. front: {
  11784. height: math.unit(6, "feet"),
  11785. weight: math.unit(120, "lb"),
  11786. name: "Front",
  11787. image: {
  11788. source: "./media/characters/neo/front.svg"
  11789. }
  11790. },
  11791. },
  11792. [
  11793. {
  11794. name: "Micro",
  11795. height: math.unit(2, "inches"),
  11796. default: true
  11797. },
  11798. {
  11799. name: "Human Size",
  11800. height: math.unit(5 + 8 / 12, "feet")
  11801. },
  11802. ]
  11803. ))
  11804. characterMakers.push(() => makeCharacter(
  11805. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11806. {
  11807. front: {
  11808. height: math.unit(13 + 10 / 12, "feet"),
  11809. weight: math.unit(5320, "lb"),
  11810. name: "Front",
  11811. image: {
  11812. source: "./media/characters/chauncey-chantz/front.svg",
  11813. extra: 1587 / 1435,
  11814. bottom: 0.02
  11815. }
  11816. },
  11817. },
  11818. [
  11819. {
  11820. name: "Normal",
  11821. height: math.unit(13 + 10 / 12, "feet"),
  11822. default: true
  11823. },
  11824. {
  11825. name: "Macro",
  11826. height: math.unit(45, "feet")
  11827. },
  11828. {
  11829. name: "Megamacro",
  11830. height: math.unit(250, "miles")
  11831. },
  11832. {
  11833. name: "Planetary",
  11834. height: math.unit(10000, "miles")
  11835. },
  11836. {
  11837. name: "Galactic",
  11838. height: math.unit(40000, "parsecs")
  11839. },
  11840. {
  11841. name: "Universal",
  11842. height: math.unit(1, "yottameter")
  11843. },
  11844. ]
  11845. ))
  11846. characterMakers.push(() => makeCharacter(
  11847. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11848. {
  11849. front: {
  11850. height: math.unit(6, "feet"),
  11851. weight: math.unit(150, "lb"),
  11852. name: "Front",
  11853. image: {
  11854. source: "./media/characters/epifox/front.svg",
  11855. extra: 1,
  11856. bottom: 0.075
  11857. }
  11858. },
  11859. },
  11860. [
  11861. {
  11862. name: "Micro",
  11863. height: math.unit(6, "inches")
  11864. },
  11865. {
  11866. name: "Normal",
  11867. height: math.unit(12, "feet"),
  11868. default: true
  11869. },
  11870. {
  11871. name: "Macro",
  11872. height: math.unit(3810, "feet")
  11873. },
  11874. {
  11875. name: "Megamacro",
  11876. height: math.unit(500, "miles")
  11877. },
  11878. ]
  11879. ))
  11880. characterMakers.push(() => makeCharacter(
  11881. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11882. {
  11883. front: {
  11884. height: math.unit(1.8796, "m"),
  11885. weight: math.unit(230, "lb"),
  11886. name: "Front",
  11887. image: {
  11888. source: "./media/characters/colin-t/front.svg",
  11889. extra: 1272 / 1193,
  11890. bottom: 0.07
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Micro",
  11897. height: math.unit(0.571, "meters")
  11898. },
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(1.8796, "meters"),
  11902. default: true
  11903. },
  11904. {
  11905. name: "Tall",
  11906. height: math.unit(4, "meters")
  11907. },
  11908. {
  11909. name: "Macro",
  11910. height: math.unit(67.241, "meters")
  11911. },
  11912. {
  11913. name: "Megamacro",
  11914. height: math.unit(371.856, "meters")
  11915. },
  11916. {
  11917. name: "Planetary",
  11918. height: math.unit(12631.5689, "km")
  11919. },
  11920. ]
  11921. ))
  11922. characterMakers.push(() => makeCharacter(
  11923. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11924. {
  11925. front: {
  11926. height: math.unit(1.85, "meters"),
  11927. weight: math.unit(80, "kg"),
  11928. name: "Front",
  11929. image: {
  11930. source: "./media/characters/matvei/front.svg",
  11931. extra: 614 / 594,
  11932. bottom: 0.01
  11933. }
  11934. },
  11935. },
  11936. [
  11937. {
  11938. name: "Normal",
  11939. height: math.unit(1.85, "meters"),
  11940. default: true
  11941. },
  11942. ]
  11943. ))
  11944. characterMakers.push(() => makeCharacter(
  11945. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11946. {
  11947. front: {
  11948. height: math.unit(5 + 9 / 12, "feet"),
  11949. weight: math.unit(70, "lb"),
  11950. name: "Front",
  11951. image: {
  11952. source: "./media/characters/quincy/front.svg",
  11953. extra: 3041 / 2751
  11954. }
  11955. },
  11956. back: {
  11957. height: math.unit(5 + 9 / 12, "feet"),
  11958. weight: math.unit(70, "lb"),
  11959. name: "Back",
  11960. image: {
  11961. source: "./media/characters/quincy/back.svg",
  11962. extra: 3041 / 2751
  11963. }
  11964. },
  11965. flying: {
  11966. height: math.unit(5 + 4 / 12, "feet"),
  11967. weight: math.unit(70, "lb"),
  11968. name: "Flying",
  11969. image: {
  11970. source: "./media/characters/quincy/flying.svg",
  11971. extra: 1044 / 930
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Micro",
  11978. height: math.unit(3, "cm")
  11979. },
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(5 + 9 / 12, "feet")
  11983. },
  11984. {
  11985. name: "Macro",
  11986. height: math.unit(200, "meters"),
  11987. default: true
  11988. },
  11989. {
  11990. name: "Megamacro",
  11991. height: math.unit(1000, "meters")
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(3 + 11/12, "feet"),
  12000. weight: math.unit(50, "lb"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/vanrel/front.svg",
  12004. extra: 1104/949,
  12005. bottom: 52/1156
  12006. }
  12007. },
  12008. back: {
  12009. height: math.unit(3 + 11/12, "feet"),
  12010. weight: math.unit(50, "lb"),
  12011. name: "Back",
  12012. image: {
  12013. source: "./media/characters/vanrel/back.svg",
  12014. extra: 1119/976,
  12015. bottom: 37/1156
  12016. }
  12017. },
  12018. tome: {
  12019. height: math.unit(1.35, "feet"),
  12020. weight: math.unit(10, "lb"),
  12021. name: "Vanrel's Tome",
  12022. rename: true,
  12023. image: {
  12024. source: "./media/characters/vanrel/tome.svg"
  12025. }
  12026. },
  12027. beans: {
  12028. height: math.unit(0.89, "feet"),
  12029. name: "Beans",
  12030. image: {
  12031. source: "./media/characters/vanrel/beans.svg"
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Normal",
  12038. height: math.unit(3 + 11/12, "feet"),
  12039. default: true
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(7 + 5 / 12, "feet"),
  12048. name: "Front",
  12049. image: {
  12050. source: "./media/characters/kuiper-vanrel/front.svg",
  12051. extra: 1219/1169,
  12052. bottom: 69/1288
  12053. }
  12054. },
  12055. back: {
  12056. height: math.unit(7 + 5 / 12, "feet"),
  12057. name: "Back",
  12058. image: {
  12059. source: "./media/characters/kuiper-vanrel/back.svg",
  12060. extra: 1236/1193,
  12061. bottom: 27/1263
  12062. }
  12063. },
  12064. foot: {
  12065. height: math.unit(0.55, "meters"),
  12066. name: "Foot",
  12067. image: {
  12068. source: "./media/characters/kuiper-vanrel/foot.svg",
  12069. }
  12070. },
  12071. battle: {
  12072. height: math.unit(6.824, "feet"),
  12073. name: "Battle",
  12074. image: {
  12075. source: "./media/characters/kuiper-vanrel/battle.svg",
  12076. extra: 1466 / 1327,
  12077. bottom: 29 / 1492.5
  12078. }
  12079. },
  12080. meerkui: {
  12081. height: math.unit(18, "inches"),
  12082. name: "Meerkui",
  12083. image: {
  12084. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12085. extra: 1354/1289,
  12086. bottom: 69/1423
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(7 + 5 / 12, "feet"),
  12094. default: true
  12095. },
  12096. ]
  12097. ))
  12098. characterMakers.push(() => makeCharacter(
  12099. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12100. {
  12101. front: {
  12102. height: math.unit(8 + 5 / 12, "feet"),
  12103. name: "Front",
  12104. image: {
  12105. source: "./media/characters/keset-vanrel/front.svg",
  12106. extra: 1231/1148,
  12107. bottom: 82/1313
  12108. }
  12109. },
  12110. back: {
  12111. height: math.unit(8 + 5 / 12, "feet"),
  12112. name: "Back",
  12113. image: {
  12114. source: "./media/characters/keset-vanrel/back.svg",
  12115. extra: 1240/1174,
  12116. bottom: 33/1273
  12117. }
  12118. },
  12119. hand: {
  12120. height: math.unit(0.6, "meters"),
  12121. name: "Hand",
  12122. image: {
  12123. source: "./media/characters/keset-vanrel/hand.svg"
  12124. }
  12125. },
  12126. foot: {
  12127. height: math.unit(0.94978, "meters"),
  12128. name: "Foot",
  12129. image: {
  12130. source: "./media/characters/keset-vanrel/foot.svg"
  12131. }
  12132. },
  12133. battle: {
  12134. height: math.unit(7.408, "feet"),
  12135. name: "Battle",
  12136. image: {
  12137. source: "./media/characters/keset-vanrel/battle.svg",
  12138. extra: 1890 / 1386,
  12139. bottom: 73.28 / 1970
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Normal",
  12146. height: math.unit(8 + 5 / 12, "feet"),
  12147. default: true
  12148. },
  12149. ]
  12150. ))
  12151. characterMakers.push(() => makeCharacter(
  12152. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12153. {
  12154. front: {
  12155. height: math.unit(6, "feet"),
  12156. weight: math.unit(150, "lb"),
  12157. name: "Front",
  12158. image: {
  12159. source: "./media/characters/neos/front.svg",
  12160. extra: 1696 / 992,
  12161. bottom: 0.14
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Normal",
  12168. height: math.unit(54, "cm"),
  12169. default: true
  12170. },
  12171. {
  12172. name: "Macro",
  12173. height: math.unit(100, "m")
  12174. },
  12175. {
  12176. name: "Megamacro",
  12177. height: math.unit(10, "km")
  12178. },
  12179. {
  12180. name: "Megamacro+",
  12181. height: math.unit(100, "km")
  12182. },
  12183. {
  12184. name: "Gigamacro",
  12185. height: math.unit(100, "Mm")
  12186. },
  12187. {
  12188. name: "Teramacro",
  12189. height: math.unit(100, "Gm")
  12190. },
  12191. {
  12192. name: "Examacro",
  12193. height: math.unit(100, "Em")
  12194. },
  12195. {
  12196. name: "Godly",
  12197. height: math.unit(10000, "Ym")
  12198. },
  12199. {
  12200. name: "Beyond Godly",
  12201. height: math.unit(25, "multiverses")
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12207. {
  12208. feminine: {
  12209. height: math.unit(5, "feet"),
  12210. weight: math.unit(100, "lb"),
  12211. name: "Feminine",
  12212. image: {
  12213. source: "./media/characters/sammy-mouse/feminine.svg",
  12214. extra: 2526 / 2425,
  12215. bottom: 0.123
  12216. }
  12217. },
  12218. masculine: {
  12219. height: math.unit(5, "feet"),
  12220. weight: math.unit(100, "lb"),
  12221. name: "Masculine",
  12222. image: {
  12223. source: "./media/characters/sammy-mouse/masculine.svg",
  12224. extra: 2526 / 2425,
  12225. bottom: 0.123
  12226. }
  12227. },
  12228. },
  12229. [
  12230. {
  12231. name: "Micro",
  12232. height: math.unit(5, "inches")
  12233. },
  12234. {
  12235. name: "Normal",
  12236. height: math.unit(5, "feet"),
  12237. default: true
  12238. },
  12239. {
  12240. name: "Macro",
  12241. height: math.unit(60, "feet")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(4, "feet"),
  12250. weight: math.unit(50, "lb"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/kole/front.svg",
  12254. extra: 1423 / 1303,
  12255. bottom: 0.025
  12256. }
  12257. },
  12258. back: {
  12259. height: math.unit(4, "feet"),
  12260. weight: math.unit(50, "lb"),
  12261. name: "Back",
  12262. image: {
  12263. source: "./media/characters/kole/back.svg",
  12264. extra: 1426 / 1280,
  12265. bottom: 0.02
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(4, "feet"),
  12273. default: true
  12274. },
  12275. ]
  12276. ))
  12277. characterMakers.push(() => makeCharacter(
  12278. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12279. {
  12280. front: {
  12281. height: math.unit(2.5, "feet"),
  12282. weight: math.unit(32, "lb"),
  12283. name: "Front",
  12284. image: {
  12285. source: "./media/characters/rufran/front.svg",
  12286. extra: 1313/885,
  12287. bottom: 94/1407
  12288. }
  12289. },
  12290. side: {
  12291. height: math.unit(2.5, "feet"),
  12292. weight: math.unit(32, "lb"),
  12293. name: "Side",
  12294. image: {
  12295. source: "./media/characters/rufran/side.svg",
  12296. extra: 1109/852,
  12297. bottom: 118/1227
  12298. }
  12299. },
  12300. back: {
  12301. height: math.unit(2.5, "feet"),
  12302. weight: math.unit(32, "lb"),
  12303. name: "Back",
  12304. image: {
  12305. source: "./media/characters/rufran/back.svg",
  12306. extra: 1280/878,
  12307. bottom: 131/1411
  12308. }
  12309. },
  12310. mouth: {
  12311. height: math.unit(1.13, "feet"),
  12312. name: "Mouth",
  12313. image: {
  12314. source: "./media/characters/rufran/mouth.svg"
  12315. }
  12316. },
  12317. foot: {
  12318. height: math.unit(1.33, "feet"),
  12319. name: "Foot",
  12320. image: {
  12321. source: "./media/characters/rufran/foot.svg"
  12322. }
  12323. },
  12324. koboldFront: {
  12325. height: math.unit(2 + 6 / 12, "feet"),
  12326. weight: math.unit(20, "lb"),
  12327. name: "Front (Kobold)",
  12328. image: {
  12329. source: "./media/characters/rufran/kobold-front.svg",
  12330. extra: 2041 / 1839,
  12331. bottom: 0.055
  12332. }
  12333. },
  12334. koboldBack: {
  12335. height: math.unit(2 + 6 / 12, "feet"),
  12336. weight: math.unit(20, "lb"),
  12337. name: "Back (Kobold)",
  12338. image: {
  12339. source: "./media/characters/rufran/kobold-back.svg",
  12340. extra: 2054 / 1839,
  12341. bottom: 0.01
  12342. }
  12343. },
  12344. koboldHand: {
  12345. height: math.unit(0.2166, "meters"),
  12346. name: "Hand (Kobold)",
  12347. image: {
  12348. source: "./media/characters/rufran/kobold-hand.svg"
  12349. }
  12350. },
  12351. koboldFoot: {
  12352. height: math.unit(0.185, "meters"),
  12353. name: "Foot (Kobold)",
  12354. image: {
  12355. source: "./media/characters/rufran/kobold-foot.svg"
  12356. }
  12357. },
  12358. },
  12359. [
  12360. {
  12361. name: "Micro",
  12362. height: math.unit(1, "inch")
  12363. },
  12364. {
  12365. name: "Normal",
  12366. height: math.unit(2 + 6 / 12, "feet"),
  12367. default: true
  12368. },
  12369. {
  12370. name: "Big",
  12371. height: math.unit(60, "feet")
  12372. },
  12373. {
  12374. name: "Macro",
  12375. height: math.unit(325, "feet")
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12381. {
  12382. front: {
  12383. height: math.unit(0.3, "meters"),
  12384. weight: math.unit(3.5, "kg"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/chip/front.svg",
  12388. extra: 748 / 674
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Micro",
  12395. height: math.unit(1, "inch"),
  12396. default: true
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12402. {
  12403. side: {
  12404. height: math.unit(2.3, "meters"),
  12405. weight: math.unit(3500, "lb"),
  12406. name: "Side",
  12407. image: {
  12408. source: "./media/characters/torvid/side.svg",
  12409. extra: 1972 / 722,
  12410. bottom: 0.035
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Normal",
  12417. height: math.unit(2.3, "meters"),
  12418. default: true
  12419. },
  12420. ]
  12421. ))
  12422. characterMakers.push(() => makeCharacter(
  12423. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12424. {
  12425. front: {
  12426. height: math.unit(2, "meters"),
  12427. weight: math.unit(150.5, "kg"),
  12428. name: "Front",
  12429. image: {
  12430. source: "./media/characters/susan/front.svg",
  12431. extra: 693 / 635,
  12432. bottom: 0.05
  12433. }
  12434. },
  12435. },
  12436. [
  12437. {
  12438. name: "Megamacro",
  12439. height: math.unit(505, "miles"),
  12440. default: true
  12441. },
  12442. ]
  12443. ))
  12444. characterMakers.push(() => makeCharacter(
  12445. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12446. {
  12447. front: {
  12448. height: math.unit(6, "feet"),
  12449. weight: math.unit(150, "lb"),
  12450. name: "Front",
  12451. image: {
  12452. source: "./media/characters/raindrops/front.svg",
  12453. extra: 2655 / 2461,
  12454. bottom: 49 / 2705
  12455. }
  12456. },
  12457. back: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(150, "lb"),
  12460. name: "Back",
  12461. image: {
  12462. source: "./media/characters/raindrops/back.svg",
  12463. extra: 2574 / 2400,
  12464. bottom: 65 / 2634
  12465. }
  12466. },
  12467. },
  12468. [
  12469. {
  12470. name: "Micro",
  12471. height: math.unit(6, "inches")
  12472. },
  12473. {
  12474. name: "Normal",
  12475. height: math.unit(6 + 2 / 12, "feet")
  12476. },
  12477. {
  12478. name: "Macro",
  12479. height: math.unit(131, "feet"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Megamacro",
  12484. height: math.unit(15, "miles")
  12485. },
  12486. {
  12487. name: "Gigamacro",
  12488. height: math.unit(4000, "miles")
  12489. },
  12490. {
  12491. name: "Teramacro",
  12492. height: math.unit(315000, "miles")
  12493. },
  12494. ]
  12495. ))
  12496. characterMakers.push(() => makeCharacter(
  12497. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12498. {
  12499. front: {
  12500. height: math.unit(2.794, "meters"),
  12501. weight: math.unit(325, "kg"),
  12502. name: "Front",
  12503. image: {
  12504. source: "./media/characters/tezwa/front.svg",
  12505. extra: 2083 / 1906,
  12506. bottom: 0.031
  12507. }
  12508. },
  12509. foot: {
  12510. height: math.unit(0.687, "meters"),
  12511. name: "Foot",
  12512. image: {
  12513. source: "./media/characters/tezwa/foot.svg"
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(9 + 2 / 12, "feet"),
  12521. default: true
  12522. },
  12523. ]
  12524. ))
  12525. characterMakers.push(() => makeCharacter(
  12526. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12527. {
  12528. front: {
  12529. height: math.unit(58, "feet"),
  12530. weight: math.unit(89000, "lb"),
  12531. name: "Front",
  12532. image: {
  12533. source: "./media/characters/typhus/front.svg",
  12534. extra: 816 / 800,
  12535. bottom: 0.065
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Macro",
  12542. height: math.unit(58, "feet"),
  12543. default: true
  12544. },
  12545. ]
  12546. ))
  12547. characterMakers.push(() => makeCharacter(
  12548. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12549. {
  12550. front: {
  12551. height: math.unit(12, "feet"),
  12552. weight: math.unit(6, "tonnes"),
  12553. name: "Front",
  12554. image: {
  12555. source: "./media/characters/lyra-von-wulf/front.svg",
  12556. extra: 1,
  12557. bottom: 0.10
  12558. }
  12559. },
  12560. frontMecha: {
  12561. height: math.unit(12, "feet"),
  12562. weight: math.unit(12, "tonnes"),
  12563. name: "Front (Mecha)",
  12564. image: {
  12565. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12566. extra: 1,
  12567. bottom: 0.042
  12568. }
  12569. },
  12570. maw: {
  12571. height: math.unit(2.2, "feet"),
  12572. name: "Maw",
  12573. image: {
  12574. source: "./media/characters/lyra-von-wulf/maw.svg"
  12575. }
  12576. },
  12577. },
  12578. [
  12579. {
  12580. name: "Normal",
  12581. height: math.unit(12, "feet"),
  12582. default: true
  12583. },
  12584. {
  12585. name: "Classic",
  12586. height: math.unit(50, "feet")
  12587. },
  12588. {
  12589. name: "Macro",
  12590. height: math.unit(500, "feet")
  12591. },
  12592. {
  12593. name: "Megamacro",
  12594. height: math.unit(1, "mile")
  12595. },
  12596. {
  12597. name: "Gigamacro",
  12598. height: math.unit(400, "miles")
  12599. },
  12600. {
  12601. name: "Teramacro",
  12602. height: math.unit(22000, "miles")
  12603. },
  12604. {
  12605. name: "Solarmacro",
  12606. height: math.unit(8600000, "miles")
  12607. },
  12608. {
  12609. name: "Galactic",
  12610. height: math.unit(1057000, "lightyears")
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(6 + 10 / 12, "feet"),
  12619. weight: math.unit(150, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/dixon/front.svg",
  12623. extra: 3361 / 3209,
  12624. bottom: 0.01
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(6 + 10 / 12, "feet"),
  12632. default: true
  12633. },
  12634. {
  12635. name: "Big",
  12636. height: math.unit(12, "meters")
  12637. },
  12638. {
  12639. name: "Macro",
  12640. height: math.unit(500, "meters")
  12641. },
  12642. {
  12643. name: "Megamacro",
  12644. height: math.unit(2, "km")
  12645. },
  12646. ]
  12647. ))
  12648. characterMakers.push(() => makeCharacter(
  12649. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12650. {
  12651. front: {
  12652. height: math.unit(185, "cm"),
  12653. weight: math.unit(68, "kg"),
  12654. name: "Front",
  12655. image: {
  12656. source: "./media/characters/kauko/front.svg",
  12657. extra: 1455 / 1421,
  12658. bottom: 0.03
  12659. }
  12660. },
  12661. back: {
  12662. height: math.unit(185, "cm"),
  12663. weight: math.unit(68, "kg"),
  12664. name: "Back",
  12665. image: {
  12666. source: "./media/characters/kauko/back.svg",
  12667. extra: 1455 / 1421,
  12668. bottom: 0.004
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Normal",
  12675. height: math.unit(185, "cm"),
  12676. default: true
  12677. },
  12678. ]
  12679. ))
  12680. characterMakers.push(() => makeCharacter(
  12681. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12682. {
  12683. front: {
  12684. height: math.unit(6, "feet"),
  12685. weight: math.unit(150, "kg"),
  12686. name: "Front",
  12687. image: {
  12688. source: "./media/characters/varg/front.svg",
  12689. extra: 1108 / 1018,
  12690. bottom: 0.0375
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Normal",
  12697. height: math.unit(5, "meters")
  12698. },
  12699. {
  12700. name: "Macro",
  12701. height: math.unit(200, "meters")
  12702. },
  12703. {
  12704. name: "Megamacro",
  12705. height: math.unit(20, "kilometers")
  12706. },
  12707. {
  12708. name: "True Size",
  12709. height: math.unit(211, "km"),
  12710. default: true
  12711. },
  12712. {
  12713. name: "Gigamacro",
  12714. height: math.unit(1000, "km")
  12715. },
  12716. {
  12717. name: "Gigamacro+",
  12718. height: math.unit(8000, "km")
  12719. },
  12720. {
  12721. name: "Teramacro",
  12722. height: math.unit(1000000, "km")
  12723. },
  12724. ]
  12725. ))
  12726. characterMakers.push(() => makeCharacter(
  12727. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12728. {
  12729. front: {
  12730. height: math.unit(7 + 7 / 12, "feet"),
  12731. weight: math.unit(267, "lb"),
  12732. name: "Front",
  12733. image: {
  12734. source: "./media/characters/dayza/front.svg",
  12735. extra: 1262 / 1200,
  12736. bottom: 0.035
  12737. }
  12738. },
  12739. side: {
  12740. height: math.unit(7 + 7 / 12, "feet"),
  12741. weight: math.unit(267, "lb"),
  12742. name: "Side",
  12743. image: {
  12744. source: "./media/characters/dayza/side.svg",
  12745. extra: 1295 / 1245,
  12746. bottom: 0.05
  12747. }
  12748. },
  12749. back: {
  12750. height: math.unit(7 + 7 / 12, "feet"),
  12751. weight: math.unit(267, "lb"),
  12752. name: "Back",
  12753. image: {
  12754. source: "./media/characters/dayza/back.svg",
  12755. extra: 1241 / 1170
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Normal",
  12762. height: math.unit(7 + 7 / 12, "feet"),
  12763. default: true
  12764. },
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(155, "feet")
  12768. },
  12769. ]
  12770. ))
  12771. characterMakers.push(() => makeCharacter(
  12772. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12773. {
  12774. front: {
  12775. height: math.unit(6 + 5 / 12, "feet"),
  12776. weight: math.unit(160, "lb"),
  12777. name: "Front",
  12778. image: {
  12779. source: "./media/characters/xanthos/front.svg",
  12780. extra: 1,
  12781. bottom: 0.04
  12782. }
  12783. },
  12784. back: {
  12785. height: math.unit(6 + 5 / 12, "feet"),
  12786. weight: math.unit(160, "lb"),
  12787. name: "Back",
  12788. image: {
  12789. source: "./media/characters/xanthos/back.svg",
  12790. extra: 1,
  12791. bottom: 0.03
  12792. }
  12793. },
  12794. hand: {
  12795. height: math.unit(0.928, "feet"),
  12796. name: "Hand",
  12797. image: {
  12798. source: "./media/characters/xanthos/hand.svg"
  12799. }
  12800. },
  12801. foot: {
  12802. height: math.unit(1.286, "feet"),
  12803. name: "Foot",
  12804. image: {
  12805. source: "./media/characters/xanthos/foot.svg"
  12806. }
  12807. },
  12808. },
  12809. [
  12810. {
  12811. name: "Normal",
  12812. height: math.unit(6 + 5 / 12, "feet"),
  12813. default: true
  12814. },
  12815. {
  12816. name: "Normal+",
  12817. height: math.unit(6, "meters")
  12818. },
  12819. {
  12820. name: "Macro",
  12821. height: math.unit(40, "feet")
  12822. },
  12823. {
  12824. name: "Macro+",
  12825. height: math.unit(200, "meters")
  12826. },
  12827. {
  12828. name: "Megamacro",
  12829. height: math.unit(20, "km")
  12830. },
  12831. {
  12832. name: "Megamacro+",
  12833. height: math.unit(100, "km")
  12834. },
  12835. {
  12836. name: "Gigamacro",
  12837. height: math.unit(200, "megameters")
  12838. },
  12839. {
  12840. name: "Gigamacro+",
  12841. height: math.unit(1.5, "gigameters")
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12847. {
  12848. front: {
  12849. height: math.unit(6 + 3 / 12, "feet"),
  12850. weight: math.unit(215, "lb"),
  12851. name: "Front",
  12852. image: {
  12853. source: "./media/characters/grynn/front.svg",
  12854. extra: 4627 / 4209,
  12855. bottom: 0.047
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Micro",
  12862. height: math.unit(6, "inches")
  12863. },
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(6 + 3 / 12, "feet"),
  12867. default: true
  12868. },
  12869. {
  12870. name: "Big",
  12871. height: math.unit(104, "feet")
  12872. },
  12873. {
  12874. name: "Macro",
  12875. height: math.unit(944, "feet")
  12876. },
  12877. {
  12878. name: "Macro+",
  12879. height: math.unit(9480, "feet")
  12880. },
  12881. {
  12882. name: "Megamacro",
  12883. height: math.unit(78752, "feet")
  12884. },
  12885. {
  12886. name: "Megamacro+",
  12887. height: math.unit(630128, "feet")
  12888. },
  12889. {
  12890. name: "Megamacro++",
  12891. height: math.unit(3150695, "feet")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(7 + 5 / 12, "feet"),
  12900. weight: math.unit(450, "lb"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/mocha-aura/front.svg",
  12904. extra: 1907 / 1817,
  12905. bottom: 0.04
  12906. }
  12907. },
  12908. back: {
  12909. height: math.unit(7 + 5 / 12, "feet"),
  12910. weight: math.unit(450, "lb"),
  12911. name: "Back",
  12912. image: {
  12913. source: "./media/characters/mocha-aura/back.svg",
  12914. extra: 1900 / 1825,
  12915. bottom: 0.045
  12916. }
  12917. },
  12918. },
  12919. [
  12920. {
  12921. name: "Nano",
  12922. height: math.unit(1, "nm")
  12923. },
  12924. {
  12925. name: "Megamicro",
  12926. height: math.unit(1, "mm")
  12927. },
  12928. {
  12929. name: "Micro",
  12930. height: math.unit(3, "inches")
  12931. },
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(7 + 5 / 12, "feet"),
  12935. default: true
  12936. },
  12937. {
  12938. name: "Macro",
  12939. height: math.unit(30, "feet")
  12940. },
  12941. {
  12942. name: "Megamacro",
  12943. height: math.unit(3500, "feet")
  12944. },
  12945. {
  12946. name: "Teramacro",
  12947. height: math.unit(500000, "miles")
  12948. },
  12949. {
  12950. name: "Petamacro",
  12951. height: math.unit(50000000000000000, "parsecs")
  12952. },
  12953. ]
  12954. ))
  12955. characterMakers.push(() => makeCharacter(
  12956. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12957. {
  12958. front: {
  12959. height: math.unit(6, "feet"),
  12960. weight: math.unit(150, "lb"),
  12961. name: "Front",
  12962. image: {
  12963. source: "./media/characters/ilisha-devya/front.svg",
  12964. extra: 1,
  12965. bottom: 0.175
  12966. }
  12967. },
  12968. back: {
  12969. height: math.unit(6, "feet"),
  12970. weight: math.unit(150, "lb"),
  12971. name: "Back",
  12972. image: {
  12973. source: "./media/characters/ilisha-devya/back.svg",
  12974. extra: 1,
  12975. bottom: 0.015
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Macro",
  12982. height: math.unit(500, "feet"),
  12983. default: true
  12984. },
  12985. {
  12986. name: "Megamacro",
  12987. height: math.unit(10, "miles")
  12988. },
  12989. {
  12990. name: "Gigamacro",
  12991. height: math.unit(100000, "miles")
  12992. },
  12993. {
  12994. name: "Examacro",
  12995. height: math.unit(1e9, "lightyears")
  12996. },
  12997. {
  12998. name: "Omniversal",
  12999. height: math.unit(1e33, "lightyears")
  13000. },
  13001. {
  13002. name: "Beyond Infinite",
  13003. height: math.unit(1e100, "lightyears")
  13004. },
  13005. ]
  13006. ))
  13007. characterMakers.push(() => makeCharacter(
  13008. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13009. {
  13010. Side: {
  13011. height: math.unit(6, "feet"),
  13012. weight: math.unit(150, "lb"),
  13013. name: "Side",
  13014. image: {
  13015. source: "./media/characters/mira/side.svg",
  13016. extra: 900 / 799,
  13017. bottom: 0.02
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "Human Size",
  13024. height: math.unit(6, "feet")
  13025. },
  13026. {
  13027. name: "Macro",
  13028. height: math.unit(100, "feet"),
  13029. default: true
  13030. },
  13031. {
  13032. name: "Megamacro",
  13033. height: math.unit(10, "miles")
  13034. },
  13035. {
  13036. name: "Gigamacro",
  13037. height: math.unit(25000, "miles")
  13038. },
  13039. {
  13040. name: "Teramacro",
  13041. height: math.unit(300, "AU")
  13042. },
  13043. {
  13044. name: "Full Size",
  13045. height: math.unit(4.5e10, "lightyears")
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(6, "feet"),
  13054. weight: math.unit(150, "lb"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/holly/front.svg",
  13058. extra: 639 / 606
  13059. }
  13060. },
  13061. back: {
  13062. height: math.unit(6, "feet"),
  13063. weight: math.unit(150, "lb"),
  13064. name: "Back",
  13065. image: {
  13066. source: "./media/characters/holly/back.svg",
  13067. extra: 623 / 598
  13068. }
  13069. },
  13070. frontWorking: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(150, "lb"),
  13073. name: "Front (Working)",
  13074. image: {
  13075. source: "./media/characters/holly/front-working.svg",
  13076. extra: 607 / 577,
  13077. bottom: 0.048
  13078. }
  13079. },
  13080. },
  13081. [
  13082. {
  13083. name: "Normal",
  13084. height: math.unit(12 + 3 / 12, "feet"),
  13085. default: true
  13086. },
  13087. ]
  13088. ))
  13089. characterMakers.push(() => makeCharacter(
  13090. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13091. {
  13092. front: {
  13093. height: math.unit(6, "feet"),
  13094. weight: math.unit(150, "lb"),
  13095. name: "Front",
  13096. image: {
  13097. source: "./media/characters/porter/front.svg",
  13098. extra: 1,
  13099. bottom: 0.01
  13100. }
  13101. },
  13102. frontRobes: {
  13103. height: math.unit(6, "feet"),
  13104. weight: math.unit(150, "lb"),
  13105. name: "Front (Robes)",
  13106. image: {
  13107. source: "./media/characters/porter/front-robes.svg",
  13108. extra: 1.01,
  13109. bottom: 0.01
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Normal",
  13116. height: math.unit(11 + 9 / 12, "feet"),
  13117. default: true
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13123. {
  13124. legendary: {
  13125. height: math.unit(6, "feet"),
  13126. weight: math.unit(150, "lb"),
  13127. name: "Legendary",
  13128. image: {
  13129. source: "./media/characters/lucy/legendary.svg",
  13130. extra: 1355 / 1100,
  13131. bottom: 0.045
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Legendary",
  13138. height: math.unit(86882 * 2, "miles"),
  13139. default: true
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/drusilla/front.svg",
  13152. extra: 678 / 635,
  13153. bottom: 0.03
  13154. }
  13155. },
  13156. back: {
  13157. height: math.unit(6, "feet"),
  13158. weight: math.unit(150, "lb"),
  13159. name: "Back",
  13160. image: {
  13161. source: "./media/characters/drusilla/back.svg",
  13162. extra: 678 / 635,
  13163. bottom: 0.005
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Macro",
  13170. height: math.unit(100, "feet")
  13171. },
  13172. {
  13173. name: "Canon Height",
  13174. height: math.unit(2000, "feet"),
  13175. default: true
  13176. },
  13177. ]
  13178. ))
  13179. characterMakers.push(() => makeCharacter(
  13180. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13181. {
  13182. front: {
  13183. height: math.unit(6, "feet"),
  13184. weight: math.unit(180, "lb"),
  13185. name: "Front",
  13186. image: {
  13187. source: "./media/characters/renard-thatch/front.svg",
  13188. extra: 2411 / 2275,
  13189. bottom: 0.01
  13190. }
  13191. },
  13192. frontPosing: {
  13193. height: math.unit(6, "feet"),
  13194. weight: math.unit(180, "lb"),
  13195. name: "Front (Posing)",
  13196. image: {
  13197. source: "./media/characters/renard-thatch/front-posing.svg",
  13198. extra: 2381 / 2261,
  13199. bottom: 0.01
  13200. }
  13201. },
  13202. back: {
  13203. height: math.unit(6, "feet"),
  13204. weight: math.unit(180, "lb"),
  13205. name: "Back",
  13206. image: {
  13207. source: "./media/characters/renard-thatch/back.svg",
  13208. extra: 2428 / 2288
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Micro",
  13215. height: math.unit(3, "inches")
  13216. },
  13217. {
  13218. name: "Default",
  13219. height: math.unit(6, "feet"),
  13220. default: true
  13221. },
  13222. {
  13223. name: "Macro",
  13224. height: math.unit(75, "feet")
  13225. },
  13226. ]
  13227. ))
  13228. characterMakers.push(() => makeCharacter(
  13229. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13230. {
  13231. front: {
  13232. height: math.unit(1450, "feet"),
  13233. weight: math.unit(1.21e6, "tons"),
  13234. name: "Front",
  13235. image: {
  13236. source: "./media/characters/sekvra/front.svg",
  13237. extra: 1,
  13238. bottom: 0.03
  13239. }
  13240. },
  13241. frontClothed: {
  13242. height: math.unit(1450, "feet"),
  13243. weight: math.unit(1.21e6, "tons"),
  13244. name: "Front (Clothed)",
  13245. image: {
  13246. source: "./media/characters/sekvra/front-clothed.svg",
  13247. extra: 1,
  13248. bottom: 0.03
  13249. }
  13250. },
  13251. side: {
  13252. height: math.unit(1450, "feet"),
  13253. weight: math.unit(1.21e6, "tons"),
  13254. name: "Side",
  13255. image: {
  13256. source: "./media/characters/sekvra/side.svg",
  13257. extra: 1,
  13258. bottom: 0.025
  13259. }
  13260. },
  13261. back: {
  13262. height: math.unit(1450, "feet"),
  13263. weight: math.unit(1.21e6, "tons"),
  13264. name: "Back",
  13265. image: {
  13266. source: "./media/characters/sekvra/back.svg",
  13267. extra: 1,
  13268. bottom: 0.005
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Macro",
  13275. height: math.unit(1450, "feet"),
  13276. default: true
  13277. },
  13278. {
  13279. name: "Megamacro",
  13280. height: math.unit(15000, "feet")
  13281. },
  13282. ]
  13283. ))
  13284. characterMakers.push(() => makeCharacter(
  13285. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13286. {
  13287. front: {
  13288. height: math.unit(6, "feet"),
  13289. weight: math.unit(150, "lb"),
  13290. name: "Front",
  13291. image: {
  13292. source: "./media/characters/carmine/front.svg",
  13293. extra: 1,
  13294. bottom: 0.035
  13295. }
  13296. },
  13297. frontArmor: {
  13298. height: math.unit(6, "feet"),
  13299. weight: math.unit(150, "lb"),
  13300. name: "Front (Armor)",
  13301. image: {
  13302. source: "./media/characters/carmine/front-armor.svg",
  13303. extra: 1,
  13304. bottom: 0.035
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Large",
  13311. height: math.unit(1, "mile")
  13312. },
  13313. {
  13314. name: "Huge",
  13315. height: math.unit(40, "miles"),
  13316. default: true
  13317. },
  13318. {
  13319. name: "Colossal",
  13320. height: math.unit(2500, "miles")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(150, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/elyssia/front.svg",
  13333. extra: 2201 / 2035,
  13334. bottom: 0.05
  13335. }
  13336. },
  13337. frontClothed: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(150, "lb"),
  13340. name: "Front (Clothed)",
  13341. image: {
  13342. source: "./media/characters/elyssia/front-clothed.svg",
  13343. extra: 2201 / 2035,
  13344. bottom: 0.05
  13345. }
  13346. },
  13347. back: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(150, "lb"),
  13350. name: "Back",
  13351. image: {
  13352. source: "./media/characters/elyssia/back.svg",
  13353. extra: 2201 / 2035,
  13354. bottom: 0.013
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Smaller",
  13361. height: math.unit(150, "feet")
  13362. },
  13363. {
  13364. name: "Standard",
  13365. height: math.unit(1400, "feet"),
  13366. default: true
  13367. },
  13368. {
  13369. name: "Distracted",
  13370. height: math.unit(15000, "feet")
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(7 + 4 / 12, "feet"),
  13379. weight: math.unit(500, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/geno-maxwell/front.svg",
  13383. extra: 2207 / 2040,
  13384. bottom: 0.015
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Micro",
  13391. height: math.unit(3, "inches")
  13392. },
  13393. {
  13394. name: "Normal",
  13395. height: math.unit(7 + 4 / 12, "feet"),
  13396. default: true
  13397. },
  13398. {
  13399. name: "Macro",
  13400. height: math.unit(220, "feet")
  13401. },
  13402. {
  13403. name: "Megamacro",
  13404. height: math.unit(11, "miles")
  13405. },
  13406. ]
  13407. ))
  13408. characterMakers.push(() => makeCharacter(
  13409. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13410. {
  13411. front: {
  13412. height: math.unit(7 + 4 / 12, "feet"),
  13413. weight: math.unit(500, "lb"),
  13414. name: "Front",
  13415. image: {
  13416. source: "./media/characters/regena-maxwell/front.svg",
  13417. extra: 3115 / 2770,
  13418. bottom: 0.02
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Normal",
  13425. height: math.unit(7 + 4 / 12, "feet"),
  13426. default: true
  13427. },
  13428. {
  13429. name: "Macro",
  13430. height: math.unit(220, "feet")
  13431. },
  13432. {
  13433. name: "Megamacro",
  13434. height: math.unit(11, "miles")
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13440. {
  13441. front: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(150, "lb"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13447. extra: 860 / 690,
  13448. bottom: 0.03
  13449. }
  13450. },
  13451. },
  13452. [
  13453. {
  13454. name: "Normal",
  13455. height: math.unit(1.7, "meters"),
  13456. default: true
  13457. },
  13458. ]
  13459. ))
  13460. characterMakers.push(() => makeCharacter(
  13461. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13462. {
  13463. front: {
  13464. height: math.unit(6, "feet"),
  13465. weight: math.unit(150, "lb"),
  13466. name: "Front",
  13467. image: {
  13468. source: "./media/characters/quilly/front.svg",
  13469. extra: 890 / 776
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Gigamacro",
  13476. height: math.unit(404090, "miles"),
  13477. default: true
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13483. {
  13484. front: {
  13485. height: math.unit(7 + 8 / 12, "feet"),
  13486. weight: math.unit(350, "lb"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/tempest/front.svg",
  13490. extra: 1175 / 1086,
  13491. bottom: 0.02
  13492. }
  13493. },
  13494. },
  13495. [
  13496. {
  13497. name: "Normal",
  13498. height: math.unit(7 + 8 / 12, "feet"),
  13499. default: true
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13505. {
  13506. side: {
  13507. height: math.unit(4 + 5 / 12, "feet"),
  13508. weight: math.unit(80, "lb"),
  13509. name: "Side",
  13510. image: {
  13511. source: "./media/characters/rodger/side.svg",
  13512. extra: 1235 / 1118
  13513. }
  13514. },
  13515. },
  13516. [
  13517. {
  13518. name: "Micro",
  13519. height: math.unit(1, "inch")
  13520. },
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(4 + 5 / 12, "feet"),
  13524. default: true
  13525. },
  13526. {
  13527. name: "Macro",
  13528. height: math.unit(120, "feet")
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13534. {
  13535. front: {
  13536. height: math.unit(6, "feet"),
  13537. weight: math.unit(150, "lb"),
  13538. name: "Front",
  13539. image: {
  13540. source: "./media/characters/danyel/front.svg",
  13541. extra: 1185 / 1123,
  13542. bottom: 0.05
  13543. }
  13544. },
  13545. },
  13546. [
  13547. {
  13548. name: "Shrunken",
  13549. height: math.unit(0.5, "mm")
  13550. },
  13551. {
  13552. name: "Micro",
  13553. height: math.unit(1, "mm"),
  13554. default: true
  13555. },
  13556. {
  13557. name: "Upsized",
  13558. height: math.unit(5 + 5 / 12, "feet")
  13559. },
  13560. ]
  13561. ))
  13562. characterMakers.push(() => makeCharacter(
  13563. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13564. {
  13565. front: {
  13566. height: math.unit(5 + 6 / 12, "feet"),
  13567. weight: math.unit(200, "lb"),
  13568. name: "Front",
  13569. image: {
  13570. source: "./media/characters/vivian-bijoux/front.svg",
  13571. extra: 1,
  13572. bottom: 0.072
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Normal",
  13579. height: math.unit(5 + 6 / 12, "feet"),
  13580. default: true
  13581. },
  13582. {
  13583. name: "Bad Dream",
  13584. height: math.unit(500, "feet")
  13585. },
  13586. {
  13587. name: "Nightmare",
  13588. height: math.unit(500, "miles")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(6 + 1 / 12, "feet"),
  13597. weight: math.unit(260, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/zeta/front.svg",
  13601. extra: 1968 / 1889,
  13602. bottom: 0.06
  13603. }
  13604. },
  13605. back: {
  13606. height: math.unit(6 + 1 / 12, "feet"),
  13607. weight: math.unit(260, "lb"),
  13608. name: "Back",
  13609. image: {
  13610. source: "./media/characters/zeta/back.svg",
  13611. extra: 1944 / 1858,
  13612. bottom: 0.03
  13613. }
  13614. },
  13615. hand: {
  13616. height: math.unit(1.112, "feet"),
  13617. name: "Hand",
  13618. image: {
  13619. source: "./media/characters/zeta/hand.svg"
  13620. }
  13621. },
  13622. foot: {
  13623. height: math.unit(1.48, "feet"),
  13624. name: "Foot",
  13625. image: {
  13626. source: "./media/characters/zeta/foot.svg"
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Micro",
  13633. height: math.unit(6, "inches")
  13634. },
  13635. {
  13636. name: "Normal",
  13637. height: math.unit(6 + 1 / 12, "feet"),
  13638. default: true
  13639. },
  13640. {
  13641. name: "Macro",
  13642. height: math.unit(20, "feet")
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13648. {
  13649. front: {
  13650. height: math.unit(6, "feet"),
  13651. weight: math.unit(150, "lb"),
  13652. name: "Front",
  13653. image: {
  13654. source: "./media/characters/jamie-larsen/front.svg",
  13655. extra: 962 / 933,
  13656. bottom: 0.02
  13657. }
  13658. },
  13659. back: {
  13660. height: math.unit(6, "feet"),
  13661. weight: math.unit(150, "lb"),
  13662. name: "Back",
  13663. image: {
  13664. source: "./media/characters/jamie-larsen/back.svg",
  13665. extra: 997 / 946
  13666. }
  13667. },
  13668. },
  13669. [
  13670. {
  13671. name: "Macro",
  13672. height: math.unit(28 + 7 / 12, "feet"),
  13673. default: true
  13674. },
  13675. {
  13676. name: "Macro+",
  13677. height: math.unit(180, "feet")
  13678. },
  13679. {
  13680. name: "Megamacro",
  13681. height: math.unit(10, "miles")
  13682. },
  13683. {
  13684. name: "Gigamacro",
  13685. height: math.unit(200000, "miles")
  13686. },
  13687. ]
  13688. ))
  13689. characterMakers.push(() => makeCharacter(
  13690. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13691. {
  13692. front: {
  13693. height: math.unit(6, "feet"),
  13694. weight: math.unit(120, "lb"),
  13695. name: "Front",
  13696. image: {
  13697. source: "./media/characters/vance/front.svg",
  13698. extra: 1980 / 1890,
  13699. bottom: 0.09
  13700. }
  13701. },
  13702. back: {
  13703. height: math.unit(6, "feet"),
  13704. weight: math.unit(120, "lb"),
  13705. name: "Back",
  13706. image: {
  13707. source: "./media/characters/vance/back.svg",
  13708. extra: 2081 / 1994,
  13709. bottom: 0.014
  13710. }
  13711. },
  13712. hand: {
  13713. height: math.unit(0.88, "feet"),
  13714. name: "Hand",
  13715. image: {
  13716. source: "./media/characters/vance/hand.svg"
  13717. }
  13718. },
  13719. foot: {
  13720. height: math.unit(0.64, "feet"),
  13721. name: "Foot",
  13722. image: {
  13723. source: "./media/characters/vance/foot.svg"
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Small",
  13730. height: math.unit(90, "feet"),
  13731. default: true
  13732. },
  13733. {
  13734. name: "Macro",
  13735. height: math.unit(100, "meters")
  13736. },
  13737. {
  13738. name: "Megamacro",
  13739. height: math.unit(15, "miles")
  13740. },
  13741. ]
  13742. ))
  13743. characterMakers.push(() => makeCharacter(
  13744. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13745. {
  13746. front: {
  13747. height: math.unit(6, "feet"),
  13748. weight: math.unit(180, "lb"),
  13749. name: "Front",
  13750. image: {
  13751. source: "./media/characters/xochitl/front.svg",
  13752. extra: 2297 / 2261,
  13753. bottom: 0.065
  13754. }
  13755. },
  13756. back: {
  13757. height: math.unit(6, "feet"),
  13758. weight: math.unit(180, "lb"),
  13759. name: "Back",
  13760. image: {
  13761. source: "./media/characters/xochitl/back.svg",
  13762. extra: 2386 / 2354,
  13763. bottom: 0.01
  13764. }
  13765. },
  13766. foot: {
  13767. height: math.unit(6 / 5 * 1.15, "feet"),
  13768. weight: math.unit(150, "lb"),
  13769. name: "Foot",
  13770. image: {
  13771. source: "./media/characters/xochitl/foot.svg"
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Macro",
  13778. height: math.unit(80, "feet")
  13779. },
  13780. {
  13781. name: "Macro+",
  13782. height: math.unit(400, "feet"),
  13783. default: true
  13784. },
  13785. {
  13786. name: "Gigamacro",
  13787. height: math.unit(80000, "miles")
  13788. },
  13789. {
  13790. name: "Gigamacro+",
  13791. height: math.unit(400000, "miles")
  13792. },
  13793. {
  13794. name: "Teramacro",
  13795. height: math.unit(300, "AU")
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(6, "feet"),
  13804. weight: math.unit(150, "lb"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/vincent/front.svg",
  13808. extra: 1130 / 1080,
  13809. bottom: 0.055
  13810. }
  13811. },
  13812. beak: {
  13813. height: math.unit(6 * 0.1, "feet"),
  13814. name: "Beak",
  13815. image: {
  13816. source: "./media/characters/vincent/beak.svg"
  13817. }
  13818. },
  13819. hand: {
  13820. height: math.unit(6 * 0.85, "feet"),
  13821. weight: math.unit(150, "lb"),
  13822. name: "Hand",
  13823. image: {
  13824. source: "./media/characters/vincent/hand.svg"
  13825. }
  13826. },
  13827. foot: {
  13828. height: math.unit(6 * 0.19, "feet"),
  13829. weight: math.unit(150, "lb"),
  13830. name: "Foot",
  13831. image: {
  13832. source: "./media/characters/vincent/foot.svg"
  13833. }
  13834. },
  13835. },
  13836. [
  13837. {
  13838. name: "Base",
  13839. height: math.unit(6 + 5 / 12, "feet"),
  13840. default: true
  13841. },
  13842. {
  13843. name: "Macro",
  13844. height: math.unit(300, "feet")
  13845. },
  13846. {
  13847. name: "Megamacro",
  13848. height: math.unit(2, "miles")
  13849. },
  13850. {
  13851. name: "Gigamacro",
  13852. height: math.unit(1000, "miles")
  13853. },
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13858. {
  13859. front: {
  13860. height: math.unit(2, "meters"),
  13861. weight: math.unit(500, "kg"),
  13862. name: "Front",
  13863. image: {
  13864. source: "./media/characters/coatl/front.svg",
  13865. extra: 3948 / 3500,
  13866. bottom: 0.082
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Normal",
  13873. height: math.unit(4, "meters")
  13874. },
  13875. {
  13876. name: "Macro",
  13877. height: math.unit(100, "meters"),
  13878. default: true
  13879. },
  13880. {
  13881. name: "Macro+",
  13882. height: math.unit(300, "meters")
  13883. },
  13884. {
  13885. name: "Megamacro",
  13886. height: math.unit(3, "gigameters")
  13887. },
  13888. {
  13889. name: "Megamacro+",
  13890. height: math.unit(300, "terameters")
  13891. },
  13892. {
  13893. name: "Megamacro++",
  13894. height: math.unit(3, "lightyears")
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13900. {
  13901. front: {
  13902. height: math.unit(6, "feet"),
  13903. weight: math.unit(50, "kg"),
  13904. name: "front",
  13905. image: {
  13906. source: "./media/characters/shiroryu/front.svg",
  13907. extra: 1990 / 1935
  13908. }
  13909. },
  13910. },
  13911. [
  13912. {
  13913. name: "Mortal Mingling",
  13914. height: math.unit(3, "meters")
  13915. },
  13916. {
  13917. name: "Kaiju-ish",
  13918. height: math.unit(250, "meters")
  13919. },
  13920. {
  13921. name: "Somewhat Godly",
  13922. height: math.unit(400, "km"),
  13923. default: true
  13924. },
  13925. {
  13926. name: "Planetary",
  13927. height: math.unit(300, "megameters")
  13928. },
  13929. {
  13930. name: "Galaxy-dwarfing",
  13931. height: math.unit(450, "kiloparsecs")
  13932. },
  13933. {
  13934. name: "Universe Eater",
  13935. height: math.unit(150, "gigaparsecs")
  13936. },
  13937. {
  13938. name: "Almost Immeasurable",
  13939. height: math.unit(1.3e266, "yottaparsecs")
  13940. },
  13941. ]
  13942. ))
  13943. characterMakers.push(() => makeCharacter(
  13944. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13945. {
  13946. front: {
  13947. height: math.unit(6, "feet"),
  13948. weight: math.unit(150, "lb"),
  13949. name: "Front",
  13950. image: {
  13951. source: "./media/characters/umeko/front.svg",
  13952. extra: 1,
  13953. bottom: 0.019
  13954. }
  13955. },
  13956. frontArmored: {
  13957. height: math.unit(6, "feet"),
  13958. weight: math.unit(150, "lb"),
  13959. name: "Front (Armored)",
  13960. image: {
  13961. source: "./media/characters/umeko/front-armored.svg",
  13962. extra: 1,
  13963. bottom: 0.021
  13964. }
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Macro",
  13970. height: math.unit(220, "feet"),
  13971. default: true
  13972. },
  13973. {
  13974. name: "Guardian Dragon",
  13975. height: math.unit(50, "miles")
  13976. },
  13977. {
  13978. name: "Cosmic",
  13979. height: math.unit(800000, "miles")
  13980. },
  13981. ]
  13982. ))
  13983. characterMakers.push(() => makeCharacter(
  13984. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13985. {
  13986. front: {
  13987. height: math.unit(6, "feet"),
  13988. weight: math.unit(150, "lb"),
  13989. name: "Front",
  13990. image: {
  13991. source: "./media/characters/cassidy/front.svg",
  13992. extra: 1,
  13993. bottom: 0.043
  13994. }
  13995. },
  13996. },
  13997. [
  13998. {
  13999. name: "Canon Height",
  14000. height: math.unit(120, "feet"),
  14001. default: true
  14002. },
  14003. {
  14004. name: "Macro+",
  14005. height: math.unit(400, "feet")
  14006. },
  14007. {
  14008. name: "Macro++",
  14009. height: math.unit(4000, "feet")
  14010. },
  14011. {
  14012. name: "Megamacro",
  14013. height: math.unit(3, "miles")
  14014. },
  14015. ]
  14016. ))
  14017. characterMakers.push(() => makeCharacter(
  14018. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14019. {
  14020. front: {
  14021. height: math.unit(6, "feet"),
  14022. weight: math.unit(150, "lb"),
  14023. name: "Front",
  14024. image: {
  14025. source: "./media/characters/isaac/front.svg",
  14026. extra: 896 / 815,
  14027. bottom: 0.11
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Human Size",
  14034. height: math.unit(8, "feet"),
  14035. default: true
  14036. },
  14037. {
  14038. name: "Macro",
  14039. height: math.unit(400, "feet")
  14040. },
  14041. {
  14042. name: "Megamacro",
  14043. height: math.unit(50, "miles")
  14044. },
  14045. {
  14046. name: "Canon Height",
  14047. height: math.unit(200, "AU")
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(6, "feet"),
  14056. weight: math.unit(72, "kg"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/sleekit/front.svg",
  14060. extra: 4693 / 4487,
  14061. bottom: 0.012
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Minimum Height",
  14068. height: math.unit(10, "meters")
  14069. },
  14070. {
  14071. name: "Smaller",
  14072. height: math.unit(25, "meters")
  14073. },
  14074. {
  14075. name: "Larger",
  14076. height: math.unit(38, "meters"),
  14077. default: true
  14078. },
  14079. {
  14080. name: "Maximum height",
  14081. height: math.unit(100, "meters")
  14082. },
  14083. ]
  14084. ))
  14085. characterMakers.push(() => makeCharacter(
  14086. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14087. {
  14088. front: {
  14089. height: math.unit(6, "feet"),
  14090. weight: math.unit(150, "lb"),
  14091. name: "Front",
  14092. image: {
  14093. source: "./media/characters/nillia/front.svg",
  14094. extra: 2195 / 2037,
  14095. bottom: 0.005
  14096. }
  14097. },
  14098. back: {
  14099. height: math.unit(6, "feet"),
  14100. weight: math.unit(150, "lb"),
  14101. name: "Back",
  14102. image: {
  14103. source: "./media/characters/nillia/back.svg",
  14104. extra: 2195 / 2037,
  14105. bottom: 0.005
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Canon Height",
  14112. height: math.unit(489, "feet"),
  14113. default: true
  14114. }
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14119. {
  14120. front: {
  14121. height: math.unit(6, "feet"),
  14122. weight: math.unit(150, "lb"),
  14123. name: "Front",
  14124. image: {
  14125. source: "./media/characters/mesmyriza/front.svg",
  14126. extra: 2067 / 1784,
  14127. bottom: 0.035
  14128. }
  14129. },
  14130. foot: {
  14131. height: math.unit(6 / (250 / 35), "feet"),
  14132. name: "Foot",
  14133. image: {
  14134. source: "./media/characters/mesmyriza/foot.svg"
  14135. }
  14136. },
  14137. },
  14138. [
  14139. {
  14140. name: "Macro",
  14141. height: math.unit(457, "meters"),
  14142. default: true
  14143. },
  14144. {
  14145. name: "Megamacro",
  14146. height: math.unit(8, "megameters")
  14147. },
  14148. ]
  14149. ))
  14150. characterMakers.push(() => makeCharacter(
  14151. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14152. {
  14153. front: {
  14154. height: math.unit(6, "feet"),
  14155. weight: math.unit(250, "lb"),
  14156. name: "Front",
  14157. image: {
  14158. source: "./media/characters/saudade/front.svg",
  14159. extra: 1172 / 1139,
  14160. bottom: 0.035
  14161. }
  14162. },
  14163. },
  14164. [
  14165. {
  14166. name: "Micro",
  14167. height: math.unit(3, "inches")
  14168. },
  14169. {
  14170. name: "Normal",
  14171. height: math.unit(6, "feet"),
  14172. default: true
  14173. },
  14174. {
  14175. name: "Macro",
  14176. height: math.unit(50, "feet")
  14177. },
  14178. {
  14179. name: "Megamacro",
  14180. height: math.unit(2800, "feet")
  14181. },
  14182. ]
  14183. ))
  14184. characterMakers.push(() => makeCharacter(
  14185. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14186. {
  14187. front: {
  14188. height: math.unit(5 + 4 / 12, "feet"),
  14189. weight: math.unit(100, "lb"),
  14190. name: "Front",
  14191. image: {
  14192. source: "./media/characters/keireer/front.svg",
  14193. extra: 716 / 666,
  14194. bottom: 0.05
  14195. }
  14196. },
  14197. },
  14198. [
  14199. {
  14200. name: "Normal",
  14201. height: math.unit(5 + 4 / 12, "feet"),
  14202. default: true
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14208. {
  14209. front: {
  14210. height: math.unit(6, "feet"),
  14211. weight: math.unit(90, "kg"),
  14212. name: "Front",
  14213. image: {
  14214. source: "./media/characters/mirja/front.svg",
  14215. extra: 1789 / 1683,
  14216. bottom: 0.05
  14217. }
  14218. },
  14219. frontDressed: {
  14220. height: math.unit(6, "feet"),
  14221. weight: math.unit(90, "lb"),
  14222. name: "Front (Dressed)",
  14223. image: {
  14224. source: "./media/characters/mirja/front-dressed.svg",
  14225. extra: 1789 / 1683,
  14226. bottom: 0.05
  14227. }
  14228. },
  14229. back: {
  14230. height: math.unit(6, "feet"),
  14231. weight: math.unit(90, "lb"),
  14232. name: "Back",
  14233. image: {
  14234. source: "./media/characters/mirja/back.svg",
  14235. extra: 953 / 917,
  14236. bottom: 0.017
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "\"Incognito\"",
  14243. height: math.unit(3, "meters")
  14244. },
  14245. {
  14246. name: "Strolling Size",
  14247. height: math.unit(15, "km")
  14248. },
  14249. {
  14250. name: "Larger Strolling Size",
  14251. height: math.unit(400, "km")
  14252. },
  14253. {
  14254. name: "Preferred Size",
  14255. height: math.unit(5000, "km")
  14256. },
  14257. {
  14258. name: "True Size",
  14259. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14260. default: true
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(15, "feet"),
  14269. weight: math.unit(880, "kg"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/nightraver/front.svg",
  14273. extra: 2444 / 2160,
  14274. bottom: 0.027
  14275. }
  14276. },
  14277. back: {
  14278. height: math.unit(15, "feet"),
  14279. weight: math.unit(880, "kg"),
  14280. name: "Back",
  14281. image: {
  14282. source: "./media/characters/nightraver/back.svg",
  14283. extra: 2309 / 2180,
  14284. bottom: 0.005
  14285. }
  14286. },
  14287. sole: {
  14288. height: math.unit(2.878, "feet"),
  14289. name: "Sole",
  14290. image: {
  14291. source: "./media/characters/nightraver/sole.svg"
  14292. }
  14293. },
  14294. foot: {
  14295. height: math.unit(2.285, "feet"),
  14296. name: "Foot",
  14297. image: {
  14298. source: "./media/characters/nightraver/foot.svg"
  14299. }
  14300. },
  14301. maw: {
  14302. height: math.unit(2.67, "feet"),
  14303. name: "Maw",
  14304. image: {
  14305. source: "./media/characters/nightraver/maw.svg"
  14306. }
  14307. },
  14308. },
  14309. [
  14310. {
  14311. name: "Micro",
  14312. height: math.unit(1, "cm")
  14313. },
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(15, "feet"),
  14317. default: true
  14318. },
  14319. {
  14320. name: "Macro",
  14321. height: math.unit(300, "feet")
  14322. },
  14323. {
  14324. name: "Megamacro",
  14325. height: math.unit(300, "miles")
  14326. },
  14327. {
  14328. name: "Gigamacro",
  14329. height: math.unit(10000, "miles")
  14330. },
  14331. ]
  14332. ))
  14333. characterMakers.push(() => makeCharacter(
  14334. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14335. {
  14336. side: {
  14337. height: math.unit(2, "inches"),
  14338. weight: math.unit(5, "grams"),
  14339. name: "Side",
  14340. image: {
  14341. source: "./media/characters/arc/side.svg"
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Micro",
  14348. height: math.unit(2, "inches"),
  14349. default: true
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14355. {
  14356. front: {
  14357. height: math.unit(1.1938, "meters"),
  14358. weight: math.unit(54, "kg"),
  14359. name: "Front",
  14360. image: {
  14361. source: "./media/characters/nebula-shahar/front.svg",
  14362. extra: 1642 / 1436,
  14363. bottom: 0.06
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Megamicro",
  14370. height: math.unit(0.3, "mm")
  14371. },
  14372. {
  14373. name: "Micro",
  14374. height: math.unit(3, "cm")
  14375. },
  14376. {
  14377. name: "Normal",
  14378. height: math.unit(138, "cm"),
  14379. default: true
  14380. },
  14381. {
  14382. name: "Macro",
  14383. height: math.unit(30, "m")
  14384. },
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14389. {
  14390. front: {
  14391. height: math.unit(5.24, "feet"),
  14392. weight: math.unit(150, "lb"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/shayla/front.svg",
  14396. extra: 1512 / 1414,
  14397. bottom: 0.01
  14398. }
  14399. },
  14400. back: {
  14401. height: math.unit(5.24, "feet"),
  14402. weight: math.unit(150, "lb"),
  14403. name: "Back",
  14404. image: {
  14405. source: "./media/characters/shayla/back.svg",
  14406. extra: 1512 / 1414
  14407. }
  14408. },
  14409. hand: {
  14410. height: math.unit(0.7781496062992126, "feet"),
  14411. name: "Hand",
  14412. image: {
  14413. source: "./media/characters/shayla/hand.svg"
  14414. }
  14415. },
  14416. foot: {
  14417. height: math.unit(1.4206036745406823, "feet"),
  14418. name: "Foot",
  14419. image: {
  14420. source: "./media/characters/shayla/foot.svg"
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Micro",
  14427. height: math.unit(0.32, "feet")
  14428. },
  14429. {
  14430. name: "Normal",
  14431. height: math.unit(5.24, "feet"),
  14432. default: true
  14433. },
  14434. {
  14435. name: "Macro",
  14436. height: math.unit(492.12, "feet")
  14437. },
  14438. {
  14439. name: "Megamacro",
  14440. height: math.unit(186.41, "miles")
  14441. },
  14442. ]
  14443. ))
  14444. characterMakers.push(() => makeCharacter(
  14445. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14446. {
  14447. front: {
  14448. height: math.unit(2.2, "m"),
  14449. weight: math.unit(120, "kg"),
  14450. name: "Front",
  14451. image: {
  14452. source: "./media/characters/pia-jr/front.svg",
  14453. extra: 1000 / 970,
  14454. bottom: 0.035
  14455. }
  14456. },
  14457. hand: {
  14458. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14459. name: "Hand",
  14460. image: {
  14461. source: "./media/characters/pia-jr/hand.svg"
  14462. }
  14463. },
  14464. paw: {
  14465. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14466. name: "Paw",
  14467. image: {
  14468. source: "./media/characters/pia-jr/paw.svg"
  14469. }
  14470. },
  14471. },
  14472. [
  14473. {
  14474. name: "Micro",
  14475. height: math.unit(1.2, "cm")
  14476. },
  14477. {
  14478. name: "Normal",
  14479. height: math.unit(2.2, "m"),
  14480. default: true
  14481. },
  14482. {
  14483. name: "Macro",
  14484. height: math.unit(180, "m")
  14485. },
  14486. {
  14487. name: "Megamacro",
  14488. height: math.unit(420, "km")
  14489. },
  14490. ]
  14491. ))
  14492. characterMakers.push(() => makeCharacter(
  14493. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14494. {
  14495. front: {
  14496. height: math.unit(2, "m"),
  14497. weight: math.unit(115, "kg"),
  14498. name: "Front",
  14499. image: {
  14500. source: "./media/characters/pia-sr/front.svg",
  14501. extra: 760 / 730,
  14502. bottom: 0.015
  14503. }
  14504. },
  14505. back: {
  14506. height: math.unit(2, "m"),
  14507. weight: math.unit(115, "kg"),
  14508. name: "Back",
  14509. image: {
  14510. source: "./media/characters/pia-sr/back.svg",
  14511. extra: 760 / 730,
  14512. bottom: 0.01
  14513. }
  14514. },
  14515. hand: {
  14516. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14517. name: "Hand",
  14518. image: {
  14519. source: "./media/characters/pia-sr/hand.svg"
  14520. }
  14521. },
  14522. foot: {
  14523. height: math.unit(1.83, "feet"),
  14524. name: "Foot",
  14525. image: {
  14526. source: "./media/characters/pia-sr/foot.svg"
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Micro",
  14533. height: math.unit(88, "mm")
  14534. },
  14535. {
  14536. name: "Normal",
  14537. height: math.unit(2, "m"),
  14538. default: true
  14539. },
  14540. {
  14541. name: "Macro",
  14542. height: math.unit(200, "m")
  14543. },
  14544. {
  14545. name: "Megamacro",
  14546. height: math.unit(420, "km")
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14552. {
  14553. front: {
  14554. height: math.unit(8 + 2 / 12, "feet"),
  14555. weight: math.unit(300, "lb"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/kibibyte/front.svg",
  14559. extra: 2221 / 2098,
  14560. bottom: 0.04
  14561. }
  14562. },
  14563. },
  14564. [
  14565. {
  14566. name: "Normal",
  14567. height: math.unit(8 + 2 / 12, "feet"),
  14568. default: true
  14569. },
  14570. {
  14571. name: "Socialable Macro",
  14572. height: math.unit(50, "feet")
  14573. },
  14574. {
  14575. name: "Macro",
  14576. height: math.unit(300, "feet")
  14577. },
  14578. {
  14579. name: "Megamacro",
  14580. height: math.unit(500, "miles")
  14581. },
  14582. ]
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14586. {
  14587. front: {
  14588. height: math.unit(6, "feet"),
  14589. weight: math.unit(150, "lb"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/felix/front.svg",
  14593. extra: 762 / 722,
  14594. bottom: 0.02
  14595. }
  14596. },
  14597. frontClothed: {
  14598. height: math.unit(6, "feet"),
  14599. weight: math.unit(150, "lb"),
  14600. name: "Front (Clothed)",
  14601. image: {
  14602. source: "./media/characters/felix/front-clothed.svg",
  14603. extra: 762 / 722,
  14604. bottom: 0.02
  14605. }
  14606. },
  14607. },
  14608. [
  14609. {
  14610. name: "Normal",
  14611. height: math.unit(6 + 8 / 12, "feet"),
  14612. default: true
  14613. },
  14614. {
  14615. name: "Macro",
  14616. height: math.unit(2600, "feet")
  14617. },
  14618. {
  14619. name: "Megamacro",
  14620. height: math.unit(450, "miles")
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14626. {
  14627. front: {
  14628. height: math.unit(6 + 1 / 12, "feet"),
  14629. weight: math.unit(250, "lb"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/tobo/front.svg",
  14633. extra: 608 / 586,
  14634. bottom: 0.023
  14635. }
  14636. },
  14637. back: {
  14638. height: math.unit(6 + 1 / 12, "feet"),
  14639. weight: math.unit(250, "lb"),
  14640. name: "Back",
  14641. image: {
  14642. source: "./media/characters/tobo/back.svg",
  14643. extra: 608 / 586
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Nano",
  14650. height: math.unit(2, "nm")
  14651. },
  14652. {
  14653. name: "Megamicro",
  14654. height: math.unit(0.1, "mm")
  14655. },
  14656. {
  14657. name: "Micro",
  14658. height: math.unit(1, "inch"),
  14659. default: true
  14660. },
  14661. {
  14662. name: "Human-sized",
  14663. height: math.unit(6 + 1 / 12, "feet")
  14664. },
  14665. {
  14666. name: "Macro",
  14667. height: math.unit(250, "feet")
  14668. },
  14669. {
  14670. name: "Megamacro",
  14671. height: math.unit(75, "miles")
  14672. },
  14673. {
  14674. name: "Texas-sized",
  14675. height: math.unit(750, "miles")
  14676. },
  14677. {
  14678. name: "Teramacro",
  14679. height: math.unit(50000, "miles")
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(269, "lb"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/danny-kapowsky/front.svg",
  14692. extra: 766 / 736,
  14693. bottom: 0.044
  14694. }
  14695. },
  14696. back: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(269, "lb"),
  14699. name: "Back",
  14700. image: {
  14701. source: "./media/characters/danny-kapowsky/back.svg",
  14702. extra: 797 / 760,
  14703. bottom: 0.025
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Macro",
  14710. height: math.unit(150, "feet"),
  14711. default: true
  14712. },
  14713. {
  14714. name: "Macro+",
  14715. height: math.unit(200, "feet")
  14716. },
  14717. {
  14718. name: "Macro++",
  14719. height: math.unit(300, "feet")
  14720. },
  14721. {
  14722. name: "Macro+++",
  14723. height: math.unit(400, "feet")
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14729. {
  14730. side: {
  14731. height: math.unit(6, "feet"),
  14732. weight: math.unit(170, "lb"),
  14733. name: "Side",
  14734. image: {
  14735. source: "./media/characters/finn/side.svg",
  14736. extra: 1953 / 1807,
  14737. bottom: 0.057
  14738. }
  14739. },
  14740. },
  14741. [
  14742. {
  14743. name: "Megamacro",
  14744. height: math.unit(14445, "feet"),
  14745. default: true
  14746. },
  14747. ]
  14748. ))
  14749. characterMakers.push(() => makeCharacter(
  14750. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14751. {
  14752. front: {
  14753. height: math.unit(5 + 6 / 12, "feet"),
  14754. weight: math.unit(125, "lb"),
  14755. name: "Front",
  14756. image: {
  14757. source: "./media/characters/roy/front.svg",
  14758. extra: 1,
  14759. bottom: 0.11
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Micro",
  14766. height: math.unit(3, "inches"),
  14767. default: true
  14768. },
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(5 + 6 / 12, "feet")
  14772. },
  14773. {
  14774. name: "Lesser Macro",
  14775. height: math.unit(60, "feet")
  14776. },
  14777. {
  14778. name: "Greater Macro",
  14779. height: math.unit(120, "feet")
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14785. {
  14786. front: {
  14787. height: math.unit(6, "feet"),
  14788. weight: math.unit(100, "lb"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/aevsivs/front.svg",
  14792. extra: 1,
  14793. bottom: 0.03
  14794. }
  14795. },
  14796. back: {
  14797. height: math.unit(6, "feet"),
  14798. weight: math.unit(100, "lb"),
  14799. name: "Back",
  14800. image: {
  14801. source: "./media/characters/aevsivs/back.svg"
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Micro",
  14808. height: math.unit(2, "inches"),
  14809. default: true
  14810. },
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(5, "feet")
  14814. },
  14815. ]
  14816. ))
  14817. characterMakers.push(() => makeCharacter(
  14818. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14819. {
  14820. front: {
  14821. height: math.unit(5 + 7 / 12, "feet"),
  14822. weight: math.unit(159, "lb"),
  14823. name: "Front",
  14824. image: {
  14825. source: "./media/characters/hildegard/front.svg",
  14826. extra: 289 / 269,
  14827. bottom: 7.63 / 297.8
  14828. }
  14829. },
  14830. back: {
  14831. height: math.unit(5 + 7 / 12, "feet"),
  14832. weight: math.unit(159, "lb"),
  14833. name: "Back",
  14834. image: {
  14835. source: "./media/characters/hildegard/back.svg",
  14836. extra: 280 / 260,
  14837. bottom: 2.3 / 282
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(5 + 7 / 12, "feet"),
  14845. default: true
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14851. {
  14852. bernard: {
  14853. height: math.unit(2 + 7 / 12, "feet"),
  14854. weight: math.unit(66, "lb"),
  14855. name: "Bernard",
  14856. rename: true,
  14857. image: {
  14858. source: "./media/characters/bernard-wilder/bernard.svg",
  14859. extra: 192 / 128,
  14860. bottom: 0.05
  14861. }
  14862. },
  14863. wilder: {
  14864. height: math.unit(5 + 8 / 12, "feet"),
  14865. weight: math.unit(143, "lb"),
  14866. name: "Wilder",
  14867. rename: true,
  14868. image: {
  14869. source: "./media/characters/bernard-wilder/wilder.svg",
  14870. extra: 361 / 312,
  14871. bottom: 0.02
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Normal",
  14878. height: math.unit(2 + 7 / 12, "feet"),
  14879. default: true
  14880. },
  14881. ]
  14882. ))
  14883. characterMakers.push(() => makeCharacter(
  14884. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14885. {
  14886. anthro: {
  14887. height: math.unit(6 + 1 / 12, "feet"),
  14888. weight: math.unit(155, "lb"),
  14889. name: "Anthro",
  14890. image: {
  14891. source: "./media/characters/hearth/anthro.svg",
  14892. extra: 260 / 250,
  14893. bottom: 0.02
  14894. }
  14895. },
  14896. feral: {
  14897. height: math.unit(3.78, "feet"),
  14898. weight: math.unit(35, "kg"),
  14899. name: "Feral",
  14900. image: {
  14901. source: "./media/characters/hearth/feral.svg",
  14902. extra: 153 / 135,
  14903. bottom: 0.03
  14904. }
  14905. },
  14906. },
  14907. [
  14908. {
  14909. name: "Normal",
  14910. height: math.unit(6 + 1 / 12, "feet"),
  14911. default: true
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(6, "feet"),
  14920. weight: math.unit(182, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/ingrid/front.svg",
  14924. extra: 294 / 268,
  14925. bottom: 0.027
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Normal",
  14932. height: math.unit(6, "feet"),
  14933. default: true
  14934. },
  14935. ]
  14936. ))
  14937. characterMakers.push(() => makeCharacter(
  14938. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14939. {
  14940. eevee: {
  14941. height: math.unit(2 + 10 / 12, "feet"),
  14942. weight: math.unit(86, "lb"),
  14943. name: "Malgam",
  14944. image: {
  14945. source: "./media/characters/malgam/eevee.svg",
  14946. extra: 218 / 180,
  14947. bottom: 0.2
  14948. }
  14949. },
  14950. sylveon: {
  14951. height: math.unit(4, "feet"),
  14952. weight: math.unit(101, "lb"),
  14953. name: "Future Malgam",
  14954. rename: true,
  14955. image: {
  14956. source: "./media/characters/malgam/sylveon.svg",
  14957. extra: 371 / 325,
  14958. bottom: 0.015
  14959. }
  14960. },
  14961. gigantamax: {
  14962. height: math.unit(50, "feet"),
  14963. name: "Gigantamax Malgam",
  14964. rename: true,
  14965. image: {
  14966. source: "./media/characters/malgam/gigantamax.svg"
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(2 + 10 / 12, "feet"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14980. {
  14981. front: {
  14982. height: math.unit(5 + 11 / 12, "feet"),
  14983. weight: math.unit(188, "lb"),
  14984. name: "Front",
  14985. image: {
  14986. source: "./media/characters/fleur/front.svg",
  14987. extra: 309 / 283,
  14988. bottom: 0.007
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(5 + 11 / 12, "feet"),
  14996. default: true
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(5 + 4 / 12, "feet"),
  15005. weight: math.unit(122, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/jude/front.svg",
  15009. extra: 288 / 273,
  15010. bottom: 0.03
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(5 + 4 / 12, "feet"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(5 + 11 / 12, "feet"),
  15027. weight: math.unit(190, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/seara/front.svg",
  15031. extra: 1,
  15032. bottom: 0.05
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(5 + 11 / 12, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(16 + 5 / 12, "feet"),
  15049. weight: math.unit(524, "lb"),
  15050. name: "Front",
  15051. image: {
  15052. source: "./media/characters/caspian/front.svg",
  15053. extra: 1,
  15054. bottom: 0.04
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(16 + 5 / 12, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15068. {
  15069. front: {
  15070. height: math.unit(5 + 7 / 12, "feet"),
  15071. weight: math.unit(170, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/mika/front.svg",
  15075. extra: 1,
  15076. bottom: 0.016
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(5 + 7 / 12, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15090. {
  15091. front: {
  15092. height: math.unit(6 + 2 / 12, "feet"),
  15093. weight: math.unit(268, "lb"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/sol/front.svg",
  15097. extra: 247 / 231,
  15098. bottom: 0.05
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(6 + 2 / 12, "feet"),
  15106. default: true
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15112. {
  15113. buizel: {
  15114. height: math.unit(2 + 5 / 12, "feet"),
  15115. weight: math.unit(87, "lb"),
  15116. name: "Buizel",
  15117. image: {
  15118. source: "./media/characters/umiko/buizel.svg",
  15119. extra: 172 / 157,
  15120. bottom: 0.01
  15121. }
  15122. },
  15123. floatzel: {
  15124. height: math.unit(5 + 9 / 12, "feet"),
  15125. weight: math.unit(250, "lb"),
  15126. name: "Floatzel",
  15127. image: {
  15128. source: "./media/characters/umiko/floatzel.svg",
  15129. extra: 262 / 248
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(2 + 5 / 12, "feet"),
  15137. default: true
  15138. },
  15139. ]
  15140. ))
  15141. characterMakers.push(() => makeCharacter(
  15142. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15143. {
  15144. front: {
  15145. height: math.unit(6 + 2 / 12, "feet"),
  15146. weight: math.unit(146, "lb"),
  15147. name: "Front",
  15148. image: {
  15149. source: "./media/characters/iliac/front.svg",
  15150. extra: 389 / 365,
  15151. bottom: 0.035
  15152. }
  15153. },
  15154. },
  15155. [
  15156. {
  15157. name: "Normal",
  15158. height: math.unit(6 + 2 / 12, "feet"),
  15159. default: true
  15160. },
  15161. ]
  15162. ))
  15163. characterMakers.push(() => makeCharacter(
  15164. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15165. {
  15166. front: {
  15167. height: math.unit(6, "feet"),
  15168. weight: math.unit(170, "lb"),
  15169. name: "Front",
  15170. image: {
  15171. source: "./media/characters/topaz/front.svg",
  15172. extra: 317 / 303,
  15173. bottom: 0.055
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Normal",
  15180. height: math.unit(6, "feet"),
  15181. default: true
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(5 + 11 / 12, "feet"),
  15190. weight: math.unit(144, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/gabriel/front.svg",
  15194. extra: 285 / 262,
  15195. bottom: 0.004
  15196. }
  15197. },
  15198. },
  15199. [
  15200. {
  15201. name: "Normal",
  15202. height: math.unit(5 + 11 / 12, "feet"),
  15203. default: true
  15204. },
  15205. ]
  15206. ))
  15207. characterMakers.push(() => makeCharacter(
  15208. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15209. {
  15210. side: {
  15211. height: math.unit(6 + 5 / 12, "feet"),
  15212. weight: math.unit(300, "lb"),
  15213. name: "Side",
  15214. image: {
  15215. source: "./media/characters/tempest-suicune/side.svg",
  15216. extra: 195 / 154,
  15217. bottom: 0.04
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Normal",
  15224. height: math.unit(6 + 5 / 12, "feet"),
  15225. default: true
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(7 + 2 / 12, "feet"),
  15234. weight: math.unit(322, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/vulcan/front.svg",
  15238. extra: 154 / 147,
  15239. bottom: 0.04
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(7 + 2 / 12, "feet"),
  15247. default: true
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(5 + 10 / 12, "feet"),
  15256. weight: math.unit(264, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/gault/front.svg",
  15260. extra: 161 / 140,
  15261. bottom: 0.028
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Normal",
  15268. height: math.unit(5 + 10 / 12, "feet"),
  15269. default: true
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15275. {
  15276. front: {
  15277. height: math.unit(6, "feet"),
  15278. weight: math.unit(150, "lb"),
  15279. name: "Front",
  15280. image: {
  15281. source: "./media/characters/shard/front.svg",
  15282. extra: 273 / 238,
  15283. bottom: 0.02
  15284. }
  15285. },
  15286. },
  15287. [
  15288. {
  15289. name: "Normal",
  15290. height: math.unit(3 + 6 / 12, "feet"),
  15291. default: true
  15292. },
  15293. ]
  15294. ))
  15295. characterMakers.push(() => makeCharacter(
  15296. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15297. {
  15298. front: {
  15299. height: math.unit(5 + 11 / 12, "feet"),
  15300. weight: math.unit(146, "lb"),
  15301. name: "Front",
  15302. image: {
  15303. source: "./media/characters/ashe/front.svg",
  15304. extra: 400 / 373,
  15305. bottom: 0.01
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Normal",
  15312. height: math.unit(5 + 11 / 12, "feet"),
  15313. default: true
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15319. {
  15320. front: {
  15321. height: math.unit(5 + 5 / 12, "feet"),
  15322. weight: math.unit(135, "lb"),
  15323. name: "Front",
  15324. image: {
  15325. source: "./media/characters/beatrix/front.svg",
  15326. extra: 392 / 379,
  15327. bottom: 0.01
  15328. }
  15329. },
  15330. },
  15331. [
  15332. {
  15333. name: "Normal",
  15334. height: math.unit(6, "feet"),
  15335. default: true
  15336. },
  15337. ]
  15338. ))
  15339. characterMakers.push(() => makeCharacter(
  15340. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15341. {
  15342. front: {
  15343. height: math.unit(6, "feet"),
  15344. weight: math.unit(150, "lb"),
  15345. name: "Front",
  15346. image: {
  15347. source: "./media/characters/ignatius/front.svg",
  15348. extra: 245 / 222,
  15349. bottom: 0.01
  15350. }
  15351. },
  15352. },
  15353. [
  15354. {
  15355. name: "Normal",
  15356. height: math.unit(5 + 5 / 12, "feet"),
  15357. default: true
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15363. {
  15364. front: {
  15365. height: math.unit(6 + 2 / 12, "feet"),
  15366. weight: math.unit(138, "lb"),
  15367. name: "Front",
  15368. image: {
  15369. source: "./media/characters/mei-li/front.svg",
  15370. extra: 237 / 229,
  15371. bottom: 0.03
  15372. }
  15373. },
  15374. },
  15375. [
  15376. {
  15377. name: "Normal",
  15378. height: math.unit(6 + 2 / 12, "feet"),
  15379. default: true
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15385. {
  15386. front: {
  15387. height: math.unit(2 + 4 / 12, "feet"),
  15388. weight: math.unit(62, "lb"),
  15389. name: "Front",
  15390. image: {
  15391. source: "./media/characters/puru/front.svg",
  15392. extra: 206 / 149,
  15393. bottom: 0.06
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Normal",
  15400. height: math.unit(2 + 4 / 12, "feet"),
  15401. default: true
  15402. },
  15403. ]
  15404. ))
  15405. characterMakers.push(() => makeCharacter(
  15406. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15407. {
  15408. anthro: {
  15409. height: math.unit(5 + 8/12, "feet"),
  15410. weight: math.unit(200, "lb"),
  15411. energyNeed: math.unit(2000, "kcal"),
  15412. name: "Anthro",
  15413. image: {
  15414. source: "./media/characters/kee/anthro.svg",
  15415. extra: 3251/3184,
  15416. bottom: 250/3501
  15417. }
  15418. },
  15419. taur: {
  15420. height: math.unit(11, "feet"),
  15421. weight: math.unit(500, "lb"),
  15422. energyNeed: math.unit(5000, "kcal"),
  15423. name: "Taur",
  15424. image: {
  15425. source: "./media/characters/kee/taur.svg",
  15426. extra: 1362/1320,
  15427. bottom: 83/1445
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Normal",
  15434. height: math.unit(5 + 8/12, "feet"),
  15435. default: true
  15436. },
  15437. {
  15438. name: "Macro",
  15439. height: math.unit(35, "feet")
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15445. {
  15446. anthro: {
  15447. height: math.unit(7, "feet"),
  15448. weight: math.unit(190, "lb"),
  15449. name: "Anthro",
  15450. image: {
  15451. source: "./media/characters/cobalt-dracha/anthro.svg",
  15452. extra: 231 / 225,
  15453. bottom: 0.04
  15454. }
  15455. },
  15456. feral: {
  15457. height: math.unit(9 + 7 / 12, "feet"),
  15458. weight: math.unit(294, "lb"),
  15459. name: "Feral",
  15460. image: {
  15461. source: "./media/characters/cobalt-dracha/feral.svg",
  15462. extra: 692 / 633,
  15463. bottom: 0.05
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(7, "feet"),
  15471. default: true
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15477. {
  15478. fallen: {
  15479. height: math.unit(11 + 8 / 12, "feet"),
  15480. weight: math.unit(485, "lb"),
  15481. name: "Java (Fallen)",
  15482. rename: true,
  15483. image: {
  15484. source: "./media/characters/java/fallen.svg",
  15485. extra: 226 / 208,
  15486. bottom: 0.005
  15487. }
  15488. },
  15489. godkin: {
  15490. height: math.unit(10 + 6 / 12, "feet"),
  15491. weight: math.unit(328, "lb"),
  15492. name: "Java (Godkin)",
  15493. rename: true,
  15494. image: {
  15495. source: "./media/characters/java/godkin.svg",
  15496. extra: 270 / 262,
  15497. bottom: 0.02
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Normal",
  15504. height: math.unit(11 + 8 / 12, "feet"),
  15505. default: true
  15506. },
  15507. ]
  15508. ))
  15509. characterMakers.push(() => makeCharacter(
  15510. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15511. {
  15512. front: {
  15513. height: math.unit(7 + 8 / 12, "feet"),
  15514. weight: math.unit(320, "lb"),
  15515. name: "Front",
  15516. image: {
  15517. source: "./media/characters/skoll/front.svg",
  15518. extra: 232 / 220,
  15519. bottom: 0.02
  15520. }
  15521. },
  15522. },
  15523. [
  15524. {
  15525. name: "Normal",
  15526. height: math.unit(7 + 8 / 12, "feet"),
  15527. default: true
  15528. },
  15529. ]
  15530. ))
  15531. characterMakers.push(() => makeCharacter(
  15532. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15533. {
  15534. front: {
  15535. height: math.unit(5 + 9 / 12, "feet"),
  15536. weight: math.unit(170, "lb"),
  15537. name: "Front",
  15538. image: {
  15539. source: "./media/characters/purna/front.svg",
  15540. extra: 239 / 229,
  15541. bottom: 0.01
  15542. }
  15543. },
  15544. },
  15545. [
  15546. {
  15547. name: "Normal",
  15548. height: math.unit(5 + 9 / 12, "feet"),
  15549. default: true
  15550. },
  15551. ]
  15552. ))
  15553. characterMakers.push(() => makeCharacter(
  15554. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15555. {
  15556. front: {
  15557. height: math.unit(5 + 9 / 12, "feet"),
  15558. weight: math.unit(142, "lb"),
  15559. name: "Front",
  15560. image: {
  15561. source: "./media/characters/kuva/front.svg",
  15562. extra: 281 / 271,
  15563. bottom: 0.006
  15564. }
  15565. },
  15566. },
  15567. [
  15568. {
  15569. name: "Normal",
  15570. height: math.unit(5 + 9 / 12, "feet"),
  15571. default: true
  15572. },
  15573. ]
  15574. ))
  15575. characterMakers.push(() => makeCharacter(
  15576. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15577. {
  15578. anthro: {
  15579. height: math.unit(9 + 2 / 12, "feet"),
  15580. weight: math.unit(270, "lb"),
  15581. name: "Anthro",
  15582. image: {
  15583. source: "./media/characters/embra/anthro.svg",
  15584. extra: 200 / 187,
  15585. bottom: 0.02
  15586. }
  15587. },
  15588. feral: {
  15589. height: math.unit(18 + 8 / 12, "feet"),
  15590. weight: math.unit(576, "lb"),
  15591. name: "Feral",
  15592. image: {
  15593. source: "./media/characters/embra/feral.svg",
  15594. extra: 152 / 137,
  15595. bottom: 0.037
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Normal",
  15602. height: math.unit(9 + 2 / 12, "feet"),
  15603. default: true
  15604. },
  15605. ]
  15606. ))
  15607. characterMakers.push(() => makeCharacter(
  15608. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15609. {
  15610. anthro: {
  15611. height: math.unit(10 + 9 / 12, "feet"),
  15612. weight: math.unit(224, "lb"),
  15613. name: "Anthro",
  15614. image: {
  15615. source: "./media/characters/grottos/anthro.svg",
  15616. extra: 350 / 332,
  15617. bottom: 0.045
  15618. }
  15619. },
  15620. feral: {
  15621. height: math.unit(20 + 7 / 12, "feet"),
  15622. weight: math.unit(629, "lb"),
  15623. name: "Feral",
  15624. image: {
  15625. source: "./media/characters/grottos/feral.svg",
  15626. extra: 207 / 190,
  15627. bottom: 0.05
  15628. }
  15629. },
  15630. },
  15631. [
  15632. {
  15633. name: "Normal",
  15634. height: math.unit(10 + 9 / 12, "feet"),
  15635. default: true
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15641. {
  15642. anthro: {
  15643. height: math.unit(9 + 6 / 12, "feet"),
  15644. weight: math.unit(298, "lb"),
  15645. name: "Anthro",
  15646. image: {
  15647. source: "./media/characters/frifna/anthro.svg",
  15648. extra: 282 / 269,
  15649. bottom: 0.015
  15650. }
  15651. },
  15652. feral: {
  15653. height: math.unit(16 + 2 / 12, "feet"),
  15654. weight: math.unit(624, "lb"),
  15655. name: "Feral",
  15656. image: {
  15657. source: "./media/characters/frifna/feral.svg"
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Normal",
  15664. height: math.unit(9 + 6 / 12, "feet"),
  15665. default: true
  15666. },
  15667. ]
  15668. ))
  15669. characterMakers.push(() => makeCharacter(
  15670. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15671. {
  15672. front: {
  15673. height: math.unit(6 + 2 / 12, "feet"),
  15674. weight: math.unit(168, "lb"),
  15675. name: "Front",
  15676. image: {
  15677. source: "./media/characters/elise/front.svg",
  15678. extra: 276 / 271
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(6 + 2 / 12, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(5 + 10 / 12, "feet"),
  15695. weight: math.unit(210, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/glade/front.svg",
  15699. extra: 258 / 247,
  15700. bottom: 0.008
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(5 + 10 / 12, "feet"),
  15708. default: true
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(5 + 10 / 12, "feet"),
  15717. weight: math.unit(129, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/rina/front.svg",
  15721. extra: 266 / 255,
  15722. bottom: 0.005
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(5 + 10 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(6 + 1 / 12, "feet"),
  15739. weight: math.unit(192, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/veronica/front.svg",
  15743. extra: 319 / 309,
  15744. bottom: 0.005
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Normal",
  15751. height: math.unit(6 + 1 / 12, "feet"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15758. {
  15759. front: {
  15760. height: math.unit(9 + 3 / 12, "feet"),
  15761. weight: math.unit(1100, "lb"),
  15762. name: "Front",
  15763. image: {
  15764. source: "./media/characters/braxton/front.svg",
  15765. extra: 1057 / 984,
  15766. bottom: 0.05
  15767. }
  15768. },
  15769. },
  15770. [
  15771. {
  15772. name: "Normal",
  15773. height: math.unit(9 + 3 / 12, "feet")
  15774. },
  15775. {
  15776. name: "Giant",
  15777. height: math.unit(300, "feet"),
  15778. default: true
  15779. },
  15780. {
  15781. name: "Macro",
  15782. height: math.unit(700, "feet")
  15783. },
  15784. {
  15785. name: "Megamacro",
  15786. height: math.unit(6000, "feet")
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15792. {
  15793. front: {
  15794. height: math.unit(6 + 7 / 12, "feet"),
  15795. weight: math.unit(150, "lb"),
  15796. name: "Front",
  15797. image: {
  15798. source: "./media/characters/blue-feyonics/front.svg",
  15799. extra: 1403 / 1306,
  15800. bottom: 0.047
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(6 + 7 / 12, "feet"),
  15808. default: true
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15814. {
  15815. front: {
  15816. height: math.unit(1.8, "meters"),
  15817. weight: math.unit(60, "kg"),
  15818. name: "Front",
  15819. image: {
  15820. source: "./media/characters/maxwell/front.svg",
  15821. extra: 2060 / 1873
  15822. }
  15823. },
  15824. },
  15825. [
  15826. {
  15827. name: "Micro",
  15828. height: math.unit(1, "mm")
  15829. },
  15830. {
  15831. name: "Normal",
  15832. height: math.unit(1.8, "meter"),
  15833. default: true
  15834. },
  15835. {
  15836. name: "Macro",
  15837. height: math.unit(30, "meters")
  15838. },
  15839. {
  15840. name: "Megamacro",
  15841. height: math.unit(10, "km")
  15842. },
  15843. ]
  15844. ))
  15845. characterMakers.push(() => makeCharacter(
  15846. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15847. {
  15848. front: {
  15849. height: math.unit(6, "feet"),
  15850. weight: math.unit(150, "lb"),
  15851. name: "Front",
  15852. image: {
  15853. source: "./media/characters/jack/front.svg",
  15854. extra: 1754 / 1640,
  15855. bottom: 0.01
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Normal",
  15862. height: math.unit(80000, "feet"),
  15863. default: true
  15864. },
  15865. {
  15866. name: "Max size",
  15867. height: math.unit(10, "lightyears")
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15873. {
  15874. urban: {
  15875. height: math.unit(5, "feet"),
  15876. weight: math.unit(240, "lb"),
  15877. name: "Urban",
  15878. image: {
  15879. source: "./media/characters/cafat/urban.svg",
  15880. extra: 1223/1126,
  15881. bottom: 205/1428
  15882. }
  15883. },
  15884. summer: {
  15885. height: math.unit(5, "feet"),
  15886. weight: math.unit(240, "lb"),
  15887. name: "Summer",
  15888. image: {
  15889. source: "./media/characters/cafat/summer.svg",
  15890. extra: 1223/1126,
  15891. bottom: 205/1428
  15892. }
  15893. },
  15894. winter: {
  15895. height: math.unit(5, "feet"),
  15896. weight: math.unit(240, "lb"),
  15897. name: "Winter",
  15898. image: {
  15899. source: "./media/characters/cafat/winter.svg",
  15900. extra: 1223/1126,
  15901. bottom: 205/1428
  15902. }
  15903. },
  15904. lingerie: {
  15905. height: math.unit(5, "feet"),
  15906. weight: math.unit(240, "lb"),
  15907. name: "Lingerie",
  15908. image: {
  15909. source: "./media/characters/cafat/lingerie.svg",
  15910. extra: 1223/1126,
  15911. bottom: 205/1428
  15912. }
  15913. },
  15914. upright: {
  15915. height: math.unit(6.3, "feet"),
  15916. weight: math.unit(240, "lb"),
  15917. name: "Upright",
  15918. image: {
  15919. source: "./media/characters/cafat/upright.svg",
  15920. bottom: 0.01
  15921. }
  15922. },
  15923. uprightFull: {
  15924. height: math.unit(6.3, "feet"),
  15925. weight: math.unit(240, "lb"),
  15926. name: "Upright (Full)",
  15927. image: {
  15928. source: "./media/characters/cafat/upright-full.svg",
  15929. bottom: 0.01
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Small",
  15936. height: math.unit(5, "feet"),
  15937. default: true
  15938. },
  15939. {
  15940. name: "Large",
  15941. height: math.unit(13, "feet")
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15947. {
  15948. front: {
  15949. height: math.unit(6, "feet"),
  15950. weight: math.unit(150, "lb"),
  15951. name: "Front",
  15952. image: {
  15953. source: "./media/characters/verin-raharra/front.svg",
  15954. extra: 5019 / 4835,
  15955. bottom: 0.023
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(7 + 5 / 12, "feet"),
  15963. default: true
  15964. },
  15965. {
  15966. name: "Upsized",
  15967. height: math.unit(20, "feet")
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15973. {
  15974. front: {
  15975. height: math.unit(7, "feet"),
  15976. weight: math.unit(230, "lb"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/nakata/front.svg",
  15980. extra: 1.005,
  15981. bottom: 0.01
  15982. }
  15983. },
  15984. },
  15985. [
  15986. {
  15987. name: "Normal",
  15988. height: math.unit(7, "feet"),
  15989. default: true
  15990. },
  15991. {
  15992. name: "Big",
  15993. height: math.unit(14, "feet")
  15994. },
  15995. {
  15996. name: "Macro",
  15997. height: math.unit(400, "feet")
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16003. {
  16004. front: {
  16005. height: math.unit(4.91, "feet"),
  16006. weight: math.unit(100, "lb"),
  16007. name: "Front",
  16008. image: {
  16009. source: "./media/characters/lily/front.svg",
  16010. extra: 1585 / 1415,
  16011. bottom: 0.02
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Normal",
  16018. height: math.unit(4.91, "feet"),
  16019. default: true
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16025. {
  16026. laying: {
  16027. height: math.unit(4 + 4 / 12, "feet"),
  16028. weight: math.unit(600, "lb"),
  16029. name: "Laying",
  16030. image: {
  16031. source: "./media/characters/sheila/laying.svg",
  16032. extra: 1333 / 1265,
  16033. bottom: 0.16
  16034. }
  16035. },
  16036. },
  16037. [
  16038. {
  16039. name: "Normal",
  16040. height: math.unit(4 + 4 / 12, "feet"),
  16041. default: true
  16042. },
  16043. ]
  16044. ))
  16045. characterMakers.push(() => makeCharacter(
  16046. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16047. {
  16048. front: {
  16049. height: math.unit(6, "feet"),
  16050. weight: math.unit(190, "lb"),
  16051. name: "Front",
  16052. image: {
  16053. source: "./media/characters/sax/front.svg",
  16054. extra: 1187 / 973,
  16055. bottom: 0.042
  16056. }
  16057. },
  16058. },
  16059. [
  16060. {
  16061. name: "Micro",
  16062. height: math.unit(4, "inches"),
  16063. default: true
  16064. },
  16065. ]
  16066. ))
  16067. characterMakers.push(() => makeCharacter(
  16068. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16069. {
  16070. front: {
  16071. height: math.unit(6, "feet"),
  16072. weight: math.unit(150, "lb"),
  16073. name: "Front",
  16074. image: {
  16075. source: "./media/characters/pandora/front.svg",
  16076. extra: 2720 / 2556,
  16077. bottom: 0.015
  16078. }
  16079. },
  16080. back: {
  16081. height: math.unit(6, "feet"),
  16082. weight: math.unit(150, "lb"),
  16083. name: "Back",
  16084. image: {
  16085. source: "./media/characters/pandora/back.svg",
  16086. extra: 2720 / 2556,
  16087. bottom: 0.01
  16088. }
  16089. },
  16090. beans: {
  16091. height: math.unit(6 / 8, "feet"),
  16092. name: "Beans",
  16093. image: {
  16094. source: "./media/characters/pandora/beans.svg"
  16095. }
  16096. },
  16097. collar: {
  16098. height: math.unit(0.31, "feet"),
  16099. name: "Collar",
  16100. image: {
  16101. source: "./media/characters/pandora/collar.svg"
  16102. }
  16103. },
  16104. skirt: {
  16105. height: math.unit(6, "feet"),
  16106. weight: math.unit(150, "lb"),
  16107. name: "Skirt",
  16108. image: {
  16109. source: "./media/characters/pandora/skirt.svg",
  16110. extra: 1622 / 1525,
  16111. bottom: 0.015
  16112. }
  16113. },
  16114. hoodie: {
  16115. height: math.unit(6, "feet"),
  16116. weight: math.unit(150, "lb"),
  16117. name: "Hoodie",
  16118. image: {
  16119. source: "./media/characters/pandora/hoodie.svg",
  16120. extra: 1622 / 1525,
  16121. bottom: 0.015
  16122. }
  16123. },
  16124. casual: {
  16125. height: math.unit(6, "feet"),
  16126. weight: math.unit(150, "lb"),
  16127. name: "Casual",
  16128. image: {
  16129. source: "./media/characters/pandora/casual.svg",
  16130. extra: 1622 / 1525,
  16131. bottom: 0.015
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(6, "feet")
  16139. },
  16140. {
  16141. name: "Big Steppy",
  16142. height: math.unit(1, "km"),
  16143. default: true
  16144. },
  16145. {
  16146. name: "Galactic Steppy",
  16147. height: math.unit(2, "gigameters")
  16148. },
  16149. ]
  16150. ))
  16151. characterMakers.push(() => makeCharacter(
  16152. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16153. {
  16154. side: {
  16155. height: math.unit(10, "feet"),
  16156. weight: math.unit(800, "kg"),
  16157. name: "Side",
  16158. image: {
  16159. source: "./media/characters/venio-darcony/side.svg",
  16160. extra: 1373 / 1003,
  16161. bottom: 0.037
  16162. }
  16163. },
  16164. front: {
  16165. height: math.unit(19, "feet"),
  16166. weight: math.unit(800, "kg"),
  16167. name: "Front",
  16168. image: {
  16169. source: "./media/characters/venio-darcony/front.svg"
  16170. }
  16171. },
  16172. back: {
  16173. height: math.unit(19, "feet"),
  16174. weight: math.unit(800, "kg"),
  16175. name: "Back",
  16176. image: {
  16177. source: "./media/characters/venio-darcony/back.svg"
  16178. }
  16179. },
  16180. sideNsfw: {
  16181. height: math.unit(10, "feet"),
  16182. weight: math.unit(800, "kg"),
  16183. name: "Side (NSFW)",
  16184. image: {
  16185. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16186. extra: 1373 / 1003,
  16187. bottom: 0.037
  16188. }
  16189. },
  16190. frontNsfw: {
  16191. height: math.unit(19, "feet"),
  16192. weight: math.unit(800, "kg"),
  16193. name: "Front (NSFW)",
  16194. image: {
  16195. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16196. }
  16197. },
  16198. backNsfw: {
  16199. height: math.unit(19, "feet"),
  16200. weight: math.unit(800, "kg"),
  16201. name: "Back (NSFW)",
  16202. image: {
  16203. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16204. }
  16205. },
  16206. sideArmored: {
  16207. height: math.unit(10, "feet"),
  16208. weight: math.unit(800, "kg"),
  16209. name: "Side (Armored)",
  16210. image: {
  16211. source: "./media/characters/venio-darcony/side-armored.svg",
  16212. extra: 1373 / 1003,
  16213. bottom: 0.037
  16214. }
  16215. },
  16216. frontArmored: {
  16217. height: math.unit(19, "feet"),
  16218. weight: math.unit(900, "kg"),
  16219. name: "Front (Armored)",
  16220. image: {
  16221. source: "./media/characters/venio-darcony/front-armored.svg"
  16222. }
  16223. },
  16224. backArmored: {
  16225. height: math.unit(19, "feet"),
  16226. weight: math.unit(900, "kg"),
  16227. name: "Back (Armored)",
  16228. image: {
  16229. source: "./media/characters/venio-darcony/back-armored.svg"
  16230. }
  16231. },
  16232. sword: {
  16233. height: math.unit(10, "feet"),
  16234. weight: math.unit(50, "lb"),
  16235. name: "Sword",
  16236. image: {
  16237. source: "./media/characters/venio-darcony/sword.svg"
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(10, "feet")
  16245. },
  16246. {
  16247. name: "Macro",
  16248. height: math.unit(130, "feet"),
  16249. default: true
  16250. },
  16251. {
  16252. name: "Macro+",
  16253. height: math.unit(240, "feet")
  16254. },
  16255. ]
  16256. ))
  16257. characterMakers.push(() => makeCharacter(
  16258. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16259. {
  16260. front: {
  16261. height: math.unit(6, "feet"),
  16262. weight: math.unit(150, "lb"),
  16263. name: "Front",
  16264. image: {
  16265. source: "./media/characters/veski/front.svg",
  16266. extra: 1299 / 1225,
  16267. bottom: 0.04
  16268. }
  16269. },
  16270. back: {
  16271. height: math.unit(6, "feet"),
  16272. weight: math.unit(150, "lb"),
  16273. name: "Back",
  16274. image: {
  16275. source: "./media/characters/veski/back.svg",
  16276. extra: 1299 / 1225,
  16277. bottom: 0.008
  16278. }
  16279. },
  16280. maw: {
  16281. height: math.unit(1.5 * 1.21, "feet"),
  16282. name: "Maw",
  16283. image: {
  16284. source: "./media/characters/veski/maw.svg"
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Macro",
  16291. height: math.unit(2, "km"),
  16292. default: true
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(5 + 7 / 12, "feet"),
  16301. name: "Front",
  16302. image: {
  16303. source: "./media/characters/isabelle/front.svg",
  16304. extra: 2130 / 1976,
  16305. bottom: 0.05
  16306. }
  16307. },
  16308. },
  16309. [
  16310. {
  16311. name: "Supermicro",
  16312. height: math.unit(10, "micrometers")
  16313. },
  16314. {
  16315. name: "Micro",
  16316. height: math.unit(1, "inch")
  16317. },
  16318. {
  16319. name: "Tiny",
  16320. height: math.unit(5, "inches")
  16321. },
  16322. {
  16323. name: "Standard",
  16324. height: math.unit(5 + 7 / 12, "inches")
  16325. },
  16326. {
  16327. name: "Macro",
  16328. height: math.unit(80, "meters"),
  16329. default: true
  16330. },
  16331. {
  16332. name: "Megamacro",
  16333. height: math.unit(250, "meters")
  16334. },
  16335. {
  16336. name: "Gigamacro",
  16337. height: math.unit(5, "km")
  16338. },
  16339. {
  16340. name: "Cosmic",
  16341. height: math.unit(2.5e6, "miles")
  16342. },
  16343. ]
  16344. ))
  16345. characterMakers.push(() => makeCharacter(
  16346. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16347. {
  16348. front: {
  16349. height: math.unit(6, "feet"),
  16350. weight: math.unit(150, "lb"),
  16351. name: "Front",
  16352. image: {
  16353. source: "./media/characters/hanzo/front.svg",
  16354. extra: 374 / 344,
  16355. bottom: 0.02
  16356. }
  16357. },
  16358. },
  16359. [
  16360. {
  16361. name: "Normal",
  16362. height: math.unit(8, "feet"),
  16363. default: true
  16364. },
  16365. ]
  16366. ))
  16367. characterMakers.push(() => makeCharacter(
  16368. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16369. {
  16370. front: {
  16371. height: math.unit(7, "feet"),
  16372. weight: math.unit(130, "lb"),
  16373. name: "Front",
  16374. image: {
  16375. source: "./media/characters/anna/front.svg",
  16376. extra: 169 / 145,
  16377. bottom: 0.06
  16378. }
  16379. },
  16380. full: {
  16381. height: math.unit(4.96, "feet"),
  16382. weight: math.unit(220, "lb"),
  16383. name: "Full",
  16384. image: {
  16385. source: "./media/characters/anna/full.svg",
  16386. extra: 138 / 114,
  16387. bottom: 0.15
  16388. }
  16389. },
  16390. tongue: {
  16391. height: math.unit(2.53, "feet"),
  16392. name: "Tongue",
  16393. image: {
  16394. source: "./media/characters/anna/tongue.svg"
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(7, "feet"),
  16402. default: true
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16408. {
  16409. front: {
  16410. height: math.unit(7, "feet"),
  16411. weight: math.unit(150, "lb"),
  16412. name: "Front",
  16413. image: {
  16414. source: "./media/characters/ian-corvid/front.svg",
  16415. extra: 150 / 142,
  16416. bottom: 0.02
  16417. }
  16418. },
  16419. back: {
  16420. height: math.unit(7, "feet"),
  16421. weight: math.unit(150, "lb"),
  16422. name: "Back",
  16423. image: {
  16424. source: "./media/characters/ian-corvid/back.svg",
  16425. extra: 150 / 143,
  16426. bottom: 0.01
  16427. }
  16428. },
  16429. stomping: {
  16430. height: math.unit(7, "feet"),
  16431. weight: math.unit(150, "lb"),
  16432. name: "Stomping",
  16433. image: {
  16434. source: "./media/characters/ian-corvid/stomping.svg",
  16435. extra: 76 / 72
  16436. }
  16437. },
  16438. sitting: {
  16439. height: math.unit(7 / 1.8, "feet"),
  16440. weight: math.unit(150, "lb"),
  16441. name: "Sitting",
  16442. image: {
  16443. source: "./media/characters/ian-corvid/sitting.svg",
  16444. extra: 1400 / 1269,
  16445. bottom: 0.15
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Tiny Microw",
  16452. height: math.unit(1, "inch")
  16453. },
  16454. {
  16455. name: "Microw",
  16456. height: math.unit(6, "inches")
  16457. },
  16458. {
  16459. name: "Crow",
  16460. height: math.unit(7 + 1 / 12, "feet"),
  16461. default: true
  16462. },
  16463. {
  16464. name: "Macrow",
  16465. height: math.unit(176, "feet")
  16466. },
  16467. ]
  16468. ))
  16469. characterMakers.push(() => makeCharacter(
  16470. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16471. {
  16472. front: {
  16473. height: math.unit(5 + 7 / 12, "feet"),
  16474. weight: math.unit(147, "lb"),
  16475. name: "Front",
  16476. image: {
  16477. source: "./media/characters/natalie-kellon/front.svg",
  16478. extra: 1214 / 1141,
  16479. bottom: 0.02
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Micro",
  16486. height: math.unit(1 / 16, "inch")
  16487. },
  16488. {
  16489. name: "Tiny",
  16490. height: math.unit(4, "inches")
  16491. },
  16492. {
  16493. name: "Normal",
  16494. height: math.unit(5 + 7 / 12, "feet"),
  16495. default: true
  16496. },
  16497. {
  16498. name: "Amazon",
  16499. height: math.unit(12, "feet")
  16500. },
  16501. {
  16502. name: "Giantess",
  16503. height: math.unit(160, "meters")
  16504. },
  16505. {
  16506. name: "Titaness",
  16507. height: math.unit(800, "meters")
  16508. },
  16509. ]
  16510. ))
  16511. characterMakers.push(() => makeCharacter(
  16512. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16513. {
  16514. front: {
  16515. height: math.unit(6, "feet"),
  16516. weight: math.unit(150, "lb"),
  16517. name: "Front",
  16518. image: {
  16519. source: "./media/characters/alluria/front.svg",
  16520. extra: 806 / 738,
  16521. bottom: 0.01
  16522. }
  16523. },
  16524. side: {
  16525. height: math.unit(6, "feet"),
  16526. weight: math.unit(150, "lb"),
  16527. name: "Side",
  16528. image: {
  16529. source: "./media/characters/alluria/side.svg",
  16530. extra: 800 / 750,
  16531. }
  16532. },
  16533. back: {
  16534. height: math.unit(6, "feet"),
  16535. weight: math.unit(150, "lb"),
  16536. name: "Back",
  16537. image: {
  16538. source: "./media/characters/alluria/back.svg",
  16539. extra: 806 / 738,
  16540. }
  16541. },
  16542. frontMaid: {
  16543. height: math.unit(6, "feet"),
  16544. weight: math.unit(150, "lb"),
  16545. name: "Front (Maid)",
  16546. image: {
  16547. source: "./media/characters/alluria/front-maid.svg",
  16548. extra: 806 / 738,
  16549. bottom: 0.01
  16550. }
  16551. },
  16552. sideMaid: {
  16553. height: math.unit(6, "feet"),
  16554. weight: math.unit(150, "lb"),
  16555. name: "Side (Maid)",
  16556. image: {
  16557. source: "./media/characters/alluria/side-maid.svg",
  16558. extra: 800 / 750,
  16559. bottom: 0.005
  16560. }
  16561. },
  16562. backMaid: {
  16563. height: math.unit(6, "feet"),
  16564. weight: math.unit(150, "lb"),
  16565. name: "Back (Maid)",
  16566. image: {
  16567. source: "./media/characters/alluria/back-maid.svg",
  16568. extra: 806 / 738,
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Micro",
  16575. height: math.unit(6, "inches"),
  16576. default: true
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16582. {
  16583. front: {
  16584. height: math.unit(6, "feet"),
  16585. weight: math.unit(150, "lb"),
  16586. name: "Front",
  16587. image: {
  16588. source: "./media/characters/kyle/front.svg",
  16589. extra: 1069 / 962,
  16590. bottom: 77.228 / 1727.45
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Macro",
  16597. height: math.unit(150, "feet"),
  16598. default: true
  16599. },
  16600. ]
  16601. ))
  16602. characterMakers.push(() => makeCharacter(
  16603. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16604. {
  16605. front: {
  16606. height: math.unit(6, "feet"),
  16607. weight: math.unit(300, "lb"),
  16608. name: "Front",
  16609. image: {
  16610. source: "./media/characters/duncan/front.svg",
  16611. extra: 1650 / 1482,
  16612. bottom: 0.05
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Macro",
  16619. height: math.unit(100, "feet"),
  16620. default: true
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16626. {
  16627. front: {
  16628. height: math.unit(5 + 4 / 12, "feet"),
  16629. weight: math.unit(220, "lb"),
  16630. name: "Front",
  16631. image: {
  16632. source: "./media/characters/memory/front.svg",
  16633. extra: 3641 / 3545,
  16634. bottom: 0.03
  16635. }
  16636. },
  16637. back: {
  16638. height: math.unit(5 + 4 / 12, "feet"),
  16639. weight: math.unit(220, "lb"),
  16640. name: "Back",
  16641. image: {
  16642. source: "./media/characters/memory/back.svg",
  16643. extra: 3641 / 3545,
  16644. bottom: 0.025
  16645. }
  16646. },
  16647. frontSkirt: {
  16648. height: math.unit(5 + 4 / 12, "feet"),
  16649. weight: math.unit(220, "lb"),
  16650. name: "Front (Skirt)",
  16651. image: {
  16652. source: "./media/characters/memory/front-skirt.svg",
  16653. extra: 3641 / 3545,
  16654. bottom: 0.03
  16655. }
  16656. },
  16657. frontDress: {
  16658. height: math.unit(5 + 4 / 12, "feet"),
  16659. weight: math.unit(220, "lb"),
  16660. name: "Front (Dress)",
  16661. image: {
  16662. source: "./media/characters/memory/front-dress.svg",
  16663. extra: 3641 / 3545,
  16664. bottom: 0.03
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Micro",
  16671. height: math.unit(6, "inches"),
  16672. default: true
  16673. },
  16674. {
  16675. name: "Normal",
  16676. height: math.unit(5 + 4 / 12, "feet")
  16677. },
  16678. ]
  16679. ))
  16680. characterMakers.push(() => makeCharacter(
  16681. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16682. {
  16683. front: {
  16684. height: math.unit(4 + 11 / 12, "feet"),
  16685. weight: math.unit(100, "lb"),
  16686. name: "Front",
  16687. image: {
  16688. source: "./media/characters/luno/front.svg",
  16689. extra: 1535 / 1487,
  16690. bottom: 0.03
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Micro",
  16697. height: math.unit(3, "inches")
  16698. },
  16699. {
  16700. name: "Normal",
  16701. height: math.unit(4 + 11 / 12, "feet"),
  16702. default: true
  16703. },
  16704. {
  16705. name: "Macro",
  16706. height: math.unit(300, "feet")
  16707. },
  16708. {
  16709. name: "Megamacro",
  16710. height: math.unit(700, "miles")
  16711. },
  16712. ]
  16713. ))
  16714. characterMakers.push(() => makeCharacter(
  16715. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16716. {
  16717. front: {
  16718. height: math.unit(6 + 2 / 12, "feet"),
  16719. weight: math.unit(170, "lb"),
  16720. name: "Front",
  16721. image: {
  16722. source: "./media/characters/jamesy/front.svg",
  16723. extra: 440 / 382,
  16724. bottom: 0.005
  16725. }
  16726. },
  16727. },
  16728. [
  16729. {
  16730. name: "Micro",
  16731. height: math.unit(3, "inches")
  16732. },
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(6 + 2 / 12, "feet"),
  16736. default: true
  16737. },
  16738. {
  16739. name: "Macro",
  16740. height: math.unit(300, "feet")
  16741. },
  16742. {
  16743. name: "Megamacro",
  16744. height: math.unit(700, "miles")
  16745. },
  16746. ]
  16747. ))
  16748. characterMakers.push(() => makeCharacter(
  16749. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16750. {
  16751. front: {
  16752. height: math.unit(6, "feet"),
  16753. weight: math.unit(160, "lb"),
  16754. name: "Front",
  16755. image: {
  16756. source: "./media/characters/mark/front.svg",
  16757. extra: 3300 / 3100,
  16758. bottom: 136.42 / 3440.47
  16759. }
  16760. },
  16761. },
  16762. [
  16763. {
  16764. name: "Macro",
  16765. height: math.unit(120, "meters")
  16766. },
  16767. {
  16768. name: "Bigger Macro",
  16769. height: math.unit(350, "meters")
  16770. },
  16771. {
  16772. name: "Megamacro",
  16773. height: math.unit(8, "km"),
  16774. default: true
  16775. },
  16776. {
  16777. name: "Continental",
  16778. height: math.unit(4550, "km")
  16779. },
  16780. {
  16781. name: "Planetary",
  16782. height: math.unit(65000, "km")
  16783. },
  16784. ]
  16785. ))
  16786. characterMakers.push(() => makeCharacter(
  16787. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16788. {
  16789. front: {
  16790. height: math.unit(6, "feet"),
  16791. weight: math.unit(400, "lb"),
  16792. name: "Front",
  16793. image: {
  16794. source: "./media/characters/mac/front.svg",
  16795. extra: 1048 / 987.7,
  16796. bottom: 60 / 1107.6,
  16797. }
  16798. },
  16799. },
  16800. [
  16801. {
  16802. name: "Macro",
  16803. height: math.unit(500, "feet"),
  16804. default: true
  16805. },
  16806. ]
  16807. ))
  16808. characterMakers.push(() => makeCharacter(
  16809. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16810. {
  16811. front: {
  16812. height: math.unit(5 + 2 / 12, "feet"),
  16813. weight: math.unit(190, "lb"),
  16814. name: "Front",
  16815. image: {
  16816. source: "./media/characters/bari/front.svg",
  16817. extra: 3156 / 2880,
  16818. bottom: 0.03
  16819. }
  16820. },
  16821. back: {
  16822. height: math.unit(5 + 2 / 12, "feet"),
  16823. weight: math.unit(190, "lb"),
  16824. name: "Back",
  16825. image: {
  16826. source: "./media/characters/bari/back.svg",
  16827. extra: 3260 / 2834,
  16828. bottom: 0.025
  16829. }
  16830. },
  16831. frontPlush: {
  16832. height: math.unit(5 + 2 / 12, "feet"),
  16833. weight: math.unit(190, "lb"),
  16834. name: "Front (Plush)",
  16835. image: {
  16836. source: "./media/characters/bari/front-plush.svg",
  16837. extra: 1112 / 1061,
  16838. bottom: 0.002
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Micro",
  16845. height: math.unit(3, "inches")
  16846. },
  16847. {
  16848. name: "Normal",
  16849. height: math.unit(5 + 2 / 12, "feet"),
  16850. default: true
  16851. },
  16852. {
  16853. name: "Macro",
  16854. height: math.unit(20, "feet")
  16855. },
  16856. ]
  16857. ))
  16858. characterMakers.push(() => makeCharacter(
  16859. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16860. {
  16861. front: {
  16862. height: math.unit(6 + 1 / 12, "feet"),
  16863. weight: math.unit(275, "lb"),
  16864. name: "Front",
  16865. image: {
  16866. source: "./media/characters/hunter-misha-raven/front.svg"
  16867. }
  16868. },
  16869. },
  16870. [
  16871. {
  16872. name: "Mortal",
  16873. height: math.unit(6 + 1 / 12, "feet")
  16874. },
  16875. {
  16876. name: "Divine",
  16877. height: math.unit(1.12134e34, "parsecs"),
  16878. default: true
  16879. },
  16880. ]
  16881. ))
  16882. characterMakers.push(() => makeCharacter(
  16883. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16884. {
  16885. front: {
  16886. height: math.unit(6 + 3 / 12, "feet"),
  16887. weight: math.unit(220, "lb"),
  16888. name: "Front",
  16889. image: {
  16890. source: "./media/characters/max-calore/front.svg",
  16891. extra: 1700 / 1648,
  16892. bottom: 0.01
  16893. }
  16894. },
  16895. back: {
  16896. height: math.unit(6 + 3 / 12, "feet"),
  16897. weight: math.unit(220, "lb"),
  16898. name: "Back",
  16899. image: {
  16900. source: "./media/characters/max-calore/back.svg",
  16901. extra: 1700 / 1648,
  16902. bottom: 0.01
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(6 + 3 / 12, "feet"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16916. {
  16917. side: {
  16918. height: math.unit(2 + 8 / 12, "feet"),
  16919. weight: math.unit(99, "lb"),
  16920. name: "Side",
  16921. image: {
  16922. source: "./media/characters/aspen/side.svg",
  16923. extra: 152 / 138,
  16924. bottom: 0.032
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(2 + 8 / 12, "feet"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16938. {
  16939. side: {
  16940. height: math.unit(3 + 2 / 12, "feet"),
  16941. weight: math.unit(224, "lb"),
  16942. name: "Side",
  16943. image: {
  16944. source: "./media/characters/sheila-feral-wolf/side.svg",
  16945. extra: 179 / 166,
  16946. bottom: 0.03
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Normal",
  16953. height: math.unit(3 + 2 / 12, "feet"),
  16954. default: true
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16960. {
  16961. side: {
  16962. height: math.unit(1 + 9 / 12, "feet"),
  16963. weight: math.unit(38, "lb"),
  16964. name: "Side",
  16965. image: {
  16966. source: "./media/characters/michelle/side.svg",
  16967. extra: 147 / 136.7,
  16968. bottom: 0.03
  16969. }
  16970. },
  16971. },
  16972. [
  16973. {
  16974. name: "Normal",
  16975. height: math.unit(1 + 9 / 12, "feet"),
  16976. default: true
  16977. },
  16978. ]
  16979. ))
  16980. characterMakers.push(() => makeCharacter(
  16981. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16982. {
  16983. front: {
  16984. height: math.unit(1 + 1 / 12, "feet"),
  16985. weight: math.unit(18, "lb"),
  16986. name: "Front",
  16987. image: {
  16988. source: "./media/characters/nino/front.svg"
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(1 + 1 / 12, "feet"),
  16996. default: true
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17002. {
  17003. front: {
  17004. height: math.unit(1, "feet"),
  17005. weight: math.unit(16, "lb"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/viola/front.svg"
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(1, "feet"),
  17016. default: true
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(6 + 5 / 12, "feet"),
  17025. weight: math.unit(580, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/atlas/front.svg",
  17029. extra: 298.5 / 290,
  17030. bottom: 0.015
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(6 + 5 / 12, "feet"),
  17038. default: true
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17044. {
  17045. side: {
  17046. height: math.unit(1 + 10 / 12, "feet"),
  17047. weight: math.unit(25, "lb"),
  17048. name: "Side",
  17049. image: {
  17050. source: "./media/characters/davy/side.svg",
  17051. extra: 200 / 170,
  17052. bottom: 0.01
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(1 + 10 / 12, "feet"),
  17060. default: true
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17066. {
  17067. side: {
  17068. height: math.unit(4 + 8 / 12, "feet"),
  17069. weight: math.unit(166, "lb"),
  17070. name: "Side",
  17071. image: {
  17072. source: "./media/characters/fiona/side.svg",
  17073. extra: 232 / 220,
  17074. bottom: 0.03
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(4 + 8 / 12, "feet"),
  17082. default: true
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17088. {
  17089. front: {
  17090. height: math.unit(2, "feet"),
  17091. weight: math.unit(62, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/lyla/front.svg",
  17095. bottom: 0.1
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(2, "feet"),
  17103. default: true
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17109. {
  17110. side: {
  17111. height: math.unit(1.8, "feet"),
  17112. weight: math.unit(44, "lb"),
  17113. name: "Side",
  17114. image: {
  17115. source: "./media/characters/perseus/side.svg",
  17116. bottom: 0.21
  17117. }
  17118. },
  17119. },
  17120. [
  17121. {
  17122. name: "Normal",
  17123. height: math.unit(1.8, "feet"),
  17124. default: true
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17130. {
  17131. side: {
  17132. height: math.unit(4 + 2 / 12, "feet"),
  17133. weight: math.unit(20, "lb"),
  17134. name: "Side",
  17135. image: {
  17136. source: "./media/characters/remus/side.svg"
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(4 + 2 / 12, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(4 + 11 / 12, "feet"),
  17153. weight: math.unit(114, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/raf/front.svg",
  17157. bottom: 20.5 / 1863
  17158. }
  17159. },
  17160. side: {
  17161. height: math.unit(4 + 11 / 12, "feet"),
  17162. weight: math.unit(114, "lb"),
  17163. name: "Side",
  17164. image: {
  17165. source: "./media/characters/raf/side.svg",
  17166. bottom: 22 / 1822
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Micro",
  17173. height: math.unit(2, "inches")
  17174. },
  17175. {
  17176. name: "Normal",
  17177. height: math.unit(4 + 11 / 12, "feet"),
  17178. default: true
  17179. },
  17180. {
  17181. name: "Macro",
  17182. height: math.unit(70, "feet")
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17188. {
  17189. front: {
  17190. height: math.unit(1.5, "meters"),
  17191. weight: math.unit(68, "kg"),
  17192. name: "Front",
  17193. image: {
  17194. source: "./media/characters/liam-einarr/front.svg",
  17195. extra: 2822 / 2666
  17196. }
  17197. },
  17198. back: {
  17199. height: math.unit(1.5, "meters"),
  17200. weight: math.unit(68, "kg"),
  17201. name: "Back",
  17202. image: {
  17203. source: "./media/characters/liam-einarr/back.svg",
  17204. extra: 2822 / 2666,
  17205. bottom: 0.015
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(1.5, "meters"),
  17213. default: true
  17214. },
  17215. {
  17216. name: "Macro",
  17217. height: math.unit(150, "meters")
  17218. },
  17219. {
  17220. name: "Megamacro",
  17221. height: math.unit(35, "km")
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17227. {
  17228. front: {
  17229. height: math.unit(6, "feet"),
  17230. weight: math.unit(75, "kg"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/linda/front.svg",
  17234. extra: 930 / 874,
  17235. bottom: 0.004
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Normal",
  17242. height: math.unit(6, "feet"),
  17243. default: true
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17249. {
  17250. front: {
  17251. height: math.unit(6 + 8 / 12, "feet"),
  17252. weight: math.unit(220, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/caylex/front.svg",
  17256. extra: 821 / 772,
  17257. bottom: 0.07
  17258. }
  17259. },
  17260. back: {
  17261. height: math.unit(6 + 8 / 12, "feet"),
  17262. weight: math.unit(220, "lb"),
  17263. name: "Back",
  17264. image: {
  17265. source: "./media/characters/caylex/back.svg",
  17266. extra: 821 / 772,
  17267. bottom: 0.022
  17268. }
  17269. },
  17270. hand: {
  17271. height: math.unit(1.25, "feet"),
  17272. name: "Hand",
  17273. image: {
  17274. source: "./media/characters/caylex/hand.svg"
  17275. }
  17276. },
  17277. foot: {
  17278. height: math.unit(1.6, "feet"),
  17279. name: "Foot",
  17280. image: {
  17281. source: "./media/characters/caylex/foot.svg"
  17282. }
  17283. },
  17284. armored: {
  17285. height: math.unit(6 + 8 / 12, "feet"),
  17286. weight: math.unit(250, "lb"),
  17287. name: "Armored",
  17288. image: {
  17289. source: "./media/characters/caylex/armored.svg",
  17290. extra: 1420 / 1310,
  17291. bottom: 0.045
  17292. }
  17293. },
  17294. },
  17295. [
  17296. {
  17297. name: "Normal",
  17298. height: math.unit(6 + 8 / 12, "feet"),
  17299. default: true
  17300. },
  17301. {
  17302. name: "Normal+",
  17303. height: math.unit(12, "feet")
  17304. },
  17305. ]
  17306. ))
  17307. characterMakers.push(() => makeCharacter(
  17308. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17309. {
  17310. front: {
  17311. height: math.unit(7 + 6 / 12, "feet"),
  17312. weight: math.unit(288, "lb"),
  17313. name: "Front",
  17314. image: {
  17315. source: "./media/characters/alana/front.svg",
  17316. extra: 679 / 653,
  17317. bottom: 22.5 / 701
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Normal",
  17324. height: math.unit(7 + 6 / 12, "feet")
  17325. },
  17326. {
  17327. name: "Large",
  17328. height: math.unit(50, "feet")
  17329. },
  17330. {
  17331. name: "Macro",
  17332. height: math.unit(100, "feet"),
  17333. default: true
  17334. },
  17335. {
  17336. name: "Macro+",
  17337. height: math.unit(200, "feet")
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17343. {
  17344. front: {
  17345. height: math.unit(6 + 1 / 12, "feet"),
  17346. weight: math.unit(210, "lb"),
  17347. name: "Front",
  17348. image: {
  17349. source: "./media/characters/hasani/front.svg",
  17350. extra: 244 / 232,
  17351. bottom: 0.01
  17352. }
  17353. },
  17354. back: {
  17355. height: math.unit(6 + 1 / 12, "feet"),
  17356. weight: math.unit(210, "lb"),
  17357. name: "Back",
  17358. image: {
  17359. source: "./media/characters/hasani/back.svg",
  17360. extra: 244 / 232,
  17361. bottom: 0.01
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(6 + 1 / 12, "feet")
  17369. },
  17370. {
  17371. name: "Macro",
  17372. height: math.unit(175, "feet"),
  17373. default: true
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17379. {
  17380. front: {
  17381. height: math.unit(1.82, "meters"),
  17382. weight: math.unit(140, "lb"),
  17383. name: "Front",
  17384. image: {
  17385. source: "./media/characters/nita/front.svg",
  17386. extra: 2473 / 2363,
  17387. bottom: 0.01
  17388. }
  17389. },
  17390. },
  17391. [
  17392. {
  17393. name: "Normal",
  17394. height: math.unit(1.82, "m")
  17395. },
  17396. {
  17397. name: "Macro",
  17398. height: math.unit(300, "m")
  17399. },
  17400. {
  17401. name: "Mistake Canon",
  17402. height: math.unit(0.5, "miles"),
  17403. default: true
  17404. },
  17405. {
  17406. name: "Big Mistake",
  17407. height: math.unit(13, "miles")
  17408. },
  17409. {
  17410. name: "Playing God",
  17411. height: math.unit(2450, "miles")
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17417. {
  17418. front: {
  17419. height: math.unit(4, "feet"),
  17420. weight: math.unit(120, "lb"),
  17421. name: "Front",
  17422. image: {
  17423. source: "./media/characters/shiriko/front.svg",
  17424. extra: 970/934,
  17425. bottom: 5/975
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(4, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(6, "feet"),
  17442. name: "front",
  17443. image: {
  17444. source: "./media/characters/deja/front.svg",
  17445. extra: 926 / 840,
  17446. bottom: 0.07
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Planck Length",
  17453. height: math.unit(1.6e-35, "meters")
  17454. },
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(30.48, "meters"),
  17458. default: true
  17459. },
  17460. {
  17461. name: "Universal",
  17462. height: math.unit(8.8e26, "meters")
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17468. {
  17469. side: {
  17470. height: math.unit(8, "feet"),
  17471. weight: math.unit(6300, "lb"),
  17472. name: "Side",
  17473. image: {
  17474. source: "./media/characters/anima/side.svg",
  17475. bottom: 0.035
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(8, "feet"),
  17483. default: true
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17489. {
  17490. front: {
  17491. height: math.unit(8, "feet"),
  17492. weight: math.unit(350, "lb"),
  17493. name: "Front",
  17494. image: {
  17495. source: "./media/characters/bianca/front.svg",
  17496. extra: 234 / 225,
  17497. bottom: 0.03
  17498. }
  17499. },
  17500. },
  17501. [
  17502. {
  17503. name: "Normal",
  17504. height: math.unit(8, "feet"),
  17505. default: true
  17506. },
  17507. ]
  17508. ))
  17509. characterMakers.push(() => makeCharacter(
  17510. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17511. {
  17512. front: {
  17513. height: math.unit(6, "feet"),
  17514. weight: math.unit(150, "lb"),
  17515. name: "Front",
  17516. image: {
  17517. source: "./media/characters/adinia/front.svg",
  17518. extra: 1845 / 1672,
  17519. bottom: 0.02
  17520. }
  17521. },
  17522. back: {
  17523. height: math.unit(6, "feet"),
  17524. weight: math.unit(150, "lb"),
  17525. name: "Back",
  17526. image: {
  17527. source: "./media/characters/adinia/back.svg",
  17528. extra: 1845 / 1672,
  17529. bottom: 0.002
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(11 + 5 / 12, "feet"),
  17537. default: true
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17543. {
  17544. front: {
  17545. height: math.unit(3, "meters"),
  17546. weight: math.unit(200, "kg"),
  17547. name: "Front",
  17548. image: {
  17549. source: "./media/characters/lykasa/front.svg",
  17550. extra: 1076 / 976,
  17551. bottom: 0.06
  17552. }
  17553. },
  17554. },
  17555. [
  17556. {
  17557. name: "Normal",
  17558. height: math.unit(3, "meters")
  17559. },
  17560. {
  17561. name: "Kaiju",
  17562. height: math.unit(120, "meters"),
  17563. default: true
  17564. },
  17565. {
  17566. name: "Mega Kaiju",
  17567. height: math.unit(240, "km")
  17568. },
  17569. {
  17570. name: "Giga Kaiju",
  17571. height: math.unit(400, "megameters")
  17572. },
  17573. {
  17574. name: "Tera Kaiju",
  17575. height: math.unit(800, "gigameters")
  17576. },
  17577. {
  17578. name: "Kaiju Dragon Goddess",
  17579. height: math.unit(26, "zettaparsecs")
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17585. {
  17586. side: {
  17587. height: math.unit(283 / 124 * 6, "feet"),
  17588. weight: math.unit(35000, "lb"),
  17589. name: "Side",
  17590. image: {
  17591. source: "./media/characters/malfaren/side.svg",
  17592. extra: 2500 / 1010,
  17593. bottom: 0.01
  17594. }
  17595. },
  17596. front: {
  17597. height: math.unit(22.36, "feet"),
  17598. weight: math.unit(35000, "lb"),
  17599. name: "Front",
  17600. image: {
  17601. source: "./media/characters/malfaren/front.svg",
  17602. extra: 1631 / 1476,
  17603. bottom: 0.01
  17604. }
  17605. },
  17606. maw: {
  17607. height: math.unit(6.9, "feet"),
  17608. name: "Maw",
  17609. image: {
  17610. source: "./media/characters/malfaren/maw.svg"
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Big",
  17617. height: math.unit(283 / 162 * 6, "feet"),
  17618. },
  17619. {
  17620. name: "Bigger",
  17621. height: math.unit(283 / 124 * 6, "feet")
  17622. },
  17623. {
  17624. name: "Massive",
  17625. height: math.unit(283 / 92 * 6, "feet"),
  17626. default: true
  17627. },
  17628. {
  17629. name: "👀💦",
  17630. height: math.unit(283 / 73 * 6, "feet"),
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17636. {
  17637. front: {
  17638. height: math.unit(1.7, "m"),
  17639. weight: math.unit(70, "kg"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/kernel/front.svg",
  17643. extra: 222 / 210,
  17644. bottom: 0.007
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Nano",
  17651. height: math.unit(17, "micrometers")
  17652. },
  17653. {
  17654. name: "Micro",
  17655. height: math.unit(1.7, "mm")
  17656. },
  17657. {
  17658. name: "Small",
  17659. height: math.unit(1.7, "cm")
  17660. },
  17661. {
  17662. name: "Normal",
  17663. height: math.unit(1.7, "m"),
  17664. default: true
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17670. {
  17671. front: {
  17672. height: math.unit(1.75, "meters"),
  17673. weight: math.unit(65, "kg"),
  17674. name: "Front",
  17675. image: {
  17676. source: "./media/characters/jayne-folest/front.svg",
  17677. extra: 2115 / 2007,
  17678. bottom: 0.02
  17679. }
  17680. },
  17681. back: {
  17682. height: math.unit(1.75, "meters"),
  17683. weight: math.unit(65, "kg"),
  17684. name: "Back",
  17685. image: {
  17686. source: "./media/characters/jayne-folest/back.svg",
  17687. extra: 2115 / 2007,
  17688. bottom: 0.005
  17689. }
  17690. },
  17691. frontClothed: {
  17692. height: math.unit(1.75, "meters"),
  17693. weight: math.unit(65, "kg"),
  17694. name: "Front (Clothed)",
  17695. image: {
  17696. source: "./media/characters/jayne-folest/front-clothed.svg",
  17697. extra: 2115 / 2007,
  17698. bottom: 0.035
  17699. }
  17700. },
  17701. hand: {
  17702. height: math.unit(1 / 1.260, "feet"),
  17703. name: "Hand",
  17704. image: {
  17705. source: "./media/characters/jayne-folest/hand.svg"
  17706. }
  17707. },
  17708. foot: {
  17709. height: math.unit(1 / 0.918, "feet"),
  17710. name: "Foot",
  17711. image: {
  17712. source: "./media/characters/jayne-folest/foot.svg"
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Micro",
  17719. height: math.unit(4, "cm")
  17720. },
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(1.75, "meters")
  17724. },
  17725. {
  17726. name: "Macro",
  17727. height: math.unit(47.5, "meters"),
  17728. default: true
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17734. {
  17735. front: {
  17736. height: math.unit(180, "cm"),
  17737. weight: math.unit(70, "kg"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/algier/front.svg",
  17741. extra: 596 / 572,
  17742. bottom: 0.04
  17743. }
  17744. },
  17745. back: {
  17746. height: math.unit(180, "cm"),
  17747. weight: math.unit(70, "kg"),
  17748. name: "Back",
  17749. image: {
  17750. source: "./media/characters/algier/back.svg",
  17751. extra: 596 / 572,
  17752. bottom: 0.025
  17753. }
  17754. },
  17755. frontdressed: {
  17756. height: math.unit(180, "cm"),
  17757. weight: math.unit(150, "kg"),
  17758. name: "Front-dressed",
  17759. image: {
  17760. source: "./media/characters/algier/front-dressed.svg",
  17761. extra: 596 / 572,
  17762. bottom: 0.038
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Micro",
  17769. height: math.unit(5, "cm")
  17770. },
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(180, "cm"),
  17774. default: true
  17775. },
  17776. {
  17777. name: "Macro",
  17778. height: math.unit(64, "m")
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17784. {
  17785. upright: {
  17786. height: math.unit(7, "feet"),
  17787. weight: math.unit(300, "lb"),
  17788. name: "Upright",
  17789. image: {
  17790. source: "./media/characters/pretzel/upright.svg",
  17791. extra: 534 / 522,
  17792. bottom: 0.065
  17793. }
  17794. },
  17795. sprawling: {
  17796. height: math.unit(3.75, "feet"),
  17797. weight: math.unit(300, "lb"),
  17798. name: "Sprawling",
  17799. image: {
  17800. source: "./media/characters/pretzel/sprawling.svg",
  17801. extra: 314 / 281,
  17802. bottom: 0.1
  17803. }
  17804. },
  17805. tongue: {
  17806. height: math.unit(2, "feet"),
  17807. name: "Tongue",
  17808. image: {
  17809. source: "./media/characters/pretzel/tongue.svg"
  17810. }
  17811. },
  17812. },
  17813. [
  17814. {
  17815. name: "Normal",
  17816. height: math.unit(7, "feet"),
  17817. default: true
  17818. },
  17819. {
  17820. name: "Oversized",
  17821. height: math.unit(15, "feet")
  17822. },
  17823. {
  17824. name: "Huge",
  17825. height: math.unit(30, "feet")
  17826. },
  17827. {
  17828. name: "Macro",
  17829. height: math.unit(250, "feet")
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17835. {
  17836. sideFront: {
  17837. height: math.unit(5 + 2 / 12, "feet"),
  17838. weight: math.unit(120, "lb"),
  17839. name: "Front Side",
  17840. image: {
  17841. source: "./media/characters/roxi/side-front.svg",
  17842. extra: 2924 / 2717,
  17843. bottom: 0.08
  17844. }
  17845. },
  17846. sideBack: {
  17847. height: math.unit(5 + 2 / 12, "feet"),
  17848. weight: math.unit(120, "lb"),
  17849. name: "Back Side",
  17850. image: {
  17851. source: "./media/characters/roxi/side-back.svg",
  17852. extra: 2904 / 2693,
  17853. bottom: 0.06
  17854. }
  17855. },
  17856. front: {
  17857. height: math.unit(5 + 2 / 12, "feet"),
  17858. weight: math.unit(120, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/roxi/front.svg",
  17862. extra: 2028 / 1907,
  17863. bottom: 0.01
  17864. }
  17865. },
  17866. frontAlt: {
  17867. height: math.unit(5 + 2 / 12, "feet"),
  17868. weight: math.unit(120, "lb"),
  17869. name: "Front (Alt)",
  17870. image: {
  17871. source: "./media/characters/roxi/front-alt.svg",
  17872. extra: 1828 / 1798,
  17873. bottom: 0.01
  17874. }
  17875. },
  17876. sitting: {
  17877. height: math.unit(2.8, "feet"),
  17878. weight: math.unit(120, "lb"),
  17879. name: "Sitting",
  17880. image: {
  17881. source: "./media/characters/roxi/sitting.svg",
  17882. extra: 2660 / 2462,
  17883. bottom: 0.1
  17884. }
  17885. },
  17886. },
  17887. [
  17888. {
  17889. name: "Normal",
  17890. height: math.unit(5 + 2 / 12, "feet"),
  17891. default: true
  17892. },
  17893. ]
  17894. ))
  17895. characterMakers.push(() => makeCharacter(
  17896. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17897. {
  17898. side: {
  17899. height: math.unit(55, "feet"),
  17900. weight: math.unit(153, "tons"),
  17901. name: "Side",
  17902. image: {
  17903. source: "./media/characters/shadow/side.svg",
  17904. extra: 701 / 628,
  17905. bottom: 0.02
  17906. }
  17907. },
  17908. flying: {
  17909. height: math.unit(145, "feet"),
  17910. weight: math.unit(153, "tons"),
  17911. name: "Flying",
  17912. image: {
  17913. source: "./media/characters/shadow/flying.svg"
  17914. }
  17915. },
  17916. },
  17917. [
  17918. {
  17919. name: "Normal",
  17920. height: math.unit(55, "feet"),
  17921. default: true
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17927. {
  17928. front: {
  17929. height: math.unit(6, "feet"),
  17930. weight: math.unit(200, "lb"),
  17931. name: "Front",
  17932. image: {
  17933. source: "./media/characters/marcie/front.svg",
  17934. extra: 960 / 876,
  17935. bottom: 58 / 1017.87
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Macro",
  17942. height: math.unit(1, "mile"),
  17943. default: true
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(7, "feet"),
  17952. weight: math.unit(200, "lb"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/kachina/front.svg",
  17956. extra: 1290.68 / 1119,
  17957. bottom: 36.5 / 1327.18
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Normal",
  17964. height: math.unit(7, "feet"),
  17965. default: true
  17966. },
  17967. ]
  17968. ))
  17969. characterMakers.push(() => makeCharacter(
  17970. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17971. {
  17972. looking: {
  17973. height: math.unit(2, "meters"),
  17974. weight: math.unit(300, "kg"),
  17975. name: "Looking",
  17976. image: {
  17977. source: "./media/characters/kash/looking.svg",
  17978. extra: 474 / 344,
  17979. bottom: 0.03
  17980. }
  17981. },
  17982. side: {
  17983. height: math.unit(2, "meters"),
  17984. weight: math.unit(300, "kg"),
  17985. name: "Side",
  17986. image: {
  17987. source: "./media/characters/kash/side.svg",
  17988. extra: 302 / 251,
  17989. bottom: 0.03
  17990. }
  17991. },
  17992. front: {
  17993. height: math.unit(2, "meters"),
  17994. weight: math.unit(300, "kg"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/kash/front.svg",
  17998. extra: 495 / 360,
  17999. bottom: 0.015
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Normal",
  18006. height: math.unit(2, "meters"),
  18007. default: true
  18008. },
  18009. {
  18010. name: "Big",
  18011. height: math.unit(3, "meters")
  18012. },
  18013. {
  18014. name: "Large",
  18015. height: math.unit(5, "meters")
  18016. },
  18017. ]
  18018. ))
  18019. characterMakers.push(() => makeCharacter(
  18020. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18021. {
  18022. feeding: {
  18023. height: math.unit(6.7, "feet"),
  18024. weight: math.unit(350, "lb"),
  18025. name: "Feeding",
  18026. image: {
  18027. source: "./media/characters/lalim/feeding.svg",
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Normal",
  18034. height: math.unit(6.7, "feet"),
  18035. default: true
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18041. {
  18042. front: {
  18043. height: math.unit(9.5, "feet"),
  18044. weight: math.unit(600, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/de'vout/front.svg",
  18048. extra: 1443 / 1328,
  18049. bottom: 0.025
  18050. }
  18051. },
  18052. back: {
  18053. height: math.unit(9.5, "feet"),
  18054. weight: math.unit(600, "lb"),
  18055. name: "Back",
  18056. image: {
  18057. source: "./media/characters/de'vout/back.svg",
  18058. extra: 1443 / 1328
  18059. }
  18060. },
  18061. frontDressed: {
  18062. height: math.unit(9.5, "feet"),
  18063. weight: math.unit(600, "lb"),
  18064. name: "Front (Dressed",
  18065. image: {
  18066. source: "./media/characters/de'vout/front-dressed.svg",
  18067. extra: 1443 / 1328,
  18068. bottom: 0.025
  18069. }
  18070. },
  18071. backDressed: {
  18072. height: math.unit(9.5, "feet"),
  18073. weight: math.unit(600, "lb"),
  18074. name: "Back (Dressed",
  18075. image: {
  18076. source: "./media/characters/de'vout/back-dressed.svg",
  18077. extra: 1443 / 1328
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(9.5, "feet"),
  18085. default: true
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(8, "feet"),
  18094. weight: math.unit(225, "lb"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/talana/front.svg",
  18098. extra: 1410 / 1300,
  18099. bottom: 0.015
  18100. }
  18101. },
  18102. frontDressed: {
  18103. height: math.unit(8, "feet"),
  18104. weight: math.unit(225, "lb"),
  18105. name: "Front (Dressed",
  18106. image: {
  18107. source: "./media/characters/talana/front-dressed.svg",
  18108. extra: 1410 / 1300,
  18109. bottom: 0.015
  18110. }
  18111. },
  18112. },
  18113. [
  18114. {
  18115. name: "Normal",
  18116. height: math.unit(8, "feet"),
  18117. default: true
  18118. },
  18119. ]
  18120. ))
  18121. characterMakers.push(() => makeCharacter(
  18122. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18123. {
  18124. side: {
  18125. height: math.unit(7.2, "feet"),
  18126. weight: math.unit(150, "lb"),
  18127. name: "Side",
  18128. image: {
  18129. source: "./media/characters/xeauvok/side.svg",
  18130. extra: 1975 / 1523,
  18131. bottom: 0.07
  18132. }
  18133. },
  18134. },
  18135. [
  18136. {
  18137. name: "Normal",
  18138. height: math.unit(7.2, "feet"),
  18139. default: true
  18140. },
  18141. ]
  18142. ))
  18143. characterMakers.push(() => makeCharacter(
  18144. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18145. {
  18146. side: {
  18147. height: math.unit(10, "feet"),
  18148. weight: math.unit(900, "kg"),
  18149. name: "Side",
  18150. image: {
  18151. source: "./media/characters/zara/side.svg",
  18152. extra: 504 / 498
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(10, "feet"),
  18160. default: true
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18166. {
  18167. side: {
  18168. height: math.unit(6, "feet"),
  18169. weight: math.unit(150, "lb"),
  18170. name: "Side",
  18171. image: {
  18172. source: "./media/characters/richard-dragon/side.svg",
  18173. extra: 845 / 340,
  18174. bottom: 0.017
  18175. }
  18176. },
  18177. maw: {
  18178. height: math.unit(2.97, "feet"),
  18179. name: "Maw",
  18180. image: {
  18181. source: "./media/characters/richard-dragon/maw.svg"
  18182. }
  18183. },
  18184. },
  18185. [
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18190. {
  18191. front: {
  18192. height: math.unit(4, "feet"),
  18193. weight: math.unit(100, "lb"),
  18194. name: "Front",
  18195. image: {
  18196. source: "./media/characters/richard-smeargle/front.svg",
  18197. extra: 2952 / 2820,
  18198. bottom: 0.028
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Normal",
  18205. height: math.unit(4, "feet"),
  18206. default: true
  18207. },
  18208. {
  18209. name: "Dynamax",
  18210. height: math.unit(20, "meters")
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18216. {
  18217. front: {
  18218. height: math.unit(6, "feet"),
  18219. weight: math.unit(110, "lb"),
  18220. name: "Front",
  18221. image: {
  18222. source: "./media/characters/klay/front.svg",
  18223. extra: 962 / 883,
  18224. bottom: 0.04
  18225. }
  18226. },
  18227. back: {
  18228. height: math.unit(6, "feet"),
  18229. weight: math.unit(110, "lb"),
  18230. name: "Back",
  18231. image: {
  18232. source: "./media/characters/klay/back.svg",
  18233. extra: 962 / 883
  18234. }
  18235. },
  18236. beans: {
  18237. height: math.unit(1.15, "feet"),
  18238. name: "Beans",
  18239. image: {
  18240. source: "./media/characters/klay/beans.svg"
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Micro",
  18247. height: math.unit(6, "inches")
  18248. },
  18249. {
  18250. name: "Mini",
  18251. height: math.unit(3, "feet")
  18252. },
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(6, "feet"),
  18256. default: true
  18257. },
  18258. {
  18259. name: "Big",
  18260. height: math.unit(25, "feet")
  18261. },
  18262. {
  18263. name: "Macro",
  18264. height: math.unit(100, "feet")
  18265. },
  18266. {
  18267. name: "Megamacro",
  18268. height: math.unit(400, "feet")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(6, "feet"),
  18277. weight: math.unit(160, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/marcus/front.svg",
  18281. extra: 734 / 676,
  18282. bottom: 0.03
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Little",
  18289. height: math.unit(6, "feet")
  18290. },
  18291. {
  18292. name: "Normal",
  18293. height: math.unit(110, "feet"),
  18294. default: true
  18295. },
  18296. {
  18297. name: "Macro",
  18298. height: math.unit(250, "feet")
  18299. },
  18300. {
  18301. name: "Megamacro",
  18302. height: math.unit(1000, "feet")
  18303. },
  18304. ]
  18305. ))
  18306. characterMakers.push(() => makeCharacter(
  18307. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18308. {
  18309. front: {
  18310. height: math.unit(7, "feet"),
  18311. weight: math.unit(275, "lb"),
  18312. name: "Front",
  18313. image: {
  18314. source: "./media/characters/claude-delroute/front.svg",
  18315. extra: 230 / 214,
  18316. bottom: 0.007
  18317. }
  18318. },
  18319. side: {
  18320. height: math.unit(7, "feet"),
  18321. weight: math.unit(275, "lb"),
  18322. name: "Side",
  18323. image: {
  18324. source: "./media/characters/claude-delroute/side.svg",
  18325. extra: 222 / 214,
  18326. bottom: 0.01
  18327. }
  18328. },
  18329. back: {
  18330. height: math.unit(7, "feet"),
  18331. weight: math.unit(275, "lb"),
  18332. name: "Back",
  18333. image: {
  18334. source: "./media/characters/claude-delroute/back.svg",
  18335. extra: 230 / 214,
  18336. bottom: 0.015
  18337. }
  18338. },
  18339. maw: {
  18340. height: math.unit(0.6407, "meters"),
  18341. name: "Maw",
  18342. image: {
  18343. source: "./media/characters/claude-delroute/maw.svg"
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Normal",
  18350. height: math.unit(7, "feet"),
  18351. default: true
  18352. },
  18353. {
  18354. name: "Lorge",
  18355. height: math.unit(20, "feet")
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(8 + 4 / 12, "feet"),
  18364. weight: math.unit(600, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/dragonien/front.svg",
  18368. extra: 100 / 94,
  18369. bottom: 3.3 / 103.3445
  18370. }
  18371. },
  18372. back: {
  18373. height: math.unit(8 + 4 / 12, "feet"),
  18374. weight: math.unit(600, "lb"),
  18375. name: "Back",
  18376. image: {
  18377. source: "./media/characters/dragonien/back.svg",
  18378. extra: 776 / 746,
  18379. bottom: 6.4 / 782.0616
  18380. }
  18381. },
  18382. foot: {
  18383. height: math.unit(1.54, "feet"),
  18384. name: "Foot",
  18385. image: {
  18386. source: "./media/characters/dragonien/foot.svg",
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(8 + 4 / 12, "feet"),
  18394. default: true
  18395. },
  18396. {
  18397. name: "Macro",
  18398. height: math.unit(200, "feet")
  18399. },
  18400. {
  18401. name: "Megamacro",
  18402. height: math.unit(1, "mile")
  18403. },
  18404. {
  18405. name: "Gigamacro",
  18406. height: math.unit(1000, "miles")
  18407. },
  18408. ]
  18409. ))
  18410. characterMakers.push(() => makeCharacter(
  18411. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18412. {
  18413. front: {
  18414. height: math.unit(5 + 2 / 12, "feet"),
  18415. weight: math.unit(110, "lb"),
  18416. name: "Front",
  18417. image: {
  18418. source: "./media/characters/desta/front.svg",
  18419. extra: 767 / 726,
  18420. bottom: 11.7 / 779
  18421. }
  18422. },
  18423. back: {
  18424. height: math.unit(5 + 2 / 12, "feet"),
  18425. weight: math.unit(110, "lb"),
  18426. name: "Back",
  18427. image: {
  18428. source: "./media/characters/desta/back.svg",
  18429. extra: 777 / 728,
  18430. bottom: 6 / 784
  18431. }
  18432. },
  18433. frontAlt: {
  18434. height: math.unit(5 + 2 / 12, "feet"),
  18435. weight: math.unit(110, "lb"),
  18436. name: "Front",
  18437. image: {
  18438. source: "./media/characters/desta/front-alt.svg",
  18439. extra: 1482 / 1417
  18440. }
  18441. },
  18442. side: {
  18443. height: math.unit(5 + 2 / 12, "feet"),
  18444. weight: math.unit(110, "lb"),
  18445. name: "Side",
  18446. image: {
  18447. source: "./media/characters/desta/side.svg",
  18448. extra: 2579 / 2491,
  18449. bottom: 0.053
  18450. }
  18451. },
  18452. },
  18453. [
  18454. {
  18455. name: "Micro",
  18456. height: math.unit(6, "inches")
  18457. },
  18458. {
  18459. name: "Normal",
  18460. height: math.unit(5 + 2 / 12, "feet"),
  18461. default: true
  18462. },
  18463. {
  18464. name: "Macro",
  18465. height: math.unit(62, "feet")
  18466. },
  18467. {
  18468. name: "Megamacro",
  18469. height: math.unit(1800, "feet")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18475. {
  18476. front: {
  18477. height: math.unit(10, "feet"),
  18478. weight: math.unit(700, "lb"),
  18479. name: "Front",
  18480. image: {
  18481. source: "./media/characters/storm-alystar/front.svg",
  18482. extra: 2112 / 1898,
  18483. bottom: 0.034
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Micro",
  18490. height: math.unit(3.5, "inches")
  18491. },
  18492. {
  18493. name: "Normal",
  18494. height: math.unit(10, "feet"),
  18495. default: true
  18496. },
  18497. {
  18498. name: "Macro",
  18499. height: math.unit(400, "feet")
  18500. },
  18501. {
  18502. name: "Deific",
  18503. height: math.unit(60, "miles")
  18504. },
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18509. {
  18510. front: {
  18511. height: math.unit(2.35, "meters"),
  18512. weight: math.unit(119, "kg"),
  18513. name: "Front",
  18514. image: {
  18515. source: "./media/characters/ilia/front.svg",
  18516. extra: 1285 / 1255,
  18517. bottom: 0.06
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(2.35, "meters")
  18525. },
  18526. {
  18527. name: "Macro",
  18528. height: math.unit(140, "meters"),
  18529. default: true
  18530. },
  18531. {
  18532. name: "Megamacro",
  18533. height: math.unit(100, "miles")
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18539. {
  18540. front: {
  18541. height: math.unit(6 + 5 / 12, "feet"),
  18542. weight: math.unit(190, "lb"),
  18543. name: "Front",
  18544. image: {
  18545. source: "./media/characters/kingdead/front.svg",
  18546. extra: 1228 / 1177
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Micro",
  18553. height: math.unit(7, "inches")
  18554. },
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(6 + 5 / 12, "feet")
  18558. },
  18559. {
  18560. name: "Macro",
  18561. height: math.unit(150, "feet"),
  18562. default: true
  18563. },
  18564. {
  18565. name: "Megamacro",
  18566. height: math.unit(200, "miles")
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18572. {
  18573. front: {
  18574. height: math.unit(8, "feet"),
  18575. weight: math.unit(600, "lb"),
  18576. name: "Front",
  18577. image: {
  18578. source: "./media/characters/kyrehx/front.svg",
  18579. extra: 1195 / 1095,
  18580. bottom: 0.034
  18581. }
  18582. },
  18583. },
  18584. [
  18585. {
  18586. name: "Micro",
  18587. height: math.unit(2, "inches")
  18588. },
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(8, "feet"),
  18592. default: true
  18593. },
  18594. {
  18595. name: "Macro",
  18596. height: math.unit(255, "feet")
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18602. {
  18603. front: {
  18604. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18605. weight: math.unit(184, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/xang/front.svg",
  18609. extra: 845 / 755
  18610. }
  18611. },
  18612. },
  18613. [
  18614. {
  18615. name: "Normal",
  18616. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18617. default: true
  18618. },
  18619. {
  18620. name: "Macro",
  18621. height: math.unit(0.935 * 146, "feet")
  18622. },
  18623. {
  18624. name: "Megamacro",
  18625. height: math.unit(0.935 * 3, "miles")
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18631. {
  18632. frontDressed: {
  18633. height: math.unit(5 + 7 / 12, "feet"),
  18634. weight: math.unit(140, "lb"),
  18635. name: "Front (Dressed)",
  18636. image: {
  18637. source: "./media/characters/doc-weardno/front-dressed.svg",
  18638. extra: 263 / 234
  18639. }
  18640. },
  18641. backDressed: {
  18642. height: math.unit(5 + 7 / 12, "feet"),
  18643. weight: math.unit(140, "lb"),
  18644. name: "Back (Dressed)",
  18645. image: {
  18646. source: "./media/characters/doc-weardno/back-dressed.svg",
  18647. extra: 266 / 238
  18648. }
  18649. },
  18650. front: {
  18651. height: math.unit(5 + 7 / 12, "feet"),
  18652. weight: math.unit(140, "lb"),
  18653. name: "Front",
  18654. image: {
  18655. source: "./media/characters/doc-weardno/front.svg",
  18656. extra: 254 / 233
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Micro",
  18663. height: math.unit(3, "inches")
  18664. },
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(5 + 7 / 12, "feet"),
  18668. default: true
  18669. },
  18670. {
  18671. name: "Macro",
  18672. height: math.unit(25, "feet")
  18673. },
  18674. {
  18675. name: "Megamacro",
  18676. height: math.unit(2, "miles")
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18682. {
  18683. front: {
  18684. height: math.unit(6 + 2 / 12, "feet"),
  18685. weight: math.unit(153, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/seth-whilst/front.svg",
  18689. bottom: 0.07
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Micro",
  18696. height: math.unit(5, "inches")
  18697. },
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(6 + 2 / 12, "feet"),
  18701. default: true
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18707. {
  18708. front: {
  18709. height: math.unit(3, "inches"),
  18710. weight: math.unit(8, "grams"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/pocket-jabari/front.svg",
  18714. extra: 1024 / 974,
  18715. bottom: 0.039
  18716. }
  18717. },
  18718. },
  18719. [
  18720. {
  18721. name: "Minimicro",
  18722. height: math.unit(8, "mm")
  18723. },
  18724. {
  18725. name: "Micro",
  18726. height: math.unit(3, "inches"),
  18727. default: true
  18728. },
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(3, "feet")
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18737. {
  18738. front: {
  18739. height: math.unit(15, "feet"),
  18740. weight: math.unit(3280, "lb"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/sapphy/front.svg",
  18744. extra: 671 / 577,
  18745. bottom: 0.085
  18746. }
  18747. },
  18748. back: {
  18749. height: math.unit(15, "feet"),
  18750. weight: math.unit(3280, "lb"),
  18751. name: "Back",
  18752. image: {
  18753. source: "./media/characters/sapphy/back.svg",
  18754. extra: 631 / 607,
  18755. bottom: 0.045
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Normal",
  18762. height: math.unit(15, "feet")
  18763. },
  18764. {
  18765. name: "Casual Macro",
  18766. height: math.unit(120, "feet")
  18767. },
  18768. {
  18769. name: "Macro",
  18770. height: math.unit(2150, "feet"),
  18771. default: true
  18772. },
  18773. {
  18774. name: "Megamacro",
  18775. height: math.unit(8, "miles")
  18776. },
  18777. {
  18778. name: "Galaxy Mom",
  18779. height: math.unit(6, "megalightyears")
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(6, "feet"),
  18788. weight: math.unit(170, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/kiro/front.svg",
  18792. extra: 1064 / 1012,
  18793. bottom: 0.052
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Micro",
  18800. height: math.unit(6, "inches")
  18801. },
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(6, "feet"),
  18805. default: true
  18806. },
  18807. {
  18808. name: "Macro",
  18809. height: math.unit(72, "feet")
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(5 + 9 / 12, "feet"),
  18818. weight: math.unit(175, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/irishfox/front.svg",
  18822. extra: 1912 / 1680,
  18823. bottom: 0.02
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Nano",
  18830. height: math.unit(1, "mm")
  18831. },
  18832. {
  18833. name: "Micro",
  18834. height: math.unit(2, "inches")
  18835. },
  18836. {
  18837. name: "Normal",
  18838. height: math.unit(5 + 9 / 12, "feet"),
  18839. default: true
  18840. },
  18841. {
  18842. name: "Macro",
  18843. height: math.unit(45, "feet")
  18844. },
  18845. ]
  18846. ))
  18847. characterMakers.push(() => makeCharacter(
  18848. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18849. {
  18850. front: {
  18851. height: math.unit(6 + 1 / 12, "feet"),
  18852. weight: math.unit(75, "lb"),
  18853. name: "Front",
  18854. image: {
  18855. source: "./media/characters/aronai-sieyes/front.svg",
  18856. extra: 1556 / 1480,
  18857. bottom: 0.015
  18858. }
  18859. },
  18860. side: {
  18861. height: math.unit(6 + 1 / 12, "feet"),
  18862. weight: math.unit(75, "lb"),
  18863. name: "Side",
  18864. image: {
  18865. source: "./media/characters/aronai-sieyes/side.svg",
  18866. extra: 1433 / 1390,
  18867. bottom: 0.0393
  18868. }
  18869. },
  18870. back: {
  18871. height: math.unit(6 + 1 / 12, "feet"),
  18872. weight: math.unit(75, "lb"),
  18873. name: "Back",
  18874. image: {
  18875. source: "./media/characters/aronai-sieyes/back.svg",
  18876. extra: 1544 / 1494,
  18877. bottom: 0.02
  18878. }
  18879. },
  18880. frontClothed: {
  18881. height: math.unit(6 + 1 / 12, "feet"),
  18882. weight: math.unit(75, "lb"),
  18883. name: "Front (Clothed)",
  18884. image: {
  18885. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18886. extra: 1582 / 1527
  18887. }
  18888. },
  18889. feral: {
  18890. height: math.unit(18, "feet"),
  18891. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18892. name: "Feral",
  18893. image: {
  18894. source: "./media/characters/aronai-sieyes/feral.svg",
  18895. extra: 1530 / 1240,
  18896. bottom: 0.035
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Micro",
  18903. height: math.unit(2, "inches")
  18904. },
  18905. {
  18906. name: "Normal",
  18907. height: math.unit(6 + 1 / 12, "feet"),
  18908. default: true
  18909. }
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18914. {
  18915. front: {
  18916. height: math.unit(12, "feet"),
  18917. weight: math.unit(410, "kg"),
  18918. name: "Front",
  18919. image: {
  18920. source: "./media/characters/xuna/front.svg",
  18921. extra: 2184 / 1980
  18922. }
  18923. },
  18924. side: {
  18925. height: math.unit(12, "feet"),
  18926. weight: math.unit(410, "kg"),
  18927. name: "Side",
  18928. image: {
  18929. source: "./media/characters/xuna/side.svg",
  18930. extra: 2184 / 1980
  18931. }
  18932. },
  18933. back: {
  18934. height: math.unit(12, "feet"),
  18935. weight: math.unit(410, "kg"),
  18936. name: "Back",
  18937. image: {
  18938. source: "./media/characters/xuna/back.svg",
  18939. extra: 2184 / 1980
  18940. }
  18941. },
  18942. },
  18943. [
  18944. {
  18945. name: "Nano glow",
  18946. height: math.unit(10, "nm")
  18947. },
  18948. {
  18949. name: "Micro floof",
  18950. height: math.unit(0.3, "m")
  18951. },
  18952. {
  18953. name: "Huggable softy boi",
  18954. height: math.unit(3.6576, "m"),
  18955. default: true
  18956. },
  18957. {
  18958. name: "Admirable floof",
  18959. height: math.unit(80, "meters")
  18960. },
  18961. {
  18962. name: "Gentle macro",
  18963. height: math.unit(300, "meters")
  18964. },
  18965. {
  18966. name: "Very careful floof",
  18967. height: math.unit(3200, "meters")
  18968. },
  18969. {
  18970. name: "The mega floof",
  18971. height: math.unit(36000, "meters")
  18972. },
  18973. {
  18974. name: "Giga-fur-Wicker",
  18975. height: math.unit(4800000, "meters")
  18976. },
  18977. {
  18978. name: "Licky world",
  18979. height: math.unit(20000000, "meters")
  18980. },
  18981. {
  18982. name: "Floofy cyan sun",
  18983. height: math.unit(1500000000, "meters")
  18984. },
  18985. {
  18986. name: "Milky Wicker",
  18987. height: math.unit(1000000000000000000000, "meters")
  18988. },
  18989. {
  18990. name: "The observing Wicker",
  18991. height: math.unit(999999999999999999999999999, "meters")
  18992. },
  18993. ]
  18994. ))
  18995. characterMakers.push(() => makeCharacter(
  18996. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18997. {
  18998. front: {
  18999. height: math.unit(5 + 9 / 12, "feet"),
  19000. weight: math.unit(150, "lb"),
  19001. name: "Front",
  19002. image: {
  19003. source: "./media/characters/arokha-sieyes/front.svg",
  19004. extra: 1425 / 1284,
  19005. bottom: 0.05
  19006. }
  19007. },
  19008. },
  19009. [
  19010. {
  19011. name: "Normal",
  19012. height: math.unit(5 + 9 / 12, "feet")
  19013. },
  19014. {
  19015. name: "Macro",
  19016. height: math.unit(30, "meters"),
  19017. default: true
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19023. {
  19024. front: {
  19025. height: math.unit(6, "feet"),
  19026. weight: math.unit(180, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/arokh-sieyes/front.svg",
  19030. extra: 1830 / 1769,
  19031. bottom: 0.01
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Normal",
  19038. height: math.unit(6, "feet")
  19039. },
  19040. {
  19041. name: "Macro",
  19042. height: math.unit(30, "meters"),
  19043. default: true
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19049. {
  19050. side: {
  19051. height: math.unit(13 + 1 / 12, "feet"),
  19052. weight: math.unit(8.5, "tonnes"),
  19053. name: "Side",
  19054. image: {
  19055. source: "./media/characters/goldeneye/side.svg",
  19056. extra: 1182 / 778,
  19057. bottom: 0.067
  19058. }
  19059. },
  19060. paw: {
  19061. height: math.unit(3.4, "feet"),
  19062. name: "Paw",
  19063. image: {
  19064. source: "./media/characters/goldeneye/paw.svg"
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(13 + 1 / 12, "feet"),
  19072. default: true
  19073. },
  19074. ]
  19075. ))
  19076. characterMakers.push(() => makeCharacter(
  19077. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19078. {
  19079. front: {
  19080. height: math.unit(6 + 1 / 12, "feet"),
  19081. weight: math.unit(210, "lb"),
  19082. name: "Front",
  19083. image: {
  19084. source: "./media/characters/leonardo-lycheborne/front.svg",
  19085. extra: 390 / 365,
  19086. bottom: 0.032
  19087. }
  19088. },
  19089. side: {
  19090. height: math.unit(6 + 1 / 12, "feet"),
  19091. weight: math.unit(210, "lb"),
  19092. name: "Side",
  19093. image: {
  19094. source: "./media/characters/leonardo-lycheborne/side.svg",
  19095. extra: 390 / 365,
  19096. bottom: 0.005
  19097. }
  19098. },
  19099. back: {
  19100. height: math.unit(6 + 1 / 12, "feet"),
  19101. weight: math.unit(210, "lb"),
  19102. name: "Back",
  19103. image: {
  19104. source: "./media/characters/leonardo-lycheborne/back.svg",
  19105. extra: 392 / 366,
  19106. bottom: 0.01
  19107. }
  19108. },
  19109. hand: {
  19110. height: math.unit(1.08, "feet"),
  19111. name: "Hand",
  19112. image: {
  19113. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19114. }
  19115. },
  19116. foot: {
  19117. height: math.unit(1.32, "feet"),
  19118. name: "Foot",
  19119. image: {
  19120. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19121. }
  19122. },
  19123. were: {
  19124. height: math.unit(20, "feet"),
  19125. weight: math.unit(7800, "lb"),
  19126. name: "Were",
  19127. image: {
  19128. source: "./media/characters/leonardo-lycheborne/were.svg",
  19129. extra: 308 / 294,
  19130. bottom: 0.048
  19131. }
  19132. },
  19133. feral: {
  19134. height: math.unit(7.5, "feet"),
  19135. weight: math.unit(600, "lb"),
  19136. name: "Feral",
  19137. image: {
  19138. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19139. extra: 210 / 186,
  19140. bottom: 0.108
  19141. }
  19142. },
  19143. taur: {
  19144. height: math.unit(11, "feet"),
  19145. weight: math.unit(3300, "lb"),
  19146. name: "Taur",
  19147. image: {
  19148. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19149. extra: 320 / 303,
  19150. bottom: 0.025
  19151. }
  19152. },
  19153. barghest: {
  19154. height: math.unit(11, "feet"),
  19155. weight: math.unit(1300, "lb"),
  19156. name: "Barghest",
  19157. image: {
  19158. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19159. extra: 323 / 302,
  19160. bottom: 0.027
  19161. }
  19162. },
  19163. dick: {
  19164. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19165. name: "Dick",
  19166. image: {
  19167. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19168. }
  19169. },
  19170. dickWere: {
  19171. height: math.unit((20) / 3.8, "feet"),
  19172. name: "Dick (Were)",
  19173. image: {
  19174. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Normal",
  19181. height: math.unit(6 + 1 / 12, "feet"),
  19182. default: true
  19183. },
  19184. ]
  19185. ))
  19186. characterMakers.push(() => makeCharacter(
  19187. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19188. {
  19189. front: {
  19190. height: math.unit(10, "feet"),
  19191. weight: math.unit(350, "lb"),
  19192. name: "Front",
  19193. image: {
  19194. source: "./media/characters/jet/front.svg",
  19195. extra: 2050 / 1980,
  19196. bottom: 0.013
  19197. }
  19198. },
  19199. back: {
  19200. height: math.unit(10, "feet"),
  19201. weight: math.unit(350, "lb"),
  19202. name: "Back",
  19203. image: {
  19204. source: "./media/characters/jet/back.svg",
  19205. extra: 2050 / 1980,
  19206. bottom: 0.013
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Micro",
  19213. height: math.unit(6, "inches")
  19214. },
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(10, "feet"),
  19218. default: true
  19219. },
  19220. {
  19221. name: "Macro",
  19222. height: math.unit(100, "feet")
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(15, "feet"),
  19231. weight: math.unit(2800, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/tanarath/front.svg",
  19235. extra: 2392 / 2220,
  19236. bottom: 0.03
  19237. }
  19238. },
  19239. back: {
  19240. height: math.unit(15, "feet"),
  19241. weight: math.unit(2800, "lb"),
  19242. name: "Back",
  19243. image: {
  19244. source: "./media/characters/tanarath/back.svg",
  19245. extra: 2392 / 2220,
  19246. bottom: 0.03
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(15, "feet"),
  19254. default: true
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19260. {
  19261. front: {
  19262. height: math.unit(7 + 1 / 12, "feet"),
  19263. weight: math.unit(175, "lb"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/patty-cattybatty/front.svg",
  19267. extra: 908 / 874,
  19268. bottom: 0.025
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Micro",
  19275. height: math.unit(1, "inch")
  19276. },
  19277. {
  19278. name: "Normal",
  19279. height: math.unit(7 + 1 / 12, "feet")
  19280. },
  19281. {
  19282. name: "Mini Macro",
  19283. height: math.unit(155, "feet")
  19284. },
  19285. {
  19286. name: "Macro",
  19287. height: math.unit(1077, "feet")
  19288. },
  19289. {
  19290. name: "Mega Macro",
  19291. height: math.unit(47650, "feet"),
  19292. default: true
  19293. },
  19294. {
  19295. name: "Giga Macro",
  19296. height: math.unit(440, "miles")
  19297. },
  19298. {
  19299. name: "Tera Macro",
  19300. height: math.unit(8700, "miles")
  19301. },
  19302. {
  19303. name: "Planetary Macro",
  19304. height: math.unit(32700, "miles")
  19305. },
  19306. {
  19307. name: "Solar Macro",
  19308. height: math.unit(550000, "miles")
  19309. },
  19310. {
  19311. name: "Celestial Macro",
  19312. height: math.unit(2.5, "AU")
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19318. {
  19319. front: {
  19320. height: math.unit(4 + 5 / 12, "feet"),
  19321. weight: math.unit(90, "lb"),
  19322. name: "Front",
  19323. image: {
  19324. source: "./media/characters/cappu/front.svg",
  19325. extra: 1247 / 1152,
  19326. bottom: 0.012
  19327. }
  19328. },
  19329. },
  19330. [
  19331. {
  19332. name: "Normal",
  19333. height: math.unit(4 + 5 / 12, "feet"),
  19334. default: true
  19335. },
  19336. ]
  19337. ))
  19338. characterMakers.push(() => makeCharacter(
  19339. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19340. {
  19341. frontDressed: {
  19342. height: math.unit(70, "cm"),
  19343. weight: math.unit(6, "kg"),
  19344. name: "Front (Dressed)",
  19345. image: {
  19346. source: "./media/characters/sebi/front-dressed.svg",
  19347. extra: 713.5 / 686.5,
  19348. bottom: 0.003
  19349. }
  19350. },
  19351. front: {
  19352. height: math.unit(70, "cm"),
  19353. weight: math.unit(5, "kg"),
  19354. name: "Front",
  19355. image: {
  19356. source: "./media/characters/sebi/front.svg",
  19357. extra: 713.5 / 686.5,
  19358. bottom: 0.003
  19359. }
  19360. }
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(70, "cm"),
  19366. default: true
  19367. },
  19368. {
  19369. name: "Macro",
  19370. height: math.unit(8, "meters")
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19376. {
  19377. front: {
  19378. height: math.unit(6, "feet"),
  19379. weight: math.unit(150, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/typhek/front.svg",
  19383. extra: 1948 / 1929,
  19384. bottom: 0.025
  19385. }
  19386. },
  19387. side: {
  19388. height: math.unit(6, "feet"),
  19389. weight: math.unit(150, "lb"),
  19390. name: "Side",
  19391. image: {
  19392. source: "./media/characters/typhek/side.svg",
  19393. extra: 2034 / 2010,
  19394. bottom: 0.003
  19395. }
  19396. },
  19397. back: {
  19398. height: math.unit(6, "feet"),
  19399. weight: math.unit(150, "lb"),
  19400. name: "Back",
  19401. image: {
  19402. source: "./media/characters/typhek/back.svg",
  19403. extra: 2005 / 1978,
  19404. bottom: 0.004
  19405. }
  19406. },
  19407. palm: {
  19408. height: math.unit(1.2, "feet"),
  19409. name: "Palm",
  19410. image: {
  19411. source: "./media/characters/typhek/palm.svg"
  19412. }
  19413. },
  19414. fist: {
  19415. height: math.unit(1.1, "feet"),
  19416. name: "Fist",
  19417. image: {
  19418. source: "./media/characters/typhek/fist.svg"
  19419. }
  19420. },
  19421. foot: {
  19422. height: math.unit(1.57, "feet"),
  19423. name: "Foot",
  19424. image: {
  19425. source: "./media/characters/typhek/foot.svg"
  19426. }
  19427. },
  19428. sole: {
  19429. height: math.unit(2.05, "feet"),
  19430. name: "Sole",
  19431. image: {
  19432. source: "./media/characters/typhek/sole.svg"
  19433. }
  19434. },
  19435. },
  19436. [
  19437. {
  19438. name: "Macro",
  19439. height: math.unit(40, "stories"),
  19440. default: true
  19441. },
  19442. {
  19443. name: "Megamacro",
  19444. height: math.unit(1, "mile")
  19445. },
  19446. {
  19447. name: "Gigamacro",
  19448. height: math.unit(4000, "solarradii")
  19449. },
  19450. {
  19451. name: "Universal",
  19452. height: math.unit(1.1, "universes")
  19453. }
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19458. {
  19459. side: {
  19460. height: math.unit(5 + 7 / 12, "feet"),
  19461. weight: math.unit(150, "lb"),
  19462. name: "Side",
  19463. image: {
  19464. source: "./media/characters/kassy/side.svg",
  19465. extra: 1280 / 1225,
  19466. bottom: 0.002
  19467. }
  19468. },
  19469. front: {
  19470. height: math.unit(5 + 7 / 12, "feet"),
  19471. weight: math.unit(150, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/kassy/front.svg",
  19475. extra: 1280 / 1225,
  19476. bottom: 0.025
  19477. }
  19478. },
  19479. back: {
  19480. height: math.unit(5 + 7 / 12, "feet"),
  19481. weight: math.unit(150, "lb"),
  19482. name: "Back",
  19483. image: {
  19484. source: "./media/characters/kassy/back.svg",
  19485. extra: 1280 / 1225,
  19486. bottom: 0.002
  19487. }
  19488. },
  19489. foot: {
  19490. height: math.unit(1.266, "feet"),
  19491. name: "Foot",
  19492. image: {
  19493. source: "./media/characters/kassy/foot.svg"
  19494. }
  19495. },
  19496. },
  19497. [
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(5 + 7 / 12, "feet")
  19501. },
  19502. {
  19503. name: "Macro",
  19504. height: math.unit(137, "feet"),
  19505. default: true
  19506. },
  19507. {
  19508. name: "Megamacro",
  19509. height: math.unit(1, "mile")
  19510. },
  19511. ]
  19512. ))
  19513. characterMakers.push(() => makeCharacter(
  19514. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19515. {
  19516. front: {
  19517. height: math.unit(6 + 1 / 12, "feet"),
  19518. weight: math.unit(200, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/neil/front.svg",
  19522. extra: 1326 / 1250,
  19523. bottom: 0.023
  19524. }
  19525. },
  19526. },
  19527. [
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(6 + 1 / 12, "feet"),
  19531. default: true
  19532. },
  19533. {
  19534. name: "Macro",
  19535. height: math.unit(200, "feet")
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19541. {
  19542. front: {
  19543. height: math.unit(5 + 9 / 12, "feet"),
  19544. weight: math.unit(190, "lb"),
  19545. name: "Front",
  19546. image: {
  19547. source: "./media/characters/atticus/front.svg",
  19548. extra: 2934 / 2785,
  19549. bottom: 0.025
  19550. }
  19551. },
  19552. },
  19553. [
  19554. {
  19555. name: "Normal",
  19556. height: math.unit(5 + 9 / 12, "feet"),
  19557. default: true
  19558. },
  19559. {
  19560. name: "Macro",
  19561. height: math.unit(180, "feet")
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19567. {
  19568. side: {
  19569. height: math.unit(9, "feet"),
  19570. weight: math.unit(650, "lb"),
  19571. name: "Side",
  19572. image: {
  19573. source: "./media/characters/milo/side.svg",
  19574. extra: 2644 / 2310,
  19575. bottom: 0.032
  19576. }
  19577. },
  19578. },
  19579. [
  19580. {
  19581. name: "Normal",
  19582. height: math.unit(9, "feet"),
  19583. default: true
  19584. },
  19585. {
  19586. name: "Macro",
  19587. height: math.unit(300, "feet")
  19588. },
  19589. ]
  19590. ))
  19591. characterMakers.push(() => makeCharacter(
  19592. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19593. {
  19594. side: {
  19595. height: math.unit(8, "meters"),
  19596. weight: math.unit(90000, "kg"),
  19597. name: "Side",
  19598. image: {
  19599. source: "./media/characters/ijzer/side.svg",
  19600. extra: 2756 / 1600,
  19601. bottom: 0.01
  19602. }
  19603. },
  19604. },
  19605. [
  19606. {
  19607. name: "Small",
  19608. height: math.unit(3, "meters")
  19609. },
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(8, "meters"),
  19613. default: true
  19614. },
  19615. {
  19616. name: "Normal+",
  19617. height: math.unit(10, "meters")
  19618. },
  19619. {
  19620. name: "Bigger",
  19621. height: math.unit(24, "meters")
  19622. },
  19623. {
  19624. name: "Huge",
  19625. height: math.unit(80, "meters")
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19631. {
  19632. front: {
  19633. height: math.unit(6 + 2 / 12, "feet"),
  19634. weight: math.unit(153, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/luca-cervicum/front.svg",
  19638. extra: 370 / 327,
  19639. bottom: 0.015
  19640. }
  19641. },
  19642. back: {
  19643. height: math.unit(6 + 2 / 12, "feet"),
  19644. weight: math.unit(153, "lb"),
  19645. name: "Back",
  19646. image: {
  19647. source: "./media/characters/luca-cervicum/back.svg",
  19648. extra: 367 / 333,
  19649. bottom: 0.005
  19650. }
  19651. },
  19652. frontGear: {
  19653. height: math.unit(6 + 2 / 12, "feet"),
  19654. weight: math.unit(173, "lb"),
  19655. name: "Front (Gear)",
  19656. image: {
  19657. source: "./media/characters/luca-cervicum/front-gear.svg",
  19658. extra: 377 / 333,
  19659. bottom: 0.006
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(6 + 2 / 12, "feet"),
  19667. default: true
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19673. {
  19674. front: {
  19675. height: math.unit(6 + 1 / 12, "feet"),
  19676. weight: math.unit(304, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/oliver/front.svg",
  19680. extra: 157 / 143,
  19681. bottom: 0.08
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(6 + 1 / 12, "feet"),
  19689. default: true
  19690. },
  19691. ]
  19692. ))
  19693. characterMakers.push(() => makeCharacter(
  19694. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19695. {
  19696. front: {
  19697. height: math.unit(5 + 7 / 12, "feet"),
  19698. weight: math.unit(140, "lb"),
  19699. name: "Front",
  19700. image: {
  19701. source: "./media/characters/shane/front.svg",
  19702. extra: 304 / 289,
  19703. bottom: 0.005
  19704. }
  19705. },
  19706. },
  19707. [
  19708. {
  19709. name: "Normal",
  19710. height: math.unit(5 + 7 / 12, "feet"),
  19711. default: true
  19712. },
  19713. ]
  19714. ))
  19715. characterMakers.push(() => makeCharacter(
  19716. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19717. {
  19718. front: {
  19719. height: math.unit(5 + 9 / 12, "feet"),
  19720. weight: math.unit(178, "lb"),
  19721. name: "Front",
  19722. image: {
  19723. source: "./media/characters/shin/front.svg",
  19724. extra: 159 / 151,
  19725. bottom: 0.015
  19726. }
  19727. },
  19728. },
  19729. [
  19730. {
  19731. name: "Normal",
  19732. height: math.unit(5 + 9 / 12, "feet"),
  19733. default: true
  19734. },
  19735. ]
  19736. ))
  19737. characterMakers.push(() => makeCharacter(
  19738. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19739. {
  19740. front: {
  19741. height: math.unit(5 + 10 / 12, "feet"),
  19742. weight: math.unit(168, "lb"),
  19743. name: "Front",
  19744. image: {
  19745. source: "./media/characters/xerxes/front.svg",
  19746. extra: 282 / 260,
  19747. bottom: 0.045
  19748. }
  19749. },
  19750. },
  19751. [
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(5 + 10 / 12, "feet"),
  19755. default: true
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19761. {
  19762. front: {
  19763. height: math.unit(6 + 7 / 12, "feet"),
  19764. weight: math.unit(208, "lb"),
  19765. name: "Front",
  19766. image: {
  19767. source: "./media/characters/chaska/front.svg",
  19768. extra: 332 / 319,
  19769. bottom: 0.015
  19770. }
  19771. },
  19772. },
  19773. [
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(6 + 7 / 12, "feet"),
  19777. default: true
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19783. {
  19784. front: {
  19785. height: math.unit(5 + 8 / 12, "feet"),
  19786. weight: math.unit(208, "lb"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/enuk/front.svg",
  19790. extra: 437 / 406,
  19791. bottom: 0.02
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Normal",
  19798. height: math.unit(5 + 8 / 12, "feet"),
  19799. default: true
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19805. {
  19806. front: {
  19807. height: math.unit(5 + 10 / 12, "feet"),
  19808. weight: math.unit(252, "lb"),
  19809. name: "Front",
  19810. image: {
  19811. source: "./media/characters/bruun/front.svg",
  19812. extra: 197 / 187,
  19813. bottom: 0.012
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(5 + 10 / 12, "feet"),
  19821. default: true
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(6 + 10 / 12, "feet"),
  19830. weight: math.unit(255, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/alexeev/front.svg",
  19834. extra: 213 / 200,
  19835. bottom: 0.05
  19836. }
  19837. },
  19838. },
  19839. [
  19840. {
  19841. name: "Normal",
  19842. height: math.unit(6 + 10 / 12, "feet"),
  19843. default: true
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19849. {
  19850. front: {
  19851. height: math.unit(2 + 8 / 12, "feet"),
  19852. weight: math.unit(22, "lb"),
  19853. name: "Front",
  19854. image: {
  19855. source: "./media/characters/evelyn/front.svg",
  19856. extra: 208 / 180
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(2 + 8 / 12, "feet"),
  19864. default: true
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(5 + 9 / 12, "feet"),
  19873. weight: math.unit(139, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/inca/front.svg",
  19877. extra: 294 / 291,
  19878. bottom: 0.03
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Normal",
  19885. height: math.unit(5 + 9 / 12, "feet"),
  19886. default: true
  19887. },
  19888. ]
  19889. ))
  19890. characterMakers.push(() => makeCharacter(
  19891. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19892. {
  19893. front: {
  19894. height: math.unit(5 + 1 / 12, "feet"),
  19895. weight: math.unit(84, "lb"),
  19896. name: "Front",
  19897. image: {
  19898. source: "./media/characters/magdalene/front.svg",
  19899. extra: 293 / 273
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Normal",
  19906. height: math.unit(5 + 1 / 12, "feet"),
  19907. default: true
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19913. {
  19914. front: {
  19915. height: math.unit(6 + 3 / 12, "feet"),
  19916. weight: math.unit(185, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/mera/front.svg",
  19920. extra: 291 / 277,
  19921. bottom: 0.03
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Normal",
  19928. height: math.unit(6 + 3 / 12, "feet"),
  19929. default: true
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19935. {
  19936. front: {
  19937. height: math.unit(6 + 7 / 12, "feet"),
  19938. weight: math.unit(160, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/ceres/front.svg",
  19942. extra: 1023 / 950,
  19943. bottom: 0.027
  19944. }
  19945. },
  19946. back: {
  19947. height: math.unit(6 + 7 / 12, "feet"),
  19948. weight: math.unit(160, "lb"),
  19949. name: "Back",
  19950. image: {
  19951. source: "./media/characters/ceres/back.svg",
  19952. extra: 1023 / 950
  19953. }
  19954. },
  19955. },
  19956. [
  19957. {
  19958. name: "Normal",
  19959. height: math.unit(6 + 7 / 12, "feet"),
  19960. default: true
  19961. },
  19962. ]
  19963. ))
  19964. characterMakers.push(() => makeCharacter(
  19965. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19966. {
  19967. front: {
  19968. height: math.unit(5 + 10 / 12, "feet"),
  19969. weight: math.unit(150, "lb"),
  19970. name: "Front",
  19971. image: {
  19972. source: "./media/characters/kris/front.svg",
  19973. extra: 885 / 803,
  19974. bottom: 0.03
  19975. }
  19976. },
  19977. },
  19978. [
  19979. {
  19980. name: "Normal",
  19981. height: math.unit(5 + 10 / 12, "feet"),
  19982. default: true
  19983. },
  19984. ]
  19985. ))
  19986. characterMakers.push(() => makeCharacter(
  19987. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19988. {
  19989. front: {
  19990. height: math.unit(7, "feet"),
  19991. weight: math.unit(120, "kg"),
  19992. name: "Front",
  19993. image: {
  19994. source: "./media/characters/taluthus/front.svg",
  19995. extra: 903 / 833,
  19996. bottom: 0.015
  19997. }
  19998. },
  19999. },
  20000. [
  20001. {
  20002. name: "Normal",
  20003. height: math.unit(7, "feet"),
  20004. default: true
  20005. },
  20006. {
  20007. name: "Macro",
  20008. height: math.unit(300, "feet")
  20009. },
  20010. ]
  20011. ))
  20012. characterMakers.push(() => makeCharacter(
  20013. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20014. {
  20015. front: {
  20016. height: math.unit(5 + 9 / 12, "feet"),
  20017. weight: math.unit(145, "lb"),
  20018. name: "Front",
  20019. image: {
  20020. source: "./media/characters/dawn/front.svg",
  20021. extra: 2094 / 2016,
  20022. bottom: 0.025
  20023. }
  20024. },
  20025. back: {
  20026. height: math.unit(5 + 9 / 12, "feet"),
  20027. weight: math.unit(160, "lb"),
  20028. name: "Back",
  20029. image: {
  20030. source: "./media/characters/dawn/back.svg",
  20031. extra: 2112 / 2080,
  20032. bottom: 0.005
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Normal",
  20039. height: math.unit(6 + 7 / 12, "feet"),
  20040. default: true
  20041. },
  20042. ]
  20043. ))
  20044. characterMakers.push(() => makeCharacter(
  20045. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20046. {
  20047. anthro: {
  20048. height: math.unit(8 + 3 / 12, "feet"),
  20049. weight: math.unit(450, "lb"),
  20050. name: "Anthro",
  20051. image: {
  20052. source: "./media/characters/arador/anthro.svg",
  20053. extra: 1835 / 1718,
  20054. bottom: 0.025
  20055. }
  20056. },
  20057. feral: {
  20058. height: math.unit(4, "feet"),
  20059. weight: math.unit(200, "lb"),
  20060. name: "Feral",
  20061. image: {
  20062. source: "./media/characters/arador/feral.svg",
  20063. extra: 1683 / 1514,
  20064. bottom: 0.07
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(8 + 3 / 12, "feet")
  20072. },
  20073. {
  20074. name: "Macro",
  20075. height: math.unit(82.5, "feet"),
  20076. default: true
  20077. },
  20078. ]
  20079. ))
  20080. characterMakers.push(() => makeCharacter(
  20081. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20082. {
  20083. front: {
  20084. height: math.unit(5 + 10 / 12, "feet"),
  20085. weight: math.unit(125, "lb"),
  20086. name: "Front",
  20087. image: {
  20088. source: "./media/characters/dharsi/front.svg",
  20089. extra: 716 / 630,
  20090. bottom: 0.035
  20091. }
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Nano",
  20097. height: math.unit(100, "nm")
  20098. },
  20099. {
  20100. name: "Micro",
  20101. height: math.unit(2, "inches")
  20102. },
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(5 + 10 / 12, "feet"),
  20106. default: true
  20107. },
  20108. {
  20109. name: "Macro",
  20110. height: math.unit(1000, "feet")
  20111. },
  20112. {
  20113. name: "Megamacro",
  20114. height: math.unit(10, "miles")
  20115. },
  20116. {
  20117. name: "Gigamacro",
  20118. height: math.unit(3000, "miles")
  20119. },
  20120. {
  20121. name: "Teramacro",
  20122. height: math.unit(500000, "miles")
  20123. },
  20124. {
  20125. name: "Teramacro+",
  20126. height: math.unit(30, "galaxies")
  20127. },
  20128. ]
  20129. ))
  20130. characterMakers.push(() => makeCharacter(
  20131. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20132. {
  20133. front: {
  20134. height: math.unit(6, "feet"),
  20135. weight: math.unit(150, "lb"),
  20136. name: "Front",
  20137. image: {
  20138. source: "./media/characters/deathy/front.svg",
  20139. extra: 1552 / 1463,
  20140. bottom: 0.025
  20141. }
  20142. },
  20143. side: {
  20144. height: math.unit(6, "feet"),
  20145. weight: math.unit(150, "lb"),
  20146. name: "Side",
  20147. image: {
  20148. source: "./media/characters/deathy/side.svg",
  20149. extra: 1604 / 1455,
  20150. bottom: 0.025
  20151. }
  20152. },
  20153. back: {
  20154. height: math.unit(6, "feet"),
  20155. weight: math.unit(150, "lb"),
  20156. name: "Back",
  20157. image: {
  20158. source: "./media/characters/deathy/back.svg",
  20159. extra: 1580 / 1463,
  20160. bottom: 0.005
  20161. }
  20162. },
  20163. },
  20164. [
  20165. {
  20166. name: "Micro",
  20167. height: math.unit(5, "millimeters")
  20168. },
  20169. {
  20170. name: "Normal",
  20171. height: math.unit(6 + 5 / 12, "feet"),
  20172. default: true
  20173. },
  20174. ]
  20175. ))
  20176. characterMakers.push(() => makeCharacter(
  20177. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20178. {
  20179. front: {
  20180. height: math.unit(16, "feet"),
  20181. weight: math.unit(4000, "lb"),
  20182. name: "Front",
  20183. image: {
  20184. source: "./media/characters/juniper/front.svg",
  20185. bottom: 0.04
  20186. }
  20187. },
  20188. },
  20189. [
  20190. {
  20191. name: "Normal",
  20192. height: math.unit(16, "feet"),
  20193. default: true
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20199. {
  20200. front: {
  20201. height: math.unit(6, "feet"),
  20202. weight: math.unit(150, "lb"),
  20203. name: "Front",
  20204. image: {
  20205. source: "./media/characters/hipster/front.svg",
  20206. extra: 1312 / 1209,
  20207. bottom: 0.025
  20208. }
  20209. },
  20210. back: {
  20211. height: math.unit(6, "feet"),
  20212. weight: math.unit(150, "lb"),
  20213. name: "Back",
  20214. image: {
  20215. source: "./media/characters/hipster/back.svg",
  20216. extra: 1281 / 1196,
  20217. bottom: 0.01
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Micro",
  20224. height: math.unit(1, "mm")
  20225. },
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(4, "inches"),
  20229. default: true
  20230. },
  20231. {
  20232. name: "Macro",
  20233. height: math.unit(500, "feet")
  20234. },
  20235. {
  20236. name: "Megamacro",
  20237. height: math.unit(1000, "miles")
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(6, "feet"),
  20246. weight: math.unit(150, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/tendirmuldr/front.svg",
  20250. extra: 1878 / 1772,
  20251. bottom: 0.015
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Megamacro",
  20258. height: math.unit(1500, "miles"),
  20259. default: true
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20265. {
  20266. front: {
  20267. height: math.unit(14, "feet"),
  20268. weight: math.unit(12000, "lb"),
  20269. name: "Front",
  20270. image: {
  20271. source: "./media/characters/mort/front.svg",
  20272. extra: 365 / 318,
  20273. bottom: 0.01
  20274. }
  20275. },
  20276. side: {
  20277. height: math.unit(14, "feet"),
  20278. weight: math.unit(12000, "lb"),
  20279. name: "Side",
  20280. image: {
  20281. source: "./media/characters/mort/side.svg",
  20282. extra: 365 / 318,
  20283. bottom: 0.052
  20284. },
  20285. default: true
  20286. },
  20287. back: {
  20288. height: math.unit(14, "feet"),
  20289. weight: math.unit(12000, "lb"),
  20290. name: "Back",
  20291. image: {
  20292. source: "./media/characters/mort/back.svg",
  20293. extra: 371 / 332,
  20294. bottom: 0.18
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(14, "feet"),
  20302. default: true
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20308. {
  20309. front: {
  20310. height: math.unit(8, "feet"),
  20311. weight: math.unit(1, "ton"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/lycoa/front.svg",
  20315. extra: 1875 / 1789,
  20316. bottom: 0.022
  20317. }
  20318. },
  20319. back: {
  20320. height: math.unit(8, "feet"),
  20321. weight: math.unit(1, "ton"),
  20322. name: "Back",
  20323. image: {
  20324. source: "./media/characters/lycoa/back.svg",
  20325. extra: 1835 / 1781,
  20326. bottom: 0.03
  20327. }
  20328. },
  20329. head: {
  20330. height: math.unit(2.1, "feet"),
  20331. name: "Head",
  20332. image: {
  20333. source: "./media/characters/lycoa/head.svg"
  20334. }
  20335. },
  20336. tailmaw: {
  20337. height: math.unit(1.9, "feet"),
  20338. name: "Tailmaw",
  20339. image: {
  20340. source: "./media/characters/lycoa/tailmaw.svg"
  20341. }
  20342. },
  20343. tentacles: {
  20344. height: math.unit(2.1, "feet"),
  20345. name: "Tentacles",
  20346. image: {
  20347. source: "./media/characters/lycoa/tentacles.svg"
  20348. }
  20349. },
  20350. dick: {
  20351. height: math.unit(1.73, "feet"),
  20352. name: "Dick",
  20353. image: {
  20354. source: "./media/characters/lycoa/dick.svg"
  20355. }
  20356. },
  20357. },
  20358. [
  20359. {
  20360. name: "Normal",
  20361. height: math.unit(8, "feet"),
  20362. default: true
  20363. },
  20364. {
  20365. name: "Macro",
  20366. height: math.unit(30, "feet")
  20367. },
  20368. ]
  20369. ))
  20370. characterMakers.push(() => makeCharacter(
  20371. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20372. {
  20373. front: {
  20374. height: math.unit(4 + 2 / 12, "feet"),
  20375. weight: math.unit(70, "lb"),
  20376. name: "Front",
  20377. image: {
  20378. source: "./media/characters/naldara/front.svg",
  20379. extra: 841 / 720,
  20380. bottom: 0.04
  20381. }
  20382. },
  20383. naga: {
  20384. height: math.unit(23, "feet"),
  20385. weight: math.unit(15000, "kg"),
  20386. name: "Naga",
  20387. image: {
  20388. source: "./media/characters/naldara/naga.svg",
  20389. extra: 3290 / 2959,
  20390. bottom: 124 / 3432
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(4 + 2 / 12, "feet"),
  20398. default: true
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20404. {
  20405. front: {
  20406. height: math.unit(13 + 7 / 12, "feet"),
  20407. weight: math.unit(1500, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/briar/front.svg",
  20411. extra: 626 / 596,
  20412. bottom: 0.08
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(13 + 7 / 12, "feet"),
  20420. default: true
  20421. },
  20422. ]
  20423. ))
  20424. characterMakers.push(() => makeCharacter(
  20425. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20426. {
  20427. side: {
  20428. height: math.unit(10, "feet"),
  20429. weight: math.unit(500, "lb"),
  20430. name: "Side",
  20431. image: {
  20432. source: "./media/characters/vanguard/side.svg",
  20433. extra: 502 / 425,
  20434. bottom: 0.087
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Normal",
  20441. height: math.unit(10, "feet"),
  20442. default: true
  20443. },
  20444. ]
  20445. ))
  20446. characterMakers.push(() => makeCharacter(
  20447. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20448. {
  20449. front: {
  20450. height: math.unit(7.5, "feet"),
  20451. weight: math.unit(2, "lb"),
  20452. name: "Front",
  20453. image: {
  20454. source: "./media/characters/artemis/front.svg",
  20455. extra: 1192 / 1075,
  20456. bottom: 0.07
  20457. }
  20458. },
  20459. frontNsfw: {
  20460. height: math.unit(7.5, "feet"),
  20461. weight: math.unit(2, "lb"),
  20462. name: "Front (NSFW)",
  20463. image: {
  20464. source: "./media/characters/artemis/front-nsfw.svg",
  20465. extra: 1192 / 1075,
  20466. bottom: 0.07
  20467. }
  20468. },
  20469. frontNsfwer: {
  20470. height: math.unit(7.5, "feet"),
  20471. weight: math.unit(2, "lb"),
  20472. name: "Front (NSFW-er)",
  20473. image: {
  20474. source: "./media/characters/artemis/front-nsfwer.svg",
  20475. extra: 1192 / 1075,
  20476. bottom: 0.07
  20477. }
  20478. },
  20479. side: {
  20480. height: math.unit(7.5, "feet"),
  20481. weight: math.unit(2, "lb"),
  20482. name: "Side",
  20483. image: {
  20484. source: "./media/characters/artemis/side.svg",
  20485. extra: 1192 / 1075,
  20486. bottom: 0.07
  20487. }
  20488. },
  20489. sideNsfw: {
  20490. height: math.unit(7.5, "feet"),
  20491. weight: math.unit(2, "lb"),
  20492. name: "Side (NSFW)",
  20493. image: {
  20494. source: "./media/characters/artemis/side-nsfw.svg",
  20495. extra: 1192 / 1075,
  20496. bottom: 0.07
  20497. }
  20498. },
  20499. sideNsfwer: {
  20500. height: math.unit(7.5, "feet"),
  20501. weight: math.unit(2, "lb"),
  20502. name: "Side (NSFW-er)",
  20503. image: {
  20504. source: "./media/characters/artemis/side-nsfwer.svg",
  20505. extra: 1192 / 1075,
  20506. bottom: 0.07
  20507. }
  20508. },
  20509. maw: {
  20510. height: math.unit(1.1, "feet"),
  20511. name: "Maw",
  20512. image: {
  20513. source: "./media/characters/artemis/maw.svg"
  20514. }
  20515. },
  20516. stomach: {
  20517. height: math.unit(0.95, "feet"),
  20518. name: "Stomach",
  20519. image: {
  20520. source: "./media/characters/artemis/stomach.svg"
  20521. }
  20522. },
  20523. dickCanine: {
  20524. height: math.unit(1, "feet"),
  20525. name: "Dick (Canine)",
  20526. image: {
  20527. source: "./media/characters/artemis/dick-canine.svg"
  20528. }
  20529. },
  20530. dickEquine: {
  20531. height: math.unit(0.85, "feet"),
  20532. name: "Dick (Equine)",
  20533. image: {
  20534. source: "./media/characters/artemis/dick-equine.svg"
  20535. }
  20536. },
  20537. dickExotic: {
  20538. height: math.unit(0.85, "feet"),
  20539. name: "Dick (Exotic)",
  20540. image: {
  20541. source: "./media/characters/artemis/dick-exotic.svg"
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(7.5, "feet"),
  20549. default: true
  20550. },
  20551. {
  20552. name: "Enlarged",
  20553. height: math.unit(12, "feet")
  20554. },
  20555. ]
  20556. ))
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20559. {
  20560. front: {
  20561. height: math.unit(5 + 3 / 12, "feet"),
  20562. weight: math.unit(160, "lb"),
  20563. name: "Front",
  20564. image: {
  20565. source: "./media/characters/kira/front.svg",
  20566. extra: 906 / 786,
  20567. bottom: 0.01
  20568. }
  20569. },
  20570. back: {
  20571. height: math.unit(5 + 3 / 12, "feet"),
  20572. weight: math.unit(160, "lb"),
  20573. name: "Back",
  20574. image: {
  20575. source: "./media/characters/kira/back.svg",
  20576. extra: 882 / 757,
  20577. bottom: 0.005
  20578. }
  20579. },
  20580. frontDressed: {
  20581. height: math.unit(5 + 3 / 12, "feet"),
  20582. weight: math.unit(160, "lb"),
  20583. name: "Front (Dressed)",
  20584. image: {
  20585. source: "./media/characters/kira/front-dressed.svg",
  20586. extra: 906 / 786,
  20587. bottom: 0.01
  20588. }
  20589. },
  20590. beans: {
  20591. height: math.unit(0.92, "feet"),
  20592. name: "Beans",
  20593. image: {
  20594. source: "./media/characters/kira/beans.svg"
  20595. }
  20596. },
  20597. },
  20598. [
  20599. {
  20600. name: "Normal",
  20601. height: math.unit(5 + 3 / 12, "feet"),
  20602. default: true
  20603. },
  20604. ]
  20605. ))
  20606. characterMakers.push(() => makeCharacter(
  20607. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20608. {
  20609. front: {
  20610. height: math.unit(5 + 4 / 12, "feet"),
  20611. weight: math.unit(145, "lb"),
  20612. name: "Front",
  20613. image: {
  20614. source: "./media/characters/scramble/front.svg",
  20615. extra: 763 / 727,
  20616. bottom: 0.05
  20617. }
  20618. },
  20619. back: {
  20620. height: math.unit(5 + 4 / 12, "feet"),
  20621. weight: math.unit(145, "lb"),
  20622. name: "Back",
  20623. image: {
  20624. source: "./media/characters/scramble/back.svg",
  20625. extra: 826 / 737,
  20626. bottom: 0.002
  20627. }
  20628. },
  20629. },
  20630. [
  20631. {
  20632. name: "Normal",
  20633. height: math.unit(5 + 4 / 12, "feet"),
  20634. default: true
  20635. },
  20636. ]
  20637. ))
  20638. characterMakers.push(() => makeCharacter(
  20639. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20640. {
  20641. side: {
  20642. height: math.unit(6 + 2 / 12, "feet"),
  20643. weight: math.unit(190, "lb"),
  20644. name: "Side",
  20645. image: {
  20646. source: "./media/characters/biscuit/side.svg",
  20647. extra: 858 / 791,
  20648. bottom: 0.044
  20649. }
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "Normal",
  20655. height: math.unit(6 + 2 / 12, "feet"),
  20656. default: true
  20657. },
  20658. ]
  20659. ))
  20660. characterMakers.push(() => makeCharacter(
  20661. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20662. {
  20663. front: {
  20664. height: math.unit(5 + 2 / 12, "feet"),
  20665. weight: math.unit(120, "lb"),
  20666. name: "Front",
  20667. image: {
  20668. source: "./media/characters/poffin/front.svg",
  20669. extra: 786 / 680,
  20670. bottom: 0.005
  20671. }
  20672. },
  20673. },
  20674. [
  20675. {
  20676. name: "Normal",
  20677. height: math.unit(5 + 2 / 12, "feet"),
  20678. default: true
  20679. },
  20680. ]
  20681. ))
  20682. characterMakers.push(() => makeCharacter(
  20683. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20684. {
  20685. front: {
  20686. height: math.unit(6 + 3 / 12, "feet"),
  20687. weight: math.unit(519, "lb"),
  20688. name: "Front",
  20689. image: {
  20690. source: "./media/characters/dhari/front.svg",
  20691. extra: 1048 / 946,
  20692. bottom: 0.015
  20693. }
  20694. },
  20695. back: {
  20696. height: math.unit(6 + 3 / 12, "feet"),
  20697. weight: math.unit(519, "lb"),
  20698. name: "Back",
  20699. image: {
  20700. source: "./media/characters/dhari/back.svg",
  20701. extra: 1048 / 931,
  20702. bottom: 0.005
  20703. }
  20704. },
  20705. frontDressed: {
  20706. height: math.unit(6 + 3 / 12, "feet"),
  20707. weight: math.unit(519, "lb"),
  20708. name: "Front (Dressed)",
  20709. image: {
  20710. source: "./media/characters/dhari/front-dressed.svg",
  20711. extra: 1713 / 1546,
  20712. bottom: 0.02
  20713. }
  20714. },
  20715. backDressed: {
  20716. height: math.unit(6 + 3 / 12, "feet"),
  20717. weight: math.unit(519, "lb"),
  20718. name: "Back (Dressed)",
  20719. image: {
  20720. source: "./media/characters/dhari/back-dressed.svg",
  20721. extra: 1699 / 1537,
  20722. bottom: 0.01
  20723. }
  20724. },
  20725. maw: {
  20726. height: math.unit(0.95, "feet"),
  20727. name: "Maw",
  20728. image: {
  20729. source: "./media/characters/dhari/maw.svg"
  20730. }
  20731. },
  20732. wereFront: {
  20733. height: math.unit(12 + 8 / 12, "feet"),
  20734. weight: math.unit(4000, "lb"),
  20735. name: "Front (Were)",
  20736. image: {
  20737. source: "./media/characters/dhari/were-front.svg",
  20738. extra: 1065 / 969,
  20739. bottom: 0.015
  20740. }
  20741. },
  20742. wereBack: {
  20743. height: math.unit(12 + 8 / 12, "feet"),
  20744. weight: math.unit(4000, "lb"),
  20745. name: "Back (Were)",
  20746. image: {
  20747. source: "./media/characters/dhari/were-back.svg",
  20748. extra: 1065 / 969,
  20749. bottom: 0.012
  20750. }
  20751. },
  20752. wereMaw: {
  20753. height: math.unit(0.625, "meters"),
  20754. name: "Maw (Were)",
  20755. image: {
  20756. source: "./media/characters/dhari/were-maw.svg"
  20757. }
  20758. },
  20759. },
  20760. [
  20761. {
  20762. name: "Normal",
  20763. height: math.unit(6 + 3 / 12, "feet"),
  20764. default: true
  20765. },
  20766. ]
  20767. ))
  20768. characterMakers.push(() => makeCharacter(
  20769. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20770. {
  20771. anthro: {
  20772. height: math.unit(5 + 7 / 12, "feet"),
  20773. weight: math.unit(175, "lb"),
  20774. name: "Anthro",
  20775. image: {
  20776. source: "./media/characters/rena-dyne/anthro.svg",
  20777. extra: 1849 / 1785,
  20778. bottom: 0.005
  20779. }
  20780. },
  20781. taur: {
  20782. height: math.unit(15 + 6 / 12, "feet"),
  20783. weight: math.unit(8000, "lb"),
  20784. name: "Taur",
  20785. image: {
  20786. source: "./media/characters/rena-dyne/taur.svg",
  20787. extra: 2315 / 2234,
  20788. bottom: 0.033
  20789. }
  20790. },
  20791. },
  20792. [
  20793. {
  20794. name: "Normal",
  20795. height: math.unit(5 + 7 / 12, "feet"),
  20796. default: true
  20797. },
  20798. ]
  20799. ))
  20800. characterMakers.push(() => makeCharacter(
  20801. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20802. {
  20803. front: {
  20804. height: math.unit(8, "feet"),
  20805. weight: math.unit(600, "lb"),
  20806. name: "Front",
  20807. image: {
  20808. source: "./media/characters/weremeep/front.svg",
  20809. extra: 967 / 862,
  20810. bottom: 0.01
  20811. }
  20812. },
  20813. },
  20814. [
  20815. {
  20816. name: "Normal",
  20817. height: math.unit(8, "feet"),
  20818. default: true
  20819. },
  20820. {
  20821. name: "Lorg",
  20822. height: math.unit(12, "feet")
  20823. },
  20824. {
  20825. name: "Oh Lawd She Comin'",
  20826. height: math.unit(20, "feet")
  20827. },
  20828. ]
  20829. ))
  20830. characterMakers.push(() => makeCharacter(
  20831. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20832. {
  20833. front: {
  20834. height: math.unit(4, "feet"),
  20835. weight: math.unit(90, "lb"),
  20836. name: "Front",
  20837. image: {
  20838. source: "./media/characters/reza/front.svg",
  20839. extra: 1183 / 1111,
  20840. bottom: 0.017
  20841. }
  20842. },
  20843. back: {
  20844. height: math.unit(4, "feet"),
  20845. weight: math.unit(90, "lb"),
  20846. name: "Back",
  20847. image: {
  20848. source: "./media/characters/reza/back.svg",
  20849. extra: 1183 / 1111,
  20850. bottom: 0.01
  20851. }
  20852. },
  20853. drake: {
  20854. height: math.unit(30, "feet"),
  20855. weight: math.unit(246960, "lb"),
  20856. name: "Drake",
  20857. image: {
  20858. source: "./media/characters/reza/drake.svg",
  20859. extra: 2350 / 2024,
  20860. bottom: 60.7 / 2403
  20861. }
  20862. },
  20863. },
  20864. [
  20865. {
  20866. name: "Normal",
  20867. height: math.unit(4, "feet"),
  20868. default: true
  20869. },
  20870. ]
  20871. ))
  20872. characterMakers.push(() => makeCharacter(
  20873. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20874. {
  20875. side: {
  20876. height: math.unit(15, "feet"),
  20877. weight: math.unit(14, "tons"),
  20878. name: "Side",
  20879. image: {
  20880. source: "./media/characters/athea/side.svg",
  20881. extra: 960 / 540,
  20882. bottom: 0.003
  20883. }
  20884. },
  20885. sitting: {
  20886. height: math.unit(6 * 2.85, "feet"),
  20887. weight: math.unit(14, "tons"),
  20888. name: "Sitting",
  20889. image: {
  20890. source: "./media/characters/athea/sitting.svg",
  20891. extra: 621 / 581,
  20892. bottom: 0.075
  20893. }
  20894. },
  20895. maw: {
  20896. height: math.unit(7.59498031496063, "feet"),
  20897. name: "Maw",
  20898. image: {
  20899. source: "./media/characters/athea/maw.svg"
  20900. }
  20901. },
  20902. },
  20903. [
  20904. {
  20905. name: "Lap Cat",
  20906. height: math.unit(2.5, "feet")
  20907. },
  20908. {
  20909. name: "Minimacro",
  20910. height: math.unit(15, "feet"),
  20911. default: true
  20912. },
  20913. {
  20914. name: "Macro",
  20915. height: math.unit(120, "feet")
  20916. },
  20917. {
  20918. name: "Macro+",
  20919. height: math.unit(640, "feet")
  20920. },
  20921. {
  20922. name: "Colossus",
  20923. height: math.unit(2.2, "miles")
  20924. },
  20925. ]
  20926. ))
  20927. characterMakers.push(() => makeCharacter(
  20928. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20929. {
  20930. front: {
  20931. height: math.unit(8 + 8 / 12, "feet"),
  20932. weight: math.unit(130, "kg"),
  20933. name: "Front",
  20934. image: {
  20935. source: "./media/characters/seroko/front.svg",
  20936. extra: 1385 / 1280,
  20937. bottom: 0.025
  20938. }
  20939. },
  20940. back: {
  20941. height: math.unit(8 + 8 / 12, "feet"),
  20942. weight: math.unit(130, "kg"),
  20943. name: "Back",
  20944. image: {
  20945. source: "./media/characters/seroko/back.svg",
  20946. extra: 1369 / 1238,
  20947. bottom: 0.018
  20948. }
  20949. },
  20950. frontDressed: {
  20951. height: math.unit(8 + 8 / 12, "feet"),
  20952. weight: math.unit(130, "kg"),
  20953. name: "Front (Dressed)",
  20954. image: {
  20955. source: "./media/characters/seroko/front-dressed.svg",
  20956. extra: 1366 / 1275,
  20957. bottom: 0.03
  20958. }
  20959. },
  20960. },
  20961. [
  20962. {
  20963. name: "Normal",
  20964. height: math.unit(8 + 8 / 12, "feet"),
  20965. default: true
  20966. },
  20967. ]
  20968. ))
  20969. characterMakers.push(() => makeCharacter(
  20970. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20971. {
  20972. front: {
  20973. height: math.unit(5.5, "feet"),
  20974. weight: math.unit(160, "lb"),
  20975. name: "Front",
  20976. image: {
  20977. source: "./media/characters/quatzi/front.svg",
  20978. extra: 2346 / 2242,
  20979. bottom: 0.015
  20980. }
  20981. },
  20982. },
  20983. [
  20984. {
  20985. name: "Normal",
  20986. height: math.unit(5.5, "feet"),
  20987. default: true
  20988. },
  20989. {
  20990. name: "Big",
  20991. height: math.unit(7.7, "feet")
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20997. {
  20998. front: {
  20999. height: math.unit(5 + 11 / 12, "feet"),
  21000. weight: math.unit(180, "lb"),
  21001. name: "Front",
  21002. image: {
  21003. source: "./media/characters/sen/front.svg",
  21004. extra: 1321 / 1254,
  21005. bottom: 0.015
  21006. }
  21007. },
  21008. side: {
  21009. height: math.unit(5 + 11 / 12, "feet"),
  21010. weight: math.unit(180, "lb"),
  21011. name: "Side",
  21012. image: {
  21013. source: "./media/characters/sen/side.svg",
  21014. extra: 1321 / 1254,
  21015. bottom: 0.007
  21016. }
  21017. },
  21018. back: {
  21019. height: math.unit(5 + 11 / 12, "feet"),
  21020. weight: math.unit(180, "lb"),
  21021. name: "Back",
  21022. image: {
  21023. source: "./media/characters/sen/back.svg",
  21024. extra: 1321 / 1254
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(5 + 11 / 12, "feet"),
  21032. default: true
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21038. {
  21039. front: {
  21040. height: math.unit(166.6, "cm"),
  21041. weight: math.unit(66.6, "kg"),
  21042. name: "Front",
  21043. image: {
  21044. source: "./media/characters/fruity/front.svg",
  21045. extra: 1510 / 1386,
  21046. bottom: 0.04
  21047. }
  21048. },
  21049. back: {
  21050. height: math.unit(166.6, "cm"),
  21051. weight: math.unit(66.6, "lb"),
  21052. name: "Back",
  21053. image: {
  21054. source: "./media/characters/fruity/back.svg",
  21055. extra: 1563 / 1435,
  21056. bottom: 0.005
  21057. }
  21058. },
  21059. },
  21060. [
  21061. {
  21062. name: "Normal",
  21063. height: math.unit(166.6, "cm"),
  21064. default: true
  21065. },
  21066. {
  21067. name: "Demonic",
  21068. height: math.unit(166.6, "feet")
  21069. },
  21070. ]
  21071. ))
  21072. characterMakers.push(() => makeCharacter(
  21073. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21074. {
  21075. side: {
  21076. height: math.unit(10, "feet"),
  21077. weight: math.unit(500, "lb"),
  21078. name: "Side",
  21079. image: {
  21080. source: "./media/characters/zost/side.svg",
  21081. extra: 966 / 880,
  21082. bottom: 0.075
  21083. }
  21084. },
  21085. mawFront: {
  21086. height: math.unit(1.08, "meters"),
  21087. name: "Maw (Front)",
  21088. image: {
  21089. source: "./media/characters/zost/maw-front.svg"
  21090. }
  21091. },
  21092. mawSide: {
  21093. height: math.unit(2.66, "feet"),
  21094. name: "Maw (Side)",
  21095. image: {
  21096. source: "./media/characters/zost/maw-side.svg"
  21097. }
  21098. },
  21099. },
  21100. [
  21101. {
  21102. name: "Normal",
  21103. height: math.unit(10, "feet"),
  21104. default: true
  21105. },
  21106. ]
  21107. ))
  21108. characterMakers.push(() => makeCharacter(
  21109. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21110. {
  21111. front: {
  21112. height: math.unit(5 + 4 / 12, "feet"),
  21113. weight: math.unit(120, "lb"),
  21114. name: "Front",
  21115. image: {
  21116. source: "./media/characters/luci/front.svg",
  21117. extra: 1985 / 1884,
  21118. bottom: 0.04
  21119. }
  21120. },
  21121. back: {
  21122. height: math.unit(5 + 4 / 12, "feet"),
  21123. weight: math.unit(120, "lb"),
  21124. name: "Back",
  21125. image: {
  21126. source: "./media/characters/luci/back.svg",
  21127. extra: 1892 / 1791,
  21128. bottom: 0.002
  21129. }
  21130. },
  21131. },
  21132. [
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(5 + 4 / 12, "feet"),
  21136. default: true
  21137. },
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(1500, "feet"),
  21145. weight: math.unit(3.8e6, "tons"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/2th/front.svg",
  21149. extra: 3489 / 3350,
  21150. bottom: 0.1
  21151. }
  21152. },
  21153. foot: {
  21154. height: math.unit(461, "feet"),
  21155. name: "Foot",
  21156. image: {
  21157. source: "./media/characters/2th/foot.svg"
  21158. }
  21159. },
  21160. },
  21161. [
  21162. {
  21163. name: "\"Micro\"",
  21164. height: math.unit(15 + 7 / 12, "feet")
  21165. },
  21166. {
  21167. name: "Normal",
  21168. height: math.unit(1500, "feet"),
  21169. default: true
  21170. },
  21171. {
  21172. name: "Macro",
  21173. height: math.unit(5000, "feet")
  21174. },
  21175. {
  21176. name: "Megamacro",
  21177. height: math.unit(15, "miles")
  21178. },
  21179. {
  21180. name: "Gigamacro",
  21181. height: math.unit(4000, "miles")
  21182. },
  21183. {
  21184. name: "Galactic",
  21185. height: math.unit(50, "AU")
  21186. },
  21187. ]
  21188. ))
  21189. characterMakers.push(() => makeCharacter(
  21190. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21191. {
  21192. front: {
  21193. height: math.unit(5 + 6 / 12, "feet"),
  21194. weight: math.unit(220, "lb"),
  21195. name: "Front",
  21196. image: {
  21197. source: "./media/characters/amethyst/front.svg",
  21198. extra: 2078 / 2040,
  21199. bottom: 0.045
  21200. }
  21201. },
  21202. back: {
  21203. height: math.unit(5 + 6 / 12, "feet"),
  21204. weight: math.unit(220, "lb"),
  21205. name: "Back",
  21206. image: {
  21207. source: "./media/characters/amethyst/back.svg",
  21208. extra: 2021 / 1989,
  21209. bottom: 0.02
  21210. }
  21211. },
  21212. },
  21213. [
  21214. {
  21215. name: "Normal",
  21216. height: math.unit(5 + 6 / 12, "feet"),
  21217. default: true
  21218. },
  21219. ]
  21220. ))
  21221. characterMakers.push(() => makeCharacter(
  21222. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21223. {
  21224. front: {
  21225. height: math.unit(4 + 11 / 12, "feet"),
  21226. weight: math.unit(120, "lb"),
  21227. name: "Front",
  21228. image: {
  21229. source: "./media/characters/yumi-akiyama/front.svg",
  21230. extra: 1327 / 1235,
  21231. bottom: 0.02
  21232. }
  21233. },
  21234. back: {
  21235. height: math.unit(4 + 11 / 12, "feet"),
  21236. weight: math.unit(120, "lb"),
  21237. name: "Back",
  21238. image: {
  21239. source: "./media/characters/yumi-akiyama/back.svg",
  21240. extra: 1287 / 1245,
  21241. bottom: 0.002
  21242. }
  21243. },
  21244. },
  21245. [
  21246. {
  21247. name: "Galactic",
  21248. height: math.unit(50, "galaxies"),
  21249. default: true
  21250. },
  21251. {
  21252. name: "Universal",
  21253. height: math.unit(100, "universes")
  21254. },
  21255. ]
  21256. ))
  21257. characterMakers.push(() => makeCharacter(
  21258. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21259. {
  21260. front: {
  21261. height: math.unit(8, "feet"),
  21262. weight: math.unit(500, "lb"),
  21263. name: "Front",
  21264. image: {
  21265. source: "./media/characters/rifter-yrmori/front.svg",
  21266. extra: 1180 / 1125,
  21267. bottom: 0.02
  21268. }
  21269. },
  21270. back: {
  21271. height: math.unit(8, "feet"),
  21272. weight: math.unit(500, "lb"),
  21273. name: "Back",
  21274. image: {
  21275. source: "./media/characters/rifter-yrmori/back.svg",
  21276. extra: 1190 / 1145,
  21277. bottom: 0.001
  21278. }
  21279. },
  21280. wings: {
  21281. height: math.unit(7.75, "feet"),
  21282. weight: math.unit(500, "lb"),
  21283. name: "Wings",
  21284. image: {
  21285. source: "./media/characters/rifter-yrmori/wings.svg",
  21286. extra: 1357 / 1285
  21287. }
  21288. },
  21289. maw: {
  21290. height: math.unit(0.8, "feet"),
  21291. name: "Maw",
  21292. image: {
  21293. source: "./media/characters/rifter-yrmori/maw.svg"
  21294. }
  21295. },
  21296. mawfront: {
  21297. height: math.unit(1.45, "feet"),
  21298. name: "Maw (Front)",
  21299. image: {
  21300. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21301. }
  21302. },
  21303. },
  21304. [
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(8, "feet"),
  21308. default: true
  21309. },
  21310. {
  21311. name: "Macro",
  21312. height: math.unit(42, "meters")
  21313. },
  21314. ]
  21315. ))
  21316. characterMakers.push(() => makeCharacter(
  21317. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21318. {
  21319. were: {
  21320. height: math.unit(25 + 6 / 12, "feet"),
  21321. weight: math.unit(10000, "lb"),
  21322. name: "Were",
  21323. image: {
  21324. source: "./media/characters/tahajin/were.svg",
  21325. extra: 801 / 770,
  21326. bottom: 0.042
  21327. }
  21328. },
  21329. aquatic: {
  21330. height: math.unit(6 + 4 / 12, "feet"),
  21331. weight: math.unit(160, "lb"),
  21332. name: "Aquatic",
  21333. image: {
  21334. source: "./media/characters/tahajin/aquatic.svg",
  21335. extra: 572 / 542,
  21336. bottom: 0.04
  21337. }
  21338. },
  21339. chow: {
  21340. height: math.unit(8 + 11 / 12, "feet"),
  21341. weight: math.unit(450, "lb"),
  21342. name: "Chow",
  21343. image: {
  21344. source: "./media/characters/tahajin/chow.svg",
  21345. extra: 660 / 640,
  21346. bottom: 0.015
  21347. }
  21348. },
  21349. demiNaga: {
  21350. height: math.unit(6 + 8 / 12, "feet"),
  21351. weight: math.unit(300, "lb"),
  21352. name: "Demi Naga",
  21353. image: {
  21354. source: "./media/characters/tahajin/demi-naga.svg",
  21355. extra: 643 / 615,
  21356. bottom: 0.1
  21357. }
  21358. },
  21359. data: {
  21360. height: math.unit(5, "inches"),
  21361. weight: math.unit(0.1, "lb"),
  21362. name: "Data",
  21363. image: {
  21364. source: "./media/characters/tahajin/data.svg"
  21365. }
  21366. },
  21367. fluu: {
  21368. height: math.unit(5 + 7 / 12, "feet"),
  21369. weight: math.unit(140, "lb"),
  21370. name: "Fluu",
  21371. image: {
  21372. source: "./media/characters/tahajin/fluu.svg",
  21373. extra: 628 / 592,
  21374. bottom: 0.02
  21375. }
  21376. },
  21377. starWarrior: {
  21378. height: math.unit(4 + 5 / 12, "feet"),
  21379. weight: math.unit(50, "lb"),
  21380. name: "Star Warrior",
  21381. image: {
  21382. source: "./media/characters/tahajin/star-warrior.svg"
  21383. }
  21384. },
  21385. },
  21386. [
  21387. {
  21388. name: "Normal",
  21389. height: math.unit(25 + 6 / 12, "feet"),
  21390. default: true
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21396. {
  21397. front: {
  21398. height: math.unit(8, "feet"),
  21399. weight: math.unit(350, "lb"),
  21400. name: "Front",
  21401. image: {
  21402. source: "./media/characters/gabira/front.svg",
  21403. extra: 608 / 580,
  21404. bottom: 0.03
  21405. }
  21406. },
  21407. back: {
  21408. height: math.unit(8, "feet"),
  21409. weight: math.unit(350, "lb"),
  21410. name: "Back",
  21411. image: {
  21412. source: "./media/characters/gabira/back.svg",
  21413. extra: 608 / 580,
  21414. bottom: 0.03
  21415. }
  21416. },
  21417. },
  21418. [
  21419. {
  21420. name: "Normal",
  21421. height: math.unit(8, "feet"),
  21422. default: true
  21423. },
  21424. ]
  21425. ))
  21426. characterMakers.push(() => makeCharacter(
  21427. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21428. {
  21429. front: {
  21430. height: math.unit(5 + 3 / 12, "feet"),
  21431. weight: math.unit(137, "lb"),
  21432. name: "Front",
  21433. image: {
  21434. source: "./media/characters/sasha-katraine/front.svg",
  21435. bottom: 0.045
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Micro",
  21442. height: math.unit(5, "inches")
  21443. },
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(5 + 3 / 12, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21453. {
  21454. side: {
  21455. height: math.unit(4, "inches"),
  21456. weight: math.unit(200, "grams"),
  21457. name: "Side",
  21458. image: {
  21459. source: "./media/characters/der/side.svg",
  21460. extra: 719 / 400,
  21461. bottom: 30.6 / 749.9187
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Micro",
  21468. height: math.unit(4, "inches"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21475. {
  21476. side: {
  21477. height: math.unit(30, "meters"),
  21478. weight: math.unit(700, "tonnes"),
  21479. name: "Side",
  21480. image: {
  21481. source: "./media/characters/fixerdragon/side.svg",
  21482. extra: (1293.0514 - 116.03) / 1106.86,
  21483. bottom: 116.03 / 1293.0514
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Planck",
  21490. height: math.unit(1.6e-35, "meters")
  21491. },
  21492. {
  21493. name: "Micro",
  21494. height: math.unit(0.4, "meters")
  21495. },
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(30, "meters"),
  21499. default: true
  21500. },
  21501. {
  21502. name: "Megamacro",
  21503. height: math.unit(1.2, "megameters")
  21504. },
  21505. {
  21506. name: "Teramacro",
  21507. height: math.unit(130, "terameters")
  21508. },
  21509. {
  21510. name: "Yottamacro",
  21511. height: math.unit(6200, "yottameters")
  21512. },
  21513. ]
  21514. ));
  21515. characterMakers.push(() => makeCharacter(
  21516. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21517. {
  21518. front: {
  21519. height: math.unit(8, "feet"),
  21520. weight: math.unit(250, "lb"),
  21521. name: "Front",
  21522. image: {
  21523. source: "./media/characters/kite/front.svg",
  21524. extra: 2796 / 2659,
  21525. bottom: 0.002
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Normal",
  21532. height: math.unit(8, "feet"),
  21533. default: true
  21534. },
  21535. {
  21536. name: "Macro",
  21537. height: math.unit(360, "feet")
  21538. },
  21539. {
  21540. name: "Megamacro",
  21541. height: math.unit(1500, "feet")
  21542. },
  21543. ]
  21544. ))
  21545. characterMakers.push(() => makeCharacter(
  21546. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21547. {
  21548. front: {
  21549. height: math.unit(5 + 10 / 12, "feet"),
  21550. weight: math.unit(150, "lb"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/poojawa-vynar/front.svg",
  21554. extra: (1506.1547 - 55) / 1356.6,
  21555. bottom: 55 / 1506.1547
  21556. }
  21557. },
  21558. frontTailless: {
  21559. height: math.unit(5 + 10 / 12, "feet"),
  21560. weight: math.unit(150, "lb"),
  21561. name: "Front (Tailless)",
  21562. image: {
  21563. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21564. extra: (1506.1547 - 55) / 1356.6,
  21565. bottom: 55 / 1506.1547
  21566. }
  21567. },
  21568. },
  21569. [
  21570. {
  21571. name: "Normal",
  21572. height: math.unit(5 + 10 / 12, "feet"),
  21573. default: true
  21574. },
  21575. ]
  21576. ))
  21577. characterMakers.push(() => makeCharacter(
  21578. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21579. {
  21580. front: {
  21581. height: math.unit(293, "meters"),
  21582. weight: math.unit(70400, "tons"),
  21583. name: "Front",
  21584. image: {
  21585. source: "./media/characters/violette/front.svg",
  21586. extra: 1227 / 1180,
  21587. bottom: 0.005
  21588. }
  21589. },
  21590. back: {
  21591. height: math.unit(293, "meters"),
  21592. weight: math.unit(70400, "tons"),
  21593. name: "Back",
  21594. image: {
  21595. source: "./media/characters/violette/back.svg",
  21596. extra: 1227 / 1180,
  21597. bottom: 0.005
  21598. }
  21599. },
  21600. },
  21601. [
  21602. {
  21603. name: "Macro",
  21604. height: math.unit(293, "meters"),
  21605. default: true
  21606. },
  21607. ]
  21608. ))
  21609. characterMakers.push(() => makeCharacter(
  21610. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21611. {
  21612. front: {
  21613. height: math.unit(1050, "feet"),
  21614. weight: math.unit(200000, "tons"),
  21615. name: "Front",
  21616. image: {
  21617. source: "./media/characters/alessandra/front.svg",
  21618. extra: 960 / 912,
  21619. bottom: 0.06
  21620. }
  21621. },
  21622. },
  21623. [
  21624. {
  21625. name: "Macro",
  21626. height: math.unit(1050, "feet")
  21627. },
  21628. {
  21629. name: "Macro+",
  21630. height: math.unit(900, "meters"),
  21631. default: true
  21632. },
  21633. ]
  21634. ))
  21635. characterMakers.push(() => makeCharacter(
  21636. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21637. {
  21638. front: {
  21639. height: math.unit(5, "feet"),
  21640. weight: math.unit(187, "lb"),
  21641. name: "Front",
  21642. image: {
  21643. source: "./media/characters/person/front.svg",
  21644. extra: 3087 / 2945,
  21645. bottom: 91 / 3181
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Micro",
  21652. height: math.unit(3, "inches")
  21653. },
  21654. {
  21655. name: "Normal",
  21656. height: math.unit(5, "feet"),
  21657. default: true
  21658. },
  21659. {
  21660. name: "Macro",
  21661. height: math.unit(90, "feet")
  21662. },
  21663. {
  21664. name: "Max Size",
  21665. height: math.unit(280, "feet")
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21671. {
  21672. front: {
  21673. height: math.unit(4.5, "meters"),
  21674. weight: math.unit(3200, "lb"),
  21675. name: "Front",
  21676. image: {
  21677. source: "./media/characters/ty/front.svg",
  21678. extra: 1038 / 960,
  21679. bottom: 31.156 / 1068
  21680. }
  21681. },
  21682. back: {
  21683. height: math.unit(4.5, "meters"),
  21684. weight: math.unit(3200, "lb"),
  21685. name: "Back",
  21686. image: {
  21687. source: "./media/characters/ty/back.svg",
  21688. extra: 1044 / 966,
  21689. bottom: 7.48 / 1049
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(4.5, "meters"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(5 + 4 / 12, "feet"),
  21706. weight: math.unit(115, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/rocky/front.svg",
  21710. extra: 1012 / 975,
  21711. bottom: 54 / 1066
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(5 + 4 / 12, "feet"),
  21719. default: true
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21725. {
  21726. upright: {
  21727. height: math.unit(6, "meters"),
  21728. weight: math.unit(4000, "kg"),
  21729. name: "Upright",
  21730. image: {
  21731. source: "./media/characters/ruin/upright.svg",
  21732. extra: 668 / 661,
  21733. bottom: 42 / 799.8396
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(6, "meters"),
  21741. default: true
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(5, "feet"),
  21750. weight: math.unit(106, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/robin/front.svg",
  21754. extra: 862 / 799,
  21755. bottom: 42.4 / 914.8856
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(5, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21769. {
  21770. side: {
  21771. height: math.unit(3, "feet"),
  21772. weight: math.unit(225, "lb"),
  21773. name: "Side",
  21774. image: {
  21775. source: "./media/characters/saian/side.svg",
  21776. extra: 566 / 356,
  21777. bottom: 79.7 / 643
  21778. }
  21779. },
  21780. maw: {
  21781. height: math.unit(2.85, "feet"),
  21782. name: "Maw",
  21783. image: {
  21784. source: "./media/characters/saian/maw.svg"
  21785. }
  21786. },
  21787. },
  21788. [
  21789. {
  21790. name: "Normal",
  21791. height: math.unit(3, "feet"),
  21792. default: true
  21793. },
  21794. ]
  21795. ))
  21796. characterMakers.push(() => makeCharacter(
  21797. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21798. {
  21799. side: {
  21800. height: math.unit(8, "feet"),
  21801. weight: math.unit(300, "lb"),
  21802. name: "Side",
  21803. image: {
  21804. source: "./media/characters/equus-silvermane/side.svg",
  21805. extra: 2176 / 2050,
  21806. bottom: 65.7 / 2245
  21807. }
  21808. },
  21809. front: {
  21810. height: math.unit(8, "feet"),
  21811. weight: math.unit(300, "lb"),
  21812. name: "Front",
  21813. image: {
  21814. source: "./media/characters/equus-silvermane/front.svg",
  21815. extra: 4633 / 4400,
  21816. bottom: 71.3 / 4706.915
  21817. }
  21818. },
  21819. sideStepping: {
  21820. height: math.unit(8, "feet"),
  21821. weight: math.unit(300, "lb"),
  21822. name: "Side (Stepping)",
  21823. image: {
  21824. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21825. extra: 1968 / 1860,
  21826. bottom: 16.4 / 1989
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Normal",
  21833. height: math.unit(8, "feet")
  21834. },
  21835. {
  21836. name: "Minimacro",
  21837. height: math.unit(75, "feet"),
  21838. default: true
  21839. },
  21840. {
  21841. name: "Macro",
  21842. height: math.unit(150, "feet")
  21843. },
  21844. {
  21845. name: "Macro+",
  21846. height: math.unit(1000, "feet")
  21847. },
  21848. {
  21849. name: "Megamacro",
  21850. height: math.unit(1, "mile")
  21851. },
  21852. ]
  21853. ))
  21854. characterMakers.push(() => makeCharacter(
  21855. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21856. {
  21857. side: {
  21858. height: math.unit(20, "feet"),
  21859. weight: math.unit(30000, "kg"),
  21860. name: "Side",
  21861. image: {
  21862. source: "./media/characters/windar/side.svg",
  21863. extra: 1491 / 1248,
  21864. bottom: 82.56 / 1568
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Normal",
  21871. height: math.unit(20, "feet"),
  21872. default: true
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21878. {
  21879. side: {
  21880. height: math.unit(15.66, "feet"),
  21881. weight: math.unit(150, "lb"),
  21882. name: "Side",
  21883. image: {
  21884. source: "./media/characters/melody/side.svg",
  21885. extra: 1097 / 944,
  21886. bottom: 11.8 / 1109
  21887. }
  21888. },
  21889. sideOutfit: {
  21890. height: math.unit(15.66, "feet"),
  21891. weight: math.unit(150, "lb"),
  21892. name: "Side (Outfit)",
  21893. image: {
  21894. source: "./media/characters/melody/side-outfit.svg",
  21895. extra: 1097 / 944,
  21896. bottom: 11.8 / 1109
  21897. }
  21898. },
  21899. },
  21900. [
  21901. {
  21902. name: "Normal",
  21903. height: math.unit(15.66, "feet"),
  21904. default: true
  21905. },
  21906. ]
  21907. ))
  21908. characterMakers.push(() => makeCharacter(
  21909. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21910. {
  21911. front: {
  21912. height: math.unit(8, "feet"),
  21913. weight: math.unit(325, "lb"),
  21914. name: "Front",
  21915. image: {
  21916. source: "./media/characters/windera/front.svg",
  21917. extra: 3180 / 2845,
  21918. bottom: 178 / 3365
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Normal",
  21925. height: math.unit(8, "feet"),
  21926. default: true
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21932. {
  21933. front: {
  21934. height: math.unit(28.75, "feet"),
  21935. weight: math.unit(2000, "kg"),
  21936. name: "Front",
  21937. image: {
  21938. source: "./media/characters/sonear/front.svg",
  21939. extra: 1041.1 / 964.9,
  21940. bottom: 53.7 / 1096.6
  21941. }
  21942. },
  21943. },
  21944. [
  21945. {
  21946. name: "Normal",
  21947. height: math.unit(28.75, "feet"),
  21948. default: true
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21954. {
  21955. side: {
  21956. height: math.unit(25.5, "feet"),
  21957. weight: math.unit(23000, "kg"),
  21958. name: "Side",
  21959. image: {
  21960. source: "./media/characters/kanara/side.svg"
  21961. }
  21962. },
  21963. },
  21964. [
  21965. {
  21966. name: "Normal",
  21967. height: math.unit(25.5, "feet"),
  21968. default: true
  21969. },
  21970. ]
  21971. ))
  21972. characterMakers.push(() => makeCharacter(
  21973. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21974. {
  21975. side: {
  21976. height: math.unit(10, "feet"),
  21977. weight: math.unit(1000, "kg"),
  21978. name: "Side",
  21979. image: {
  21980. source: "./media/characters/ereus/side.svg",
  21981. extra: 1157 / 959,
  21982. bottom: 153 / 1312.5
  21983. }
  21984. },
  21985. },
  21986. [
  21987. {
  21988. name: "Normal",
  21989. height: math.unit(10, "feet"),
  21990. default: true
  21991. },
  21992. ]
  21993. ))
  21994. characterMakers.push(() => makeCharacter(
  21995. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21996. {
  21997. side: {
  21998. height: math.unit(4.5, "feet"),
  21999. weight: math.unit(500, "lb"),
  22000. name: "Side",
  22001. image: {
  22002. source: "./media/characters/e-ter/side.svg",
  22003. extra: 1550 / 1248,
  22004. bottom: 146 / 1694
  22005. }
  22006. },
  22007. },
  22008. [
  22009. {
  22010. name: "Normal",
  22011. height: math.unit(4.5, "feet"),
  22012. default: true
  22013. },
  22014. ]
  22015. ))
  22016. characterMakers.push(() => makeCharacter(
  22017. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22018. {
  22019. side: {
  22020. height: math.unit(9.7, "feet"),
  22021. weight: math.unit(4000, "kg"),
  22022. name: "Side",
  22023. image: {
  22024. source: "./media/characters/yamie/side.svg"
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(9.7, "feet"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(50, "feet"),
  22041. weight: math.unit(50000, "kg"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/anders/front.svg",
  22045. extra: 570 / 539,
  22046. bottom: 14.7 / 586.7
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Large",
  22053. height: math.unit(50, "feet")
  22054. },
  22055. {
  22056. name: "Macro",
  22057. height: math.unit(2000, "feet"),
  22058. default: true
  22059. },
  22060. {
  22061. name: "Megamacro",
  22062. height: math.unit(12, "miles")
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22068. {
  22069. front: {
  22070. height: math.unit(7 + 2 / 12, "feet"),
  22071. weight: math.unit(300, "lb"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/reban/front.svg",
  22075. extra: 516 / 487,
  22076. bottom: 42.82 / 558.356
  22077. }
  22078. },
  22079. dick: {
  22080. height: math.unit(7 / 5, "feet"),
  22081. name: "Dick",
  22082. image: {
  22083. source: "./media/characters/reban/dick.svg"
  22084. }
  22085. },
  22086. },
  22087. [
  22088. {
  22089. name: "Natural Height",
  22090. height: math.unit(7 + 2 / 12, "feet")
  22091. },
  22092. {
  22093. name: "Macro",
  22094. height: math.unit(500, "feet"),
  22095. default: true
  22096. },
  22097. {
  22098. name: "Canon Height",
  22099. height: math.unit(50, "AU")
  22100. },
  22101. ]
  22102. ))
  22103. characterMakers.push(() => makeCharacter(
  22104. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22105. {
  22106. front: {
  22107. height: math.unit(6, "feet"),
  22108. weight: math.unit(150, "lb"),
  22109. name: "Front",
  22110. image: {
  22111. source: "./media/characters/terrance-keayes/front.svg",
  22112. extra: 1.005,
  22113. bottom: 151 / 1615
  22114. }
  22115. },
  22116. side: {
  22117. height: math.unit(6, "feet"),
  22118. weight: math.unit(150, "lb"),
  22119. name: "Side",
  22120. image: {
  22121. source: "./media/characters/terrance-keayes/side.svg",
  22122. extra: 1.005,
  22123. bottom: 129.4 / 1544
  22124. }
  22125. },
  22126. back: {
  22127. height: math.unit(6, "feet"),
  22128. weight: math.unit(150, "lb"),
  22129. name: "Back",
  22130. image: {
  22131. source: "./media/characters/terrance-keayes/back.svg",
  22132. extra: 1.005,
  22133. bottom: 58.4 / 1557.3
  22134. }
  22135. },
  22136. dick: {
  22137. height: math.unit(6 * 0.208, "feet"),
  22138. name: "Dick",
  22139. image: {
  22140. source: "./media/characters/terrance-keayes/dick.svg"
  22141. }
  22142. },
  22143. },
  22144. [
  22145. {
  22146. name: "Canon Height",
  22147. height: math.unit(35, "miles"),
  22148. default: true
  22149. },
  22150. ]
  22151. ))
  22152. characterMakers.push(() => makeCharacter(
  22153. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22154. {
  22155. front: {
  22156. height: math.unit(6, "feet"),
  22157. weight: math.unit(150, "lb"),
  22158. name: "Front",
  22159. image: {
  22160. source: "./media/characters/ofelia/front.svg",
  22161. extra: 546 / 541,
  22162. bottom: 39 / 583
  22163. }
  22164. },
  22165. back: {
  22166. height: math.unit(6, "feet"),
  22167. weight: math.unit(150, "lb"),
  22168. name: "Back",
  22169. image: {
  22170. source: "./media/characters/ofelia/back.svg",
  22171. extra: 564 / 559.5,
  22172. bottom: 8.69 / 573.02
  22173. }
  22174. },
  22175. maw: {
  22176. height: math.unit(1, "feet"),
  22177. name: "Maw",
  22178. image: {
  22179. source: "./media/characters/ofelia/maw.svg"
  22180. }
  22181. },
  22182. foot: {
  22183. height: math.unit(1.949, "feet"),
  22184. name: "Foot",
  22185. image: {
  22186. source: "./media/characters/ofelia/foot.svg"
  22187. }
  22188. },
  22189. },
  22190. [
  22191. {
  22192. name: "Canon Height",
  22193. height: math.unit(2000, "miles"),
  22194. default: true
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22200. {
  22201. front: {
  22202. height: math.unit(6, "feet"),
  22203. weight: math.unit(150, "lb"),
  22204. name: "Front",
  22205. image: {
  22206. source: "./media/characters/samuel/front.svg",
  22207. extra: 265 / 258,
  22208. bottom: 2 / 266.1566
  22209. }
  22210. },
  22211. },
  22212. [
  22213. {
  22214. name: "Macro",
  22215. height: math.unit(100, "feet"),
  22216. default: true
  22217. },
  22218. {
  22219. name: "Full Size",
  22220. height: math.unit(1000, "miles")
  22221. },
  22222. ]
  22223. ))
  22224. characterMakers.push(() => makeCharacter(
  22225. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22226. {
  22227. front: {
  22228. height: math.unit(6, "feet"),
  22229. weight: math.unit(300, "lb"),
  22230. name: "Front",
  22231. image: {
  22232. source: "./media/characters/beishir-kiel/front.svg",
  22233. extra: 569 / 547,
  22234. bottom: 41.9 / 609
  22235. }
  22236. },
  22237. maw: {
  22238. height: math.unit(6 * 0.202, "feet"),
  22239. name: "Maw",
  22240. image: {
  22241. source: "./media/characters/beishir-kiel/maw.svg"
  22242. }
  22243. },
  22244. },
  22245. [
  22246. {
  22247. name: "Macro",
  22248. height: math.unit(300, "feet"),
  22249. default: true
  22250. },
  22251. ]
  22252. ))
  22253. characterMakers.push(() => makeCharacter(
  22254. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22255. {
  22256. front: {
  22257. height: math.unit(5 + 7/12, "feet"),
  22258. weight: math.unit(120, "lb"),
  22259. name: "Front",
  22260. image: {
  22261. source: "./media/characters/logan-grey/front.svg",
  22262. extra: 1836/1738,
  22263. bottom: 108/1944
  22264. }
  22265. },
  22266. back: {
  22267. height: math.unit(5 + 7/12, "feet"),
  22268. weight: math.unit(120, "lb"),
  22269. name: "Back",
  22270. image: {
  22271. source: "./media/characters/logan-grey/back.svg",
  22272. extra: 1880/1794,
  22273. bottom: 24/1904
  22274. }
  22275. },
  22276. frontSfw: {
  22277. height: math.unit(5 + 7/12, "feet"),
  22278. weight: math.unit(120, "lb"),
  22279. name: "Front (SFW)",
  22280. image: {
  22281. source: "./media/characters/logan-grey/front-sfw.svg",
  22282. extra: 1836/1738,
  22283. bottom: 108/1944
  22284. }
  22285. },
  22286. backSfw: {
  22287. height: math.unit(5 + 7/12, "feet"),
  22288. weight: math.unit(120, "lb"),
  22289. name: "Back (SFW)",
  22290. image: {
  22291. source: "./media/characters/logan-grey/back-sfw.svg",
  22292. extra: 1880/1794,
  22293. bottom: 24/1904
  22294. }
  22295. },
  22296. hands: {
  22297. height: math.unit(0.84, "feet"),
  22298. name: "Hands",
  22299. image: {
  22300. source: "./media/characters/logan-grey/hands.svg"
  22301. }
  22302. },
  22303. paws: {
  22304. height: math.unit(0.72, "feet"),
  22305. name: "Paws",
  22306. image: {
  22307. source: "./media/characters/logan-grey/paws.svg"
  22308. }
  22309. },
  22310. cock: {
  22311. height: math.unit(1.45, "feet"),
  22312. name: "Cock",
  22313. image: {
  22314. source: "./media/characters/logan-grey/cock.svg"
  22315. }
  22316. },
  22317. cockAlt: {
  22318. height: math.unit(1.437, "feet"),
  22319. name: "Cock (alt)",
  22320. image: {
  22321. source: "./media/characters/logan-grey/cock-alt.svg"
  22322. }
  22323. },
  22324. },
  22325. [
  22326. {
  22327. name: "Normal",
  22328. height: math.unit(5 + 8 / 12, "feet")
  22329. },
  22330. {
  22331. name: "The 500 Foot Femboy",
  22332. height: math.unit(500, "feet"),
  22333. default: true
  22334. },
  22335. {
  22336. name: "Megmacro",
  22337. height: math.unit(20, "miles")
  22338. },
  22339. ]
  22340. ))
  22341. characterMakers.push(() => makeCharacter(
  22342. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22343. {
  22344. front: {
  22345. height: math.unit(8 + 2 / 12, "feet"),
  22346. weight: math.unit(275, "lb"),
  22347. name: "Front",
  22348. image: {
  22349. source: "./media/characters/draganta/front.svg",
  22350. extra: 1177 / 1135,
  22351. bottom: 33.46 / 1212.1
  22352. }
  22353. },
  22354. },
  22355. [
  22356. {
  22357. name: "Normal",
  22358. height: math.unit(8 + 6 / 12, "feet"),
  22359. default: true
  22360. },
  22361. {
  22362. name: "Macro",
  22363. height: math.unit(150, "feet")
  22364. },
  22365. {
  22366. name: "Megamacro",
  22367. height: math.unit(1000, "miles")
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22373. {
  22374. front: {
  22375. height: math.unit(1.72, "m"),
  22376. weight: math.unit(80, "lb"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/voski/front.svg",
  22380. extra: 2076.22 / 2022.4,
  22381. bottom: 102.7 / 2177.3866
  22382. }
  22383. },
  22384. frontNsfw: {
  22385. height: math.unit(1.72, "m"),
  22386. weight: math.unit(80, "lb"),
  22387. name: "Front (NSFW)",
  22388. image: {
  22389. source: "./media/characters/voski/front-nsfw.svg",
  22390. extra: 2076.22 / 2022.4,
  22391. bottom: 102.7 / 2177.3866
  22392. }
  22393. },
  22394. back: {
  22395. height: math.unit(1.72, "m"),
  22396. weight: math.unit(80, "lb"),
  22397. name: "Back",
  22398. image: {
  22399. source: "./media/characters/voski/back.svg",
  22400. extra: 2104 / 2051,
  22401. bottom: 10.45 / 2113.63
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(1.72, "m")
  22409. },
  22410. {
  22411. name: "Macro",
  22412. height: math.unit(55, "m"),
  22413. default: true
  22414. },
  22415. {
  22416. name: "Macro+",
  22417. height: math.unit(300, "m")
  22418. },
  22419. {
  22420. name: "Macro++",
  22421. height: math.unit(700, "m")
  22422. },
  22423. {
  22424. name: "Macro+++",
  22425. height: math.unit(4500, "m")
  22426. },
  22427. {
  22428. name: "Macro++++",
  22429. height: math.unit(45, "km")
  22430. },
  22431. {
  22432. name: "Macro+++++",
  22433. height: math.unit(1220, "km")
  22434. },
  22435. ]
  22436. ))
  22437. characterMakers.push(() => makeCharacter(
  22438. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22439. {
  22440. front: {
  22441. height: math.unit(2.3, "m"),
  22442. weight: math.unit(304, "kg"),
  22443. name: "Front",
  22444. image: {
  22445. source: "./media/characters/icowom-lee/front.svg",
  22446. extra: 985 / 955,
  22447. bottom: 25.4 / 1012
  22448. }
  22449. },
  22450. fronttentacles: {
  22451. height: math.unit(2.3, "m"),
  22452. weight: math.unit(304, "kg"),
  22453. name: "Front-tentacles",
  22454. image: {
  22455. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22456. extra: 985 / 955,
  22457. bottom: 25.4 / 1012
  22458. }
  22459. },
  22460. back: {
  22461. height: math.unit(2.3, "m"),
  22462. weight: math.unit(304, "kg"),
  22463. name: "Back",
  22464. image: {
  22465. source: "./media/characters/icowom-lee/back.svg",
  22466. extra: 975 / 954,
  22467. bottom: 9.5 / 985
  22468. }
  22469. },
  22470. backtentacles: {
  22471. height: math.unit(2.3, "m"),
  22472. weight: math.unit(304, "kg"),
  22473. name: "Back-tentacles",
  22474. image: {
  22475. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22476. extra: 975 / 954,
  22477. bottom: 9.5 / 985
  22478. }
  22479. },
  22480. frontDressed: {
  22481. height: math.unit(2.3, "m"),
  22482. weight: math.unit(304, "kg"),
  22483. name: "Front (Dressed)",
  22484. image: {
  22485. source: "./media/characters/icowom-lee/front-dressed.svg",
  22486. extra: 3076 / 2933,
  22487. bottom: 51.4 / 3125.1889
  22488. }
  22489. },
  22490. rump: {
  22491. height: math.unit(0.776, "meters"),
  22492. name: "Rump",
  22493. image: {
  22494. source: "./media/characters/icowom-lee/rump.svg"
  22495. }
  22496. },
  22497. genitals: {
  22498. height: math.unit(0.78, "meters"),
  22499. name: "Genitals",
  22500. image: {
  22501. source: "./media/characters/icowom-lee/genitals.svg"
  22502. }
  22503. },
  22504. },
  22505. [
  22506. {
  22507. name: "Normal",
  22508. height: math.unit(2.3, "meters"),
  22509. default: true
  22510. },
  22511. {
  22512. name: "Macro",
  22513. height: math.unit(94, "meters"),
  22514. default: true
  22515. },
  22516. ]
  22517. ))
  22518. characterMakers.push(() => makeCharacter(
  22519. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22520. {
  22521. front: {
  22522. height: math.unit(22, "meters"),
  22523. weight: math.unit(21000, "kg"),
  22524. name: "Front",
  22525. image: {
  22526. source: "./media/characters/shock-diamond/front.svg",
  22527. extra: 2204 / 2053,
  22528. bottom: 65 / 2239.47
  22529. }
  22530. },
  22531. frontNude: {
  22532. height: math.unit(22, "meters"),
  22533. weight: math.unit(21000, "kg"),
  22534. name: "Front (Nude)",
  22535. image: {
  22536. source: "./media/characters/shock-diamond/front-nude.svg",
  22537. extra: 2514 / 2285,
  22538. bottom: 13 / 2527.56
  22539. }
  22540. },
  22541. },
  22542. [
  22543. {
  22544. name: "Normal",
  22545. height: math.unit(3, "meters")
  22546. },
  22547. {
  22548. name: "Macro",
  22549. height: math.unit(22, "meters"),
  22550. default: true
  22551. },
  22552. ]
  22553. ))
  22554. characterMakers.push(() => makeCharacter(
  22555. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22556. {
  22557. front: {
  22558. height: math.unit(5 + 4 / 12, "feet"),
  22559. weight: math.unit(120, "lb"),
  22560. name: "Front",
  22561. image: {
  22562. source: "./media/characters/rory/front.svg",
  22563. extra: 1318/1241,
  22564. bottom: 42/1360
  22565. }
  22566. },
  22567. back: {
  22568. height: math.unit(5 + 4 / 12, "feet"),
  22569. weight: math.unit(120, "lb"),
  22570. name: "Back",
  22571. image: {
  22572. source: "./media/characters/rory/back.svg",
  22573. extra: 1318/1241,
  22574. bottom: 42/1360
  22575. }
  22576. },
  22577. butt: {
  22578. height: math.unit(1.74, "feet"),
  22579. name: "Butt",
  22580. image: {
  22581. source: "./media/characters/rory/butt.svg"
  22582. }
  22583. },
  22584. dick: {
  22585. height: math.unit(1.02, "feet"),
  22586. name: "Dick",
  22587. image: {
  22588. source: "./media/characters/rory/dick.svg"
  22589. }
  22590. },
  22591. paws: {
  22592. height: math.unit(1, "feet"),
  22593. name: "Paws",
  22594. image: {
  22595. source: "./media/characters/rory/paws.svg"
  22596. }
  22597. },
  22598. frontAlt: {
  22599. height: math.unit(5 + 4 / 12, "feet"),
  22600. weight: math.unit(120, "lb"),
  22601. name: "Front (Alt)",
  22602. image: {
  22603. source: "./media/characters/rory/front-alt.svg",
  22604. extra: 589 / 556,
  22605. bottom: 45.7 / 635.76
  22606. }
  22607. },
  22608. frontAltNude: {
  22609. height: math.unit(5 + 4 / 12, "feet"),
  22610. weight: math.unit(120, "lb"),
  22611. name: "Front (Alt, Nude)",
  22612. image: {
  22613. source: "./media/characters/rory/front-alt-nude.svg",
  22614. extra: 589 / 556,
  22615. bottom: 45.7 / 635.76
  22616. }
  22617. },
  22618. side: {
  22619. height: math.unit(5 + 4 / 12, "feet"),
  22620. weight: math.unit(120, "lb"),
  22621. name: "Side",
  22622. image: {
  22623. source: "./media/characters/rory/side.svg",
  22624. extra: 597 / 564,
  22625. bottom: 55 / 653
  22626. }
  22627. },
  22628. backAlt: {
  22629. height: math.unit(5 + 4 / 12, "feet"),
  22630. weight: math.unit(120, "lb"),
  22631. name: "Back (Alt)",
  22632. image: {
  22633. source: "./media/characters/rory/back-alt.svg",
  22634. extra: 620 / 585,
  22635. bottom: 8.86 / 630.43
  22636. }
  22637. },
  22638. dickAlt: {
  22639. height: math.unit(0.86, "feet"),
  22640. name: "Dick (Alt)",
  22641. image: {
  22642. source: "./media/characters/rory/dick-alt.svg"
  22643. }
  22644. },
  22645. },
  22646. [
  22647. {
  22648. name: "Normal",
  22649. height: math.unit(5 + 4 / 12, "feet"),
  22650. default: true
  22651. },
  22652. {
  22653. name: "Macro",
  22654. height: math.unit(100, "feet")
  22655. },
  22656. {
  22657. name: "Macro+",
  22658. height: math.unit(140, "feet")
  22659. },
  22660. {
  22661. name: "Macro++",
  22662. height: math.unit(300, "feet")
  22663. },
  22664. ]
  22665. ))
  22666. characterMakers.push(() => makeCharacter(
  22667. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22668. {
  22669. front: {
  22670. height: math.unit(5 + 9 / 12, "feet"),
  22671. weight: math.unit(190, "lb"),
  22672. name: "Front",
  22673. image: {
  22674. source: "./media/characters/sprisk/front.svg",
  22675. extra: 1225 / 1180,
  22676. bottom: 42.7 / 1266.4
  22677. }
  22678. },
  22679. frontNsfw: {
  22680. height: math.unit(5 + 9 / 12, "feet"),
  22681. weight: math.unit(190, "lb"),
  22682. name: "Front (NSFW)",
  22683. image: {
  22684. source: "./media/characters/sprisk/front-nsfw.svg",
  22685. extra: 1225 / 1180,
  22686. bottom: 42.7 / 1266.4
  22687. }
  22688. },
  22689. back: {
  22690. height: math.unit(5 + 9 / 12, "feet"),
  22691. weight: math.unit(190, "lb"),
  22692. name: "Back",
  22693. image: {
  22694. source: "./media/characters/sprisk/back.svg",
  22695. extra: 1247 / 1200,
  22696. bottom: 5.6 / 1253.04
  22697. }
  22698. },
  22699. },
  22700. [
  22701. {
  22702. name: "Tiny",
  22703. height: math.unit(2, "inches")
  22704. },
  22705. {
  22706. name: "Normal",
  22707. height: math.unit(5 + 9 / 12, "feet"),
  22708. default: true
  22709. },
  22710. {
  22711. name: "Mini Macro",
  22712. height: math.unit(18, "feet")
  22713. },
  22714. {
  22715. name: "Macro",
  22716. height: math.unit(100, "feet")
  22717. },
  22718. {
  22719. name: "MACRO",
  22720. height: math.unit(50, "miles")
  22721. },
  22722. {
  22723. name: "M A C R O",
  22724. height: math.unit(300, "miles")
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22730. {
  22731. side: {
  22732. height: math.unit(15.6, "meters"),
  22733. weight: math.unit(700000, "kg"),
  22734. name: "Side",
  22735. image: {
  22736. source: "./media/characters/bunsen/side.svg",
  22737. extra: 1644 / 358
  22738. }
  22739. },
  22740. foot: {
  22741. height: math.unit(1.611 * 1644 / 358, "meter"),
  22742. name: "Foot",
  22743. image: {
  22744. source: "./media/characters/bunsen/foot.svg"
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Small",
  22751. height: math.unit(10, "feet")
  22752. },
  22753. {
  22754. name: "Normal",
  22755. height: math.unit(15.6, "meters"),
  22756. default: true
  22757. },
  22758. ]
  22759. ))
  22760. characterMakers.push(() => makeCharacter(
  22761. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22762. {
  22763. front: {
  22764. height: math.unit(4 + 11 / 12, "feet"),
  22765. weight: math.unit(140, "lb"),
  22766. name: "Front",
  22767. image: {
  22768. source: "./media/characters/sesh/front.svg",
  22769. extra: 3420 / 3231,
  22770. bottom: 72 / 3949.5
  22771. }
  22772. },
  22773. },
  22774. [
  22775. {
  22776. name: "Normal",
  22777. height: math.unit(4 + 11 / 12, "feet")
  22778. },
  22779. {
  22780. name: "Grown",
  22781. height: math.unit(15, "feet"),
  22782. default: true
  22783. },
  22784. {
  22785. name: "Macro",
  22786. height: math.unit(1500, "feet")
  22787. },
  22788. {
  22789. name: "Megamacro",
  22790. height: math.unit(30, "miles")
  22791. },
  22792. {
  22793. name: "Continental",
  22794. height: math.unit(3000, "miles")
  22795. },
  22796. {
  22797. name: "Gravity Mass",
  22798. height: math.unit(300000, "miles")
  22799. },
  22800. {
  22801. name: "Planet Buster",
  22802. height: math.unit(30000000, "miles")
  22803. },
  22804. {
  22805. name: "Big",
  22806. height: math.unit(3000000000, "miles")
  22807. },
  22808. ]
  22809. ))
  22810. characterMakers.push(() => makeCharacter(
  22811. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22812. {
  22813. front: {
  22814. height: math.unit(9, "feet"),
  22815. weight: math.unit(350, "lb"),
  22816. name: "Front",
  22817. image: {
  22818. source: "./media/characters/pepper/front.svg",
  22819. extra: 1448 / 1312,
  22820. bottom: 9.4 / 1457.88
  22821. }
  22822. },
  22823. back: {
  22824. height: math.unit(9, "feet"),
  22825. weight: math.unit(350, "lb"),
  22826. name: "Back",
  22827. image: {
  22828. source: "./media/characters/pepper/back.svg",
  22829. extra: 1423 / 1300,
  22830. bottom: 4.6 / 1429
  22831. }
  22832. },
  22833. maw: {
  22834. height: math.unit(0.932, "feet"),
  22835. name: "Maw",
  22836. image: {
  22837. source: "./media/characters/pepper/maw.svg"
  22838. }
  22839. },
  22840. },
  22841. [
  22842. {
  22843. name: "Normal",
  22844. height: math.unit(9, "feet"),
  22845. default: true
  22846. },
  22847. ]
  22848. ))
  22849. characterMakers.push(() => makeCharacter(
  22850. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22851. {
  22852. front: {
  22853. height: math.unit(6, "feet"),
  22854. weight: math.unit(150, "lb"),
  22855. name: "Front",
  22856. image: {
  22857. source: "./media/characters/maelstrom/front.svg",
  22858. extra: 2100 / 1883,
  22859. bottom: 94 / 2196.7
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Less Kaiju",
  22866. height: math.unit(200, "feet")
  22867. },
  22868. {
  22869. name: "Kaiju",
  22870. height: math.unit(400, "feet"),
  22871. default: true
  22872. },
  22873. {
  22874. name: "Kaiju-er",
  22875. height: math.unit(600, "feet")
  22876. },
  22877. ]
  22878. ))
  22879. characterMakers.push(() => makeCharacter(
  22880. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22881. {
  22882. front: {
  22883. height: math.unit(6 + 5 / 12, "feet"),
  22884. weight: math.unit(180, "lb"),
  22885. name: "Front",
  22886. image: {
  22887. source: "./media/characters/lexir/front.svg",
  22888. extra: 180 / 172,
  22889. bottom: 12 / 192
  22890. }
  22891. },
  22892. back: {
  22893. height: math.unit(6 + 5 / 12, "feet"),
  22894. weight: math.unit(180, "lb"),
  22895. name: "Back",
  22896. image: {
  22897. source: "./media/characters/lexir/back.svg",
  22898. extra: 183.84 / 175.5,
  22899. bottom: 3.1 / 187
  22900. }
  22901. },
  22902. },
  22903. [
  22904. {
  22905. name: "Very Smal",
  22906. height: math.unit(1, "nm")
  22907. },
  22908. {
  22909. name: "Normal",
  22910. height: math.unit(6 + 5 / 12, "feet"),
  22911. default: true
  22912. },
  22913. {
  22914. name: "Macro",
  22915. height: math.unit(1, "mile")
  22916. },
  22917. {
  22918. name: "Megamacro",
  22919. height: math.unit(50, "miles")
  22920. },
  22921. ]
  22922. ))
  22923. characterMakers.push(() => makeCharacter(
  22924. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22925. {
  22926. front: {
  22927. height: math.unit(1.5, "meters"),
  22928. weight: math.unit(100, "lb"),
  22929. name: "Front",
  22930. image: {
  22931. source: "./media/characters/maksio/front.svg",
  22932. extra: 1549 / 1531,
  22933. bottom: 123.7 / 1674.5429
  22934. }
  22935. },
  22936. back: {
  22937. height: math.unit(1.5, "meters"),
  22938. weight: math.unit(100, "lb"),
  22939. name: "Back",
  22940. image: {
  22941. source: "./media/characters/maksio/back.svg",
  22942. extra: 1541 / 1509,
  22943. bottom: 97 / 1639
  22944. }
  22945. },
  22946. hand: {
  22947. height: math.unit(0.621, "feet"),
  22948. name: "Hand",
  22949. image: {
  22950. source: "./media/characters/maksio/hand.svg"
  22951. }
  22952. },
  22953. foot: {
  22954. height: math.unit(1.611, "feet"),
  22955. name: "Foot",
  22956. image: {
  22957. source: "./media/characters/maksio/foot.svg"
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Shrunken",
  22964. height: math.unit(10, "cm")
  22965. },
  22966. {
  22967. name: "Normal",
  22968. height: math.unit(150, "cm"),
  22969. default: true
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22975. {
  22976. front: {
  22977. height: math.unit(100, "feet"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/erza-bear/front.svg",
  22981. extra: 2449 / 2390,
  22982. bottom: 46 / 2494
  22983. }
  22984. },
  22985. back: {
  22986. height: math.unit(100, "feet"),
  22987. name: "Back",
  22988. image: {
  22989. source: "./media/characters/erza-bear/back.svg",
  22990. extra: 2489 / 2430,
  22991. bottom: 85.4 / 2480
  22992. }
  22993. },
  22994. tail: {
  22995. height: math.unit(42, "feet"),
  22996. name: "Tail",
  22997. image: {
  22998. source: "./media/characters/erza-bear/tail.svg"
  22999. }
  23000. },
  23001. tongue: {
  23002. height: math.unit(8, "feet"),
  23003. name: "Tongue",
  23004. image: {
  23005. source: "./media/characters/erza-bear/tongue.svg"
  23006. }
  23007. },
  23008. dick: {
  23009. height: math.unit(10.5, "feet"),
  23010. name: "Dick",
  23011. image: {
  23012. source: "./media/characters/erza-bear/dick.svg"
  23013. }
  23014. },
  23015. dickVertical: {
  23016. height: math.unit(16.9, "feet"),
  23017. name: "Dick (Vertical)",
  23018. image: {
  23019. source: "./media/characters/erza-bear/dick-vertical.svg"
  23020. }
  23021. },
  23022. },
  23023. [
  23024. {
  23025. name: "Macro",
  23026. height: math.unit(100, "feet"),
  23027. default: true
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23033. {
  23034. front: {
  23035. height: math.unit(172, "cm"),
  23036. weight: math.unit(73, "kg"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/violet-flor/front.svg",
  23040. extra: 1530 / 1442,
  23041. bottom: 61.9 / 1588.8
  23042. }
  23043. },
  23044. back: {
  23045. height: math.unit(180, "cm"),
  23046. weight: math.unit(73, "kg"),
  23047. name: "Back",
  23048. image: {
  23049. source: "./media/characters/violet-flor/back.svg",
  23050. extra: 1692 / 1630,
  23051. bottom: 20 / 1712
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(172, "cm"),
  23059. default: true
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23065. {
  23066. front: {
  23067. height: math.unit(6, "feet"),
  23068. weight: math.unit(220, "lb"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/lynn-rhea/front.svg",
  23072. extra: 310 / 273
  23073. }
  23074. },
  23075. back: {
  23076. height: math.unit(6, "feet"),
  23077. weight: math.unit(220, "lb"),
  23078. name: "Back",
  23079. image: {
  23080. source: "./media/characters/lynn-rhea/back.svg",
  23081. extra: 310 / 273
  23082. }
  23083. },
  23084. dicks: {
  23085. height: math.unit(0.9, "feet"),
  23086. name: "Dicks",
  23087. image: {
  23088. source: "./media/characters/lynn-rhea/dicks.svg"
  23089. }
  23090. },
  23091. slit: {
  23092. height: math.unit(0.4, "feet"),
  23093. name: "Slit",
  23094. image: {
  23095. source: "./media/characters/lynn-rhea/slit.svg"
  23096. }
  23097. },
  23098. },
  23099. [
  23100. {
  23101. name: "Micro",
  23102. height: math.unit(1, "inch")
  23103. },
  23104. {
  23105. name: "Macro",
  23106. height: math.unit(60, "feet"),
  23107. default: true
  23108. },
  23109. {
  23110. name: "Megamacro",
  23111. height: math.unit(2, "miles")
  23112. },
  23113. {
  23114. name: "Gigamacro",
  23115. height: math.unit(3, "earths")
  23116. },
  23117. {
  23118. name: "Galactic",
  23119. height: math.unit(0.8, "galaxies")
  23120. },
  23121. ]
  23122. ))
  23123. characterMakers.push(() => makeCharacter(
  23124. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23125. {
  23126. front: {
  23127. height: math.unit(1600, "feet"),
  23128. weight: math.unit(85758785169, "kg"),
  23129. name: "Front",
  23130. image: {
  23131. source: "./media/characters/valathos/front.svg",
  23132. extra: 1451 / 1339
  23133. }
  23134. },
  23135. },
  23136. [
  23137. {
  23138. name: "Macro",
  23139. height: math.unit(1600, "feet"),
  23140. default: true
  23141. },
  23142. ]
  23143. ))
  23144. characterMakers.push(() => makeCharacter(
  23145. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23146. {
  23147. front: {
  23148. height: math.unit(7 + 5 / 12, "feet"),
  23149. weight: math.unit(300, "lb"),
  23150. name: "Front",
  23151. image: {
  23152. source: "./media/characters/azula/front.svg",
  23153. extra: 3208 / 2880,
  23154. bottom: 80.2 / 3277
  23155. }
  23156. },
  23157. back: {
  23158. height: math.unit(7 + 5 / 12, "feet"),
  23159. weight: math.unit(300, "lb"),
  23160. name: "Back",
  23161. image: {
  23162. source: "./media/characters/azula/back.svg",
  23163. extra: 3169 / 2822,
  23164. bottom: 150.6 / 3321
  23165. }
  23166. },
  23167. },
  23168. [
  23169. {
  23170. name: "Normal",
  23171. height: math.unit(7 + 5 / 12, "feet"),
  23172. default: true
  23173. },
  23174. {
  23175. name: "Big",
  23176. height: math.unit(20, "feet")
  23177. },
  23178. ]
  23179. ))
  23180. characterMakers.push(() => makeCharacter(
  23181. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23182. {
  23183. front: {
  23184. height: math.unit(5 + 1 / 12, "feet"),
  23185. weight: math.unit(110, "lb"),
  23186. name: "Front",
  23187. image: {
  23188. source: "./media/characters/rupert/front.svg",
  23189. extra: 1549 / 1495,
  23190. bottom: 54.2 / 1604.4
  23191. }
  23192. },
  23193. },
  23194. [
  23195. {
  23196. name: "Normal",
  23197. height: math.unit(5 + 1 / 12, "feet"),
  23198. default: true
  23199. },
  23200. ]
  23201. ))
  23202. characterMakers.push(() => makeCharacter(
  23203. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23204. {
  23205. front: {
  23206. height: math.unit(8 + 4 / 12, "feet"),
  23207. weight: math.unit(350, "lb"),
  23208. name: "Front",
  23209. image: {
  23210. source: "./media/characters/sheera-castellar/front.svg",
  23211. extra: 1957 / 1894,
  23212. bottom: 26.97 / 1975.017
  23213. }
  23214. },
  23215. side: {
  23216. height: math.unit(8 + 4 / 12, "feet"),
  23217. weight: math.unit(350, "lb"),
  23218. name: "Side",
  23219. image: {
  23220. source: "./media/characters/sheera-castellar/side.svg",
  23221. extra: 1957 / 1894
  23222. }
  23223. },
  23224. back: {
  23225. height: math.unit(8 + 4 / 12, "feet"),
  23226. weight: math.unit(350, "lb"),
  23227. name: "Back",
  23228. image: {
  23229. source: "./media/characters/sheera-castellar/back.svg",
  23230. extra: 1957 / 1894
  23231. }
  23232. },
  23233. angled: {
  23234. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23235. weight: math.unit(350, "lb"),
  23236. name: "Angled",
  23237. image: {
  23238. source: "./media/characters/sheera-castellar/angled.svg",
  23239. extra: 1807 / 1707,
  23240. bottom: 68 / 1875
  23241. }
  23242. },
  23243. genitals: {
  23244. height: math.unit(2.2, "feet"),
  23245. name: "Genitals",
  23246. image: {
  23247. source: "./media/characters/sheera-castellar/genitals.svg"
  23248. }
  23249. },
  23250. taur: {
  23251. height: math.unit(10 + 6/12, "feet"),
  23252. name: "Taur",
  23253. image: {
  23254. source: "./media/characters/sheera-castellar/taur.svg",
  23255. extra: 2017/1909,
  23256. bottom: 185/2202
  23257. }
  23258. },
  23259. },
  23260. [
  23261. {
  23262. name: "Normal",
  23263. height: math.unit(8 + 4 / 12, "feet")
  23264. },
  23265. {
  23266. name: "Macro",
  23267. height: math.unit(150, "feet"),
  23268. default: true
  23269. },
  23270. {
  23271. name: "Macro+",
  23272. height: math.unit(800, "feet")
  23273. },
  23274. ]
  23275. ))
  23276. characterMakers.push(() => makeCharacter(
  23277. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23278. {
  23279. front: {
  23280. height: math.unit(6, "feet"),
  23281. weight: math.unit(150, "lb"),
  23282. name: "Front",
  23283. image: {
  23284. source: "./media/characters/jaipur/front.svg",
  23285. extra: 3860 / 3731,
  23286. bottom: 287 / 4140
  23287. }
  23288. },
  23289. back: {
  23290. height: math.unit(6, "feet"),
  23291. weight: math.unit(150, "lb"),
  23292. name: "Back",
  23293. image: {
  23294. source: "./media/characters/jaipur/back.svg",
  23295. extra: 4060 / 3930,
  23296. bottom: 151 / 4200
  23297. }
  23298. },
  23299. },
  23300. [
  23301. {
  23302. name: "Normal",
  23303. height: math.unit(1.85, "meters"),
  23304. default: true
  23305. },
  23306. {
  23307. name: "Macro",
  23308. height: math.unit(150, "meters")
  23309. },
  23310. {
  23311. name: "Macro+",
  23312. height: math.unit(0.5, "miles")
  23313. },
  23314. {
  23315. name: "Macro++",
  23316. height: math.unit(2.5, "miles")
  23317. },
  23318. {
  23319. name: "Macro+++",
  23320. height: math.unit(12, "miles")
  23321. },
  23322. {
  23323. name: "Macro++++",
  23324. height: math.unit(120, "miles")
  23325. },
  23326. {
  23327. name: "Macro+++++",
  23328. height: math.unit(1200, "miles")
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23334. {
  23335. front: {
  23336. height: math.unit(6, "feet"),
  23337. weight: math.unit(150, "lb"),
  23338. name: "Front",
  23339. image: {
  23340. source: "./media/characters/sheila-wolf/front.svg",
  23341. extra: 1931 / 1808,
  23342. bottom: 29.5 / 1960
  23343. }
  23344. },
  23345. dick: {
  23346. height: math.unit(1.464, "feet"),
  23347. name: "Dick",
  23348. image: {
  23349. source: "./media/characters/sheila-wolf/dick.svg"
  23350. }
  23351. },
  23352. muzzle: {
  23353. height: math.unit(0.513, "feet"),
  23354. name: "Muzzle",
  23355. image: {
  23356. source: "./media/characters/sheila-wolf/muzzle.svg"
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Macro",
  23363. height: math.unit(70, "feet"),
  23364. default: true
  23365. },
  23366. ]
  23367. ))
  23368. characterMakers.push(() => makeCharacter(
  23369. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23370. {
  23371. front: {
  23372. height: math.unit(32, "meters"),
  23373. weight: math.unit(300000, "kg"),
  23374. name: "Front",
  23375. image: {
  23376. source: "./media/characters/almor/front.svg",
  23377. extra: 1408 / 1322,
  23378. bottom: 94.6 / 1506.5
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Macro",
  23385. height: math.unit(32, "meters"),
  23386. default: true
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23392. {
  23393. front: {
  23394. height: math.unit(7, "feet"),
  23395. weight: math.unit(200, "lb"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/silver/front.svg",
  23399. extra: 472.1 / 450.5,
  23400. bottom: 26.5 / 499.424
  23401. }
  23402. },
  23403. },
  23404. [
  23405. {
  23406. name: "Normal",
  23407. height: math.unit(7, "feet"),
  23408. default: true
  23409. },
  23410. {
  23411. name: "Macro",
  23412. height: math.unit(800, "feet")
  23413. },
  23414. {
  23415. name: "Megamacro",
  23416. height: math.unit(250, "miles")
  23417. },
  23418. ]
  23419. ))
  23420. characterMakers.push(() => makeCharacter(
  23421. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23422. {
  23423. front: {
  23424. height: math.unit(6, "feet"),
  23425. weight: math.unit(150, "lb"),
  23426. name: "Front",
  23427. image: {
  23428. source: "./media/characters/pliskin/front.svg",
  23429. extra: 1469 / 1359,
  23430. bottom: 70 / 1540
  23431. }
  23432. },
  23433. },
  23434. [
  23435. {
  23436. name: "Micro",
  23437. height: math.unit(3, "inches")
  23438. },
  23439. {
  23440. name: "Normal",
  23441. height: math.unit(5 + 11 / 12, "feet"),
  23442. default: true
  23443. },
  23444. {
  23445. name: "Macro",
  23446. height: math.unit(120, "feet")
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23452. {
  23453. front: {
  23454. height: math.unit(6, "feet"),
  23455. weight: math.unit(150, "lb"),
  23456. name: "Front",
  23457. image: {
  23458. source: "./media/characters/sammy/front.svg",
  23459. extra: 1193 / 1089,
  23460. bottom: 30.5 / 1226
  23461. }
  23462. },
  23463. },
  23464. [
  23465. {
  23466. name: "Macro",
  23467. height: math.unit(1700, "feet"),
  23468. default: true
  23469. },
  23470. {
  23471. name: "Examacro",
  23472. height: math.unit(2.5e9, "lightyears")
  23473. },
  23474. ]
  23475. ))
  23476. characterMakers.push(() => makeCharacter(
  23477. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23478. {
  23479. front: {
  23480. height: math.unit(21, "meters"),
  23481. weight: math.unit(12, "tonnes"),
  23482. name: "Front",
  23483. image: {
  23484. source: "./media/characters/kuru/front.svg",
  23485. extra: 4301 / 3785,
  23486. bottom: 371.3 / 4691
  23487. }
  23488. },
  23489. },
  23490. [
  23491. {
  23492. name: "Macro",
  23493. height: math.unit(21, "meters"),
  23494. default: true
  23495. },
  23496. ]
  23497. ))
  23498. characterMakers.push(() => makeCharacter(
  23499. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23500. {
  23501. front: {
  23502. height: math.unit(23, "meters"),
  23503. weight: math.unit(12.2, "tonnes"),
  23504. name: "Front",
  23505. image: {
  23506. source: "./media/characters/rakka/front.svg",
  23507. extra: 4670 / 4169,
  23508. bottom: 301 / 4968.7
  23509. }
  23510. },
  23511. },
  23512. [
  23513. {
  23514. name: "Macro",
  23515. height: math.unit(23, "meters"),
  23516. default: true
  23517. },
  23518. ]
  23519. ))
  23520. characterMakers.push(() => makeCharacter(
  23521. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23522. {
  23523. front: {
  23524. height: math.unit(6, "feet"),
  23525. weight: math.unit(150, "lb"),
  23526. name: "Front",
  23527. image: {
  23528. source: "./media/characters/rhys-feline/front.svg",
  23529. extra: 2488 / 2308,
  23530. bottom: 35.67 / 2519.19
  23531. }
  23532. },
  23533. },
  23534. [
  23535. {
  23536. name: "Really Small",
  23537. height: math.unit(1, "nm")
  23538. },
  23539. {
  23540. name: "Micro",
  23541. height: math.unit(4, "inches")
  23542. },
  23543. {
  23544. name: "Normal",
  23545. height: math.unit(4 + 10 / 12, "feet"),
  23546. default: true
  23547. },
  23548. {
  23549. name: "Macro",
  23550. height: math.unit(100, "feet")
  23551. },
  23552. {
  23553. name: "Megamacto",
  23554. height: math.unit(50, "miles")
  23555. },
  23556. ]
  23557. ))
  23558. characterMakers.push(() => makeCharacter(
  23559. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23560. {
  23561. side: {
  23562. height: math.unit(30, "feet"),
  23563. weight: math.unit(35000, "kg"),
  23564. name: "Side",
  23565. image: {
  23566. source: "./media/characters/alydar/side.svg",
  23567. extra: 234 / 222,
  23568. bottom: 6.5 / 241
  23569. }
  23570. },
  23571. front: {
  23572. height: math.unit(30, "feet"),
  23573. weight: math.unit(35000, "kg"),
  23574. name: "Front",
  23575. image: {
  23576. source: "./media/characters/alydar/front.svg",
  23577. extra: 223.37 / 210.2,
  23578. bottom: 22.3 / 246.76
  23579. }
  23580. },
  23581. top: {
  23582. height: math.unit(64.54, "feet"),
  23583. weight: math.unit(35000, "kg"),
  23584. name: "Top",
  23585. image: {
  23586. source: "./media/characters/alydar/top.svg"
  23587. }
  23588. },
  23589. anthro: {
  23590. height: math.unit(30, "feet"),
  23591. weight: math.unit(9000, "kg"),
  23592. name: "Anthro",
  23593. image: {
  23594. source: "./media/characters/alydar/anthro.svg",
  23595. extra: 432 / 421,
  23596. bottom: 7.18 / 440
  23597. }
  23598. },
  23599. maw: {
  23600. height: math.unit(11.693, "feet"),
  23601. name: "Maw",
  23602. image: {
  23603. source: "./media/characters/alydar/maw.svg"
  23604. }
  23605. },
  23606. head: {
  23607. height: math.unit(11.693, "feet"),
  23608. name: "Head",
  23609. image: {
  23610. source: "./media/characters/alydar/head.svg"
  23611. }
  23612. },
  23613. headAlt: {
  23614. height: math.unit(12.861, "feet"),
  23615. name: "Head (Alt)",
  23616. image: {
  23617. source: "./media/characters/alydar/head-alt.svg"
  23618. }
  23619. },
  23620. wing: {
  23621. height: math.unit(20.712, "feet"),
  23622. name: "Wing",
  23623. image: {
  23624. source: "./media/characters/alydar/wing.svg"
  23625. }
  23626. },
  23627. wingFeather: {
  23628. height: math.unit(9.662, "feet"),
  23629. name: "Wing Feather",
  23630. image: {
  23631. source: "./media/characters/alydar/wing-feather.svg"
  23632. }
  23633. },
  23634. countourFeather: {
  23635. height: math.unit(4.154, "feet"),
  23636. name: "Contour Feather",
  23637. image: {
  23638. source: "./media/characters/alydar/contour-feather.svg"
  23639. }
  23640. },
  23641. },
  23642. [
  23643. {
  23644. name: "Diplomatic",
  23645. height: math.unit(13, "feet"),
  23646. default: true
  23647. },
  23648. {
  23649. name: "Small",
  23650. height: math.unit(30, "feet")
  23651. },
  23652. {
  23653. name: "Normal",
  23654. height: math.unit(95, "feet"),
  23655. default: true
  23656. },
  23657. {
  23658. name: "Large",
  23659. height: math.unit(285, "feet")
  23660. },
  23661. {
  23662. name: "Incomprehensible",
  23663. height: math.unit(450, "megameters")
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23669. {
  23670. side: {
  23671. height: math.unit(11, "feet"),
  23672. weight: math.unit(1750, "kg"),
  23673. name: "Side",
  23674. image: {
  23675. source: "./media/characters/selicia/side.svg",
  23676. extra: 440 / 396,
  23677. bottom: 24.8 / 465.979
  23678. }
  23679. },
  23680. maw: {
  23681. height: math.unit(4.665, "feet"),
  23682. name: "Maw",
  23683. image: {
  23684. source: "./media/characters/selicia/maw.svg"
  23685. }
  23686. },
  23687. },
  23688. [
  23689. {
  23690. name: "Normal",
  23691. height: math.unit(11, "feet"),
  23692. default: true
  23693. },
  23694. ]
  23695. ))
  23696. characterMakers.push(() => makeCharacter(
  23697. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23698. {
  23699. side: {
  23700. height: math.unit(2 + 6 / 12, "feet"),
  23701. weight: math.unit(30, "lb"),
  23702. name: "Side",
  23703. image: {
  23704. source: "./media/characters/layla/side.svg",
  23705. extra: 244 / 188,
  23706. bottom: 18.2 / 262.1
  23707. }
  23708. },
  23709. back: {
  23710. height: math.unit(2 + 6 / 12, "feet"),
  23711. weight: math.unit(30, "lb"),
  23712. name: "Back",
  23713. image: {
  23714. source: "./media/characters/layla/back.svg",
  23715. extra: 308 / 241.5,
  23716. bottom: 8.9 / 316.8
  23717. }
  23718. },
  23719. cumming: {
  23720. height: math.unit(2 + 6 / 12, "feet"),
  23721. weight: math.unit(30, "lb"),
  23722. name: "Cumming",
  23723. image: {
  23724. source: "./media/characters/layla/cumming.svg",
  23725. extra: 342 / 279,
  23726. bottom: 595 / 938
  23727. }
  23728. },
  23729. dickFlaccid: {
  23730. height: math.unit(2.595, "feet"),
  23731. name: "Flaccid Genitals",
  23732. image: {
  23733. source: "./media/characters/layla/dick-flaccid.svg"
  23734. }
  23735. },
  23736. dickErect: {
  23737. height: math.unit(2.359, "feet"),
  23738. name: "Erect Genitals",
  23739. image: {
  23740. source: "./media/characters/layla/dick-erect.svg"
  23741. }
  23742. },
  23743. dragon: {
  23744. height: math.unit(40, "feet"),
  23745. name: "Dragon",
  23746. image: {
  23747. source: "./media/characters/layla/dragon.svg",
  23748. extra: 610/535,
  23749. bottom: 367/977
  23750. }
  23751. },
  23752. taur: {
  23753. height: math.unit(30, "feet"),
  23754. name: "Taur",
  23755. image: {
  23756. source: "./media/characters/layla/taur.svg",
  23757. extra: 1268/1199,
  23758. bottom: 112/1380
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Micro",
  23765. height: math.unit(1, "inch")
  23766. },
  23767. {
  23768. name: "Small",
  23769. height: math.unit(1, "foot")
  23770. },
  23771. {
  23772. name: "Normal",
  23773. height: math.unit(2 + 6 / 12, "feet"),
  23774. default: true
  23775. },
  23776. {
  23777. name: "Macro",
  23778. height: math.unit(200, "feet")
  23779. },
  23780. {
  23781. name: "Megamacro",
  23782. height: math.unit(1000, "miles")
  23783. },
  23784. {
  23785. name: "Planetary",
  23786. height: math.unit(8000, "miles")
  23787. },
  23788. {
  23789. name: "True Layla",
  23790. height: math.unit(200000 * 7, "multiverses")
  23791. },
  23792. ]
  23793. ))
  23794. characterMakers.push(() => makeCharacter(
  23795. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23796. {
  23797. back: {
  23798. height: math.unit(10.5, "feet"),
  23799. weight: math.unit(800, "lb"),
  23800. name: "Back",
  23801. image: {
  23802. source: "./media/characters/knox/back.svg",
  23803. extra: 1486 / 1089,
  23804. bottom: 107 / 1601.4
  23805. }
  23806. },
  23807. side: {
  23808. height: math.unit(10.5, "feet"),
  23809. weight: math.unit(800, "lb"),
  23810. name: "Side",
  23811. image: {
  23812. source: "./media/characters/knox/side.svg",
  23813. extra: 244 / 218,
  23814. bottom: 14 / 260
  23815. }
  23816. },
  23817. },
  23818. [
  23819. {
  23820. name: "Compact",
  23821. height: math.unit(10.5, "feet"),
  23822. default: true
  23823. },
  23824. {
  23825. name: "Dynamax",
  23826. height: math.unit(210, "feet")
  23827. },
  23828. {
  23829. name: "Full Macro",
  23830. height: math.unit(850, "feet")
  23831. },
  23832. ]
  23833. ))
  23834. characterMakers.push(() => makeCharacter(
  23835. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23836. {
  23837. front: {
  23838. height: math.unit(28, "feet"),
  23839. weight: math.unit(10500, "lb"),
  23840. name: "Front",
  23841. image: {
  23842. source: "./media/characters/kayda/front.svg",
  23843. extra: 1536 / 1428,
  23844. bottom: 68.7 / 1603
  23845. }
  23846. },
  23847. back: {
  23848. height: math.unit(28, "feet"),
  23849. weight: math.unit(10500, "lb"),
  23850. name: "Back",
  23851. image: {
  23852. source: "./media/characters/kayda/back.svg",
  23853. extra: 1557 / 1464,
  23854. bottom: 39.5 / 1597.49
  23855. }
  23856. },
  23857. dick: {
  23858. height: math.unit(3.858, "feet"),
  23859. name: "Dick",
  23860. image: {
  23861. source: "./media/characters/kayda/dick.svg"
  23862. }
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Macro",
  23868. height: math.unit(28, "feet"),
  23869. default: true
  23870. },
  23871. ]
  23872. ))
  23873. characterMakers.push(() => makeCharacter(
  23874. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23875. {
  23876. front: {
  23877. height: math.unit(10 + 11 / 12, "feet"),
  23878. weight: math.unit(1400, "lb"),
  23879. name: "Front",
  23880. image: {
  23881. source: "./media/characters/brian/front.svg",
  23882. extra: 737 / 692,
  23883. bottom: 55.4 / 785
  23884. }
  23885. },
  23886. },
  23887. [
  23888. {
  23889. name: "Normal",
  23890. height: math.unit(10 + 11 / 12, "feet"),
  23891. default: true
  23892. },
  23893. ]
  23894. ))
  23895. characterMakers.push(() => makeCharacter(
  23896. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23897. {
  23898. front: {
  23899. height: math.unit(5 + 8 / 12, "feet"),
  23900. weight: math.unit(140, "lb"),
  23901. name: "Front",
  23902. image: {
  23903. source: "./media/characters/khemri/front.svg",
  23904. extra: 4780 / 4059,
  23905. bottom: 80.1 / 4859.25
  23906. }
  23907. },
  23908. },
  23909. [
  23910. {
  23911. name: "Micro",
  23912. height: math.unit(6, "inches")
  23913. },
  23914. {
  23915. name: "Normal",
  23916. height: math.unit(5 + 8 / 12, "feet"),
  23917. default: true
  23918. },
  23919. ]
  23920. ))
  23921. characterMakers.push(() => makeCharacter(
  23922. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23923. {
  23924. front: {
  23925. height: math.unit(13, "feet"),
  23926. weight: math.unit(1700, "lb"),
  23927. name: "Front",
  23928. image: {
  23929. source: "./media/characters/felix-braveheart/front.svg",
  23930. extra: 1222 / 1157,
  23931. bottom: 53.2 / 1280
  23932. }
  23933. },
  23934. back: {
  23935. height: math.unit(13, "feet"),
  23936. weight: math.unit(1700, "lb"),
  23937. name: "Back",
  23938. image: {
  23939. source: "./media/characters/felix-braveheart/back.svg",
  23940. extra: 1277 / 1203,
  23941. bottom: 50.2 / 1327
  23942. }
  23943. },
  23944. feral: {
  23945. height: math.unit(6, "feet"),
  23946. weight: math.unit(400, "lb"),
  23947. name: "Feral",
  23948. image: {
  23949. source: "./media/characters/felix-braveheart/feral.svg",
  23950. extra: 682 / 625,
  23951. bottom: 6.9 / 688
  23952. }
  23953. },
  23954. },
  23955. [
  23956. {
  23957. name: "Normal",
  23958. height: math.unit(13, "feet"),
  23959. default: true
  23960. },
  23961. ]
  23962. ))
  23963. characterMakers.push(() => makeCharacter(
  23964. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23965. {
  23966. side: {
  23967. height: math.unit(5 + 11 / 12, "feet"),
  23968. weight: math.unit(1400, "lb"),
  23969. name: "Side",
  23970. image: {
  23971. source: "./media/characters/shadow-blade/side.svg",
  23972. extra: 1726 / 1267,
  23973. bottom: 58.4 / 1785
  23974. }
  23975. },
  23976. },
  23977. [
  23978. {
  23979. name: "Normal",
  23980. height: math.unit(5 + 11 / 12, "feet"),
  23981. default: true
  23982. },
  23983. ]
  23984. ))
  23985. characterMakers.push(() => makeCharacter(
  23986. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23987. {
  23988. front: {
  23989. height: math.unit(1 + 6 / 12, "feet"),
  23990. weight: math.unit(25, "lb"),
  23991. name: "Front",
  23992. image: {
  23993. source: "./media/characters/karla-halldor/front.svg",
  23994. extra: 1459 / 1383,
  23995. bottom: 12 / 1472
  23996. }
  23997. },
  23998. },
  23999. [
  24000. {
  24001. name: "Normal",
  24002. height: math.unit(1 + 6 / 12, "feet"),
  24003. default: true
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24009. {
  24010. front: {
  24011. height: math.unit(6 + 2 / 12, "feet"),
  24012. weight: math.unit(160, "lb"),
  24013. name: "Front",
  24014. image: {
  24015. source: "./media/characters/ariam/front.svg",
  24016. extra: 714 / 617,
  24017. bottom: 23.4 / 737,
  24018. }
  24019. },
  24020. squatting: {
  24021. height: math.unit(4.1, "feet"),
  24022. weight: math.unit(160, "lb"),
  24023. name: "Squatting",
  24024. image: {
  24025. source: "./media/characters/ariam/squatting.svg",
  24026. extra: 2617 / 2112,
  24027. bottom: 61.2 / 2681,
  24028. }
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Normal",
  24034. height: math.unit(6 + 2 / 12, "feet"),
  24035. default: true
  24036. },
  24037. {
  24038. name: "Normal+",
  24039. height: math.unit(4, "meters")
  24040. },
  24041. {
  24042. name: "Macro",
  24043. height: math.unit(50, "meters")
  24044. },
  24045. {
  24046. name: "Macro+",
  24047. height: math.unit(100, "meters")
  24048. },
  24049. {
  24050. name: "Megamacro",
  24051. height: math.unit(20, "km")
  24052. },
  24053. ]
  24054. ))
  24055. characterMakers.push(() => makeCharacter(
  24056. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24057. {
  24058. front: {
  24059. height: math.unit(1.67, "meters"),
  24060. weight: math.unit(140, "lb"),
  24061. name: "Front",
  24062. image: {
  24063. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24064. extra: 438 / 410,
  24065. bottom: 0.75 / 439
  24066. }
  24067. },
  24068. },
  24069. [
  24070. {
  24071. name: "Shrunken",
  24072. height: math.unit(7.6, "cm")
  24073. },
  24074. {
  24075. name: "Human Scale",
  24076. height: math.unit(1.67, "meters")
  24077. },
  24078. {
  24079. name: "Wolxi Scale",
  24080. height: math.unit(36.7, "meters"),
  24081. default: true
  24082. },
  24083. ]
  24084. ))
  24085. characterMakers.push(() => makeCharacter(
  24086. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24087. {
  24088. front: {
  24089. height: math.unit(1.73, "meters"),
  24090. weight: math.unit(240, "lb"),
  24091. name: "Front",
  24092. image: {
  24093. source: "./media/characters/izue-two-mothers/front.svg",
  24094. extra: 469 / 437,
  24095. bottom: 1.24 / 470.6
  24096. }
  24097. },
  24098. },
  24099. [
  24100. {
  24101. name: "Shrunken",
  24102. height: math.unit(7.86, "cm")
  24103. },
  24104. {
  24105. name: "Human Scale",
  24106. height: math.unit(1.73, "meters")
  24107. },
  24108. {
  24109. name: "Wolxi Scale",
  24110. height: math.unit(38, "meters"),
  24111. default: true
  24112. },
  24113. ]
  24114. ))
  24115. characterMakers.push(() => makeCharacter(
  24116. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24117. {
  24118. front: {
  24119. height: math.unit(1.55, "meters"),
  24120. weight: math.unit(120, "lb"),
  24121. name: "Front",
  24122. image: {
  24123. source: "./media/characters/teeku-love-shack/front.svg",
  24124. extra: 387 / 362,
  24125. bottom: 1.51 / 388
  24126. }
  24127. },
  24128. },
  24129. [
  24130. {
  24131. name: "Shrunken",
  24132. height: math.unit(7, "cm")
  24133. },
  24134. {
  24135. name: "Human Scale",
  24136. height: math.unit(1.55, "meters")
  24137. },
  24138. {
  24139. name: "Wolxi Scale",
  24140. height: math.unit(34.1, "meters"),
  24141. default: true
  24142. },
  24143. ]
  24144. ))
  24145. characterMakers.push(() => makeCharacter(
  24146. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24147. {
  24148. front: {
  24149. height: math.unit(1.83, "meters"),
  24150. weight: math.unit(135, "lb"),
  24151. name: "Front",
  24152. image: {
  24153. source: "./media/characters/dejma-the-red/front.svg",
  24154. extra: 480 / 458,
  24155. bottom: 1.8 / 482
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Shrunken",
  24162. height: math.unit(8.3, "cm")
  24163. },
  24164. {
  24165. name: "Human Scale",
  24166. height: math.unit(1.83, "meters")
  24167. },
  24168. {
  24169. name: "Wolxi Scale",
  24170. height: math.unit(40, "meters"),
  24171. default: true
  24172. },
  24173. ]
  24174. ))
  24175. characterMakers.push(() => makeCharacter(
  24176. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24177. {
  24178. front: {
  24179. height: math.unit(1.78, "meters"),
  24180. weight: math.unit(65, "kg"),
  24181. name: "Front",
  24182. image: {
  24183. source: "./media/characters/aki/front.svg",
  24184. extra: 452 / 415
  24185. }
  24186. },
  24187. frontNsfw: {
  24188. height: math.unit(1.78, "meters"),
  24189. weight: math.unit(65, "kg"),
  24190. name: "Front (NSFW)",
  24191. image: {
  24192. source: "./media/characters/aki/front-nsfw.svg",
  24193. extra: 452 / 415
  24194. }
  24195. },
  24196. back: {
  24197. height: math.unit(1.78, "meters"),
  24198. weight: math.unit(65, "kg"),
  24199. name: "Back",
  24200. image: {
  24201. source: "./media/characters/aki/back.svg",
  24202. extra: 452 / 415
  24203. }
  24204. },
  24205. rump: {
  24206. height: math.unit(2.05, "feet"),
  24207. name: "Rump",
  24208. image: {
  24209. source: "./media/characters/aki/rump.svg"
  24210. }
  24211. },
  24212. dick: {
  24213. height: math.unit(0.95, "feet"),
  24214. name: "Dick",
  24215. image: {
  24216. source: "./media/characters/aki/dick.svg"
  24217. }
  24218. },
  24219. },
  24220. [
  24221. {
  24222. name: "Micro",
  24223. height: math.unit(15, "cm")
  24224. },
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(178, "cm"),
  24228. default: true
  24229. },
  24230. {
  24231. name: "Macro",
  24232. height: math.unit(214, "m")
  24233. },
  24234. {
  24235. name: "Macro+",
  24236. height: math.unit(534, "m")
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24242. {
  24243. front: {
  24244. height: math.unit(5 + 5 / 12, "feet"),
  24245. weight: math.unit(120, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/ari/front.svg",
  24249. extra: 714.5 / 682,
  24250. bottom: 8 / 722.5
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Normal",
  24257. height: math.unit(5 + 5 / 12, "feet")
  24258. },
  24259. {
  24260. name: "Macro",
  24261. height: math.unit(100, "feet"),
  24262. default: true
  24263. },
  24264. {
  24265. name: "Megamacro",
  24266. height: math.unit(100, "miles")
  24267. },
  24268. {
  24269. name: "Gigamacro",
  24270. height: math.unit(80000, "miles")
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24276. {
  24277. side: {
  24278. height: math.unit(9, "feet"),
  24279. weight: math.unit(400, "kg"),
  24280. name: "Side",
  24281. image: {
  24282. source: "./media/characters/bolt/side.svg",
  24283. extra: 1126 / 896,
  24284. bottom: 60 / 1187.3,
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Micro",
  24291. height: math.unit(5, "inches")
  24292. },
  24293. {
  24294. name: "Normal",
  24295. height: math.unit(9, "feet"),
  24296. default: true
  24297. },
  24298. {
  24299. name: "Macro",
  24300. height: math.unit(700, "feet")
  24301. },
  24302. {
  24303. name: "Max Size",
  24304. height: math.unit(1.52e22, "yottameters")
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24310. {
  24311. front: {
  24312. height: math.unit(4.53, "meters"),
  24313. weight: math.unit(3, "tons"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/draekon-sylviar/front.svg",
  24317. extra: 1228 / 1068,
  24318. bottom: 41 / 1270
  24319. }
  24320. },
  24321. tail: {
  24322. height: math.unit(1.772, "meter"),
  24323. name: "Tail",
  24324. image: {
  24325. source: "./media/characters/draekon-sylviar/tail.svg"
  24326. }
  24327. },
  24328. head: {
  24329. height: math.unit(1.331, "meter"),
  24330. name: "Head",
  24331. image: {
  24332. source: "./media/characters/draekon-sylviar/head.svg"
  24333. }
  24334. },
  24335. hand: {
  24336. height: math.unit(0.564, "meter"),
  24337. name: "Hand",
  24338. image: {
  24339. source: "./media/characters/draekon-sylviar/hand.svg"
  24340. }
  24341. },
  24342. foot: {
  24343. height: math.unit(0.621, "meter"),
  24344. name: "Foot",
  24345. image: {
  24346. source: "./media/characters/draekon-sylviar/foot.svg",
  24347. bottom: 32 / 324
  24348. }
  24349. },
  24350. dick: {
  24351. height: math.unit(61, "cm"),
  24352. name: "Dick",
  24353. image: {
  24354. source: "./media/characters/draekon-sylviar/dick.svg"
  24355. }
  24356. },
  24357. dickseparated: {
  24358. height: math.unit(61, "cm"),
  24359. name: "Dick-separated",
  24360. image: {
  24361. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Small",
  24368. height: math.unit(4.53 / 2, "meters"),
  24369. default: true
  24370. },
  24371. {
  24372. name: "Normal",
  24373. height: math.unit(4.53, "meters"),
  24374. default: true
  24375. },
  24376. {
  24377. name: "Large",
  24378. height: math.unit(4.53 * 2, "meters"),
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24384. {
  24385. front: {
  24386. height: math.unit(6 + 2 / 12, "feet"),
  24387. weight: math.unit(180, "lb"),
  24388. name: "Front",
  24389. image: {
  24390. source: "./media/characters/brawler/front.svg",
  24391. extra: 3301 / 3027,
  24392. bottom: 138 / 3439
  24393. }
  24394. },
  24395. },
  24396. [
  24397. {
  24398. name: "Normal",
  24399. height: math.unit(6 + 2 / 12, "feet"),
  24400. default: true
  24401. },
  24402. ]
  24403. ))
  24404. characterMakers.push(() => makeCharacter(
  24405. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24406. {
  24407. front: {
  24408. height: math.unit(11, "feet"),
  24409. weight: math.unit(1000, "lb"),
  24410. name: "Front",
  24411. image: {
  24412. source: "./media/characters/alex/front.svg",
  24413. bottom: 44.5 / 620
  24414. }
  24415. },
  24416. },
  24417. [
  24418. {
  24419. name: "Micro",
  24420. height: math.unit(5, "inches")
  24421. },
  24422. {
  24423. name: "Normal",
  24424. height: math.unit(11, "feet"),
  24425. default: true
  24426. },
  24427. {
  24428. name: "Macro",
  24429. height: math.unit(9.5e9, "feet")
  24430. },
  24431. {
  24432. name: "Max Size",
  24433. height: math.unit(1.4e283, "yottameters")
  24434. },
  24435. ]
  24436. ))
  24437. characterMakers.push(() => makeCharacter(
  24438. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24439. {
  24440. female: {
  24441. height: math.unit(29.9, "m"),
  24442. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24443. name: "Female",
  24444. image: {
  24445. source: "./media/characters/zenari/female.svg",
  24446. extra: 3281.6 / 3217,
  24447. bottom: 72.2 / 3353
  24448. }
  24449. },
  24450. male: {
  24451. height: math.unit(27.7, "m"),
  24452. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24453. name: "Male",
  24454. image: {
  24455. source: "./media/characters/zenari/male.svg",
  24456. extra: 3008 / 2991,
  24457. bottom: 54.6 / 3069
  24458. }
  24459. },
  24460. },
  24461. [
  24462. {
  24463. name: "Macro",
  24464. height: math.unit(29.7, "meters"),
  24465. default: true
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24471. {
  24472. female: {
  24473. height: math.unit(23.8, "m"),
  24474. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24475. name: "Female",
  24476. image: {
  24477. source: "./media/characters/mactarian/female.svg",
  24478. extra: 2662 / 2569,
  24479. bottom: 73 / 2736
  24480. }
  24481. },
  24482. male: {
  24483. height: math.unit(23.8, "m"),
  24484. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24485. name: "Male",
  24486. image: {
  24487. source: "./media/characters/mactarian/male.svg",
  24488. extra: 2673 / 2600,
  24489. bottom: 76 / 2750
  24490. }
  24491. },
  24492. },
  24493. [
  24494. {
  24495. name: "Macro",
  24496. height: math.unit(23.8, "meters"),
  24497. default: true
  24498. },
  24499. ]
  24500. ))
  24501. characterMakers.push(() => makeCharacter(
  24502. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24503. {
  24504. female: {
  24505. height: math.unit(19.3, "m"),
  24506. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24507. name: "Female",
  24508. image: {
  24509. source: "./media/characters/umok/female.svg",
  24510. extra: 2186 / 2078,
  24511. bottom: 87 / 2277
  24512. }
  24513. },
  24514. male: {
  24515. height: math.unit(19.5, "m"),
  24516. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24517. name: "Male",
  24518. image: {
  24519. source: "./media/characters/umok/male.svg",
  24520. extra: 2233 / 2140,
  24521. bottom: 24.4 / 2258
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Macro",
  24528. height: math.unit(19.3, "meters"),
  24529. default: true
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24535. {
  24536. female: {
  24537. height: math.unit(26.15, "m"),
  24538. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24539. name: "Female",
  24540. image: {
  24541. source: "./media/characters/joraxian/female.svg",
  24542. extra: 2912 / 2824,
  24543. bottom: 36 / 2956
  24544. }
  24545. },
  24546. male: {
  24547. height: math.unit(25.4, "m"),
  24548. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24549. name: "Male",
  24550. image: {
  24551. source: "./media/characters/joraxian/male.svg",
  24552. extra: 2877 / 2721,
  24553. bottom: 82 / 2967
  24554. }
  24555. },
  24556. },
  24557. [
  24558. {
  24559. name: "Macro",
  24560. height: math.unit(26.15, "meters"),
  24561. default: true
  24562. },
  24563. ]
  24564. ))
  24565. characterMakers.push(() => makeCharacter(
  24566. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24567. {
  24568. female: {
  24569. height: math.unit(21.6, "m"),
  24570. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24571. name: "Female",
  24572. image: {
  24573. source: "./media/characters/sthara/female.svg",
  24574. extra: 2516 / 2347,
  24575. bottom: 21.5 / 2537
  24576. }
  24577. },
  24578. male: {
  24579. height: math.unit(24, "m"),
  24580. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24581. name: "Male",
  24582. image: {
  24583. source: "./media/characters/sthara/male.svg",
  24584. extra: 2732 / 2607,
  24585. bottom: 23 / 2732
  24586. }
  24587. },
  24588. },
  24589. [
  24590. {
  24591. name: "Macro",
  24592. height: math.unit(21.6, "meters"),
  24593. default: true
  24594. },
  24595. ]
  24596. ))
  24597. characterMakers.push(() => makeCharacter(
  24598. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24599. {
  24600. front: {
  24601. height: math.unit(6 + 4 / 12, "feet"),
  24602. weight: math.unit(175, "lb"),
  24603. name: "Front",
  24604. image: {
  24605. source: "./media/characters/luka-bryzant/front.svg",
  24606. extra: 311 / 289,
  24607. bottom: 4 / 315
  24608. }
  24609. },
  24610. back: {
  24611. height: math.unit(6 + 4 / 12, "feet"),
  24612. weight: math.unit(175, "lb"),
  24613. name: "Back",
  24614. image: {
  24615. source: "./media/characters/luka-bryzant/back.svg",
  24616. extra: 311 / 289,
  24617. bottom: 3.8 / 313.7
  24618. }
  24619. },
  24620. },
  24621. [
  24622. {
  24623. name: "Micro",
  24624. height: math.unit(10, "inches")
  24625. },
  24626. {
  24627. name: "Normal",
  24628. height: math.unit(6 + 4 / 12, "feet"),
  24629. default: true
  24630. },
  24631. {
  24632. name: "Large",
  24633. height: math.unit(12, "feet")
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(5 + 7 / 12, "feet"),
  24642. weight: math.unit(185, "lb"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/aman-aquila/front.svg",
  24646. extra: 1013 / 976,
  24647. bottom: 45.6 / 1057
  24648. }
  24649. },
  24650. side: {
  24651. height: math.unit(5 + 7 / 12, "feet"),
  24652. weight: math.unit(185, "lb"),
  24653. name: "Side",
  24654. image: {
  24655. source: "./media/characters/aman-aquila/side.svg",
  24656. extra: 1054 / 1011,
  24657. bottom: 15 / 1070
  24658. }
  24659. },
  24660. back: {
  24661. height: math.unit(5 + 7 / 12, "feet"),
  24662. weight: math.unit(185, "lb"),
  24663. name: "Back",
  24664. image: {
  24665. source: "./media/characters/aman-aquila/back.svg",
  24666. extra: 1026 / 970,
  24667. bottom: 12 / 1039
  24668. }
  24669. },
  24670. head: {
  24671. height: math.unit(1.211, "feet"),
  24672. name: "Head",
  24673. image: {
  24674. source: "./media/characters/aman-aquila/head.svg",
  24675. }
  24676. },
  24677. },
  24678. [
  24679. {
  24680. name: "Minimicro",
  24681. height: math.unit(0.057, "inches")
  24682. },
  24683. {
  24684. name: "Micro",
  24685. height: math.unit(7, "inches")
  24686. },
  24687. {
  24688. name: "Mini",
  24689. height: math.unit(3 + 7 / 12, "feet")
  24690. },
  24691. {
  24692. name: "Normal",
  24693. height: math.unit(5 + 7 / 12, "feet"),
  24694. default: true
  24695. },
  24696. {
  24697. name: "Macro",
  24698. height: math.unit(157 + 7 / 12, "feet")
  24699. },
  24700. {
  24701. name: "Megamacro",
  24702. height: math.unit(1557 + 7 / 12, "feet")
  24703. },
  24704. {
  24705. name: "Gigamacro",
  24706. height: math.unit(15557 + 7 / 12, "feet")
  24707. },
  24708. ]
  24709. ))
  24710. characterMakers.push(() => makeCharacter(
  24711. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24712. {
  24713. front: {
  24714. height: math.unit(3 + 2 / 12, "inches"),
  24715. weight: math.unit(0.3, "ounces"),
  24716. name: "Front",
  24717. image: {
  24718. source: "./media/characters/hiphae/front.svg",
  24719. extra: 1931 / 1683,
  24720. bottom: 24 / 1955
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Normal",
  24727. height: math.unit(3 + 1 / 2, "inches"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(5 + 10 / 12, "feet"),
  24737. weight: math.unit(165, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/nicky/front.svg",
  24741. extra: 3144 / 2886,
  24742. bottom: 45.6 / 3192
  24743. }
  24744. },
  24745. back: {
  24746. height: math.unit(5 + 10 / 12, "feet"),
  24747. weight: math.unit(165, "lb"),
  24748. name: "Back",
  24749. image: {
  24750. source: "./media/characters/nicky/back.svg",
  24751. extra: 3055 / 2804,
  24752. bottom: 28.4 / 3087
  24753. }
  24754. },
  24755. frontclothed: {
  24756. height: math.unit(5 + 10 / 12, "feet"),
  24757. weight: math.unit(165, "lb"),
  24758. name: "Front-clothed",
  24759. image: {
  24760. source: "./media/characters/nicky/front-clothed.svg",
  24761. extra: 3184.9 / 2926.9,
  24762. bottom: 86.5 / 3239.9
  24763. }
  24764. },
  24765. foot: {
  24766. height: math.unit(1.16, "feet"),
  24767. name: "Foot",
  24768. image: {
  24769. source: "./media/characters/nicky/foot.svg"
  24770. }
  24771. },
  24772. feet: {
  24773. height: math.unit(1.34, "feet"),
  24774. name: "Feet",
  24775. image: {
  24776. source: "./media/characters/nicky/feet.svg"
  24777. }
  24778. },
  24779. maw: {
  24780. height: math.unit(0.9, "feet"),
  24781. name: "Maw",
  24782. image: {
  24783. source: "./media/characters/nicky/maw.svg"
  24784. }
  24785. },
  24786. },
  24787. [
  24788. {
  24789. name: "Normal",
  24790. height: math.unit(5 + 10 / 12, "feet"),
  24791. default: true
  24792. },
  24793. {
  24794. name: "Macro",
  24795. height: math.unit(60, "feet")
  24796. },
  24797. {
  24798. name: "Megamacro",
  24799. height: math.unit(1, "mile")
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24805. {
  24806. side: {
  24807. height: math.unit(10, "feet"),
  24808. weight: math.unit(600, "lb"),
  24809. name: "Side",
  24810. image: {
  24811. source: "./media/characters/blair/side.svg",
  24812. bottom: 16.6 / 475,
  24813. extra: 458 / 431
  24814. }
  24815. },
  24816. },
  24817. [
  24818. {
  24819. name: "Micro",
  24820. height: math.unit(8, "inches")
  24821. },
  24822. {
  24823. name: "Normal",
  24824. height: math.unit(10, "feet"),
  24825. default: true
  24826. },
  24827. {
  24828. name: "Macro",
  24829. height: math.unit(180, "feet")
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24835. {
  24836. front: {
  24837. height: math.unit(5 + 4 / 12, "feet"),
  24838. weight: math.unit(125, "lb"),
  24839. name: "Front",
  24840. image: {
  24841. source: "./media/characters/fisher/front.svg",
  24842. extra: 444 / 390,
  24843. bottom: 2 / 444.8
  24844. }
  24845. },
  24846. },
  24847. [
  24848. {
  24849. name: "Micro",
  24850. height: math.unit(4, "inches")
  24851. },
  24852. {
  24853. name: "Normal",
  24854. height: math.unit(5 + 4 / 12, "feet"),
  24855. default: true
  24856. },
  24857. {
  24858. name: "Macro",
  24859. height: math.unit(100, "feet")
  24860. },
  24861. ]
  24862. ))
  24863. characterMakers.push(() => makeCharacter(
  24864. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24865. {
  24866. front: {
  24867. height: math.unit(6.71, "feet"),
  24868. weight: math.unit(200, "lb"),
  24869. capacity: math.unit(1000000, "people"),
  24870. name: "Front",
  24871. image: {
  24872. source: "./media/characters/gliss/front.svg",
  24873. extra: 2347 / 2231,
  24874. bottom: 113 / 2462
  24875. }
  24876. },
  24877. hammerspaceSize: {
  24878. height: math.unit(6.71 * 717, "feet"),
  24879. weight: math.unit(200, "lb"),
  24880. capacity: math.unit(1000000, "people"),
  24881. name: "Hammerspace Size",
  24882. image: {
  24883. source: "./media/characters/gliss/front.svg",
  24884. extra: 2347 / 2231,
  24885. bottom: 113 / 2462
  24886. }
  24887. },
  24888. },
  24889. [
  24890. {
  24891. name: "Normal",
  24892. height: math.unit(6.71, "feet"),
  24893. default: true
  24894. },
  24895. ]
  24896. ))
  24897. characterMakers.push(() => makeCharacter(
  24898. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24899. {
  24900. side: {
  24901. height: math.unit(1.44, "m"),
  24902. weight: math.unit(80, "kg"),
  24903. name: "Side",
  24904. image: {
  24905. source: "./media/characters/dune-anderson/side.svg",
  24906. bottom: 49 / 1426
  24907. }
  24908. },
  24909. },
  24910. [
  24911. {
  24912. name: "Wolf-sized",
  24913. height: math.unit(1.44, "meters")
  24914. },
  24915. {
  24916. name: "Normal",
  24917. height: math.unit(5.05, "meters"),
  24918. default: true
  24919. },
  24920. {
  24921. name: "Big",
  24922. height: math.unit(14.4, "meters")
  24923. },
  24924. {
  24925. name: "Huge",
  24926. height: math.unit(144, "meters")
  24927. },
  24928. ]
  24929. ))
  24930. characterMakers.push(() => makeCharacter(
  24931. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24932. {
  24933. front: {
  24934. height: math.unit(7, "feet"),
  24935. weight: math.unit(425, "lb"),
  24936. name: "Front",
  24937. image: {
  24938. source: "./media/characters/hind/front.svg",
  24939. extra: 2091 / 1860,
  24940. bottom: 129 / 2220
  24941. }
  24942. },
  24943. back: {
  24944. height: math.unit(7, "feet"),
  24945. weight: math.unit(425, "lb"),
  24946. name: "Back",
  24947. image: {
  24948. source: "./media/characters/hind/back.svg",
  24949. extra: 2091 / 1860,
  24950. bottom: 24.6 / 2309
  24951. }
  24952. },
  24953. tail: {
  24954. height: math.unit(2.8, "feet"),
  24955. name: "Tail",
  24956. image: {
  24957. source: "./media/characters/hind/tail.svg"
  24958. }
  24959. },
  24960. head: {
  24961. height: math.unit(2.55, "feet"),
  24962. name: "Head",
  24963. image: {
  24964. source: "./media/characters/hind/head.svg"
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "XS",
  24971. height: math.unit(0.7, "feet")
  24972. },
  24973. {
  24974. name: "Normal",
  24975. height: math.unit(7, "feet"),
  24976. default: true
  24977. },
  24978. {
  24979. name: "XL",
  24980. height: math.unit(70, "feet")
  24981. },
  24982. ]
  24983. ))
  24984. characterMakers.push(() => makeCharacter(
  24985. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24986. {
  24987. front: {
  24988. height: math.unit(2.1, "meters"),
  24989. weight: math.unit(150, "lb"),
  24990. name: "Front",
  24991. image: {
  24992. source: "./media/characters/tharquench-sizestealer/front.svg",
  24993. extra: 1605/1470,
  24994. bottom: 36/1641
  24995. }
  24996. },
  24997. frontAlt: {
  24998. height: math.unit(2.1, "meters"),
  24999. weight: math.unit(150, "lb"),
  25000. name: "Front (Alt)",
  25001. image: {
  25002. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25003. extra: 2318 / 2063,
  25004. bottom: 93.4 / 2410
  25005. }
  25006. },
  25007. },
  25008. [
  25009. {
  25010. name: "Nano",
  25011. height: math.unit(1, "mm")
  25012. },
  25013. {
  25014. name: "Micro",
  25015. height: math.unit(1, "cm")
  25016. },
  25017. {
  25018. name: "Normal",
  25019. height: math.unit(2.1, "meters"),
  25020. default: true
  25021. },
  25022. ]
  25023. ))
  25024. characterMakers.push(() => makeCharacter(
  25025. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25026. {
  25027. front: {
  25028. height: math.unit(7 + 5 / 12, "feet"),
  25029. weight: math.unit(357, "lb"),
  25030. name: "Front",
  25031. image: {
  25032. source: "./media/characters/solex-draconov/front.svg",
  25033. extra: 1993 / 1865,
  25034. bottom: 117 / 2111
  25035. }
  25036. },
  25037. },
  25038. [
  25039. {
  25040. name: "Natural Height",
  25041. height: math.unit(7 + 5 / 12, "feet"),
  25042. default: true
  25043. },
  25044. {
  25045. name: "Macro",
  25046. height: math.unit(350, "feet")
  25047. },
  25048. {
  25049. name: "Macro+",
  25050. height: math.unit(1000, "feet")
  25051. },
  25052. {
  25053. name: "Megamacro",
  25054. height: math.unit(20, "km")
  25055. },
  25056. {
  25057. name: "Megamacro+",
  25058. height: math.unit(1000, "km")
  25059. },
  25060. {
  25061. name: "Gigamacro",
  25062. height: math.unit(2.5, "Gm")
  25063. },
  25064. {
  25065. name: "Teramacro",
  25066. height: math.unit(15, "Tm")
  25067. },
  25068. {
  25069. name: "Galactic",
  25070. height: math.unit(30, "Zm")
  25071. },
  25072. {
  25073. name: "Universal",
  25074. height: math.unit(21000, "Ym")
  25075. },
  25076. {
  25077. name: "Omniversal",
  25078. height: math.unit(9.861e50, "Ym")
  25079. },
  25080. {
  25081. name: "Existential",
  25082. height: math.unit(1e300, "meters")
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25088. {
  25089. side: {
  25090. height: math.unit(25, "feet"),
  25091. weight: math.unit(90000, "lb"),
  25092. name: "Side",
  25093. image: {
  25094. source: "./media/characters/mandarax/side.svg",
  25095. extra: 614 / 332,
  25096. bottom: 55 / 630
  25097. }
  25098. },
  25099. head: {
  25100. height: math.unit(11.4, "feet"),
  25101. name: "Head",
  25102. image: {
  25103. source: "./media/characters/mandarax/head.svg"
  25104. }
  25105. },
  25106. belly: {
  25107. height: math.unit(33, "feet"),
  25108. name: "Belly",
  25109. capacity: math.unit(500, "people"),
  25110. image: {
  25111. source: "./media/characters/mandarax/belly.svg"
  25112. }
  25113. },
  25114. dick: {
  25115. height: math.unit(8.46, "feet"),
  25116. name: "Dick",
  25117. image: {
  25118. source: "./media/characters/mandarax/dick.svg"
  25119. }
  25120. },
  25121. top: {
  25122. height: math.unit(28, "meters"),
  25123. name: "Top",
  25124. image: {
  25125. source: "./media/characters/mandarax/top.svg"
  25126. }
  25127. },
  25128. },
  25129. [
  25130. {
  25131. name: "Normal",
  25132. height: math.unit(25, "feet"),
  25133. default: true
  25134. },
  25135. ]
  25136. ))
  25137. characterMakers.push(() => makeCharacter(
  25138. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25139. {
  25140. front: {
  25141. height: math.unit(5, "feet"),
  25142. weight: math.unit(90, "lb"),
  25143. name: "Front",
  25144. image: {
  25145. source: "./media/characters/pixil/front.svg",
  25146. extra: 2000 / 1618,
  25147. bottom: 12.3 / 2011
  25148. }
  25149. },
  25150. },
  25151. [
  25152. {
  25153. name: "Normal",
  25154. height: math.unit(5, "feet"),
  25155. default: true
  25156. },
  25157. {
  25158. name: "Megamacro",
  25159. height: math.unit(10, "miles"),
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25165. {
  25166. front: {
  25167. height: math.unit(7 + 2 / 12, "feet"),
  25168. weight: math.unit(200, "lb"),
  25169. name: "Front",
  25170. image: {
  25171. source: "./media/characters/angel/front.svg",
  25172. extra: 1830 / 1737,
  25173. bottom: 22.6 / 1854,
  25174. }
  25175. },
  25176. },
  25177. [
  25178. {
  25179. name: "Normal",
  25180. height: math.unit(7 + 2 / 12, "feet"),
  25181. default: true
  25182. },
  25183. {
  25184. name: "Macro",
  25185. height: math.unit(1000, "feet")
  25186. },
  25187. {
  25188. name: "Megamacro",
  25189. height: math.unit(2, "miles")
  25190. },
  25191. {
  25192. name: "Gigamacro",
  25193. height: math.unit(20, "earths")
  25194. },
  25195. ]
  25196. ))
  25197. characterMakers.push(() => makeCharacter(
  25198. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25199. {
  25200. front: {
  25201. height: math.unit(5, "feet"),
  25202. weight: math.unit(180, "lb"),
  25203. name: "Front",
  25204. image: {
  25205. source: "./media/characters/mekana/front.svg",
  25206. extra: 1671 / 1605,
  25207. bottom: 3.5 / 1691
  25208. }
  25209. },
  25210. side: {
  25211. height: math.unit(5, "feet"),
  25212. weight: math.unit(180, "lb"),
  25213. name: "Side",
  25214. image: {
  25215. source: "./media/characters/mekana/side.svg",
  25216. extra: 1671 / 1605,
  25217. bottom: 3.5 / 1691
  25218. }
  25219. },
  25220. back: {
  25221. height: math.unit(5, "feet"),
  25222. weight: math.unit(180, "lb"),
  25223. name: "Back",
  25224. image: {
  25225. source: "./media/characters/mekana/back.svg",
  25226. extra: 1671 / 1605,
  25227. bottom: 3.5 / 1691
  25228. }
  25229. },
  25230. },
  25231. [
  25232. {
  25233. name: "Normal",
  25234. height: math.unit(5, "feet"),
  25235. default: true
  25236. },
  25237. ]
  25238. ))
  25239. characterMakers.push(() => makeCharacter(
  25240. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25241. {
  25242. front: {
  25243. height: math.unit(4 + 6 / 12, "feet"),
  25244. weight: math.unit(80, "lb"),
  25245. name: "Front",
  25246. image: {
  25247. source: "./media/characters/pixie/front.svg",
  25248. extra: 1924 / 1825,
  25249. bottom: 22.4 / 1946
  25250. }
  25251. },
  25252. },
  25253. [
  25254. {
  25255. name: "Normal",
  25256. height: math.unit(4 + 6 / 12, "feet"),
  25257. default: true
  25258. },
  25259. {
  25260. name: "Macro",
  25261. height: math.unit(40, "feet")
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25267. {
  25268. front: {
  25269. height: math.unit(2.1, "meters"),
  25270. weight: math.unit(200, "lb"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/the-lascivious/front.svg",
  25274. extra: 1 / 0.893,
  25275. bottom: 3.5 / 573.7
  25276. }
  25277. },
  25278. },
  25279. [
  25280. {
  25281. name: "Human Scale",
  25282. height: math.unit(2.1, "meters")
  25283. },
  25284. {
  25285. name: "Wolxi Scale",
  25286. height: math.unit(46.2, "m"),
  25287. default: true
  25288. },
  25289. {
  25290. name: "Boinker of Buildings",
  25291. height: math.unit(10, "km")
  25292. },
  25293. {
  25294. name: "Shagger of Skyscrapers",
  25295. height: math.unit(40, "km")
  25296. },
  25297. {
  25298. name: "Banger of Boroughs",
  25299. height: math.unit(4000, "km")
  25300. },
  25301. {
  25302. name: "Screwer of States",
  25303. height: math.unit(100000, "km")
  25304. },
  25305. {
  25306. name: "Pounder of Planets",
  25307. height: math.unit(2000000, "km")
  25308. },
  25309. ]
  25310. ))
  25311. characterMakers.push(() => makeCharacter(
  25312. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25313. {
  25314. front: {
  25315. height: math.unit(6, "feet"),
  25316. weight: math.unit(150, "lb"),
  25317. name: "Front",
  25318. image: {
  25319. source: "./media/characters/aj/front.svg",
  25320. extra: 2039 / 1562,
  25321. bottom: 40 / 2079
  25322. }
  25323. },
  25324. },
  25325. [
  25326. {
  25327. name: "Normal",
  25328. height: math.unit(11 + 6 / 12, "feet"),
  25329. default: true
  25330. },
  25331. {
  25332. name: "Megamacro",
  25333. height: math.unit(60, "megameters")
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25339. {
  25340. side: {
  25341. height: math.unit(31 + 8 / 12, "feet"),
  25342. weight: math.unit(75000, "kg"),
  25343. name: "Side",
  25344. image: {
  25345. source: "./media/characters/koros/side.svg",
  25346. extra: 1442 / 1297,
  25347. bottom: 122.7 / 1562
  25348. }
  25349. },
  25350. dicksKingsCrown: {
  25351. height: math.unit(6, "feet"),
  25352. name: "Dicks (King's Crown)",
  25353. image: {
  25354. source: "./media/characters/koros/dicks-kings-crown.svg"
  25355. }
  25356. },
  25357. dicksTailSet: {
  25358. height: math.unit(3, "feet"),
  25359. name: "Dicks (Tail Set)",
  25360. image: {
  25361. source: "./media/characters/koros/dicks-tail-set.svg"
  25362. }
  25363. },
  25364. dickCumming: {
  25365. height: math.unit(7.98, "feet"),
  25366. name: "Dick (Cumming)",
  25367. image: {
  25368. source: "./media/characters/koros/dick-cumming.svg"
  25369. }
  25370. },
  25371. dicksBack: {
  25372. height: math.unit(5.9, "feet"),
  25373. name: "Dicks (Back)",
  25374. image: {
  25375. source: "./media/characters/koros/dicks-back.svg"
  25376. }
  25377. },
  25378. dicksFront: {
  25379. height: math.unit(3.72, "feet"),
  25380. name: "Dicks (Front)",
  25381. image: {
  25382. source: "./media/characters/koros/dicks-front.svg"
  25383. }
  25384. },
  25385. dicksPeeking: {
  25386. height: math.unit(3.0, "feet"),
  25387. name: "Dicks (Peeking)",
  25388. image: {
  25389. source: "./media/characters/koros/dicks-peeking.svg"
  25390. }
  25391. },
  25392. eye: {
  25393. height: math.unit(1.7, "feet"),
  25394. name: "Eye",
  25395. image: {
  25396. source: "./media/characters/koros/eye.svg"
  25397. }
  25398. },
  25399. headFront: {
  25400. height: math.unit(11.69, "feet"),
  25401. name: "Head (Front)",
  25402. image: {
  25403. source: "./media/characters/koros/head-front.svg"
  25404. }
  25405. },
  25406. headSide: {
  25407. height: math.unit(14, "feet"),
  25408. name: "Head (Side)",
  25409. image: {
  25410. source: "./media/characters/koros/head-side.svg"
  25411. }
  25412. },
  25413. leg: {
  25414. height: math.unit(17, "feet"),
  25415. name: "Leg",
  25416. image: {
  25417. source: "./media/characters/koros/leg.svg"
  25418. }
  25419. },
  25420. mawSide: {
  25421. height: math.unit(12.8, "feet"),
  25422. name: "Maw (Side)",
  25423. image: {
  25424. source: "./media/characters/koros/maw-side.svg"
  25425. }
  25426. },
  25427. mawSpitting: {
  25428. height: math.unit(17, "feet"),
  25429. name: "Maw (Spitting)",
  25430. image: {
  25431. source: "./media/characters/koros/maw-spitting.svg"
  25432. }
  25433. },
  25434. slit: {
  25435. height: math.unit(2.8, "feet"),
  25436. name: "Slit",
  25437. image: {
  25438. source: "./media/characters/koros/slit.svg"
  25439. }
  25440. },
  25441. stomach: {
  25442. height: math.unit(6.8, "feet"),
  25443. capacity: math.unit(20, "people"),
  25444. name: "Stomach",
  25445. image: {
  25446. source: "./media/characters/koros/stomach.svg"
  25447. }
  25448. },
  25449. wingspanBottom: {
  25450. height: math.unit(114, "feet"),
  25451. name: "Wingspan (Bottom)",
  25452. image: {
  25453. source: "./media/characters/koros/wingspan-bottom.svg"
  25454. }
  25455. },
  25456. wingspanTop: {
  25457. height: math.unit(104, "feet"),
  25458. name: "Wingspan (Top)",
  25459. image: {
  25460. source: "./media/characters/koros/wingspan-top.svg"
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "Normal",
  25467. height: math.unit(31 + 8 / 12, "feet"),
  25468. default: true
  25469. },
  25470. ]
  25471. ))
  25472. characterMakers.push(() => makeCharacter(
  25473. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25474. {
  25475. front: {
  25476. height: math.unit(18 + 5 / 12, "feet"),
  25477. weight: math.unit(3750, "kg"),
  25478. name: "Front",
  25479. image: {
  25480. source: "./media/characters/vexx/front.svg",
  25481. extra: 426 / 396,
  25482. bottom: 31.5 / 458
  25483. }
  25484. },
  25485. maw: {
  25486. height: math.unit(6, "feet"),
  25487. name: "Maw",
  25488. image: {
  25489. source: "./media/characters/vexx/maw.svg"
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Normal",
  25496. height: math.unit(18 + 5 / 12, "feet"),
  25497. default: true
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25503. {
  25504. front: {
  25505. height: math.unit(17 + 6 / 12, "feet"),
  25506. weight: math.unit(150, "lb"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/baadra/front.svg",
  25510. extra: 3137 / 2890,
  25511. bottom: 168.4 / 3305
  25512. }
  25513. },
  25514. back: {
  25515. height: math.unit(17 + 6 / 12, "feet"),
  25516. weight: math.unit(150, "lb"),
  25517. name: "Back",
  25518. image: {
  25519. source: "./media/characters/baadra/back.svg",
  25520. extra: 3142 / 2890,
  25521. bottom: 220 / 3371
  25522. }
  25523. },
  25524. head: {
  25525. height: math.unit(5.45, "feet"),
  25526. name: "Head",
  25527. image: {
  25528. source: "./media/characters/baadra/head.svg"
  25529. }
  25530. },
  25531. headAngry: {
  25532. height: math.unit(4.95, "feet"),
  25533. name: "Head (Angry)",
  25534. image: {
  25535. source: "./media/characters/baadra/head-angry.svg"
  25536. }
  25537. },
  25538. headOpen: {
  25539. height: math.unit(6, "feet"),
  25540. name: "Head (Open)",
  25541. image: {
  25542. source: "./media/characters/baadra/head-open.svg"
  25543. }
  25544. },
  25545. },
  25546. [
  25547. {
  25548. name: "Normal",
  25549. height: math.unit(17 + 6 / 12, "feet"),
  25550. default: true
  25551. },
  25552. ]
  25553. ))
  25554. characterMakers.push(() => makeCharacter(
  25555. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25556. {
  25557. front: {
  25558. height: math.unit(7 + 3 / 12, "feet"),
  25559. weight: math.unit(180, "lb"),
  25560. name: "Front",
  25561. image: {
  25562. source: "./media/characters/juri/front.svg",
  25563. extra: 1401 / 1237,
  25564. bottom: 18.5 / 1418
  25565. }
  25566. },
  25567. side: {
  25568. height: math.unit(7 + 3 / 12, "feet"),
  25569. weight: math.unit(180, "lb"),
  25570. name: "Side",
  25571. image: {
  25572. source: "./media/characters/juri/side.svg",
  25573. extra: 1424 / 1242,
  25574. bottom: 18.5 / 1447
  25575. }
  25576. },
  25577. sitting: {
  25578. height: math.unit(6, "feet"),
  25579. weight: math.unit(180, "lb"),
  25580. name: "Sitting",
  25581. image: {
  25582. source: "./media/characters/juri/sitting.svg",
  25583. extra: 1270 / 1143,
  25584. bottom: 100 / 1343
  25585. }
  25586. },
  25587. back: {
  25588. height: math.unit(7 + 3 / 12, "feet"),
  25589. weight: math.unit(180, "lb"),
  25590. name: "Back",
  25591. image: {
  25592. source: "./media/characters/juri/back.svg",
  25593. extra: 1377 / 1240,
  25594. bottom: 23.7 / 1405
  25595. }
  25596. },
  25597. maw: {
  25598. height: math.unit(2.8, "feet"),
  25599. name: "Maw",
  25600. image: {
  25601. source: "./media/characters/juri/maw.svg"
  25602. }
  25603. },
  25604. stomach: {
  25605. height: math.unit(0.89, "feet"),
  25606. capacity: math.unit(4, "liters"),
  25607. name: "Stomach",
  25608. image: {
  25609. source: "./media/characters/juri/stomach.svg"
  25610. }
  25611. },
  25612. },
  25613. [
  25614. {
  25615. name: "Normal",
  25616. height: math.unit(7 + 3 / 12, "feet"),
  25617. default: true
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25623. {
  25624. fox: {
  25625. height: math.unit(5 + 6 / 12, "feet"),
  25626. weight: math.unit(140, "lb"),
  25627. name: "Fox",
  25628. image: {
  25629. source: "./media/characters/maxene-sita/fox.svg",
  25630. extra: 146 / 138,
  25631. bottom: 2.1 / 148.19
  25632. }
  25633. },
  25634. foxLaying: {
  25635. height: math.unit(1.70, "feet"),
  25636. weight: math.unit(140, "lb"),
  25637. name: "Fox (Laying)",
  25638. image: {
  25639. source: "./media/characters/maxene-sita/fox-laying.svg",
  25640. extra: 910 / 572,
  25641. bottom: 71 / 981
  25642. }
  25643. },
  25644. kitsune: {
  25645. height: math.unit(10, "feet"),
  25646. weight: math.unit(800, "lb"),
  25647. name: "Kitsune",
  25648. image: {
  25649. source: "./media/characters/maxene-sita/kitsune.svg",
  25650. extra: 185 / 176,
  25651. bottom: 4.7 / 189.9
  25652. }
  25653. },
  25654. hellhound: {
  25655. height: math.unit(10, "feet"),
  25656. weight: math.unit(700, "lb"),
  25657. name: "Hellhound",
  25658. image: {
  25659. source: "./media/characters/maxene-sita/hellhound.svg",
  25660. extra: 1600 / 1545,
  25661. bottom: 81 / 1681
  25662. }
  25663. },
  25664. },
  25665. [
  25666. {
  25667. name: "Normal",
  25668. height: math.unit(5 + 6 / 12, "feet"),
  25669. default: true
  25670. },
  25671. ]
  25672. ))
  25673. characterMakers.push(() => makeCharacter(
  25674. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25675. {
  25676. front: {
  25677. height: math.unit(3 + 4 / 12, "feet"),
  25678. weight: math.unit(70, "lb"),
  25679. name: "Front",
  25680. image: {
  25681. source: "./media/characters/maia/front.svg",
  25682. extra: 227 / 219.5,
  25683. bottom: 40 / 267
  25684. }
  25685. },
  25686. back: {
  25687. height: math.unit(3 + 4 / 12, "feet"),
  25688. weight: math.unit(70, "lb"),
  25689. name: "Back",
  25690. image: {
  25691. source: "./media/characters/maia/back.svg",
  25692. extra: 237 / 225
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Normal",
  25699. height: math.unit(3 + 4 / 12, "feet"),
  25700. default: true
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25706. {
  25707. front: {
  25708. height: math.unit(5 + 10 / 12, "feet"),
  25709. weight: math.unit(197, "lb"),
  25710. name: "Front",
  25711. image: {
  25712. source: "./media/characters/jabaro/front.svg",
  25713. extra: 225 / 216,
  25714. bottom: 5.06 / 230
  25715. }
  25716. },
  25717. back: {
  25718. height: math.unit(5 + 10 / 12, "feet"),
  25719. weight: math.unit(197, "lb"),
  25720. name: "Back",
  25721. image: {
  25722. source: "./media/characters/jabaro/back.svg",
  25723. extra: 225 / 219,
  25724. bottom: 1.9 / 227
  25725. }
  25726. },
  25727. },
  25728. [
  25729. {
  25730. name: "Normal",
  25731. height: math.unit(5 + 10 / 12, "feet"),
  25732. default: true
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25738. {
  25739. front: {
  25740. height: math.unit(5 + 8 / 12, "feet"),
  25741. weight: math.unit(139, "lb"),
  25742. name: "Front",
  25743. image: {
  25744. source: "./media/characters/risa/front.svg",
  25745. extra: 270 / 260,
  25746. bottom: 11.2 / 282
  25747. }
  25748. },
  25749. back: {
  25750. height: math.unit(5 + 8 / 12, "feet"),
  25751. weight: math.unit(139, "lb"),
  25752. name: "Back",
  25753. image: {
  25754. source: "./media/characters/risa/back.svg",
  25755. extra: 264 / 255,
  25756. bottom: 4 / 268
  25757. }
  25758. },
  25759. },
  25760. [
  25761. {
  25762. name: "Normal",
  25763. height: math.unit(5 + 8 / 12, "feet"),
  25764. default: true
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(2 + 11 / 12, "feet"),
  25773. weight: math.unit(30, "lb"),
  25774. name: "Front",
  25775. image: {
  25776. source: "./media/characters/weatley/front.svg",
  25777. bottom: 10.7 / 414,
  25778. extra: 403.5 / 362
  25779. }
  25780. },
  25781. back: {
  25782. height: math.unit(2 + 11 / 12, "feet"),
  25783. weight: math.unit(30, "lb"),
  25784. name: "Back",
  25785. image: {
  25786. source: "./media/characters/weatley/back.svg",
  25787. bottom: 10.7 / 414,
  25788. extra: 403.5 / 362
  25789. }
  25790. },
  25791. },
  25792. [
  25793. {
  25794. name: "Normal",
  25795. height: math.unit(2 + 11 / 12, "feet"),
  25796. default: true
  25797. },
  25798. ]
  25799. ))
  25800. characterMakers.push(() => makeCharacter(
  25801. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25802. {
  25803. front: {
  25804. height: math.unit(5 + 2 / 12, "feet"),
  25805. weight: math.unit(50, "kg"),
  25806. name: "Front",
  25807. image: {
  25808. source: "./media/characters/mercury-crescent/front.svg",
  25809. extra: 1088 / 1033,
  25810. bottom: 18.9 / 1109
  25811. }
  25812. },
  25813. },
  25814. [
  25815. {
  25816. name: "Normal",
  25817. height: math.unit(5 + 2 / 12, "feet"),
  25818. default: true
  25819. },
  25820. ]
  25821. ))
  25822. characterMakers.push(() => makeCharacter(
  25823. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25824. {
  25825. front: {
  25826. height: math.unit(2, "feet"),
  25827. weight: math.unit(15, "kg"),
  25828. name: "Front",
  25829. image: {
  25830. source: "./media/characters/diamond-jones/front.svg",
  25831. extra: 727/723,
  25832. bottom: 46/773
  25833. }
  25834. },
  25835. },
  25836. [
  25837. {
  25838. name: "Normal",
  25839. height: math.unit(2, "feet"),
  25840. default: true
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25846. {
  25847. front: {
  25848. height: math.unit(3, "feet"),
  25849. weight: math.unit(30, "kg"),
  25850. name: "Front",
  25851. image: {
  25852. source: "./media/characters/sweet-bit/front.svg",
  25853. extra: 675 / 567,
  25854. bottom: 27.7 / 703
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "Normal",
  25861. height: math.unit(3, "feet"),
  25862. default: true
  25863. },
  25864. ]
  25865. ))
  25866. characterMakers.push(() => makeCharacter(
  25867. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25868. {
  25869. side: {
  25870. height: math.unit(9.178, "feet"),
  25871. weight: math.unit(500, "lb"),
  25872. name: "Side",
  25873. image: {
  25874. source: "./media/characters/umbrazen/side.svg",
  25875. extra: 1730 / 1473,
  25876. bottom: 34.6 / 1765
  25877. }
  25878. },
  25879. },
  25880. [
  25881. {
  25882. name: "Normal",
  25883. height: math.unit(9.178, "feet"),
  25884. default: true
  25885. },
  25886. ]
  25887. ))
  25888. characterMakers.push(() => makeCharacter(
  25889. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25890. {
  25891. front: {
  25892. height: math.unit(10, "feet"),
  25893. weight: math.unit(750, "lb"),
  25894. name: "Front",
  25895. image: {
  25896. source: "./media/characters/arlist/front.svg",
  25897. extra: 961 / 778,
  25898. bottom: 6.2 / 986
  25899. }
  25900. },
  25901. },
  25902. [
  25903. {
  25904. name: "Normal",
  25905. height: math.unit(10, "feet"),
  25906. default: true
  25907. },
  25908. ]
  25909. ))
  25910. characterMakers.push(() => makeCharacter(
  25911. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25912. {
  25913. front: {
  25914. height: math.unit(5 + 1 / 12, "feet"),
  25915. weight: math.unit(110, "lb"),
  25916. name: "Front",
  25917. image: {
  25918. source: "./media/characters/aradel/front.svg",
  25919. extra: 324 / 303,
  25920. bottom: 3.6 / 329.4
  25921. }
  25922. },
  25923. },
  25924. [
  25925. {
  25926. name: "Normal",
  25927. height: math.unit(5 + 1 / 12, "feet"),
  25928. default: true
  25929. },
  25930. ]
  25931. ))
  25932. characterMakers.push(() => makeCharacter(
  25933. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25934. {
  25935. front: {
  25936. height: math.unit(3 + 8 / 12, "feet"),
  25937. weight: math.unit(50, "lb"),
  25938. name: "Front",
  25939. image: {
  25940. source: "./media/characters/serryn/front.svg",
  25941. extra: 1792 / 1656,
  25942. bottom: 43.5 / 1840
  25943. }
  25944. },
  25945. },
  25946. [
  25947. {
  25948. name: "Normal",
  25949. height: math.unit(3 + 8 / 12, "feet"),
  25950. default: true
  25951. },
  25952. ]
  25953. ))
  25954. characterMakers.push(() => makeCharacter(
  25955. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25956. {
  25957. front: {
  25958. height: math.unit(7 + 10 / 12, "feet"),
  25959. weight: math.unit(255, "lb"),
  25960. name: "Front",
  25961. image: {
  25962. source: "./media/characters/xavier-thyme/front.svg",
  25963. extra: 3733 / 3642,
  25964. bottom: 131 / 3869
  25965. }
  25966. },
  25967. frontRaven: {
  25968. height: math.unit(7 + 10 / 12, "feet"),
  25969. weight: math.unit(255, "lb"),
  25970. name: "Front (Raven)",
  25971. image: {
  25972. source: "./media/characters/xavier-thyme/front-raven.svg",
  25973. extra: 4385 / 3642,
  25974. bottom: 131 / 4517
  25975. }
  25976. },
  25977. },
  25978. [
  25979. {
  25980. name: "Normal",
  25981. height: math.unit(7 + 10 / 12, "feet"),
  25982. default: true
  25983. },
  25984. ]
  25985. ))
  25986. characterMakers.push(() => makeCharacter(
  25987. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25988. {
  25989. front: {
  25990. height: math.unit(1.6, "m"),
  25991. weight: math.unit(50, "kg"),
  25992. name: "Front",
  25993. image: {
  25994. source: "./media/characters/kiki/front.svg",
  25995. extra: 4682 / 3610,
  25996. bottom: 115 / 4777
  25997. }
  25998. },
  25999. },
  26000. [
  26001. {
  26002. name: "Normal",
  26003. height: math.unit(1.6, "meters"),
  26004. default: true
  26005. },
  26006. ]
  26007. ))
  26008. characterMakers.push(() => makeCharacter(
  26009. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26010. {
  26011. front: {
  26012. height: math.unit(50, "m"),
  26013. weight: math.unit(500, "tonnes"),
  26014. name: "Front",
  26015. image: {
  26016. source: "./media/characters/ryoko/front.svg",
  26017. extra: 4632 / 3926,
  26018. bottom: 193 / 4823
  26019. }
  26020. },
  26021. },
  26022. [
  26023. {
  26024. name: "Normal",
  26025. height: math.unit(50, "meters"),
  26026. default: true
  26027. },
  26028. ]
  26029. ))
  26030. characterMakers.push(() => makeCharacter(
  26031. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26032. {
  26033. front: {
  26034. height: math.unit(30, "m"),
  26035. weight: math.unit(22, "tonnes"),
  26036. name: "Front",
  26037. image: {
  26038. source: "./media/characters/elio/front.svg",
  26039. extra: 4582 / 3720,
  26040. bottom: 236 / 4828
  26041. }
  26042. },
  26043. },
  26044. [
  26045. {
  26046. name: "Normal",
  26047. height: math.unit(30, "meters"),
  26048. default: true
  26049. },
  26050. ]
  26051. ))
  26052. characterMakers.push(() => makeCharacter(
  26053. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26054. {
  26055. front: {
  26056. height: math.unit(6 + 3 / 12, "feet"),
  26057. weight: math.unit(120, "lb"),
  26058. name: "Front",
  26059. image: {
  26060. source: "./media/characters/azura/front.svg",
  26061. extra: 1149 / 1135,
  26062. bottom: 45 / 1194
  26063. }
  26064. },
  26065. frontClothed: {
  26066. height: math.unit(6 + 3 / 12, "feet"),
  26067. weight: math.unit(120, "lb"),
  26068. name: "Front (Clothed)",
  26069. image: {
  26070. source: "./media/characters/azura/front-clothed.svg",
  26071. extra: 1149 / 1135,
  26072. bottom: 45 / 1194
  26073. }
  26074. },
  26075. },
  26076. [
  26077. {
  26078. name: "Normal",
  26079. height: math.unit(6 + 3 / 12, "feet"),
  26080. default: true
  26081. },
  26082. {
  26083. name: "Macro",
  26084. height: math.unit(20 + 6 / 12, "feet")
  26085. },
  26086. {
  26087. name: "Megamacro",
  26088. height: math.unit(12, "miles")
  26089. },
  26090. {
  26091. name: "Gigamacro",
  26092. height: math.unit(10000, "miles")
  26093. },
  26094. {
  26095. name: "Teramacro",
  26096. height: math.unit(900000, "miles")
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26102. {
  26103. front: {
  26104. height: math.unit(12, "feet"),
  26105. weight: math.unit(1, "ton"),
  26106. capacity: math.unit(660000, "gallons"),
  26107. name: "Front",
  26108. image: {
  26109. source: "./media/characters/zeus/front.svg",
  26110. extra: 5005 / 4717,
  26111. bottom: 363 / 5388
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Normal",
  26118. height: math.unit(12, "feet")
  26119. },
  26120. {
  26121. name: "Preferred Size",
  26122. height: math.unit(0.5, "miles"),
  26123. default: true
  26124. },
  26125. {
  26126. name: "Giga Horse",
  26127. height: math.unit(300, "miles")
  26128. },
  26129. {
  26130. name: "Riding Planets",
  26131. height: math.unit(30, "megameters")
  26132. },
  26133. {
  26134. name: "Cosmic Giant",
  26135. height: math.unit(3, "zettameters")
  26136. },
  26137. {
  26138. name: "Breeding God",
  26139. height: math.unit(9.92e22, "yottameters")
  26140. },
  26141. ]
  26142. ))
  26143. characterMakers.push(() => makeCharacter(
  26144. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26145. {
  26146. side: {
  26147. height: math.unit(9, "feet"),
  26148. weight: math.unit(1500, "kg"),
  26149. name: "Side",
  26150. image: {
  26151. source: "./media/characters/fang/side.svg",
  26152. extra: 924 / 866,
  26153. bottom: 47.5 / 972.3
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(9, "feet"),
  26161. default: true
  26162. },
  26163. {
  26164. name: "Macro",
  26165. height: math.unit(75 + 6 / 12, "feet")
  26166. },
  26167. {
  26168. name: "Teramacro",
  26169. height: math.unit(50000, "miles")
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(10, "feet"),
  26178. weight: math.unit(2, "tons"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/rekhit/front.svg",
  26182. extra: 2796 / 2590,
  26183. bottom: 225 / 3022
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Normal",
  26190. height: math.unit(10, "feet"),
  26191. default: true
  26192. },
  26193. {
  26194. name: "Macro",
  26195. height: math.unit(500, "feet")
  26196. },
  26197. ]
  26198. ))
  26199. characterMakers.push(() => makeCharacter(
  26200. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26201. {
  26202. front: {
  26203. height: math.unit(7 + 6.451 / 12, "feet"),
  26204. weight: math.unit(310, "lb"),
  26205. name: "Front",
  26206. image: {
  26207. source: "./media/characters/dahlia-verrick/front.svg",
  26208. extra: 1488 / 1365,
  26209. bottom: 6.2 / 1495
  26210. }
  26211. },
  26212. back: {
  26213. height: math.unit(7 + 6.451 / 12, "feet"),
  26214. weight: math.unit(310, "lb"),
  26215. name: "Back",
  26216. image: {
  26217. source: "./media/characters/dahlia-verrick/back.svg",
  26218. extra: 1472 / 1351,
  26219. bottom: 5.28 / 1477
  26220. }
  26221. },
  26222. frontBusiness: {
  26223. height: math.unit(7 + 6.451 / 12, "feet"),
  26224. weight: math.unit(200, "lb"),
  26225. name: "Front (Business)",
  26226. image: {
  26227. source: "./media/characters/dahlia-verrick/front-business.svg",
  26228. extra: 1478 / 1381,
  26229. bottom: 5.5 / 1484
  26230. }
  26231. },
  26232. frontCasual: {
  26233. height: math.unit(7 + 6.451 / 12, "feet"),
  26234. weight: math.unit(200, "lb"),
  26235. name: "Front (Casual)",
  26236. image: {
  26237. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26238. extra: 1478 / 1381,
  26239. bottom: 5.5 / 1484
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Travel-Sized",
  26246. height: math.unit(7.45, "inches")
  26247. },
  26248. {
  26249. name: "Normal",
  26250. height: math.unit(7 + 6.451 / 12, "feet"),
  26251. default: true
  26252. },
  26253. {
  26254. name: "Hitting the Town",
  26255. height: math.unit(37 + 8 / 12, "feet")
  26256. },
  26257. {
  26258. name: "Stomp in the Suburbs",
  26259. height: math.unit(964 + 9.728 / 12, "feet")
  26260. },
  26261. {
  26262. name: "Sit on the City",
  26263. height: math.unit(61747 + 10.592 / 12, "feet")
  26264. },
  26265. {
  26266. name: "Glomp the Globe",
  26267. height: math.unit(252919327 + 4.832 / 12, "feet")
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26273. {
  26274. front: {
  26275. height: math.unit(6 + 4 / 12, "feet"),
  26276. weight: math.unit(320, "lb"),
  26277. name: "Front",
  26278. image: {
  26279. source: "./media/characters/balina-mahigan/front.svg",
  26280. extra: 447 / 428,
  26281. bottom: 18 / 466
  26282. }
  26283. },
  26284. back: {
  26285. height: math.unit(6 + 4 / 12, "feet"),
  26286. weight: math.unit(320, "lb"),
  26287. name: "Back",
  26288. image: {
  26289. source: "./media/characters/balina-mahigan/back.svg",
  26290. extra: 445 / 428,
  26291. bottom: 4.07 / 448
  26292. }
  26293. },
  26294. arm: {
  26295. height: math.unit(1.88, "feet"),
  26296. name: "Arm",
  26297. image: {
  26298. source: "./media/characters/balina-mahigan/arm.svg"
  26299. }
  26300. },
  26301. backPort: {
  26302. height: math.unit(0.685, "feet"),
  26303. name: "Back Port",
  26304. image: {
  26305. source: "./media/characters/balina-mahigan/back-port.svg"
  26306. }
  26307. },
  26308. hoofpaw: {
  26309. height: math.unit(1.41, "feet"),
  26310. name: "Hoofpaw",
  26311. image: {
  26312. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26313. }
  26314. },
  26315. leftHandBack: {
  26316. height: math.unit(0.938, "feet"),
  26317. name: "Left Hand (Back)",
  26318. image: {
  26319. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26320. }
  26321. },
  26322. leftHandFront: {
  26323. height: math.unit(0.938, "feet"),
  26324. name: "Left Hand (Front)",
  26325. image: {
  26326. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26327. }
  26328. },
  26329. rightHandBack: {
  26330. height: math.unit(0.95, "feet"),
  26331. name: "Right Hand (Back)",
  26332. image: {
  26333. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26334. }
  26335. },
  26336. rightHandFront: {
  26337. height: math.unit(0.95, "feet"),
  26338. name: "Right Hand (Front)",
  26339. image: {
  26340. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26341. }
  26342. },
  26343. },
  26344. [
  26345. {
  26346. name: "Normal",
  26347. height: math.unit(6 + 4 / 12, "feet"),
  26348. default: true
  26349. },
  26350. ]
  26351. ))
  26352. characterMakers.push(() => makeCharacter(
  26353. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26354. {
  26355. front: {
  26356. height: math.unit(6, "feet"),
  26357. weight: math.unit(320, "lb"),
  26358. name: "Front",
  26359. image: {
  26360. source: "./media/characters/balina-mejeri/front.svg",
  26361. extra: 517 / 488,
  26362. bottom: 44.2 / 561
  26363. }
  26364. },
  26365. },
  26366. [
  26367. {
  26368. name: "Normal",
  26369. height: math.unit(6 + 4 / 12, "feet")
  26370. },
  26371. {
  26372. name: "Business",
  26373. height: math.unit(155, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26380. {
  26381. kneeling: {
  26382. height: math.unit(6 + 4 / 12, "feet"),
  26383. weight: math.unit(300 * 20, "lb"),
  26384. name: "Kneeling",
  26385. image: {
  26386. source: "./media/characters/balbarian/kneeling.svg",
  26387. extra: 922 / 862,
  26388. bottom: 42.4 / 965
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Normal",
  26395. height: math.unit(6 + 4 / 12, "feet")
  26396. },
  26397. {
  26398. name: "Treasured",
  26399. height: math.unit(18 + 9 / 12, "feet"),
  26400. default: true
  26401. },
  26402. {
  26403. name: "Macro",
  26404. height: math.unit(900, "feet")
  26405. },
  26406. ]
  26407. ))
  26408. characterMakers.push(() => makeCharacter(
  26409. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26410. {
  26411. front: {
  26412. height: math.unit(6 + 4 / 12, "feet"),
  26413. weight: math.unit(325, "lb"),
  26414. name: "Front",
  26415. image: {
  26416. source: "./media/characters/balina-amarini/front.svg",
  26417. extra: 415 / 403,
  26418. bottom: 19 / 433.4
  26419. }
  26420. },
  26421. back: {
  26422. height: math.unit(6 + 4 / 12, "feet"),
  26423. weight: math.unit(325, "lb"),
  26424. name: "Back",
  26425. image: {
  26426. source: "./media/characters/balina-amarini/back.svg",
  26427. extra: 415 / 403,
  26428. bottom: 13.5 / 432
  26429. }
  26430. },
  26431. overdrive: {
  26432. height: math.unit(6 + 4 / 12, "feet"),
  26433. weight: math.unit(400, "lb"),
  26434. name: "Overdrive",
  26435. image: {
  26436. source: "./media/characters/balina-amarini/overdrive.svg",
  26437. extra: 269 / 259,
  26438. bottom: 12 / 282
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Boom",
  26445. height: math.unit(9 + 10 / 12, "feet"),
  26446. default: true
  26447. },
  26448. {
  26449. name: "Macro",
  26450. height: math.unit(280, "feet")
  26451. },
  26452. ]
  26453. ))
  26454. characterMakers.push(() => makeCharacter(
  26455. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26456. {
  26457. goddess: {
  26458. height: math.unit(600, "feet"),
  26459. weight: math.unit(2000000, "tons"),
  26460. name: "Goddess",
  26461. image: {
  26462. source: "./media/characters/lady-kubwa/goddess.svg",
  26463. extra: 1240.5 / 1223,
  26464. bottom: 22 / 1263
  26465. }
  26466. },
  26467. goddesser: {
  26468. height: math.unit(900, "feet"),
  26469. weight: math.unit(20000000, "lb"),
  26470. name: "Goddess-er",
  26471. image: {
  26472. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26473. extra: 899 / 888,
  26474. bottom: 12.6 / 912
  26475. }
  26476. },
  26477. },
  26478. [
  26479. {
  26480. name: "Macro",
  26481. height: math.unit(600, "feet"),
  26482. default: true
  26483. },
  26484. {
  26485. name: "Megamacro",
  26486. height: math.unit(250, "miles")
  26487. },
  26488. ]
  26489. ))
  26490. characterMakers.push(() => makeCharacter(
  26491. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26492. {
  26493. front: {
  26494. height: math.unit(7 + 7 / 12, "feet"),
  26495. weight: math.unit(250, "lb"),
  26496. name: "Front",
  26497. image: {
  26498. source: "./media/characters/tala-grovehorn/front.svg",
  26499. extra: 2636 / 2525,
  26500. bottom: 147 / 2781
  26501. }
  26502. },
  26503. back: {
  26504. height: math.unit(7 + 7 / 12, "feet"),
  26505. weight: math.unit(250, "lb"),
  26506. name: "Back",
  26507. image: {
  26508. source: "./media/characters/tala-grovehorn/back.svg",
  26509. extra: 2635 / 2539,
  26510. bottom: 100 / 2732.8
  26511. }
  26512. },
  26513. mouth: {
  26514. height: math.unit(1.15, "feet"),
  26515. name: "Mouth",
  26516. image: {
  26517. source: "./media/characters/tala-grovehorn/mouth.svg"
  26518. }
  26519. },
  26520. dick: {
  26521. height: math.unit(2.36, "feet"),
  26522. name: "Dick",
  26523. image: {
  26524. source: "./media/characters/tala-grovehorn/dick.svg"
  26525. }
  26526. },
  26527. slit: {
  26528. height: math.unit(0.61, "feet"),
  26529. name: "Slit",
  26530. image: {
  26531. source: "./media/characters/tala-grovehorn/slit.svg"
  26532. }
  26533. },
  26534. },
  26535. [
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26540. {
  26541. front: {
  26542. height: math.unit(7 + 7 / 12, "feet"),
  26543. weight: math.unit(225, "lb"),
  26544. name: "Front",
  26545. image: {
  26546. source: "./media/characters/epona/front.svg",
  26547. extra: 2445 / 2290,
  26548. bottom: 251 / 2696
  26549. }
  26550. },
  26551. back: {
  26552. height: math.unit(7 + 7 / 12, "feet"),
  26553. weight: math.unit(225, "lb"),
  26554. name: "Back",
  26555. image: {
  26556. source: "./media/characters/epona/back.svg",
  26557. extra: 2546 / 2408,
  26558. bottom: 44 / 2589
  26559. }
  26560. },
  26561. genitals: {
  26562. height: math.unit(1.5, "feet"),
  26563. name: "Genitals",
  26564. image: {
  26565. source: "./media/characters/epona/genitals.svg"
  26566. }
  26567. },
  26568. },
  26569. [
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(7 + 7 / 12, "feet"),
  26573. default: true
  26574. },
  26575. ]
  26576. ))
  26577. characterMakers.push(() => makeCharacter(
  26578. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26579. {
  26580. front: {
  26581. height: math.unit(7, "feet"),
  26582. weight: math.unit(518, "lb"),
  26583. name: "Front",
  26584. image: {
  26585. source: "./media/characters/avia-bloodbourn/front.svg",
  26586. extra: 1466 / 1350,
  26587. bottom: 65 / 1527
  26588. }
  26589. },
  26590. },
  26591. [
  26592. ]
  26593. ))
  26594. characterMakers.push(() => makeCharacter(
  26595. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26596. {
  26597. front: {
  26598. height: math.unit(9.35, "feet"),
  26599. weight: math.unit(600, "lb"),
  26600. name: "Front",
  26601. image: {
  26602. source: "./media/characters/amera/front.svg",
  26603. extra: 891 / 818,
  26604. bottom: 30 / 922.7
  26605. }
  26606. },
  26607. back: {
  26608. height: math.unit(9.35, "feet"),
  26609. weight: math.unit(600, "lb"),
  26610. name: "Back",
  26611. image: {
  26612. source: "./media/characters/amera/back.svg",
  26613. extra: 876 / 824,
  26614. bottom: 6.8 / 884
  26615. }
  26616. },
  26617. dick: {
  26618. height: math.unit(2.14, "feet"),
  26619. name: "Dick",
  26620. image: {
  26621. source: "./media/characters/amera/dick.svg"
  26622. }
  26623. },
  26624. },
  26625. [
  26626. {
  26627. name: "Normal",
  26628. height: math.unit(9.35, "feet"),
  26629. default: true
  26630. },
  26631. ]
  26632. ))
  26633. characterMakers.push(() => makeCharacter(
  26634. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26635. {
  26636. kneeling: {
  26637. height: math.unit(3 + 4 / 12, "feet"),
  26638. weight: math.unit(90, "lb"),
  26639. name: "Kneeling",
  26640. image: {
  26641. source: "./media/characters/rosewen/kneeling.svg",
  26642. extra: 1835 / 1571,
  26643. bottom: 27.7 / 1862
  26644. }
  26645. },
  26646. },
  26647. [
  26648. {
  26649. name: "Normal",
  26650. height: math.unit(3 + 4 / 12, "feet"),
  26651. default: true
  26652. },
  26653. ]
  26654. ))
  26655. characterMakers.push(() => makeCharacter(
  26656. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26657. {
  26658. front: {
  26659. height: math.unit(5 + 10 / 12, "feet"),
  26660. weight: math.unit(200, "lb"),
  26661. name: "Front",
  26662. image: {
  26663. source: "./media/characters/sabah/front.svg",
  26664. extra: 849 / 763,
  26665. bottom: 33.9 / 881
  26666. }
  26667. },
  26668. },
  26669. [
  26670. {
  26671. name: "Normal",
  26672. height: math.unit(5 + 10 / 12, "feet"),
  26673. default: true
  26674. },
  26675. ]
  26676. ))
  26677. characterMakers.push(() => makeCharacter(
  26678. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26679. {
  26680. front: {
  26681. height: math.unit(3 + 5 / 12, "feet"),
  26682. weight: math.unit(40, "kg"),
  26683. name: "Front",
  26684. image: {
  26685. source: "./media/characters/purple-flame/front.svg",
  26686. extra: 1577 / 1412,
  26687. bottom: 97 / 1694
  26688. }
  26689. },
  26690. frontDressed: {
  26691. height: math.unit(3 + 5 / 12, "feet"),
  26692. weight: math.unit(40, "kg"),
  26693. name: "Front (Dressed)",
  26694. image: {
  26695. source: "./media/characters/purple-flame/front-dressed.svg",
  26696. extra: 1577 / 1412,
  26697. bottom: 97 / 1694
  26698. }
  26699. },
  26700. headphones: {
  26701. height: math.unit(0.85, "feet"),
  26702. name: "Headphones",
  26703. image: {
  26704. source: "./media/characters/purple-flame/headphones.svg"
  26705. }
  26706. },
  26707. },
  26708. [
  26709. {
  26710. name: "Really Small",
  26711. height: math.unit(5, "cm")
  26712. },
  26713. {
  26714. name: "Micro",
  26715. height: math.unit(1 + 5 / 12, "feet")
  26716. },
  26717. {
  26718. name: "Normal",
  26719. height: math.unit(3 + 5 / 12, "feet"),
  26720. default: true
  26721. },
  26722. {
  26723. name: "Minimacro",
  26724. height: math.unit(125, "feet")
  26725. },
  26726. {
  26727. name: "Macro",
  26728. height: math.unit(0.5, "miles")
  26729. },
  26730. {
  26731. name: "Megamacro",
  26732. height: math.unit(50, "miles")
  26733. },
  26734. {
  26735. name: "Gigantic",
  26736. height: math.unit(750, "miles")
  26737. },
  26738. {
  26739. name: "Planetary",
  26740. height: math.unit(15000, "miles")
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26746. {
  26747. front: {
  26748. height: math.unit(14, "feet"),
  26749. weight: math.unit(959, "lb"),
  26750. name: "Front",
  26751. image: {
  26752. source: "./media/characters/arsenal/front.svg",
  26753. extra: 2357 / 2157,
  26754. bottom: 93 / 2458
  26755. }
  26756. },
  26757. },
  26758. [
  26759. {
  26760. name: "Normal",
  26761. height: math.unit(14, "feet"),
  26762. default: true
  26763. },
  26764. ]
  26765. ))
  26766. characterMakers.push(() => makeCharacter(
  26767. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26768. {
  26769. front: {
  26770. height: math.unit(6, "feet"),
  26771. weight: math.unit(150, "lb"),
  26772. name: "Front",
  26773. image: {
  26774. source: "./media/characters/adira/front.svg",
  26775. extra: 1078 / 1029,
  26776. bottom: 87 / 1166
  26777. }
  26778. },
  26779. },
  26780. [
  26781. {
  26782. name: "Micro",
  26783. height: math.unit(4, "inches"),
  26784. default: true
  26785. },
  26786. {
  26787. name: "Macro",
  26788. height: math.unit(50, "feet")
  26789. },
  26790. ]
  26791. ))
  26792. characterMakers.push(() => makeCharacter(
  26793. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26794. {
  26795. front: {
  26796. height: math.unit(16, "feet"),
  26797. weight: math.unit(1000, "lb"),
  26798. name: "Front",
  26799. image: {
  26800. source: "./media/characters/grim/front.svg",
  26801. extra: 622 / 614,
  26802. bottom: 18.1 / 642
  26803. }
  26804. },
  26805. back: {
  26806. height: math.unit(16, "feet"),
  26807. weight: math.unit(1000, "lb"),
  26808. name: "Back",
  26809. image: {
  26810. source: "./media/characters/grim/back.svg",
  26811. extra: 610.6 / 602,
  26812. bottom: 40.8 / 652
  26813. }
  26814. },
  26815. hunched: {
  26816. height: math.unit(9.75, "feet"),
  26817. weight: math.unit(1000, "lb"),
  26818. name: "Hunched",
  26819. image: {
  26820. source: "./media/characters/grim/hunched.svg",
  26821. extra: 304 / 297,
  26822. bottom: 35.4 / 394
  26823. }
  26824. },
  26825. },
  26826. [
  26827. {
  26828. name: "Normal",
  26829. height: math.unit(16, "feet"),
  26830. default: true
  26831. },
  26832. ]
  26833. ))
  26834. characterMakers.push(() => makeCharacter(
  26835. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26836. {
  26837. front: {
  26838. height: math.unit(2.3, "meters"),
  26839. weight: math.unit(300, "lb"),
  26840. name: "Front",
  26841. image: {
  26842. source: "./media/characters/sinja/front-sfw.svg",
  26843. extra: 1393 / 1294,
  26844. bottom: 70 / 1463
  26845. }
  26846. },
  26847. frontNsfw: {
  26848. height: math.unit(2.3, "meters"),
  26849. weight: math.unit(300, "lb"),
  26850. name: "Front (NSFW)",
  26851. image: {
  26852. source: "./media/characters/sinja/front-nsfw.svg",
  26853. extra: 1393 / 1294,
  26854. bottom: 70 / 1463
  26855. }
  26856. },
  26857. back: {
  26858. height: math.unit(2.3, "meters"),
  26859. weight: math.unit(300, "lb"),
  26860. name: "Back",
  26861. image: {
  26862. source: "./media/characters/sinja/back.svg",
  26863. extra: 1393 / 1294,
  26864. bottom: 70 / 1463
  26865. }
  26866. },
  26867. head: {
  26868. height: math.unit(1.771, "feet"),
  26869. name: "Head",
  26870. image: {
  26871. source: "./media/characters/sinja/head.svg"
  26872. }
  26873. },
  26874. slit: {
  26875. height: math.unit(0.8, "feet"),
  26876. name: "Slit",
  26877. image: {
  26878. source: "./media/characters/sinja/slit.svg"
  26879. }
  26880. },
  26881. },
  26882. [
  26883. {
  26884. name: "Normal",
  26885. height: math.unit(2.3, "meters")
  26886. },
  26887. {
  26888. name: "Macro",
  26889. height: math.unit(91, "meters"),
  26890. default: true
  26891. },
  26892. {
  26893. name: "Megamacro",
  26894. height: math.unit(91440, "meters")
  26895. },
  26896. {
  26897. name: "Gigamacro",
  26898. height: math.unit(60960000, "meters")
  26899. },
  26900. {
  26901. name: "Teramacro",
  26902. height: math.unit(9144000000, "meters")
  26903. },
  26904. ]
  26905. ))
  26906. characterMakers.push(() => makeCharacter(
  26907. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26908. {
  26909. front: {
  26910. height: math.unit(1.7, "meters"),
  26911. weight: math.unit(130, "lb"),
  26912. name: "Front",
  26913. image: {
  26914. source: "./media/characters/kyu/front.svg",
  26915. extra: 415 / 395,
  26916. bottom: 5 / 420
  26917. }
  26918. },
  26919. head: {
  26920. height: math.unit(1.75, "feet"),
  26921. name: "Head",
  26922. image: {
  26923. source: "./media/characters/kyu/head.svg"
  26924. }
  26925. },
  26926. foot: {
  26927. height: math.unit(0.81, "feet"),
  26928. name: "Foot",
  26929. image: {
  26930. source: "./media/characters/kyu/foot.svg"
  26931. }
  26932. },
  26933. },
  26934. [
  26935. {
  26936. name: "Normal",
  26937. height: math.unit(1.7, "meters")
  26938. },
  26939. {
  26940. name: "Macro",
  26941. height: math.unit(131, "feet"),
  26942. default: true
  26943. },
  26944. {
  26945. name: "Megamacro",
  26946. height: math.unit(91440, "meters")
  26947. },
  26948. {
  26949. name: "Gigamacro",
  26950. height: math.unit(60960000, "meters")
  26951. },
  26952. {
  26953. name: "Teramacro",
  26954. height: math.unit(9144000000, "meters")
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(7 + 1 / 12, "feet"),
  26963. weight: math.unit(250, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/joey/front.svg",
  26967. extra: 1791 / 1537,
  26968. bottom: 28 / 1816
  26969. }
  26970. },
  26971. },
  26972. [
  26973. {
  26974. name: "Micro",
  26975. height: math.unit(3, "inches")
  26976. },
  26977. {
  26978. name: "Normal",
  26979. height: math.unit(7 + 1 / 12, "feet"),
  26980. default: true
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26986. {
  26987. front: {
  26988. height: math.unit(165, "cm"),
  26989. weight: math.unit(140, "lb"),
  26990. name: "Front",
  26991. image: {
  26992. source: "./media/characters/sam-evans/front.svg",
  26993. extra: 3417 / 3230,
  26994. bottom: 41.3 / 3417
  26995. }
  26996. },
  26997. frontSixTails: {
  26998. height: math.unit(165, "cm"),
  26999. weight: math.unit(140, "lb"),
  27000. name: "Front-six-tails",
  27001. image: {
  27002. source: "./media/characters/sam-evans/front-six-tails.svg",
  27003. extra: 3417 / 3230,
  27004. bottom: 41.3 / 3417
  27005. }
  27006. },
  27007. back: {
  27008. height: math.unit(165, "cm"),
  27009. weight: math.unit(140, "lb"),
  27010. name: "Back",
  27011. image: {
  27012. source: "./media/characters/sam-evans/back.svg",
  27013. extra: 3227 / 3032,
  27014. bottom: 6.8 / 3234
  27015. }
  27016. },
  27017. face: {
  27018. height: math.unit(0.68, "feet"),
  27019. name: "Face",
  27020. image: {
  27021. source: "./media/characters/sam-evans/face.svg"
  27022. }
  27023. },
  27024. },
  27025. [
  27026. {
  27027. name: "Normal",
  27028. height: math.unit(165, "cm"),
  27029. default: true
  27030. },
  27031. {
  27032. name: "Macro",
  27033. height: math.unit(100, "meters")
  27034. },
  27035. {
  27036. name: "Macro+",
  27037. height: math.unit(800, "meters")
  27038. },
  27039. {
  27040. name: "Macro++",
  27041. height: math.unit(3, "km")
  27042. },
  27043. {
  27044. name: "Macro+++",
  27045. height: math.unit(30, "km")
  27046. },
  27047. ]
  27048. ))
  27049. characterMakers.push(() => makeCharacter(
  27050. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27051. {
  27052. front: {
  27053. height: math.unit(10, "feet"),
  27054. weight: math.unit(750, "lb"),
  27055. name: "Front",
  27056. image: {
  27057. source: "./media/characters/juliet-a/front.svg",
  27058. extra: 1766 / 1720,
  27059. bottom: 43 / 1809
  27060. }
  27061. },
  27062. back: {
  27063. height: math.unit(10, "feet"),
  27064. weight: math.unit(750, "lb"),
  27065. name: "Back",
  27066. image: {
  27067. source: "./media/characters/juliet-a/back.svg",
  27068. extra: 1781 / 1734,
  27069. bottom: 35 / 1810,
  27070. }
  27071. },
  27072. },
  27073. [
  27074. {
  27075. name: "Normal",
  27076. height: math.unit(10, "feet"),
  27077. default: true
  27078. },
  27079. {
  27080. name: "Dragon Form",
  27081. height: math.unit(250, "feet")
  27082. },
  27083. {
  27084. name: "Macro",
  27085. height: math.unit(1000, "feet")
  27086. },
  27087. {
  27088. name: "Megamacro",
  27089. height: math.unit(10000, "feet")
  27090. }
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27095. {
  27096. regular: {
  27097. height: math.unit(7 + 3 / 12, "feet"),
  27098. weight: math.unit(260, "lb"),
  27099. name: "Regular",
  27100. image: {
  27101. source: "./media/characters/wild/regular.svg",
  27102. extra: 97.45 / 92,
  27103. bottom: 6.8 / 104.3
  27104. }
  27105. },
  27106. biggums: {
  27107. height: math.unit(8 + 6 / 12, "feet"),
  27108. weight: math.unit(425, "lb"),
  27109. name: "Biggums",
  27110. image: {
  27111. source: "./media/characters/wild/biggums.svg",
  27112. extra: 97.45 / 92,
  27113. bottom: 7.5 / 132.34
  27114. }
  27115. },
  27116. mawRegular: {
  27117. height: math.unit(1.24, "feet"),
  27118. name: "Maw (Regular)",
  27119. image: {
  27120. source: "./media/characters/wild/maw.svg"
  27121. }
  27122. },
  27123. mawBiggums: {
  27124. height: math.unit(1.47, "feet"),
  27125. name: "Maw (Biggums)",
  27126. image: {
  27127. source: "./media/characters/wild/maw.svg"
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Normal",
  27134. height: math.unit(7 + 3 / 12, "feet"),
  27135. default: true
  27136. },
  27137. ]
  27138. ))
  27139. characterMakers.push(() => makeCharacter(
  27140. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27141. {
  27142. front: {
  27143. height: math.unit(2.5, "meters"),
  27144. weight: math.unit(200, "kg"),
  27145. name: "Front",
  27146. image: {
  27147. source: "./media/characters/vidar/front.svg",
  27148. extra: 2994 / 2795,
  27149. bottom: 56 / 3061
  27150. }
  27151. },
  27152. back: {
  27153. height: math.unit(2.5, "meters"),
  27154. weight: math.unit(200, "kg"),
  27155. name: "Back",
  27156. image: {
  27157. source: "./media/characters/vidar/back.svg",
  27158. extra: 3131 / 2928,
  27159. bottom: 13.5 / 3141.5
  27160. }
  27161. },
  27162. feral: {
  27163. height: math.unit(2.5, "meters"),
  27164. weight: math.unit(2000, "kg"),
  27165. name: "Feral",
  27166. image: {
  27167. source: "./media/characters/vidar/feral.svg",
  27168. extra: 2790 / 1765,
  27169. bottom: 6 / 2796
  27170. }
  27171. },
  27172. },
  27173. [
  27174. {
  27175. name: "Normal",
  27176. height: math.unit(2.5, "meters"),
  27177. default: true
  27178. },
  27179. {
  27180. name: "Macro",
  27181. height: math.unit(100, "meters")
  27182. },
  27183. ]
  27184. ))
  27185. characterMakers.push(() => makeCharacter(
  27186. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27187. {
  27188. front: {
  27189. height: math.unit(5 + 9 / 12, "feet"),
  27190. weight: math.unit(120, "lb"),
  27191. name: "Front",
  27192. image: {
  27193. source: "./media/characters/ash/front.svg",
  27194. extra: 2189 / 1961,
  27195. bottom: 5.2 / 2194
  27196. }
  27197. },
  27198. },
  27199. [
  27200. {
  27201. name: "Normal",
  27202. height: math.unit(5 + 9 / 12, "feet"),
  27203. default: true
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27209. {
  27210. front: {
  27211. height: math.unit(9, "feet"),
  27212. weight: math.unit(10000, "lb"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/gygabite/front.svg",
  27216. bottom: 31.7 / 537.8,
  27217. extra: 505 / 370
  27218. }
  27219. },
  27220. },
  27221. [
  27222. {
  27223. name: "Normal",
  27224. height: math.unit(9, "feet"),
  27225. default: true
  27226. },
  27227. ]
  27228. ))
  27229. characterMakers.push(() => makeCharacter(
  27230. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27231. {
  27232. front: {
  27233. height: math.unit(12, "feet"),
  27234. weight: math.unit(35000, "lb"),
  27235. name: "Front",
  27236. image: {
  27237. source: "./media/characters/p0tat0/front.svg",
  27238. extra: 1065 / 921,
  27239. bottom: 55.7 / 1121.25
  27240. }
  27241. },
  27242. },
  27243. [
  27244. {
  27245. name: "Normal",
  27246. height: math.unit(12, "feet"),
  27247. default: true
  27248. },
  27249. ]
  27250. ))
  27251. characterMakers.push(() => makeCharacter(
  27252. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27253. {
  27254. side: {
  27255. height: math.unit(6.5, "feet"),
  27256. weight: math.unit(800, "lb"),
  27257. name: "Side",
  27258. image: {
  27259. source: "./media/characters/dusk/side.svg",
  27260. extra: 615 / 373,
  27261. bottom: 53 / 664
  27262. }
  27263. },
  27264. sitting: {
  27265. height: math.unit(7, "feet"),
  27266. weight: math.unit(800, "lb"),
  27267. name: "Sitting",
  27268. image: {
  27269. source: "./media/characters/dusk/sitting.svg",
  27270. extra: 753 / 425,
  27271. bottom: 33 / 774
  27272. }
  27273. },
  27274. head: {
  27275. height: math.unit(6.1, "feet"),
  27276. name: "Head",
  27277. image: {
  27278. source: "./media/characters/dusk/head.svg"
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(7, "feet"),
  27286. default: true
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27292. {
  27293. front: {
  27294. height: math.unit(15, "feet"),
  27295. weight: math.unit(7000, "lb"),
  27296. name: "Front",
  27297. image: {
  27298. source: "./media/characters/jay-direwolf/front.svg",
  27299. extra: 1810 / 1732,
  27300. bottom: 66 / 1892
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(15, "feet"),
  27308. default: true
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27314. {
  27315. front: {
  27316. height: math.unit(4 + 9 / 12, "feet"),
  27317. weight: math.unit(130, "lb"),
  27318. name: "Front",
  27319. image: {
  27320. source: "./media/characters/anchovie/front.svg",
  27321. extra: 382 / 350,
  27322. bottom: 25 / 409
  27323. }
  27324. },
  27325. back: {
  27326. height: math.unit(4 + 9 / 12, "feet"),
  27327. weight: math.unit(130, "lb"),
  27328. name: "Back",
  27329. image: {
  27330. source: "./media/characters/anchovie/back.svg",
  27331. extra: 385 / 352,
  27332. bottom: 16.6 / 402
  27333. }
  27334. },
  27335. frontDressed: {
  27336. height: math.unit(4 + 9 / 12, "feet"),
  27337. weight: math.unit(130, "lb"),
  27338. name: "Front (Dressed)",
  27339. image: {
  27340. source: "./media/characters/anchovie/front-dressed.svg",
  27341. extra: 382 / 350,
  27342. bottom: 25 / 409
  27343. }
  27344. },
  27345. backDressed: {
  27346. height: math.unit(4 + 9 / 12, "feet"),
  27347. weight: math.unit(130, "lb"),
  27348. name: "Back (Dressed)",
  27349. image: {
  27350. source: "./media/characters/anchovie/back-dressed.svg",
  27351. extra: 385 / 352,
  27352. bottom: 16.6 / 402
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Micro",
  27359. height: math.unit(6.4, "inches")
  27360. },
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(4 + 9 / 12, "feet"),
  27364. default: true
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(2, "meters"),
  27373. weight: math.unit(180, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/acidrenamon/front.svg",
  27377. extra: 987 / 890,
  27378. bottom: 22.8 / 1009
  27379. }
  27380. },
  27381. back: {
  27382. height: math.unit(2, "meters"),
  27383. weight: math.unit(180, "lb"),
  27384. name: "Back",
  27385. image: {
  27386. source: "./media/characters/acidrenamon/back.svg",
  27387. extra: 983 / 891,
  27388. bottom: 8.4 / 992
  27389. }
  27390. },
  27391. head: {
  27392. height: math.unit(1.92, "feet"),
  27393. name: "Head",
  27394. image: {
  27395. source: "./media/characters/acidrenamon/head.svg"
  27396. }
  27397. },
  27398. rump: {
  27399. height: math.unit(1.72, "feet"),
  27400. name: "Rump",
  27401. image: {
  27402. source: "./media/characters/acidrenamon/rump.svg"
  27403. }
  27404. },
  27405. tail: {
  27406. height: math.unit(4.2, "feet"),
  27407. name: "Tail",
  27408. image: {
  27409. source: "./media/characters/acidrenamon/tail.svg"
  27410. }
  27411. },
  27412. },
  27413. [
  27414. {
  27415. name: "Normal",
  27416. height: math.unit(2, "meters"),
  27417. default: true
  27418. },
  27419. {
  27420. name: "Minimacro",
  27421. height: math.unit(7, "meters")
  27422. },
  27423. {
  27424. name: "Macro",
  27425. height: math.unit(200, "meters")
  27426. },
  27427. {
  27428. name: "Gigamacro",
  27429. height: math.unit(0.2, "earths")
  27430. },
  27431. ]
  27432. ))
  27433. characterMakers.push(() => makeCharacter(
  27434. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27435. {
  27436. front: {
  27437. height: math.unit(6, "feet"),
  27438. weight: math.unit(150, "lb"),
  27439. name: "Front",
  27440. image: {
  27441. source: "./media/characters/kenzie-lee/front.svg",
  27442. extra: 1525 / 1465,
  27443. bottom: 45 / 1570
  27444. }
  27445. },
  27446. side: {
  27447. height: math.unit(6, "feet"),
  27448. weight: math.unit(150, "lb"),
  27449. name: "Side",
  27450. image: {
  27451. source: "./media/characters/kenzie-lee/side.svg",
  27452. extra: 5505 / 5383,
  27453. bottom: 60 / 5573
  27454. }
  27455. },
  27456. paw: {
  27457. height: math.unit(0.57, "feet"),
  27458. name: "Paw",
  27459. image: {
  27460. source: "./media/characters/kenzie-lee/paw.svg"
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Normal",
  27467. height: math.unit(152, "feet"),
  27468. default: true
  27469. },
  27470. {
  27471. name: "Megamacro",
  27472. height: math.unit(7, "miles")
  27473. },
  27474. {
  27475. name: "Gigamacro",
  27476. height: math.unit(8000, "miles")
  27477. },
  27478. ]
  27479. ))
  27480. characterMakers.push(() => makeCharacter(
  27481. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27482. {
  27483. side: {
  27484. height: math.unit(6, "feet"),
  27485. weight: math.unit(150, "lb"),
  27486. name: "Side",
  27487. image: {
  27488. source: "./media/characters/withers/side.svg",
  27489. extra: 1830 / 1728,
  27490. bottom: 96 / 1927
  27491. }
  27492. },
  27493. front: {
  27494. height: math.unit(6, "feet"),
  27495. weight: math.unit(150, "lb"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/withers/front.svg",
  27499. extra: 1514 / 1438,
  27500. bottom: 118 / 1632
  27501. }
  27502. },
  27503. },
  27504. [
  27505. {
  27506. name: "Macro",
  27507. height: math.unit(168, "feet"),
  27508. default: true
  27509. },
  27510. {
  27511. name: "Megamacro",
  27512. height: math.unit(15, "miles")
  27513. }
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27518. {
  27519. front: {
  27520. height: math.unit(6 + 7 / 12, "feet"),
  27521. weight: math.unit(250, "lb"),
  27522. name: "Front",
  27523. image: {
  27524. source: "./media/characters/nemoskii/front.svg",
  27525. extra: 2270 / 1734,
  27526. bottom: 86 / 2354
  27527. }
  27528. },
  27529. back: {
  27530. height: math.unit(6 + 7 / 12, "feet"),
  27531. weight: math.unit(250, "lb"),
  27532. name: "Back",
  27533. image: {
  27534. source: "./media/characters/nemoskii/back.svg",
  27535. extra: 1845 / 1788,
  27536. bottom: 10.5 / 1852
  27537. }
  27538. },
  27539. head: {
  27540. height: math.unit(1.31, "feet"),
  27541. name: "Head",
  27542. image: {
  27543. source: "./media/characters/nemoskii/head.svg"
  27544. }
  27545. },
  27546. },
  27547. [
  27548. {
  27549. name: "Micro",
  27550. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27551. },
  27552. {
  27553. name: "Normal",
  27554. height: math.unit(6 + 7 / 12, "feet"),
  27555. default: true
  27556. },
  27557. {
  27558. name: "Macro",
  27559. height: math.unit((6 + 7 / 12) * 150, "feet")
  27560. },
  27561. {
  27562. name: "Macro+",
  27563. height: math.unit((6 + 7 / 12) * 500, "feet")
  27564. },
  27565. {
  27566. name: "Megamacro",
  27567. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27568. },
  27569. ]
  27570. ))
  27571. characterMakers.push(() => makeCharacter(
  27572. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27573. {
  27574. front: {
  27575. height: math.unit(1, "mile"),
  27576. weight: math.unit(265261.9, "lb"),
  27577. name: "Front",
  27578. image: {
  27579. source: "./media/characters/shui/front.svg",
  27580. extra: 1633 / 1564,
  27581. bottom: 91.5 / 1726
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Macro",
  27588. height: math.unit(1, "mile"),
  27589. default: true
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27595. {
  27596. front: {
  27597. height: math.unit(12 + 6 / 12, "feet"),
  27598. weight: math.unit(1342, "lb"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/arokh-takakura/front.svg",
  27602. extra: 1089 / 1043,
  27603. bottom: 77.4 / 1176.7
  27604. }
  27605. },
  27606. back: {
  27607. height: math.unit(12 + 6 / 12, "feet"),
  27608. weight: math.unit(1342, "lb"),
  27609. name: "Back",
  27610. image: {
  27611. source: "./media/characters/arokh-takakura/back.svg",
  27612. extra: 1046 / 1019,
  27613. bottom: 102 / 1150
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Big",
  27620. height: math.unit(12 + 6 / 12, "feet"),
  27621. default: true
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(5 + 6 / 12, "feet"),
  27630. weight: math.unit(150, "lb"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/theo/front.svg",
  27634. extra: 1184 / 1131,
  27635. bottom: 7.4 / 1191
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Micro",
  27642. height: math.unit(5, "inches")
  27643. },
  27644. {
  27645. name: "Normal",
  27646. height: math.unit(5 + 6 / 12, "feet"),
  27647. default: true
  27648. },
  27649. ]
  27650. ))
  27651. characterMakers.push(() => makeCharacter(
  27652. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27653. {
  27654. front: {
  27655. height: math.unit(5 + 9 / 12, "feet"),
  27656. weight: math.unit(130, "lb"),
  27657. name: "Front",
  27658. image: {
  27659. source: "./media/characters/cecelia-swift/front.svg",
  27660. extra: 502 / 484,
  27661. bottom: 23 / 523
  27662. }
  27663. },
  27664. back: {
  27665. height: math.unit(5 + 9 / 12, "feet"),
  27666. weight: math.unit(130, "lb"),
  27667. name: "Back",
  27668. image: {
  27669. source: "./media/characters/cecelia-swift/back.svg",
  27670. extra: 499 / 485,
  27671. bottom: 12 / 511
  27672. }
  27673. },
  27674. head: {
  27675. height: math.unit(0.90, "feet"),
  27676. name: "Head",
  27677. image: {
  27678. source: "./media/characters/cecelia-swift/head.svg"
  27679. }
  27680. },
  27681. rump: {
  27682. height: math.unit(1.75, "feet"),
  27683. name: "Rump",
  27684. image: {
  27685. source: "./media/characters/cecelia-swift/rump.svg"
  27686. }
  27687. },
  27688. },
  27689. [
  27690. {
  27691. name: "Normal",
  27692. height: math.unit(5 + 9 / 12, "feet"),
  27693. default: true
  27694. },
  27695. {
  27696. name: "Big",
  27697. height: math.unit(50, "feet")
  27698. },
  27699. {
  27700. name: "Macro",
  27701. height: math.unit(100, "feet")
  27702. },
  27703. {
  27704. name: "Macro+",
  27705. height: math.unit(500, "feet")
  27706. },
  27707. {
  27708. name: "Macro++",
  27709. height: math.unit(1000, "feet")
  27710. },
  27711. ]
  27712. ))
  27713. characterMakers.push(() => makeCharacter(
  27714. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27715. {
  27716. front: {
  27717. height: math.unit(6, "feet"),
  27718. weight: math.unit(150, "lb"),
  27719. name: "Front",
  27720. image: {
  27721. source: "./media/characters/kaunan/front.svg",
  27722. extra: 2890 / 2523,
  27723. bottom: 49 / 2939
  27724. }
  27725. },
  27726. },
  27727. [
  27728. {
  27729. name: "Macro",
  27730. height: math.unit(150, "feet"),
  27731. default: true
  27732. },
  27733. ]
  27734. ))
  27735. characterMakers.push(() => makeCharacter(
  27736. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27737. {
  27738. front: {
  27739. height: math.unit(175, "cm"),
  27740. weight: math.unit(60, "kg"),
  27741. name: "Front",
  27742. image: {
  27743. source: "./media/characters/fei/front.svg",
  27744. extra: 1873/1723,
  27745. bottom: 53/1926
  27746. }
  27747. },
  27748. },
  27749. [
  27750. {
  27751. name: "Mortal",
  27752. height: math.unit(175, "cm")
  27753. },
  27754. {
  27755. name: "Normal",
  27756. height: math.unit(3500, "m"),
  27757. default: true
  27758. },
  27759. {
  27760. name: "Stroll",
  27761. height: math.unit(17.5, "km")
  27762. },
  27763. {
  27764. name: "Showoff",
  27765. height: math.unit(175, "km")
  27766. },
  27767. ]
  27768. ))
  27769. characterMakers.push(() => makeCharacter(
  27770. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27771. {
  27772. front: {
  27773. height: math.unit(7, "feet"),
  27774. weight: math.unit(1000, "kg"),
  27775. name: "Front",
  27776. image: {
  27777. source: "./media/characters/edrax/front.svg",
  27778. extra: 2838 / 2550,
  27779. bottom: 130 / 2968
  27780. }
  27781. },
  27782. },
  27783. [
  27784. {
  27785. name: "Small",
  27786. height: math.unit(7, "feet")
  27787. },
  27788. {
  27789. name: "Normal",
  27790. height: math.unit(1500, "meters")
  27791. },
  27792. {
  27793. name: "Mega",
  27794. height: math.unit(12000000, "km"),
  27795. default: true
  27796. },
  27797. {
  27798. name: "Megamacro",
  27799. height: math.unit(10600000, "lightyears")
  27800. },
  27801. {
  27802. name: "Hypermacro",
  27803. height: math.unit(256, "yottameters")
  27804. },
  27805. ]
  27806. ))
  27807. characterMakers.push(() => makeCharacter(
  27808. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27809. {
  27810. front: {
  27811. height: math.unit(10, "feet"),
  27812. weight: math.unit(750, "lb"),
  27813. name: "Front",
  27814. image: {
  27815. source: "./media/characters/clove/front.svg",
  27816. extra: 2031 / 1860,
  27817. bottom: 47.8 / 2080
  27818. }
  27819. },
  27820. back: {
  27821. height: math.unit(10, "feet"),
  27822. weight: math.unit(750, "lb"),
  27823. name: "Back",
  27824. image: {
  27825. source: "./media/characters/clove/back.svg",
  27826. extra: 2025 / 1859,
  27827. bottom: 46 / 2071
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(10, "feet"),
  27835. default: true
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(4, "feet"),
  27844. weight: math.unit(50, "lb"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/alex-rabbit/front.svg",
  27848. extra: 507 / 458,
  27849. bottom: 18.5 / 527
  27850. }
  27851. },
  27852. back: {
  27853. height: math.unit(4, "feet"),
  27854. weight: math.unit(50, "lb"),
  27855. name: "Back",
  27856. image: {
  27857. source: "./media/characters/alex-rabbit/back.svg",
  27858. extra: 502 / 460,
  27859. bottom: 18.9 / 521
  27860. }
  27861. },
  27862. },
  27863. [
  27864. {
  27865. name: "Normal",
  27866. height: math.unit(4, "feet"),
  27867. default: true
  27868. },
  27869. ]
  27870. ))
  27871. characterMakers.push(() => makeCharacter(
  27872. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27873. {
  27874. front: {
  27875. height: math.unit(1 + 3 / 12, "feet"),
  27876. weight: math.unit(80, "lb"),
  27877. name: "Front",
  27878. image: {
  27879. source: "./media/characters/zander-rose/front.svg",
  27880. extra: 916 / 797,
  27881. bottom: 17 / 933
  27882. }
  27883. },
  27884. back: {
  27885. height: math.unit(1 + 3 / 12, "feet"),
  27886. weight: math.unit(80, "lb"),
  27887. name: "Back",
  27888. image: {
  27889. source: "./media/characters/zander-rose/back.svg",
  27890. extra: 903 / 779,
  27891. bottom: 31 / 934
  27892. }
  27893. },
  27894. },
  27895. [
  27896. {
  27897. name: "Normal",
  27898. height: math.unit(1 + 3 / 12, "feet"),
  27899. default: true
  27900. },
  27901. ]
  27902. ))
  27903. characterMakers.push(() => makeCharacter(
  27904. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27905. {
  27906. anthro: {
  27907. height: math.unit(6, "feet"),
  27908. weight: math.unit(150, "lb"),
  27909. name: "Anthro",
  27910. image: {
  27911. source: "./media/characters/razz/anthro.svg",
  27912. extra: 1437 / 1343,
  27913. bottom: 48 / 1485
  27914. }
  27915. },
  27916. feral: {
  27917. height: math.unit(6, "feet"),
  27918. weight: math.unit(150, "lb"),
  27919. name: "Feral",
  27920. image: {
  27921. source: "./media/characters/razz/feral.svg",
  27922. extra: 2569 / 1385,
  27923. bottom: 95 / 2664
  27924. }
  27925. },
  27926. },
  27927. [
  27928. {
  27929. name: "Normal",
  27930. height: math.unit(6, "feet"),
  27931. default: true
  27932. },
  27933. ]
  27934. ))
  27935. characterMakers.push(() => makeCharacter(
  27936. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27937. {
  27938. front: {
  27939. height: math.unit(9 + 4 / 12, "feet"),
  27940. weight: math.unit(500, "lb"),
  27941. name: "Front",
  27942. image: {
  27943. source: "./media/characters/morrigan/front.svg",
  27944. extra: 2707 / 2579,
  27945. bottom: 156 / 2863
  27946. }
  27947. },
  27948. },
  27949. [
  27950. {
  27951. name: "Normal",
  27952. height: math.unit(9 + 4 / 12, "feet"),
  27953. default: true
  27954. },
  27955. ]
  27956. ))
  27957. characterMakers.push(() => makeCharacter(
  27958. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27959. {
  27960. front: {
  27961. height: math.unit(5, "stories"),
  27962. weight: math.unit(4000, "lb"),
  27963. name: "Front",
  27964. image: {
  27965. source: "./media/characters/jenene/front.svg",
  27966. extra: 1780 / 1710,
  27967. bottom: 57 / 1837
  27968. }
  27969. },
  27970. },
  27971. [
  27972. {
  27973. name: "Normal",
  27974. height: math.unit(5, "stories"),
  27975. default: true
  27976. },
  27977. ]
  27978. ))
  27979. characterMakers.push(() => makeCharacter(
  27980. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27981. {
  27982. taurSfw: {
  27983. height: math.unit(10, "meters"),
  27984. weight: math.unit(17500, "kg"),
  27985. name: "Taur",
  27986. image: {
  27987. source: "./media/characters/faey/taur-sfw.svg",
  27988. extra: 1200 / 968,
  27989. bottom: 41 / 1241
  27990. }
  27991. },
  27992. chestmaw: {
  27993. height: math.unit(2.01, "meters"),
  27994. name: "Chestmaw",
  27995. image: {
  27996. source: "./media/characters/faey/chestmaw.svg"
  27997. }
  27998. },
  27999. foot: {
  28000. height: math.unit(2.43, "meters"),
  28001. name: "Foot",
  28002. image: {
  28003. source: "./media/characters/faey/foot.svg"
  28004. }
  28005. },
  28006. jaws: {
  28007. height: math.unit(1.66, "meters"),
  28008. name: "Jaws",
  28009. image: {
  28010. source: "./media/characters/faey/jaws.svg"
  28011. }
  28012. },
  28013. tongues: {
  28014. height: math.unit(2.01, "meters"),
  28015. name: "Tongues",
  28016. image: {
  28017. source: "./media/characters/faey/tongues.svg"
  28018. }
  28019. },
  28020. },
  28021. [
  28022. {
  28023. name: "Small",
  28024. height: math.unit(10, "meters"),
  28025. default: true
  28026. },
  28027. {
  28028. name: "Big",
  28029. height: math.unit(500000, "km")
  28030. },
  28031. ]
  28032. ))
  28033. characterMakers.push(() => makeCharacter(
  28034. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28035. {
  28036. front: {
  28037. height: math.unit(7, "feet"),
  28038. weight: math.unit(275, "lb"),
  28039. name: "Front",
  28040. image: {
  28041. source: "./media/characters/roku/front.svg",
  28042. extra: 903 / 878,
  28043. bottom: 37 / 940
  28044. }
  28045. },
  28046. },
  28047. [
  28048. {
  28049. name: "Normal",
  28050. height: math.unit(7, "feet"),
  28051. default: true
  28052. },
  28053. {
  28054. name: "Macro",
  28055. height: math.unit(500, "feet")
  28056. },
  28057. {
  28058. name: "Megamacro",
  28059. height: math.unit(200, "miles")
  28060. },
  28061. ]
  28062. ))
  28063. characterMakers.push(() => makeCharacter(
  28064. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28065. {
  28066. front: {
  28067. height: math.unit(6 + 2 / 12, "feet"),
  28068. weight: math.unit(150, "lb"),
  28069. name: "Front",
  28070. image: {
  28071. source: "./media/characters/lira/front.svg",
  28072. extra: 1727 / 1605,
  28073. bottom: 26 / 1753
  28074. }
  28075. },
  28076. back: {
  28077. height: math.unit(6 + 2 / 12, "feet"),
  28078. weight: math.unit(150, "lb"),
  28079. name: "Back",
  28080. image: {
  28081. source: "./media/characters/lira/back.svg",
  28082. extra: 1713/1621,
  28083. bottom: 20/1733
  28084. }
  28085. },
  28086. hand: {
  28087. height: math.unit(0.75, "feet"),
  28088. name: "Hand",
  28089. image: {
  28090. source: "./media/characters/lira/hand.svg"
  28091. }
  28092. },
  28093. maw: {
  28094. height: math.unit(0.65, "feet"),
  28095. name: "Maw",
  28096. image: {
  28097. source: "./media/characters/lira/maw.svg"
  28098. }
  28099. },
  28100. pawDigi: {
  28101. height: math.unit(1.6, "feet"),
  28102. name: "Paw Digi",
  28103. image: {
  28104. source: "./media/characters/lira/paw-digi.svg"
  28105. }
  28106. },
  28107. pawPlanti: {
  28108. height: math.unit(1.4, "feet"),
  28109. name: "Paw Planti",
  28110. image: {
  28111. source: "./media/characters/lira/paw-planti.svg"
  28112. }
  28113. },
  28114. },
  28115. [
  28116. {
  28117. name: "Normal",
  28118. height: math.unit(6 + 2 / 12, "feet"),
  28119. default: true
  28120. },
  28121. {
  28122. name: "Macro",
  28123. height: math.unit(100, "feet")
  28124. },
  28125. {
  28126. name: "Macro²",
  28127. height: math.unit(1600, "feet")
  28128. },
  28129. {
  28130. name: "Planetary",
  28131. height: math.unit(20, "earths")
  28132. },
  28133. ]
  28134. ))
  28135. characterMakers.push(() => makeCharacter(
  28136. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28137. {
  28138. front: {
  28139. height: math.unit(6, "feet"),
  28140. weight: math.unit(150, "lb"),
  28141. name: "Front",
  28142. image: {
  28143. source: "./media/characters/hadjet/front.svg",
  28144. extra: 1480 / 1346,
  28145. bottom: 26 / 1506
  28146. }
  28147. },
  28148. frontNsfw: {
  28149. height: math.unit(6, "feet"),
  28150. weight: math.unit(150, "lb"),
  28151. name: "Front (NSFW)",
  28152. image: {
  28153. source: "./media/characters/hadjet/front-nsfw.svg",
  28154. extra: 1440 / 1358,
  28155. bottom: 52 / 1492
  28156. }
  28157. },
  28158. },
  28159. [
  28160. {
  28161. name: "Macro",
  28162. height: math.unit(10, "stories"),
  28163. default: true
  28164. },
  28165. {
  28166. name: "Megamacro",
  28167. height: math.unit(1.5, "miles")
  28168. },
  28169. {
  28170. name: "Megamacro+",
  28171. height: math.unit(5, "miles")
  28172. },
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28177. {
  28178. side: {
  28179. height: math.unit(106, "feet"),
  28180. weight: math.unit(500, "tonnes"),
  28181. name: "Side",
  28182. image: {
  28183. source: "./media/characters/kodran/side.svg",
  28184. extra: 553 / 480,
  28185. bottom: 33 / 586
  28186. }
  28187. },
  28188. front: {
  28189. height: math.unit(132, "feet"),
  28190. weight: math.unit(500, "tonnes"),
  28191. name: "Front",
  28192. image: {
  28193. source: "./media/characters/kodran/front.svg",
  28194. extra: 667 / 643,
  28195. bottom: 42 / 709
  28196. }
  28197. },
  28198. flying: {
  28199. height: math.unit(350, "feet"),
  28200. weight: math.unit(500, "tonnes"),
  28201. name: "Flying",
  28202. image: {
  28203. source: "./media/characters/kodran/flying.svg"
  28204. }
  28205. },
  28206. foot: {
  28207. height: math.unit(33, "feet"),
  28208. name: "Foot",
  28209. image: {
  28210. source: "./media/characters/kodran/foot.svg"
  28211. }
  28212. },
  28213. footFront: {
  28214. height: math.unit(19, "feet"),
  28215. name: "Foot (Front)",
  28216. image: {
  28217. source: "./media/characters/kodran/foot-front.svg",
  28218. extra: 261 / 261,
  28219. bottom: 91 / 352
  28220. }
  28221. },
  28222. headFront: {
  28223. height: math.unit(53, "feet"),
  28224. name: "Head (Front)",
  28225. image: {
  28226. source: "./media/characters/kodran/head-front.svg"
  28227. }
  28228. },
  28229. headSide: {
  28230. height: math.unit(65, "feet"),
  28231. name: "Head (Side)",
  28232. image: {
  28233. source: "./media/characters/kodran/head-side.svg"
  28234. }
  28235. },
  28236. throat: {
  28237. height: math.unit(79, "feet"),
  28238. name: "Throat",
  28239. image: {
  28240. source: "./media/characters/kodran/throat.svg"
  28241. }
  28242. },
  28243. },
  28244. [
  28245. {
  28246. name: "Large",
  28247. height: math.unit(106, "feet"),
  28248. default: true
  28249. },
  28250. ]
  28251. ))
  28252. characterMakers.push(() => makeCharacter(
  28253. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28254. {
  28255. side: {
  28256. height: math.unit(11, "feet"),
  28257. weight: math.unit(150, "lb"),
  28258. name: "Side",
  28259. image: {
  28260. source: "./media/characters/pyxaron/side.svg",
  28261. extra: 305 / 195,
  28262. bottom: 17 / 322
  28263. }
  28264. },
  28265. },
  28266. [
  28267. {
  28268. name: "Normal",
  28269. height: math.unit(11, "feet"),
  28270. default: true
  28271. },
  28272. ]
  28273. ))
  28274. characterMakers.push(() => makeCharacter(
  28275. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28276. {
  28277. front: {
  28278. height: math.unit(6, "feet"),
  28279. weight: math.unit(150, "lb"),
  28280. name: "Front",
  28281. image: {
  28282. source: "./media/characters/meep/front.svg",
  28283. extra: 88 / 80,
  28284. bottom: 6 / 94
  28285. }
  28286. },
  28287. },
  28288. [
  28289. {
  28290. name: "Fun Sized",
  28291. height: math.unit(2, "inches"),
  28292. default: true
  28293. },
  28294. {
  28295. name: "Friend Sized",
  28296. height: math.unit(8, "inches")
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28302. {
  28303. front: {
  28304. height: math.unit(15, "feet"),
  28305. weight: math.unit(2500, "lb"),
  28306. name: "Front",
  28307. image: {
  28308. source: "./media/characters/holly-rabbit/front.svg",
  28309. extra: 1433 / 1233,
  28310. bottom: 125 / 1558
  28311. }
  28312. },
  28313. dick: {
  28314. height: math.unit(4.6, "feet"),
  28315. name: "Dick",
  28316. image: {
  28317. source: "./media/characters/holly-rabbit/dick.svg"
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(15, "feet"),
  28325. default: true
  28326. },
  28327. {
  28328. name: "Macro",
  28329. height: math.unit(250, "feet")
  28330. },
  28331. {
  28332. name: "Macro+",
  28333. height: math.unit(2500, "feet")
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(3.02, "meters"),
  28342. weight: math.unit(500, "kg"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/drena/front.svg",
  28346. extra: 282 / 243,
  28347. bottom: 8 / 290
  28348. }
  28349. },
  28350. side: {
  28351. height: math.unit(3.02, "meters"),
  28352. weight: math.unit(500, "kg"),
  28353. name: "Side",
  28354. image: {
  28355. source: "./media/characters/drena/side.svg",
  28356. extra: 280 / 245,
  28357. bottom: 10 / 290
  28358. }
  28359. },
  28360. back: {
  28361. height: math.unit(3.02, "meters"),
  28362. weight: math.unit(500, "kg"),
  28363. name: "Back",
  28364. image: {
  28365. source: "./media/characters/drena/back.svg",
  28366. extra: 278 / 243,
  28367. bottom: 2 / 280
  28368. }
  28369. },
  28370. foot: {
  28371. height: math.unit(0.75, "meters"),
  28372. name: "Foot",
  28373. image: {
  28374. source: "./media/characters/drena/foot.svg"
  28375. }
  28376. },
  28377. maw: {
  28378. height: math.unit(0.82, "meters"),
  28379. name: "Maw",
  28380. image: {
  28381. source: "./media/characters/drena/maw.svg"
  28382. }
  28383. },
  28384. rump: {
  28385. height: math.unit(0.93, "meters"),
  28386. name: "Rump",
  28387. image: {
  28388. source: "./media/characters/drena/rump.svg"
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(3.02, "meters"),
  28396. default: true
  28397. },
  28398. ]
  28399. ))
  28400. characterMakers.push(() => makeCharacter(
  28401. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28402. {
  28403. front: {
  28404. height: math.unit(6 + 4 / 12, "feet"),
  28405. weight: math.unit(250, "lb"),
  28406. name: "Front",
  28407. image: {
  28408. source: "./media/characters/remmyzilla/front.svg",
  28409. extra: 4033 / 3588,
  28410. bottom: 123 / 4156
  28411. }
  28412. },
  28413. back: {
  28414. height: math.unit(6 + 4 / 12, "feet"),
  28415. weight: math.unit(250, "lb"),
  28416. name: "Back",
  28417. image: {
  28418. source: "./media/characters/remmyzilla/back.svg",
  28419. extra: 2687 / 2555,
  28420. bottom: 48 / 2735
  28421. }
  28422. },
  28423. paw: {
  28424. height: math.unit(1.73, "feet"),
  28425. name: "Paw",
  28426. image: {
  28427. source: "./media/characters/remmyzilla/paw.svg"
  28428. }
  28429. },
  28430. maw: {
  28431. height: math.unit(1.73, "feet"),
  28432. name: "Maw",
  28433. image: {
  28434. source: "./media/characters/remmyzilla/maw.svg"
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Normal",
  28441. height: math.unit(6 + 4 / 12, "feet")
  28442. },
  28443. {
  28444. name: "Minimacro",
  28445. height: math.unit(12 + 8 / 12, "feet")
  28446. },
  28447. {
  28448. name: "Normal",
  28449. height: math.unit(640, "feet"),
  28450. default: true
  28451. },
  28452. {
  28453. name: "Megamacro",
  28454. height: math.unit(6400, "feet")
  28455. },
  28456. {
  28457. name: "Gigamacro",
  28458. height: math.unit(64000, "miles")
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28464. {
  28465. front: {
  28466. height: math.unit(2.5, "meters"),
  28467. weight: math.unit(300, "lb"),
  28468. name: "Front",
  28469. image: {
  28470. source: "./media/characters/lawrence/front.svg",
  28471. extra: 357 / 335,
  28472. bottom: 30 / 387
  28473. }
  28474. },
  28475. back: {
  28476. height: math.unit(2.5, "meters"),
  28477. weight: math.unit(300, "lb"),
  28478. name: "Back",
  28479. image: {
  28480. source: "./media/characters/lawrence/back.svg",
  28481. extra: 357 / 338,
  28482. bottom: 16 / 373
  28483. }
  28484. },
  28485. head: {
  28486. height: math.unit(0.9, "meter"),
  28487. name: "Head",
  28488. image: {
  28489. source: "./media/characters/lawrence/head.svg"
  28490. }
  28491. },
  28492. maw: {
  28493. height: math.unit(0.7, "meter"),
  28494. name: "Maw",
  28495. image: {
  28496. source: "./media/characters/lawrence/maw.svg"
  28497. }
  28498. },
  28499. footBottom: {
  28500. height: math.unit(0.5, "meter"),
  28501. name: "Foot (Bottom)",
  28502. image: {
  28503. source: "./media/characters/lawrence/foot-bottom.svg"
  28504. }
  28505. },
  28506. footTop: {
  28507. height: math.unit(0.5, "meter"),
  28508. name: "Foot (Top)",
  28509. image: {
  28510. source: "./media/characters/lawrence/foot-top.svg"
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Normal",
  28517. height: math.unit(2.5, "meters"),
  28518. default: true
  28519. },
  28520. {
  28521. name: "Macro",
  28522. height: math.unit(95, "meters")
  28523. },
  28524. {
  28525. name: "Megamacro",
  28526. height: math.unit(150, "km")
  28527. },
  28528. ]
  28529. ))
  28530. characterMakers.push(() => makeCharacter(
  28531. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28532. {
  28533. front: {
  28534. height: math.unit(4.2, "meters"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/sydney/front.svg",
  28538. extra: 1323 / 1277,
  28539. bottom: 111 / 1434
  28540. }
  28541. },
  28542. },
  28543. [
  28544. {
  28545. name: "Normal",
  28546. height: math.unit(4.2, "meters"),
  28547. default: true
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28553. {
  28554. back: {
  28555. height: math.unit(201, "feet"),
  28556. name: "Back",
  28557. image: {
  28558. source: "./media/characters/jessica/back.svg",
  28559. extra: 273 / 259,
  28560. bottom: 7 / 280
  28561. }
  28562. },
  28563. },
  28564. [
  28565. {
  28566. name: "Normal",
  28567. height: math.unit(201, "feet"),
  28568. default: true
  28569. },
  28570. {
  28571. name: "Megamacro",
  28572. height: math.unit(8, "miles")
  28573. },
  28574. ]
  28575. ))
  28576. characterMakers.push(() => makeCharacter(
  28577. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28578. {
  28579. side: {
  28580. height: math.unit(320, "cm"),
  28581. name: "Side",
  28582. image: {
  28583. source: "./media/characters/victoria/side.svg",
  28584. extra: 778 / 346,
  28585. bottom: 56 / 834
  28586. }
  28587. },
  28588. maw: {
  28589. height: math.unit(5.9, "feet"),
  28590. name: "Maw",
  28591. image: {
  28592. source: "./media/characters/victoria/maw.svg"
  28593. }
  28594. },
  28595. },
  28596. [
  28597. {
  28598. name: "Normal",
  28599. height: math.unit(320, "cm"),
  28600. default: true
  28601. },
  28602. ]
  28603. ))
  28604. characterMakers.push(() => makeCharacter(
  28605. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28606. {
  28607. front: {
  28608. height: math.unit(5 + 6 / 12, "feet"),
  28609. name: "Front",
  28610. image: {
  28611. source: "./media/characters/cat/front.svg",
  28612. extra: 1449/1295,
  28613. bottom: 34/1483
  28614. }
  28615. },
  28616. back: {
  28617. height: math.unit(5 + 6 / 12, "feet"),
  28618. name: "Back",
  28619. image: {
  28620. source: "./media/characters/cat/back.svg",
  28621. extra: 1466/1301,
  28622. bottom: 19/1485
  28623. }
  28624. },
  28625. taur: {
  28626. height: math.unit(7, "feet"),
  28627. name: "Taur",
  28628. image: {
  28629. source: "./media/characters/cat/taur.svg",
  28630. extra: 1389/1233,
  28631. bottom: 83/1472
  28632. }
  28633. },
  28634. lucarioFront: {
  28635. height: math.unit(4, "feet"),
  28636. name: "Lucario (Front)",
  28637. image: {
  28638. source: "./media/characters/cat/lucario-front.svg",
  28639. extra: 1149/1019,
  28640. bottom: 84/1233
  28641. }
  28642. },
  28643. lucarioBack: {
  28644. height: math.unit(4, "feet"),
  28645. name: "Lucario (Back)",
  28646. image: {
  28647. source: "./media/characters/cat/lucario-back.svg",
  28648. extra: 1190/1059,
  28649. bottom: 33/1223
  28650. }
  28651. },
  28652. megaLucario: {
  28653. height: math.unit(4, "feet"),
  28654. name: "Mega Lucario",
  28655. image: {
  28656. source: "./media/characters/cat/mega-lucario.svg",
  28657. extra: 1515 / 1319,
  28658. bottom: 63 / 1578
  28659. }
  28660. },
  28661. nickit: {
  28662. height: math.unit(2, "feet"),
  28663. name: "Nickit",
  28664. image: {
  28665. source: "./media/characters/cat/nickit.svg",
  28666. extra: 1980 / 1585,
  28667. bottom: 102 / 2082
  28668. }
  28669. },
  28670. lopunnyFront: {
  28671. height: math.unit(5, "feet"),
  28672. name: "Lopunny (Front)",
  28673. image: {
  28674. source: "./media/characters/cat/lopunny-front.svg",
  28675. extra: 1782 / 1469,
  28676. bottom: 38 / 1820
  28677. }
  28678. },
  28679. lopunnyBack: {
  28680. height: math.unit(5, "feet"),
  28681. name: "Lopunny (Back)",
  28682. image: {
  28683. source: "./media/characters/cat/lopunny-back.svg",
  28684. extra: 1660 / 1490,
  28685. bottom: 25 / 1685
  28686. }
  28687. },
  28688. },
  28689. [
  28690. {
  28691. name: "Really small",
  28692. height: math.unit(1, "nm")
  28693. },
  28694. {
  28695. name: "Micro",
  28696. height: math.unit(5, "inches")
  28697. },
  28698. {
  28699. name: "Normal",
  28700. height: math.unit(5 + 6 / 12, "feet"),
  28701. default: true
  28702. },
  28703. {
  28704. name: "Macro",
  28705. height: math.unit(50, "feet")
  28706. },
  28707. {
  28708. name: "Macro+",
  28709. height: math.unit(150, "feet")
  28710. },
  28711. {
  28712. name: "Megamacro",
  28713. height: math.unit(100, "miles")
  28714. },
  28715. ]
  28716. ))
  28717. characterMakers.push(() => makeCharacter(
  28718. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28719. {
  28720. front: {
  28721. height: math.unit(63.4, "meters"),
  28722. weight: math.unit(3.28349e+6, "kilograms"),
  28723. name: "Front",
  28724. image: {
  28725. source: "./media/characters/kirina-violet/front.svg",
  28726. extra: 2812 / 2725,
  28727. bottom: 0 / 2812
  28728. }
  28729. },
  28730. back: {
  28731. height: math.unit(63.4, "meters"),
  28732. weight: math.unit(3.28349e+6, "kilograms"),
  28733. name: "Back",
  28734. image: {
  28735. source: "./media/characters/kirina-violet/back.svg",
  28736. extra: 2812 / 2725,
  28737. bottom: 0 / 2812
  28738. }
  28739. },
  28740. mouth: {
  28741. height: math.unit(4.35, "meters"),
  28742. name: "Mouth",
  28743. image: {
  28744. source: "./media/characters/kirina-violet/mouth.svg"
  28745. }
  28746. },
  28747. paw: {
  28748. height: math.unit(5.6, "meters"),
  28749. name: "Paw",
  28750. image: {
  28751. source: "./media/characters/kirina-violet/paw.svg"
  28752. }
  28753. },
  28754. tail: {
  28755. height: math.unit(18, "meters"),
  28756. name: "Tail",
  28757. image: {
  28758. source: "./media/characters/kirina-violet/tail.svg"
  28759. }
  28760. },
  28761. },
  28762. [
  28763. {
  28764. name: "Macro",
  28765. height: math.unit(63.4, "meters"),
  28766. default: true
  28767. },
  28768. ]
  28769. ))
  28770. characterMakers.push(() => makeCharacter(
  28771. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28772. {
  28773. front: {
  28774. height: math.unit(75, "feet"),
  28775. name: "Front",
  28776. image: {
  28777. source: "./media/characters/cat-gigachu/front.svg",
  28778. extra: 1239/1027,
  28779. bottom: 32/1271
  28780. }
  28781. },
  28782. back: {
  28783. height: math.unit(75, "feet"),
  28784. name: "Back",
  28785. image: {
  28786. source: "./media/characters/cat-gigachu/back.svg",
  28787. extra: 1229/1030,
  28788. bottom: 9/1238
  28789. }
  28790. },
  28791. },
  28792. [
  28793. {
  28794. name: "Dynamax",
  28795. height: math.unit(75, "feet"),
  28796. default: true
  28797. },
  28798. ]
  28799. ))
  28800. characterMakers.push(() => makeCharacter(
  28801. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28802. {
  28803. front: {
  28804. height: math.unit(6, "feet"),
  28805. weight: math.unit(150, "lb"),
  28806. name: "Front",
  28807. image: {
  28808. source: "./media/characters/sfaiyan/front.svg",
  28809. extra: 999 / 978,
  28810. bottom: 5 / 1004
  28811. }
  28812. },
  28813. },
  28814. [
  28815. {
  28816. name: "Normal",
  28817. height: math.unit(1.82, "meters")
  28818. },
  28819. {
  28820. name: "Giant",
  28821. height: math.unit(2.27, "km"),
  28822. default: true
  28823. },
  28824. ]
  28825. ))
  28826. characterMakers.push(() => makeCharacter(
  28827. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28828. {
  28829. front: {
  28830. height: math.unit(179, "cm"),
  28831. weight: math.unit(100, "kg"),
  28832. name: "Front",
  28833. image: {
  28834. source: "./media/characters/raunehkeli/front.svg",
  28835. extra: 1934 / 1926,
  28836. bottom: 0 / 1934
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Normal",
  28843. height: math.unit(179, "cm")
  28844. },
  28845. {
  28846. name: "Maximum",
  28847. height: math.unit(575, "meters"),
  28848. default: true
  28849. },
  28850. ]
  28851. ))
  28852. characterMakers.push(() => makeCharacter(
  28853. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28854. {
  28855. front: {
  28856. height: math.unit(6, "feet"),
  28857. weight: math.unit(150, "lb"),
  28858. name: "Front",
  28859. image: {
  28860. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28861. extra: 2625 / 2518,
  28862. bottom: 60 / 2685
  28863. }
  28864. },
  28865. },
  28866. [
  28867. {
  28868. name: "Normal",
  28869. height: math.unit(6 + 2 / 12, "feet")
  28870. },
  28871. {
  28872. name: "Macro",
  28873. height: math.unit(1180, "feet"),
  28874. default: true
  28875. },
  28876. ]
  28877. ))
  28878. characterMakers.push(() => makeCharacter(
  28879. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28880. {
  28881. front: {
  28882. height: math.unit(5 + 6 / 12, "feet"),
  28883. weight: math.unit(108, "lb"),
  28884. name: "Front",
  28885. image: {
  28886. source: "./media/characters/lilith-zott/front.svg",
  28887. extra: 2510 / 2238,
  28888. bottom: 100 / 2610
  28889. }
  28890. },
  28891. frontDressed: {
  28892. height: math.unit(5 + 6 / 12, "feet"),
  28893. weight: math.unit(108, "lb"),
  28894. name: "Front (Dressed)",
  28895. image: {
  28896. source: "./media/characters/lilith-zott/front-dressed.svg",
  28897. extra: 2510 / 2238,
  28898. bottom: 100 / 2610
  28899. }
  28900. },
  28901. },
  28902. [
  28903. {
  28904. name: "Normal",
  28905. height: math.unit(5 + 6 / 12, "feet")
  28906. },
  28907. {
  28908. name: "Macro",
  28909. height: math.unit(1030, "feet"),
  28910. default: true
  28911. },
  28912. ]
  28913. ))
  28914. characterMakers.push(() => makeCharacter(
  28915. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28916. {
  28917. front: {
  28918. height: math.unit(6, "feet"),
  28919. weight: math.unit(150, "lb"),
  28920. name: "Front",
  28921. image: {
  28922. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28923. extra: 2567 / 2435,
  28924. bottom: 39 / 2606
  28925. }
  28926. },
  28927. frontSuper: {
  28928. height: math.unit(6, "feet"),
  28929. name: "Front (Super)",
  28930. image: {
  28931. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28932. extra: 2567 / 2435,
  28933. bottom: 39 / 2606
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(5 + 10 / 12, "feet")
  28941. },
  28942. {
  28943. name: "Macro",
  28944. height: math.unit(1100, "feet"),
  28945. default: true
  28946. },
  28947. ]
  28948. ))
  28949. characterMakers.push(() => makeCharacter(
  28950. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28951. {
  28952. front: {
  28953. height: math.unit(100, "miles"),
  28954. name: "Front",
  28955. image: {
  28956. source: "./media/characters/sona/front.svg",
  28957. extra: 2433 / 2201,
  28958. bottom: 53 / 2486
  28959. }
  28960. },
  28961. foot: {
  28962. height: math.unit(16.1, "miles"),
  28963. name: "Foot",
  28964. image: {
  28965. source: "./media/characters/sona/foot.svg"
  28966. }
  28967. },
  28968. },
  28969. [
  28970. {
  28971. name: "Macro",
  28972. height: math.unit(100, "miles"),
  28973. default: true
  28974. },
  28975. ]
  28976. ))
  28977. characterMakers.push(() => makeCharacter(
  28978. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28979. {
  28980. front: {
  28981. height: math.unit(6, "feet"),
  28982. weight: math.unit(150, "lb"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/bailey/front.svg",
  28986. extra: 1778 / 1724,
  28987. bottom: 30 / 1808
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Micro",
  28994. height: math.unit(4, "inches")
  28995. },
  28996. {
  28997. name: "Normal",
  28998. height: math.unit(5 + 5 / 12, "feet"),
  28999. default: true
  29000. },
  29001. {
  29002. name: "Macro",
  29003. height: math.unit(250, "feet")
  29004. },
  29005. {
  29006. name: "Megamacro",
  29007. height: math.unit(100, "miles")
  29008. },
  29009. ]
  29010. ))
  29011. characterMakers.push(() => makeCharacter(
  29012. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29013. {
  29014. front: {
  29015. height: math.unit(5 + 2 / 12, "feet"),
  29016. weight: math.unit(120, "lb"),
  29017. name: "Front",
  29018. image: {
  29019. source: "./media/characters/snaps/front.svg",
  29020. extra: 2370 / 2177,
  29021. bottom: 48 / 2418
  29022. }
  29023. },
  29024. back: {
  29025. height: math.unit(5 + 2 / 12, "feet"),
  29026. weight: math.unit(120, "lb"),
  29027. name: "Back",
  29028. image: {
  29029. source: "./media/characters/snaps/back.svg",
  29030. extra: 2408 / 2258,
  29031. bottom: 15 / 2423
  29032. }
  29033. },
  29034. },
  29035. [
  29036. {
  29037. name: "Micro",
  29038. height: math.unit(9, "inches")
  29039. },
  29040. {
  29041. name: "Normal",
  29042. height: math.unit(5 + 2 / 12, "feet"),
  29043. default: true
  29044. },
  29045. {
  29046. name: "Mini Macro",
  29047. height: math.unit(10, "feet")
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(1.8, "meters"),
  29056. weight: math.unit(85, "kg"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/azteck/front.svg",
  29060. extra: 2815 / 2625,
  29061. bottom: 89 / 2904
  29062. }
  29063. },
  29064. back: {
  29065. height: math.unit(1.8, "meters"),
  29066. weight: math.unit(85, "kg"),
  29067. name: "Back",
  29068. image: {
  29069. source: "./media/characters/azteck/back.svg",
  29070. extra: 2856 / 2648,
  29071. bottom: 85 / 2941
  29072. }
  29073. },
  29074. frontDressed: {
  29075. height: math.unit(1.8, "meters"),
  29076. weight: math.unit(85, "kg"),
  29077. name: "Front (Dressed)",
  29078. image: {
  29079. source: "./media/characters/azteck/front-dressed.svg",
  29080. extra: 2147 / 2003,
  29081. bottom: 68 / 2215
  29082. }
  29083. },
  29084. head: {
  29085. height: math.unit(0.47, "meters"),
  29086. weight: math.unit(85, "kg"),
  29087. name: "Head",
  29088. image: {
  29089. source: "./media/characters/azteck/head.svg"
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Bite sized",
  29096. height: math.unit(16, "cm")
  29097. },
  29098. {
  29099. name: "Normal",
  29100. height: math.unit(1.8, "meters"),
  29101. default: true
  29102. },
  29103. ]
  29104. ))
  29105. characterMakers.push(() => makeCharacter(
  29106. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29107. {
  29108. front: {
  29109. height: math.unit(6, "feet"),
  29110. weight: math.unit(150, "lb"),
  29111. name: "Front",
  29112. image: {
  29113. source: "./media/characters/pidge/front.svg",
  29114. extra: 620 / 588,
  29115. bottom: 9 / 629
  29116. }
  29117. },
  29118. back: {
  29119. height: math.unit(6, "feet"),
  29120. weight: math.unit(150, "lb"),
  29121. name: "Back",
  29122. image: {
  29123. source: "./media/characters/pidge/back.svg",
  29124. extra: 620 / 588,
  29125. bottom: 9 / 629
  29126. }
  29127. },
  29128. },
  29129. [
  29130. {
  29131. name: "Macro",
  29132. height: math.unit(1, "mile"),
  29133. default: true
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(6, "feet"),
  29142. weight: math.unit(150, "lb"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/en/front.svg",
  29146. extra: 1697 / 1563,
  29147. bottom: 103 / 1800
  29148. }
  29149. },
  29150. back: {
  29151. height: math.unit(6, "feet"),
  29152. weight: math.unit(150, "lb"),
  29153. name: "Back",
  29154. image: {
  29155. source: "./media/characters/en/back.svg",
  29156. extra: 1700 / 1570,
  29157. bottom: 51 / 1751
  29158. }
  29159. },
  29160. frontDressed: {
  29161. height: math.unit(6, "feet"),
  29162. weight: math.unit(150, "lb"),
  29163. name: "Front (Dressed)",
  29164. image: {
  29165. source: "./media/characters/en/front-dressed.svg",
  29166. extra: 1697 / 1563,
  29167. bottom: 103 / 1800
  29168. }
  29169. },
  29170. backDressed: {
  29171. height: math.unit(6, "feet"),
  29172. weight: math.unit(150, "lb"),
  29173. name: "Back (Dressed)",
  29174. image: {
  29175. source: "./media/characters/en/back-dressed.svg",
  29176. extra: 1700 / 1570,
  29177. bottom: 51 / 1751
  29178. }
  29179. },
  29180. },
  29181. [
  29182. {
  29183. name: "Macro",
  29184. height: math.unit(210, "feet"),
  29185. default: true
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29191. {
  29192. front: {
  29193. height: math.unit(6, "feet"),
  29194. weight: math.unit(150, "lb"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/haze-orris/front.svg",
  29198. extra: 3975 / 3525,
  29199. bottom: 137 / 4112
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Micro",
  29206. height: math.unit(150, "mm"),
  29207. default: true
  29208. },
  29209. ]
  29210. ))
  29211. characterMakers.push(() => makeCharacter(
  29212. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29213. {
  29214. front: {
  29215. height: math.unit(6, "feet"),
  29216. weight: math.unit(150, "lb"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/casselene-yaro/front.svg",
  29220. extra: 4721 / 4541,
  29221. bottom: 82 / 4803
  29222. }
  29223. },
  29224. back: {
  29225. height: math.unit(6, "feet"),
  29226. weight: math.unit(150, "lb"),
  29227. name: "Back",
  29228. image: {
  29229. source: "./media/characters/casselene-yaro/back.svg",
  29230. extra: 4569 / 4377,
  29231. bottom: 69 / 4638
  29232. }
  29233. },
  29234. frontDressed: {
  29235. height: math.unit(6, "feet"),
  29236. weight: math.unit(150, "lb"),
  29237. name: "Front-dressed",
  29238. image: {
  29239. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29240. extra: 4721 / 4541,
  29241. bottom: 82 / 4803
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Macro",
  29248. height: math.unit(190, "feet"),
  29249. default: true
  29250. },
  29251. ]
  29252. ))
  29253. characterMakers.push(() => makeCharacter(
  29254. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29255. {
  29256. front: {
  29257. height: math.unit(6, "feet"),
  29258. weight: math.unit(150, "lb"),
  29259. name: "Front",
  29260. image: {
  29261. source: "./media/characters/myra-rue-delore/front.svg",
  29262. extra: 1340 / 1308,
  29263. bottom: 67 / 1407
  29264. }
  29265. },
  29266. back: {
  29267. height: math.unit(6, "feet"),
  29268. weight: math.unit(150, "lb"),
  29269. name: "Back",
  29270. image: {
  29271. source: "./media/characters/myra-rue-delore/back.svg",
  29272. extra: 1341 / 1310,
  29273. bottom: 40 / 1381
  29274. }
  29275. },
  29276. frontDressed: {
  29277. height: math.unit(6, "feet"),
  29278. weight: math.unit(150, "lb"),
  29279. name: "Front (Dressed)",
  29280. image: {
  29281. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29282. extra: 1340 / 1308,
  29283. bottom: 67 / 1407
  29284. }
  29285. },
  29286. },
  29287. [
  29288. {
  29289. name: "Macro",
  29290. height: math.unit(150, "feet"),
  29291. default: true
  29292. },
  29293. ]
  29294. ))
  29295. characterMakers.push(() => makeCharacter(
  29296. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29297. {
  29298. front: {
  29299. height: math.unit(10, "feet"),
  29300. weight: math.unit(15015, "lb"),
  29301. name: "Front",
  29302. image: {
  29303. source: "./media/characters/fem!plat/front.svg",
  29304. extra: 2799 / 2604,
  29305. bottom: 149 / 2948
  29306. }
  29307. },
  29308. },
  29309. [
  29310. {
  29311. name: "Normal",
  29312. height: math.unit(10, "feet"),
  29313. default: true
  29314. },
  29315. {
  29316. name: "Macro",
  29317. height: math.unit(100, "feet")
  29318. },
  29319. {
  29320. name: "Megamacro",
  29321. height: math.unit(1000, "feet")
  29322. },
  29323. ]
  29324. ))
  29325. characterMakers.push(() => makeCharacter(
  29326. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29327. {
  29328. front: {
  29329. height: math.unit(15 + 5 / 12, "feet"),
  29330. weight: math.unit(4600, "lb"),
  29331. name: "Front",
  29332. image: {
  29333. source: "./media/characters/neapolitan-ananassa/front.svg",
  29334. extra: 2903 / 2736,
  29335. bottom: 0 / 2903
  29336. }
  29337. },
  29338. side: {
  29339. height: math.unit(15 + 5 / 12, "feet"),
  29340. weight: math.unit(4600, "lb"),
  29341. name: "Side",
  29342. image: {
  29343. source: "./media/characters/neapolitan-ananassa/side.svg",
  29344. extra: 2925 / 2719,
  29345. bottom: 0 / 2925
  29346. }
  29347. },
  29348. back: {
  29349. height: math.unit(15 + 5 / 12, "feet"),
  29350. weight: math.unit(4600, "lb"),
  29351. name: "Back",
  29352. image: {
  29353. source: "./media/characters/neapolitan-ananassa/back.svg",
  29354. extra: 2903 / 2736,
  29355. bottom: 0 / 2903
  29356. }
  29357. },
  29358. },
  29359. [
  29360. {
  29361. name: "Normal",
  29362. height: math.unit(15 + 5 / 12, "feet"),
  29363. default: true
  29364. },
  29365. {
  29366. name: "Post-Millenium",
  29367. height: math.unit(35 + 5 / 12, "feet")
  29368. },
  29369. {
  29370. name: "Post-Era",
  29371. height: math.unit(450 + 5 / 12, "feet")
  29372. },
  29373. ]
  29374. ))
  29375. characterMakers.push(() => makeCharacter(
  29376. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29377. {
  29378. front: {
  29379. height: math.unit(300, "meters"),
  29380. weight: math.unit(125000, "tonnes"),
  29381. name: "Front",
  29382. image: {
  29383. source: "./media/characters/pazuzu/front.svg",
  29384. extra: 877 / 794,
  29385. bottom: 47 / 924
  29386. }
  29387. },
  29388. },
  29389. [
  29390. {
  29391. name: "Macro",
  29392. height: math.unit(300, "meters"),
  29393. default: true
  29394. },
  29395. ]
  29396. ))
  29397. characterMakers.push(() => makeCharacter(
  29398. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29399. {
  29400. side: {
  29401. height: math.unit(10 + 7 / 12, "feet"),
  29402. weight: math.unit(2.5, "tons"),
  29403. name: "Side",
  29404. image: {
  29405. source: "./media/characters/aasha/side.svg",
  29406. extra: 1345 / 1245,
  29407. bottom: 111 / 1456
  29408. }
  29409. },
  29410. back: {
  29411. height: math.unit(10 + 7 / 12, "feet"),
  29412. weight: math.unit(2.5, "tons"),
  29413. name: "Back",
  29414. image: {
  29415. source: "./media/characters/aasha/back.svg",
  29416. extra: 1133 / 1057,
  29417. bottom: 257 / 1390
  29418. }
  29419. },
  29420. },
  29421. [
  29422. {
  29423. name: "Normal",
  29424. height: math.unit(10 + 7 / 12, "feet"),
  29425. default: true
  29426. },
  29427. ]
  29428. ))
  29429. characterMakers.push(() => makeCharacter(
  29430. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29431. {
  29432. front: {
  29433. height: math.unit(6 + 3 / 12, "feet"),
  29434. name: "Front",
  29435. image: {
  29436. source: "./media/characters/nevan/front.svg",
  29437. extra: 704 / 704,
  29438. bottom: 28 / 732
  29439. }
  29440. },
  29441. back: {
  29442. height: math.unit(6 + 3 / 12, "feet"),
  29443. name: "Back",
  29444. image: {
  29445. source: "./media/characters/nevan/back.svg",
  29446. extra: 714 / 714,
  29447. bottom: 21 / 735
  29448. }
  29449. },
  29450. frontFlaccid: {
  29451. height: math.unit(6 + 3 / 12, "feet"),
  29452. name: "Front (Flaccid)",
  29453. image: {
  29454. source: "./media/characters/nevan/front-flaccid.svg",
  29455. extra: 704 / 704,
  29456. bottom: 28 / 732
  29457. }
  29458. },
  29459. frontErect: {
  29460. height: math.unit(6 + 3 / 12, "feet"),
  29461. name: "Front (Erect)",
  29462. image: {
  29463. source: "./media/characters/nevan/front-erect.svg",
  29464. extra: 704 / 704,
  29465. bottom: 28 / 732
  29466. }
  29467. },
  29468. backFlaccid: {
  29469. height: math.unit(6 + 3 / 12, "feet"),
  29470. name: "Back (Flaccid)",
  29471. image: {
  29472. source: "./media/characters/nevan/back-flaccid.svg",
  29473. extra: 714 / 714,
  29474. bottom: 21 / 735
  29475. }
  29476. },
  29477. },
  29478. [
  29479. {
  29480. name: "Normal",
  29481. height: math.unit(6 + 3 / 12, "feet"),
  29482. default: true
  29483. },
  29484. ]
  29485. ))
  29486. characterMakers.push(() => makeCharacter(
  29487. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29488. {
  29489. front: {
  29490. height: math.unit(4, "feet"),
  29491. name: "Front",
  29492. image: {
  29493. source: "./media/characters/arhan/front.svg",
  29494. extra: 3368 / 3133,
  29495. bottom: 0 / 3368
  29496. }
  29497. },
  29498. side: {
  29499. height: math.unit(4, "feet"),
  29500. name: "Side",
  29501. image: {
  29502. source: "./media/characters/arhan/side.svg",
  29503. extra: 3347 / 3105,
  29504. bottom: 0 / 3347
  29505. }
  29506. },
  29507. tongue: {
  29508. height: math.unit(1.42, "feet"),
  29509. name: "Tongue",
  29510. image: {
  29511. source: "./media/characters/arhan/tongue.svg"
  29512. }
  29513. },
  29514. head: {
  29515. height: math.unit(0.85, "feet"),
  29516. name: "Head",
  29517. image: {
  29518. source: "./media/characters/arhan/head.svg"
  29519. }
  29520. },
  29521. },
  29522. [
  29523. {
  29524. name: "Normal",
  29525. height: math.unit(4, "feet"),
  29526. default: true
  29527. },
  29528. ]
  29529. ))
  29530. characterMakers.push(() => makeCharacter(
  29531. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29532. {
  29533. front: {
  29534. height: math.unit(5 + 7.5 / 12, "feet"),
  29535. weight: math.unit(120, "lb"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/digi-duncan/front.svg",
  29539. extra: 330 / 326,
  29540. bottom: 16 / 346
  29541. }
  29542. },
  29543. side: {
  29544. height: math.unit(5 + 7.5 / 12, "feet"),
  29545. weight: math.unit(120, "lb"),
  29546. name: "Side",
  29547. image: {
  29548. source: "./media/characters/digi-duncan/side.svg",
  29549. extra: 341 / 337,
  29550. bottom: 1 / 342
  29551. }
  29552. },
  29553. back: {
  29554. height: math.unit(5 + 7.5 / 12, "feet"),
  29555. weight: math.unit(120, "lb"),
  29556. name: "Back",
  29557. image: {
  29558. source: "./media/characters/digi-duncan/back.svg",
  29559. extra: 330 / 326,
  29560. bottom: 12 / 342
  29561. }
  29562. },
  29563. },
  29564. [
  29565. {
  29566. name: "Speck",
  29567. height: math.unit(0.25, "mm")
  29568. },
  29569. {
  29570. name: "Micro",
  29571. height: math.unit(5, "mm")
  29572. },
  29573. {
  29574. name: "Tiny",
  29575. height: math.unit(0.5, "inches"),
  29576. default: true
  29577. },
  29578. {
  29579. name: "Human",
  29580. height: math.unit(5 + 7.5 / 12, "feet")
  29581. },
  29582. {
  29583. name: "Minigiant",
  29584. height: math.unit(8 + 5.25, "feet")
  29585. },
  29586. {
  29587. name: "Giant",
  29588. height: math.unit(2000, "feet")
  29589. },
  29590. {
  29591. name: "Mega",
  29592. height: math.unit(371.1, "miles")
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(2, "meters"),
  29601. weight: math.unit(350, "kg"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29605. extra: 898 / 838,
  29606. bottom: 9 / 907
  29607. }
  29608. },
  29609. },
  29610. [
  29611. {
  29612. name: "Micro",
  29613. height: math.unit(8, "meters")
  29614. },
  29615. {
  29616. name: "Normal",
  29617. height: math.unit(50, "meters"),
  29618. default: true
  29619. },
  29620. {
  29621. name: "Macro",
  29622. height: math.unit(500, "meters")
  29623. },
  29624. ]
  29625. ))
  29626. characterMakers.push(() => makeCharacter(
  29627. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29628. {
  29629. front: {
  29630. height: math.unit(6 + 6 / 12, "feet"),
  29631. name: "Front",
  29632. image: {
  29633. source: "./media/characters/khardesh/front.svg",
  29634. extra: 888 / 797,
  29635. bottom: 25 / 913
  29636. }
  29637. },
  29638. },
  29639. [
  29640. {
  29641. name: "Normal",
  29642. height: math.unit(6 + 6 / 12, "feet"),
  29643. default: true
  29644. },
  29645. {
  29646. name: "Normal+",
  29647. height: math.unit(4, "meters")
  29648. },
  29649. {
  29650. name: "Macro",
  29651. height: math.unit(50, "meters")
  29652. },
  29653. {
  29654. name: "Macro+",
  29655. height: math.unit(100, "meters")
  29656. },
  29657. {
  29658. name: "Megamacro",
  29659. height: math.unit(20, "km")
  29660. },
  29661. ]
  29662. ))
  29663. characterMakers.push(() => makeCharacter(
  29664. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29665. {
  29666. front: {
  29667. height: math.unit(6, "feet"),
  29668. weight: math.unit(150, "lb"),
  29669. name: "Front",
  29670. image: {
  29671. source: "./media/characters/kosho/front.svg",
  29672. extra: 1847 / 1847,
  29673. bottom: 86 / 1933
  29674. }
  29675. },
  29676. },
  29677. [
  29678. {
  29679. name: "Second-stage micro",
  29680. height: math.unit(0.5, "inches")
  29681. },
  29682. {
  29683. name: "First-stage micro",
  29684. height: math.unit(6, "inches")
  29685. },
  29686. {
  29687. name: "Normal",
  29688. height: math.unit(6, "feet"),
  29689. default: true
  29690. },
  29691. {
  29692. name: "First-stage macro",
  29693. height: math.unit(72, "feet")
  29694. },
  29695. {
  29696. name: "Second-stage macro",
  29697. height: math.unit(864, "feet")
  29698. },
  29699. ]
  29700. ))
  29701. characterMakers.push(() => makeCharacter(
  29702. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29703. {
  29704. normal: {
  29705. height: math.unit(4 + 6 / 12, "feet"),
  29706. name: "Normal",
  29707. image: {
  29708. source: "./media/characters/hydra/normal.svg",
  29709. extra: 2833 / 2634,
  29710. bottom: 68 / 2901
  29711. }
  29712. },
  29713. smol: {
  29714. height: math.unit(0.705, "inches"),
  29715. name: "Smol",
  29716. image: {
  29717. source: "./media/characters/hydra/smol.svg",
  29718. extra: 2715 / 2540,
  29719. bottom: 0 / 2715
  29720. }
  29721. },
  29722. },
  29723. [
  29724. {
  29725. name: "Normal",
  29726. height: math.unit(4 + 6 / 12, "feet"),
  29727. default: true
  29728. }
  29729. ]
  29730. ))
  29731. characterMakers.push(() => makeCharacter(
  29732. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29733. {
  29734. front: {
  29735. height: math.unit(0.6, "cm"),
  29736. name: "Front",
  29737. image: {
  29738. source: "./media/characters/daz/front.svg",
  29739. extra: 1682 / 1164,
  29740. bottom: 42 / 1724
  29741. }
  29742. },
  29743. },
  29744. [
  29745. {
  29746. name: "Normal",
  29747. height: math.unit(0.6, "cm"),
  29748. default: true
  29749. },
  29750. ]
  29751. ))
  29752. characterMakers.push(() => makeCharacter(
  29753. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29754. {
  29755. front: {
  29756. height: math.unit(6, "feet"),
  29757. weight: math.unit(235, "lb"),
  29758. name: "Front",
  29759. image: {
  29760. source: "./media/characters/theo-pangolin/front.svg",
  29761. extra: 1996 / 1969,
  29762. bottom: 115 / 2111
  29763. }
  29764. },
  29765. back: {
  29766. height: math.unit(6, "feet"),
  29767. weight: math.unit(235, "lb"),
  29768. name: "Back",
  29769. image: {
  29770. source: "./media/characters/theo-pangolin/back.svg",
  29771. extra: 1979 / 1979,
  29772. bottom: 40 / 2019
  29773. }
  29774. },
  29775. feral: {
  29776. height: math.unit(2, "feet"),
  29777. weight: math.unit(30, "lb"),
  29778. name: "Feral",
  29779. image: {
  29780. source: "./media/characters/theo-pangolin/feral.svg",
  29781. extra: 803 / 791,
  29782. bottom: 181 / 984
  29783. }
  29784. },
  29785. footFive: {
  29786. height: math.unit(1.43, "feet"),
  29787. name: "Foot (Five Toes)",
  29788. image: {
  29789. source: "./media/characters/theo-pangolin/foot-five.svg"
  29790. }
  29791. },
  29792. footFour: {
  29793. height: math.unit(1.43, "feet"),
  29794. name: "Foot (Four Toes)",
  29795. image: {
  29796. source: "./media/characters/theo-pangolin/foot-four.svg"
  29797. }
  29798. },
  29799. handFour: {
  29800. height: math.unit(0.81, "feet"),
  29801. name: "Hand (Four Fingers)",
  29802. image: {
  29803. source: "./media/characters/theo-pangolin/hand-four.svg"
  29804. }
  29805. },
  29806. handThree: {
  29807. height: math.unit(0.81, "feet"),
  29808. name: "Hand (Three Fingers)",
  29809. image: {
  29810. source: "./media/characters/theo-pangolin/hand-three.svg"
  29811. }
  29812. },
  29813. headFront: {
  29814. height: math.unit(1.37, "feet"),
  29815. name: "Head (Front)",
  29816. image: {
  29817. source: "./media/characters/theo-pangolin/head-front.svg"
  29818. }
  29819. },
  29820. headSide: {
  29821. height: math.unit(1.43, "feet"),
  29822. name: "Head (Side)",
  29823. image: {
  29824. source: "./media/characters/theo-pangolin/head-side.svg"
  29825. }
  29826. },
  29827. tongue: {
  29828. height: math.unit(2.29, "feet"),
  29829. name: "Tongue",
  29830. image: {
  29831. source: "./media/characters/theo-pangolin/tongue.svg"
  29832. }
  29833. },
  29834. },
  29835. [
  29836. {
  29837. name: "Normal",
  29838. height: math.unit(6, "feet")
  29839. },
  29840. {
  29841. name: "Macro",
  29842. height: math.unit(400, "feet"),
  29843. default: true
  29844. },
  29845. ]
  29846. ))
  29847. characterMakers.push(() => makeCharacter(
  29848. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29849. {
  29850. front: {
  29851. height: math.unit(6, "inches"),
  29852. weight: math.unit(0.036, "kg"),
  29853. name: "Front",
  29854. image: {
  29855. source: "./media/characters/renée/front.svg",
  29856. extra: 900 / 886,
  29857. bottom: 8 / 908
  29858. }
  29859. },
  29860. },
  29861. [
  29862. {
  29863. name: "Nano",
  29864. height: math.unit(1, "nm")
  29865. },
  29866. {
  29867. name: "Micro",
  29868. height: math.unit(1, "mm")
  29869. },
  29870. {
  29871. name: "Normal",
  29872. height: math.unit(6, "inches")
  29873. },
  29874. {
  29875. name: "Macro",
  29876. height: math.unit(2000, "feet"),
  29877. default: true
  29878. },
  29879. {
  29880. name: "Megamacro",
  29881. height: math.unit(2, "km")
  29882. },
  29883. {
  29884. name: "Gigamacro",
  29885. height: math.unit(2000, "km")
  29886. },
  29887. {
  29888. name: "Teramacro",
  29889. height: math.unit(250000, "km")
  29890. },
  29891. ]
  29892. ))
  29893. characterMakers.push(() => makeCharacter(
  29894. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29895. {
  29896. front: {
  29897. height: math.unit(4, "meters"),
  29898. weight: math.unit(150, "kg"),
  29899. name: "Front",
  29900. image: {
  29901. source: "./media/characters/caledvwlch/front.svg",
  29902. extra: 1760 / 1551,
  29903. bottom: 28 / 1788
  29904. }
  29905. },
  29906. side: {
  29907. height: math.unit(4, "meters"),
  29908. weight: math.unit(150, "kg"),
  29909. name: "Side",
  29910. image: {
  29911. source: "./media/characters/caledvwlch/side.svg",
  29912. extra: 1605 / 1536,
  29913. bottom: 31 / 1636
  29914. }
  29915. },
  29916. back: {
  29917. height: math.unit(4, "meters"),
  29918. weight: math.unit(150, "kg"),
  29919. name: "Back",
  29920. image: {
  29921. source: "./media/characters/caledvwlch/back.svg",
  29922. extra: 1635 / 1565,
  29923. bottom: 27 / 1662
  29924. }
  29925. },
  29926. },
  29927. [
  29928. {
  29929. name: "\"Incognito\"",
  29930. height: math.unit(4, "meters")
  29931. },
  29932. {
  29933. name: "Small rampage",
  29934. height: math.unit(600, "meters")
  29935. },
  29936. {
  29937. name: "Mega",
  29938. height: math.unit(30, "km")
  29939. },
  29940. {
  29941. name: "Home-size",
  29942. height: math.unit(50, "km"),
  29943. default: true
  29944. },
  29945. {
  29946. name: "Giga",
  29947. height: math.unit(300, "km")
  29948. },
  29949. {
  29950. name: "Lounging",
  29951. height: math.unit(11000, "km")
  29952. },
  29953. {
  29954. name: "Planet snacking",
  29955. height: math.unit(2000000, "km")
  29956. },
  29957. ]
  29958. ))
  29959. characterMakers.push(() => makeCharacter(
  29960. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29961. {
  29962. front: {
  29963. height: math.unit(6, "feet"),
  29964. weight: math.unit(215, "lb"),
  29965. name: "Front",
  29966. image: {
  29967. source: "./media/characters/sapphire-svell/front.svg",
  29968. extra: 495 / 455,
  29969. bottom: 20 / 515
  29970. }
  29971. },
  29972. back: {
  29973. height: math.unit(6, "feet"),
  29974. weight: math.unit(216, "lb"),
  29975. name: "Back",
  29976. image: {
  29977. source: "./media/characters/sapphire-svell/back.svg",
  29978. extra: 497 / 477,
  29979. bottom: 7 / 504
  29980. }
  29981. },
  29982. maw: {
  29983. height: math.unit(1.57, "feet"),
  29984. name: "Maw",
  29985. image: {
  29986. source: "./media/characters/sapphire-svell/maw.svg"
  29987. }
  29988. },
  29989. foot: {
  29990. height: math.unit(1.07, "feet"),
  29991. name: "Foot",
  29992. image: {
  29993. source: "./media/characters/sapphire-svell/foot.svg"
  29994. }
  29995. },
  29996. toering: {
  29997. height: math.unit(1.7, "inch"),
  29998. name: "Toering",
  29999. image: {
  30000. source: "./media/characters/sapphire-svell/toering.svg"
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Normal",
  30007. height: math.unit(300, "feet"),
  30008. default: true
  30009. },
  30010. {
  30011. name: "Augmented",
  30012. height: math.unit(1250, "feet")
  30013. },
  30014. {
  30015. name: "Unleashed",
  30016. height: math.unit(3000, "feet")
  30017. },
  30018. ]
  30019. ))
  30020. characterMakers.push(() => makeCharacter(
  30021. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30022. {
  30023. side: {
  30024. height: math.unit(2 + 3 / 12, "feet"),
  30025. weight: math.unit(110, "lb"),
  30026. name: "Side",
  30027. image: {
  30028. source: "./media/characters/glitch-flux/side.svg",
  30029. extra: 997 / 805,
  30030. bottom: 20 / 1017
  30031. }
  30032. },
  30033. },
  30034. [
  30035. {
  30036. name: "Normal",
  30037. height: math.unit(2 + 3 / 12, "feet"),
  30038. default: true
  30039. },
  30040. ]
  30041. ))
  30042. characterMakers.push(() => makeCharacter(
  30043. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30044. {
  30045. front: {
  30046. height: math.unit(4, "meters"),
  30047. name: "Front",
  30048. image: {
  30049. source: "./media/characters/mid/front.svg",
  30050. extra: 507 / 476,
  30051. bottom: 17 / 524
  30052. }
  30053. },
  30054. back: {
  30055. height: math.unit(4, "meters"),
  30056. name: "Back",
  30057. image: {
  30058. source: "./media/characters/mid/back.svg",
  30059. extra: 519 / 487,
  30060. bottom: 7 / 526
  30061. }
  30062. },
  30063. stuck: {
  30064. height: math.unit(2.2, "meters"),
  30065. name: "Stuck",
  30066. image: {
  30067. source: "./media/characters/mid/stuck.svg",
  30068. extra: 1951 / 1869,
  30069. bottom: 88 / 2039
  30070. }
  30071. }
  30072. },
  30073. [
  30074. {
  30075. name: "Normal",
  30076. height: math.unit(4, "meters"),
  30077. default: true
  30078. },
  30079. {
  30080. name: "Big",
  30081. height: math.unit(10, "meters")
  30082. },
  30083. {
  30084. name: "Macro",
  30085. height: math.unit(800, "meters")
  30086. },
  30087. {
  30088. name: "Megamacro",
  30089. height: math.unit(100, "km")
  30090. },
  30091. {
  30092. name: "Overgrown",
  30093. height: math.unit(1, "parsec")
  30094. },
  30095. ]
  30096. ))
  30097. characterMakers.push(() => makeCharacter(
  30098. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30099. {
  30100. front: {
  30101. height: math.unit(2.5, "meters"),
  30102. weight: math.unit(225, "kg"),
  30103. name: "Front",
  30104. image: {
  30105. source: "./media/characters/iris/front.svg",
  30106. extra: 3348 / 3251,
  30107. bottom: 205 / 3553
  30108. }
  30109. },
  30110. maw: {
  30111. height: math.unit(0.56, "meter"),
  30112. name: "Maw",
  30113. image: {
  30114. source: "./media/characters/iris/maw.svg"
  30115. }
  30116. },
  30117. },
  30118. [
  30119. {
  30120. name: "Mewter cat",
  30121. height: math.unit(1.2, "meters")
  30122. },
  30123. {
  30124. name: "Minimacro",
  30125. height: math.unit(2.5, "meters"),
  30126. default: true
  30127. },
  30128. {
  30129. name: "Macro",
  30130. height: math.unit(180, "meters")
  30131. },
  30132. {
  30133. name: "Megamacro",
  30134. height: math.unit(2746, "meters")
  30135. },
  30136. ]
  30137. ))
  30138. characterMakers.push(() => makeCharacter(
  30139. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30140. {
  30141. front: {
  30142. height: math.unit(6, "feet"),
  30143. weight: math.unit(135, "lb"),
  30144. name: "Front",
  30145. image: {
  30146. source: "./media/characters/axel/front.svg",
  30147. extra: 908 / 908,
  30148. bottom: 58 / 966
  30149. }
  30150. },
  30151. side: {
  30152. height: math.unit(6, "feet"),
  30153. weight: math.unit(135, "lb"),
  30154. name: "Side",
  30155. image: {
  30156. source: "./media/characters/axel/side.svg",
  30157. extra: 958 / 958,
  30158. bottom: 11 / 969
  30159. }
  30160. },
  30161. back: {
  30162. height: math.unit(6, "feet"),
  30163. weight: math.unit(135, "lb"),
  30164. name: "Back",
  30165. image: {
  30166. source: "./media/characters/axel/back.svg",
  30167. extra: 887 / 887,
  30168. bottom: 34 / 921
  30169. }
  30170. },
  30171. head: {
  30172. height: math.unit(1.07, "feet"),
  30173. name: "Head",
  30174. image: {
  30175. source: "./media/characters/axel/head.svg"
  30176. }
  30177. },
  30178. beak: {
  30179. height: math.unit(1.4, "feet"),
  30180. name: "Beak",
  30181. image: {
  30182. source: "./media/characters/axel/beak.svg"
  30183. }
  30184. },
  30185. beakSide: {
  30186. height: math.unit(1.4, "feet"),
  30187. name: "Beak Side",
  30188. image: {
  30189. source: "./media/characters/axel/beak-side.svg"
  30190. }
  30191. },
  30192. sheath: {
  30193. height: math.unit(0.5, "feet"),
  30194. name: "Sheath",
  30195. image: {
  30196. source: "./media/characters/axel/sheath.svg"
  30197. }
  30198. },
  30199. dick: {
  30200. height: math.unit(0.98, "feet"),
  30201. name: "Dick",
  30202. image: {
  30203. source: "./media/characters/axel/dick.svg"
  30204. }
  30205. },
  30206. },
  30207. [
  30208. {
  30209. name: "Macro",
  30210. height: math.unit(68, "meters"),
  30211. default: true
  30212. },
  30213. ]
  30214. ))
  30215. characterMakers.push(() => makeCharacter(
  30216. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30217. {
  30218. front: {
  30219. height: math.unit(3.5, "meters"),
  30220. weight: math.unit(1200, "kg"),
  30221. name: "Front",
  30222. image: {
  30223. source: "./media/characters/joanna/front.svg",
  30224. extra: 1596 / 1488,
  30225. bottom: 29 / 1625
  30226. }
  30227. },
  30228. back: {
  30229. height: math.unit(3.5, "meters"),
  30230. weight: math.unit(1200, "kg"),
  30231. name: "Back",
  30232. image: {
  30233. source: "./media/characters/joanna/back.svg",
  30234. extra: 1594 / 1495,
  30235. bottom: 26 / 1620
  30236. }
  30237. },
  30238. frontShorts: {
  30239. height: math.unit(3.5, "meters"),
  30240. weight: math.unit(1200, "kg"),
  30241. name: "Front (Shorts)",
  30242. image: {
  30243. source: "./media/characters/joanna/front-shorts.svg",
  30244. extra: 1596 / 1488,
  30245. bottom: 29 / 1625
  30246. }
  30247. },
  30248. frontBiker: {
  30249. height: math.unit(3.5, "meters"),
  30250. weight: math.unit(1200, "kg"),
  30251. name: "Front (Biker)",
  30252. image: {
  30253. source: "./media/characters/joanna/front-biker.svg",
  30254. extra: 1596 / 1488,
  30255. bottom: 29 / 1625
  30256. }
  30257. },
  30258. backBiker: {
  30259. height: math.unit(3.5, "meters"),
  30260. weight: math.unit(1200, "kg"),
  30261. name: "Back (Biker)",
  30262. image: {
  30263. source: "./media/characters/joanna/back-biker.svg",
  30264. extra: 1594 / 1495,
  30265. bottom: 88 / 1682
  30266. }
  30267. },
  30268. bikeLeft: {
  30269. height: math.unit(2.4, "meters"),
  30270. weight: math.unit(1600, "kg"),
  30271. name: "Bike (Left)",
  30272. image: {
  30273. source: "./media/characters/joanna/bike-left.svg",
  30274. extra: 720 / 720,
  30275. bottom: 8 / 728
  30276. }
  30277. },
  30278. bikeRight: {
  30279. height: math.unit(2.4, "meters"),
  30280. weight: math.unit(1600, "kg"),
  30281. name: "Bike (Right)",
  30282. image: {
  30283. source: "./media/characters/joanna/bike-right.svg",
  30284. extra: 720 / 720,
  30285. bottom: 8 / 728
  30286. }
  30287. },
  30288. },
  30289. [
  30290. {
  30291. name: "Incognito",
  30292. height: math.unit(3.5, "meters")
  30293. },
  30294. {
  30295. name: "Casual Big",
  30296. height: math.unit(200, "meters")
  30297. },
  30298. {
  30299. name: "Macro",
  30300. height: math.unit(600, "meters")
  30301. },
  30302. {
  30303. name: "Original",
  30304. height: math.unit(20, "km"),
  30305. default: true
  30306. },
  30307. {
  30308. name: "Giga",
  30309. height: math.unit(400, "km")
  30310. },
  30311. {
  30312. name: "Lounging",
  30313. height: math.unit(1500, "km")
  30314. },
  30315. {
  30316. name: "Planetary",
  30317. height: math.unit(200000, "km")
  30318. },
  30319. ]
  30320. ))
  30321. characterMakers.push(() => makeCharacter(
  30322. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30323. {
  30324. front: {
  30325. height: math.unit(6, "feet"),
  30326. weight: math.unit(150, "lb"),
  30327. name: "Front",
  30328. image: {
  30329. source: "./media/characters/hugo-sigil/front.svg",
  30330. extra: 522 / 500,
  30331. bottom: 2 / 524
  30332. }
  30333. },
  30334. back: {
  30335. height: math.unit(6, "feet"),
  30336. weight: math.unit(150, "lb"),
  30337. name: "Back",
  30338. image: {
  30339. source: "./media/characters/hugo-sigil/back.svg",
  30340. extra: 519 / 495,
  30341. bottom: 5 / 524
  30342. }
  30343. },
  30344. maw: {
  30345. height: math.unit(1.4, "feet"),
  30346. weight: math.unit(150, "lb"),
  30347. name: "Maw",
  30348. image: {
  30349. source: "./media/characters/hugo-sigil/maw.svg"
  30350. }
  30351. },
  30352. feet: {
  30353. height: math.unit(1.56, "feet"),
  30354. weight: math.unit(150, "lb"),
  30355. name: "Feet",
  30356. image: {
  30357. source: "./media/characters/hugo-sigil/feet.svg",
  30358. extra: 177 / 177,
  30359. bottom: 12 / 189
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Normal",
  30366. height: math.unit(6, "feet")
  30367. },
  30368. {
  30369. name: "Macro",
  30370. height: math.unit(200, "feet"),
  30371. default: true
  30372. },
  30373. ]
  30374. ))
  30375. characterMakers.push(() => makeCharacter(
  30376. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30377. {
  30378. front: {
  30379. height: math.unit(6, "feet"),
  30380. weight: math.unit(150, "lb"),
  30381. name: "Front",
  30382. image: {
  30383. source: "./media/characters/peri/front.svg",
  30384. extra: 2354 / 2233,
  30385. bottom: 49 / 2403
  30386. }
  30387. },
  30388. },
  30389. [
  30390. {
  30391. name: "Really Small",
  30392. height: math.unit(1, "nm")
  30393. },
  30394. {
  30395. name: "Micro",
  30396. height: math.unit(4, "inches")
  30397. },
  30398. {
  30399. name: "Normal",
  30400. height: math.unit(7, "inches"),
  30401. default: true
  30402. },
  30403. {
  30404. name: "Macro",
  30405. height: math.unit(400, "feet")
  30406. },
  30407. {
  30408. name: "Megamacro",
  30409. height: math.unit(100, "miles")
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30415. {
  30416. frontSlim: {
  30417. height: math.unit(7, "feet"),
  30418. name: "Front (Slim)",
  30419. image: {
  30420. source: "./media/characters/issilora/front-slim.svg",
  30421. extra: 529 / 449,
  30422. bottom: 53 / 582
  30423. }
  30424. },
  30425. sideSlim: {
  30426. height: math.unit(7, "feet"),
  30427. name: "Side (Slim)",
  30428. image: {
  30429. source: "./media/characters/issilora/side-slim.svg",
  30430. extra: 570 / 480,
  30431. bottom: 30 / 600
  30432. }
  30433. },
  30434. backSlim: {
  30435. height: math.unit(7, "feet"),
  30436. name: "Back (Slim)",
  30437. image: {
  30438. source: "./media/characters/issilora/back-slim.svg",
  30439. extra: 537 / 455,
  30440. bottom: 46 / 583
  30441. }
  30442. },
  30443. frontBuff: {
  30444. height: math.unit(7, "feet"),
  30445. name: "Front (Buff)",
  30446. image: {
  30447. source: "./media/characters/issilora/front-buff.svg",
  30448. extra: 2310 / 2035,
  30449. bottom: 335 / 2645
  30450. }
  30451. },
  30452. head: {
  30453. height: math.unit(1.94, "feet"),
  30454. name: "Head",
  30455. image: {
  30456. source: "./media/characters/issilora/head.svg"
  30457. }
  30458. },
  30459. },
  30460. [
  30461. {
  30462. name: "Minimum",
  30463. height: math.unit(7, "feet")
  30464. },
  30465. {
  30466. name: "Comfortable",
  30467. height: math.unit(17, "feet")
  30468. },
  30469. {
  30470. name: "Fun Size",
  30471. height: math.unit(47, "feet")
  30472. },
  30473. {
  30474. name: "Natural Macro",
  30475. height: math.unit(137, "feet"),
  30476. default: true
  30477. },
  30478. {
  30479. name: "Maximum Kaiju",
  30480. height: math.unit(397, "feet")
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30486. {
  30487. front: {
  30488. height: math.unit(50 + 9/12, "feet"),
  30489. weight: math.unit(32.8, "tons"),
  30490. name: "Front",
  30491. image: {
  30492. source: "./media/characters/irb'iiritaahn/front.svg",
  30493. extra: 1878/1826,
  30494. bottom: 326/2204
  30495. }
  30496. },
  30497. back: {
  30498. height: math.unit(50 + 9/12, "feet"),
  30499. weight: math.unit(32.8, "tons"),
  30500. name: "Back",
  30501. image: {
  30502. source: "./media/characters/irb'iiritaahn/back.svg",
  30503. extra: 2052/2018,
  30504. bottom: 152/2204
  30505. }
  30506. },
  30507. head: {
  30508. height: math.unit(12.86, "feet"),
  30509. name: "Head",
  30510. image: {
  30511. source: "./media/characters/irb'iiritaahn/head.svg"
  30512. }
  30513. },
  30514. maw: {
  30515. height: math.unit(9.66, "feet"),
  30516. name: "Maw",
  30517. image: {
  30518. source: "./media/characters/irb'iiritaahn/maw.svg"
  30519. }
  30520. },
  30521. frontDick: {
  30522. height: math.unit(8.78461, "feet"),
  30523. name: "Front Dick",
  30524. image: {
  30525. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30526. }
  30527. },
  30528. rearDick: {
  30529. height: math.unit(8.78461, "feet"),
  30530. name: "Rear Dick",
  30531. image: {
  30532. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30533. }
  30534. },
  30535. rearDickUnfolded: {
  30536. height: math.unit(8.78, "feet"),
  30537. name: "Rear Dick (Unfolded)",
  30538. image: {
  30539. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30540. }
  30541. },
  30542. wings: {
  30543. height: math.unit(43, "feet"),
  30544. name: "Wings",
  30545. image: {
  30546. source: "./media/characters/irb'iiritaahn/wings.svg"
  30547. }
  30548. },
  30549. },
  30550. [
  30551. {
  30552. name: "Macro",
  30553. height: math.unit(50 + 9/12, "feet"),
  30554. default: true
  30555. },
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30560. {
  30561. front: {
  30562. height: math.unit(205, "cm"),
  30563. weight: math.unit(102, "kg"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/irbisgreif/front.svg",
  30567. extra: 785/706,
  30568. bottom: 13/798
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(205, "cm"),
  30573. weight: math.unit(102, "kg"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/irbisgreif/back.svg",
  30577. extra: 713/701,
  30578. bottom: 26/739
  30579. }
  30580. },
  30581. frontDressed: {
  30582. height: math.unit(216, "cm"),
  30583. weight: math.unit(102, "kg"),
  30584. name: "Front-dressed",
  30585. image: {
  30586. source: "./media/characters/irbisgreif/front-dressed.svg",
  30587. extra: 902/776,
  30588. bottom: 14/916
  30589. }
  30590. },
  30591. sideDressed: {
  30592. height: math.unit(195, "cm"),
  30593. weight: math.unit(102, "kg"),
  30594. name: "Side-dressed",
  30595. image: {
  30596. source: "./media/characters/irbisgreif/side-dressed.svg",
  30597. extra: 788/688,
  30598. bottom: 21/809
  30599. }
  30600. },
  30601. backDressed: {
  30602. height: math.unit(216, "cm"),
  30603. weight: math.unit(102, "kg"),
  30604. name: "Back-dressed",
  30605. image: {
  30606. source: "./media/characters/irbisgreif/back-dressed.svg",
  30607. extra: 901/783,
  30608. bottom: 10/911
  30609. }
  30610. },
  30611. dick: {
  30612. height: math.unit(0.49, "feet"),
  30613. name: "Dick",
  30614. image: {
  30615. source: "./media/characters/irbisgreif/dick.svg"
  30616. }
  30617. },
  30618. wingTop: {
  30619. height: math.unit(1.93 , "feet"),
  30620. name: "Wing-top",
  30621. image: {
  30622. source: "./media/characters/irbisgreif/wing-top.svg"
  30623. }
  30624. },
  30625. wingBottom: {
  30626. height: math.unit(1.93 , "feet"),
  30627. name: "Wing-bottom",
  30628. image: {
  30629. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30630. }
  30631. },
  30632. },
  30633. [
  30634. {
  30635. name: "Normal",
  30636. height: math.unit(216, "cm"),
  30637. default: true
  30638. },
  30639. ]
  30640. ))
  30641. characterMakers.push(() => makeCharacter(
  30642. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30643. {
  30644. front: {
  30645. height: math.unit(6, "feet"),
  30646. weight: math.unit(150, "lb"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/pride/front.svg",
  30650. extra: 1299/1230,
  30651. bottom: 18/1317
  30652. }
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Normal",
  30658. height: math.unit(7, "feet")
  30659. },
  30660. {
  30661. name: "Mini-macro",
  30662. height: math.unit(11, "feet")
  30663. },
  30664. {
  30665. name: "Macro",
  30666. height: math.unit(15, "meters"),
  30667. default: true
  30668. },
  30669. {
  30670. name: "Macro+",
  30671. height: math.unit(40, "meters")
  30672. },
  30673. ]
  30674. ))
  30675. characterMakers.push(() => makeCharacter(
  30676. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30677. {
  30678. front: {
  30679. height: math.unit(4 + 2 / 12, "feet"),
  30680. weight: math.unit(95, "lb"),
  30681. name: "Front",
  30682. image: {
  30683. source: "./media/characters/vaelophis-nyx/front.svg",
  30684. extra: 2532/2330,
  30685. bottom: 0/2532
  30686. }
  30687. },
  30688. back: {
  30689. height: math.unit(4 + 2 / 12, "feet"),
  30690. weight: math.unit(95, "lb"),
  30691. name: "Back",
  30692. image: {
  30693. source: "./media/characters/vaelophis-nyx/back.svg",
  30694. extra: 2484/2361,
  30695. bottom: 0/2484
  30696. }
  30697. },
  30698. feralSide: {
  30699. height: math.unit(2 + 1/12, "feet"),
  30700. weight: math.unit(20, "lb"),
  30701. name: "Feral (Side)",
  30702. image: {
  30703. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30704. extra: 1721/1581,
  30705. bottom: 70/1791
  30706. }
  30707. },
  30708. feralLazing: {
  30709. height: math.unit(1.08, "feet"),
  30710. weight: math.unit(20, "lb"),
  30711. name: "Feral (Lazing)",
  30712. image: {
  30713. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30714. extra: 822/822,
  30715. bottom: 248/1070
  30716. }
  30717. },
  30718. ear: {
  30719. height: math.unit(0.416, "feet"),
  30720. name: "Ear",
  30721. image: {
  30722. source: "./media/characters/vaelophis-nyx/ear.svg"
  30723. }
  30724. },
  30725. eye: {
  30726. height: math.unit(0.0748, "feet"),
  30727. name: "Eye",
  30728. image: {
  30729. source: "./media/characters/vaelophis-nyx/eye.svg"
  30730. }
  30731. },
  30732. mouth: {
  30733. height: math.unit(0.378, "feet"),
  30734. name: "Mouth",
  30735. image: {
  30736. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30737. }
  30738. },
  30739. spade: {
  30740. height: math.unit(0.55, "feet"),
  30741. name: "Spade",
  30742. image: {
  30743. source: "./media/characters/vaelophis-nyx/spade.svg"
  30744. }
  30745. },
  30746. },
  30747. [
  30748. {
  30749. name: "Normal",
  30750. height: math.unit(4 + 2/12, "feet"),
  30751. default: true
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30757. {
  30758. front: {
  30759. height: math.unit(7, "feet"),
  30760. weight: math.unit(231, "lb"),
  30761. name: "Front",
  30762. image: {
  30763. source: "./media/characters/flux/front.svg",
  30764. extra: 919/871,
  30765. bottom: 0/919
  30766. }
  30767. },
  30768. back: {
  30769. height: math.unit(7, "feet"),
  30770. weight: math.unit(231, "lb"),
  30771. name: "Back",
  30772. image: {
  30773. source: "./media/characters/flux/back.svg",
  30774. extra: 1040/992,
  30775. bottom: 0/1040
  30776. }
  30777. },
  30778. frontDressed: {
  30779. height: math.unit(7, "feet"),
  30780. weight: math.unit(231, "lb"),
  30781. name: "Front (Dressed)",
  30782. image: {
  30783. source: "./media/characters/flux/front-dressed.svg",
  30784. extra: 919/871,
  30785. bottom: 0/919
  30786. }
  30787. },
  30788. feralSide: {
  30789. height: math.unit(5, "feet"),
  30790. weight: math.unit(150, "lb"),
  30791. name: "Feral (Side)",
  30792. image: {
  30793. source: "./media/characters/flux/feral-side.svg",
  30794. extra: 598/528,
  30795. bottom: 28/626
  30796. }
  30797. },
  30798. head: {
  30799. height: math.unit(1.585, "feet"),
  30800. name: "Head",
  30801. image: {
  30802. source: "./media/characters/flux/head.svg"
  30803. }
  30804. },
  30805. headSide: {
  30806. height: math.unit(1.74, "feet"),
  30807. name: "Head (Side)",
  30808. image: {
  30809. source: "./media/characters/flux/head-side.svg"
  30810. }
  30811. },
  30812. headSideFire: {
  30813. height: math.unit(1.76, "feet"),
  30814. name: "Head (Side, Fire)",
  30815. image: {
  30816. source: "./media/characters/flux/head-side-fire.svg"
  30817. }
  30818. },
  30819. },
  30820. [
  30821. {
  30822. name: "Normal",
  30823. height: math.unit(7, "feet"),
  30824. default: true
  30825. },
  30826. ]
  30827. ))
  30828. characterMakers.push(() => makeCharacter(
  30829. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30830. {
  30831. front: {
  30832. height: math.unit(9, "feet"),
  30833. weight: math.unit(1012, "lb"),
  30834. name: "Front",
  30835. image: {
  30836. source: "./media/characters/ulfra-lupae/front.svg",
  30837. extra: 1083/1011,
  30838. bottom: 67/1150
  30839. }
  30840. },
  30841. },
  30842. [
  30843. {
  30844. name: "Micro",
  30845. height: math.unit(6, "inches")
  30846. },
  30847. {
  30848. name: "Socializing",
  30849. height: math.unit(6 + 5/12, "feet")
  30850. },
  30851. {
  30852. name: "Normal",
  30853. height: math.unit(9, "feet"),
  30854. default: true
  30855. },
  30856. {
  30857. name: "Macro",
  30858. height: math.unit(150, "feet")
  30859. },
  30860. ]
  30861. ))
  30862. characterMakers.push(() => makeCharacter(
  30863. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30864. {
  30865. front: {
  30866. height: math.unit(5 + 2/12, "feet"),
  30867. weight: math.unit(120, "lb"),
  30868. name: "Front",
  30869. image: {
  30870. source: "./media/characters/timber/front.svg",
  30871. extra: 2814/2705,
  30872. bottom: 181/2995
  30873. }
  30874. },
  30875. },
  30876. [
  30877. {
  30878. name: "Normal",
  30879. height: math.unit(5 + 2/12, "feet"),
  30880. default: true
  30881. },
  30882. ]
  30883. ))
  30884. characterMakers.push(() => makeCharacter(
  30885. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30886. {
  30887. front: {
  30888. height: math.unit(5 + 7/12, "feet"),
  30889. weight: math.unit(220, "lb"),
  30890. name: "Front",
  30891. image: {
  30892. source: "./media/characters/nicki/front.svg",
  30893. extra: 453/419,
  30894. bottom: 7/460
  30895. }
  30896. },
  30897. frontAlt: {
  30898. height: math.unit(5 + 7/12, "feet"),
  30899. weight: math.unit(220, "lb"),
  30900. name: "Front-alt",
  30901. image: {
  30902. source: "./media/characters/nicki/front-alt.svg",
  30903. extra: 435/411,
  30904. bottom: 12/447
  30905. }
  30906. },
  30907. back: {
  30908. height: math.unit(5 + 7/12, "feet"),
  30909. weight: math.unit(220, "lb"),
  30910. name: "Back",
  30911. image: {
  30912. source: "./media/characters/nicki/back.svg",
  30913. extra: 440/413,
  30914. bottom: 19/459
  30915. }
  30916. },
  30917. taur: {
  30918. height: math.unit(7 + 6/12, "feet"),
  30919. weight: math.unit(700, "lb"),
  30920. name: "Taur",
  30921. image: {
  30922. source: "./media/characters/nicki/taur.svg",
  30923. extra: 975/773,
  30924. bottom: 0/975
  30925. }
  30926. },
  30927. frontNsfw: {
  30928. height: math.unit(5 + 7/12, "feet"),
  30929. weight: math.unit(220, "lb"),
  30930. name: "Front (NSFW)",
  30931. image: {
  30932. source: "./media/characters/nicki/front-nsfw.svg",
  30933. extra: 453/419,
  30934. bottom: 7/460
  30935. }
  30936. },
  30937. frontNsfwAlt: {
  30938. height: math.unit(5 + 7/12, "feet"),
  30939. weight: math.unit(220, "lb"),
  30940. name: "Front (Alt, NSFW)",
  30941. image: {
  30942. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30943. extra: 435/411,
  30944. bottom: 12/447
  30945. }
  30946. },
  30947. backNsfw: {
  30948. height: math.unit(5 + 7/12, "feet"),
  30949. weight: math.unit(220, "lb"),
  30950. name: "Back (NSFW)",
  30951. image: {
  30952. source: "./media/characters/nicki/back-nsfw.svg",
  30953. extra: 440/413,
  30954. bottom: 19/459
  30955. }
  30956. },
  30957. head: {
  30958. height: math.unit(2.1, "feet"),
  30959. name: "Head",
  30960. image: {
  30961. source: "./media/characters/nicki/head.svg"
  30962. }
  30963. },
  30964. paw: {
  30965. height: math.unit(1.88, "feet"),
  30966. name: "Paw",
  30967. image: {
  30968. source: "./media/characters/nicki/paw.svg"
  30969. }
  30970. },
  30971. },
  30972. [
  30973. {
  30974. name: "Normal",
  30975. height: math.unit(5 + 7/12, "feet"),
  30976. default: true
  30977. },
  30978. ]
  30979. ))
  30980. characterMakers.push(() => makeCharacter(
  30981. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30982. {
  30983. front: {
  30984. height: math.unit(7 + 10/12, "feet"),
  30985. weight: math.unit(3.5, "tons"),
  30986. name: "Front",
  30987. image: {
  30988. source: "./media/characters/lee/front.svg",
  30989. extra: 1773/1615,
  30990. bottom: 86/1859
  30991. }
  30992. },
  30993. hand: {
  30994. height: math.unit(1.78, "feet"),
  30995. name: "Hand",
  30996. image: {
  30997. source: "./media/characters/lee/hand.svg"
  30998. }
  30999. },
  31000. maw: {
  31001. height: math.unit(1.18, "feet"),
  31002. name: "Maw",
  31003. image: {
  31004. source: "./media/characters/lee/maw.svg"
  31005. }
  31006. },
  31007. },
  31008. [
  31009. {
  31010. name: "Normal",
  31011. height: math.unit(7 + 10/12, "feet"),
  31012. default: true
  31013. },
  31014. ]
  31015. ))
  31016. characterMakers.push(() => makeCharacter(
  31017. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31018. {
  31019. front: {
  31020. height: math.unit(9, "feet"),
  31021. name: "Front",
  31022. image: {
  31023. source: "./media/characters/guti/front.svg",
  31024. extra: 4551/4355,
  31025. bottom: 123/4674
  31026. }
  31027. },
  31028. tongue: {
  31029. height: math.unit(1, "feet"),
  31030. name: "Tongue",
  31031. image: {
  31032. source: "./media/characters/guti/tongue.svg"
  31033. }
  31034. },
  31035. paw: {
  31036. height: math.unit(1.18, "feet"),
  31037. name: "Paw",
  31038. image: {
  31039. source: "./media/characters/guti/paw.svg"
  31040. }
  31041. },
  31042. },
  31043. [
  31044. {
  31045. name: "Normal",
  31046. height: math.unit(9, "feet"),
  31047. default: true
  31048. },
  31049. ]
  31050. ))
  31051. characterMakers.push(() => makeCharacter(
  31052. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31053. {
  31054. side: {
  31055. height: math.unit(5, "meters"),
  31056. name: "Side",
  31057. image: {
  31058. source: "./media/characters/vesper/side.svg",
  31059. extra: 1605/1518,
  31060. bottom: 0/1605
  31061. }
  31062. },
  31063. },
  31064. [
  31065. {
  31066. name: "Small",
  31067. height: math.unit(5, "meters")
  31068. },
  31069. {
  31070. name: "Sage",
  31071. height: math.unit(100, "meters"),
  31072. default: true
  31073. },
  31074. {
  31075. name: "Fun Size",
  31076. height: math.unit(600, "meters")
  31077. },
  31078. {
  31079. name: "Goddess",
  31080. height: math.unit(20000, "km")
  31081. },
  31082. {
  31083. name: "Maximum",
  31084. height: math.unit(5, "galaxies")
  31085. },
  31086. ]
  31087. ))
  31088. characterMakers.push(() => makeCharacter(
  31089. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31090. {
  31091. front: {
  31092. height: math.unit(6 + 3/12, "feet"),
  31093. weight: math.unit(190, "lb"),
  31094. name: "Front",
  31095. image: {
  31096. source: "./media/characters/gawain/front.svg",
  31097. extra: 2222/2139,
  31098. bottom: 90/2312
  31099. }
  31100. },
  31101. back: {
  31102. height: math.unit(6 + 3/12, "feet"),
  31103. weight: math.unit(190, "lb"),
  31104. name: "Back",
  31105. image: {
  31106. source: "./media/characters/gawain/back.svg",
  31107. extra: 2199/2111,
  31108. bottom: 73/2272
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(6 + 3/12, "feet"),
  31116. default: true
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31122. {
  31123. side: {
  31124. height: math.unit(3.5, "meters"),
  31125. weight: math.unit(16000, "lb"),
  31126. name: "Side",
  31127. image: {
  31128. source: "./media/characters/dascalti/side.svg",
  31129. extra: 392/273,
  31130. bottom: 47/439
  31131. }
  31132. },
  31133. breath: {
  31134. height: math.unit(7.4, "feet"),
  31135. name: "Breath",
  31136. image: {
  31137. source: "./media/characters/dascalti/breath.svg"
  31138. }
  31139. },
  31140. fed: {
  31141. height: math.unit(3.6, "meters"),
  31142. weight: math.unit(16000, "lb"),
  31143. name: "Fed",
  31144. image: {
  31145. source: "./media/characters/dascalti/fed.svg",
  31146. extra: 1419/820,
  31147. bottom: 95/1514
  31148. }
  31149. },
  31150. },
  31151. [
  31152. {
  31153. name: "Normal",
  31154. height: math.unit(3.5, "meters"),
  31155. default: true
  31156. },
  31157. ]
  31158. ))
  31159. characterMakers.push(() => makeCharacter(
  31160. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31161. {
  31162. front: {
  31163. height: math.unit(3 + 5/12, "feet"),
  31164. name: "Front",
  31165. image: {
  31166. source: "./media/characters/mauve/front.svg",
  31167. extra: 1126/1033,
  31168. bottom: 65/1191
  31169. }
  31170. },
  31171. side: {
  31172. height: math.unit(3 + 5/12, "feet"),
  31173. name: "Side",
  31174. image: {
  31175. source: "./media/characters/mauve/side.svg",
  31176. extra: 1089/1001,
  31177. bottom: 29/1118
  31178. }
  31179. },
  31180. back: {
  31181. height: math.unit(3 + 5/12, "feet"),
  31182. name: "Back",
  31183. image: {
  31184. source: "./media/characters/mauve/back.svg",
  31185. extra: 1173/1053,
  31186. bottom: 109/1282
  31187. }
  31188. },
  31189. },
  31190. [
  31191. {
  31192. name: "Normal",
  31193. height: math.unit(3 + 5/12, "feet"),
  31194. default: true
  31195. },
  31196. ]
  31197. ))
  31198. characterMakers.push(() => makeCharacter(
  31199. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31200. {
  31201. front: {
  31202. height: math.unit(6 + 3/12, "feet"),
  31203. weight: math.unit(430, "lb"),
  31204. name: "Front",
  31205. image: {
  31206. source: "./media/characters/carlos/front.svg",
  31207. extra: 1964/1913,
  31208. bottom: 70/2034
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Normal",
  31215. height: math.unit(6 + 3/12, "feet"),
  31216. default: true
  31217. },
  31218. ]
  31219. ))
  31220. characterMakers.push(() => makeCharacter(
  31221. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31222. {
  31223. back: {
  31224. height: math.unit(5 + 10/12, "feet"),
  31225. weight: math.unit(200, "lb"),
  31226. name: "Back",
  31227. image: {
  31228. source: "./media/characters/jax/back.svg",
  31229. extra: 764/739,
  31230. bottom: 25/789
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(5 + 10/12, "feet"),
  31238. default: true
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31244. {
  31245. front: {
  31246. height: math.unit(8, "feet"),
  31247. weight: math.unit(250, "lb"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/eikthynir/front.svg",
  31251. extra: 1332/1166,
  31252. bottom: 82/1414
  31253. }
  31254. },
  31255. back: {
  31256. height: math.unit(8, "feet"),
  31257. weight: math.unit(250, "lb"),
  31258. name: "Back",
  31259. image: {
  31260. source: "./media/characters/eikthynir/back.svg",
  31261. extra: 1342/1190,
  31262. bottom: 19/1361
  31263. }
  31264. },
  31265. dick: {
  31266. height: math.unit(2.35, "feet"),
  31267. name: "Dick",
  31268. image: {
  31269. source: "./media/characters/eikthynir/dick.svg"
  31270. }
  31271. },
  31272. },
  31273. [
  31274. {
  31275. name: "Normal",
  31276. height: math.unit(8, "feet"),
  31277. default: true
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31283. {
  31284. front: {
  31285. height: math.unit(99, "meters"),
  31286. weight: math.unit(13000, "tons"),
  31287. name: "Front",
  31288. image: {
  31289. source: "./media/characters/zlmos/front.svg",
  31290. extra: 2202/1992,
  31291. bottom: 315/2517
  31292. }
  31293. },
  31294. },
  31295. [
  31296. {
  31297. name: "Macro",
  31298. height: math.unit(99, "meters"),
  31299. default: true
  31300. },
  31301. ]
  31302. ))
  31303. characterMakers.push(() => makeCharacter(
  31304. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31305. {
  31306. front: {
  31307. height: math.unit(6 + 5/12, "feet"),
  31308. name: "Front",
  31309. image: {
  31310. source: "./media/characters/purri/front.svg",
  31311. extra: 1698/1610,
  31312. bottom: 32/1730
  31313. }
  31314. },
  31315. frontAlt: {
  31316. height: math.unit(6 + 5/12, "feet"),
  31317. name: "Front (Alt)",
  31318. image: {
  31319. source: "./media/characters/purri/front-alt.svg",
  31320. extra: 450/420,
  31321. bottom: 26/476
  31322. }
  31323. },
  31324. boots: {
  31325. height: math.unit(5.5, "feet"),
  31326. name: "Boots",
  31327. image: {
  31328. source: "./media/characters/purri/boots.svg",
  31329. extra: 905/853,
  31330. bottom: 18/923
  31331. }
  31332. },
  31333. lying: {
  31334. height: math.unit(2, "feet"),
  31335. name: "Lying",
  31336. image: {
  31337. source: "./media/characters/purri/lying.svg",
  31338. extra: 940/843,
  31339. bottom: 146/1086
  31340. }
  31341. },
  31342. devious: {
  31343. height: math.unit(1.77, "feet"),
  31344. name: "Devious",
  31345. image: {
  31346. source: "./media/characters/purri/devious.svg",
  31347. extra: 1440/1155,
  31348. bottom: 147/1587
  31349. }
  31350. },
  31351. bean: {
  31352. height: math.unit(1.94, "feet"),
  31353. name: "Bean",
  31354. image: {
  31355. source: "./media/characters/purri/bean.svg"
  31356. }
  31357. },
  31358. },
  31359. [
  31360. {
  31361. name: "Micro",
  31362. height: math.unit(1, "mm")
  31363. },
  31364. {
  31365. name: "Normal",
  31366. height: math.unit(6 + 5/12, "feet"),
  31367. default: true
  31368. },
  31369. {
  31370. name: "Macro :3c",
  31371. height: math.unit(2, "miles")
  31372. },
  31373. ]
  31374. ))
  31375. characterMakers.push(() => makeCharacter(
  31376. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31377. {
  31378. front: {
  31379. height: math.unit(6 + 2/12, "feet"),
  31380. weight: math.unit(250, "lb"),
  31381. name: "Front",
  31382. image: {
  31383. source: "./media/characters/moonlight/front.svg",
  31384. extra: 1044/908,
  31385. bottom: 56/1100
  31386. }
  31387. },
  31388. feral: {
  31389. height: math.unit(3 + 1/12, "feet"),
  31390. weight: math.unit(50, "kg"),
  31391. name: "Feral",
  31392. image: {
  31393. source: "./media/characters/moonlight/feral.svg",
  31394. extra: 3705/2791,
  31395. bottom: 145/3850
  31396. }
  31397. },
  31398. paw: {
  31399. height: math.unit(1, "feet"),
  31400. name: "Paw",
  31401. image: {
  31402. source: "./media/characters/moonlight/paw.svg"
  31403. }
  31404. },
  31405. paws: {
  31406. height: math.unit(0.98, "feet"),
  31407. name: "Paws",
  31408. image: {
  31409. source: "./media/characters/moonlight/paws.svg",
  31410. extra: 939/939,
  31411. bottom: 50/989
  31412. }
  31413. },
  31414. mouth: {
  31415. height: math.unit(0.48, "feet"),
  31416. name: "Mouth",
  31417. image: {
  31418. source: "./media/characters/moonlight/mouth.svg"
  31419. }
  31420. },
  31421. dick: {
  31422. height: math.unit(1.46, "feet"),
  31423. name: "Dick",
  31424. image: {
  31425. source: "./media/characters/moonlight/dick.svg"
  31426. }
  31427. },
  31428. },
  31429. [
  31430. {
  31431. name: "Normal",
  31432. height: math.unit(6 + 2/12, "feet"),
  31433. default: true
  31434. },
  31435. {
  31436. name: "Macro",
  31437. height: math.unit(300, "feet")
  31438. },
  31439. {
  31440. name: "Macro+",
  31441. height: math.unit(1, "mile")
  31442. },
  31443. {
  31444. name: "Mt. Moon",
  31445. height: math.unit(5, "miles")
  31446. },
  31447. {
  31448. name: "Megamacro",
  31449. height: math.unit(15, "miles")
  31450. },
  31451. ]
  31452. ))
  31453. characterMakers.push(() => makeCharacter(
  31454. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31455. {
  31456. back: {
  31457. height: math.unit(6, "feet"),
  31458. weight: math.unit(150, "lb"),
  31459. name: "Back",
  31460. image: {
  31461. source: "./media/characters/sylen/back.svg",
  31462. extra: 1335/1273,
  31463. bottom: 107/1442
  31464. }
  31465. },
  31466. },
  31467. [
  31468. {
  31469. name: "Normal",
  31470. height: math.unit(5 + 5/12, "feet")
  31471. },
  31472. {
  31473. name: "Megamacro",
  31474. height: math.unit(3, "miles"),
  31475. default: true
  31476. },
  31477. ]
  31478. ))
  31479. characterMakers.push(() => makeCharacter(
  31480. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31481. {
  31482. front: {
  31483. height: math.unit(6, "feet"),
  31484. weight: math.unit(190, "lb"),
  31485. name: "Front",
  31486. image: {
  31487. source: "./media/characters/huttser/front.svg",
  31488. extra: 1152/1058,
  31489. bottom: 23/1175
  31490. }
  31491. },
  31492. side: {
  31493. height: math.unit(6, "feet"),
  31494. weight: math.unit(190, "lb"),
  31495. name: "Side",
  31496. image: {
  31497. source: "./media/characters/huttser/side.svg",
  31498. extra: 1174/1065,
  31499. bottom: 18/1192
  31500. }
  31501. },
  31502. back: {
  31503. height: math.unit(6, "feet"),
  31504. weight: math.unit(190, "lb"),
  31505. name: "Back",
  31506. image: {
  31507. source: "./media/characters/huttser/back.svg",
  31508. extra: 1158/1056,
  31509. bottom: 12/1170
  31510. }
  31511. },
  31512. },
  31513. [
  31514. ]
  31515. ))
  31516. characterMakers.push(() => makeCharacter(
  31517. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31518. {
  31519. side: {
  31520. height: math.unit(12 + 9/12, "feet"),
  31521. weight: math.unit(15000, "lb"),
  31522. name: "Side",
  31523. image: {
  31524. source: "./media/characters/faan/side.svg",
  31525. extra: 2747/2697,
  31526. bottom: 0/2747
  31527. }
  31528. },
  31529. front: {
  31530. height: math.unit(12 + 9/12, "feet"),
  31531. weight: math.unit(15000, "lb"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/faan/front.svg",
  31535. extra: 607/571,
  31536. bottom: 24/631
  31537. }
  31538. },
  31539. head: {
  31540. height: math.unit(2.85, "feet"),
  31541. name: "Head",
  31542. image: {
  31543. source: "./media/characters/faan/head.svg"
  31544. }
  31545. },
  31546. headAlt: {
  31547. height: math.unit(3.13, "feet"),
  31548. name: "Head-alt",
  31549. image: {
  31550. source: "./media/characters/faan/head-alt.svg"
  31551. }
  31552. },
  31553. },
  31554. [
  31555. {
  31556. name: "Normal",
  31557. height: math.unit(12 + 9/12, "feet"),
  31558. default: true
  31559. },
  31560. ]
  31561. ))
  31562. characterMakers.push(() => makeCharacter(
  31563. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31564. {
  31565. front: {
  31566. height: math.unit(6, "feet"),
  31567. weight: math.unit(300, "lb"),
  31568. name: "Front",
  31569. image: {
  31570. source: "./media/characters/tanio/front.svg",
  31571. extra: 711/673,
  31572. bottom: 25/736
  31573. }
  31574. },
  31575. },
  31576. [
  31577. {
  31578. name: "Normal",
  31579. height: math.unit(6, "feet"),
  31580. default: true
  31581. },
  31582. ]
  31583. ))
  31584. characterMakers.push(() => makeCharacter(
  31585. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31586. {
  31587. front: {
  31588. height: math.unit(3, "inches"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/noboru/front.svg",
  31592. extra: 1039/932,
  31593. bottom: 18/1057
  31594. }
  31595. },
  31596. },
  31597. [
  31598. {
  31599. name: "Micro",
  31600. height: math.unit(3, "inches"),
  31601. default: true
  31602. },
  31603. ]
  31604. ))
  31605. characterMakers.push(() => makeCharacter(
  31606. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31607. {
  31608. front: {
  31609. height: math.unit(1.85, "meters"),
  31610. weight: math.unit(80, "kg"),
  31611. name: "Front",
  31612. image: {
  31613. source: "./media/characters/daniel-barrett/front.svg",
  31614. extra: 355/337,
  31615. bottom: 9/364
  31616. }
  31617. },
  31618. },
  31619. [
  31620. {
  31621. name: "Pico",
  31622. height: math.unit(0.0433, "mm")
  31623. },
  31624. {
  31625. name: "Nano",
  31626. height: math.unit(1.5, "mm")
  31627. },
  31628. {
  31629. name: "Micro",
  31630. height: math.unit(5.3, "cm"),
  31631. default: true
  31632. },
  31633. {
  31634. name: "Normal",
  31635. height: math.unit(1.85, "meters")
  31636. },
  31637. {
  31638. name: "Macro",
  31639. height: math.unit(64.7, "meters")
  31640. },
  31641. {
  31642. name: "Megamacro",
  31643. height: math.unit(2.26, "km")
  31644. },
  31645. {
  31646. name: "Gigamacro",
  31647. height: math.unit(79, "km")
  31648. },
  31649. {
  31650. name: "Teramacro",
  31651. height: math.unit(2765, "km")
  31652. },
  31653. {
  31654. name: "Petamacro",
  31655. height: math.unit(96678, "km")
  31656. },
  31657. ]
  31658. ))
  31659. characterMakers.push(() => makeCharacter(
  31660. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31661. {
  31662. front: {
  31663. height: math.unit(30, "meters"),
  31664. weight: math.unit(400, "tons"),
  31665. name: "Front",
  31666. image: {
  31667. source: "./media/characters/zeel/front.svg",
  31668. extra: 2599/2599,
  31669. bottom: 226/2825
  31670. }
  31671. },
  31672. },
  31673. [
  31674. {
  31675. name: "Macro",
  31676. height: math.unit(30, "meters"),
  31677. default: true
  31678. },
  31679. ]
  31680. ))
  31681. characterMakers.push(() => makeCharacter(
  31682. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31683. {
  31684. front: {
  31685. height: math.unit(6 + 7/12, "feet"),
  31686. weight: math.unit(210, "lb"),
  31687. name: "Front",
  31688. image: {
  31689. source: "./media/characters/tarn/front.svg",
  31690. extra: 3517/3220,
  31691. bottom: 91/3608
  31692. }
  31693. },
  31694. back: {
  31695. height: math.unit(6 + 7/12, "feet"),
  31696. weight: math.unit(210, "lb"),
  31697. name: "Back",
  31698. image: {
  31699. source: "./media/characters/tarn/back.svg",
  31700. extra: 3566/3241,
  31701. bottom: 34/3600
  31702. }
  31703. },
  31704. dick: {
  31705. height: math.unit(1.65, "feet"),
  31706. name: "Dick",
  31707. image: {
  31708. source: "./media/characters/tarn/dick.svg"
  31709. }
  31710. },
  31711. paw: {
  31712. height: math.unit(1.80, "feet"),
  31713. name: "Paw",
  31714. image: {
  31715. source: "./media/characters/tarn/paw.svg"
  31716. }
  31717. },
  31718. tongue: {
  31719. height: math.unit(0.97, "feet"),
  31720. name: "Tongue",
  31721. image: {
  31722. source: "./media/characters/tarn/tongue.svg"
  31723. }
  31724. },
  31725. },
  31726. [
  31727. {
  31728. name: "Micro",
  31729. height: math.unit(4, "inches")
  31730. },
  31731. {
  31732. name: "Normal",
  31733. height: math.unit(6 + 7/12, "feet"),
  31734. default: true
  31735. },
  31736. {
  31737. name: "Macro",
  31738. height: math.unit(300, "feet")
  31739. },
  31740. ]
  31741. ))
  31742. characterMakers.push(() => makeCharacter(
  31743. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31744. {
  31745. front: {
  31746. height: math.unit(5 + 7/12, "feet"),
  31747. weight: math.unit(80, "kg"),
  31748. name: "Front",
  31749. image: {
  31750. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31751. extra: 3023/2865,
  31752. bottom: 33/3056
  31753. }
  31754. },
  31755. back: {
  31756. height: math.unit(5 + 7/12, "feet"),
  31757. weight: math.unit(80, "kg"),
  31758. name: "Back",
  31759. image: {
  31760. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31761. extra: 3020/2886,
  31762. bottom: 30/3050
  31763. }
  31764. },
  31765. dick: {
  31766. height: math.unit(0.98, "feet"),
  31767. name: "Dick",
  31768. image: {
  31769. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31770. }
  31771. },
  31772. anatomy: {
  31773. height: math.unit(2.86, "feet"),
  31774. name: "Anatomy",
  31775. image: {
  31776. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31777. }
  31778. },
  31779. },
  31780. [
  31781. {
  31782. name: "Really Small",
  31783. height: math.unit(2, "inches")
  31784. },
  31785. {
  31786. name: "Micro",
  31787. height: math.unit(5.583, "inches")
  31788. },
  31789. {
  31790. name: "Normal",
  31791. height: math.unit(5 + 7/12, "feet"),
  31792. default: true
  31793. },
  31794. {
  31795. name: "Macro",
  31796. height: math.unit(67, "feet")
  31797. },
  31798. {
  31799. name: "Megamacro",
  31800. height: math.unit(134, "feet")
  31801. },
  31802. ]
  31803. ))
  31804. characterMakers.push(() => makeCharacter(
  31805. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31806. {
  31807. front: {
  31808. height: math.unit(9, "feet"),
  31809. weight: math.unit(120, "lb"),
  31810. name: "Front",
  31811. image: {
  31812. source: "./media/characters/sally/front.svg",
  31813. extra: 1506/1349,
  31814. bottom: 66/1572
  31815. }
  31816. },
  31817. },
  31818. [
  31819. {
  31820. name: "Normal",
  31821. height: math.unit(9, "feet"),
  31822. default: true
  31823. },
  31824. ]
  31825. ))
  31826. characterMakers.push(() => makeCharacter(
  31827. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31828. {
  31829. front: {
  31830. height: math.unit(8, "feet"),
  31831. weight: math.unit(900, "lb"),
  31832. name: "Front",
  31833. image: {
  31834. source: "./media/characters/owen/front.svg",
  31835. extra: 1761/1657,
  31836. bottom: 74/1835
  31837. }
  31838. },
  31839. side: {
  31840. height: math.unit(8, "feet"),
  31841. weight: math.unit(900, "lb"),
  31842. name: "Side",
  31843. image: {
  31844. source: "./media/characters/owen/side.svg",
  31845. extra: 1797/1734,
  31846. bottom: 30/1827
  31847. }
  31848. },
  31849. back: {
  31850. height: math.unit(8, "feet"),
  31851. weight: math.unit(900, "lb"),
  31852. name: "Back",
  31853. image: {
  31854. source: "./media/characters/owen/back.svg",
  31855. extra: 1796/1706,
  31856. bottom: 59/1855
  31857. }
  31858. },
  31859. maw: {
  31860. height: math.unit(1.76, "feet"),
  31861. name: "Maw",
  31862. image: {
  31863. source: "./media/characters/owen/maw.svg"
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Normal",
  31870. height: math.unit(8, "feet"),
  31871. default: true
  31872. },
  31873. ]
  31874. ))
  31875. characterMakers.push(() => makeCharacter(
  31876. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31877. {
  31878. front: {
  31879. height: math.unit(4, "feet"),
  31880. weight: math.unit(400, "lb"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/ryth/front.svg",
  31884. extra: 1920/1748,
  31885. bottom: 42/1962
  31886. }
  31887. },
  31888. back: {
  31889. height: math.unit(4, "feet"),
  31890. weight: math.unit(400, "lb"),
  31891. name: "Back",
  31892. image: {
  31893. source: "./media/characters/ryth/back.svg",
  31894. extra: 1897/1690,
  31895. bottom: 89/1986
  31896. }
  31897. },
  31898. mouth: {
  31899. height: math.unit(1.39, "feet"),
  31900. name: "Mouth",
  31901. image: {
  31902. source: "./media/characters/ryth/mouth.svg"
  31903. }
  31904. },
  31905. tailmaw: {
  31906. height: math.unit(1.23, "feet"),
  31907. name: "Tailmaw",
  31908. image: {
  31909. source: "./media/characters/ryth/tailmaw.svg"
  31910. }
  31911. },
  31912. goia: {
  31913. height: math.unit(12, "feet"),
  31914. weight: math.unit(10800, "lb"),
  31915. name: "Goia",
  31916. image: {
  31917. source: "./media/characters/ryth/goia.svg",
  31918. extra: 3450/3198,
  31919. bottom: 61/3511
  31920. }
  31921. },
  31922. },
  31923. [
  31924. {
  31925. name: "Normal",
  31926. height: math.unit(4, "feet"),
  31927. default: true
  31928. },
  31929. ]
  31930. ))
  31931. characterMakers.push(() => makeCharacter(
  31932. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31933. {
  31934. front: {
  31935. height: math.unit(7, "feet"),
  31936. weight: math.unit(180, "lb"),
  31937. name: "Front",
  31938. image: {
  31939. source: "./media/characters/necrolance/front.svg",
  31940. extra: 1062/947,
  31941. bottom: 41/1103
  31942. }
  31943. },
  31944. back: {
  31945. height: math.unit(7, "feet"),
  31946. weight: math.unit(180, "lb"),
  31947. name: "Back",
  31948. image: {
  31949. source: "./media/characters/necrolance/back.svg",
  31950. extra: 1045/984,
  31951. bottom: 14/1059
  31952. }
  31953. },
  31954. wing: {
  31955. height: math.unit(2.67, "feet"),
  31956. name: "Wing",
  31957. image: {
  31958. source: "./media/characters/necrolance/wing.svg"
  31959. }
  31960. },
  31961. },
  31962. [
  31963. {
  31964. name: "Normal",
  31965. height: math.unit(7, "feet"),
  31966. default: true
  31967. },
  31968. ]
  31969. ))
  31970. characterMakers.push(() => makeCharacter(
  31971. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31972. {
  31973. front: {
  31974. height: math.unit(76, "meters"),
  31975. weight: math.unit(30000, "tons"),
  31976. name: "Front",
  31977. image: {
  31978. source: "./media/characters/tyler/front.svg",
  31979. extra: 1640/1640,
  31980. bottom: 114/1754
  31981. }
  31982. },
  31983. },
  31984. [
  31985. {
  31986. name: "Macro",
  31987. height: math.unit(76, "meters"),
  31988. default: true
  31989. },
  31990. ]
  31991. ))
  31992. characterMakers.push(() => makeCharacter(
  31993. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31994. {
  31995. front: {
  31996. height: math.unit(4 + 11/12, "feet"),
  31997. weight: math.unit(132, "lb"),
  31998. name: "Front",
  31999. image: {
  32000. source: "./media/characters/icey/front.svg",
  32001. extra: 2750/2550,
  32002. bottom: 33/2783
  32003. }
  32004. },
  32005. back: {
  32006. height: math.unit(4 + 11/12, "feet"),
  32007. weight: math.unit(132, "lb"),
  32008. name: "Back",
  32009. image: {
  32010. source: "./media/characters/icey/back.svg",
  32011. extra: 2624/2481,
  32012. bottom: 35/2659
  32013. }
  32014. },
  32015. },
  32016. [
  32017. {
  32018. name: "Normal",
  32019. height: math.unit(4 + 11/12, "feet"),
  32020. default: true
  32021. },
  32022. ]
  32023. ))
  32024. characterMakers.push(() => makeCharacter(
  32025. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32026. {
  32027. front: {
  32028. height: math.unit(100, "feet"),
  32029. weight: math.unit(0, "lb"),
  32030. name: "Front",
  32031. image: {
  32032. source: "./media/characters/smile/front.svg",
  32033. extra: 2983/2912,
  32034. bottom: 162/3145
  32035. }
  32036. },
  32037. back: {
  32038. height: math.unit(100, "feet"),
  32039. weight: math.unit(0, "lb"),
  32040. name: "Back",
  32041. image: {
  32042. source: "./media/characters/smile/back.svg",
  32043. extra: 3143/3031,
  32044. bottom: 91/3234
  32045. }
  32046. },
  32047. head: {
  32048. height: math.unit(26.3, "feet"),
  32049. weight: math.unit(0, "lb"),
  32050. name: "Head",
  32051. image: {
  32052. source: "./media/characters/smile/head.svg"
  32053. }
  32054. },
  32055. collar: {
  32056. height: math.unit(5.3, "feet"),
  32057. weight: math.unit(0, "lb"),
  32058. name: "Collar",
  32059. image: {
  32060. source: "./media/characters/smile/collar.svg"
  32061. }
  32062. },
  32063. },
  32064. [
  32065. {
  32066. name: "Macro",
  32067. height: math.unit(100, "feet"),
  32068. default: true
  32069. },
  32070. ]
  32071. ))
  32072. characterMakers.push(() => makeCharacter(
  32073. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32074. {
  32075. dragon: {
  32076. height: math.unit(26, "feet"),
  32077. weight: math.unit(36, "tons"),
  32078. name: "Dragon",
  32079. image: {
  32080. source: "./media/characters/arimphae/dragon.svg",
  32081. extra: 1574/983,
  32082. bottom: 357/1931
  32083. }
  32084. },
  32085. drake: {
  32086. height: math.unit(9, "feet"),
  32087. weight: math.unit(1.5, "tons"),
  32088. name: "Drake",
  32089. image: {
  32090. source: "./media/characters/arimphae/drake.svg",
  32091. extra: 1120/925,
  32092. bottom: 435/1555
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Small",
  32099. height: math.unit(26*5/9, "feet")
  32100. },
  32101. {
  32102. name: "Normal",
  32103. height: math.unit(26, "feet"),
  32104. default: true
  32105. },
  32106. ]
  32107. ))
  32108. characterMakers.push(() => makeCharacter(
  32109. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32110. {
  32111. front: {
  32112. height: math.unit(8 + 9/12, "feet"),
  32113. name: "Front",
  32114. image: {
  32115. source: "./media/characters/xander/front.svg",
  32116. extra: 848/673,
  32117. bottom: 62/910
  32118. }
  32119. },
  32120. },
  32121. [
  32122. {
  32123. name: "Normal",
  32124. height: math.unit(8 + 9/12, "feet"),
  32125. default: true
  32126. },
  32127. {
  32128. name: "Gaze Grabber",
  32129. height: math.unit(13 + 8/12, "feet")
  32130. },
  32131. {
  32132. name: "Jaw Dropper",
  32133. height: math.unit(27, "feet")
  32134. },
  32135. {
  32136. name: "Show Stopper",
  32137. height: math.unit(136, "feet")
  32138. },
  32139. {
  32140. name: "Superstar",
  32141. height: math.unit(1.9e6, "miles")
  32142. },
  32143. ]
  32144. ))
  32145. characterMakers.push(() => makeCharacter(
  32146. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32147. {
  32148. side: {
  32149. height: math.unit(2100, "feet"),
  32150. name: "Side",
  32151. image: {
  32152. source: "./media/characters/osiris/side.svg",
  32153. extra: 1105/939,
  32154. bottom: 167/1272
  32155. }
  32156. },
  32157. },
  32158. [
  32159. {
  32160. name: "Macro",
  32161. height: math.unit(2100, "feet"),
  32162. default: true
  32163. },
  32164. ]
  32165. ))
  32166. characterMakers.push(() => makeCharacter(
  32167. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32168. {
  32169. front: {
  32170. height: math.unit(6 + 8/12, "feet"),
  32171. weight: math.unit(225, "lb"),
  32172. name: "Front",
  32173. image: {
  32174. source: "./media/characters/rhys-londe/front.svg",
  32175. extra: 2258/2141,
  32176. bottom: 188/2446
  32177. }
  32178. },
  32179. back: {
  32180. height: math.unit(6 + 8/12, "feet"),
  32181. weight: math.unit(225, "lb"),
  32182. name: "Back",
  32183. image: {
  32184. source: "./media/characters/rhys-londe/back.svg",
  32185. extra: 2237/2137,
  32186. bottom: 63/2300
  32187. }
  32188. },
  32189. frontNsfw: {
  32190. height: math.unit(6 + 8/12, "feet"),
  32191. weight: math.unit(225, "lb"),
  32192. name: "Front (NSFW)",
  32193. image: {
  32194. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32195. extra: 2258/2141,
  32196. bottom: 188/2446
  32197. }
  32198. },
  32199. backNsfw: {
  32200. height: math.unit(6 + 8/12, "feet"),
  32201. weight: math.unit(225, "lb"),
  32202. name: "Back (NSFW)",
  32203. image: {
  32204. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32205. extra: 2237/2137,
  32206. bottom: 63/2300
  32207. }
  32208. },
  32209. dick: {
  32210. height: math.unit(30, "inches"),
  32211. name: "Dick",
  32212. image: {
  32213. source: "./media/characters/rhys-londe/dick.svg"
  32214. }
  32215. },
  32216. maw: {
  32217. height: math.unit(1.6, "feet"),
  32218. name: "Maw",
  32219. image: {
  32220. source: "./media/characters/rhys-londe/maw.svg"
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(6 + 8/12, "feet"),
  32228. default: true
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32234. {
  32235. front: {
  32236. height: math.unit(3 + 10/12, "feet"),
  32237. weight: math.unit(90, "lb"),
  32238. name: "Front",
  32239. image: {
  32240. source: "./media/characters/taivas-ensim/front.svg",
  32241. extra: 1327/1216,
  32242. bottom: 96/1423
  32243. }
  32244. },
  32245. back: {
  32246. height: math.unit(3 + 10/12, "feet"),
  32247. weight: math.unit(90, "lb"),
  32248. name: "Back",
  32249. image: {
  32250. source: "./media/characters/taivas-ensim/back.svg",
  32251. extra: 1355/1247,
  32252. bottom: 11/1366
  32253. }
  32254. },
  32255. frontNsfw: {
  32256. height: math.unit(3 + 10/12, "feet"),
  32257. weight: math.unit(90, "lb"),
  32258. name: "Front (NSFW)",
  32259. image: {
  32260. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32261. extra: 1327/1216,
  32262. bottom: 96/1423
  32263. }
  32264. },
  32265. backNsfw: {
  32266. height: math.unit(3 + 10/12, "feet"),
  32267. weight: math.unit(90, "lb"),
  32268. name: "Back (NSFW)",
  32269. image: {
  32270. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32271. extra: 1355/1247,
  32272. bottom: 11/1366
  32273. }
  32274. },
  32275. },
  32276. [
  32277. {
  32278. name: "Normal",
  32279. height: math.unit(3 + 10/12, "feet"),
  32280. default: true
  32281. },
  32282. ]
  32283. ))
  32284. characterMakers.push(() => makeCharacter(
  32285. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32286. {
  32287. front: {
  32288. height: math.unit(9 + 6/12, "feet"),
  32289. weight: math.unit(940, "lb"),
  32290. name: "Front",
  32291. image: {
  32292. source: "./media/characters/byliss/front.svg",
  32293. extra: 1327/1290,
  32294. bottom: 82/1409
  32295. }
  32296. },
  32297. back: {
  32298. height: math.unit(9 + 6/12, "feet"),
  32299. weight: math.unit(940, "lb"),
  32300. name: "Back",
  32301. image: {
  32302. source: "./media/characters/byliss/back.svg",
  32303. extra: 1376/1349,
  32304. bottom: 9/1385
  32305. }
  32306. },
  32307. frontNsfw: {
  32308. height: math.unit(9 + 6/12, "feet"),
  32309. weight: math.unit(940, "lb"),
  32310. name: "Front (NSFW)",
  32311. image: {
  32312. source: "./media/characters/byliss/front-nsfw.svg",
  32313. extra: 1327/1290,
  32314. bottom: 82/1409
  32315. }
  32316. },
  32317. backNsfw: {
  32318. height: math.unit(9 + 6/12, "feet"),
  32319. weight: math.unit(940, "lb"),
  32320. name: "Back (NSFW)",
  32321. image: {
  32322. source: "./media/characters/byliss/back-nsfw.svg",
  32323. extra: 1376/1349,
  32324. bottom: 9/1385
  32325. }
  32326. },
  32327. },
  32328. [
  32329. {
  32330. name: "Normal",
  32331. height: math.unit(9 + 6/12, "feet"),
  32332. default: true
  32333. },
  32334. ]
  32335. ))
  32336. characterMakers.push(() => makeCharacter(
  32337. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32338. {
  32339. front: {
  32340. height: math.unit(5 + 2/12, "feet"),
  32341. weight: math.unit(200, "lb"),
  32342. name: "Front",
  32343. image: {
  32344. source: "./media/characters/noraly/front.svg",
  32345. extra: 4985/4773,
  32346. bottom: 150/5135
  32347. }
  32348. },
  32349. full: {
  32350. height: math.unit(5 + 2/12, "feet"),
  32351. weight: math.unit(164, "lb"),
  32352. name: "Full",
  32353. image: {
  32354. source: "./media/characters/noraly/full.svg",
  32355. extra: 1114/1059,
  32356. bottom: 35/1149
  32357. }
  32358. },
  32359. fuller: {
  32360. height: math.unit(5 + 2/12, "feet"),
  32361. weight: math.unit(230, "lb"),
  32362. name: "Fuller",
  32363. image: {
  32364. source: "./media/characters/noraly/fuller.svg",
  32365. extra: 1114/1059,
  32366. bottom: 35/1149
  32367. }
  32368. },
  32369. fullest: {
  32370. height: math.unit(5 + 2/12, "feet"),
  32371. weight: math.unit(300, "lb"),
  32372. name: "Fullest",
  32373. image: {
  32374. source: "./media/characters/noraly/fullest.svg",
  32375. extra: 1114/1059,
  32376. bottom: 35/1149
  32377. }
  32378. },
  32379. },
  32380. [
  32381. {
  32382. name: "Normal",
  32383. height: math.unit(5 + 2/12, "feet"),
  32384. default: true
  32385. },
  32386. ]
  32387. ))
  32388. characterMakers.push(() => makeCharacter(
  32389. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32390. {
  32391. front: {
  32392. height: math.unit(5 + 2/12, "feet"),
  32393. weight: math.unit(210, "lb"),
  32394. name: "Front",
  32395. image: {
  32396. source: "./media/characters/pera/front.svg",
  32397. extra: 1560/1531,
  32398. bottom: 165/1725
  32399. }
  32400. },
  32401. back: {
  32402. height: math.unit(5 + 2/12, "feet"),
  32403. weight: math.unit(210, "lb"),
  32404. name: "Back",
  32405. image: {
  32406. source: "./media/characters/pera/back.svg",
  32407. extra: 1523/1493,
  32408. bottom: 152/1675
  32409. }
  32410. },
  32411. dick: {
  32412. height: math.unit(2.4, "feet"),
  32413. name: "Dick",
  32414. image: {
  32415. source: "./media/characters/pera/dick.svg"
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Normal",
  32422. height: math.unit(5 + 2/12, "feet"),
  32423. default: true
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32429. {
  32430. front: {
  32431. height: math.unit(12, "feet"),
  32432. weight: math.unit(3200, "lb"),
  32433. name: "Front",
  32434. image: {
  32435. source: "./media/characters/julian/front.svg",
  32436. extra: 2962/2701,
  32437. bottom: 184/3146
  32438. }
  32439. },
  32440. maw: {
  32441. height: math.unit(5.35, "feet"),
  32442. name: "Maw",
  32443. image: {
  32444. source: "./media/characters/julian/maw.svg"
  32445. }
  32446. },
  32447. paw: {
  32448. height: math.unit(3.07, "feet"),
  32449. name: "Paw",
  32450. image: {
  32451. source: "./media/characters/julian/paw.svg"
  32452. }
  32453. },
  32454. },
  32455. [
  32456. {
  32457. name: "Default",
  32458. height: math.unit(12, "feet"),
  32459. default: true
  32460. },
  32461. {
  32462. name: "Big",
  32463. height: math.unit(50, "feet")
  32464. },
  32465. {
  32466. name: "Really Big",
  32467. height: math.unit(1, "mile")
  32468. },
  32469. {
  32470. name: "Extremely Big",
  32471. height: math.unit(100, "miles")
  32472. },
  32473. {
  32474. name: "Planet Hugger",
  32475. height: math.unit(200, "megameters")
  32476. },
  32477. {
  32478. name: "Unreasonably Big",
  32479. height: math.unit(1e300, "meters")
  32480. },
  32481. ]
  32482. ))
  32483. characterMakers.push(() => makeCharacter(
  32484. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32485. {
  32486. solgooleo: {
  32487. height: math.unit(4, "meters"),
  32488. weight: math.unit(6000*1.5, "kg"),
  32489. volume: math.unit(6000, "liters"),
  32490. name: "Solgooleo",
  32491. image: {
  32492. source: "./media/characters/pi/solgooleo.svg",
  32493. extra: 388/331,
  32494. bottom: 29/417
  32495. }
  32496. },
  32497. },
  32498. [
  32499. {
  32500. name: "Normal",
  32501. height: math.unit(4, "meters"),
  32502. default: true
  32503. },
  32504. ]
  32505. ))
  32506. characterMakers.push(() => makeCharacter(
  32507. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32508. {
  32509. front: {
  32510. height: math.unit(8 + 2/12, "feet"),
  32511. weight: math.unit(4, "tons"),
  32512. name: "Front",
  32513. image: {
  32514. source: "./media/characters/shaun/front.svg",
  32515. extra: 1550/1505,
  32516. bottom: 353/1903
  32517. }
  32518. },
  32519. },
  32520. [
  32521. {
  32522. name: "Lorg",
  32523. height: math.unit(8 + 2/12, "feet"),
  32524. default: true
  32525. },
  32526. ]
  32527. ))
  32528. characterMakers.push(() => makeCharacter(
  32529. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32530. {
  32531. front: {
  32532. height: math.unit(7, "feet"),
  32533. name: "Front",
  32534. image: {
  32535. source: "./media/characters/sini/front.svg",
  32536. extra: 726/678,
  32537. bottom: 35/761
  32538. }
  32539. },
  32540. back: {
  32541. height: math.unit(7, "feet"),
  32542. name: "Back",
  32543. image: {
  32544. source: "./media/characters/sini/back.svg",
  32545. extra: 743/701,
  32546. bottom: 12/755
  32547. }
  32548. },
  32549. mawAnthro: {
  32550. height: math.unit(2.14, "feet"),
  32551. name: "Maw (Anthro)",
  32552. image: {
  32553. source: "./media/characters/sini/maw-anthro.svg"
  32554. }
  32555. },
  32556. dick: {
  32557. height: math.unit(1.45, "feet"),
  32558. name: "Dick (Anthro)",
  32559. image: {
  32560. source: "./media/characters/sini/dick-anthro.svg"
  32561. }
  32562. },
  32563. feral: {
  32564. height: math.unit(16, "feet"),
  32565. name: "Feral",
  32566. image: {
  32567. source: "./media/characters/sini/feral.svg",
  32568. extra: 814/605,
  32569. bottom: 11/825
  32570. }
  32571. },
  32572. mawFeral: {
  32573. height: math.unit(5.66, "feet"),
  32574. name: "Maw-feral",
  32575. image: {
  32576. source: "./media/characters/sini/maw-feral.svg"
  32577. }
  32578. },
  32579. footFeral: {
  32580. height: math.unit(5.17, "feet"),
  32581. name: "Foot-feral",
  32582. image: {
  32583. source: "./media/characters/sini/foot-feral.svg"
  32584. }
  32585. },
  32586. },
  32587. [
  32588. {
  32589. name: "Normal",
  32590. height: math.unit(7, "feet"),
  32591. default: true
  32592. },
  32593. ]
  32594. ))
  32595. characterMakers.push(() => makeCharacter(
  32596. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32597. {
  32598. side: {
  32599. height: math.unit(13, "meters"),
  32600. weight: math.unit(9072, "kg"),
  32601. name: "Side",
  32602. image: {
  32603. source: "./media/characters/raylldo/side.svg",
  32604. extra: 403/344,
  32605. bottom: 42/445
  32606. }
  32607. },
  32608. leaping: {
  32609. height: math.unit(12.3, "meters"),
  32610. weight: math.unit(9072, "kg"),
  32611. name: "Leaping",
  32612. image: {
  32613. source: "./media/characters/raylldo/leaping.svg",
  32614. extra: 470/249,
  32615. bottom: 13/483
  32616. }
  32617. },
  32618. flying: {
  32619. height: math.unit(18, "meters"),
  32620. weight: math.unit(9072, "kg"),
  32621. name: "Flying",
  32622. image: {
  32623. source: "./media/characters/raylldo/flying.svg"
  32624. }
  32625. },
  32626. head: {
  32627. height: math.unit(5.85, "meters"),
  32628. name: "Head",
  32629. image: {
  32630. source: "./media/characters/raylldo/head.svg"
  32631. }
  32632. },
  32633. maw: {
  32634. height: math.unit(5.32, "meters"),
  32635. name: "Maw",
  32636. image: {
  32637. source: "./media/characters/raylldo/maw.svg"
  32638. }
  32639. },
  32640. eye: {
  32641. height: math.unit(0.54, "meters"),
  32642. name: "Eye",
  32643. image: {
  32644. source: "./media/characters/raylldo/eye.svg"
  32645. }
  32646. },
  32647. },
  32648. [
  32649. {
  32650. name: "Normal",
  32651. height: math.unit(13, "meters"),
  32652. default: true
  32653. },
  32654. ]
  32655. ))
  32656. characterMakers.push(() => makeCharacter(
  32657. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32658. {
  32659. anthroFront: {
  32660. height: math.unit(9, "feet"),
  32661. weight: math.unit(600, "lb"),
  32662. name: "Anthro (Front)",
  32663. image: {
  32664. source: "./media/characters/glint/anthro-front.svg",
  32665. extra: 1097/1018,
  32666. bottom: 28/1125
  32667. }
  32668. },
  32669. anthroBack: {
  32670. height: math.unit(9, "feet"),
  32671. weight: math.unit(600, "lb"),
  32672. name: "Anthro (Back)",
  32673. image: {
  32674. source: "./media/characters/glint/anthro-back.svg",
  32675. extra: 1154/997,
  32676. bottom: 36/1190
  32677. }
  32678. },
  32679. feral: {
  32680. height: math.unit(11, "feet"),
  32681. weight: math.unit(50000, "lb"),
  32682. name: "Feral",
  32683. image: {
  32684. source: "./media/characters/glint/feral.svg",
  32685. extra: 3035/1585,
  32686. bottom: 1169/4204
  32687. }
  32688. },
  32689. dickAnthro: {
  32690. height: math.unit(0.7, "meters"),
  32691. name: "Dick (Anthro)",
  32692. image: {
  32693. source: "./media/characters/glint/dick-anthro.svg"
  32694. }
  32695. },
  32696. dickFeral: {
  32697. height: math.unit(2.65, "meters"),
  32698. name: "Dick (Feral)",
  32699. image: {
  32700. source: "./media/characters/glint/dick-feral.svg"
  32701. }
  32702. },
  32703. slitHidden: {
  32704. height: math.unit(5.85, "meters"),
  32705. name: "Slit (Hidden)",
  32706. image: {
  32707. source: "./media/characters/glint/slit-hidden.svg"
  32708. }
  32709. },
  32710. slitErect: {
  32711. height: math.unit(5.85, "meters"),
  32712. name: "Slit (Erect)",
  32713. image: {
  32714. source: "./media/characters/glint/slit-erect.svg"
  32715. }
  32716. },
  32717. mawAnthro: {
  32718. height: math.unit(0.63, "meters"),
  32719. name: "Maw (Anthro)",
  32720. image: {
  32721. source: "./media/characters/glint/maw.svg"
  32722. }
  32723. },
  32724. mawFeral: {
  32725. height: math.unit(2.89, "meters"),
  32726. name: "Maw (Feral)",
  32727. image: {
  32728. source: "./media/characters/glint/maw.svg"
  32729. }
  32730. },
  32731. },
  32732. [
  32733. {
  32734. name: "Normal",
  32735. height: math.unit(9, "feet"),
  32736. default: true
  32737. },
  32738. ]
  32739. ))
  32740. characterMakers.push(() => makeCharacter(
  32741. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32742. {
  32743. side: {
  32744. height: math.unit(15, "feet"),
  32745. weight: math.unit(5000, "kg"),
  32746. name: "Side",
  32747. image: {
  32748. source: "./media/characters/kairne/side.svg",
  32749. extra: 979/811,
  32750. bottom: 13/992
  32751. }
  32752. },
  32753. front: {
  32754. height: math.unit(15, "feet"),
  32755. weight: math.unit(5000, "kg"),
  32756. name: "Front",
  32757. image: {
  32758. source: "./media/characters/kairne/front.svg",
  32759. extra: 908/814,
  32760. bottom: 26/934
  32761. }
  32762. },
  32763. sideNsfw: {
  32764. height: math.unit(15, "feet"),
  32765. weight: math.unit(5000, "kg"),
  32766. name: "Side (NSFW)",
  32767. image: {
  32768. source: "./media/characters/kairne/side-nsfw.svg",
  32769. extra: 979/811,
  32770. bottom: 13/992
  32771. }
  32772. },
  32773. frontNsfw: {
  32774. height: math.unit(15, "feet"),
  32775. weight: math.unit(5000, "kg"),
  32776. name: "Front (NSFW)",
  32777. image: {
  32778. source: "./media/characters/kairne/front-nsfw.svg",
  32779. extra: 908/814,
  32780. bottom: 26/934
  32781. }
  32782. },
  32783. dickCaged: {
  32784. height: math.unit(0.65, "meters"),
  32785. name: "Dick-caged",
  32786. image: {
  32787. source: "./media/characters/kairne/dick-caged.svg"
  32788. }
  32789. },
  32790. dick: {
  32791. height: math.unit(0.79, "meters"),
  32792. name: "Dick",
  32793. image: {
  32794. source: "./media/characters/kairne/dick.svg"
  32795. }
  32796. },
  32797. genitals: {
  32798. height: math.unit(1.29, "meters"),
  32799. name: "Genitals",
  32800. image: {
  32801. source: "./media/characters/kairne/genitals.svg"
  32802. }
  32803. },
  32804. maw: {
  32805. height: math.unit(1.73, "meters"),
  32806. name: "Maw",
  32807. image: {
  32808. source: "./media/characters/kairne/maw.svg"
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Normal",
  32815. height: math.unit(15, "feet"),
  32816. default: true
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32822. {
  32823. front: {
  32824. height: math.unit(5 + 8/12, "feet"),
  32825. weight: math.unit(139, "lb"),
  32826. name: "Front",
  32827. image: {
  32828. source: "./media/characters/biscuit-jackal/front.svg",
  32829. extra: 2106/1961,
  32830. bottom: 58/2164
  32831. }
  32832. },
  32833. back: {
  32834. height: math.unit(5 + 8/12, "feet"),
  32835. weight: math.unit(139, "lb"),
  32836. name: "Back",
  32837. image: {
  32838. source: "./media/characters/biscuit-jackal/back.svg",
  32839. extra: 2132/1976,
  32840. bottom: 57/2189
  32841. }
  32842. },
  32843. werejackal: {
  32844. height: math.unit(6 + 3/12, "feet"),
  32845. weight: math.unit(188, "lb"),
  32846. name: "Werejackal",
  32847. image: {
  32848. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32849. extra: 2373/2178,
  32850. bottom: 53/2426
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Normal",
  32857. height: math.unit(5 + 8/12, "feet"),
  32858. default: true
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32864. {
  32865. front: {
  32866. height: math.unit(140, "cm"),
  32867. weight: math.unit(45, "kg"),
  32868. name: "Front",
  32869. image: {
  32870. source: "./media/characters/tayra-white/front.svg",
  32871. extra: 2229/2192,
  32872. bottom: 75/2304
  32873. }
  32874. },
  32875. },
  32876. [
  32877. {
  32878. name: "Normal",
  32879. height: math.unit(140, "cm"),
  32880. default: true
  32881. },
  32882. ]
  32883. ))
  32884. characterMakers.push(() => makeCharacter(
  32885. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32886. {
  32887. front: {
  32888. height: math.unit(4 + 5/12, "feet"),
  32889. name: "Front",
  32890. image: {
  32891. source: "./media/characters/scoop/front.svg",
  32892. extra: 1257/1136,
  32893. bottom: 69/1326
  32894. }
  32895. },
  32896. back: {
  32897. height: math.unit(4 + 5/12, "feet"),
  32898. name: "Back",
  32899. image: {
  32900. source: "./media/characters/scoop/back.svg",
  32901. extra: 1321/1152,
  32902. bottom: 32/1353
  32903. }
  32904. },
  32905. maw: {
  32906. height: math.unit(0.68, "feet"),
  32907. name: "Maw",
  32908. image: {
  32909. source: "./media/characters/scoop/maw.svg"
  32910. }
  32911. },
  32912. },
  32913. [
  32914. {
  32915. name: "Really Small",
  32916. height: math.unit(1, "mm")
  32917. },
  32918. {
  32919. name: "Micro",
  32920. height: math.unit(1, "inch")
  32921. },
  32922. {
  32923. name: "Normal",
  32924. height: math.unit(4 + 5/12, "feet"),
  32925. default: true
  32926. },
  32927. {
  32928. name: "Macro",
  32929. height: math.unit(200, "feet")
  32930. },
  32931. {
  32932. name: "Megamacro",
  32933. height: math.unit(3240, "feet")
  32934. },
  32935. {
  32936. name: "Teramacro",
  32937. height: math.unit(2500, "miles")
  32938. },
  32939. ]
  32940. ))
  32941. characterMakers.push(() => makeCharacter(
  32942. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32943. {
  32944. front: {
  32945. height: math.unit(15 + 7/12, "feet"),
  32946. name: "Front",
  32947. image: {
  32948. source: "./media/characters/saphinara/front.svg",
  32949. extra: 604/546,
  32950. bottom: 19/623
  32951. }
  32952. },
  32953. side: {
  32954. height: math.unit(15 + 7/12, "feet"),
  32955. name: "Side",
  32956. image: {
  32957. source: "./media/characters/saphinara/side.svg",
  32958. extra: 605/547,
  32959. bottom: 6/611
  32960. }
  32961. },
  32962. back: {
  32963. height: math.unit(15 + 7/12, "feet"),
  32964. name: "Back",
  32965. image: {
  32966. source: "./media/characters/saphinara/back.svg",
  32967. extra: 591/531,
  32968. bottom: 13/604
  32969. }
  32970. },
  32971. frontTail: {
  32972. height: math.unit(15 + 7/12, "feet"),
  32973. name: "Front (Full Tail)",
  32974. image: {
  32975. source: "./media/characters/saphinara/front-tail.svg",
  32976. extra: 748/547,
  32977. bottom: 66/814
  32978. }
  32979. },
  32980. },
  32981. [
  32982. {
  32983. name: "Normal",
  32984. height: math.unit(15 + 7/12, "feet"),
  32985. default: true
  32986. },
  32987. {
  32988. name: "Angry",
  32989. height: math.unit(30 + 6/12, "feet")
  32990. },
  32991. {
  32992. name: "Enraged",
  32993. height: math.unit(102 + 1/12, "feet")
  32994. },
  32995. ]
  32996. ))
  32997. characterMakers.push(() => makeCharacter(
  32998. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32999. {
  33000. front: {
  33001. height: math.unit(6 + 8/12, "feet"),
  33002. weight: math.unit(300, "lb"),
  33003. name: "Front",
  33004. image: {
  33005. source: "./media/characters/jrain/front.svg",
  33006. extra: 3039/2865,
  33007. bottom: 399/3438
  33008. }
  33009. },
  33010. back: {
  33011. height: math.unit(6 + 8/12, "feet"),
  33012. weight: math.unit(300, "lb"),
  33013. name: "Back",
  33014. image: {
  33015. source: "./media/characters/jrain/back.svg",
  33016. extra: 3089/2938,
  33017. bottom: 172/3261
  33018. }
  33019. },
  33020. head: {
  33021. height: math.unit(2.14, "feet"),
  33022. name: "Head",
  33023. image: {
  33024. source: "./media/characters/jrain/head.svg"
  33025. }
  33026. },
  33027. maw: {
  33028. height: math.unit(1.77, "feet"),
  33029. name: "Maw",
  33030. image: {
  33031. source: "./media/characters/jrain/maw.svg"
  33032. }
  33033. },
  33034. leftHand: {
  33035. height: math.unit(1.1, "feet"),
  33036. name: "Left Hand",
  33037. image: {
  33038. source: "./media/characters/jrain/left-hand.svg"
  33039. }
  33040. },
  33041. rightHand: {
  33042. height: math.unit(1.1, "feet"),
  33043. name: "Right Hand",
  33044. image: {
  33045. source: "./media/characters/jrain/right-hand.svg"
  33046. }
  33047. },
  33048. eye: {
  33049. height: math.unit(0.35, "feet"),
  33050. name: "Eye",
  33051. image: {
  33052. source: "./media/characters/jrain/eye.svg"
  33053. }
  33054. },
  33055. },
  33056. [
  33057. {
  33058. name: "Normal",
  33059. height: math.unit(6 + 8/12, "feet"),
  33060. default: true
  33061. },
  33062. {
  33063. name: "Casually Large",
  33064. height: math.unit(25, "feet")
  33065. },
  33066. {
  33067. name: "Giant",
  33068. height: math.unit(100, "feet")
  33069. },
  33070. {
  33071. name: "Kaiju",
  33072. height: math.unit(300, "feet")
  33073. },
  33074. ]
  33075. ))
  33076. characterMakers.push(() => makeCharacter(
  33077. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33078. {
  33079. dragon: {
  33080. height: math.unit(5, "meters"),
  33081. name: "Dragon",
  33082. image: {
  33083. source: "./media/characters/sabrina/dragon.svg",
  33084. extra: 3670 / 2365,
  33085. bottom: 333 / 4003
  33086. }
  33087. },
  33088. gryphon: {
  33089. height: math.unit(3, "meters"),
  33090. name: "Gryphon",
  33091. image: {
  33092. source: "./media/characters/sabrina/gryphon.svg",
  33093. extra: 1576 / 945,
  33094. bottom: 71 / 1647
  33095. }
  33096. },
  33097. snake: {
  33098. height: math.unit(12, "meters"),
  33099. name: "Snake",
  33100. image: {
  33101. source: "./media/characters/sabrina/snake.svg",
  33102. extra: 1758 / 1320,
  33103. bottom: 186 / 1944
  33104. }
  33105. },
  33106. collar: {
  33107. height: math.unit(1.86, "meters"),
  33108. name: "Collar",
  33109. image: {
  33110. source: "./media/characters/sabrina/collar.svg"
  33111. }
  33112. },
  33113. eye: {
  33114. height: math.unit(0.53, "meters"),
  33115. name: "Eye",
  33116. image: {
  33117. source: "./media/characters/sabrina/eye.svg"
  33118. }
  33119. },
  33120. foot: {
  33121. height: math.unit(1.86, "meters"),
  33122. name: "Foot",
  33123. image: {
  33124. source: "./media/characters/sabrina/foot.svg"
  33125. }
  33126. },
  33127. hand: {
  33128. height: math.unit(1.32, "meters"),
  33129. name: "Hand",
  33130. image: {
  33131. source: "./media/characters/sabrina/hand.svg"
  33132. }
  33133. },
  33134. head: {
  33135. height: math.unit(2.44, "meters"),
  33136. name: "Head",
  33137. image: {
  33138. source: "./media/characters/sabrina/head.svg"
  33139. }
  33140. },
  33141. headAngry: {
  33142. height: math.unit(2.44, "meters"),
  33143. name: "Head (Angry))",
  33144. image: {
  33145. source: "./media/characters/sabrina/head-angry.svg"
  33146. }
  33147. },
  33148. maw: {
  33149. height: math.unit(1.65, "meters"),
  33150. name: "Maw",
  33151. image: {
  33152. source: "./media/characters/sabrina/maw.svg"
  33153. }
  33154. },
  33155. spikes: {
  33156. height: math.unit(1.69, "meters"),
  33157. name: "Spikes",
  33158. image: {
  33159. source: "./media/characters/sabrina/spikes.svg"
  33160. }
  33161. },
  33162. stomach: {
  33163. height: math.unit(1.15, "meters"),
  33164. name: "Stomach",
  33165. image: {
  33166. source: "./media/characters/sabrina/stomach.svg"
  33167. }
  33168. },
  33169. tongue: {
  33170. height: math.unit(1.27, "meters"),
  33171. name: "Tongue",
  33172. image: {
  33173. source: "./media/characters/sabrina/tongue.svg"
  33174. }
  33175. },
  33176. wingDorsal: {
  33177. height: math.unit(4.85, "meters"),
  33178. name: "Wing (Dorsal)",
  33179. image: {
  33180. source: "./media/characters/sabrina/wing-dorsal.svg"
  33181. }
  33182. },
  33183. wingVentral: {
  33184. height: math.unit(4.85, "meters"),
  33185. name: "Wing (Ventral)",
  33186. image: {
  33187. source: "./media/characters/sabrina/wing-ventral.svg"
  33188. }
  33189. },
  33190. },
  33191. [
  33192. {
  33193. name: "Normal",
  33194. height: math.unit(5, "meters"),
  33195. default: true
  33196. },
  33197. ]
  33198. ))
  33199. characterMakers.push(() => makeCharacter(
  33200. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33201. {
  33202. frontMaid: {
  33203. height: math.unit(5 + 5/12, "feet"),
  33204. weight: math.unit(130, "lb"),
  33205. name: "Front (Maid)",
  33206. image: {
  33207. source: "./media/characters/midnight-tales/front-maid.svg",
  33208. extra: 489/454,
  33209. bottom: 61/550
  33210. }
  33211. },
  33212. frontFormal: {
  33213. height: math.unit(5 + 5/12, "feet"),
  33214. weight: math.unit(130, "lb"),
  33215. name: "Front (Formal)",
  33216. image: {
  33217. source: "./media/characters/midnight-tales/front-formal.svg",
  33218. extra: 489/454,
  33219. bottom: 61/550
  33220. }
  33221. },
  33222. back: {
  33223. height: math.unit(5 + 5/12, "feet"),
  33224. weight: math.unit(130, "lb"),
  33225. name: "Back",
  33226. image: {
  33227. source: "./media/characters/midnight-tales/back.svg",
  33228. extra: 498/456,
  33229. bottom: 33/531
  33230. }
  33231. },
  33232. frontBeast: {
  33233. height: math.unit(40, "feet"),
  33234. weight: math.unit(64000, "lb"),
  33235. name: "Front (Beast)",
  33236. image: {
  33237. source: "./media/characters/midnight-tales/front-beast.svg",
  33238. extra: 927/860,
  33239. bottom: 53/980
  33240. }
  33241. },
  33242. backBeast: {
  33243. height: math.unit(40, "feet"),
  33244. weight: math.unit(64000, "lb"),
  33245. name: "Back (Beast)",
  33246. image: {
  33247. source: "./media/characters/midnight-tales/back-beast.svg",
  33248. extra: 929/855,
  33249. bottom: 16/945
  33250. }
  33251. },
  33252. footBeast: {
  33253. height: math.unit(6.7, "feet"),
  33254. name: "Foot (Beast)",
  33255. image: {
  33256. source: "./media/characters/midnight-tales/foot-beast.svg"
  33257. }
  33258. },
  33259. headBeast: {
  33260. height: math.unit(8, "feet"),
  33261. name: "Head (Beast)",
  33262. image: {
  33263. source: "./media/characters/midnight-tales/head-beast.svg"
  33264. }
  33265. },
  33266. },
  33267. [
  33268. {
  33269. name: "Normal",
  33270. height: math.unit(5 + 5 / 12, "feet"),
  33271. default: true
  33272. },
  33273. {
  33274. name: "Macro",
  33275. height: math.unit(25, "feet")
  33276. },
  33277. ]
  33278. ))
  33279. characterMakers.push(() => makeCharacter(
  33280. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33281. {
  33282. front: {
  33283. height: math.unit(5 + 10/12, "feet"),
  33284. name: "Front",
  33285. image: {
  33286. source: "./media/characters/argon/front.svg",
  33287. extra: 2009/1935,
  33288. bottom: 118/2127
  33289. }
  33290. },
  33291. back: {
  33292. height: math.unit(5 + 10/12, "feet"),
  33293. name: "Back",
  33294. image: {
  33295. source: "./media/characters/argon/back.svg",
  33296. extra: 2047/1992,
  33297. bottom: 20/2067
  33298. }
  33299. },
  33300. frontDressed: {
  33301. height: math.unit(5 + 10/12, "feet"),
  33302. name: "Front (Dressed)",
  33303. image: {
  33304. source: "./media/characters/argon/front-dressed.svg",
  33305. extra: 2009/1935,
  33306. bottom: 118/2127
  33307. }
  33308. },
  33309. },
  33310. [
  33311. {
  33312. name: "Normal",
  33313. height: math.unit(5 + 10/12, "feet"),
  33314. default: true
  33315. },
  33316. ]
  33317. ))
  33318. characterMakers.push(() => makeCharacter(
  33319. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33320. {
  33321. front: {
  33322. height: math.unit(8 + 6/12, "feet"),
  33323. weight: math.unit(1150, "lb"),
  33324. name: "Front",
  33325. image: {
  33326. source: "./media/characters/kichi/front.svg",
  33327. extra: 1267/1164,
  33328. bottom: 61/1328
  33329. }
  33330. },
  33331. back: {
  33332. height: math.unit(8 + 6/12, "feet"),
  33333. weight: math.unit(1150, "lb"),
  33334. name: "Back",
  33335. image: {
  33336. source: "./media/characters/kichi/back.svg",
  33337. extra: 1273/1166,
  33338. bottom: 33/1306
  33339. }
  33340. },
  33341. },
  33342. [
  33343. {
  33344. name: "Normal",
  33345. height: math.unit(8 + 6/12, "feet"),
  33346. default: true
  33347. },
  33348. ]
  33349. ))
  33350. characterMakers.push(() => makeCharacter(
  33351. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33352. {
  33353. front: {
  33354. height: math.unit(6, "feet"),
  33355. weight: math.unit(210, "lb"),
  33356. name: "Front",
  33357. image: {
  33358. source: "./media/characters/manetel-greyscale/front.svg",
  33359. extra: 350/312,
  33360. bottom: 8/358
  33361. }
  33362. },
  33363. },
  33364. [
  33365. {
  33366. name: "Micro",
  33367. height: math.unit(2, "inches")
  33368. },
  33369. {
  33370. name: "Normal",
  33371. height: math.unit(6, "feet"),
  33372. default: true
  33373. },
  33374. {
  33375. name: "Minimacro",
  33376. height: math.unit(17, "feet")
  33377. },
  33378. {
  33379. name: "Macro",
  33380. height: math.unit(117, "feet")
  33381. },
  33382. ]
  33383. ))
  33384. characterMakers.push(() => makeCharacter(
  33385. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33386. {
  33387. side: {
  33388. height: math.unit(5 + 1/12, "feet"),
  33389. weight: math.unit(418, "lb"),
  33390. name: "Side",
  33391. image: {
  33392. source: "./media/characters/softpurr/side.svg",
  33393. extra: 1993/1945,
  33394. bottom: 134/2127
  33395. }
  33396. },
  33397. front: {
  33398. height: math.unit(5 + 1/12, "feet"),
  33399. weight: math.unit(418, "lb"),
  33400. name: "Front",
  33401. image: {
  33402. source: "./media/characters/softpurr/front.svg",
  33403. extra: 1950/1856,
  33404. bottom: 174/2124
  33405. }
  33406. },
  33407. paw: {
  33408. height: math.unit(1, "feet"),
  33409. name: "Paw",
  33410. image: {
  33411. source: "./media/characters/softpurr/paw.svg"
  33412. }
  33413. },
  33414. },
  33415. [
  33416. {
  33417. name: "Normal",
  33418. height: math.unit(5 + 1/12, "feet"),
  33419. default: true
  33420. },
  33421. ]
  33422. ))
  33423. characterMakers.push(() => makeCharacter(
  33424. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33425. {
  33426. front: {
  33427. height: math.unit(260, "meters"),
  33428. name: "Front",
  33429. image: {
  33430. source: "./media/characters/anahita/front.svg",
  33431. extra: 665/635,
  33432. bottom: 89/754
  33433. }
  33434. },
  33435. },
  33436. [
  33437. {
  33438. name: "Macro",
  33439. height: math.unit(260, "meters"),
  33440. default: true
  33441. },
  33442. ]
  33443. ))
  33444. characterMakers.push(() => makeCharacter(
  33445. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33446. {
  33447. front: {
  33448. height: math.unit(4 + 10/12, "feet"),
  33449. weight: math.unit(160, "lb"),
  33450. name: "Front",
  33451. image: {
  33452. source: "./media/characters/chip-mouse/front.svg",
  33453. extra: 3528/3408,
  33454. bottom: 0/3528
  33455. }
  33456. },
  33457. frontNsfw: {
  33458. height: math.unit(4 + 10/12, "feet"),
  33459. weight: math.unit(160, "lb"),
  33460. name: "Front (NSFW)",
  33461. image: {
  33462. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33463. extra: 3528/3408,
  33464. bottom: 0/3528
  33465. }
  33466. },
  33467. },
  33468. [
  33469. {
  33470. name: "Normal",
  33471. height: math.unit(4 + 10/12, "feet"),
  33472. default: true
  33473. },
  33474. ]
  33475. ))
  33476. characterMakers.push(() => makeCharacter(
  33477. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33478. {
  33479. side: {
  33480. height: math.unit(10, "feet"),
  33481. weight: math.unit(14000, "lb"),
  33482. name: "Side",
  33483. image: {
  33484. source: "./media/characters/kremm/side.svg",
  33485. extra: 1390/1053,
  33486. bottom: 90/1480
  33487. }
  33488. },
  33489. gut: {
  33490. height: math.unit(5.8, "feet"),
  33491. name: "Gut",
  33492. image: {
  33493. source: "./media/characters/kremm/gut.svg"
  33494. }
  33495. },
  33496. ass: {
  33497. height: math.unit(6.1, "feet"),
  33498. name: "Ass",
  33499. image: {
  33500. source: "./media/characters/kremm/ass.svg"
  33501. }
  33502. },
  33503. jaws: {
  33504. height: math.unit(2.2, "feet"),
  33505. name: "Jaws",
  33506. image: {
  33507. source: "./media/characters/kremm/jaws.svg"
  33508. }
  33509. },
  33510. dick: {
  33511. height: math.unit(4.26, "feet"),
  33512. name: "Dick",
  33513. image: {
  33514. source: "./media/characters/kremm/dick.svg"
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Normal",
  33521. height: math.unit(10, "feet"),
  33522. default: true
  33523. },
  33524. ]
  33525. ))
  33526. characterMakers.push(() => makeCharacter(
  33527. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33528. {
  33529. front: {
  33530. height: math.unit(30, "stories"),
  33531. name: "Front",
  33532. image: {
  33533. source: "./media/characters/kai/front.svg",
  33534. extra: 1892/1718,
  33535. bottom: 162/2054
  33536. }
  33537. },
  33538. },
  33539. [
  33540. {
  33541. name: "Macro",
  33542. height: math.unit(30, "stories"),
  33543. default: true
  33544. },
  33545. ]
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33549. {
  33550. front: {
  33551. height: math.unit(6 + 4/12, "feet"),
  33552. weight: math.unit(145, "lb"),
  33553. name: "Front",
  33554. image: {
  33555. source: "./media/characters/sykes/front.svg",
  33556. extra: 1321 / 1187,
  33557. bottom: 66 / 1387
  33558. }
  33559. },
  33560. back: {
  33561. height: math.unit(6 + 4/12, "feet"),
  33562. weight: math.unit(145, "lb"),
  33563. name: "Back",
  33564. image: {
  33565. source: "./media/characters/sykes/back.svg",
  33566. extra: 1326/1181,
  33567. bottom: 31/1357
  33568. }
  33569. },
  33570. handBack: {
  33571. height: math.unit(0.9, "feet"),
  33572. name: "Hand (Back)",
  33573. image: {
  33574. source: "./media/characters/sykes/hand-back.svg"
  33575. }
  33576. },
  33577. handFront: {
  33578. height: math.unit(0.839, "feet"),
  33579. name: "Hand (Front)",
  33580. image: {
  33581. source: "./media/characters/sykes/hand-front.svg"
  33582. }
  33583. },
  33584. leftFoot: {
  33585. height: math.unit(1.2, "feet"),
  33586. name: "Foot (Left)",
  33587. image: {
  33588. source: "./media/characters/sykes/foot-left.svg"
  33589. }
  33590. },
  33591. rightFoot: {
  33592. height: math.unit(1.2, "feet"),
  33593. name: "Foot (Right)",
  33594. image: {
  33595. source: "./media/characters/sykes/foot-right.svg"
  33596. }
  33597. },
  33598. maw: {
  33599. height: math.unit(1.93, "feet"),
  33600. name: "Maw",
  33601. image: {
  33602. source: "./media/characters/sykes/maw.svg"
  33603. }
  33604. },
  33605. teeth: {
  33606. height: math.unit(0.51, "feet"),
  33607. name: "Teeth",
  33608. image: {
  33609. source: "./media/characters/sykes/teeth.svg"
  33610. }
  33611. },
  33612. tongue: {
  33613. height: math.unit(2.13, "feet"),
  33614. name: "Tongue",
  33615. image: {
  33616. source: "./media/characters/sykes/tongue.svg"
  33617. }
  33618. },
  33619. uvula: {
  33620. height: math.unit(0.16, "feet"),
  33621. name: "Uvula",
  33622. image: {
  33623. source: "./media/characters/sykes/uvula.svg"
  33624. }
  33625. },
  33626. collar: {
  33627. height: math.unit(0.287, "feet"),
  33628. name: "Collar",
  33629. image: {
  33630. source: "./media/characters/sykes/collar.svg"
  33631. }
  33632. },
  33633. },
  33634. [
  33635. {
  33636. name: "Shrunken",
  33637. height: math.unit(5, "inches")
  33638. },
  33639. {
  33640. name: "Normal",
  33641. height: math.unit(6 + 4 / 12, "feet"),
  33642. default: true
  33643. },
  33644. {
  33645. name: "Big",
  33646. height: math.unit(15, "feet")
  33647. },
  33648. ]
  33649. ))
  33650. characterMakers.push(() => makeCharacter(
  33651. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33652. {
  33653. front: {
  33654. height: math.unit(5 + 8/12, "feet"),
  33655. weight: math.unit(190, "lb"),
  33656. name: "Front",
  33657. image: {
  33658. source: "./media/characters/oven-otter/front.svg",
  33659. extra: 1809/1740,
  33660. bottom: 181/1990
  33661. }
  33662. },
  33663. back: {
  33664. height: math.unit(5 + 8/12, "feet"),
  33665. weight: math.unit(190, "lb"),
  33666. name: "Back",
  33667. image: {
  33668. source: "./media/characters/oven-otter/back.svg",
  33669. extra: 1709/1635,
  33670. bottom: 118/1827
  33671. }
  33672. },
  33673. hand: {
  33674. height: math.unit(1.07, "feet"),
  33675. name: "Hand",
  33676. image: {
  33677. source: "./media/characters/oven-otter/hand.svg"
  33678. }
  33679. },
  33680. beans: {
  33681. height: math.unit(1.74, "feet"),
  33682. name: "Beans",
  33683. image: {
  33684. source: "./media/characters/oven-otter/beans.svg"
  33685. }
  33686. },
  33687. },
  33688. [
  33689. {
  33690. name: "Micro",
  33691. height: math.unit(0.5, "inches")
  33692. },
  33693. {
  33694. name: "Normal",
  33695. height: math.unit(5 + 8/12, "feet"),
  33696. default: true
  33697. },
  33698. {
  33699. name: "Macro",
  33700. height: math.unit(250, "feet")
  33701. },
  33702. {
  33703. name: "Really High",
  33704. height: math.unit(420, "feet")
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33710. {
  33711. front: {
  33712. height: math.unit(5, "meters"),
  33713. weight: math.unit(292000000000000, "kg"),
  33714. name: "Front",
  33715. image: {
  33716. source: "./media/characters/devourer/front.svg",
  33717. extra: 1800/1733,
  33718. bottom: 211/2011
  33719. }
  33720. },
  33721. maw: {
  33722. height: math.unit(1.1, "meter"),
  33723. name: "Maw",
  33724. image: {
  33725. source: "./media/characters/devourer/maw.svg"
  33726. }
  33727. },
  33728. },
  33729. [
  33730. {
  33731. name: "Small",
  33732. height: math.unit(3, "meters")
  33733. },
  33734. {
  33735. name: "Large",
  33736. height: math.unit(5, "meters"),
  33737. default: true
  33738. },
  33739. ]
  33740. ))
  33741. characterMakers.push(() => makeCharacter(
  33742. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33743. {
  33744. front: {
  33745. height: math.unit(6, "feet"),
  33746. weight: math.unit(400, "lb"),
  33747. name: "Front",
  33748. image: {
  33749. source: "./media/characters/ellarby/front.svg",
  33750. extra: 1909/1763,
  33751. bottom: 80/1989
  33752. }
  33753. },
  33754. back: {
  33755. height: math.unit(6, "feet"),
  33756. weight: math.unit(400, "lb"),
  33757. name: "Back",
  33758. image: {
  33759. source: "./media/characters/ellarby/back.svg",
  33760. extra: 1914/1784,
  33761. bottom: 172/2086
  33762. }
  33763. },
  33764. },
  33765. [
  33766. {
  33767. name: "Mischief",
  33768. height: math.unit(18, "inches")
  33769. },
  33770. {
  33771. name: "Trouble",
  33772. height: math.unit(12, "feet")
  33773. },
  33774. {
  33775. name: "Havoc",
  33776. height: math.unit(200, "feet"),
  33777. default: true
  33778. },
  33779. {
  33780. name: "Pandemonium",
  33781. height: math.unit(1, "mile")
  33782. },
  33783. {
  33784. name: "Catastrophe",
  33785. height: math.unit(100, "miles")
  33786. },
  33787. ]
  33788. ))
  33789. characterMakers.push(() => makeCharacter(
  33790. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33791. {
  33792. front: {
  33793. height: math.unit(4.7, "meters"),
  33794. weight: math.unit(6500, "kg"),
  33795. name: "Front",
  33796. image: {
  33797. source: "./media/characters/vex/front.svg",
  33798. extra: 1288/1140,
  33799. bottom: 100/1388
  33800. }
  33801. },
  33802. },
  33803. [
  33804. {
  33805. name: "Normal",
  33806. height: math.unit(4.7, "meters"),
  33807. default: true
  33808. },
  33809. ]
  33810. ))
  33811. characterMakers.push(() => makeCharacter(
  33812. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33813. {
  33814. normal: {
  33815. height: math.unit(6, "feet"),
  33816. weight: math.unit(350, "lb"),
  33817. name: "Normal",
  33818. image: {
  33819. source: "./media/characters/teshy/normal.svg",
  33820. extra: 1795/1735,
  33821. bottom: 16/1811
  33822. }
  33823. },
  33824. monsterFront: {
  33825. height: math.unit(12, "feet"),
  33826. weight: math.unit(4700, "lb"),
  33827. name: "Monster (Front)",
  33828. image: {
  33829. source: "./media/characters/teshy/monster-front.svg",
  33830. extra: 2042/2034,
  33831. bottom: 128/2170
  33832. }
  33833. },
  33834. monsterSide: {
  33835. height: math.unit(12, "feet"),
  33836. weight: math.unit(4700, "lb"),
  33837. name: "Monster (Side)",
  33838. image: {
  33839. source: "./media/characters/teshy/monster-side.svg",
  33840. extra: 2067/2056,
  33841. bottom: 70/2137
  33842. }
  33843. },
  33844. monsterBack: {
  33845. height: math.unit(12, "feet"),
  33846. weight: math.unit(4700, "lb"),
  33847. name: "Monster (Back)",
  33848. image: {
  33849. source: "./media/characters/teshy/monster-back.svg",
  33850. extra: 1921/1914,
  33851. bottom: 171/2092
  33852. }
  33853. },
  33854. },
  33855. [
  33856. {
  33857. name: "Normal",
  33858. height: math.unit(6, "feet"),
  33859. default: true
  33860. },
  33861. ]
  33862. ))
  33863. characterMakers.push(() => makeCharacter(
  33864. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33865. {
  33866. front: {
  33867. height: math.unit(6, "feet"),
  33868. name: "Front",
  33869. image: {
  33870. source: "./media/characters/ramey/front.svg",
  33871. extra: 790/787,
  33872. bottom: 27/817
  33873. }
  33874. },
  33875. },
  33876. [
  33877. {
  33878. name: "Normal",
  33879. height: math.unit(6, "feet"),
  33880. default: true
  33881. },
  33882. ]
  33883. ))
  33884. characterMakers.push(() => makeCharacter(
  33885. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33886. {
  33887. front: {
  33888. height: math.unit(5 + 5/12, "feet"),
  33889. weight: math.unit(120, "lb"),
  33890. name: "Front",
  33891. image: {
  33892. source: "./media/characters/phirae/front.svg",
  33893. extra: 2491/2436,
  33894. bottom: 38/2529
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(5 + 5/12, "feet"),
  33902. default: true
  33903. },
  33904. ]
  33905. ))
  33906. characterMakers.push(() => makeCharacter(
  33907. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33908. {
  33909. front: {
  33910. height: math.unit(5 + 3/12, "feet"),
  33911. name: "Front",
  33912. image: {
  33913. source: "./media/characters/stagglas/front.svg",
  33914. extra: 962/882,
  33915. bottom: 53/1015
  33916. }
  33917. },
  33918. feral: {
  33919. height: math.unit(335, "cm"),
  33920. name: "Feral",
  33921. image: {
  33922. source: "./media/characters/stagglas/feral.svg",
  33923. extra: 1732/1090,
  33924. bottom: 48/1780
  33925. }
  33926. },
  33927. },
  33928. [
  33929. {
  33930. name: "Normal",
  33931. height: math.unit(5 + 3/12, "feet"),
  33932. default: true
  33933. },
  33934. ]
  33935. ))
  33936. characterMakers.push(() => makeCharacter(
  33937. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33938. {
  33939. front: {
  33940. height: math.unit(5 + 4/12, "feet"),
  33941. weight: math.unit(145, "lb"),
  33942. name: "Front",
  33943. image: {
  33944. source: "./media/characters/starra/front.svg",
  33945. extra: 1790/1691,
  33946. bottom: 91/1881
  33947. }
  33948. },
  33949. },
  33950. [
  33951. {
  33952. name: "Normal",
  33953. height: math.unit(5 + 4/12, "feet"),
  33954. default: true
  33955. },
  33956. ]
  33957. ))
  33958. characterMakers.push(() => makeCharacter(
  33959. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33960. {
  33961. front: {
  33962. height: math.unit(2.2, "meters"),
  33963. name: "Front",
  33964. image: {
  33965. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33966. extra: 1194/1005,
  33967. bottom: 25/1219
  33968. }
  33969. },
  33970. },
  33971. [
  33972. {
  33973. name: "Normal",
  33974. height: math.unit(2.2, "meters"),
  33975. default: true
  33976. },
  33977. ]
  33978. ))
  33979. characterMakers.push(() => makeCharacter(
  33980. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33981. {
  33982. side: {
  33983. height: math.unit(8 + 2/12, "feet"),
  33984. weight: math.unit(1240, "lb"),
  33985. name: "Side",
  33986. image: {
  33987. source: "./media/characters/mika-valentine/side.svg",
  33988. extra: 2670/2501,
  33989. bottom: 250/2920
  33990. }
  33991. },
  33992. },
  33993. [
  33994. {
  33995. name: "Normal",
  33996. height: math.unit(8 + 2/12, "feet"),
  33997. default: true
  33998. },
  33999. ]
  34000. ))
  34001. characterMakers.push(() => makeCharacter(
  34002. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34003. {
  34004. front: {
  34005. height: math.unit(7 + 2/12, "feet"),
  34006. name: "Front",
  34007. image: {
  34008. source: "./media/characters/xoltol/front.svg",
  34009. extra: 2212/2124,
  34010. bottom: 84/2296
  34011. }
  34012. },
  34013. side: {
  34014. height: math.unit(7 + 2/12, "feet"),
  34015. name: "Side",
  34016. image: {
  34017. source: "./media/characters/xoltol/side.svg",
  34018. extra: 2273/2197,
  34019. bottom: 26/2299
  34020. }
  34021. },
  34022. hand: {
  34023. height: math.unit(2.5, "feet"),
  34024. name: "Hand",
  34025. image: {
  34026. source: "./media/characters/xoltol/hand.svg"
  34027. }
  34028. },
  34029. },
  34030. [
  34031. {
  34032. name: "Small-ish",
  34033. height: math.unit(5 + 11/12, "feet")
  34034. },
  34035. {
  34036. name: "Normal",
  34037. height: math.unit(7 + 2/12, "feet")
  34038. },
  34039. {
  34040. name: "\"Macro\"",
  34041. height: math.unit(14 + 9/12, "feet"),
  34042. default: true
  34043. },
  34044. {
  34045. name: "Alternate Height",
  34046. height: math.unit(20, "feet")
  34047. },
  34048. {
  34049. name: "Actually Macro",
  34050. height: math.unit(100, "feet")
  34051. },
  34052. ]
  34053. ))
  34054. characterMakers.push(() => makeCharacter(
  34055. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34056. {
  34057. front: {
  34058. height: math.unit(5 + 2/12, "feet"),
  34059. name: "Front",
  34060. image: {
  34061. source: "./media/characters/kotetsu-redwood/front.svg",
  34062. extra: 1053/942,
  34063. bottom: 60/1113
  34064. }
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "Normal",
  34070. height: math.unit(5 + 2/12, "feet"),
  34071. default: true
  34072. },
  34073. ]
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34077. {
  34078. front: {
  34079. height: math.unit(2.4, "meters"),
  34080. weight: math.unit(125, "kg"),
  34081. name: "Front",
  34082. image: {
  34083. source: "./media/characters/lilith/front.svg",
  34084. extra: 1590/1513,
  34085. bottom: 203/1793
  34086. }
  34087. },
  34088. },
  34089. [
  34090. {
  34091. name: "Humanoid",
  34092. height: math.unit(2.4, "meters")
  34093. },
  34094. {
  34095. name: "Normal",
  34096. height: math.unit(6, "meters"),
  34097. default: true
  34098. },
  34099. {
  34100. name: "Largest",
  34101. height: math.unit(55, "meters")
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(8 + 4/12, "feet"),
  34110. weight: math.unit(535, "lb"),
  34111. name: "Front",
  34112. image: {
  34113. source: "./media/characters/beh'kah-bolger/front.svg",
  34114. extra: 1660/1603,
  34115. bottom: 37/1697
  34116. }
  34117. },
  34118. },
  34119. [
  34120. {
  34121. name: "Normal",
  34122. height: math.unit(8 + 4/12, "feet"),
  34123. default: true
  34124. },
  34125. {
  34126. name: "Kaiju",
  34127. height: math.unit(250, "feet")
  34128. },
  34129. {
  34130. name: "Still Growing",
  34131. height: math.unit(10, "miles")
  34132. },
  34133. {
  34134. name: "Continental",
  34135. height: math.unit(5000, "miles")
  34136. },
  34137. {
  34138. name: "Final Form",
  34139. height: math.unit(2500000, "miles")
  34140. },
  34141. ]
  34142. ))
  34143. characterMakers.push(() => makeCharacter(
  34144. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34145. {
  34146. front: {
  34147. height: math.unit(7 + 2/12, "feet"),
  34148. weight: math.unit(230, "kg"),
  34149. name: "Front",
  34150. image: {
  34151. source: "./media/characters/tatyana-milewska/front.svg",
  34152. extra: 1199/1150,
  34153. bottom: 86/1285
  34154. }
  34155. },
  34156. },
  34157. [
  34158. {
  34159. name: "Normal",
  34160. height: math.unit(7 + 2/12, "feet"),
  34161. default: true
  34162. },
  34163. {
  34164. name: "Big",
  34165. height: math.unit(12, "feet")
  34166. },
  34167. {
  34168. name: "Minimacro",
  34169. height: math.unit(20, "feet")
  34170. },
  34171. {
  34172. name: "Macro",
  34173. height: math.unit(120, "feet")
  34174. },
  34175. ]
  34176. ))
  34177. characterMakers.push(() => makeCharacter(
  34178. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34179. {
  34180. front: {
  34181. height: math.unit(7 + 8/12, "feet"),
  34182. weight: math.unit(152, "kg"),
  34183. name: "Front",
  34184. image: {
  34185. source: "./media/characters/helen-arri/front.svg",
  34186. extra: 440/423,
  34187. bottom: 14/454
  34188. }
  34189. },
  34190. back: {
  34191. height: math.unit(7 + 8/12, "feet"),
  34192. weight: math.unit(152, "kg"),
  34193. name: "Back",
  34194. image: {
  34195. source: "./media/characters/helen-arri/back.svg",
  34196. extra: 443/426,
  34197. bottom: 8/451
  34198. }
  34199. },
  34200. },
  34201. [
  34202. {
  34203. name: "Normal",
  34204. height: math.unit(7 + 8/12, "feet"),
  34205. default: true
  34206. },
  34207. {
  34208. name: "Big",
  34209. height: math.unit(14, "feet")
  34210. },
  34211. {
  34212. name: "Minimacro",
  34213. height: math.unit(24, "feet")
  34214. },
  34215. {
  34216. name: "Macro",
  34217. height: math.unit(140, "feet")
  34218. },
  34219. ]
  34220. ))
  34221. characterMakers.push(() => makeCharacter(
  34222. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34223. {
  34224. front: {
  34225. height: math.unit(6, "meters"),
  34226. name: "Front",
  34227. image: {
  34228. source: "./media/characters/ehanu-rehu/front.svg",
  34229. extra: 1800/1800,
  34230. bottom: 59/1859
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(6, "meters"),
  34238. default: true
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34244. {
  34245. front: {
  34246. height: math.unit(7 + 3/12, "feet"),
  34247. name: "Front",
  34248. image: {
  34249. source: "./media/characters/renholder/front.svg",
  34250. extra: 3096/2960,
  34251. bottom: 250/3346
  34252. }
  34253. },
  34254. },
  34255. [
  34256. {
  34257. name: "Normal Bat",
  34258. height: math.unit(7 + 3/12, "feet"),
  34259. default: true
  34260. },
  34261. {
  34262. name: "Slightly Tall Bat",
  34263. height: math.unit(100, "feet")
  34264. },
  34265. {
  34266. name: "Big Bat",
  34267. height: math.unit(1000, "feet")
  34268. },
  34269. {
  34270. name: "City-Sized Bat",
  34271. height: math.unit(200000, "feet")
  34272. },
  34273. {
  34274. name: "Bigger Bat",
  34275. height: math.unit(10000, "miles")
  34276. },
  34277. {
  34278. name: "Solar Sized Bat",
  34279. height: math.unit(100, "AU")
  34280. },
  34281. {
  34282. name: "Galactic Bat",
  34283. height: math.unit(200000, "lightyears")
  34284. },
  34285. {
  34286. name: "Universally Known Bat",
  34287. height: math.unit(1, "universe")
  34288. },
  34289. ]
  34290. ))
  34291. characterMakers.push(() => makeCharacter(
  34292. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34293. {
  34294. front: {
  34295. height: math.unit(6 + 11/12, "feet"),
  34296. weight: math.unit(250, "lb"),
  34297. name: "Front",
  34298. image: {
  34299. source: "./media/characters/cookiecat/front.svg",
  34300. extra: 893/827,
  34301. bottom: 14/907
  34302. }
  34303. },
  34304. },
  34305. [
  34306. {
  34307. name: "Micro",
  34308. height: math.unit(3, "inches")
  34309. },
  34310. {
  34311. name: "Normal",
  34312. height: math.unit(6 + 11/12, "feet"),
  34313. default: true
  34314. },
  34315. {
  34316. name: "Macro",
  34317. height: math.unit(100, "feet")
  34318. },
  34319. {
  34320. name: "Macro+",
  34321. height: math.unit(404, "feet")
  34322. },
  34323. {
  34324. name: "Megamacro",
  34325. height: math.unit(165, "miles")
  34326. },
  34327. {
  34328. name: "Planetary",
  34329. height: math.unit(4600, "miles")
  34330. },
  34331. ]
  34332. ))
  34333. characterMakers.push(() => makeCharacter(
  34334. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34335. {
  34336. front: {
  34337. height: math.unit(10 + 3/12, "feet"),
  34338. weight: math.unit(1500, "lb"),
  34339. name: "Front",
  34340. image: {
  34341. source: "./media/characters/tux-kusanagi/front.svg",
  34342. extra: 944/840,
  34343. bottom: 39/983
  34344. }
  34345. },
  34346. back: {
  34347. height: math.unit(10 + 3/12, "feet"),
  34348. weight: math.unit(1500, "lb"),
  34349. name: "Back",
  34350. image: {
  34351. source: "./media/characters/tux-kusanagi/back.svg",
  34352. extra: 941/842,
  34353. bottom: 28/969
  34354. }
  34355. },
  34356. rump: {
  34357. height: math.unit(5.25, "feet"),
  34358. name: "Rump",
  34359. image: {
  34360. source: "./media/characters/tux-kusanagi/rump.svg"
  34361. }
  34362. },
  34363. beak: {
  34364. height: math.unit(1.54, "feet"),
  34365. name: "Beak",
  34366. image: {
  34367. source: "./media/characters/tux-kusanagi/beak.svg"
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(10 + 3/12, "feet"),
  34375. default: true
  34376. },
  34377. ]
  34378. ))
  34379. characterMakers.push(() => makeCharacter(
  34380. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34381. {
  34382. front: {
  34383. height: math.unit(58, "feet"),
  34384. weight: math.unit(200, "tons"),
  34385. name: "Front",
  34386. image: {
  34387. source: "./media/characters/uzarmazari/front.svg",
  34388. extra: 1575/1455,
  34389. bottom: 152/1727
  34390. }
  34391. },
  34392. back: {
  34393. height: math.unit(58, "feet"),
  34394. weight: math.unit(200, "tons"),
  34395. name: "Back",
  34396. image: {
  34397. source: "./media/characters/uzarmazari/back.svg",
  34398. extra: 1585/1510,
  34399. bottom: 157/1742
  34400. }
  34401. },
  34402. head: {
  34403. height: math.unit(26, "feet"),
  34404. name: "Head",
  34405. image: {
  34406. source: "./media/characters/uzarmazari/head.svg"
  34407. }
  34408. },
  34409. },
  34410. [
  34411. {
  34412. name: "Normal",
  34413. height: math.unit(58, "feet"),
  34414. default: true
  34415. },
  34416. ]
  34417. ))
  34418. characterMakers.push(() => makeCharacter(
  34419. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34420. {
  34421. side: {
  34422. height: math.unit(15, "feet"),
  34423. name: "Side",
  34424. image: {
  34425. source: "./media/characters/akitu/side.svg",
  34426. extra: 1421/1321,
  34427. bottom: 157/1578
  34428. }
  34429. },
  34430. front: {
  34431. height: math.unit(15, "feet"),
  34432. name: "Front",
  34433. image: {
  34434. source: "./media/characters/akitu/front.svg",
  34435. extra: 1435/1326,
  34436. bottom: 232/1667
  34437. }
  34438. },
  34439. },
  34440. [
  34441. {
  34442. name: "Normal",
  34443. height: math.unit(15, "feet"),
  34444. default: true
  34445. },
  34446. ]
  34447. ))
  34448. characterMakers.push(() => makeCharacter(
  34449. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34450. {
  34451. front: {
  34452. height: math.unit(10 + 8/12, "feet"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/azalie-croixland/front.svg",
  34456. extra: 1972/1856,
  34457. bottom: 31/2003
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Original Height",
  34464. height: math.unit(5 + 4/12, "feet")
  34465. },
  34466. {
  34467. name: "Normal Height",
  34468. height: math.unit(10 + 8/12, "feet"),
  34469. default: true
  34470. },
  34471. ]
  34472. ))
  34473. characterMakers.push(() => makeCharacter(
  34474. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34475. {
  34476. side: {
  34477. height: math.unit(7 + 1/12, "feet"),
  34478. weight: math.unit(245, "lb"),
  34479. name: "Side",
  34480. image: {
  34481. source: "./media/characters/kavus-kazian/side.svg",
  34482. extra: 349/342,
  34483. bottom: 15/364
  34484. }
  34485. },
  34486. },
  34487. [
  34488. {
  34489. name: "Normal",
  34490. height: math.unit(7 + 1/12, "feet"),
  34491. default: true
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34497. {
  34498. normal: {
  34499. height: math.unit(5 + 11/12, "feet"),
  34500. name: "Normal",
  34501. image: {
  34502. source: "./media/characters/moonlight-rose/normal.svg",
  34503. extra: 1979/1835,
  34504. bottom: 14/1993
  34505. }
  34506. },
  34507. demon: {
  34508. height: math.unit(5, "km"),
  34509. name: "Demon",
  34510. image: {
  34511. source: "./media/characters/moonlight-rose/demon.svg",
  34512. extra: 986/916,
  34513. bottom: 28/1014
  34514. }
  34515. },
  34516. },
  34517. [
  34518. {
  34519. name: "\"Natural\" height",
  34520. height: math.unit(5 + 11/12, "feet")
  34521. },
  34522. {
  34523. name: "Comfortable Size",
  34524. height: math.unit(40, "meters")
  34525. },
  34526. {
  34527. name: "Common Size",
  34528. height: math.unit(50, "km"),
  34529. default: true
  34530. },
  34531. {
  34532. name: "Demonic",
  34533. height: math.unit(1.24415e+21, "meters")
  34534. },
  34535. ]
  34536. ))
  34537. characterMakers.push(() => makeCharacter(
  34538. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34539. {
  34540. front: {
  34541. height: math.unit(16, "feet"),
  34542. weight: math.unit(610, "kg"),
  34543. name: "Front",
  34544. image: {
  34545. source: "./media/characters/huckle/front.svg",
  34546. extra: 1731/1625,
  34547. bottom: 33/1764
  34548. }
  34549. },
  34550. back: {
  34551. height: math.unit(16, "feet"),
  34552. weight: math.unit(610, "kg"),
  34553. name: "Back",
  34554. image: {
  34555. source: "./media/characters/huckle/back.svg",
  34556. extra: 1738/1651,
  34557. bottom: 37/1775
  34558. }
  34559. },
  34560. laughing: {
  34561. height: math.unit(3.75, "feet"),
  34562. name: "Laughing",
  34563. image: {
  34564. source: "./media/characters/huckle/laughing.svg"
  34565. }
  34566. },
  34567. angry: {
  34568. height: math.unit(4.15, "feet"),
  34569. name: "Angry",
  34570. image: {
  34571. source: "./media/characters/huckle/angry.svg"
  34572. }
  34573. },
  34574. },
  34575. [
  34576. {
  34577. name: "Normal",
  34578. height: math.unit(16, "feet"),
  34579. default: true
  34580. },
  34581. {
  34582. name: "Mini Macro",
  34583. height: math.unit(463, "feet")
  34584. },
  34585. {
  34586. name: "Macro",
  34587. height: math.unit(1680, "meters")
  34588. },
  34589. {
  34590. name: "Mega Macro",
  34591. height: math.unit(175, "km")
  34592. },
  34593. {
  34594. name: "Terra Macro",
  34595. height: math.unit(32, "gigameters")
  34596. },
  34597. {
  34598. name: "Multiverse+",
  34599. height: math.unit(2.56e23, "yottameters")
  34600. },
  34601. ]
  34602. ))
  34603. characterMakers.push(() => makeCharacter(
  34604. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34605. {
  34606. front: {
  34607. height: math.unit(6 + 9/12, "feet"),
  34608. weight: math.unit(280, "lb"),
  34609. name: "Front",
  34610. image: {
  34611. source: "./media/characters/candy/front.svg",
  34612. extra: 234/217,
  34613. bottom: 11/245
  34614. }
  34615. },
  34616. },
  34617. [
  34618. {
  34619. name: "Really Small",
  34620. height: math.unit(0.1, "nm")
  34621. },
  34622. {
  34623. name: "Micro",
  34624. height: math.unit(2, "inches")
  34625. },
  34626. {
  34627. name: "Normal",
  34628. height: math.unit(6 + 9/12, "feet"),
  34629. default: true
  34630. },
  34631. {
  34632. name: "Small Macro",
  34633. height: math.unit(69, "feet")
  34634. },
  34635. {
  34636. name: "Macro",
  34637. height: math.unit(160, "feet")
  34638. },
  34639. {
  34640. name: "Megamacro",
  34641. height: math.unit(22000, "miles")
  34642. },
  34643. {
  34644. name: "Gigamacro",
  34645. height: math.unit(50000, "miles")
  34646. },
  34647. ]
  34648. ))
  34649. characterMakers.push(() => makeCharacter(
  34650. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34651. {
  34652. front: {
  34653. height: math.unit(4, "feet"),
  34654. weight: math.unit(90, "lb"),
  34655. name: "Front",
  34656. image: {
  34657. source: "./media/characters/joey-mcdonald/front.svg",
  34658. extra: 1059/852,
  34659. bottom: 33/1092
  34660. }
  34661. },
  34662. back: {
  34663. height: math.unit(4, "feet"),
  34664. weight: math.unit(90, "lb"),
  34665. name: "Back",
  34666. image: {
  34667. source: "./media/characters/joey-mcdonald/back.svg",
  34668. extra: 1077/879,
  34669. bottom: 5/1082
  34670. }
  34671. },
  34672. frontKobold: {
  34673. height: math.unit(4, "feet"),
  34674. weight: math.unit(100, "lb"),
  34675. name: "Front-kobold",
  34676. image: {
  34677. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34678. extra: 1480/1367,
  34679. bottom: 0/1480
  34680. }
  34681. },
  34682. backKobold: {
  34683. height: math.unit(4, "feet"),
  34684. weight: math.unit(100, "lb"),
  34685. name: "Back-kobold",
  34686. image: {
  34687. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34688. extra: 1449/1361,
  34689. bottom: 0/1449
  34690. }
  34691. },
  34692. },
  34693. [
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(4, "feet"),
  34697. default: true
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34703. {
  34704. front: {
  34705. height: math.unit(12 + 6/12, "feet"),
  34706. name: "Front",
  34707. image: {
  34708. source: "./media/characters/kass-lockheed/front.svg",
  34709. extra: 354/343,
  34710. bottom: 9/363
  34711. }
  34712. },
  34713. back: {
  34714. height: math.unit(12 + 6/12, "feet"),
  34715. name: "Back",
  34716. image: {
  34717. source: "./media/characters/kass-lockheed/back.svg",
  34718. extra: 364/352,
  34719. bottom: 3/367
  34720. }
  34721. },
  34722. dick: {
  34723. height: math.unit(3.12, "feet"),
  34724. name: "Dick",
  34725. image: {
  34726. source: "./media/characters/kass-lockheed/dick.svg"
  34727. }
  34728. },
  34729. head: {
  34730. height: math.unit(2.6, "feet"),
  34731. name: "Head",
  34732. image: {
  34733. source: "./media/characters/kass-lockheed/head.svg"
  34734. }
  34735. },
  34736. bleh: {
  34737. height: math.unit(2.85, "feet"),
  34738. name: "Bleh",
  34739. image: {
  34740. source: "./media/characters/kass-lockheed/bleh.svg"
  34741. }
  34742. },
  34743. smug: {
  34744. height: math.unit(2.85, "feet"),
  34745. name: "Smug",
  34746. image: {
  34747. source: "./media/characters/kass-lockheed/smug.svg"
  34748. }
  34749. },
  34750. },
  34751. [
  34752. {
  34753. name: "Normal",
  34754. height: math.unit(12 + 6/12, "feet"),
  34755. default: true
  34756. },
  34757. ]
  34758. ))
  34759. characterMakers.push(() => makeCharacter(
  34760. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34761. {
  34762. front: {
  34763. height: math.unit(6 + 2/12, "feet"),
  34764. name: "Front",
  34765. image: {
  34766. source: "./media/characters/taylor/front.svg",
  34767. extra: 639/495,
  34768. bottom: 12/651
  34769. }
  34770. },
  34771. },
  34772. [
  34773. {
  34774. name: "Normal",
  34775. height: math.unit(6 + 2/12, "feet"),
  34776. default: true
  34777. },
  34778. {
  34779. name: "Big",
  34780. height: math.unit(15, "feet")
  34781. },
  34782. {
  34783. name: "Lorg",
  34784. height: math.unit(80, "feet")
  34785. },
  34786. {
  34787. name: "Too Lorg",
  34788. height: math.unit(120, "feet")
  34789. },
  34790. ]
  34791. ))
  34792. characterMakers.push(() => makeCharacter(
  34793. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34794. {
  34795. front: {
  34796. height: math.unit(15, "feet"),
  34797. name: "Front",
  34798. image: {
  34799. source: "./media/characters/kaizer/front.svg",
  34800. extra: 1612/1436,
  34801. bottom: 43/1655
  34802. }
  34803. },
  34804. },
  34805. [
  34806. {
  34807. name: "Normal",
  34808. height: math.unit(15, "feet"),
  34809. default: true
  34810. },
  34811. ]
  34812. ))
  34813. characterMakers.push(() => makeCharacter(
  34814. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34815. {
  34816. front: {
  34817. height: math.unit(2, "feet"),
  34818. weight: math.unit(30, "lb"),
  34819. name: "Front",
  34820. image: {
  34821. source: "./media/characters/sandy/front.svg",
  34822. extra: 1439/1307,
  34823. bottom: 194/1633
  34824. }
  34825. },
  34826. },
  34827. [
  34828. {
  34829. name: "Normal",
  34830. height: math.unit(2, "feet"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34837. {
  34838. front: {
  34839. height: math.unit(3, "feet"),
  34840. name: "Front",
  34841. image: {
  34842. source: "./media/characters/mellvi/front.svg",
  34843. extra: 1831/1630,
  34844. bottom: 58/1889
  34845. }
  34846. },
  34847. },
  34848. [
  34849. {
  34850. name: "Normal",
  34851. height: math.unit(3, "feet"),
  34852. default: true
  34853. },
  34854. ]
  34855. ))
  34856. characterMakers.push(() => makeCharacter(
  34857. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34858. {
  34859. front: {
  34860. height: math.unit(5 + 11/12, "feet"),
  34861. weight: math.unit(200, "lb"),
  34862. name: "Front",
  34863. image: {
  34864. source: "./media/characters/shirou/front.svg",
  34865. extra: 2491/2383,
  34866. bottom: 189/2680
  34867. }
  34868. },
  34869. back: {
  34870. height: math.unit(5 + 11/12, "feet"),
  34871. weight: math.unit(200, "lb"),
  34872. name: "Back",
  34873. image: {
  34874. source: "./media/characters/shirou/back.svg",
  34875. extra: 2554/2450,
  34876. bottom: 76/2630
  34877. }
  34878. },
  34879. },
  34880. [
  34881. {
  34882. name: "Normal",
  34883. height: math.unit(5 + 11/12, "feet"),
  34884. default: true
  34885. },
  34886. ]
  34887. ))
  34888. characterMakers.push(() => makeCharacter(
  34889. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34890. {
  34891. front: {
  34892. height: math.unit(6 + 3/12, "feet"),
  34893. weight: math.unit(177, "lb"),
  34894. name: "Front",
  34895. image: {
  34896. source: "./media/characters/noryu/front.svg",
  34897. extra: 973/885,
  34898. bottom: 10/983
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Normal",
  34905. height: math.unit(6 + 3/12, "feet"),
  34906. default: true
  34907. },
  34908. ]
  34909. ))
  34910. characterMakers.push(() => makeCharacter(
  34911. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34912. {
  34913. front: {
  34914. height: math.unit(5 + 6/12, "feet"),
  34915. weight: math.unit(170, "lb"),
  34916. name: "Front",
  34917. image: {
  34918. source: "./media/characters/mevolas-rubenido/front.svg",
  34919. extra: 2109/1901,
  34920. bottom: 96/2205
  34921. }
  34922. },
  34923. },
  34924. [
  34925. {
  34926. name: "Normal",
  34927. height: math.unit(5 + 6/12, "feet"),
  34928. default: true
  34929. },
  34930. ]
  34931. ))
  34932. characterMakers.push(() => makeCharacter(
  34933. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34934. {
  34935. front: {
  34936. height: math.unit(100, "feet"),
  34937. name: "Front",
  34938. image: {
  34939. source: "./media/characters/dee/front.svg",
  34940. extra: 2153/2036,
  34941. bottom: 59/2212
  34942. }
  34943. },
  34944. back: {
  34945. height: math.unit(100, "feet"),
  34946. name: "Back",
  34947. image: {
  34948. source: "./media/characters/dee/back.svg",
  34949. extra: 2183/2058,
  34950. bottom: 75/2258
  34951. }
  34952. },
  34953. foot: {
  34954. height: math.unit(19.43, "feet"),
  34955. name: "Foot",
  34956. image: {
  34957. source: "./media/characters/dee/foot.svg"
  34958. }
  34959. },
  34960. hoof: {
  34961. height: math.unit(20.6, "feet"),
  34962. name: "Hoof",
  34963. image: {
  34964. source: "./media/characters/dee/hoof.svg"
  34965. }
  34966. },
  34967. },
  34968. [
  34969. {
  34970. name: "Macro",
  34971. height: math.unit(100, "feet"),
  34972. default: true
  34973. },
  34974. ]
  34975. ))
  34976. characterMakers.push(() => makeCharacter(
  34977. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34978. {
  34979. front: {
  34980. height: math.unit(5 + 6/12, "feet"),
  34981. name: "Front",
  34982. image: {
  34983. source: "./media/characters/teh/front.svg",
  34984. extra: 1002/847,
  34985. bottom: 62/1064
  34986. }
  34987. },
  34988. },
  34989. [
  34990. {
  34991. name: "Normal",
  34992. height: math.unit(5 + 6/12, "feet"),
  34993. default: true
  34994. },
  34995. ]
  34996. ))
  34997. characterMakers.push(() => makeCharacter(
  34998. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34999. {
  35000. side: {
  35001. height: math.unit(6 + 1/12, "feet"),
  35002. weight: math.unit(204, "lb"),
  35003. name: "Side",
  35004. image: {
  35005. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35006. extra: 974/775,
  35007. bottom: 169/1143
  35008. }
  35009. },
  35010. sitting: {
  35011. height: math.unit(6 + 2/12, "feet"),
  35012. weight: math.unit(204, "lb"),
  35013. name: "Sitting",
  35014. image: {
  35015. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35016. extra: 1175/964,
  35017. bottom: 378/1553
  35018. }
  35019. },
  35020. },
  35021. [
  35022. {
  35023. name: "Normal",
  35024. height: math.unit(6 + 1/12, "feet"),
  35025. default: true
  35026. },
  35027. ]
  35028. ))
  35029. characterMakers.push(() => makeCharacter(
  35030. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35031. {
  35032. front: {
  35033. height: math.unit(6, "inches"),
  35034. name: "Front",
  35035. image: {
  35036. source: "./media/characters/tululi/front.svg",
  35037. extra: 1997/1876,
  35038. bottom: 20/2017
  35039. }
  35040. },
  35041. },
  35042. [
  35043. {
  35044. name: "Normal",
  35045. height: math.unit(6, "inches"),
  35046. default: true
  35047. },
  35048. ]
  35049. ))
  35050. characterMakers.push(() => makeCharacter(
  35051. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35052. {
  35053. front: {
  35054. height: math.unit(4 + 1/12, "feet"),
  35055. name: "Front",
  35056. image: {
  35057. source: "./media/characters/star/front.svg",
  35058. extra: 1493/1189,
  35059. bottom: 48/1541
  35060. }
  35061. },
  35062. },
  35063. [
  35064. {
  35065. name: "Normal",
  35066. height: math.unit(4 + 1/12, "feet"),
  35067. default: true
  35068. },
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35073. {
  35074. front: {
  35075. height: math.unit(6 + 3/12, "feet"),
  35076. name: "Front",
  35077. image: {
  35078. source: "./media/characters/comet/front.svg",
  35079. extra: 1681/1462,
  35080. bottom: 26/1707
  35081. }
  35082. },
  35083. },
  35084. [
  35085. {
  35086. name: "Normal",
  35087. height: math.unit(6 + 3/12, "feet"),
  35088. default: true
  35089. },
  35090. ]
  35091. ))
  35092. characterMakers.push(() => makeCharacter(
  35093. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35094. {
  35095. front: {
  35096. height: math.unit(950, "feet"),
  35097. name: "Front",
  35098. image: {
  35099. source: "./media/characters/vortex/front.svg",
  35100. extra: 1497/1434,
  35101. bottom: 56/1553
  35102. }
  35103. },
  35104. maw: {
  35105. height: math.unit(285, "feet"),
  35106. name: "Maw",
  35107. image: {
  35108. source: "./media/characters/vortex/maw.svg"
  35109. }
  35110. },
  35111. },
  35112. [
  35113. {
  35114. name: "Macro",
  35115. height: math.unit(950, "feet"),
  35116. default: true
  35117. },
  35118. ]
  35119. ))
  35120. characterMakers.push(() => makeCharacter(
  35121. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35122. {
  35123. front: {
  35124. height: math.unit(600, "feet"),
  35125. weight: math.unit(0.02, "grams"),
  35126. name: "Front",
  35127. image: {
  35128. source: "./media/characters/doodle/front.svg",
  35129. extra: 1578/1413,
  35130. bottom: 37/1615
  35131. }
  35132. },
  35133. },
  35134. [
  35135. {
  35136. name: "Macro",
  35137. height: math.unit(600, "feet"),
  35138. default: true
  35139. },
  35140. ]
  35141. ))
  35142. characterMakers.push(() => makeCharacter(
  35143. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35144. {
  35145. front: {
  35146. height: math.unit(6 + 6/12, "feet"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/jai/front.svg",
  35150. extra: 1645/1534,
  35151. bottom: 115/1760
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(6 + 6/12, "feet"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(6 + 8/12, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/pixel/front.svg",
  35171. extra: 1900/1735,
  35172. bottom: 63/1963
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(6 + 8/12, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(4 + 11/12, "feet"),
  35189. weight: math.unit(111, "lb"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/rhett/front.svg",
  35193. extra: 1682/1586,
  35194. bottom: 92/1774
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Mini",
  35201. height: math.unit(1 + 1/12, "feet")
  35202. },
  35203. {
  35204. name: "Normal",
  35205. height: math.unit(4 + 11/12, "feet"),
  35206. default: true
  35207. },
  35208. ]
  35209. ))
  35210. characterMakers.push(() => makeCharacter(
  35211. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35212. {
  35213. front: {
  35214. height: math.unit(3 + 3/12, "feet"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/penny/front.svg",
  35218. extra: 1406/1311,
  35219. bottom: 26/1432
  35220. }
  35221. },
  35222. },
  35223. [
  35224. {
  35225. name: "Normal",
  35226. height: math.unit(3 + 3/12, "feet"),
  35227. default: true
  35228. },
  35229. ]
  35230. ))
  35231. characterMakers.push(() => makeCharacter(
  35232. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35233. {
  35234. front: {
  35235. height: math.unit(4 + 11/12, "feet"),
  35236. name: "Front",
  35237. image: {
  35238. source: "./media/characters/monty/front.svg",
  35239. extra: 1479/1209,
  35240. bottom: 0/1479
  35241. }
  35242. },
  35243. },
  35244. [
  35245. {
  35246. name: "Normal",
  35247. height: math.unit(4 + 11/12, "feet"),
  35248. default: true
  35249. },
  35250. ]
  35251. ))
  35252. characterMakers.push(() => makeCharacter(
  35253. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35254. {
  35255. front: {
  35256. height: math.unit(8 + 4/12, "feet"),
  35257. name: "Front",
  35258. image: {
  35259. source: "./media/characters/sterling/front.svg",
  35260. extra: 1420/1236,
  35261. bottom: 27/1447
  35262. }
  35263. },
  35264. },
  35265. [
  35266. {
  35267. name: "Normal",
  35268. height: math.unit(8 + 4/12, "feet"),
  35269. default: true
  35270. },
  35271. ]
  35272. ))
  35273. characterMakers.push(() => makeCharacter(
  35274. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35275. {
  35276. front: {
  35277. height: math.unit(15, "feet"),
  35278. name: "Front",
  35279. image: {
  35280. source: "./media/characters/marble/front.svg",
  35281. extra: 973/937,
  35282. bottom: 32/1005
  35283. }
  35284. },
  35285. },
  35286. [
  35287. {
  35288. name: "Normal",
  35289. height: math.unit(15, "feet"),
  35290. default: true
  35291. },
  35292. ]
  35293. ))
  35294. characterMakers.push(() => makeCharacter(
  35295. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35296. {
  35297. front: {
  35298. height: math.unit(3, "inches"),
  35299. name: "Front",
  35300. image: {
  35301. source: "./media/characters/powder/front.svg",
  35302. extra: 1504/1334,
  35303. bottom: 518/2022
  35304. }
  35305. },
  35306. },
  35307. [
  35308. {
  35309. name: "Normal",
  35310. height: math.unit(3, "inches"),
  35311. default: true
  35312. },
  35313. ]
  35314. ))
  35315. characterMakers.push(() => makeCharacter(
  35316. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35317. {
  35318. front: {
  35319. height: math.unit(4 + 5/12, "feet"),
  35320. name: "Front",
  35321. image: {
  35322. source: "./media/characters/joey-raccoon/front.svg",
  35323. extra: 1273/1197,
  35324. bottom: 0/1273
  35325. }
  35326. },
  35327. },
  35328. [
  35329. {
  35330. name: "Normal",
  35331. height: math.unit(4 + 5/12, "feet"),
  35332. default: true
  35333. },
  35334. ]
  35335. ))
  35336. characterMakers.push(() => makeCharacter(
  35337. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35338. {
  35339. front: {
  35340. height: math.unit(8 + 4/12, "feet"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/vick/front.svg",
  35344. extra: 2187/2118,
  35345. bottom: 47/2234
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Normal",
  35352. height: math.unit(8 + 4/12, "feet"),
  35353. default: true
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35359. {
  35360. front: {
  35361. height: math.unit(5 + 5/12, "feet"),
  35362. name: "Front",
  35363. image: {
  35364. source: "./media/characters/mitsy/front.svg",
  35365. extra: 1842/1695,
  35366. bottom: 0/1842
  35367. }
  35368. },
  35369. },
  35370. [
  35371. {
  35372. name: "Normal",
  35373. height: math.unit(5 + 5/12, "feet"),
  35374. default: true
  35375. },
  35376. ]
  35377. ))
  35378. characterMakers.push(() => makeCharacter(
  35379. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35380. {
  35381. front: {
  35382. height: math.unit(6 + 3/12, "feet"),
  35383. name: "Front",
  35384. image: {
  35385. source: "./media/characters/silvy/front.svg",
  35386. extra: 1995/1836,
  35387. bottom: 225/2220
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(6 + 3/12, "feet"),
  35395. default: true
  35396. },
  35397. ]
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35401. {
  35402. front: {
  35403. height: math.unit(3 + 8/12, "feet"),
  35404. name: "Front",
  35405. image: {
  35406. source: "./media/characters/rodney/front.svg",
  35407. extra: 1956/1747,
  35408. bottom: 31/1987
  35409. }
  35410. },
  35411. frontDressed: {
  35412. height: math.unit(2.9, "feet"),
  35413. name: "Front (Dressed)",
  35414. image: {
  35415. source: "./media/characters/rodney/front-dressed.svg",
  35416. extra: 1382/1241,
  35417. bottom: 385/1767
  35418. }
  35419. },
  35420. },
  35421. [
  35422. {
  35423. name: "Normal",
  35424. height: math.unit(3 + 8/12, "feet"),
  35425. default: true
  35426. },
  35427. ]
  35428. ))
  35429. characterMakers.push(() => makeCharacter(
  35430. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35431. {
  35432. front: {
  35433. height: math.unit(5 + 9/12, "feet"),
  35434. weight: math.unit(194, "lbs"),
  35435. name: "Front",
  35436. image: {
  35437. source: "./media/characters/zakail-sudekai/front.svg",
  35438. extra: 2696/2533,
  35439. bottom: 248/2944
  35440. }
  35441. },
  35442. maw: {
  35443. height: math.unit(1.35, "feet"),
  35444. name: "Maw",
  35445. image: {
  35446. source: "./media/characters/zakail-sudekai/maw.svg"
  35447. }
  35448. },
  35449. },
  35450. [
  35451. {
  35452. name: "Normal",
  35453. height: math.unit(5 + 9/12, "feet"),
  35454. default: true
  35455. },
  35456. ]
  35457. ))
  35458. characterMakers.push(() => makeCharacter(
  35459. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35460. {
  35461. front: {
  35462. height: math.unit(8 + 4/12, "feet"),
  35463. weight: math.unit(1200, "lb"),
  35464. name: "Front",
  35465. image: {
  35466. source: "./media/characters/eleanor/front.svg",
  35467. extra: 1226/1192,
  35468. bottom: 52/1278
  35469. }
  35470. },
  35471. back: {
  35472. height: math.unit(8 + 4/12, "feet"),
  35473. weight: math.unit(1200, "lb"),
  35474. name: "Back",
  35475. image: {
  35476. source: "./media/characters/eleanor/back.svg",
  35477. extra: 1242/1184,
  35478. bottom: 60/1302
  35479. }
  35480. },
  35481. head: {
  35482. height: math.unit(2.62, "feet"),
  35483. name: "Head",
  35484. image: {
  35485. source: "./media/characters/eleanor/head.svg"
  35486. }
  35487. },
  35488. },
  35489. [
  35490. {
  35491. name: "Normal",
  35492. height: math.unit(8 + 4/12, "feet"),
  35493. default: true
  35494. },
  35495. ]
  35496. ))
  35497. characterMakers.push(() => makeCharacter(
  35498. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35499. {
  35500. front: {
  35501. height: math.unit(8 + 4/12, "feet"),
  35502. weight: math.unit(750, "lb"),
  35503. name: "Front",
  35504. image: {
  35505. source: "./media/characters/tanya/front.svg",
  35506. extra: 1749/1615,
  35507. bottom: 33/1782
  35508. }
  35509. },
  35510. },
  35511. [
  35512. {
  35513. name: "Normal",
  35514. height: math.unit(8 + 4/12, "feet"),
  35515. default: true
  35516. },
  35517. ]
  35518. ))
  35519. characterMakers.push(() => makeCharacter(
  35520. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35521. {
  35522. front: {
  35523. height: math.unit(5, "feet"),
  35524. weight: math.unit(225, "lb"),
  35525. name: "Front",
  35526. image: {
  35527. source: "./media/characters/cindy/front.svg",
  35528. extra: 1320/1250,
  35529. bottom: 42/1362
  35530. }
  35531. },
  35532. frontDressed: {
  35533. height: math.unit(5, "feet"),
  35534. weight: math.unit(225, "lb"),
  35535. name: "Front (Dressed)",
  35536. image: {
  35537. source: "./media/characters/cindy/front-dressed.svg",
  35538. extra: 1320/1250,
  35539. bottom: 42/1362
  35540. }
  35541. },
  35542. back: {
  35543. height: math.unit(5, "feet"),
  35544. weight: math.unit(225, "lb"),
  35545. name: "Back",
  35546. image: {
  35547. source: "./media/characters/cindy/back.svg",
  35548. extra: 1384/1346,
  35549. bottom: 14/1398
  35550. }
  35551. },
  35552. },
  35553. [
  35554. {
  35555. name: "Normal",
  35556. height: math.unit(5, "feet"),
  35557. default: true
  35558. },
  35559. ]
  35560. ))
  35561. characterMakers.push(() => makeCharacter(
  35562. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35563. {
  35564. front: {
  35565. height: math.unit(6 + 9/12, "feet"),
  35566. weight: math.unit(440, "lb"),
  35567. name: "Front",
  35568. image: {
  35569. source: "./media/characters/wilbur-owen/front.svg",
  35570. extra: 1575/1448,
  35571. bottom: 72/1647
  35572. }
  35573. },
  35574. back: {
  35575. height: math.unit(6 + 9/12, "feet"),
  35576. weight: math.unit(440, "lb"),
  35577. name: "Back",
  35578. image: {
  35579. source: "./media/characters/wilbur-owen/back.svg",
  35580. extra: 1578/1445,
  35581. bottom: 36/1614
  35582. }
  35583. },
  35584. },
  35585. [
  35586. {
  35587. name: "Normal",
  35588. height: math.unit(6 + 9/12, "feet"),
  35589. default: true
  35590. },
  35591. ]
  35592. ))
  35593. characterMakers.push(() => makeCharacter(
  35594. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35595. {
  35596. front: {
  35597. height: math.unit(6 + 5/12, "feet"),
  35598. weight: math.unit(650, "lb"),
  35599. name: "Front",
  35600. image: {
  35601. source: "./media/characters/keegan/front.svg",
  35602. extra: 2387/2198,
  35603. bottom: 33/2420
  35604. }
  35605. },
  35606. side: {
  35607. height: math.unit(6 + 5/12, "feet"),
  35608. weight: math.unit(650, "lb"),
  35609. name: "Side",
  35610. image: {
  35611. source: "./media/characters/keegan/side.svg",
  35612. extra: 2390/2202,
  35613. bottom: 47/2437
  35614. }
  35615. },
  35616. back: {
  35617. height: math.unit(6 + 5/12, "feet"),
  35618. weight: math.unit(650, "lb"),
  35619. name: "Back",
  35620. image: {
  35621. source: "./media/characters/keegan/back.svg",
  35622. extra: 2418/2268,
  35623. bottom: 15/2433
  35624. }
  35625. },
  35626. frontSfw: {
  35627. height: math.unit(6 + 5/12, "feet"),
  35628. weight: math.unit(650, "lb"),
  35629. name: "Front (SFW)",
  35630. image: {
  35631. source: "./media/characters/keegan/front-sfw.svg",
  35632. extra: 2387/2198,
  35633. bottom: 33/2420
  35634. }
  35635. },
  35636. beans: {
  35637. height: math.unit(1.85, "feet"),
  35638. name: "Beans",
  35639. image: {
  35640. source: "./media/characters/keegan/beans.svg"
  35641. }
  35642. },
  35643. },
  35644. [
  35645. {
  35646. name: "Normal",
  35647. height: math.unit(6 + 5/12, "feet"),
  35648. default: true
  35649. },
  35650. ]
  35651. ))
  35652. characterMakers.push(() => makeCharacter(
  35653. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35654. {
  35655. front: {
  35656. height: math.unit(9, "feet"),
  35657. name: "Front",
  35658. image: {
  35659. source: "./media/characters/colton/front.svg",
  35660. extra: 1589/1326,
  35661. bottom: 139/1728
  35662. }
  35663. },
  35664. },
  35665. [
  35666. {
  35667. name: "Normal",
  35668. height: math.unit(9, "feet"),
  35669. default: true
  35670. },
  35671. ]
  35672. ))
  35673. characterMakers.push(() => makeCharacter(
  35674. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35675. {
  35676. front: {
  35677. height: math.unit(2 + 9/12, "feet"),
  35678. name: "Front",
  35679. image: {
  35680. source: "./media/characters/bora/front.svg",
  35681. extra: 1265/1250,
  35682. bottom: 24/1289
  35683. }
  35684. },
  35685. },
  35686. [
  35687. {
  35688. name: "Normal",
  35689. height: math.unit(2 + 9/12, "feet"),
  35690. default: true
  35691. },
  35692. ]
  35693. ))
  35694. characterMakers.push(() => makeCharacter(
  35695. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35696. {
  35697. front: {
  35698. height: math.unit(8, "feet"),
  35699. name: "Front",
  35700. image: {
  35701. source: "./media/characters/myu-myu/front.svg",
  35702. extra: 1949/1857,
  35703. bottom: 90/2039
  35704. }
  35705. },
  35706. },
  35707. [
  35708. {
  35709. name: "Normal",
  35710. height: math.unit(8, "feet"),
  35711. default: true
  35712. },
  35713. {
  35714. name: "Big",
  35715. height: math.unit(15, "feet")
  35716. },
  35717. {
  35718. name: "BIG",
  35719. height: math.unit(25, "feet")
  35720. },
  35721. ]
  35722. ))
  35723. characterMakers.push(() => makeCharacter(
  35724. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35725. {
  35726. side: {
  35727. height: math.unit(7 + 5/12, "feet"),
  35728. weight: math.unit(2800, "lb"),
  35729. name: "Side",
  35730. image: {
  35731. source: "./media/characters/haloren/side.svg",
  35732. extra: 1793/409,
  35733. bottom: 59/1852
  35734. }
  35735. },
  35736. frontPaw: {
  35737. height: math.unit(2.36, "feet"),
  35738. name: "Front paw",
  35739. image: {
  35740. source: "./media/characters/haloren/front-paw.svg"
  35741. }
  35742. },
  35743. hindPaw: {
  35744. height: math.unit(3.18, "feet"),
  35745. name: "Hind paw",
  35746. image: {
  35747. source: "./media/characters/haloren/hind-paw.svg"
  35748. }
  35749. },
  35750. maw: {
  35751. height: math.unit(5.05, "feet"),
  35752. name: "Maw",
  35753. image: {
  35754. source: "./media/characters/haloren/maw.svg"
  35755. }
  35756. },
  35757. dick: {
  35758. height: math.unit(2.90, "feet"),
  35759. name: "Dick",
  35760. image: {
  35761. source: "./media/characters/haloren/dick.svg"
  35762. }
  35763. },
  35764. },
  35765. [
  35766. {
  35767. name: "Normal",
  35768. height: math.unit(7 + 5/12, "feet"),
  35769. default: true
  35770. },
  35771. {
  35772. name: "Enhanced",
  35773. height: math.unit(14 + 3/12, "feet")
  35774. },
  35775. ]
  35776. ))
  35777. characterMakers.push(() => makeCharacter(
  35778. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35779. {
  35780. front: {
  35781. height: math.unit(171, "cm"),
  35782. name: "Front",
  35783. image: {
  35784. source: "./media/characters/kimmy/front.svg",
  35785. extra: 1491/1435,
  35786. bottom: 53/1544
  35787. }
  35788. },
  35789. },
  35790. [
  35791. {
  35792. name: "Small",
  35793. height: math.unit(9, "cm")
  35794. },
  35795. {
  35796. name: "Normal",
  35797. height: math.unit(171, "cm"),
  35798. default: true
  35799. },
  35800. ]
  35801. ))
  35802. characterMakers.push(() => makeCharacter(
  35803. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35804. {
  35805. front: {
  35806. height: math.unit(8, "feet"),
  35807. weight: math.unit(300, "lb"),
  35808. name: "Front",
  35809. image: {
  35810. source: "./media/characters/galeboomer/front.svg",
  35811. extra: 4651/4415,
  35812. bottom: 162/4813
  35813. }
  35814. },
  35815. back: {
  35816. height: math.unit(8, "feet"),
  35817. weight: math.unit(300, "lb"),
  35818. name: "Back",
  35819. image: {
  35820. source: "./media/characters/galeboomer/back.svg",
  35821. extra: 4544/4314,
  35822. bottom: 16/4560
  35823. }
  35824. },
  35825. frontAlt: {
  35826. height: math.unit(8, "feet"),
  35827. weight: math.unit(300, "lb"),
  35828. name: "Front (Alt)",
  35829. image: {
  35830. source: "./media/characters/galeboomer/front-alt.svg",
  35831. extra: 4458/4228,
  35832. bottom: 68/4526
  35833. }
  35834. },
  35835. maw: {
  35836. height: math.unit(1.2, "feet"),
  35837. name: "Maw",
  35838. image: {
  35839. source: "./media/characters/galeboomer/maw.svg"
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Normal",
  35846. height: math.unit(8, "feet"),
  35847. default: true
  35848. },
  35849. ]
  35850. ))
  35851. characterMakers.push(() => makeCharacter(
  35852. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35853. {
  35854. front: {
  35855. height: math.unit(5 + 9/12, "feet"),
  35856. weight: math.unit(120, "lb"),
  35857. name: "Front",
  35858. image: {
  35859. source: "./media/characters/chyr/front.svg",
  35860. extra: 1323/1254,
  35861. bottom: 63/1386
  35862. }
  35863. },
  35864. back: {
  35865. height: math.unit(5 + 9/12, "feet"),
  35866. weight: math.unit(120, "lb"),
  35867. name: "Back",
  35868. image: {
  35869. source: "./media/characters/chyr/back.svg",
  35870. extra: 1323/1252,
  35871. bottom: 48/1371
  35872. }
  35873. },
  35874. },
  35875. [
  35876. {
  35877. name: "Normal",
  35878. height: math.unit(5 + 9/12, "feet"),
  35879. default: true
  35880. },
  35881. ]
  35882. ))
  35883. characterMakers.push(() => makeCharacter(
  35884. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35885. {
  35886. front: {
  35887. height: math.unit(7, "feet"),
  35888. weight: math.unit(310, "lb"),
  35889. name: "Front",
  35890. image: {
  35891. source: "./media/characters/solarus/front.svg",
  35892. extra: 2415/2021,
  35893. bottom: 103/2518
  35894. }
  35895. },
  35896. back: {
  35897. height: math.unit(7, "feet"),
  35898. weight: math.unit(310, "lb"),
  35899. name: "Back",
  35900. image: {
  35901. source: "./media/characters/solarus/back.svg",
  35902. extra: 2463/2089,
  35903. bottom: 79/2542
  35904. }
  35905. },
  35906. },
  35907. [
  35908. {
  35909. name: "Normal",
  35910. height: math.unit(7, "feet"),
  35911. default: true
  35912. },
  35913. ]
  35914. ))
  35915. characterMakers.push(() => makeCharacter(
  35916. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35917. {
  35918. front: {
  35919. height: math.unit(16, "feet"),
  35920. name: "Front",
  35921. image: {
  35922. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35923. extra: 1844/1780,
  35924. bottom: 58/1902
  35925. }
  35926. },
  35927. winterCoat: {
  35928. height: math.unit(16, "feet"),
  35929. name: "Winter Coat",
  35930. image: {
  35931. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35932. extra: 1807/1775,
  35933. bottom: 69/1876
  35934. }
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(16, "feet"),
  35941. default: true
  35942. },
  35943. {
  35944. name: "Chicago Size",
  35945. height: math.unit(560, "feet")
  35946. },
  35947. ]
  35948. ))
  35949. characterMakers.push(() => makeCharacter(
  35950. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35951. {
  35952. front: {
  35953. height: math.unit(11 + 6/12, "feet"),
  35954. weight: math.unit(1366, "lb"),
  35955. name: "Front",
  35956. image: {
  35957. source: "./media/characters/lexor/front.svg",
  35958. extra: 1560/1481,
  35959. bottom: 211/1771
  35960. }
  35961. },
  35962. back: {
  35963. height: math.unit(11 + 6/12, "feet"),
  35964. weight: math.unit(1366, "lb"),
  35965. name: "Back",
  35966. image: {
  35967. source: "./media/characters/lexor/back.svg",
  35968. extra: 1614/1533,
  35969. bottom: 76/1690
  35970. }
  35971. },
  35972. maw: {
  35973. height: math.unit(3, "feet"),
  35974. name: "Maw",
  35975. image: {
  35976. source: "./media/characters/lexor/maw.svg"
  35977. }
  35978. },
  35979. dick: {
  35980. height: math.unit(2.59, "feet"),
  35981. name: "Dick",
  35982. image: {
  35983. source: "./media/characters/lexor/dick.svg"
  35984. }
  35985. },
  35986. },
  35987. [
  35988. {
  35989. name: "Normal",
  35990. height: math.unit(11 + 6/12, "feet"),
  35991. default: true
  35992. },
  35993. ]
  35994. ))
  35995. characterMakers.push(() => makeCharacter(
  35996. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35997. {
  35998. front: {
  35999. height: math.unit(5 + 8/12, "feet"),
  36000. name: "Front",
  36001. image: {
  36002. source: "./media/characters/magnum/front.svg",
  36003. extra: 942/855,
  36004. bottom: 26/968
  36005. }
  36006. },
  36007. },
  36008. [
  36009. {
  36010. name: "Normal",
  36011. height: math.unit(5 + 8/12, "feet"),
  36012. default: true
  36013. },
  36014. ]
  36015. ))
  36016. characterMakers.push(() => makeCharacter(
  36017. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36018. {
  36019. front: {
  36020. height: math.unit(18 + 4/12, "feet"),
  36021. weight: math.unit(1500, "kg"),
  36022. name: "Front",
  36023. image: {
  36024. source: "./media/characters/solas-sharpsman/front.svg",
  36025. extra: 1698/1589,
  36026. bottom: 0/1698
  36027. }
  36028. },
  36029. },
  36030. [
  36031. {
  36032. name: "Normal",
  36033. height: math.unit(18 + 4/12, "feet"),
  36034. default: true
  36035. },
  36036. ]
  36037. ))
  36038. characterMakers.push(() => makeCharacter(
  36039. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36040. {
  36041. front: {
  36042. height: math.unit(5 + 5/12, "feet"),
  36043. weight: math.unit(180, "lb"),
  36044. name: "Front",
  36045. image: {
  36046. source: "./media/characters/october/front.svg",
  36047. extra: 1800/1650,
  36048. bottom: 0/1800
  36049. }
  36050. },
  36051. frontNsfw: {
  36052. height: math.unit(5 + 5/12, "feet"),
  36053. weight: math.unit(180, "lb"),
  36054. name: "Front (NSFW)",
  36055. image: {
  36056. source: "./media/characters/october/front-nsfw.svg",
  36057. extra: 1392/1307,
  36058. bottom: 42/1434
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(5 + 5/12, "feet"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36072. {
  36073. front: {
  36074. height: math.unit(8 + 6/12, "feet"),
  36075. name: "Front",
  36076. image: {
  36077. source: "./media/characters/essynkardi/front.svg",
  36078. extra: 1914/1846,
  36079. bottom: 22/1936
  36080. }
  36081. },
  36082. },
  36083. [
  36084. {
  36085. name: "Normal",
  36086. height: math.unit(8 + 6/12, "feet"),
  36087. default: true
  36088. },
  36089. ]
  36090. ))
  36091. characterMakers.push(() => makeCharacter(
  36092. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36093. {
  36094. front: {
  36095. height: math.unit(6 + 6/12, "feet"),
  36096. weight: math.unit(7, "lb"),
  36097. name: "Front",
  36098. image: {
  36099. source: "./media/characters/icky/front.svg",
  36100. extra: 813/782,
  36101. bottom: 66/879
  36102. }
  36103. },
  36104. back: {
  36105. height: math.unit(6 + 6/12, "feet"),
  36106. weight: math.unit(7, "lb"),
  36107. name: "Back",
  36108. image: {
  36109. source: "./media/characters/icky/back.svg",
  36110. extra: 754/735,
  36111. bottom: 56/810
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Normal",
  36118. height: math.unit(6 + 6/12, "feet"),
  36119. default: true
  36120. },
  36121. ]
  36122. ))
  36123. characterMakers.push(() => makeCharacter(
  36124. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36125. {
  36126. front: {
  36127. height: math.unit(15, "feet"),
  36128. name: "Front",
  36129. image: {
  36130. source: "./media/characters/rojas/front.svg",
  36131. extra: 1462/1408,
  36132. bottom: 95/1557
  36133. }
  36134. },
  36135. back: {
  36136. height: math.unit(15, "feet"),
  36137. name: "Back",
  36138. image: {
  36139. source: "./media/characters/rojas/back.svg",
  36140. extra: 1023/954,
  36141. bottom: 28/1051
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(15, "feet"),
  36149. default: true
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36155. {
  36156. frontHuman: {
  36157. height: math.unit(5 + 7/12, "feet"),
  36158. name: "Front (Human)",
  36159. image: {
  36160. source: "./media/characters/alek-dryagan/front-human.svg",
  36161. extra: 1687/1667,
  36162. bottom: 69/1756
  36163. }
  36164. },
  36165. backHuman: {
  36166. height: math.unit(5 + 7/12, "feet"),
  36167. name: "Back (Human)",
  36168. image: {
  36169. source: "./media/characters/alek-dryagan/back-human.svg",
  36170. extra: 1670/1649,
  36171. bottom: 65/1735
  36172. }
  36173. },
  36174. frontDemi: {
  36175. height: math.unit(65, "feet"),
  36176. name: "Front (Demi)",
  36177. image: {
  36178. source: "./media/characters/alek-dryagan/front-demi.svg",
  36179. extra: 1669/1642,
  36180. bottom: 49/1718
  36181. }
  36182. },
  36183. backDemi: {
  36184. height: math.unit(65, "feet"),
  36185. name: "Back (Demi)",
  36186. image: {
  36187. source: "./media/characters/alek-dryagan/back-demi.svg",
  36188. extra: 1658/1637,
  36189. bottom: 40/1698
  36190. }
  36191. },
  36192. mawHuman: {
  36193. height: math.unit(0.3, "feet"),
  36194. name: "Maw (Human)",
  36195. image: {
  36196. source: "./media/characters/alek-dryagan/maw-human.svg"
  36197. }
  36198. },
  36199. mawDemi: {
  36200. height: math.unit(3.8, "feet"),
  36201. name: "Maw (Demi)",
  36202. image: {
  36203. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36204. }
  36205. },
  36206. },
  36207. [
  36208. {
  36209. name: "Normal",
  36210. height: math.unit(5 + 7/12, "feet"),
  36211. default: true
  36212. },
  36213. ]
  36214. ))
  36215. characterMakers.push(() => makeCharacter(
  36216. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36217. {
  36218. frontHuman: {
  36219. height: math.unit(5 + 2/12, "feet"),
  36220. name: "Front (Human)",
  36221. image: {
  36222. source: "./media/characters/gen/front-human.svg",
  36223. extra: 1627/1538,
  36224. bottom: 71/1698
  36225. }
  36226. },
  36227. backHuman: {
  36228. height: math.unit(5 + 2/12, "feet"),
  36229. name: "Back (Human)",
  36230. image: {
  36231. source: "./media/characters/gen/back-human.svg",
  36232. extra: 1638/1548,
  36233. bottom: 69/1707
  36234. }
  36235. },
  36236. frontDemi: {
  36237. height: math.unit(5 + 2/12, "feet"),
  36238. name: "Front (Demi)",
  36239. image: {
  36240. source: "./media/characters/gen/front-demi.svg",
  36241. extra: 1627/1538,
  36242. bottom: 71/1698
  36243. }
  36244. },
  36245. backDemi: {
  36246. height: math.unit(5 + 2/12, "feet"),
  36247. name: "Back (Demi)",
  36248. image: {
  36249. source: "./media/characters/gen/back-demi.svg",
  36250. extra: 1638/1548,
  36251. bottom: 69/1707
  36252. }
  36253. },
  36254. },
  36255. [
  36256. {
  36257. name: "Normal",
  36258. height: math.unit(5 + 2/12, "feet"),
  36259. default: true
  36260. },
  36261. ]
  36262. ))
  36263. characterMakers.push(() => makeCharacter(
  36264. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36265. {
  36266. frontImp: {
  36267. height: math.unit(1 + 11/12, "feet"),
  36268. name: "Front (Imp)",
  36269. image: {
  36270. source: "./media/characters/max-kobold/front-imp.svg",
  36271. extra: 1238/1134,
  36272. bottom: 81/1319
  36273. }
  36274. },
  36275. backImp: {
  36276. height: math.unit(1 + 11/12, "feet"),
  36277. name: "Back (Imp)",
  36278. image: {
  36279. source: "./media/characters/max-kobold/back-imp.svg",
  36280. extra: 1334/1175,
  36281. bottom: 34/1368
  36282. }
  36283. },
  36284. frontDemi: {
  36285. height: math.unit(5 + 9/12, "feet"),
  36286. name: "Front (Demi)",
  36287. image: {
  36288. source: "./media/characters/max-kobold/front-demi.svg",
  36289. extra: 1715/1685,
  36290. bottom: 54/1769
  36291. }
  36292. },
  36293. backDemi: {
  36294. height: math.unit(5 + 9/12, "feet"),
  36295. name: "Back (Demi)",
  36296. image: {
  36297. source: "./media/characters/max-kobold/back-demi.svg",
  36298. extra: 1752/1729,
  36299. bottom: 41/1793
  36300. }
  36301. },
  36302. handImp: {
  36303. height: math.unit(0.45, "feet"),
  36304. name: "Hand (Imp)",
  36305. image: {
  36306. source: "./media/characters/max-kobold/hand.svg"
  36307. }
  36308. },
  36309. pawImp: {
  36310. height: math.unit(0.46, "feet"),
  36311. name: "Paw (Imp)",
  36312. image: {
  36313. source: "./media/characters/max-kobold/paw.svg"
  36314. }
  36315. },
  36316. handDemi: {
  36317. height: math.unit(0.80, "feet"),
  36318. name: "Hand (Demi)",
  36319. image: {
  36320. source: "./media/characters/max-kobold/hand.svg"
  36321. }
  36322. },
  36323. pawDemi: {
  36324. height: math.unit(1.1, "feet"),
  36325. name: "Paw (Demi)",
  36326. image: {
  36327. source: "./media/characters/max-kobold/paw.svg"
  36328. }
  36329. },
  36330. headImp: {
  36331. height: math.unit(1.33, "feet"),
  36332. name: "Head (Imp)",
  36333. image: {
  36334. source: "./media/characters/max-kobold/head-imp.svg"
  36335. }
  36336. },
  36337. mawImp: {
  36338. height: math.unit(0.75, "feet"),
  36339. name: "Maw (Imp)",
  36340. image: {
  36341. source: "./media/characters/max-kobold/maw-imp.svg"
  36342. }
  36343. },
  36344. mawDemi: {
  36345. height: math.unit(0.42, "feet"),
  36346. name: "Maw (Demi)",
  36347. image: {
  36348. source: "./media/characters/max-kobold/maw-demi.svg"
  36349. }
  36350. },
  36351. },
  36352. [
  36353. {
  36354. name: "Normal",
  36355. height: math.unit(1 + 11/12, "feet"),
  36356. default: true
  36357. },
  36358. ]
  36359. ))
  36360. characterMakers.push(() => makeCharacter(
  36361. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36362. {
  36363. front: {
  36364. height: math.unit(7 + 5/12, "feet"),
  36365. name: "Front",
  36366. image: {
  36367. source: "./media/characters/carbon/front.svg",
  36368. extra: 1754/1689,
  36369. bottom: 65/1819
  36370. }
  36371. },
  36372. back: {
  36373. height: math.unit(7 + 5/12, "feet"),
  36374. name: "Back",
  36375. image: {
  36376. source: "./media/characters/carbon/back.svg",
  36377. extra: 1762/1695,
  36378. bottom: 24/1786
  36379. }
  36380. },
  36381. frontGigantamax: {
  36382. height: math.unit(150, "feet"),
  36383. name: "Front (Gigantamax)",
  36384. image: {
  36385. source: "./media/characters/carbon/front-gigantamax.svg",
  36386. extra: 1826/1669,
  36387. bottom: 59/1885
  36388. }
  36389. },
  36390. backGigantamax: {
  36391. height: math.unit(150, "feet"),
  36392. name: "Back (Gigantamax)",
  36393. image: {
  36394. source: "./media/characters/carbon/back-gigantamax.svg",
  36395. extra: 1796/1653,
  36396. bottom: 53/1849
  36397. }
  36398. },
  36399. maw: {
  36400. height: math.unit(0.48, "feet"),
  36401. name: "Maw",
  36402. image: {
  36403. source: "./media/characters/carbon/maw.svg"
  36404. }
  36405. },
  36406. mawGigantamax: {
  36407. height: math.unit(7.5, "feet"),
  36408. name: "Maw (Gigantamax)",
  36409. image: {
  36410. source: "./media/characters/carbon/maw-gigantamax.svg"
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(7 + 5/12, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36424. {
  36425. front: {
  36426. height: math.unit(6, "feet"),
  36427. name: "Front",
  36428. image: {
  36429. source: "./media/characters/maverick/front.svg",
  36430. extra: 1672/1661,
  36431. bottom: 85/1757
  36432. }
  36433. },
  36434. back: {
  36435. height: math.unit(6, "feet"),
  36436. name: "Back",
  36437. image: {
  36438. source: "./media/characters/maverick/back.svg",
  36439. extra: 1642/1631,
  36440. bottom: 38/1680
  36441. }
  36442. },
  36443. },
  36444. [
  36445. {
  36446. name: "Normal",
  36447. height: math.unit(6, "feet"),
  36448. default: true
  36449. },
  36450. ]
  36451. ))
  36452. characterMakers.push(() => makeCharacter(
  36453. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36454. {
  36455. front: {
  36456. height: math.unit(15, "feet"),
  36457. weight: math.unit(615, "lb"),
  36458. name: "Front",
  36459. image: {
  36460. source: "./media/characters/grockle/front.svg",
  36461. extra: 1535/1427,
  36462. bottom: 56/1591
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Normal",
  36469. height: math.unit(15, "feet"),
  36470. default: true
  36471. },
  36472. {
  36473. name: "Large",
  36474. height: math.unit(150, "feet")
  36475. },
  36476. {
  36477. name: "Macro",
  36478. height: math.unit(1876, "feet")
  36479. },
  36480. {
  36481. name: "Mega Macro",
  36482. height: math.unit(121940, "feet")
  36483. },
  36484. {
  36485. name: "Giga Macro",
  36486. height: math.unit(750, "km")
  36487. },
  36488. {
  36489. name: "Tera Macro",
  36490. height: math.unit(750000, "km")
  36491. },
  36492. {
  36493. name: "Galactic",
  36494. height: math.unit(1.4e5, "km")
  36495. },
  36496. {
  36497. name: "Godlike",
  36498. height: math.unit(9.8e280, "galaxies")
  36499. },
  36500. ]
  36501. ))
  36502. characterMakers.push(() => makeCharacter(
  36503. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36504. {
  36505. front: {
  36506. height: math.unit(11, "meters"),
  36507. weight: math.unit(20, "tonnes"),
  36508. name: "Front",
  36509. image: {
  36510. source: "./media/characters/alistair/front.svg",
  36511. extra: 1265/1009,
  36512. bottom: 93/1358
  36513. }
  36514. },
  36515. },
  36516. [
  36517. {
  36518. name: "Normal",
  36519. height: math.unit(11, "meters"),
  36520. default: true
  36521. },
  36522. ]
  36523. ))
  36524. characterMakers.push(() => makeCharacter(
  36525. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36526. {
  36527. front: {
  36528. height: math.unit(5 + 8/12, "feet"),
  36529. name: "Front",
  36530. image: {
  36531. source: "./media/characters/haruka/front.svg",
  36532. extra: 2012/1952,
  36533. bottom: 0/2012
  36534. }
  36535. },
  36536. },
  36537. [
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(5 + 8/12, "feet"),
  36541. default: true
  36542. },
  36543. ]
  36544. ))
  36545. characterMakers.push(() => makeCharacter(
  36546. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36547. {
  36548. back: {
  36549. height: math.unit(9, "feet"),
  36550. name: "Back",
  36551. image: {
  36552. source: "./media/characters/vivian-sylveon/back.svg",
  36553. extra: 1853/1714,
  36554. bottom: 0/1853
  36555. }
  36556. },
  36557. },
  36558. [
  36559. {
  36560. name: "Normal",
  36561. height: math.unit(9, "feet"),
  36562. default: true
  36563. },
  36564. {
  36565. name: "Macro",
  36566. height: math.unit(500, "feet")
  36567. },
  36568. {
  36569. name: "Megamacro",
  36570. height: math.unit(600, "miles")
  36571. },
  36572. {
  36573. name: "Gigamacro",
  36574. height: math.unit(30000, "miles")
  36575. },
  36576. ]
  36577. ))
  36578. characterMakers.push(() => makeCharacter(
  36579. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36580. {
  36581. anthro: {
  36582. height: math.unit(5 + 10/12, "feet"),
  36583. weight: math.unit(100, "lb"),
  36584. name: "Anthro",
  36585. image: {
  36586. source: "./media/characters/daiki/anthro.svg",
  36587. extra: 1115/1027,
  36588. bottom: 69/1184
  36589. }
  36590. },
  36591. feral: {
  36592. height: math.unit(200, "feet"),
  36593. name: "Feral",
  36594. image: {
  36595. source: "./media/characters/daiki/feral.svg",
  36596. extra: 1256/313,
  36597. bottom: 39/1295
  36598. }
  36599. },
  36600. feralHead: {
  36601. height: math.unit(171, "feet"),
  36602. name: "Feral Head",
  36603. image: {
  36604. source: "./media/characters/daiki/feral-head.svg"
  36605. }
  36606. },
  36607. manaDragon: {
  36608. height: math.unit(170, "meters"),
  36609. name: "Mana-dragon",
  36610. image: {
  36611. source: "./media/characters/daiki/mana-dragon.svg",
  36612. extra: 763/420,
  36613. bottom: 97/860
  36614. }
  36615. },
  36616. },
  36617. [
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(5 + 10/12, "feet"),
  36621. default: true
  36622. },
  36623. ]
  36624. ))
  36625. characterMakers.push(() => makeCharacter(
  36626. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36627. {
  36628. fullyEquippedFront: {
  36629. height: math.unit(3 + 1/12, "feet"),
  36630. weight: math.unit(24, "lb"),
  36631. name: "Fully Equipped (Front)",
  36632. image: {
  36633. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36634. extra: 687/605,
  36635. bottom: 18/705
  36636. }
  36637. },
  36638. fullyEquippedBack: {
  36639. height: math.unit(3 + 1/12, "feet"),
  36640. weight: math.unit(24, "lb"),
  36641. name: "Fully Equipped (Back)",
  36642. image: {
  36643. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36644. extra: 689/590,
  36645. bottom: 18/707
  36646. }
  36647. },
  36648. dailyWear: {
  36649. height: math.unit(3 + 1/12, "feet"),
  36650. weight: math.unit(24, "lb"),
  36651. name: "Daily Wear",
  36652. image: {
  36653. source: "./media/characters/tea-spot/daily-wear.svg",
  36654. extra: 701/620,
  36655. bottom: 21/722
  36656. }
  36657. },
  36658. maidWork: {
  36659. height: math.unit(3 + 1/12, "feet"),
  36660. weight: math.unit(24, "lb"),
  36661. name: "Maid Work",
  36662. image: {
  36663. source: "./media/characters/tea-spot/maid-work.svg",
  36664. extra: 693/609,
  36665. bottom: 15/708
  36666. }
  36667. },
  36668. },
  36669. [
  36670. {
  36671. name: "Normal",
  36672. height: math.unit(3 + 1/12, "feet"),
  36673. default: true
  36674. },
  36675. ]
  36676. ))
  36677. characterMakers.push(() => makeCharacter(
  36678. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36679. {
  36680. front: {
  36681. height: math.unit(175, "cm"),
  36682. weight: math.unit(75, "kg"),
  36683. name: "Front",
  36684. image: {
  36685. source: "./media/characters/chee/front.svg",
  36686. extra: 1796/1740,
  36687. bottom: 40/1836
  36688. }
  36689. },
  36690. },
  36691. [
  36692. {
  36693. name: "Micro-Micro",
  36694. height: math.unit(1, "nm")
  36695. },
  36696. {
  36697. name: "Micro-erst",
  36698. height: math.unit(1, "micrometer")
  36699. },
  36700. {
  36701. name: "Micro-er",
  36702. height: math.unit(1, "cm")
  36703. },
  36704. {
  36705. name: "Normal",
  36706. height: math.unit(175, "cm"),
  36707. default: true
  36708. },
  36709. {
  36710. name: "Macro",
  36711. height: math.unit(100, "m")
  36712. },
  36713. {
  36714. name: "Macro-er",
  36715. height: math.unit(1, "km")
  36716. },
  36717. {
  36718. name: "Macro-erst",
  36719. height: math.unit(10, "km")
  36720. },
  36721. {
  36722. name: "Macro-Macro",
  36723. height: math.unit(100, "km")
  36724. },
  36725. ]
  36726. ))
  36727. characterMakers.push(() => makeCharacter(
  36728. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36729. {
  36730. front: {
  36731. height: math.unit(11 + 9/12, "feet"),
  36732. weight: math.unit(935, "lb"),
  36733. name: "Front",
  36734. image: {
  36735. source: "./media/characters/kingsley/front.svg",
  36736. extra: 1803/1674,
  36737. bottom: 127/1930
  36738. }
  36739. },
  36740. frontNude: {
  36741. height: math.unit(11 + 9/12, "feet"),
  36742. weight: math.unit(935, "lb"),
  36743. name: "Front (Nude)",
  36744. image: {
  36745. source: "./media/characters/kingsley/front-nude.svg",
  36746. extra: 1803/1674,
  36747. bottom: 127/1930
  36748. }
  36749. },
  36750. },
  36751. [
  36752. {
  36753. name: "Normal",
  36754. height: math.unit(11 + 9/12, "feet"),
  36755. default: true
  36756. },
  36757. ]
  36758. ))
  36759. characterMakers.push(() => makeCharacter(
  36760. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36761. {
  36762. side: {
  36763. height: math.unit(9, "feet"),
  36764. name: "Side",
  36765. image: {
  36766. source: "./media/characters/rymel/side.svg",
  36767. extra: 792/469,
  36768. bottom: 121/913
  36769. }
  36770. },
  36771. maw: {
  36772. height: math.unit(2.4, "meters"),
  36773. name: "Maw",
  36774. image: {
  36775. source: "./media/characters/rymel/maw.svg"
  36776. }
  36777. },
  36778. },
  36779. [
  36780. {
  36781. name: "House Drake",
  36782. height: math.unit(2, "feet")
  36783. },
  36784. {
  36785. name: "Reduced",
  36786. height: math.unit(4.5, "feet")
  36787. },
  36788. {
  36789. name: "Normal",
  36790. height: math.unit(9, "feet"),
  36791. default: true
  36792. },
  36793. ]
  36794. ))
  36795. characterMakers.push(() => makeCharacter(
  36796. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36797. {
  36798. front: {
  36799. height: math.unit(1.74, "meters"),
  36800. weight: math.unit(55, "kg"),
  36801. name: "Front",
  36802. image: {
  36803. source: "./media/characters/rubus/front.svg",
  36804. extra: 1894/1742,
  36805. bottom: 44/1938
  36806. }
  36807. },
  36808. },
  36809. [
  36810. {
  36811. name: "Normal",
  36812. height: math.unit(1.74, "meters"),
  36813. default: true
  36814. },
  36815. ]
  36816. ))
  36817. characterMakers.push(() => makeCharacter(
  36818. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36819. {
  36820. front: {
  36821. height: math.unit(5 + 2/12, "feet"),
  36822. weight: math.unit(112, "lb"),
  36823. name: "Front",
  36824. image: {
  36825. source: "./media/characters/cassie-kingston/front.svg",
  36826. extra: 1438/1390,
  36827. bottom: 47/1485
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(5 + 2/12, "feet"),
  36835. default: true
  36836. },
  36837. {
  36838. name: "Macro",
  36839. height: math.unit(128, "feet")
  36840. },
  36841. {
  36842. name: "Megamacro",
  36843. height: math.unit(2.56, "miles")
  36844. },
  36845. ]
  36846. ))
  36847. characterMakers.push(() => makeCharacter(
  36848. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36849. {
  36850. front: {
  36851. height: math.unit(7, "feet"),
  36852. name: "Front",
  36853. image: {
  36854. source: "./media/characters/fox/front.svg",
  36855. extra: 1798/1703,
  36856. bottom: 55/1853
  36857. }
  36858. },
  36859. back: {
  36860. height: math.unit(7, "feet"),
  36861. name: "Back",
  36862. image: {
  36863. source: "./media/characters/fox/back.svg",
  36864. extra: 1748/1649,
  36865. bottom: 32/1780
  36866. }
  36867. },
  36868. head: {
  36869. height: math.unit(1.95, "feet"),
  36870. name: "Head",
  36871. image: {
  36872. source: "./media/characters/fox/head.svg"
  36873. }
  36874. },
  36875. dick: {
  36876. height: math.unit(1.33, "feet"),
  36877. name: "Dick",
  36878. image: {
  36879. source: "./media/characters/fox/dick.svg"
  36880. }
  36881. },
  36882. foot: {
  36883. height: math.unit(1, "feet"),
  36884. name: "Foot",
  36885. image: {
  36886. source: "./media/characters/fox/foot.svg"
  36887. }
  36888. },
  36889. paw: {
  36890. height: math.unit(0.92, "feet"),
  36891. name: "Paw",
  36892. image: {
  36893. source: "./media/characters/fox/paw.svg"
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Small",
  36900. height: math.unit(3, "inches")
  36901. },
  36902. {
  36903. name: "\"Realistic\"",
  36904. height: math.unit(7, "feet")
  36905. },
  36906. {
  36907. name: "Normal",
  36908. height: math.unit(150, "feet"),
  36909. default: true
  36910. },
  36911. {
  36912. name: "BIG",
  36913. height: math.unit(1200, "feet")
  36914. },
  36915. {
  36916. name: "👀",
  36917. height: math.unit(5, "miles")
  36918. },
  36919. {
  36920. name: "👀👀👀",
  36921. height: math.unit(64, "miles")
  36922. },
  36923. ]
  36924. ))
  36925. characterMakers.push(() => makeCharacter(
  36926. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36927. {
  36928. front: {
  36929. height: math.unit(625, "feet"),
  36930. name: "Front",
  36931. image: {
  36932. source: "./media/characters/asonja-rossa/front.svg",
  36933. extra: 1833/1686,
  36934. bottom: 24/1857
  36935. }
  36936. },
  36937. back: {
  36938. height: math.unit(625, "feet"),
  36939. name: "Back",
  36940. image: {
  36941. source: "./media/characters/asonja-rossa/back.svg",
  36942. extra: 1852/1753,
  36943. bottom: 26/1878
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Macro",
  36950. height: math.unit(625, "feet"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36957. {
  36958. side: {
  36959. height: math.unit(8, "feet"),
  36960. name: "Side",
  36961. image: {
  36962. source: "./media/characters/rezukii/side.svg",
  36963. extra: 979/542,
  36964. bottom: 87/1066
  36965. }
  36966. },
  36967. sitting: {
  36968. height: math.unit(14.6, "feet"),
  36969. name: "Sitting",
  36970. image: {
  36971. source: "./media/characters/rezukii/sitting.svg",
  36972. extra: 1023/813,
  36973. bottom: 45/1068
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Tiny",
  36980. height: math.unit(2, "feet")
  36981. },
  36982. {
  36983. name: "Smol",
  36984. height: math.unit(4, "feet")
  36985. },
  36986. {
  36987. name: "Normal",
  36988. height: math.unit(8, "feet"),
  36989. default: true
  36990. },
  36991. {
  36992. name: "Big",
  36993. height: math.unit(12, "feet")
  36994. },
  36995. {
  36996. name: "Macro",
  36997. height: math.unit(30, "feet")
  36998. },
  36999. ]
  37000. ))
  37001. characterMakers.push(() => makeCharacter(
  37002. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37003. {
  37004. front: {
  37005. height: math.unit(14, "feet"),
  37006. weight: math.unit(9.5, "tonnes"),
  37007. name: "Front",
  37008. image: {
  37009. source: "./media/characters/dawnheart/front.svg",
  37010. extra: 2792/2675,
  37011. bottom: 64/2856
  37012. }
  37013. },
  37014. },
  37015. [
  37016. {
  37017. name: "Normal",
  37018. height: math.unit(14, "feet"),
  37019. default: true
  37020. },
  37021. ]
  37022. ))
  37023. characterMakers.push(() => makeCharacter(
  37024. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37025. {
  37026. front: {
  37027. height: math.unit(1.7, "m"),
  37028. name: "Front",
  37029. image: {
  37030. source: "./media/characters/gladi/front.svg",
  37031. extra: 1460/1362,
  37032. bottom: 19/1479
  37033. }
  37034. },
  37035. back: {
  37036. height: math.unit(1.7, "m"),
  37037. name: "Back",
  37038. image: {
  37039. source: "./media/characters/gladi/back.svg",
  37040. extra: 1459/1357,
  37041. bottom: 12/1471
  37042. }
  37043. },
  37044. feral: {
  37045. height: math.unit(2.05, "m"),
  37046. name: "Feral",
  37047. image: {
  37048. source: "./media/characters/gladi/feral.svg",
  37049. extra: 821/557,
  37050. bottom: 91/912
  37051. }
  37052. },
  37053. },
  37054. [
  37055. {
  37056. name: "Shortest",
  37057. height: math.unit(70, "cm")
  37058. },
  37059. {
  37060. name: "Normal",
  37061. height: math.unit(1.7, "m")
  37062. },
  37063. {
  37064. name: "Macro",
  37065. height: math.unit(10, "m"),
  37066. default: true
  37067. },
  37068. {
  37069. name: "Tallest",
  37070. height: math.unit(200, "m")
  37071. },
  37072. ]
  37073. ))
  37074. characterMakers.push(() => makeCharacter(
  37075. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37076. {
  37077. front: {
  37078. height: math.unit(5 + 7/12, "feet"),
  37079. weight: math.unit(2, "tons"),
  37080. name: "Front",
  37081. image: {
  37082. source: "./media/characters/erdno/front.svg",
  37083. extra: 1234/1129,
  37084. bottom: 35/1269
  37085. }
  37086. },
  37087. angled: {
  37088. height: math.unit(5 + 7/12, "feet"),
  37089. weight: math.unit(2, "tons"),
  37090. name: "Angled",
  37091. image: {
  37092. source: "./media/characters/erdno/angled.svg",
  37093. extra: 1185/1139,
  37094. bottom: 36/1221
  37095. }
  37096. },
  37097. side: {
  37098. height: math.unit(5 + 7/12, "feet"),
  37099. weight: math.unit(2, "tons"),
  37100. name: "Side",
  37101. image: {
  37102. source: "./media/characters/erdno/side.svg",
  37103. extra: 1191/1144,
  37104. bottom: 40/1231
  37105. }
  37106. },
  37107. back: {
  37108. height: math.unit(5 + 7/12, "feet"),
  37109. weight: math.unit(2, "tons"),
  37110. name: "Back",
  37111. image: {
  37112. source: "./media/characters/erdno/back.svg",
  37113. extra: 1202/1146,
  37114. bottom: 17/1219
  37115. }
  37116. },
  37117. frontNsfw: {
  37118. height: math.unit(5 + 7/12, "feet"),
  37119. weight: math.unit(2, "tons"),
  37120. name: "Front (NSFW)",
  37121. image: {
  37122. source: "./media/characters/erdno/front-nsfw.svg",
  37123. extra: 1234/1129,
  37124. bottom: 35/1269
  37125. }
  37126. },
  37127. angledNsfw: {
  37128. height: math.unit(5 + 7/12, "feet"),
  37129. weight: math.unit(2, "tons"),
  37130. name: "Angled (NSFW)",
  37131. image: {
  37132. source: "./media/characters/erdno/angled-nsfw.svg",
  37133. extra: 1185/1139,
  37134. bottom: 36/1221
  37135. }
  37136. },
  37137. sideNsfw: {
  37138. height: math.unit(5 + 7/12, "feet"),
  37139. weight: math.unit(2, "tons"),
  37140. name: "Side (NSFW)",
  37141. image: {
  37142. source: "./media/characters/erdno/side-nsfw.svg",
  37143. extra: 1191/1144,
  37144. bottom: 40/1231
  37145. }
  37146. },
  37147. backNsfw: {
  37148. height: math.unit(5 + 7/12, "feet"),
  37149. weight: math.unit(2, "tons"),
  37150. name: "Back (NSFW)",
  37151. image: {
  37152. source: "./media/characters/erdno/back-nsfw.svg",
  37153. extra: 1202/1146,
  37154. bottom: 17/1219
  37155. }
  37156. },
  37157. frontHyper: {
  37158. height: math.unit(5 + 7/12, "feet"),
  37159. weight: math.unit(2, "tons"),
  37160. name: "Front (Hyper)",
  37161. image: {
  37162. source: "./media/characters/erdno/front-hyper.svg",
  37163. extra: 1298/1136,
  37164. bottom: 35/1333
  37165. }
  37166. },
  37167. },
  37168. [
  37169. {
  37170. name: "Normal",
  37171. height: math.unit(5 + 7/12, "feet"),
  37172. default: true
  37173. },
  37174. {
  37175. name: "Big",
  37176. height: math.unit(5.7, "meters")
  37177. },
  37178. {
  37179. name: "Macro",
  37180. height: math.unit(5.7, "kilometers")
  37181. },
  37182. {
  37183. name: "Megamacro",
  37184. height: math.unit(5.7, "earths")
  37185. },
  37186. ]
  37187. ))
  37188. characterMakers.push(() => makeCharacter(
  37189. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37190. {
  37191. front: {
  37192. height: math.unit(5 + 10/12, "feet"),
  37193. weight: math.unit(150, "lb"),
  37194. name: "Front",
  37195. image: {
  37196. source: "./media/characters/jamie/front.svg",
  37197. extra: 1908/1768,
  37198. bottom: 19/1927
  37199. }
  37200. },
  37201. },
  37202. [
  37203. {
  37204. name: "Minimum",
  37205. height: math.unit(2, "cm")
  37206. },
  37207. {
  37208. name: "Micro",
  37209. height: math.unit(3, "inches")
  37210. },
  37211. {
  37212. name: "Normal",
  37213. height: math.unit(5 + 10/12, "feet"),
  37214. default: true
  37215. },
  37216. {
  37217. name: "Macro",
  37218. height: math.unit(150, "feet")
  37219. },
  37220. {
  37221. name: "Megamacro",
  37222. height: math.unit(10000, "m")
  37223. },
  37224. ]
  37225. ))
  37226. characterMakers.push(() => makeCharacter(
  37227. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37228. {
  37229. front: {
  37230. height: math.unit(2, "meters"),
  37231. weight: math.unit(100, "kg"),
  37232. name: "Front",
  37233. image: {
  37234. source: "./media/characters/shiron/front.svg",
  37235. extra: 2103/1985,
  37236. bottom: 98/2201
  37237. }
  37238. },
  37239. back: {
  37240. height: math.unit(2, "meters"),
  37241. weight: math.unit(100, "kg"),
  37242. name: "Back",
  37243. image: {
  37244. source: "./media/characters/shiron/back.svg",
  37245. extra: 2110/2015,
  37246. bottom: 89/2199
  37247. }
  37248. },
  37249. hand: {
  37250. height: math.unit(0.96, "feet"),
  37251. name: "Hand",
  37252. image: {
  37253. source: "./media/characters/shiron/hand.svg"
  37254. }
  37255. },
  37256. foot: {
  37257. height: math.unit(1.464, "feet"),
  37258. name: "Foot",
  37259. image: {
  37260. source: "./media/characters/shiron/foot.svg"
  37261. }
  37262. },
  37263. },
  37264. [
  37265. {
  37266. name: "Normal",
  37267. height: math.unit(2, "meters")
  37268. },
  37269. {
  37270. name: "Macro",
  37271. height: math.unit(500, "meters"),
  37272. default: true
  37273. },
  37274. {
  37275. name: "Megamacro",
  37276. height: math.unit(20, "km")
  37277. },
  37278. ]
  37279. ))
  37280. characterMakers.push(() => makeCharacter(
  37281. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37282. {
  37283. front: {
  37284. height: math.unit(6, "feet"),
  37285. name: "Front",
  37286. image: {
  37287. source: "./media/characters/sam/front.svg",
  37288. extra: 849/826,
  37289. bottom: 19/868
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(6, "feet"),
  37297. default: true
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37303. {
  37304. front: {
  37305. height: math.unit(8 + 4/12, "feet"),
  37306. weight: math.unit(122, "kg"),
  37307. name: "Front",
  37308. image: {
  37309. source: "./media/characters/namori-kurogawa/front.svg",
  37310. extra: 1894/1576,
  37311. bottom: 34/1928
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(8 + 4/12, "feet"),
  37319. default: true
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37325. {
  37326. front: {
  37327. height: math.unit(9, "feet"),
  37328. weight: math.unit(621, "lb"),
  37329. name: "Front",
  37330. image: {
  37331. source: "./media/characters/unmru/front.svg",
  37332. extra: 1853/1747,
  37333. bottom: 73/1926
  37334. }
  37335. },
  37336. side: {
  37337. height: math.unit(9, "feet"),
  37338. weight: math.unit(621, "lb"),
  37339. name: "Side",
  37340. image: {
  37341. source: "./media/characters/unmru/side.svg",
  37342. extra: 1781/1671,
  37343. bottom: 127/1908
  37344. }
  37345. },
  37346. back: {
  37347. height: math.unit(9, "feet"),
  37348. weight: math.unit(621, "lb"),
  37349. name: "Back",
  37350. image: {
  37351. source: "./media/characters/unmru/back.svg",
  37352. extra: 1894/1765,
  37353. bottom: 75/1969
  37354. }
  37355. },
  37356. dick: {
  37357. height: math.unit(3, "feet"),
  37358. weight: math.unit(35, "lb"),
  37359. name: "Dick",
  37360. image: {
  37361. source: "./media/characters/unmru/dick.svg"
  37362. }
  37363. },
  37364. },
  37365. [
  37366. {
  37367. name: "Normal",
  37368. height: math.unit(9, "feet")
  37369. },
  37370. {
  37371. name: "Natural",
  37372. height: math.unit(27, "feet"),
  37373. default: true
  37374. },
  37375. {
  37376. name: "Giant",
  37377. height: math.unit(90, "feet")
  37378. },
  37379. {
  37380. name: "Kaiju",
  37381. height: math.unit(270, "feet")
  37382. },
  37383. {
  37384. name: "Macro",
  37385. height: math.unit(900, "feet")
  37386. },
  37387. {
  37388. name: "Macro+",
  37389. height: math.unit(2700, "feet")
  37390. },
  37391. {
  37392. name: "Megamacro",
  37393. height: math.unit(9000, "feet")
  37394. },
  37395. {
  37396. name: "City-Crushing",
  37397. height: math.unit(27000, "feet")
  37398. },
  37399. {
  37400. name: "Mountain-Mashing",
  37401. height: math.unit(90000, "feet")
  37402. },
  37403. {
  37404. name: "Earth-Eclipsing",
  37405. height: math.unit(2.7e8, "feet")
  37406. },
  37407. {
  37408. name: "Sol-Swallowing",
  37409. height: math.unit(9e10, "feet")
  37410. },
  37411. {
  37412. name: "Majoris-Munching",
  37413. height: math.unit(2.7e13, "feet")
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37419. {
  37420. front: {
  37421. height: math.unit(1, "inch"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/squeaks-mouse/front.svg",
  37425. extra: 352/308,
  37426. bottom: 25/377
  37427. }
  37428. },
  37429. },
  37430. [
  37431. {
  37432. name: "Micro",
  37433. height: math.unit(1, "inch"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37440. {
  37441. side: {
  37442. height: math.unit(35, "feet"),
  37443. name: "Side",
  37444. image: {
  37445. source: "./media/characters/sayko/side.svg",
  37446. extra: 1697/1021,
  37447. bottom: 82/1779
  37448. }
  37449. },
  37450. head: {
  37451. height: math.unit(16, "feet"),
  37452. name: "Head",
  37453. image: {
  37454. source: "./media/characters/sayko/head.svg"
  37455. }
  37456. },
  37457. forepaw: {
  37458. height: math.unit(7.85, "feet"),
  37459. name: "Forepaw",
  37460. image: {
  37461. source: "./media/characters/sayko/forepaw.svg"
  37462. }
  37463. },
  37464. hindpaw: {
  37465. height: math.unit(8.8, "feet"),
  37466. name: "Hindpaw",
  37467. image: {
  37468. source: "./media/characters/sayko/hindpaw.svg"
  37469. }
  37470. },
  37471. },
  37472. [
  37473. {
  37474. name: "Normal",
  37475. height: math.unit(35, "feet"),
  37476. default: true
  37477. },
  37478. {
  37479. name: "Colossus",
  37480. height: math.unit(100, "meters")
  37481. },
  37482. {
  37483. name: "\"Small\" Deity",
  37484. height: math.unit(1, "km")
  37485. },
  37486. {
  37487. name: "\"Large\" Deity",
  37488. height: math.unit(15, "km")
  37489. },
  37490. ]
  37491. ))
  37492. characterMakers.push(() => makeCharacter(
  37493. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37494. {
  37495. front: {
  37496. height: math.unit(6, "feet"),
  37497. weight: math.unit(250, "lb"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/mukiro/front.svg",
  37501. extra: 1368/1310,
  37502. bottom: 34/1402
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Normal",
  37509. height: math.unit(6, "feet"),
  37510. default: true
  37511. },
  37512. ]
  37513. ))
  37514. characterMakers.push(() => makeCharacter(
  37515. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37516. {
  37517. front: {
  37518. height: math.unit(12 + 4/12, "feet"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37522. extra: 1346/1311,
  37523. bottom: 65/1411
  37524. }
  37525. },
  37526. },
  37527. [
  37528. {
  37529. name: "Base",
  37530. height: math.unit(12 + 4/12, "feet"),
  37531. default: true
  37532. },
  37533. {
  37534. name: "Macro",
  37535. height: math.unit(150, "feet")
  37536. },
  37537. {
  37538. name: "Mega",
  37539. height: math.unit(2, "miles")
  37540. },
  37541. {
  37542. name: "Demi God",
  37543. height: math.unit(4, "AU")
  37544. },
  37545. {
  37546. name: "God Size",
  37547. height: math.unit(1, "universe")
  37548. },
  37549. ]
  37550. ))
  37551. characterMakers.push(() => makeCharacter(
  37552. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37553. {
  37554. front: {
  37555. height: math.unit(3 + 3/12, "feet"),
  37556. weight: math.unit(88, "lb"),
  37557. name: "Front",
  37558. image: {
  37559. source: "./media/characters/trey/front.svg",
  37560. extra: 1815/1509,
  37561. bottom: 60/1875
  37562. }
  37563. },
  37564. },
  37565. [
  37566. {
  37567. name: "Normal",
  37568. height: math.unit(3 + 3/12, "feet"),
  37569. default: true
  37570. },
  37571. ]
  37572. ))
  37573. characterMakers.push(() => makeCharacter(
  37574. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37575. {
  37576. front: {
  37577. height: math.unit(4, "meters"),
  37578. name: "Front",
  37579. image: {
  37580. source: "./media/characters/adelonda/front.svg",
  37581. extra: 1077/982,
  37582. bottom: 39/1116
  37583. }
  37584. },
  37585. back: {
  37586. height: math.unit(4, "meters"),
  37587. name: "Back",
  37588. image: {
  37589. source: "./media/characters/adelonda/back.svg",
  37590. extra: 1105/1003,
  37591. bottom: 25/1130
  37592. }
  37593. },
  37594. },
  37595. [
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(4, "meters"),
  37599. default: true
  37600. },
  37601. ]
  37602. ))
  37603. characterMakers.push(() => makeCharacter(
  37604. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37605. {
  37606. front: {
  37607. height: math.unit(8 + 4/12, "feet"),
  37608. weight: math.unit(670, "lb"),
  37609. name: "Front",
  37610. image: {
  37611. source: "./media/characters/acadiel/front.svg",
  37612. extra: 1901/1595,
  37613. bottom: 142/2043
  37614. }
  37615. },
  37616. },
  37617. [
  37618. {
  37619. name: "Normal",
  37620. height: math.unit(8 + 4/12, "feet"),
  37621. default: true
  37622. },
  37623. {
  37624. name: "Macro",
  37625. height: math.unit(200, "feet")
  37626. },
  37627. ]
  37628. ))
  37629. characterMakers.push(() => makeCharacter(
  37630. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37631. {
  37632. front: {
  37633. height: math.unit(6 + 2/12, "feet"),
  37634. weight: math.unit(185, "lb"),
  37635. name: "Front",
  37636. image: {
  37637. source: "./media/characters/kayne-ein/front.svg",
  37638. extra: 1780/1560,
  37639. bottom: 81/1861
  37640. }
  37641. },
  37642. },
  37643. [
  37644. {
  37645. name: "Normal",
  37646. height: math.unit(6 + 2/12, "feet"),
  37647. default: true
  37648. },
  37649. {
  37650. name: "Transformation Stage",
  37651. height: math.unit(15, "feet")
  37652. },
  37653. {
  37654. name: "Macro",
  37655. height: math.unit(150, "feet")
  37656. },
  37657. {
  37658. name: "Earth's Shadow",
  37659. height: math.unit(6200, "miles")
  37660. },
  37661. {
  37662. name: "Universal Demon",
  37663. height: math.unit(28e9, "parsecs")
  37664. },
  37665. {
  37666. name: "Multiverse God",
  37667. height: math.unit(3, "multiverses")
  37668. },
  37669. ]
  37670. ))
  37671. characterMakers.push(() => makeCharacter(
  37672. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37673. {
  37674. front: {
  37675. height: math.unit(5 + 5/12, "feet"),
  37676. name: "Front",
  37677. image: {
  37678. source: "./media/characters/fawn/front.svg",
  37679. extra: 1873/1731,
  37680. bottom: 95/1968
  37681. }
  37682. },
  37683. back: {
  37684. height: math.unit(5 + 5/12, "feet"),
  37685. name: "Back",
  37686. image: {
  37687. source: "./media/characters/fawn/back.svg",
  37688. extra: 1813/1700,
  37689. bottom: 14/1827
  37690. }
  37691. },
  37692. hoof: {
  37693. height: math.unit(1.45, "feet"),
  37694. name: "Hoof",
  37695. image: {
  37696. source: "./media/characters/fawn/hoof.svg"
  37697. }
  37698. },
  37699. },
  37700. [
  37701. {
  37702. name: "Normal",
  37703. height: math.unit(5 + 5/12, "feet"),
  37704. default: true
  37705. },
  37706. ]
  37707. ))
  37708. characterMakers.push(() => makeCharacter(
  37709. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37710. {
  37711. front: {
  37712. height: math.unit(2 + 5/12, "feet"),
  37713. name: "Front",
  37714. image: {
  37715. source: "./media/characters/orion/front.svg",
  37716. extra: 1366/1304,
  37717. bottom: 43/1409
  37718. }
  37719. },
  37720. paw: {
  37721. height: math.unit(0.52, "feet"),
  37722. name: "Paw",
  37723. image: {
  37724. source: "./media/characters/orion/paw.svg"
  37725. }
  37726. },
  37727. },
  37728. [
  37729. {
  37730. name: "Normal",
  37731. height: math.unit(2 + 5/12, "feet"),
  37732. default: true
  37733. },
  37734. ]
  37735. ))
  37736. characterMakers.push(() => makeCharacter(
  37737. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37738. {
  37739. front: {
  37740. height: math.unit(5 + 10/12, "feet"),
  37741. name: "Front",
  37742. image: {
  37743. source: "./media/characters/vera/front.svg",
  37744. extra: 1680/1575,
  37745. bottom: 49/1729
  37746. }
  37747. },
  37748. back: {
  37749. height: math.unit(5 + 10/12, "feet"),
  37750. name: "Back",
  37751. image: {
  37752. source: "./media/characters/vera/back.svg",
  37753. extra: 1700/1588,
  37754. bottom: 18/1718
  37755. }
  37756. },
  37757. arcanine: {
  37758. height: math.unit(6 + 8/12, "feet"),
  37759. name: "Arcanine",
  37760. image: {
  37761. source: "./media/characters/vera/arcanine.svg",
  37762. extra: 1590/1511,
  37763. bottom: 71/1661
  37764. }
  37765. },
  37766. maw: {
  37767. height: math.unit(0.82, "feet"),
  37768. name: "Maw",
  37769. image: {
  37770. source: "./media/characters/vera/maw.svg"
  37771. }
  37772. },
  37773. mawArcanine: {
  37774. height: math.unit(0.97, "feet"),
  37775. name: "Maw (Arcanine)",
  37776. image: {
  37777. source: "./media/characters/vera/maw-arcanine.svg"
  37778. }
  37779. },
  37780. paw: {
  37781. height: math.unit(0.75, "feet"),
  37782. name: "Paw",
  37783. image: {
  37784. source: "./media/characters/vera/paw.svg"
  37785. }
  37786. },
  37787. pawprint: {
  37788. height: math.unit(0.52, "feet"),
  37789. name: "Pawprint",
  37790. image: {
  37791. source: "./media/characters/vera/pawprint.svg"
  37792. }
  37793. },
  37794. },
  37795. [
  37796. {
  37797. name: "Normal",
  37798. height: math.unit(5 + 10/12, "feet"),
  37799. default: true
  37800. },
  37801. {
  37802. name: "Macro",
  37803. height: math.unit(75, "feet")
  37804. },
  37805. ]
  37806. ))
  37807. characterMakers.push(() => makeCharacter(
  37808. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37809. {
  37810. front: {
  37811. height: math.unit(4, "feet"),
  37812. weight: math.unit(40, "lb"),
  37813. name: "Front",
  37814. image: {
  37815. source: "./media/characters/orvan-rabbit/front.svg",
  37816. extra: 1896/1642,
  37817. bottom: 29/1925
  37818. }
  37819. },
  37820. },
  37821. [
  37822. {
  37823. name: "Normal",
  37824. height: math.unit(4, "feet"),
  37825. default: true
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37831. {
  37832. front: {
  37833. height: math.unit(6, "feet"),
  37834. weight: math.unit(168, "lb"),
  37835. name: "Front",
  37836. image: {
  37837. source: "./media/characters/lisa/front.svg",
  37838. extra: 2065/1867,
  37839. bottom: 46/2111
  37840. }
  37841. },
  37842. back: {
  37843. height: math.unit(6, "feet"),
  37844. weight: math.unit(168, "lb"),
  37845. name: "Back",
  37846. image: {
  37847. source: "./media/characters/lisa/back.svg",
  37848. extra: 1982/1838,
  37849. bottom: 29/2011
  37850. }
  37851. },
  37852. maw: {
  37853. height: math.unit(0.81, "feet"),
  37854. name: "Maw",
  37855. image: {
  37856. source: "./media/characters/lisa/maw.svg"
  37857. }
  37858. },
  37859. paw: {
  37860. height: math.unit(0.9, "feet"),
  37861. name: "Paw",
  37862. image: {
  37863. source: "./media/characters/lisa/paw.svg"
  37864. }
  37865. },
  37866. caribousune: {
  37867. height: math.unit(7 + 2/12, "feet"),
  37868. weight: math.unit(268, "lb"),
  37869. name: "Caribousune",
  37870. image: {
  37871. source: "./media/characters/lisa/caribousune.svg",
  37872. extra: 1843/1633,
  37873. bottom: 29/1872
  37874. }
  37875. },
  37876. frontCaribousune: {
  37877. height: math.unit(7 + 2/12, "feet"),
  37878. weight: math.unit(268, "lb"),
  37879. name: "Front (Caribousune)",
  37880. image: {
  37881. source: "./media/characters/lisa/front-caribousune.svg",
  37882. extra: 1818/1638,
  37883. bottom: 52/1870
  37884. }
  37885. },
  37886. sideCaribousune: {
  37887. height: math.unit(7 + 2/12, "feet"),
  37888. weight: math.unit(268, "lb"),
  37889. name: "Side (Caribousune)",
  37890. image: {
  37891. source: "./media/characters/lisa/side-caribousune.svg",
  37892. extra: 1851/1635,
  37893. bottom: 16/1867
  37894. }
  37895. },
  37896. backCaribousune: {
  37897. height: math.unit(7 + 2/12, "feet"),
  37898. weight: math.unit(268, "lb"),
  37899. name: "Back (Caribousune)",
  37900. image: {
  37901. source: "./media/characters/lisa/back-caribousune.svg",
  37902. extra: 1801/1604,
  37903. bottom: 44/1845
  37904. }
  37905. },
  37906. caribou: {
  37907. height: math.unit(7 + 2/12, "feet"),
  37908. weight: math.unit(268, "lb"),
  37909. name: "Caribou",
  37910. image: {
  37911. source: "./media/characters/lisa/caribou.svg",
  37912. extra: 1843/1633,
  37913. bottom: 29/1872
  37914. }
  37915. },
  37916. frontCaribou: {
  37917. height: math.unit(7 + 2/12, "feet"),
  37918. weight: math.unit(268, "lb"),
  37919. name: "Front (Caribou)",
  37920. image: {
  37921. source: "./media/characters/lisa/front-caribou.svg",
  37922. extra: 1818/1638,
  37923. bottom: 52/1870
  37924. }
  37925. },
  37926. sideCaribou: {
  37927. height: math.unit(7 + 2/12, "feet"),
  37928. weight: math.unit(268, "lb"),
  37929. name: "Side (Caribou)",
  37930. image: {
  37931. source: "./media/characters/lisa/side-caribou.svg",
  37932. extra: 1851/1635,
  37933. bottom: 16/1867
  37934. }
  37935. },
  37936. backCaribou: {
  37937. height: math.unit(7 + 2/12, "feet"),
  37938. weight: math.unit(268, "lb"),
  37939. name: "Back (Caribou)",
  37940. image: {
  37941. source: "./media/characters/lisa/back-caribou.svg",
  37942. extra: 1801/1604,
  37943. bottom: 44/1845
  37944. }
  37945. },
  37946. mawCaribou: {
  37947. height: math.unit(1.45, "feet"),
  37948. name: "Maw (Caribou)",
  37949. image: {
  37950. source: "./media/characters/lisa/maw-caribou.svg"
  37951. }
  37952. },
  37953. mawCaribousune: {
  37954. height: math.unit(1.45, "feet"),
  37955. name: "Maw (Caribousune)",
  37956. image: {
  37957. source: "./media/characters/lisa/maw-caribousune.svg"
  37958. }
  37959. },
  37960. pawCaribousune: {
  37961. height: math.unit(1.61, "feet"),
  37962. name: "Paw (Caribou)",
  37963. image: {
  37964. source: "./media/characters/lisa/paw-caribousune.svg"
  37965. }
  37966. },
  37967. },
  37968. [
  37969. {
  37970. name: "Normal",
  37971. height: math.unit(6, "feet")
  37972. },
  37973. {
  37974. name: "God Size",
  37975. height: math.unit(72, "feet"),
  37976. default: true
  37977. },
  37978. {
  37979. name: "Towering",
  37980. height: math.unit(288, "feet")
  37981. },
  37982. {
  37983. name: "City Size",
  37984. height: math.unit(48384, "feet")
  37985. },
  37986. {
  37987. name: "Continental",
  37988. height: math.unit(4200, "miles")
  37989. },
  37990. {
  37991. name: "Planet Eater",
  37992. height: math.unit(42, "earths")
  37993. },
  37994. {
  37995. name: "Star Swallower",
  37996. height: math.unit(42, "solarradii")
  37997. },
  37998. {
  37999. name: "System Swallower",
  38000. height: math.unit(84000, "AU")
  38001. },
  38002. {
  38003. name: "Galaxy Gobbler",
  38004. height: math.unit(42, "galaxies")
  38005. },
  38006. {
  38007. name: "Universe Devourer",
  38008. height: math.unit(42, "universes")
  38009. },
  38010. {
  38011. name: "Multiverse Muncher",
  38012. height: math.unit(42, "multiverses")
  38013. },
  38014. ]
  38015. ))
  38016. characterMakers.push(() => makeCharacter(
  38017. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38018. {
  38019. front: {
  38020. height: math.unit(36, "feet"),
  38021. name: "Front",
  38022. image: {
  38023. source: "./media/characters/shadow-rat/front.svg",
  38024. extra: 1845/1758,
  38025. bottom: 83/1928
  38026. }
  38027. },
  38028. },
  38029. [
  38030. {
  38031. name: "Macro",
  38032. height: math.unit(36, "feet"),
  38033. default: true
  38034. },
  38035. ]
  38036. ))
  38037. characterMakers.push(() => makeCharacter(
  38038. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38039. {
  38040. side: {
  38041. height: math.unit(8, "feet"),
  38042. weight: math.unit(2630, "lb"),
  38043. name: "Side",
  38044. image: {
  38045. source: "./media/characters/torallia/side.svg",
  38046. extra: 2164/2021,
  38047. bottom: 371/2535
  38048. }
  38049. },
  38050. },
  38051. [
  38052. {
  38053. name: "Mortal Interaction",
  38054. height: math.unit(8, "feet")
  38055. },
  38056. {
  38057. name: "Natural",
  38058. height: math.unit(24, "feet"),
  38059. default: true
  38060. },
  38061. {
  38062. name: "Giant",
  38063. height: math.unit(80, "feet")
  38064. },
  38065. {
  38066. name: "Kaiju",
  38067. height: math.unit(240, "feet")
  38068. },
  38069. {
  38070. name: "Macro",
  38071. height: math.unit(800, "feet")
  38072. },
  38073. {
  38074. name: "Macro+",
  38075. height: math.unit(2400, "feet")
  38076. },
  38077. {
  38078. name: "Macro++",
  38079. height: math.unit(8000, "feet")
  38080. },
  38081. {
  38082. name: "City-Crushing",
  38083. height: math.unit(24000, "feet")
  38084. },
  38085. {
  38086. name: "Mountain-Mashing",
  38087. height: math.unit(80000, "feet")
  38088. },
  38089. {
  38090. name: "District Demolisher",
  38091. height: math.unit(240000, "feet")
  38092. },
  38093. {
  38094. name: "Tri-County Terror",
  38095. height: math.unit(800000, "feet")
  38096. },
  38097. {
  38098. name: "State Smasher",
  38099. height: math.unit(2.4e6, "feet")
  38100. },
  38101. {
  38102. name: "Nation Nemesis",
  38103. height: math.unit(8e6, "feet")
  38104. },
  38105. {
  38106. name: "Continent Cracker",
  38107. height: math.unit(2.4e7, "feet")
  38108. },
  38109. {
  38110. name: "Planet-Pillaging",
  38111. height: math.unit(8e7, "feet")
  38112. },
  38113. {
  38114. name: "Earth-Eclipsing",
  38115. height: math.unit(2.4e8, "feet")
  38116. },
  38117. {
  38118. name: "Jovian-Jostling",
  38119. height: math.unit(8e8, "feet")
  38120. },
  38121. {
  38122. name: "Gas Giant Gulper",
  38123. height: math.unit(2.4e9, "feet")
  38124. },
  38125. {
  38126. name: "Astral Annihilator",
  38127. height: math.unit(8e9, "feet")
  38128. },
  38129. {
  38130. name: "Celestial Conqueror",
  38131. height: math.unit(2.4e10, "feet")
  38132. },
  38133. {
  38134. name: "Sol-Swallowing",
  38135. height: math.unit(8e10, "feet")
  38136. },
  38137. {
  38138. name: "Hunter of the Heavens",
  38139. height: math.unit(2.4e13, "feet")
  38140. },
  38141. ]
  38142. ))
  38143. characterMakers.push(() => makeCharacter(
  38144. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38145. {
  38146. front: {
  38147. height: math.unit(6 + 8/12, "feet"),
  38148. name: "Front",
  38149. image: {
  38150. source: "./media/characters/rebecca-pawlson/front.svg",
  38151. extra: 1737/1596,
  38152. bottom: 107/1844
  38153. }
  38154. },
  38155. back: {
  38156. height: math.unit(6 + 8/12, "feet"),
  38157. name: "Back",
  38158. image: {
  38159. source: "./media/characters/rebecca-pawlson/back.svg",
  38160. extra: 1702/1523,
  38161. bottom: 86/1788
  38162. }
  38163. },
  38164. },
  38165. [
  38166. {
  38167. name: "Normal",
  38168. height: math.unit(6 + 8/12, "feet")
  38169. },
  38170. {
  38171. name: "Mini Macro",
  38172. height: math.unit(10, "feet"),
  38173. default: true
  38174. },
  38175. {
  38176. name: "Macro",
  38177. height: math.unit(100, "feet")
  38178. },
  38179. {
  38180. name: "Mega Macro",
  38181. height: math.unit(2500, "feet")
  38182. },
  38183. {
  38184. name: "Giga Macro",
  38185. height: math.unit(50, "miles")
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38191. {
  38192. front: {
  38193. height: math.unit(7 + 6/12, "feet"),
  38194. weight: math.unit(600, "lb"),
  38195. name: "Front",
  38196. image: {
  38197. source: "./media/characters/moxie-nova/front.svg",
  38198. extra: 1734/1652,
  38199. bottom: 41/1775
  38200. }
  38201. },
  38202. },
  38203. [
  38204. {
  38205. name: "Normal",
  38206. height: math.unit(7 + 6/12, "feet"),
  38207. default: true
  38208. },
  38209. ]
  38210. ))
  38211. characterMakers.push(() => makeCharacter(
  38212. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38213. {
  38214. goat: {
  38215. height: math.unit(4, "feet"),
  38216. weight: math.unit(180, "lb"),
  38217. name: "Goat",
  38218. image: {
  38219. source: "./media/characters/tiffany/goat.svg",
  38220. extra: 1845/1595,
  38221. bottom: 106/1951
  38222. }
  38223. },
  38224. front: {
  38225. height: math.unit(5, "feet"),
  38226. weight: math.unit(150, "lb"),
  38227. name: "Foxcoon",
  38228. image: {
  38229. source: "./media/characters/tiffany/foxcoon.svg",
  38230. extra: 1941/1845,
  38231. bottom: 58/1999
  38232. }
  38233. },
  38234. },
  38235. [
  38236. {
  38237. name: "Normal",
  38238. height: math.unit(5, "feet"),
  38239. default: true
  38240. },
  38241. ]
  38242. ))
  38243. characterMakers.push(() => makeCharacter(
  38244. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38245. {
  38246. front: {
  38247. height: math.unit(8, "feet"),
  38248. weight: math.unit(300, "lb"),
  38249. name: "Front",
  38250. image: {
  38251. source: "./media/characters/raxinath/front.svg",
  38252. extra: 1407/1309,
  38253. bottom: 39/1446
  38254. }
  38255. },
  38256. back: {
  38257. height: math.unit(8, "feet"),
  38258. weight: math.unit(300, "lb"),
  38259. name: "Back",
  38260. image: {
  38261. source: "./media/characters/raxinath/back.svg",
  38262. extra: 1405/1315,
  38263. bottom: 9/1414
  38264. }
  38265. },
  38266. },
  38267. [
  38268. {
  38269. name: "Speck",
  38270. height: math.unit(0.5, "nm")
  38271. },
  38272. {
  38273. name: "Micro",
  38274. height: math.unit(3, "inches")
  38275. },
  38276. {
  38277. name: "Kobold",
  38278. height: math.unit(3, "feet")
  38279. },
  38280. {
  38281. name: "Normal",
  38282. height: math.unit(8, "feet"),
  38283. default: true
  38284. },
  38285. {
  38286. name: "Giant",
  38287. height: math.unit(50, "feet")
  38288. },
  38289. {
  38290. name: "Macro",
  38291. height: math.unit(1000, "feet")
  38292. },
  38293. {
  38294. name: "Megamacro",
  38295. height: math.unit(1, "mile")
  38296. },
  38297. ]
  38298. ))
  38299. characterMakers.push(() => makeCharacter(
  38300. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38301. {
  38302. front: {
  38303. height: math.unit(10, "feet"),
  38304. weight: math.unit(1442, "lb"),
  38305. name: "Front",
  38306. image: {
  38307. source: "./media/characters/mal-dragon/front.svg",
  38308. extra: 1515/1444,
  38309. bottom: 113/1628
  38310. }
  38311. },
  38312. back: {
  38313. height: math.unit(10, "feet"),
  38314. weight: math.unit(1442, "lb"),
  38315. name: "Back",
  38316. image: {
  38317. source: "./media/characters/mal-dragon/back.svg",
  38318. extra: 1527/1434,
  38319. bottom: 25/1552
  38320. }
  38321. },
  38322. },
  38323. [
  38324. {
  38325. name: "Mortal Interaction",
  38326. height: math.unit(10, "feet"),
  38327. default: true
  38328. },
  38329. {
  38330. name: "Large",
  38331. height: math.unit(30, "feet")
  38332. },
  38333. {
  38334. name: "Kaiju",
  38335. height: math.unit(300, "feet")
  38336. },
  38337. {
  38338. name: "Megamacro",
  38339. height: math.unit(10000, "feet")
  38340. },
  38341. {
  38342. name: "Continent Cracker",
  38343. height: math.unit(30000000, "feet")
  38344. },
  38345. {
  38346. name: "Sol-Swallowing",
  38347. height: math.unit(1e11, "feet")
  38348. },
  38349. {
  38350. name: "Light Universal",
  38351. height: math.unit(5, "universes")
  38352. },
  38353. {
  38354. name: "Universe Atoms",
  38355. height: math.unit(1.829e9, "universes")
  38356. },
  38357. {
  38358. name: "Light Multiversal",
  38359. height: math.unit(5, "multiverses")
  38360. },
  38361. {
  38362. name: "Multiverse Atoms",
  38363. height: math.unit(1.829e9, "multiverses")
  38364. },
  38365. {
  38366. name: "Fabric of Time",
  38367. height: math.unit(1e262, "multiverses")
  38368. },
  38369. ]
  38370. ))
  38371. characterMakers.push(() => makeCharacter(
  38372. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38373. {
  38374. front: {
  38375. height: math.unit(9, "feet"),
  38376. weight: math.unit(1050, "lb"),
  38377. name: "Front",
  38378. image: {
  38379. source: "./media/characters/tabitha/front.svg",
  38380. extra: 2083/1994,
  38381. bottom: 68/2151
  38382. }
  38383. },
  38384. },
  38385. [
  38386. {
  38387. name: "Baseline",
  38388. height: math.unit(9, "feet"),
  38389. default: true
  38390. },
  38391. {
  38392. name: "Giant",
  38393. height: math.unit(90, "feet")
  38394. },
  38395. {
  38396. name: "Macro",
  38397. height: math.unit(900, "feet")
  38398. },
  38399. {
  38400. name: "Megamacro",
  38401. height: math.unit(9000, "feet")
  38402. },
  38403. {
  38404. name: "City-Crushing",
  38405. height: math.unit(27000, "feet")
  38406. },
  38407. {
  38408. name: "Mountain-Mashing",
  38409. height: math.unit(90000, "feet")
  38410. },
  38411. {
  38412. name: "Nation Nemesis",
  38413. height: math.unit(9e6, "feet")
  38414. },
  38415. {
  38416. name: "Continent Cracker",
  38417. height: math.unit(27e6, "feet")
  38418. },
  38419. {
  38420. name: "Earth-Eclipsing",
  38421. height: math.unit(2.7e8, "feet")
  38422. },
  38423. {
  38424. name: "Gas Giant Gulper",
  38425. height: math.unit(2.7e9, "feet")
  38426. },
  38427. {
  38428. name: "Sol-Swallowing",
  38429. height: math.unit(9e10, "feet")
  38430. },
  38431. {
  38432. name: "Galaxy Gulper",
  38433. height: math.unit(9, "galaxies")
  38434. },
  38435. {
  38436. name: "Cosmos Churner",
  38437. height: math.unit(9, "universes")
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(160, "cm"),
  38446. weight: math.unit(55, "kg"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/tow/front.svg",
  38450. extra: 1751/1722,
  38451. bottom: 74/1825
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Norm",
  38458. height: math.unit(160, "cm")
  38459. },
  38460. {
  38461. name: "Casual",
  38462. height: math.unit(3200, "m"),
  38463. default: true
  38464. },
  38465. {
  38466. name: "Show-Off",
  38467. height: math.unit(160, "km")
  38468. },
  38469. ]
  38470. ))
  38471. characterMakers.push(() => makeCharacter(
  38472. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38473. {
  38474. front: {
  38475. height: math.unit(7 + 11/12, "feet"),
  38476. weight: math.unit(342.8, "lb"),
  38477. name: "Front",
  38478. image: {
  38479. source: "./media/characters/vivian-orca-dragon/front.svg",
  38480. extra: 1890/1865,
  38481. bottom: 28/1918
  38482. }
  38483. },
  38484. },
  38485. [
  38486. {
  38487. name: "Micro",
  38488. height: math.unit(5, "inches")
  38489. },
  38490. {
  38491. name: "Normal",
  38492. height: math.unit(7 + 11/12, "feet"),
  38493. default: true
  38494. },
  38495. {
  38496. name: "Macro",
  38497. height: math.unit(395 + 7/12, "feet")
  38498. },
  38499. ]
  38500. ))
  38501. characterMakers.push(() => makeCharacter(
  38502. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38503. {
  38504. side: {
  38505. height: math.unit(10, "feet"),
  38506. weight: math.unit(1442, "lb"),
  38507. name: "Side",
  38508. image: {
  38509. source: "./media/characters/lotherakon/side.svg",
  38510. extra: 1604/1497,
  38511. bottom: 89/1693
  38512. }
  38513. },
  38514. },
  38515. [
  38516. {
  38517. name: "Mortal Interaction",
  38518. height: math.unit(10, "feet")
  38519. },
  38520. {
  38521. name: "Large",
  38522. height: math.unit(30, "feet"),
  38523. default: true
  38524. },
  38525. {
  38526. name: "Giant",
  38527. height: math.unit(100, "feet")
  38528. },
  38529. {
  38530. name: "Kaiju",
  38531. height: math.unit(300, "feet")
  38532. },
  38533. {
  38534. name: "Macro",
  38535. height: math.unit(1000, "feet")
  38536. },
  38537. {
  38538. name: "Macro+",
  38539. height: math.unit(3000, "feet")
  38540. },
  38541. {
  38542. name: "Megamacro",
  38543. height: math.unit(10000, "feet")
  38544. },
  38545. {
  38546. name: "City-Crushing",
  38547. height: math.unit(30000, "feet")
  38548. },
  38549. {
  38550. name: "Continent Cracker",
  38551. height: math.unit(30e6, "feet")
  38552. },
  38553. {
  38554. name: "Earth Eclipsing",
  38555. height: math.unit(3e8, "feet")
  38556. },
  38557. {
  38558. name: "Gas Giant Gulper",
  38559. height: math.unit(3e9, "feet")
  38560. },
  38561. {
  38562. name: "Sol-Swallowing",
  38563. height: math.unit(1e11, "feet")
  38564. },
  38565. {
  38566. name: "System Swallower",
  38567. height: math.unit(3e14, "feet")
  38568. },
  38569. {
  38570. name: "Galaxy Gulper",
  38571. height: math.unit(10, "galaxies")
  38572. },
  38573. {
  38574. name: "Light Universal",
  38575. height: math.unit(5, "universes")
  38576. },
  38577. {
  38578. name: "Universe Palm",
  38579. height: math.unit(20, "universes")
  38580. },
  38581. {
  38582. name: "Light Multiversal",
  38583. height: math.unit(5, "multiverses")
  38584. },
  38585. {
  38586. name: "Multiverse Palm",
  38587. height: math.unit(20, "multiverses")
  38588. },
  38589. {
  38590. name: "Inferno Incarnate",
  38591. height: math.unit(1e7, "multiverses")
  38592. },
  38593. ]
  38594. ))
  38595. characterMakers.push(() => makeCharacter(
  38596. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38597. {
  38598. front: {
  38599. height: math.unit(8, "feet"),
  38600. weight: math.unit(1200, "lb"),
  38601. name: "Front",
  38602. image: {
  38603. source: "./media/characters/malithee/front.svg",
  38604. extra: 1675/1640,
  38605. bottom: 162/1837
  38606. }
  38607. },
  38608. },
  38609. [
  38610. {
  38611. name: "Mortal Interaction",
  38612. height: math.unit(8, "feet"),
  38613. default: true
  38614. },
  38615. {
  38616. name: "Large",
  38617. height: math.unit(24, "feet")
  38618. },
  38619. {
  38620. name: "Kaiju",
  38621. height: math.unit(240, "feet")
  38622. },
  38623. {
  38624. name: "Megamacro",
  38625. height: math.unit(8000, "feet")
  38626. },
  38627. {
  38628. name: "Continent Cracker",
  38629. height: math.unit(24e6, "feet")
  38630. },
  38631. {
  38632. name: "Earth-Eclipsing",
  38633. height: math.unit(2.4e8, "feet")
  38634. },
  38635. {
  38636. name: "Sol-Swallowing",
  38637. height: math.unit(8e10, "feet")
  38638. },
  38639. {
  38640. name: "Galaxy Gulper",
  38641. height: math.unit(8, "galaxies")
  38642. },
  38643. {
  38644. name: "Light Universal",
  38645. height: math.unit(4, "universes")
  38646. },
  38647. {
  38648. name: "Universe Atoms",
  38649. height: math.unit(1.829e9, "universes")
  38650. },
  38651. {
  38652. name: "Light Multiversal",
  38653. height: math.unit(4, "multiverses")
  38654. },
  38655. {
  38656. name: "Multiverse Atoms",
  38657. height: math.unit(1.829e9, "multiverses")
  38658. },
  38659. {
  38660. name: "Nigh-Omnipresence",
  38661. height: math.unit(8e261, "multiverses")
  38662. },
  38663. ]
  38664. ))
  38665. characterMakers.push(() => makeCharacter(
  38666. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38667. {
  38668. front: {
  38669. height: math.unit(10, "feet"),
  38670. weight: math.unit(1500, "lb"),
  38671. name: "Front",
  38672. image: {
  38673. source: "./media/characters/miles-thestia/front.svg",
  38674. extra: 1812/1727,
  38675. bottom: 86/1898
  38676. }
  38677. },
  38678. back: {
  38679. height: math.unit(10, "feet"),
  38680. weight: math.unit(1500, "lb"),
  38681. name: "Back",
  38682. image: {
  38683. source: "./media/characters/miles-thestia/back.svg",
  38684. extra: 1799/1690,
  38685. bottom: 47/1846
  38686. }
  38687. },
  38688. frontNsfw: {
  38689. height: math.unit(10, "feet"),
  38690. weight: math.unit(1500, "lb"),
  38691. name: "Front (NSFW)",
  38692. image: {
  38693. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38694. extra: 1812/1727,
  38695. bottom: 86/1898
  38696. }
  38697. },
  38698. },
  38699. [
  38700. {
  38701. name: "Mini-Macro",
  38702. height: math.unit(10, "feet"),
  38703. default: true
  38704. },
  38705. ]
  38706. ))
  38707. characterMakers.push(() => makeCharacter(
  38708. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38709. {
  38710. front: {
  38711. height: math.unit(25, "feet"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/titan-s-wulf/front.svg",
  38715. extra: 1560/1484,
  38716. bottom: 76/1636
  38717. }
  38718. },
  38719. },
  38720. [
  38721. {
  38722. name: "Smallest",
  38723. height: math.unit(25, "feet"),
  38724. default: true
  38725. },
  38726. {
  38727. name: "Normal",
  38728. height: math.unit(200, "feet")
  38729. },
  38730. {
  38731. name: "Macro",
  38732. height: math.unit(200000, "feet")
  38733. },
  38734. {
  38735. name: "Multiversal Original",
  38736. height: math.unit(10000, "multiverses")
  38737. },
  38738. ]
  38739. ))
  38740. characterMakers.push(() => makeCharacter(
  38741. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38742. {
  38743. front: {
  38744. height: math.unit(8, "feet"),
  38745. weight: math.unit(553, "lb"),
  38746. name: "Front",
  38747. image: {
  38748. source: "./media/characters/tawendeh/front.svg",
  38749. extra: 2365/2268,
  38750. bottom: 83/2448
  38751. }
  38752. },
  38753. frontClothed: {
  38754. height: math.unit(8, "feet"),
  38755. weight: math.unit(553, "lb"),
  38756. name: "Front (Clothed)",
  38757. image: {
  38758. source: "./media/characters/tawendeh/front-clothed.svg",
  38759. extra: 2365/2268,
  38760. bottom: 83/2448
  38761. }
  38762. },
  38763. back: {
  38764. height: math.unit(8, "feet"),
  38765. weight: math.unit(553, "lb"),
  38766. name: "Back",
  38767. image: {
  38768. source: "./media/characters/tawendeh/back.svg",
  38769. extra: 2397/2294,
  38770. bottom: 42/2439
  38771. }
  38772. },
  38773. },
  38774. [
  38775. {
  38776. name: "Mortal Interaction",
  38777. height: math.unit(8, "feet"),
  38778. default: true
  38779. },
  38780. {
  38781. name: "Giant",
  38782. height: math.unit(80, "feet")
  38783. },
  38784. {
  38785. name: "Macro",
  38786. height: math.unit(800, "feet")
  38787. },
  38788. {
  38789. name: "Megamacro",
  38790. height: math.unit(8000, "feet")
  38791. },
  38792. {
  38793. name: "City-Crushing",
  38794. height: math.unit(24000, "feet")
  38795. },
  38796. {
  38797. name: "Mountain-Mashing",
  38798. height: math.unit(80000, "feet")
  38799. },
  38800. {
  38801. name: "Nation Nemesis",
  38802. height: math.unit(8e6, "feet")
  38803. },
  38804. {
  38805. name: "Continent Cracker",
  38806. height: math.unit(24e6, "feet")
  38807. },
  38808. {
  38809. name: "Earth-Eclipsing",
  38810. height: math.unit(2.4e8, "feet")
  38811. },
  38812. {
  38813. name: "Gas Giant Gulper",
  38814. height: math.unit(2.4e9, "feet")
  38815. },
  38816. {
  38817. name: "Sol-Swallowing",
  38818. height: math.unit(8e10, "feet")
  38819. },
  38820. {
  38821. name: "Galaxy Gulper",
  38822. height: math.unit(8, "galaxies")
  38823. },
  38824. {
  38825. name: "Cosmos Churner",
  38826. height: math.unit(8, "universes")
  38827. },
  38828. {
  38829. name: "Omnipotent Otter",
  38830. height: math.unit(80, "universes")
  38831. },
  38832. ]
  38833. ))
  38834. characterMakers.push(() => makeCharacter(
  38835. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38836. {
  38837. front: {
  38838. height: math.unit(2.6, "meters"),
  38839. weight: math.unit(900, "kg"),
  38840. name: "Front",
  38841. image: {
  38842. source: "./media/characters/neesha/front.svg",
  38843. extra: 1803/1653,
  38844. bottom: 128/1931
  38845. }
  38846. },
  38847. },
  38848. [
  38849. {
  38850. name: "Normal",
  38851. height: math.unit(2.6, "meters"),
  38852. default: true
  38853. },
  38854. {
  38855. name: "Macro",
  38856. height: math.unit(50, "meters")
  38857. },
  38858. ]
  38859. ))
  38860. characterMakers.push(() => makeCharacter(
  38861. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38862. {
  38863. front: {
  38864. height: math.unit(5, "feet"),
  38865. weight: math.unit(185, "lb"),
  38866. name: "Front",
  38867. image: {
  38868. source: "./media/characters/kyera/front.svg",
  38869. extra: 1875/1790,
  38870. bottom: 96/1971
  38871. }
  38872. },
  38873. },
  38874. [
  38875. {
  38876. name: "Normal",
  38877. height: math.unit(5, "feet"),
  38878. default: true
  38879. },
  38880. ]
  38881. ))
  38882. characterMakers.push(() => makeCharacter(
  38883. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38884. {
  38885. front: {
  38886. height: math.unit(7 + 6/12, "feet"),
  38887. weight: math.unit(540, "lb"),
  38888. name: "Front",
  38889. image: {
  38890. source: "./media/characters/yuko/front.svg",
  38891. extra: 1282/1222,
  38892. bottom: 101/1383
  38893. }
  38894. },
  38895. frontClothed: {
  38896. height: math.unit(7 + 6/12, "feet"),
  38897. weight: math.unit(540, "lb"),
  38898. name: "Front (Clothed)",
  38899. image: {
  38900. source: "./media/characters/yuko/front-clothed.svg",
  38901. extra: 1282/1222,
  38902. bottom: 101/1383
  38903. }
  38904. },
  38905. },
  38906. [
  38907. {
  38908. name: "Normal",
  38909. height: math.unit(7 + 6/12, "feet"),
  38910. default: true
  38911. },
  38912. {
  38913. name: "Macro",
  38914. height: math.unit(26 + 9/12, "feet")
  38915. },
  38916. {
  38917. name: "Megamacro",
  38918. height: math.unit(300, "feet")
  38919. },
  38920. {
  38921. name: "Gigamacro",
  38922. height: math.unit(5000, "feet")
  38923. },
  38924. {
  38925. name: "Planetary",
  38926. height: math.unit(10000, "miles")
  38927. },
  38928. ]
  38929. ))
  38930. characterMakers.push(() => makeCharacter(
  38931. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38932. {
  38933. front: {
  38934. height: math.unit(8 + 2/12, "feet"),
  38935. weight: math.unit(600, "lb"),
  38936. name: "Front",
  38937. image: {
  38938. source: "./media/characters/deam-nitrel/front.svg",
  38939. extra: 1308/1234,
  38940. bottom: 125/1433
  38941. }
  38942. },
  38943. },
  38944. [
  38945. {
  38946. name: "Normal",
  38947. height: math.unit(8 + 2/12, "feet"),
  38948. default: true
  38949. },
  38950. ]
  38951. ))
  38952. characterMakers.push(() => makeCharacter(
  38953. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38954. {
  38955. front: {
  38956. height: math.unit(6.1, "feet"),
  38957. weight: math.unit(180, "lb"),
  38958. name: "Front",
  38959. image: {
  38960. source: "./media/characters/skyress/front.svg",
  38961. extra: 1045/915,
  38962. bottom: 28/1073
  38963. }
  38964. },
  38965. maw: {
  38966. height: math.unit(1, "feet"),
  38967. name: "Maw",
  38968. image: {
  38969. source: "./media/characters/skyress/maw.svg"
  38970. }
  38971. },
  38972. },
  38973. [
  38974. {
  38975. name: "Normal",
  38976. height: math.unit(6.1, "feet"),
  38977. default: true
  38978. },
  38979. {
  38980. name: "Macro",
  38981. height: math.unit(200, "feet")
  38982. },
  38983. ]
  38984. ))
  38985. characterMakers.push(() => makeCharacter(
  38986. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38987. {
  38988. front: {
  38989. height: math.unit(4 + 2/12, "feet"),
  38990. weight: math.unit(40, "kg"),
  38991. name: "Front",
  38992. image: {
  38993. source: "./media/characters/amethyst-jones/front.svg",
  38994. extra: 1220/1150,
  38995. bottom: 101/1321
  38996. }
  38997. },
  38998. },
  38999. [
  39000. {
  39001. name: "Normal",
  39002. height: math.unit(4 + 2/12, "feet"),
  39003. default: true
  39004. },
  39005. ]
  39006. ))
  39007. characterMakers.push(() => makeCharacter(
  39008. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39009. {
  39010. front: {
  39011. height: math.unit(1.7, "m"),
  39012. weight: math.unit(135, "lb"),
  39013. name: "Front",
  39014. image: {
  39015. source: "./media/characters/jade/front.svg",
  39016. extra: 1818/1767,
  39017. bottom: 32/1850
  39018. }
  39019. },
  39020. back: {
  39021. height: math.unit(1.7, "m"),
  39022. weight: math.unit(135, "lb"),
  39023. name: "Back",
  39024. image: {
  39025. source: "./media/characters/jade/back.svg",
  39026. extra: 1869/1809,
  39027. bottom: 35/1904
  39028. }
  39029. },
  39030. hand: {
  39031. height: math.unit(0.24, "m"),
  39032. name: "Hand",
  39033. image: {
  39034. source: "./media/characters/jade/hand.svg"
  39035. }
  39036. },
  39037. foot: {
  39038. height: math.unit(0.263, "m"),
  39039. name: "Foot",
  39040. image: {
  39041. source: "./media/characters/jade/foot.svg"
  39042. }
  39043. },
  39044. dick: {
  39045. height: math.unit(0.47, "m"),
  39046. name: "Dick",
  39047. image: {
  39048. source: "./media/characters/jade/dick.svg"
  39049. }
  39050. },
  39051. },
  39052. [
  39053. {
  39054. name: "Micro",
  39055. height: math.unit(22, "cm")
  39056. },
  39057. {
  39058. name: "Normal",
  39059. height: math.unit(1.7, "m"),
  39060. default: true
  39061. },
  39062. {
  39063. name: "Macro",
  39064. height: math.unit(152, "m")
  39065. },
  39066. ]
  39067. ))
  39068. characterMakers.push(() => makeCharacter(
  39069. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39070. {
  39071. front: {
  39072. height: math.unit(100, "miles"),
  39073. weight: math.unit(20000, "tons"),
  39074. name: "Front",
  39075. image: {
  39076. source: "./media/characters/cookie/front.svg",
  39077. extra: 1125/1070,
  39078. bottom: 30/1155
  39079. }
  39080. },
  39081. },
  39082. [
  39083. {
  39084. name: "Big",
  39085. height: math.unit(50, "feet")
  39086. },
  39087. {
  39088. name: "Macro",
  39089. height: math.unit(100, "miles"),
  39090. default: true
  39091. },
  39092. {
  39093. name: "Megamacro",
  39094. height: math.unit(90000, "miles")
  39095. },
  39096. ]
  39097. ))
  39098. characterMakers.push(() => makeCharacter(
  39099. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39100. {
  39101. front: {
  39102. height: math.unit(6, "feet"),
  39103. weight: math.unit(145, "lb"),
  39104. name: "Front",
  39105. image: {
  39106. source: "./media/characters/farzian/front.svg",
  39107. extra: 1902/1693,
  39108. bottom: 108/2010
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Macro",
  39115. height: math.unit(500, "feet"),
  39116. default: true
  39117. },
  39118. ]
  39119. ))
  39120. characterMakers.push(() => makeCharacter(
  39121. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39122. {
  39123. front: {
  39124. height: math.unit(3 + 6/12, "feet"),
  39125. weight: math.unit(50, "lb"),
  39126. name: "Front",
  39127. image: {
  39128. source: "./media/characters/kimberly-tilson/front.svg",
  39129. extra: 1400/1322,
  39130. bottom: 36/1436
  39131. }
  39132. },
  39133. back: {
  39134. height: math.unit(3 + 6/12, "feet"),
  39135. weight: math.unit(50, "lb"),
  39136. name: "Back",
  39137. image: {
  39138. source: "./media/characters/kimberly-tilson/back.svg",
  39139. extra: 1370/1307,
  39140. bottom: 20/1390
  39141. }
  39142. },
  39143. },
  39144. [
  39145. {
  39146. name: "Normal",
  39147. height: math.unit(3 + 6/12, "feet"),
  39148. default: true
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39154. {
  39155. front: {
  39156. height: math.unit(1148, "feet"),
  39157. weight: math.unit(34057, "lb"),
  39158. name: "Front",
  39159. image: {
  39160. source: "./media/characters/harthos/front.svg",
  39161. extra: 1391/1339,
  39162. bottom: 13/1404
  39163. }
  39164. },
  39165. },
  39166. [
  39167. {
  39168. name: "Macro",
  39169. height: math.unit(1148, "feet"),
  39170. default: true
  39171. },
  39172. ]
  39173. ))
  39174. characterMakers.push(() => makeCharacter(
  39175. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39176. {
  39177. front: {
  39178. height: math.unit(15, "feet"),
  39179. name: "Front",
  39180. image: {
  39181. source: "./media/characters/hypatia/front.svg",
  39182. extra: 1653/1591,
  39183. bottom: 79/1732
  39184. }
  39185. },
  39186. },
  39187. [
  39188. {
  39189. name: "Normal",
  39190. height: math.unit(15, "feet")
  39191. },
  39192. {
  39193. name: "Small",
  39194. height: math.unit(300, "feet")
  39195. },
  39196. {
  39197. name: "Macro",
  39198. height: math.unit(2500, "feet"),
  39199. default: true
  39200. },
  39201. {
  39202. name: "Mega Macro",
  39203. height: math.unit(1500, "miles")
  39204. },
  39205. {
  39206. name: "Giga Macro",
  39207. height: math.unit(1.5e6, "miles")
  39208. },
  39209. ]
  39210. ))
  39211. characterMakers.push(() => makeCharacter(
  39212. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39213. {
  39214. front: {
  39215. height: math.unit(6, "feet"),
  39216. weight: math.unit(200, "lb"),
  39217. name: "Front",
  39218. image: {
  39219. source: "./media/characters/wulver/front.svg",
  39220. extra: 1724/1632,
  39221. bottom: 130/1854
  39222. }
  39223. },
  39224. frontNsfw: {
  39225. height: math.unit(6, "feet"),
  39226. weight: math.unit(200, "lb"),
  39227. name: "Front (NSFW)",
  39228. image: {
  39229. source: "./media/characters/wulver/front-nsfw.svg",
  39230. extra: 1724/1632,
  39231. bottom: 130/1854
  39232. }
  39233. },
  39234. },
  39235. [
  39236. {
  39237. name: "Human-Sized",
  39238. height: math.unit(6, "feet")
  39239. },
  39240. {
  39241. name: "Normal",
  39242. height: math.unit(4, "meters"),
  39243. default: true
  39244. },
  39245. {
  39246. name: "Large",
  39247. height: math.unit(6, "m")
  39248. },
  39249. ]
  39250. ))
  39251. characterMakers.push(() => makeCharacter(
  39252. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39253. {
  39254. front: {
  39255. height: math.unit(7, "feet"),
  39256. name: "Front",
  39257. image: {
  39258. source: "./media/characters/maru/front.svg",
  39259. extra: 1595/1570,
  39260. bottom: 0/1595
  39261. }
  39262. },
  39263. },
  39264. [
  39265. {
  39266. name: "Normal",
  39267. height: math.unit(7, "feet"),
  39268. default: true
  39269. },
  39270. {
  39271. name: "Macro",
  39272. height: math.unit(700, "feet")
  39273. },
  39274. {
  39275. name: "Mega Macro",
  39276. height: math.unit(25, "miles")
  39277. },
  39278. ]
  39279. ))
  39280. characterMakers.push(() => makeCharacter(
  39281. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39282. {
  39283. front: {
  39284. height: math.unit(6, "feet"),
  39285. weight: math.unit(170, "lb"),
  39286. name: "Front",
  39287. image: {
  39288. source: "./media/characters/xenon/front.svg",
  39289. extra: 1376/1305,
  39290. bottom: 56/1432
  39291. }
  39292. },
  39293. back: {
  39294. height: math.unit(6, "feet"),
  39295. weight: math.unit(170, "lb"),
  39296. name: "Back",
  39297. image: {
  39298. source: "./media/characters/xenon/back.svg",
  39299. extra: 1328/1259,
  39300. bottom: 95/1423
  39301. }
  39302. },
  39303. maw: {
  39304. height: math.unit(0.52, "feet"),
  39305. name: "Maw",
  39306. image: {
  39307. source: "./media/characters/xenon/maw.svg"
  39308. }
  39309. },
  39310. hand: {
  39311. height: math.unit(0.82, "feet"),
  39312. name: "Hand",
  39313. image: {
  39314. source: "./media/characters/xenon/hand.svg"
  39315. }
  39316. },
  39317. foot: {
  39318. height: math.unit(1.13, "feet"),
  39319. name: "Foot",
  39320. image: {
  39321. source: "./media/characters/xenon/foot.svg"
  39322. }
  39323. },
  39324. },
  39325. [
  39326. {
  39327. name: "Micro",
  39328. height: math.unit(0.8, "inches")
  39329. },
  39330. {
  39331. name: "Normal",
  39332. height: math.unit(6, "feet")
  39333. },
  39334. {
  39335. name: "Macro",
  39336. height: math.unit(50, "feet"),
  39337. default: true
  39338. },
  39339. {
  39340. name: "Macro+",
  39341. height: math.unit(250, "feet")
  39342. },
  39343. {
  39344. name: "Megamacro",
  39345. height: math.unit(1500, "feet")
  39346. },
  39347. ]
  39348. ))
  39349. characterMakers.push(() => makeCharacter(
  39350. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39351. {
  39352. front: {
  39353. height: math.unit(7 + 5/12, "feet"),
  39354. name: "Front",
  39355. image: {
  39356. source: "./media/characters/zane/front.svg",
  39357. extra: 1260/1203,
  39358. bottom: 94/1354
  39359. }
  39360. },
  39361. back: {
  39362. height: math.unit(5.05, "feet"),
  39363. name: "Back",
  39364. image: {
  39365. source: "./media/characters/zane/back.svg",
  39366. extra: 893/829,
  39367. bottom: 30/923
  39368. }
  39369. },
  39370. werewolf: {
  39371. height: math.unit(11, "feet"),
  39372. name: "Werewolf",
  39373. image: {
  39374. source: "./media/characters/zane/werewolf.svg",
  39375. extra: 1383/1323,
  39376. bottom: 89/1472
  39377. }
  39378. },
  39379. foot: {
  39380. height: math.unit(1.46, "feet"),
  39381. name: "Foot",
  39382. image: {
  39383. source: "./media/characters/zane/foot.svg"
  39384. }
  39385. },
  39386. footFront: {
  39387. height: math.unit(0.784, "feet"),
  39388. name: "Foot (Front)",
  39389. image: {
  39390. source: "./media/characters/zane/foot-front.svg"
  39391. }
  39392. },
  39393. dick: {
  39394. height: math.unit(1.95, "feet"),
  39395. name: "Dick",
  39396. image: {
  39397. source: "./media/characters/zane/dick.svg"
  39398. }
  39399. },
  39400. dickWerewolf: {
  39401. height: math.unit(3.77, "feet"),
  39402. name: "Dick (Werewolf)",
  39403. image: {
  39404. source: "./media/characters/zane/dick.svg"
  39405. }
  39406. },
  39407. },
  39408. [
  39409. {
  39410. name: "Normal",
  39411. height: math.unit(7 + 5/12, "feet"),
  39412. default: true
  39413. },
  39414. ]
  39415. ))
  39416. characterMakers.push(() => makeCharacter(
  39417. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39418. {
  39419. front: {
  39420. height: math.unit(6 + 2/12, "feet"),
  39421. weight: math.unit(284, "lb"),
  39422. name: "Front",
  39423. image: {
  39424. source: "./media/characters/benni-desparque/front.svg",
  39425. extra: 1353/1126,
  39426. bottom: 69/1422
  39427. }
  39428. },
  39429. },
  39430. [
  39431. {
  39432. name: "Civilian",
  39433. height: math.unit(6 + 2/12, "feet")
  39434. },
  39435. {
  39436. name: "Normal",
  39437. height: math.unit(98, "feet"),
  39438. default: true
  39439. },
  39440. {
  39441. name: "Kaiju Fighter",
  39442. height: math.unit(268, "feet")
  39443. },
  39444. ]
  39445. ))
  39446. characterMakers.push(() => makeCharacter(
  39447. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39448. {
  39449. front: {
  39450. height: math.unit(5, "feet"),
  39451. weight: math.unit(105, "lb"),
  39452. name: "Front",
  39453. image: {
  39454. source: "./media/characters/maxine/front.svg",
  39455. extra: 1386/1250,
  39456. bottom: 71/1457
  39457. }
  39458. },
  39459. },
  39460. [
  39461. {
  39462. name: "Normal",
  39463. height: math.unit(5, "feet"),
  39464. default: true
  39465. },
  39466. ]
  39467. ))
  39468. characterMakers.push(() => makeCharacter(
  39469. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39470. {
  39471. front: {
  39472. height: math.unit(11 + 7/12, "feet"),
  39473. weight: math.unit(9576, "lb"),
  39474. name: "Front",
  39475. image: {
  39476. source: "./media/characters/scaly/front.svg",
  39477. extra: 888/867,
  39478. bottom: 36/924
  39479. }
  39480. },
  39481. },
  39482. [
  39483. {
  39484. name: "Normal",
  39485. height: math.unit(11 + 7/12, "feet"),
  39486. default: true
  39487. },
  39488. ]
  39489. ))
  39490. characterMakers.push(() => makeCharacter(
  39491. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39492. {
  39493. front: {
  39494. height: math.unit(9, "inches"),
  39495. name: "Front",
  39496. image: {
  39497. source: "./media/characters/saelria/front.svg",
  39498. extra: 662/621,
  39499. bottom: 12/674
  39500. }
  39501. },
  39502. },
  39503. [
  39504. {
  39505. name: "Tiny",
  39506. height: math.unit(9, "inches"),
  39507. default: true
  39508. },
  39509. ]
  39510. ))
  39511. characterMakers.push(() => makeCharacter(
  39512. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39513. {
  39514. front: {
  39515. height: math.unit(80, "meters"),
  39516. weight: math.unit(7000, "tonnes"),
  39517. name: "Front",
  39518. image: {
  39519. source: "./media/characters/tef/front.svg",
  39520. extra: 2036/1991,
  39521. bottom: 54/2090
  39522. }
  39523. },
  39524. back: {
  39525. height: math.unit(80, "meters"),
  39526. weight: math.unit(7000, "tonnes"),
  39527. name: "Back",
  39528. image: {
  39529. source: "./media/characters/tef/back.svg",
  39530. extra: 2036/1991,
  39531. bottom: 54/2090
  39532. }
  39533. },
  39534. },
  39535. [
  39536. {
  39537. name: "Macro",
  39538. height: math.unit(80, "meters"),
  39539. default: true
  39540. },
  39541. ]
  39542. ))
  39543. characterMakers.push(() => makeCharacter(
  39544. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39545. {
  39546. front: {
  39547. height: math.unit(13, "feet"),
  39548. weight: math.unit(6, "tons"),
  39549. name: "Front",
  39550. image: {
  39551. source: "./media/characters/rover/front.svg",
  39552. extra: 1233/1156,
  39553. bottom: 50/1283
  39554. }
  39555. },
  39556. back: {
  39557. height: math.unit(13, "feet"),
  39558. weight: math.unit(6, "tons"),
  39559. name: "Back",
  39560. image: {
  39561. source: "./media/characters/rover/back.svg",
  39562. extra: 1327/1258,
  39563. bottom: 39/1366
  39564. }
  39565. },
  39566. },
  39567. [
  39568. {
  39569. name: "Normal",
  39570. height: math.unit(13, "feet"),
  39571. default: true
  39572. },
  39573. {
  39574. name: "Macro",
  39575. height: math.unit(1300, "feet")
  39576. },
  39577. {
  39578. name: "Megamacro",
  39579. height: math.unit(1300, "miles")
  39580. },
  39581. {
  39582. name: "Gigamacro",
  39583. height: math.unit(1300000, "miles")
  39584. },
  39585. ]
  39586. ))
  39587. characterMakers.push(() => makeCharacter(
  39588. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39589. {
  39590. front: {
  39591. height: math.unit(6, "feet"),
  39592. weight: math.unit(150, "lb"),
  39593. name: "Front",
  39594. image: {
  39595. source: "./media/characters/ariz/front.svg",
  39596. extra: 1401/1346,
  39597. bottom: 5/1406
  39598. }
  39599. },
  39600. },
  39601. [
  39602. {
  39603. name: "Normal",
  39604. height: math.unit(10, "feet"),
  39605. default: true
  39606. },
  39607. ]
  39608. ))
  39609. characterMakers.push(() => makeCharacter(
  39610. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39611. {
  39612. front: {
  39613. height: math.unit(6, "feet"),
  39614. weight: math.unit(140, "lb"),
  39615. name: "Front",
  39616. image: {
  39617. source: "./media/characters/sigrun/front.svg",
  39618. extra: 1418/1359,
  39619. bottom: 27/1445
  39620. }
  39621. },
  39622. },
  39623. [
  39624. {
  39625. name: "Macro",
  39626. height: math.unit(35, "feet"),
  39627. default: true
  39628. },
  39629. ]
  39630. ))
  39631. characterMakers.push(() => makeCharacter(
  39632. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39633. {
  39634. front: {
  39635. height: math.unit(6, "feet"),
  39636. weight: math.unit(150, "lb"),
  39637. name: "Front",
  39638. image: {
  39639. source: "./media/characters/numin/front.svg",
  39640. extra: 1433/1388,
  39641. bottom: 12/1445
  39642. }
  39643. },
  39644. },
  39645. [
  39646. {
  39647. name: "Macro",
  39648. height: math.unit(21.5, "km"),
  39649. default: true
  39650. },
  39651. ]
  39652. ))
  39653. characterMakers.push(() => makeCharacter(
  39654. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39655. {
  39656. front: {
  39657. height: math.unit(6, "feet"),
  39658. weight: math.unit(463, "lb"),
  39659. name: "Front",
  39660. image: {
  39661. source: "./media/characters/melwa/front.svg",
  39662. extra: 1307/1248,
  39663. bottom: 93/1400
  39664. }
  39665. },
  39666. },
  39667. [
  39668. {
  39669. name: "Macro",
  39670. height: math.unit(50, "meters"),
  39671. default: true
  39672. },
  39673. ]
  39674. ))
  39675. characterMakers.push(() => makeCharacter(
  39676. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39677. {
  39678. front: {
  39679. height: math.unit(325, "feet"),
  39680. name: "Front",
  39681. image: {
  39682. source: "./media/characters/zorkaiju/front.svg",
  39683. extra: 1955/1814,
  39684. bottom: 40/1995
  39685. }
  39686. },
  39687. frontExtended: {
  39688. height: math.unit(325, "feet"),
  39689. name: "Front (Extended)",
  39690. image: {
  39691. source: "./media/characters/zorkaiju/front-extended.svg",
  39692. extra: 1955/1814,
  39693. bottom: 40/1995
  39694. }
  39695. },
  39696. side: {
  39697. height: math.unit(325, "feet"),
  39698. name: "Side",
  39699. image: {
  39700. source: "./media/characters/zorkaiju/side.svg",
  39701. extra: 1495/1396,
  39702. bottom: 17/1512
  39703. }
  39704. },
  39705. sideExtended: {
  39706. height: math.unit(325, "feet"),
  39707. name: "Side (Extended)",
  39708. image: {
  39709. source: "./media/characters/zorkaiju/side-extended.svg",
  39710. extra: 1495/1396,
  39711. bottom: 17/1512
  39712. }
  39713. },
  39714. back: {
  39715. height: math.unit(325, "feet"),
  39716. name: "Back",
  39717. image: {
  39718. source: "./media/characters/zorkaiju/back.svg",
  39719. extra: 1959/1821,
  39720. bottom: 31/1990
  39721. }
  39722. },
  39723. backExtended: {
  39724. height: math.unit(325, "feet"),
  39725. name: "Back (Extended)",
  39726. image: {
  39727. source: "./media/characters/zorkaiju/back-extended.svg",
  39728. extra: 1959/1821,
  39729. bottom: 31/1990
  39730. }
  39731. },
  39732. hand: {
  39733. height: math.unit(58.4, "feet"),
  39734. name: "Hand",
  39735. image: {
  39736. source: "./media/characters/zorkaiju/hand.svg"
  39737. }
  39738. },
  39739. handExtended: {
  39740. height: math.unit(61.4, "feet"),
  39741. name: "Hand (Extended)",
  39742. image: {
  39743. source: "./media/characters/zorkaiju/hand-extended.svg"
  39744. }
  39745. },
  39746. foot: {
  39747. height: math.unit(95, "feet"),
  39748. name: "Foot",
  39749. image: {
  39750. source: "./media/characters/zorkaiju/foot.svg"
  39751. }
  39752. },
  39753. leftArm: {
  39754. height: math.unit(59, "feet"),
  39755. name: "Left Arm",
  39756. image: {
  39757. source: "./media/characters/zorkaiju/left-arm.svg"
  39758. }
  39759. },
  39760. rightArm: {
  39761. height: math.unit(59, "feet"),
  39762. name: "Right Arm",
  39763. image: {
  39764. source: "./media/characters/zorkaiju/right-arm.svg"
  39765. }
  39766. },
  39767. tail: {
  39768. height: math.unit(104, "feet"),
  39769. name: "Tail",
  39770. image: {
  39771. source: "./media/characters/zorkaiju/tail.svg"
  39772. }
  39773. },
  39774. tailExtended: {
  39775. height: math.unit(104, "feet"),
  39776. name: "Tail (Extended)",
  39777. image: {
  39778. source: "./media/characters/zorkaiju/tail-extended.svg"
  39779. }
  39780. },
  39781. tailBottom: {
  39782. height: math.unit(104, "feet"),
  39783. name: "Tail Bottom",
  39784. image: {
  39785. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39786. }
  39787. },
  39788. crystal: {
  39789. height: math.unit(27.54, "feet"),
  39790. name: "Crystal",
  39791. image: {
  39792. source: "./media/characters/zorkaiju/crystal.svg"
  39793. }
  39794. },
  39795. },
  39796. [
  39797. {
  39798. name: "Kaiju",
  39799. height: math.unit(325, "feet"),
  39800. default: true
  39801. },
  39802. ]
  39803. ))
  39804. characterMakers.push(() => makeCharacter(
  39805. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39806. {
  39807. front: {
  39808. height: math.unit(6 + 1/12, "feet"),
  39809. weight: math.unit(115, "lb"),
  39810. name: "Front",
  39811. image: {
  39812. source: "./media/characters/bailey-belfry/front.svg",
  39813. extra: 1240/1121,
  39814. bottom: 101/1341
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Normal",
  39821. height: math.unit(6 + 1/12, "feet"),
  39822. default: true
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39828. {
  39829. side: {
  39830. height: math.unit(4, "meters"),
  39831. weight: math.unit(250, "kg"),
  39832. name: "Side",
  39833. image: {
  39834. source: "./media/characters/blacky/side.svg",
  39835. extra: 1027/919,
  39836. bottom: 43/1070
  39837. }
  39838. },
  39839. maw: {
  39840. height: math.unit(1, "meters"),
  39841. name: "Maw",
  39842. image: {
  39843. source: "./media/characters/blacky/maw.svg"
  39844. }
  39845. },
  39846. paw: {
  39847. height: math.unit(1, "meters"),
  39848. name: "Paw",
  39849. image: {
  39850. source: "./media/characters/blacky/paw.svg"
  39851. }
  39852. },
  39853. },
  39854. [
  39855. {
  39856. name: "Normal",
  39857. height: math.unit(4, "meters"),
  39858. default: true
  39859. },
  39860. ]
  39861. ))
  39862. characterMakers.push(() => makeCharacter(
  39863. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39864. {
  39865. front: {
  39866. height: math.unit(170, "cm"),
  39867. weight: math.unit(66, "kg"),
  39868. name: "Front",
  39869. image: {
  39870. source: "./media/characters/thux-ei/front.svg",
  39871. extra: 1109/1011,
  39872. bottom: 8/1117
  39873. }
  39874. },
  39875. },
  39876. [
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(170, "cm"),
  39880. default: true
  39881. },
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39886. {
  39887. front: {
  39888. height: math.unit(5, "feet"),
  39889. weight: math.unit(120, "lb"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/roxanne-voltaire/front.svg",
  39893. extra: 1901/1779,
  39894. bottom: 53/1954
  39895. }
  39896. },
  39897. },
  39898. [
  39899. {
  39900. name: "Normal",
  39901. height: math.unit(5, "feet"),
  39902. default: true
  39903. },
  39904. {
  39905. name: "Giant",
  39906. height: math.unit(50, "feet")
  39907. },
  39908. {
  39909. name: "Titan",
  39910. height: math.unit(500, "feet")
  39911. },
  39912. {
  39913. name: "Macro",
  39914. height: math.unit(5000, "feet")
  39915. },
  39916. {
  39917. name: "Megamacro",
  39918. height: math.unit(50000, "feet")
  39919. },
  39920. {
  39921. name: "Gigamacro",
  39922. height: math.unit(500000, "feet")
  39923. },
  39924. {
  39925. name: "Teramacro",
  39926. height: math.unit(5e6, "feet")
  39927. },
  39928. ]
  39929. ))
  39930. characterMakers.push(() => makeCharacter(
  39931. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39932. {
  39933. front: {
  39934. height: math.unit(6 + 2/12, "feet"),
  39935. name: "Front",
  39936. image: {
  39937. source: "./media/characters/squeaks/front.svg",
  39938. extra: 1823/1768,
  39939. bottom: 138/1961
  39940. }
  39941. },
  39942. },
  39943. [
  39944. {
  39945. name: "Micro",
  39946. height: math.unit(0.5, "inches")
  39947. },
  39948. {
  39949. name: "Normal",
  39950. height: math.unit(6 + 2/12, "feet"),
  39951. default: true
  39952. },
  39953. {
  39954. name: "Macro",
  39955. height: math.unit(600, "feet")
  39956. },
  39957. ]
  39958. ))
  39959. characterMakers.push(() => makeCharacter(
  39960. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39961. {
  39962. front: {
  39963. height: math.unit(1.72, "meters"),
  39964. name: "Front",
  39965. image: {
  39966. source: "./media/characters/archinger/front.svg",
  39967. extra: 1861/1675,
  39968. bottom: 125/1986
  39969. }
  39970. },
  39971. back: {
  39972. height: math.unit(1.72, "meters"),
  39973. name: "Back",
  39974. image: {
  39975. source: "./media/characters/archinger/back.svg",
  39976. extra: 1844/1701,
  39977. bottom: 104/1948
  39978. }
  39979. },
  39980. cock: {
  39981. height: math.unit(0.59, "feet"),
  39982. name: "Cock",
  39983. image: {
  39984. source: "./media/characters/archinger/cock.svg"
  39985. }
  39986. },
  39987. },
  39988. [
  39989. {
  39990. name: "Normal",
  39991. height: math.unit(1.72, "meters"),
  39992. default: true
  39993. },
  39994. {
  39995. name: "Macro",
  39996. height: math.unit(84, "meters")
  39997. },
  39998. {
  39999. name: "Macro+",
  40000. height: math.unit(112, "meters")
  40001. },
  40002. {
  40003. name: "Macro++",
  40004. height: math.unit(960, "meters")
  40005. },
  40006. {
  40007. name: "Macro+++",
  40008. height: math.unit(4, "km")
  40009. },
  40010. {
  40011. name: "Macro++++",
  40012. height: math.unit(48, "km")
  40013. },
  40014. {
  40015. name: "Macro+++++",
  40016. height: math.unit(4500, "km")
  40017. },
  40018. ]
  40019. ))
  40020. characterMakers.push(() => makeCharacter(
  40021. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40022. {
  40023. front: {
  40024. height: math.unit(5 + 5/12, "feet"),
  40025. name: "Front",
  40026. image: {
  40027. source: "./media/characters/alsnapz/front.svg",
  40028. extra: 1157/1065,
  40029. bottom: 42/1199
  40030. }
  40031. },
  40032. },
  40033. [
  40034. {
  40035. name: "Normal",
  40036. height: math.unit(5 + 5/12, "feet"),
  40037. default: true
  40038. },
  40039. ]
  40040. ))
  40041. characterMakers.push(() => makeCharacter(
  40042. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40043. {
  40044. side: {
  40045. height: math.unit(3.2, "earths"),
  40046. name: "Side",
  40047. image: {
  40048. source: "./media/characters/mag/side.svg",
  40049. extra: 1331/1008,
  40050. bottom: 52/1383
  40051. }
  40052. },
  40053. wing: {
  40054. height: math.unit(1.94, "earths"),
  40055. name: "Wing",
  40056. image: {
  40057. source: "./media/characters/mag/wing.svg"
  40058. }
  40059. },
  40060. dick: {
  40061. height: math.unit(1.8, "earths"),
  40062. name: "Dick",
  40063. image: {
  40064. source: "./media/characters/mag/dick.svg"
  40065. }
  40066. },
  40067. ass: {
  40068. height: math.unit(1.33, "earths"),
  40069. name: "Ass",
  40070. image: {
  40071. source: "./media/characters/mag/ass.svg"
  40072. }
  40073. },
  40074. head: {
  40075. height: math.unit(1.1, "earths"),
  40076. name: "Head",
  40077. image: {
  40078. source: "./media/characters/mag/head.svg"
  40079. }
  40080. },
  40081. maw: {
  40082. height: math.unit(1.62, "earths"),
  40083. name: "Maw",
  40084. image: {
  40085. source: "./media/characters/mag/maw.svg"
  40086. }
  40087. },
  40088. },
  40089. [
  40090. {
  40091. name: "Small",
  40092. height: math.unit(162, "feet")
  40093. },
  40094. {
  40095. name: "Normal",
  40096. height: math.unit(3.2, "earths"),
  40097. default: true
  40098. },
  40099. ]
  40100. ))
  40101. characterMakers.push(() => makeCharacter(
  40102. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40103. {
  40104. front: {
  40105. height: math.unit(512, "feet"),
  40106. weight: math.unit(63509, "tonnes"),
  40107. name: "Front",
  40108. image: {
  40109. source: "./media/characters/vorrel-harroc/front.svg",
  40110. extra: 1075/1063,
  40111. bottom: 62/1137
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Normal",
  40118. height: math.unit(10, "feet")
  40119. },
  40120. {
  40121. name: "Macro",
  40122. height: math.unit(512, "feet"),
  40123. default: true
  40124. },
  40125. {
  40126. name: "Megamacro",
  40127. height: math.unit(256, "miles")
  40128. },
  40129. {
  40130. name: "Gigamacro",
  40131. height: math.unit(4096, "miles")
  40132. },
  40133. ]
  40134. ))
  40135. characterMakers.push(() => makeCharacter(
  40136. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40137. {
  40138. side: {
  40139. height: math.unit(50, "feet"),
  40140. name: "Side",
  40141. image: {
  40142. source: "./media/characters/froimar/side.svg",
  40143. extra: 855/638,
  40144. bottom: 99/954
  40145. }
  40146. },
  40147. },
  40148. [
  40149. {
  40150. name: "Macro",
  40151. height: math.unit(50, "feet"),
  40152. default: true
  40153. },
  40154. ]
  40155. ))
  40156. characterMakers.push(() => makeCharacter(
  40157. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40158. {
  40159. front: {
  40160. height: math.unit(210, "miles"),
  40161. name: "Front",
  40162. image: {
  40163. source: "./media/characters/timothy/front.svg",
  40164. extra: 1007/943,
  40165. bottom: 62/1069
  40166. }
  40167. },
  40168. frontSkirt: {
  40169. height: math.unit(210, "miles"),
  40170. name: "Front (Skirt)",
  40171. image: {
  40172. source: "./media/characters/timothy/front-skirt.svg",
  40173. extra: 1007/943,
  40174. bottom: 62/1069
  40175. }
  40176. },
  40177. frontCoat: {
  40178. height: math.unit(210, "miles"),
  40179. name: "Front (Coat)",
  40180. image: {
  40181. source: "./media/characters/timothy/front-coat.svg",
  40182. extra: 1007/943,
  40183. bottom: 62/1069
  40184. }
  40185. },
  40186. },
  40187. [
  40188. {
  40189. name: "Macro",
  40190. height: math.unit(210, "miles"),
  40191. default: true
  40192. },
  40193. {
  40194. name: "Megamacro",
  40195. height: math.unit(210000, "miles")
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40201. {
  40202. front: {
  40203. height: math.unit(188, "feet"),
  40204. name: "Front",
  40205. image: {
  40206. source: "./media/characters/pyotr/front.svg",
  40207. extra: 1912/1826,
  40208. bottom: 18/1930
  40209. }
  40210. },
  40211. },
  40212. [
  40213. {
  40214. name: "Macro",
  40215. height: math.unit(188, "feet"),
  40216. default: true
  40217. },
  40218. {
  40219. name: "Megamacro",
  40220. height: math.unit(8, "miles")
  40221. },
  40222. ]
  40223. ))
  40224. characterMakers.push(() => makeCharacter(
  40225. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40226. {
  40227. side: {
  40228. height: math.unit(10, "feet"),
  40229. weight: math.unit(4500, "lb"),
  40230. name: "Side",
  40231. image: {
  40232. source: "./media/characters/ackart/side.svg",
  40233. extra: 1776/1668,
  40234. bottom: 116/1892
  40235. }
  40236. },
  40237. },
  40238. [
  40239. {
  40240. name: "Normal",
  40241. height: math.unit(10, "feet"),
  40242. default: true
  40243. },
  40244. ]
  40245. ))
  40246. characterMakers.push(() => makeCharacter(
  40247. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40248. {
  40249. side: {
  40250. height: math.unit(21, "feet"),
  40251. name: "Side",
  40252. image: {
  40253. source: "./media/characters/nolow/side.svg",
  40254. extra: 1484/1434,
  40255. bottom: 85/1569
  40256. }
  40257. },
  40258. sideErect: {
  40259. height: math.unit(21, "feet"),
  40260. name: "Side-erect",
  40261. image: {
  40262. source: "./media/characters/nolow/side-erect.svg",
  40263. extra: 1484/1434,
  40264. bottom: 85/1569
  40265. }
  40266. },
  40267. },
  40268. [
  40269. {
  40270. name: "Regular",
  40271. height: math.unit(12, "feet")
  40272. },
  40273. {
  40274. name: "Big Chee",
  40275. height: math.unit(21, "feet"),
  40276. default: true
  40277. },
  40278. ]
  40279. ))
  40280. characterMakers.push(() => makeCharacter(
  40281. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40282. {
  40283. front: {
  40284. height: math.unit(7, "feet"),
  40285. weight: math.unit(250, "lb"),
  40286. name: "Front",
  40287. image: {
  40288. source: "./media/characters/nines/front.svg",
  40289. extra: 1741/1607,
  40290. bottom: 41/1782
  40291. }
  40292. },
  40293. side: {
  40294. height: math.unit(7, "feet"),
  40295. weight: math.unit(250, "lb"),
  40296. name: "Side",
  40297. image: {
  40298. source: "./media/characters/nines/side.svg",
  40299. extra: 1854/1735,
  40300. bottom: 93/1947
  40301. }
  40302. },
  40303. back: {
  40304. height: math.unit(7, "feet"),
  40305. weight: math.unit(250, "lb"),
  40306. name: "Back",
  40307. image: {
  40308. source: "./media/characters/nines/back.svg",
  40309. extra: 1748/1615,
  40310. bottom: 20/1768
  40311. }
  40312. },
  40313. },
  40314. [
  40315. {
  40316. name: "Megamacro",
  40317. height: math.unit(99, "km"),
  40318. default: true
  40319. },
  40320. ]
  40321. ))
  40322. characterMakers.push(() => makeCharacter(
  40323. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40324. {
  40325. front: {
  40326. height: math.unit(5 + 10/12, "feet"),
  40327. weight: math.unit(210, "lb"),
  40328. name: "Front",
  40329. image: {
  40330. source: "./media/characters/zenith/front.svg",
  40331. extra: 1531/1452,
  40332. bottom: 198/1729
  40333. }
  40334. },
  40335. back: {
  40336. height: math.unit(5 + 10/12, "feet"),
  40337. weight: math.unit(210, "lb"),
  40338. name: "Back",
  40339. image: {
  40340. source: "./media/characters/zenith/back.svg",
  40341. extra: 1571/1487,
  40342. bottom: 75/1646
  40343. }
  40344. },
  40345. },
  40346. [
  40347. {
  40348. name: "Normal",
  40349. height: math.unit(5 + 10/12, "feet"),
  40350. default: true
  40351. }
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40356. {
  40357. front: {
  40358. height: math.unit(4, "feet"),
  40359. weight: math.unit(60, "lb"),
  40360. name: "Front",
  40361. image: {
  40362. source: "./media/characters/jasper/front.svg",
  40363. extra: 1450/1379,
  40364. bottom: 19/1469
  40365. }
  40366. },
  40367. },
  40368. [
  40369. {
  40370. name: "Normal",
  40371. height: math.unit(4, "feet"),
  40372. default: true
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(6 + 5/12, "feet"),
  40381. weight: math.unit(290, "lb"),
  40382. name: "Front",
  40383. image: {
  40384. source: "./media/characters/tiberius-thyben/front.svg",
  40385. extra: 757/739,
  40386. bottom: 39/796
  40387. }
  40388. },
  40389. },
  40390. [
  40391. {
  40392. name: "Micro",
  40393. height: math.unit(1.5, "inches")
  40394. },
  40395. {
  40396. name: "Normal",
  40397. height: math.unit(6 + 5/12, "feet"),
  40398. default: true
  40399. },
  40400. {
  40401. name: "Macro",
  40402. height: math.unit(300, "feet")
  40403. },
  40404. ]
  40405. ))
  40406. characterMakers.push(() => makeCharacter(
  40407. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40408. {
  40409. front: {
  40410. height: math.unit(5 + 6/12, "feet"),
  40411. weight: math.unit(60, "kg"),
  40412. name: "Front",
  40413. image: {
  40414. source: "./media/characters/sabre/front.svg",
  40415. extra: 738/671,
  40416. bottom: 27/765
  40417. }
  40418. },
  40419. },
  40420. [
  40421. {
  40422. name: "Teeny",
  40423. height: math.unit(2, "inches")
  40424. },
  40425. {
  40426. name: "Smol",
  40427. height: math.unit(8, "inches")
  40428. },
  40429. {
  40430. name: "Normal",
  40431. height: math.unit(5 + 6/12, "feet"),
  40432. default: true
  40433. },
  40434. {
  40435. name: "Mini-Macro",
  40436. height: math.unit(15, "feet")
  40437. },
  40438. {
  40439. name: "Macro",
  40440. height: math.unit(50, "feet")
  40441. },
  40442. ]
  40443. ))
  40444. characterMakers.push(() => makeCharacter(
  40445. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40446. {
  40447. front: {
  40448. height: math.unit(6 + 4/12, "feet"),
  40449. weight: math.unit(170, "lb"),
  40450. name: "Front",
  40451. image: {
  40452. source: "./media/characters/charlie/front.svg",
  40453. extra: 1348/1228,
  40454. bottom: 15/1363
  40455. }
  40456. },
  40457. },
  40458. [
  40459. {
  40460. name: "Macro",
  40461. height: math.unit(1700, "meters"),
  40462. default: true
  40463. },
  40464. {
  40465. name: "MegaMacro",
  40466. height: math.unit(20400, "meters")
  40467. },
  40468. ]
  40469. ))
  40470. characterMakers.push(() => makeCharacter(
  40471. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40472. {
  40473. front: {
  40474. height: math.unit(6 + 3/12, "feet"),
  40475. weight: math.unit(185, "lb"),
  40476. name: "Front",
  40477. image: {
  40478. source: "./media/characters/susan-grant/front.svg",
  40479. extra: 1351/1327,
  40480. bottom: 26/1377
  40481. }
  40482. },
  40483. },
  40484. [
  40485. {
  40486. name: "Normal",
  40487. height: math.unit(6 + 3/12, "feet"),
  40488. default: true
  40489. },
  40490. {
  40491. name: "Macro",
  40492. height: math.unit(225, "feet")
  40493. },
  40494. {
  40495. name: "Macro+",
  40496. height: math.unit(900, "feet")
  40497. },
  40498. {
  40499. name: "MegaMacro",
  40500. height: math.unit(14400, "feet")
  40501. },
  40502. ]
  40503. ))
  40504. characterMakers.push(() => makeCharacter(
  40505. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40506. {
  40507. front: {
  40508. height: math.unit(5 + 4/12, "feet"),
  40509. weight: math.unit(110, "lb"),
  40510. name: "Front",
  40511. image: {
  40512. source: "./media/characters/axel-isanov/front.svg",
  40513. extra: 1096/1065,
  40514. bottom: 13/1109
  40515. }
  40516. },
  40517. },
  40518. [
  40519. {
  40520. name: "Normal",
  40521. height: math.unit(5 + 4/12, "feet"),
  40522. default: true
  40523. },
  40524. ]
  40525. ))
  40526. characterMakers.push(() => makeCharacter(
  40527. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40528. {
  40529. front: {
  40530. height: math.unit(9, "feet"),
  40531. weight: math.unit(467, "lb"),
  40532. name: "Front",
  40533. image: {
  40534. source: "./media/characters/necahual/front.svg",
  40535. extra: 920/873,
  40536. bottom: 26/946
  40537. }
  40538. },
  40539. back: {
  40540. height: math.unit(9, "feet"),
  40541. weight: math.unit(467, "lb"),
  40542. name: "Back",
  40543. image: {
  40544. source: "./media/characters/necahual/back.svg",
  40545. extra: 930/884,
  40546. bottom: 16/946
  40547. }
  40548. },
  40549. frontUnderwear: {
  40550. height: math.unit(9, "feet"),
  40551. weight: math.unit(467, "lb"),
  40552. name: "Front (Underwear)",
  40553. image: {
  40554. source: "./media/characters/necahual/front-underwear.svg",
  40555. extra: 920/873,
  40556. bottom: 26/946
  40557. }
  40558. },
  40559. frontDressed: {
  40560. height: math.unit(9, "feet"),
  40561. weight: math.unit(467, "lb"),
  40562. name: "Front (Dressed)",
  40563. image: {
  40564. source: "./media/characters/necahual/front-dressed.svg",
  40565. extra: 920/873,
  40566. bottom: 26/946
  40567. }
  40568. },
  40569. },
  40570. [
  40571. {
  40572. name: "Comprsesed",
  40573. height: math.unit(9, "feet")
  40574. },
  40575. {
  40576. name: "Natural",
  40577. height: math.unit(15, "feet"),
  40578. default: true
  40579. },
  40580. {
  40581. name: "Boosted",
  40582. height: math.unit(50, "feet")
  40583. },
  40584. {
  40585. name: "Boosted+",
  40586. height: math.unit(150, "feet")
  40587. },
  40588. {
  40589. name: "Max",
  40590. height: math.unit(500, "feet")
  40591. },
  40592. ]
  40593. ))
  40594. characterMakers.push(() => makeCharacter(
  40595. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40596. {
  40597. front: {
  40598. height: math.unit(22 + 1/12, "feet"),
  40599. weight: math.unit(3200, "lb"),
  40600. name: "Front",
  40601. image: {
  40602. source: "./media/characters/theo-acacia/front.svg",
  40603. extra: 1796/1741,
  40604. bottom: 83/1879
  40605. }
  40606. },
  40607. frontUnderwear: {
  40608. height: math.unit(22 + 1/12, "feet"),
  40609. weight: math.unit(3200, "lb"),
  40610. name: "Front (Underwear)",
  40611. image: {
  40612. source: "./media/characters/theo-acacia/front-underwear.svg",
  40613. extra: 1796/1741,
  40614. bottom: 83/1879
  40615. }
  40616. },
  40617. frontNude: {
  40618. height: math.unit(22 + 1/12, "feet"),
  40619. weight: math.unit(3200, "lb"),
  40620. name: "Front (Nude)",
  40621. image: {
  40622. source: "./media/characters/theo-acacia/front-nude.svg",
  40623. extra: 1796/1741,
  40624. bottom: 83/1879
  40625. }
  40626. },
  40627. },
  40628. [
  40629. {
  40630. name: "Normal",
  40631. height: math.unit(22 + 1/12, "feet"),
  40632. default: true
  40633. },
  40634. ]
  40635. ))
  40636. characterMakers.push(() => makeCharacter(
  40637. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40638. {
  40639. front: {
  40640. height: math.unit(20, "feet"),
  40641. name: "Front",
  40642. image: {
  40643. source: "./media/characters/astra/front.svg",
  40644. extra: 1850/1714,
  40645. bottom: 106/1956
  40646. }
  40647. },
  40648. frontUndressed: {
  40649. height: math.unit(20, "feet"),
  40650. name: "Front (Undressed)",
  40651. image: {
  40652. source: "./media/characters/astra/front-undressed.svg",
  40653. extra: 1926/1749,
  40654. bottom: 0/1926
  40655. }
  40656. },
  40657. hand: {
  40658. height: math.unit(1.53, "feet"),
  40659. name: "Hand",
  40660. image: {
  40661. source: "./media/characters/astra/hand.svg"
  40662. }
  40663. },
  40664. paw: {
  40665. height: math.unit(1.53, "feet"),
  40666. name: "Paw",
  40667. image: {
  40668. source: "./media/characters/astra/paw.svg"
  40669. }
  40670. },
  40671. },
  40672. [
  40673. {
  40674. name: "Smallest",
  40675. height: math.unit(20, "feet")
  40676. },
  40677. {
  40678. name: "Normal",
  40679. height: math.unit(1e9, "miles"),
  40680. default: true
  40681. },
  40682. {
  40683. name: "Larger",
  40684. height: math.unit(5, "multiverses")
  40685. },
  40686. {
  40687. name: "Largest",
  40688. height: math.unit(1e9, "multiverses")
  40689. },
  40690. ]
  40691. ))
  40692. characterMakers.push(() => makeCharacter(
  40693. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40694. {
  40695. front: {
  40696. height: math.unit(8, "feet"),
  40697. name: "Front",
  40698. image: {
  40699. source: "./media/characters/breanna/front.svg",
  40700. extra: 1912/1632,
  40701. bottom: 33/1945
  40702. }
  40703. },
  40704. },
  40705. [
  40706. {
  40707. name: "Smallest",
  40708. height: math.unit(8, "feet")
  40709. },
  40710. {
  40711. name: "Normal",
  40712. height: math.unit(1, "mile"),
  40713. default: true
  40714. },
  40715. {
  40716. name: "Maximum",
  40717. height: math.unit(1500000000000, "lightyears")
  40718. },
  40719. ]
  40720. ))
  40721. characterMakers.push(() => makeCharacter(
  40722. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40723. {
  40724. front: {
  40725. height: math.unit(5 + 11/12, "feet"),
  40726. weight: math.unit(155, "lb"),
  40727. name: "Front",
  40728. image: {
  40729. source: "./media/characters/cai/front.svg",
  40730. extra: 1823/1702,
  40731. bottom: 32/1855
  40732. }
  40733. },
  40734. back: {
  40735. height: math.unit(5 + 11/12, "feet"),
  40736. weight: math.unit(155, "lb"),
  40737. name: "Back",
  40738. image: {
  40739. source: "./media/characters/cai/back.svg",
  40740. extra: 1809/1708,
  40741. bottom: 31/1840
  40742. }
  40743. },
  40744. },
  40745. [
  40746. {
  40747. name: "Normal",
  40748. height: math.unit(5 + 11/12, "feet"),
  40749. default: true
  40750. },
  40751. {
  40752. name: "Big",
  40753. height: math.unit(15, "feet")
  40754. },
  40755. {
  40756. name: "Macro",
  40757. height: math.unit(200, "feet")
  40758. },
  40759. ]
  40760. ))
  40761. characterMakers.push(() => makeCharacter(
  40762. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40763. {
  40764. front: {
  40765. height: math.unit(5 + 6/12, "feet"),
  40766. weight: math.unit(160, "lb"),
  40767. name: "Front",
  40768. image: {
  40769. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40770. extra: 1227/1174,
  40771. bottom: 37/1264
  40772. }
  40773. },
  40774. },
  40775. [
  40776. {
  40777. name: "Macro",
  40778. height: math.unit(444, "meters"),
  40779. default: true
  40780. },
  40781. ]
  40782. ))
  40783. characterMakers.push(() => makeCharacter(
  40784. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40785. {
  40786. front: {
  40787. height: math.unit(18 + 7/12, "feet"),
  40788. name: "Front",
  40789. image: {
  40790. source: "./media/characters/rex/front.svg",
  40791. extra: 1941/1807,
  40792. bottom: 66/2007
  40793. }
  40794. },
  40795. back: {
  40796. height: math.unit(18 + 7/12, "feet"),
  40797. name: "Back",
  40798. image: {
  40799. source: "./media/characters/rex/back.svg",
  40800. extra: 1937/1822,
  40801. bottom: 42/1979
  40802. }
  40803. },
  40804. boot: {
  40805. height: math.unit(3.45, "feet"),
  40806. name: "Boot",
  40807. image: {
  40808. source: "./media/characters/rex/boot.svg"
  40809. }
  40810. },
  40811. paw: {
  40812. height: math.unit(4.17, "feet"),
  40813. name: "Paw",
  40814. image: {
  40815. source: "./media/characters/rex/paw.svg"
  40816. }
  40817. },
  40818. head: {
  40819. height: math.unit(6.728, "feet"),
  40820. name: "Head",
  40821. image: {
  40822. source: "./media/characters/rex/head.svg"
  40823. }
  40824. },
  40825. },
  40826. [
  40827. {
  40828. name: "Nano",
  40829. height: math.unit(18 + 7/12, "feet")
  40830. },
  40831. {
  40832. name: "Micro",
  40833. height: math.unit(1.5, "megameters")
  40834. },
  40835. {
  40836. name: "Normal",
  40837. height: math.unit(440, "megameters"),
  40838. default: true
  40839. },
  40840. {
  40841. name: "Macro",
  40842. height: math.unit(2.5, "gigameters")
  40843. },
  40844. {
  40845. name: "Gigamacro",
  40846. height: math.unit(2, "galaxies")
  40847. },
  40848. ]
  40849. ))
  40850. characterMakers.push(() => makeCharacter(
  40851. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40852. {
  40853. side: {
  40854. height: math.unit(32, "feet"),
  40855. weight: math.unit(250000, "lb"),
  40856. name: "Side",
  40857. image: {
  40858. source: "./media/characters/silverwing/side.svg",
  40859. extra: 1100/1019,
  40860. bottom: 204/1304
  40861. }
  40862. },
  40863. },
  40864. [
  40865. {
  40866. name: "Normal",
  40867. height: math.unit(32, "feet"),
  40868. default: true
  40869. },
  40870. ]
  40871. ))
  40872. characterMakers.push(() => makeCharacter(
  40873. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40874. {
  40875. front: {
  40876. height: math.unit(6 + 6/12, "feet"),
  40877. weight: math.unit(350, "lb"),
  40878. name: "Front",
  40879. image: {
  40880. source: "./media/characters/tristan-hawthorne/front.svg",
  40881. extra: 1159/1124,
  40882. bottom: 37/1196
  40883. }
  40884. },
  40885. },
  40886. [
  40887. {
  40888. name: "Normal",
  40889. height: math.unit(6 + 6/12, "feet"),
  40890. default: true
  40891. },
  40892. ]
  40893. ))
  40894. characterMakers.push(() => makeCharacter(
  40895. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40896. {
  40897. front: {
  40898. height: math.unit(5 + 11/12, "feet"),
  40899. weight: math.unit(190, "lb"),
  40900. name: "Front",
  40901. image: {
  40902. source: "./media/characters/mizu/front.svg",
  40903. extra: 1988/1788,
  40904. bottom: 14/2002
  40905. }
  40906. },
  40907. },
  40908. [
  40909. {
  40910. name: "Normal",
  40911. height: math.unit(5 + 11/12, "feet"),
  40912. default: true
  40913. },
  40914. ]
  40915. ))
  40916. characterMakers.push(() => makeCharacter(
  40917. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40918. {
  40919. front: {
  40920. height: math.unit(6, "feet"),
  40921. name: "Front",
  40922. image: {
  40923. source: "./media/characters/moonlight-rose-terra/front.svg",
  40924. extra: 1434/1252,
  40925. bottom: 48/1482
  40926. }
  40927. },
  40928. },
  40929. [
  40930. {
  40931. name: "TRAPPIST-1D",
  40932. height: math.unit(4992*2, "km")
  40933. },
  40934. {
  40935. name: "Earth",
  40936. height: math.unit(6367*2, "km"),
  40937. default: true
  40938. },
  40939. {
  40940. name: "Kepler-22b",
  40941. height: math.unit(15282*2, "km")
  40942. },
  40943. ]
  40944. ))
  40945. characterMakers.push(() => makeCharacter(
  40946. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40947. {
  40948. front: {
  40949. height: math.unit(6, "feet"),
  40950. name: "Front",
  40951. image: {
  40952. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40953. extra: 1851/1712,
  40954. bottom: 0/1851
  40955. }
  40956. },
  40957. },
  40958. [
  40959. {
  40960. name: "Enceladus",
  40961. height: math.unit(513*2, "km")
  40962. },
  40963. {
  40964. name: "Europe",
  40965. height: math.unit(1560*2, "km")
  40966. },
  40967. {
  40968. name: "Neptune",
  40969. height: math.unit(24622*2, "km"),
  40970. default: true
  40971. },
  40972. {
  40973. name: "CoRoT-9b",
  40974. height: math.unit(75067*2, "km")
  40975. },
  40976. ]
  40977. ))
  40978. characterMakers.push(() => makeCharacter(
  40979. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40980. {
  40981. front: {
  40982. height: math.unit(6, "feet"),
  40983. name: "Front",
  40984. image: {
  40985. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40986. extra: 1367/1286,
  40987. bottom: 55/1422
  40988. }
  40989. },
  40990. },
  40991. [
  40992. {
  40993. name: "Saturn",
  40994. height: math.unit(58232*2, "km")
  40995. },
  40996. {
  40997. name: "Jupiter",
  40998. height: math.unit(69911*2, "km"),
  40999. default: true
  41000. },
  41001. {
  41002. name: "HD 100546 b",
  41003. height: math.unit(482938, "km")
  41004. },
  41005. ]
  41006. ))
  41007. characterMakers.push(() => makeCharacter(
  41008. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41009. {
  41010. front: {
  41011. height: math.unit(1.7, "feet"),
  41012. weight: math.unit(50, "lb"),
  41013. name: "Front",
  41014. image: {
  41015. source: "./media/characters/dechroma/front.svg",
  41016. extra: 1095/859,
  41017. bottom: 64/1159
  41018. }
  41019. },
  41020. },
  41021. [
  41022. {
  41023. name: "Normal",
  41024. height: math.unit(1.7, "feet"),
  41025. default: true
  41026. },
  41027. ]
  41028. ))
  41029. characterMakers.push(() => makeCharacter(
  41030. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41031. {
  41032. side: {
  41033. height: math.unit(30, "feet"),
  41034. name: "Side",
  41035. image: {
  41036. source: "./media/characters/veluren-thanazel/side.svg",
  41037. extra: 1611/633,
  41038. bottom: 118/1729
  41039. }
  41040. },
  41041. front: {
  41042. height: math.unit(30, "feet"),
  41043. name: "Front",
  41044. image: {
  41045. source: "./media/characters/veluren-thanazel/front.svg",
  41046. extra: 1486/636,
  41047. bottom: 238/1724
  41048. }
  41049. },
  41050. head: {
  41051. height: math.unit(21.4, "feet"),
  41052. name: "Head",
  41053. image: {
  41054. source: "./media/characters/veluren-thanazel/head.svg"
  41055. }
  41056. },
  41057. genitals: {
  41058. height: math.unit(19.4, "feet"),
  41059. name: "Genitals",
  41060. image: {
  41061. source: "./media/characters/veluren-thanazel/genitals.svg"
  41062. }
  41063. },
  41064. },
  41065. [
  41066. {
  41067. name: "Social",
  41068. height: math.unit(6, "feet")
  41069. },
  41070. {
  41071. name: "Play",
  41072. height: math.unit(12, "feet")
  41073. },
  41074. {
  41075. name: "True",
  41076. height: math.unit(30, "feet"),
  41077. default: true
  41078. },
  41079. ]
  41080. ))
  41081. characterMakers.push(() => makeCharacter(
  41082. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41083. {
  41084. front: {
  41085. height: math.unit(7 + 6/12, "feet"),
  41086. weight: math.unit(500, "kg"),
  41087. name: "Front",
  41088. image: {
  41089. source: "./media/characters/arcturas/front.svg",
  41090. extra: 1700/1500,
  41091. bottom: 145/1845
  41092. }
  41093. },
  41094. },
  41095. [
  41096. {
  41097. name: "Normal",
  41098. height: math.unit(7 + 6/12, "feet"),
  41099. default: true
  41100. },
  41101. ]
  41102. ))
  41103. characterMakers.push(() => makeCharacter(
  41104. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41105. {
  41106. side: {
  41107. height: math.unit(6, "feet"),
  41108. weight: math.unit(2, "tons"),
  41109. name: "Side",
  41110. image: {
  41111. source: "./media/characters/vitaen/side.svg",
  41112. extra: 1157/617,
  41113. bottom: 122/1279
  41114. }
  41115. },
  41116. },
  41117. [
  41118. {
  41119. name: "Normal",
  41120. height: math.unit(6, "feet"),
  41121. default: true
  41122. },
  41123. ]
  41124. ))
  41125. characterMakers.push(() => makeCharacter(
  41126. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41127. {
  41128. front: {
  41129. height: math.unit(19, "feet"),
  41130. name: "Front",
  41131. image: {
  41132. source: "./media/characters/fia-dreamweaver/front.svg",
  41133. extra: 1630/1504,
  41134. bottom: 25/1655
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(19, "feet"),
  41142. default: true
  41143. },
  41144. ]
  41145. ))
  41146. characterMakers.push(() => makeCharacter(
  41147. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41148. {
  41149. front: {
  41150. height: math.unit(5 + 4/12, "feet"),
  41151. name: "Front",
  41152. image: {
  41153. source: "./media/characters/artan/front.svg",
  41154. extra: 1618/1535,
  41155. bottom: 46/1664
  41156. }
  41157. },
  41158. back: {
  41159. height: math.unit(5 + 4/12, "feet"),
  41160. name: "Back",
  41161. image: {
  41162. source: "./media/characters/artan/back.svg",
  41163. extra: 1618/1543,
  41164. bottom: 31/1649
  41165. }
  41166. },
  41167. },
  41168. [
  41169. {
  41170. name: "Normal",
  41171. height: math.unit(5 + 4/12, "feet"),
  41172. default: true
  41173. },
  41174. ]
  41175. ))
  41176. characterMakers.push(() => makeCharacter(
  41177. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41178. {
  41179. side: {
  41180. height: math.unit(182, "cm"),
  41181. weight: math.unit(1000, "lb"),
  41182. name: "Side",
  41183. image: {
  41184. source: "./media/characters/silver-dragon/side.svg",
  41185. extra: 710/287,
  41186. bottom: 88/798
  41187. }
  41188. },
  41189. },
  41190. [
  41191. {
  41192. name: "Normal",
  41193. height: math.unit(182, "cm"),
  41194. default: true
  41195. },
  41196. ]
  41197. ))
  41198. characterMakers.push(() => makeCharacter(
  41199. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41200. {
  41201. side: {
  41202. height: math.unit(6 + 6/12, "feet"),
  41203. weight: math.unit(1.5, "tons"),
  41204. name: "Side",
  41205. image: {
  41206. source: "./media/characters/zephyr/side.svg",
  41207. extra: 1433/586,
  41208. bottom: 109/1542
  41209. }
  41210. },
  41211. },
  41212. [
  41213. {
  41214. name: "Normal",
  41215. height: math.unit(6 + 6/12, "feet"),
  41216. default: true
  41217. },
  41218. ]
  41219. ))
  41220. characterMakers.push(() => makeCharacter(
  41221. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41222. {
  41223. side: {
  41224. height: math.unit(1, "feet"),
  41225. name: "Side",
  41226. image: {
  41227. source: "./media/characters/vixye/side.svg",
  41228. extra: 632/541,
  41229. bottom: 0/632
  41230. }
  41231. },
  41232. },
  41233. [
  41234. {
  41235. name: "Normal",
  41236. height: math.unit(1, "feet"),
  41237. default: true
  41238. },
  41239. {
  41240. name: "True",
  41241. height: math.unit(1e15, "multiverses")
  41242. },
  41243. ]
  41244. ))
  41245. characterMakers.push(() => makeCharacter(
  41246. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41247. {
  41248. front: {
  41249. height: math.unit(8 + 2/12, "feet"),
  41250. weight: math.unit(650, "lb"),
  41251. name: "Front",
  41252. image: {
  41253. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41254. extra: 1174/1137,
  41255. bottom: 82/1256
  41256. }
  41257. },
  41258. back: {
  41259. height: math.unit(8 + 2/12, "feet"),
  41260. weight: math.unit(650, "lb"),
  41261. name: "Back",
  41262. image: {
  41263. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41264. extra: 1204/1157,
  41265. bottom: 46/1250
  41266. }
  41267. },
  41268. },
  41269. [
  41270. {
  41271. name: "Wildform",
  41272. height: math.unit(8 + 2/12, "feet"),
  41273. default: true
  41274. },
  41275. ]
  41276. ))
  41277. characterMakers.push(() => makeCharacter(
  41278. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41279. {
  41280. front: {
  41281. height: math.unit(18, "feet"),
  41282. name: "Front",
  41283. image: {
  41284. source: "./media/characters/cyphin/front.svg",
  41285. extra: 970/886,
  41286. bottom: 42/1012
  41287. }
  41288. },
  41289. back: {
  41290. height: math.unit(18, "feet"),
  41291. name: "Back",
  41292. image: {
  41293. source: "./media/characters/cyphin/back.svg",
  41294. extra: 1009/894,
  41295. bottom: 24/1033
  41296. }
  41297. },
  41298. head: {
  41299. height: math.unit(5.05, "feet"),
  41300. name: "Head",
  41301. image: {
  41302. source: "./media/characters/cyphin/head.svg"
  41303. }
  41304. },
  41305. tailbud: {
  41306. height: math.unit(5, "feet"),
  41307. name: "Tailbud",
  41308. image: {
  41309. source: "./media/characters/cyphin/tailbud.svg"
  41310. }
  41311. },
  41312. },
  41313. [
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41318. {
  41319. side: {
  41320. height: math.unit(10, "feet"),
  41321. weight: math.unit(6, "tons"),
  41322. name: "Side",
  41323. image: {
  41324. source: "./media/characters/raijin/side.svg",
  41325. extra: 1529/613,
  41326. bottom: 337/1866
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "Normal",
  41333. height: math.unit(10, "feet"),
  41334. default: true
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41340. {
  41341. side: {
  41342. height: math.unit(9, "feet"),
  41343. name: "Side",
  41344. image: {
  41345. source: "./media/characters/nilghais/side.svg",
  41346. extra: 1047/744,
  41347. bottom: 91/1138
  41348. }
  41349. },
  41350. head: {
  41351. height: math.unit(3.14, "feet"),
  41352. name: "Head",
  41353. image: {
  41354. source: "./media/characters/nilghais/head.svg"
  41355. }
  41356. },
  41357. mouth: {
  41358. height: math.unit(4.6, "feet"),
  41359. name: "Mouth",
  41360. image: {
  41361. source: "./media/characters/nilghais/mouth.svg"
  41362. }
  41363. },
  41364. wings: {
  41365. height: math.unit(24, "feet"),
  41366. name: "Wings",
  41367. image: {
  41368. source: "./media/characters/nilghais/wings.svg"
  41369. }
  41370. },
  41371. ass: {
  41372. height: math.unit(6.12, "feet"),
  41373. name: "Ass",
  41374. image: {
  41375. source: "./media/characters/nilghais/ass.svg"
  41376. }
  41377. },
  41378. },
  41379. [
  41380. {
  41381. name: "Normal",
  41382. height: math.unit(9, "feet"),
  41383. default: true
  41384. },
  41385. ]
  41386. ))
  41387. characterMakers.push(() => makeCharacter(
  41388. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41389. {
  41390. regular: {
  41391. height: math.unit(16 + 2/12, "feet"),
  41392. weight: math.unit(2300, "lb"),
  41393. name: "Regular",
  41394. image: {
  41395. source: "./media/characters/zolgar/regular.svg",
  41396. extra: 1246/1004,
  41397. bottom: 124/1370
  41398. }
  41399. },
  41400. boxers: {
  41401. height: math.unit(16 + 2/12, "feet"),
  41402. weight: math.unit(2300, "lb"),
  41403. name: "Boxers",
  41404. image: {
  41405. source: "./media/characters/zolgar/boxers.svg",
  41406. extra: 1246/1004,
  41407. bottom: 124/1370
  41408. }
  41409. },
  41410. armored: {
  41411. height: math.unit(16 + 2/12, "feet"),
  41412. weight: math.unit(2300, "lb"),
  41413. name: "Armored",
  41414. image: {
  41415. source: "./media/characters/zolgar/armored.svg",
  41416. extra: 1246/1004,
  41417. bottom: 124/1370
  41418. }
  41419. },
  41420. goth: {
  41421. height: math.unit(16 + 2/12, "feet"),
  41422. weight: math.unit(2300, "lb"),
  41423. name: "Goth",
  41424. image: {
  41425. source: "./media/characters/zolgar/goth.svg",
  41426. extra: 1246/1004,
  41427. bottom: 124/1370
  41428. }
  41429. },
  41430. },
  41431. [
  41432. {
  41433. name: "Shrunken Down",
  41434. height: math.unit(9 + 2/12, "feet")
  41435. },
  41436. {
  41437. name: "Normal",
  41438. height: math.unit(16 + 2/12, "feet"),
  41439. default: true
  41440. },
  41441. ]
  41442. ))
  41443. characterMakers.push(() => makeCharacter(
  41444. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41445. {
  41446. front: {
  41447. height: math.unit(6, "feet"),
  41448. weight: math.unit(168, "lb"),
  41449. name: "Front",
  41450. image: {
  41451. source: "./media/characters/luca/front.svg",
  41452. extra: 841/667,
  41453. bottom: 102/943
  41454. }
  41455. },
  41456. },
  41457. [
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(6, "feet"),
  41461. default: true
  41462. },
  41463. ]
  41464. ))
  41465. characterMakers.push(() => makeCharacter(
  41466. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41467. {
  41468. side: {
  41469. height: math.unit(7 + 3/12, "feet"),
  41470. weight: math.unit(312, "lb"),
  41471. name: "Side",
  41472. image: {
  41473. source: "./media/characters/zezo/side.svg",
  41474. extra: 1192/1067,
  41475. bottom: 63/1255
  41476. }
  41477. },
  41478. },
  41479. [
  41480. {
  41481. name: "Normal",
  41482. height: math.unit(7 + 3/12, "feet"),
  41483. default: true
  41484. },
  41485. ]
  41486. ))
  41487. characterMakers.push(() => makeCharacter(
  41488. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41489. {
  41490. front: {
  41491. height: math.unit(5 + 5/12, "feet"),
  41492. weight: math.unit(170, "lb"),
  41493. name: "Front",
  41494. image: {
  41495. source: "./media/characters/mayso/front.svg",
  41496. extra: 1215/1108,
  41497. bottom: 16/1231
  41498. }
  41499. },
  41500. },
  41501. [
  41502. {
  41503. name: "Normal",
  41504. height: math.unit(5 + 5/12, "feet"),
  41505. default: true
  41506. },
  41507. ]
  41508. ))
  41509. characterMakers.push(() => makeCharacter(
  41510. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41511. {
  41512. front: {
  41513. height: math.unit(4 + 3/12, "feet"),
  41514. weight: math.unit(80, "lb"),
  41515. name: "Front",
  41516. image: {
  41517. source: "./media/characters/hess/front.svg",
  41518. extra: 1200/1123,
  41519. bottom: 16/1216
  41520. }
  41521. },
  41522. },
  41523. [
  41524. {
  41525. name: "Normal",
  41526. height: math.unit(4 + 3/12, "feet"),
  41527. default: true
  41528. },
  41529. ]
  41530. ))
  41531. characterMakers.push(() => makeCharacter(
  41532. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41533. {
  41534. front: {
  41535. height: math.unit(1.9, "meters"),
  41536. name: "Front",
  41537. image: {
  41538. source: "./media/characters/ashgar/front.svg",
  41539. extra: 1177/1146,
  41540. bottom: 99/1276
  41541. }
  41542. },
  41543. back: {
  41544. height: math.unit(1.9, "meters"),
  41545. name: "Back",
  41546. image: {
  41547. source: "./media/characters/ashgar/back.svg",
  41548. extra: 1201/1183,
  41549. bottom: 53/1254
  41550. }
  41551. },
  41552. feral: {
  41553. height: math.unit(1.4, "meters"),
  41554. name: "Feral",
  41555. image: {
  41556. source: "./media/characters/ashgar/feral.svg",
  41557. extra: 370/345,
  41558. bottom: 45/415
  41559. }
  41560. },
  41561. },
  41562. [
  41563. {
  41564. name: "Normal",
  41565. height: math.unit(1.9, "meters"),
  41566. default: true
  41567. },
  41568. ]
  41569. ))
  41570. characterMakers.push(() => makeCharacter(
  41571. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41572. {
  41573. regular: {
  41574. height: math.unit(6, "feet"),
  41575. weight: math.unit(220, "lb"),
  41576. name: "Regular",
  41577. image: {
  41578. source: "./media/characters/phillip/regular.svg",
  41579. extra: 1373/1277,
  41580. bottom: 75/1448
  41581. }
  41582. },
  41583. dressed: {
  41584. height: math.unit(6, "feet"),
  41585. weight: math.unit(220, "lb"),
  41586. name: "Dressed",
  41587. image: {
  41588. source: "./media/characters/phillip/dressed.svg",
  41589. extra: 1373/1277,
  41590. bottom: 75/1448
  41591. }
  41592. },
  41593. paw: {
  41594. height: math.unit(1.44, "feet"),
  41595. name: "Paw",
  41596. image: {
  41597. source: "./media/characters/phillip/paw.svg"
  41598. }
  41599. },
  41600. },
  41601. [
  41602. {
  41603. name: "Normal",
  41604. height: math.unit(6, "feet"),
  41605. default: true
  41606. },
  41607. ]
  41608. ))
  41609. characterMakers.push(() => makeCharacter(
  41610. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41611. {
  41612. side: {
  41613. height: math.unit(42, "feet"),
  41614. name: "Side",
  41615. image: {
  41616. source: "./media/characters/uvula/side.svg",
  41617. extra: 683/586,
  41618. bottom: 60/743
  41619. }
  41620. },
  41621. front: {
  41622. height: math.unit(42, "feet"),
  41623. name: "Front",
  41624. image: {
  41625. source: "./media/characters/uvula/front.svg",
  41626. extra: 705/613,
  41627. bottom: 54/759
  41628. }
  41629. },
  41630. maw: {
  41631. height: math.unit(23.5, "feet"),
  41632. name: "Maw",
  41633. image: {
  41634. source: "./media/characters/uvula/maw.svg"
  41635. }
  41636. },
  41637. },
  41638. [
  41639. {
  41640. name: "Original Size",
  41641. height: math.unit(14, "inches")
  41642. },
  41643. {
  41644. name: "Human Size",
  41645. height: math.unit(6, "feet")
  41646. },
  41647. {
  41648. name: "Big",
  41649. height: math.unit(42, "feet"),
  41650. default: true
  41651. },
  41652. {
  41653. name: "Bigger",
  41654. height: math.unit(100, "feet")
  41655. },
  41656. ]
  41657. ))
  41658. characterMakers.push(() => makeCharacter(
  41659. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41660. {
  41661. front: {
  41662. height: math.unit(5 + 11/12, "feet"),
  41663. name: "Front",
  41664. image: {
  41665. source: "./media/characters/lannah/front.svg",
  41666. extra: 1208/1113,
  41667. bottom: 97/1305
  41668. }
  41669. },
  41670. },
  41671. [
  41672. {
  41673. name: "Normal",
  41674. height: math.unit(5 + 11/12, "feet"),
  41675. default: true
  41676. },
  41677. ]
  41678. ))
  41679. characterMakers.push(() => makeCharacter(
  41680. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41681. {
  41682. front: {
  41683. height: math.unit(6 + 3/12, "feet"),
  41684. weight: math.unit(3.5, "tons"),
  41685. name: "Front",
  41686. image: {
  41687. source: "./media/characters/emberflame/front.svg",
  41688. extra: 1198/672,
  41689. bottom: 82/1280
  41690. }
  41691. },
  41692. side: {
  41693. height: math.unit(6 + 3/12, "feet"),
  41694. weight: math.unit(3.5, "tons"),
  41695. name: "Side",
  41696. image: {
  41697. source: "./media/characters/emberflame/side.svg",
  41698. extra: 938/527,
  41699. bottom: 56/994
  41700. }
  41701. },
  41702. },
  41703. [
  41704. {
  41705. name: "Normal",
  41706. height: math.unit(6 + 3/12, "feet"),
  41707. default: true
  41708. },
  41709. ]
  41710. ))
  41711. characterMakers.push(() => makeCharacter(
  41712. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41713. {
  41714. side: {
  41715. height: math.unit(17.5, "feet"),
  41716. weight: math.unit(35, "tons"),
  41717. name: "Side",
  41718. image: {
  41719. source: "./media/characters/sophie-ambrose/side.svg",
  41720. extra: 1573/1242,
  41721. bottom: 71/1644
  41722. }
  41723. },
  41724. maw: {
  41725. height: math.unit(7.4, "feet"),
  41726. name: "Maw",
  41727. image: {
  41728. source: "./media/characters/sophie-ambrose/maw.svg"
  41729. }
  41730. },
  41731. },
  41732. [
  41733. {
  41734. name: "Normal",
  41735. height: math.unit(17.5, "feet"),
  41736. default: true
  41737. },
  41738. ]
  41739. ))
  41740. characterMakers.push(() => makeCharacter(
  41741. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41742. {
  41743. front: {
  41744. height: math.unit(280, "feet"),
  41745. weight: math.unit(550, "tons"),
  41746. name: "Front",
  41747. image: {
  41748. source: "./media/characters/king-mugi/front.svg",
  41749. extra: 1102/947,
  41750. bottom: 104/1206
  41751. }
  41752. },
  41753. },
  41754. [
  41755. {
  41756. name: "King Mugi",
  41757. height: math.unit(280, "feet"),
  41758. default: true
  41759. },
  41760. ]
  41761. ))
  41762. characterMakers.push(() => makeCharacter(
  41763. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41764. {
  41765. front: {
  41766. height: math.unit(64, "meters"),
  41767. name: "Front",
  41768. image: {
  41769. source: "./media/characters/nova-fox/front.svg",
  41770. extra: 1310/1246,
  41771. bottom: 65/1375
  41772. }
  41773. },
  41774. },
  41775. [
  41776. {
  41777. name: "Macro",
  41778. height: math.unit(64, "meters"),
  41779. default: true
  41780. },
  41781. ]
  41782. ))
  41783. characterMakers.push(() => makeCharacter(
  41784. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41785. {
  41786. front: {
  41787. height: math.unit(6 + 3/12, "feet"),
  41788. weight: math.unit(170, "lb"),
  41789. name: "Front",
  41790. image: {
  41791. source: "./media/characters/sam-bat/front.svg",
  41792. extra: 1601/1411,
  41793. bottom: 125/1726
  41794. }
  41795. },
  41796. back: {
  41797. height: math.unit(6 + 3/12, "feet"),
  41798. weight: math.unit(170, "lb"),
  41799. name: "Back",
  41800. image: {
  41801. source: "./media/characters/sam-bat/back.svg",
  41802. extra: 1577/1405,
  41803. bottom: 58/1635
  41804. }
  41805. },
  41806. },
  41807. [
  41808. {
  41809. name: "Normal",
  41810. height: math.unit(6 + 3/12, "feet"),
  41811. default: true
  41812. },
  41813. ]
  41814. ))
  41815. characterMakers.push(() => makeCharacter(
  41816. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41817. {
  41818. front: {
  41819. height: math.unit(59, "feet"),
  41820. weight: math.unit(40000, "lb"),
  41821. name: "Front",
  41822. image: {
  41823. source: "./media/characters/inari/front.svg",
  41824. extra: 1884/1350,
  41825. bottom: 95/1979
  41826. }
  41827. },
  41828. },
  41829. [
  41830. {
  41831. name: "Gigantamax",
  41832. height: math.unit(59, "feet"),
  41833. default: true
  41834. },
  41835. ]
  41836. ))
  41837. characterMakers.push(() => makeCharacter(
  41838. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41839. {
  41840. front: {
  41841. height: math.unit(5 + 8/12, "feet"),
  41842. name: "Front",
  41843. image: {
  41844. source: "./media/characters/elizabeth/front.svg",
  41845. extra: 1395/1298,
  41846. bottom: 54/1449
  41847. }
  41848. },
  41849. mouth: {
  41850. height: math.unit(1.97, "feet"),
  41851. name: "Mouth",
  41852. image: {
  41853. source: "./media/characters/elizabeth/mouth.svg"
  41854. }
  41855. },
  41856. foot: {
  41857. height: math.unit(1.17, "feet"),
  41858. name: "Foot",
  41859. image: {
  41860. source: "./media/characters/elizabeth/foot.svg"
  41861. }
  41862. },
  41863. },
  41864. [
  41865. {
  41866. name: "Normal",
  41867. height: math.unit(5 + 8/12, "feet"),
  41868. default: true
  41869. },
  41870. {
  41871. name: "Minimacro",
  41872. height: math.unit(18, "feet")
  41873. },
  41874. {
  41875. name: "Macro",
  41876. height: math.unit(180, "feet")
  41877. },
  41878. ]
  41879. ))
  41880. characterMakers.push(() => makeCharacter(
  41881. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41882. {
  41883. front: {
  41884. height: math.unit(5 + 2/12, "feet"),
  41885. name: "Front",
  41886. image: {
  41887. source: "./media/characters/october-gossamer/front.svg",
  41888. extra: 505/454,
  41889. bottom: 7/512
  41890. }
  41891. },
  41892. back: {
  41893. height: math.unit(5 + 2/12, "feet"),
  41894. name: "Back",
  41895. image: {
  41896. source: "./media/characters/october-gossamer/back.svg",
  41897. extra: 501/454,
  41898. bottom: 11/512
  41899. }
  41900. },
  41901. },
  41902. [
  41903. {
  41904. name: "Normal",
  41905. height: math.unit(5 + 2/12, "feet"),
  41906. default: true
  41907. },
  41908. ]
  41909. ))
  41910. characterMakers.push(() => makeCharacter(
  41911. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41912. {
  41913. front: {
  41914. height: math.unit(5, "feet"),
  41915. name: "Front",
  41916. image: {
  41917. source: "./media/characters/epiglottis/front.svg",
  41918. extra: 923/849,
  41919. bottom: 17/940
  41920. }
  41921. },
  41922. },
  41923. [
  41924. {
  41925. name: "Original Size",
  41926. height: math.unit(10, "inches")
  41927. },
  41928. {
  41929. name: "Human Size",
  41930. height: math.unit(5, "feet"),
  41931. default: true
  41932. },
  41933. {
  41934. name: "Big",
  41935. height: math.unit(25, "feet")
  41936. },
  41937. {
  41938. name: "Bigger",
  41939. height: math.unit(50, "feet")
  41940. },
  41941. {
  41942. name: "oh lawd",
  41943. height: math.unit(75, "feet")
  41944. },
  41945. ]
  41946. ))
  41947. characterMakers.push(() => makeCharacter(
  41948. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41949. {
  41950. front: {
  41951. height: math.unit(2 + 4/12, "feet"),
  41952. weight: math.unit(60, "lb"),
  41953. name: "Front",
  41954. image: {
  41955. source: "./media/characters/lerm/front.svg",
  41956. extra: 796/790,
  41957. bottom: 79/875
  41958. }
  41959. },
  41960. },
  41961. [
  41962. {
  41963. name: "Normal",
  41964. height: math.unit(2 + 4/12, "feet"),
  41965. default: true
  41966. },
  41967. ]
  41968. ))
  41969. characterMakers.push(() => makeCharacter(
  41970. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41971. {
  41972. front: {
  41973. height: math.unit(5.5, "feet"),
  41974. weight: math.unit(130, "lb"),
  41975. name: "Front",
  41976. image: {
  41977. source: "./media/characters/xena-nebadon/front.svg",
  41978. extra: 1828/1730,
  41979. bottom: 79/1907
  41980. }
  41981. },
  41982. },
  41983. [
  41984. {
  41985. name: "Tiny Puppy",
  41986. height: math.unit(3, "inches")
  41987. },
  41988. {
  41989. name: "Normal",
  41990. height: math.unit(5.5, "feet"),
  41991. default: true
  41992. },
  41993. {
  41994. name: "Lotta Lady",
  41995. height: math.unit(12, "feet")
  41996. },
  41997. {
  41998. name: "Pretty Big",
  41999. height: math.unit(100, "feet")
  42000. },
  42001. {
  42002. name: "Big",
  42003. height: math.unit(500, "feet")
  42004. },
  42005. {
  42006. name: "Skyscraper Toys",
  42007. height: math.unit(2500, "feet")
  42008. },
  42009. {
  42010. name: "Plane Catcher",
  42011. height: math.unit(8, "miles")
  42012. },
  42013. {
  42014. name: "Planet Toys",
  42015. height: math.unit(15, "earths")
  42016. },
  42017. {
  42018. name: "Stardust",
  42019. height: math.unit(0.25, "galaxies")
  42020. },
  42021. {
  42022. name: "Snacks",
  42023. height: math.unit(70, "universes")
  42024. },
  42025. ]
  42026. ))
  42027. characterMakers.push(() => makeCharacter(
  42028. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42029. {
  42030. front: {
  42031. height: math.unit(1.6, "meters"),
  42032. weight: math.unit(60, "kg"),
  42033. name: "Front",
  42034. image: {
  42035. source: "./media/characters/bounty/front.svg",
  42036. extra: 1426/1308,
  42037. bottom: 15/1441
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "Normal",
  42044. height: math.unit(1.6, "meters"),
  42045. default: true
  42046. },
  42047. {
  42048. name: "Macro",
  42049. height: math.unit(300, "meters")
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42055. {
  42056. front: {
  42057. height: math.unit(2 + 8/12, "feet"),
  42058. weight: math.unit(15, "lb"),
  42059. name: "Front",
  42060. image: {
  42061. source: "./media/characters/mochi/front.svg",
  42062. extra: 1022/852,
  42063. bottom: 435/1457
  42064. }
  42065. },
  42066. back: {
  42067. height: math.unit(2 + 8/12, "feet"),
  42068. weight: math.unit(15, "lb"),
  42069. name: "Back",
  42070. image: {
  42071. source: "./media/characters/mochi/back.svg",
  42072. extra: 1335/1119,
  42073. bottom: 39/1374
  42074. }
  42075. },
  42076. bird: {
  42077. height: math.unit(2 + 8/12, "feet"),
  42078. weight: math.unit(15, "lb"),
  42079. name: "Bird",
  42080. image: {
  42081. source: "./media/characters/mochi/bird.svg",
  42082. extra: 1251/1113,
  42083. bottom: 178/1429
  42084. }
  42085. },
  42086. kaiju: {
  42087. height: math.unit(154, "feet"),
  42088. weight: math.unit(1e7, "lb"),
  42089. name: "Kaiju",
  42090. image: {
  42091. source: "./media/characters/mochi/kaiju.svg",
  42092. extra: 460/324,
  42093. bottom: 40/500
  42094. }
  42095. },
  42096. head: {
  42097. height: math.unit(1.21, "feet"),
  42098. name: "Head",
  42099. image: {
  42100. source: "./media/characters/mochi/head.svg"
  42101. }
  42102. },
  42103. alternateTail: {
  42104. height: math.unit(2 + 8/12, "feet"),
  42105. weight: math.unit(45, "lb"),
  42106. name: "Alternate Tail",
  42107. image: {
  42108. source: "./media/characters/mochi/alternate-tail.svg",
  42109. extra: 139/76,
  42110. bottom: 45/184
  42111. }
  42112. },
  42113. },
  42114. [
  42115. {
  42116. name: "Micro",
  42117. height: math.unit(2, "inches")
  42118. },
  42119. {
  42120. name: "Normal",
  42121. height: math.unit(2 + 8/12, "feet"),
  42122. default: true
  42123. },
  42124. {
  42125. name: "Macro",
  42126. height: math.unit(106, "feet")
  42127. },
  42128. ]
  42129. ))
  42130. characterMakers.push(() => makeCharacter(
  42131. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42132. {
  42133. front: {
  42134. height: math.unit(5.67, "feet"),
  42135. weight: math.unit(135, "lb"),
  42136. name: "Front",
  42137. image: {
  42138. source: "./media/characters/sarel/front.svg",
  42139. extra: 865/788,
  42140. bottom: 97/962
  42141. }
  42142. },
  42143. back: {
  42144. height: math.unit(5.67, "feet"),
  42145. weight: math.unit(135, "lb"),
  42146. name: "Back",
  42147. image: {
  42148. source: "./media/characters/sarel/back.svg",
  42149. extra: 857/777,
  42150. bottom: 32/889
  42151. }
  42152. },
  42153. chozoan: {
  42154. height: math.unit(5.67, "feet"),
  42155. weight: math.unit(135, "lb"),
  42156. name: "Chozoan",
  42157. image: {
  42158. source: "./media/characters/sarel/chozoan.svg",
  42159. extra: 865/788,
  42160. bottom: 97/962
  42161. }
  42162. },
  42163. current: {
  42164. height: math.unit(5.67, "feet"),
  42165. weight: math.unit(135, "lb"),
  42166. name: "Current",
  42167. image: {
  42168. source: "./media/characters/sarel/current.svg",
  42169. extra: 865/788,
  42170. bottom: 97/962
  42171. }
  42172. },
  42173. head: {
  42174. height: math.unit(1.77, "feet"),
  42175. name: "Head",
  42176. image: {
  42177. source: "./media/characters/sarel/head.svg"
  42178. }
  42179. },
  42180. claws: {
  42181. height: math.unit(1.8, "feet"),
  42182. name: "Claws",
  42183. image: {
  42184. source: "./media/characters/sarel/claws.svg"
  42185. }
  42186. },
  42187. clawsAlt: {
  42188. height: math.unit(1.8, "feet"),
  42189. name: "Claws-alt",
  42190. image: {
  42191. source: "./media/characters/sarel/claws-alt.svg"
  42192. }
  42193. },
  42194. },
  42195. [
  42196. {
  42197. name: "Normal",
  42198. height: math.unit(5.67, "feet"),
  42199. default: true
  42200. },
  42201. ]
  42202. ))
  42203. characterMakers.push(() => makeCharacter(
  42204. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42205. {
  42206. front: {
  42207. height: math.unit(5500, "feet"),
  42208. name: "Front",
  42209. image: {
  42210. source: "./media/characters/alyonia/front.svg",
  42211. extra: 1200/1135,
  42212. bottom: 29/1229
  42213. }
  42214. },
  42215. back: {
  42216. height: math.unit(5500, "feet"),
  42217. name: "Back",
  42218. image: {
  42219. source: "./media/characters/alyonia/back.svg",
  42220. extra: 1205/1138,
  42221. bottom: 10/1215
  42222. }
  42223. },
  42224. },
  42225. [
  42226. {
  42227. name: "Small",
  42228. height: math.unit(10, "feet")
  42229. },
  42230. {
  42231. name: "Macro",
  42232. height: math.unit(500, "feet")
  42233. },
  42234. {
  42235. name: "Mega Macro",
  42236. height: math.unit(5500, "feet"),
  42237. default: true
  42238. },
  42239. {
  42240. name: "Mega Macro+",
  42241. height: math.unit(500000, "feet")
  42242. },
  42243. {
  42244. name: "Giga Macro",
  42245. height: math.unit(3000, "miles")
  42246. },
  42247. {
  42248. name: "Tera Macro",
  42249. height: math.unit(2.8e6, "miles")
  42250. },
  42251. {
  42252. name: "Galactic",
  42253. height: math.unit(120000, "lightyears")
  42254. },
  42255. ]
  42256. ))
  42257. characterMakers.push(() => makeCharacter(
  42258. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42259. {
  42260. werewolf: {
  42261. height: math.unit(8, "feet"),
  42262. weight: math.unit(425, "lb"),
  42263. name: "Werewolf",
  42264. image: {
  42265. source: "./media/characters/autumn/werewolf.svg",
  42266. extra: 2154/2031,
  42267. bottom: 160/2314
  42268. }
  42269. },
  42270. human: {
  42271. height: math.unit(5 + 8/12, "feet"),
  42272. weight: math.unit(150, "lb"),
  42273. name: "Human",
  42274. image: {
  42275. source: "./media/characters/autumn/human.svg",
  42276. extra: 1200/1149,
  42277. bottom: 30/1230
  42278. }
  42279. },
  42280. },
  42281. [
  42282. {
  42283. name: "Normal",
  42284. height: math.unit(8, "feet"),
  42285. default: true
  42286. },
  42287. ]
  42288. ))
  42289. characterMakers.push(() => makeCharacter(
  42290. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42291. {
  42292. front: {
  42293. height: math.unit(8 + 5/12, "feet"),
  42294. weight: math.unit(825, "lb"),
  42295. name: "Front",
  42296. image: {
  42297. source: "./media/characters/cobalt-charizard/front.svg",
  42298. extra: 1268/1155,
  42299. bottom: 122/1390
  42300. }
  42301. },
  42302. side: {
  42303. height: math.unit(8 + 5/12, "feet"),
  42304. weight: math.unit(825, "lb"),
  42305. name: "Side",
  42306. image: {
  42307. source: "./media/characters/cobalt-charizard/side.svg",
  42308. extra: 1348/1257,
  42309. bottom: 58/1406
  42310. }
  42311. },
  42312. gMax: {
  42313. height: math.unit(134 + 11/12, "feet"),
  42314. name: "G-Max",
  42315. image: {
  42316. source: "./media/characters/cobalt-charizard/g-max.svg",
  42317. extra: 1835/1541,
  42318. bottom: 151/1986
  42319. }
  42320. },
  42321. },
  42322. [
  42323. {
  42324. name: "Normal",
  42325. height: math.unit(8 + 5/12, "feet"),
  42326. default: true
  42327. },
  42328. ]
  42329. ))
  42330. characterMakers.push(() => makeCharacter(
  42331. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42332. {
  42333. front: {
  42334. height: math.unit(6 + 3/12, "feet"),
  42335. weight: math.unit(210, "lb"),
  42336. name: "Front",
  42337. image: {
  42338. source: "./media/characters/stella/front.svg",
  42339. extra: 3549/3335,
  42340. bottom: 51/3600
  42341. }
  42342. },
  42343. },
  42344. [
  42345. {
  42346. name: "Normal",
  42347. height: math.unit(6 + 3/12, "feet"),
  42348. default: true
  42349. },
  42350. ]
  42351. ))
  42352. characterMakers.push(() => makeCharacter(
  42353. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42354. {
  42355. front: {
  42356. height: math.unit(5, "feet"),
  42357. weight: math.unit(90, "lb"),
  42358. name: "Front",
  42359. image: {
  42360. source: "./media/characters/riley-bishop/front.svg",
  42361. extra: 1450/1428,
  42362. bottom: 152/1602
  42363. }
  42364. },
  42365. },
  42366. [
  42367. {
  42368. name: "Normal",
  42369. height: math.unit(5, "feet"),
  42370. default: true
  42371. },
  42372. ]
  42373. ))
  42374. characterMakers.push(() => makeCharacter(
  42375. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42376. {
  42377. side: {
  42378. height: math.unit(8 + 2/12, "feet"),
  42379. weight: math.unit(500, "kg"),
  42380. name: "Side",
  42381. image: {
  42382. source: "./media/characters/theo-arcanine/side.svg",
  42383. extra: 1342/1074,
  42384. bottom: 111/1453
  42385. }
  42386. },
  42387. },
  42388. [
  42389. {
  42390. name: "Normal",
  42391. height: math.unit(8 + 2/12, "feet"),
  42392. default: true
  42393. },
  42394. ]
  42395. ))
  42396. characterMakers.push(() => makeCharacter(
  42397. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42398. {
  42399. front: {
  42400. height: math.unit(4, "feet"),
  42401. name: "Front",
  42402. image: {
  42403. source: "./media/characters/kali/front.svg",
  42404. extra: 1921/1357,
  42405. bottom: 70/1991
  42406. }
  42407. },
  42408. },
  42409. [
  42410. {
  42411. name: "Normal",
  42412. height: math.unit(4, "feet"),
  42413. default: true
  42414. },
  42415. {
  42416. name: "Macro",
  42417. height: math.unit(32, "meters")
  42418. },
  42419. {
  42420. name: "Macro+",
  42421. height: math.unit(150, "meters")
  42422. },
  42423. {
  42424. name: "Megamacro",
  42425. height: math.unit(7500, "meters")
  42426. },
  42427. {
  42428. name: "Megamacro+",
  42429. height: math.unit(80, "kilometers")
  42430. },
  42431. ]
  42432. ))
  42433. characterMakers.push(() => makeCharacter(
  42434. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42435. {
  42436. side: {
  42437. height: math.unit(5 + 11/12, "feet"),
  42438. weight: math.unit(236, "lb"),
  42439. name: "Side",
  42440. image: {
  42441. source: "./media/characters/gapp/side.svg",
  42442. extra: 775/340,
  42443. bottom: 58/833
  42444. }
  42445. },
  42446. mouth: {
  42447. height: math.unit(2.98, "feet"),
  42448. name: "Mouth",
  42449. image: {
  42450. source: "./media/characters/gapp/mouth.svg"
  42451. }
  42452. },
  42453. },
  42454. [
  42455. {
  42456. name: "Normal",
  42457. height: math.unit(5 + 1/12, "feet"),
  42458. default: true
  42459. },
  42460. ]
  42461. ))
  42462. characterMakers.push(() => makeCharacter(
  42463. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42464. {
  42465. front: {
  42466. height: math.unit(6, "feet"),
  42467. name: "Front",
  42468. image: {
  42469. source: "./media/characters/persephone/front.svg",
  42470. extra: 1895/1717,
  42471. bottom: 96/1991
  42472. }
  42473. },
  42474. back: {
  42475. height: math.unit(6, "feet"),
  42476. name: "Back",
  42477. image: {
  42478. source: "./media/characters/persephone/back.svg",
  42479. extra: 1868/1679,
  42480. bottom: 26/1894
  42481. }
  42482. },
  42483. casual: {
  42484. height: math.unit(6, "feet"),
  42485. name: "Casual",
  42486. image: {
  42487. source: "./media/characters/persephone/casual.svg",
  42488. extra: 1713/1541,
  42489. bottom: 76/1789
  42490. }
  42491. },
  42492. },
  42493. [
  42494. {
  42495. name: "Human Size",
  42496. height: math.unit(6, "feet")
  42497. },
  42498. {
  42499. name: "Big Steppy",
  42500. height: math.unit(600, "meters"),
  42501. default: true
  42502. },
  42503. {
  42504. name: "Galaxy Brain",
  42505. height: math.unit(1, "zettameter")
  42506. },
  42507. ]
  42508. ))
  42509. characterMakers.push(() => makeCharacter(
  42510. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42511. {
  42512. front: {
  42513. height: math.unit(1.85, "meters"),
  42514. name: "Front",
  42515. image: {
  42516. source: "./media/characters/riley-foxthing/front.svg",
  42517. extra: 1495/1354,
  42518. bottom: 122/1617
  42519. }
  42520. },
  42521. frontAlt: {
  42522. height: math.unit(1.85, "meters"),
  42523. name: "Front (Alt)",
  42524. image: {
  42525. source: "./media/characters/riley-foxthing/front-alt.svg",
  42526. extra: 1572/1389,
  42527. bottom: 116/1688
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Normal Sized",
  42534. height: math.unit(1.85, "meters"),
  42535. default: true
  42536. },
  42537. {
  42538. name: "Quite Sizable",
  42539. height: math.unit(5, "meters")
  42540. },
  42541. {
  42542. name: "Rather Large",
  42543. height: math.unit(20, "meters")
  42544. },
  42545. {
  42546. name: "Macro",
  42547. height: math.unit(450, "meters")
  42548. },
  42549. {
  42550. name: "Giga",
  42551. height: math.unit(5, "km")
  42552. },
  42553. ]
  42554. ))
  42555. characterMakers.push(() => makeCharacter(
  42556. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42557. {
  42558. front: {
  42559. height: math.unit(6, "feet"),
  42560. weight: math.unit(200, "lb"),
  42561. name: "Front",
  42562. image: {
  42563. source: "./media/characters/blizzard/front.svg",
  42564. extra: 1136/990,
  42565. bottom: 136/1272
  42566. }
  42567. },
  42568. back: {
  42569. height: math.unit(6, "feet"),
  42570. weight: math.unit(200, "lb"),
  42571. name: "Back",
  42572. image: {
  42573. source: "./media/characters/blizzard/back.svg",
  42574. extra: 1175/1034,
  42575. bottom: 97/1272
  42576. }
  42577. },
  42578. sitting: {
  42579. height: math.unit(3.725, "feet"),
  42580. weight: math.unit(200, "lb"),
  42581. name: "Sitting",
  42582. image: {
  42583. source: "./media/characters/blizzard/sitting.svg",
  42584. extra: 581/485,
  42585. bottom: 90/671
  42586. }
  42587. },
  42588. frontWizard: {
  42589. height: math.unit(7.9, "feet"),
  42590. weight: math.unit(200, "lb"),
  42591. name: "Front (Wizard)",
  42592. image: {
  42593. source: "./media/characters/blizzard/front-wizard.svg"
  42594. }
  42595. },
  42596. backWizard: {
  42597. height: math.unit(7.9, "feet"),
  42598. weight: math.unit(200, "lb"),
  42599. name: "Back (Wizard)",
  42600. image: {
  42601. source: "./media/characters/blizzard/back-wizard.svg"
  42602. }
  42603. },
  42604. frontNsfw: {
  42605. height: math.unit(6, "feet"),
  42606. weight: math.unit(200, "lb"),
  42607. name: "Front (NSFW)",
  42608. image: {
  42609. source: "./media/characters/blizzard/front-nsfw.svg",
  42610. extra: 1136/990,
  42611. bottom: 136/1272
  42612. }
  42613. },
  42614. backNsfw: {
  42615. height: math.unit(6, "feet"),
  42616. weight: math.unit(200, "lb"),
  42617. name: "Back (NSFW)",
  42618. image: {
  42619. source: "./media/characters/blizzard/back-nsfw.svg",
  42620. extra: 1175/1034,
  42621. bottom: 97/1272
  42622. }
  42623. },
  42624. sittingNsfw: {
  42625. height: math.unit(3.725, "feet"),
  42626. weight: math.unit(200, "lb"),
  42627. name: "Sitting (NSFW)",
  42628. image: {
  42629. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42630. extra: 581/485,
  42631. bottom: 90/671
  42632. }
  42633. },
  42634. wizardFrontNsfw: {
  42635. height: math.unit(7.9, "feet"),
  42636. weight: math.unit(200, "lb"),
  42637. name: "Wizard (Front, NSFW)",
  42638. image: {
  42639. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42640. }
  42641. },
  42642. },
  42643. [
  42644. {
  42645. name: "Normal",
  42646. height: math.unit(6, "feet"),
  42647. default: true
  42648. },
  42649. ]
  42650. ))
  42651. characterMakers.push(() => makeCharacter(
  42652. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42653. {
  42654. front: {
  42655. height: math.unit(5 + 2/12, "feet"),
  42656. name: "Front",
  42657. image: {
  42658. source: "./media/characters/lumi/front.svg",
  42659. extra: 1328/1268,
  42660. bottom: 103/1431
  42661. }
  42662. },
  42663. back: {
  42664. height: math.unit(5 + 2/12, "feet"),
  42665. name: "Back",
  42666. image: {
  42667. source: "./media/characters/lumi/back.svg",
  42668. extra: 1381/1327,
  42669. bottom: 43/1424
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Normal",
  42676. height: math.unit(5 + 2/12, "feet"),
  42677. default: true
  42678. },
  42679. ]
  42680. ))
  42681. characterMakers.push(() => makeCharacter(
  42682. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42683. {
  42684. front: {
  42685. height: math.unit(5 + 9/12, "feet"),
  42686. name: "Front",
  42687. image: {
  42688. source: "./media/characters/aliya-cotton/front.svg",
  42689. extra: 577/564,
  42690. bottom: 29/606
  42691. }
  42692. },
  42693. },
  42694. [
  42695. {
  42696. name: "Normal",
  42697. height: math.unit(5 + 9/12, "feet"),
  42698. default: true
  42699. },
  42700. ]
  42701. ))
  42702. characterMakers.push(() => makeCharacter(
  42703. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42704. {
  42705. front: {
  42706. height: math.unit(2.7, "meters"),
  42707. weight: math.unit(25000, "lb"),
  42708. name: "Front",
  42709. image: {
  42710. source: "./media/characters/noah-luxray/front.svg",
  42711. extra: 1644/825,
  42712. bottom: 339/1983
  42713. }
  42714. },
  42715. side: {
  42716. height: math.unit(2.97, "meters"),
  42717. weight: math.unit(25000, "lb"),
  42718. name: "Side",
  42719. image: {
  42720. source: "./media/characters/noah-luxray/side.svg",
  42721. extra: 1319/650,
  42722. bottom: 163/1482
  42723. }
  42724. },
  42725. dick: {
  42726. height: math.unit(7.4, "feet"),
  42727. weight: math.unit(2500, "lb"),
  42728. name: "Dick",
  42729. image: {
  42730. source: "./media/characters/noah-luxray/dick.svg"
  42731. }
  42732. },
  42733. dickAlt: {
  42734. height: math.unit(10.83, "feet"),
  42735. weight: math.unit(2500, "lb"),
  42736. name: "Dick-alt",
  42737. image: {
  42738. source: "./media/characters/noah-luxray/dick-alt.svg"
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "BIG",
  42745. height: math.unit(2.7, "meters"),
  42746. default: true
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42752. {
  42753. standing: {
  42754. height: math.unit(183, "cm"),
  42755. weight: math.unit(68, "kg"),
  42756. name: "Standing",
  42757. image: {
  42758. source: "./media/characters/arion/standing.svg",
  42759. extra: 1869/1807,
  42760. bottom: 93/1962
  42761. }
  42762. },
  42763. reclining: {
  42764. height: math.unit(70.5, "cm"),
  42765. weight: math.unit(68, "lb"),
  42766. name: "Reclining",
  42767. image: {
  42768. source: "./media/characters/arion/reclining.svg",
  42769. extra: 937/870,
  42770. bottom: 63/1000
  42771. }
  42772. },
  42773. },
  42774. [
  42775. {
  42776. name: "Colossus Size, Low",
  42777. height: math.unit(33, "meters"),
  42778. default: true
  42779. },
  42780. {
  42781. name: "Colossus Size, Mid",
  42782. height: math.unit(52, "meters")
  42783. },
  42784. {
  42785. name: "Colossus Size, High",
  42786. height: math.unit(60, "meters")
  42787. },
  42788. {
  42789. name: "Titan Size, Low",
  42790. height: math.unit(91, "meters"),
  42791. },
  42792. {
  42793. name: "Titan Size, Mid",
  42794. height: math.unit(122, "meters")
  42795. },
  42796. {
  42797. name: "Titan Size, High",
  42798. height: math.unit(162, "meters")
  42799. },
  42800. ]
  42801. ))
  42802. characterMakers.push(() => makeCharacter(
  42803. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42804. {
  42805. front: {
  42806. height: math.unit(53, "meters"),
  42807. name: "Front",
  42808. image: {
  42809. source: "./media/characters/stellar-marbey/front.svg",
  42810. extra: 1913/1805,
  42811. bottom: 92/2005
  42812. }
  42813. },
  42814. back: {
  42815. height: math.unit(53, "meters"),
  42816. name: "Back",
  42817. image: {
  42818. source: "./media/characters/stellar-marbey/back.svg",
  42819. extra: 1960/1851,
  42820. bottom: 28/1988
  42821. }
  42822. },
  42823. mouth: {
  42824. height: math.unit(3.5, "meters"),
  42825. name: "Mouth",
  42826. image: {
  42827. source: "./media/characters/stellar-marbey/mouth.svg"
  42828. }
  42829. },
  42830. },
  42831. [
  42832. {
  42833. name: "Macro",
  42834. height: math.unit(53, "meters"),
  42835. default: true
  42836. },
  42837. ]
  42838. ))
  42839. characterMakers.push(() => makeCharacter(
  42840. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42841. {
  42842. front: {
  42843. height: math.unit(8 + 1/12, "feet"),
  42844. weight: math.unit(233, "lb"),
  42845. name: "Front",
  42846. image: {
  42847. source: "./media/characters/matsu/front.svg",
  42848. extra: 832/772,
  42849. bottom: 40/872
  42850. }
  42851. },
  42852. back: {
  42853. height: math.unit(8 + 1/12, "feet"),
  42854. weight: math.unit(233, "lb"),
  42855. name: "Back",
  42856. image: {
  42857. source: "./media/characters/matsu/back.svg",
  42858. extra: 839/780,
  42859. bottom: 47/886
  42860. }
  42861. },
  42862. },
  42863. [
  42864. {
  42865. name: "Normal",
  42866. height: math.unit(8 + 1/12, "feet"),
  42867. default: true
  42868. },
  42869. ]
  42870. ))
  42871. characterMakers.push(() => makeCharacter(
  42872. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42873. {
  42874. front: {
  42875. height: math.unit(4, "feet"),
  42876. weight: math.unit(148, "lb"),
  42877. name: "Front",
  42878. image: {
  42879. source: "./media/characters/thiz/front.svg",
  42880. extra: 1913/1748,
  42881. bottom: 62/1975
  42882. }
  42883. },
  42884. },
  42885. [
  42886. {
  42887. name: "Normal",
  42888. height: math.unit(4, "feet"),
  42889. default: true
  42890. },
  42891. ]
  42892. ))
  42893. characterMakers.push(() => makeCharacter(
  42894. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42895. {
  42896. front: {
  42897. height: math.unit(7 + 6/12, "feet"),
  42898. weight: math.unit(267, "lb"),
  42899. name: "Front",
  42900. image: {
  42901. source: "./media/characters/marcel/front.svg",
  42902. extra: 1221/1096,
  42903. bottom: 76/1297
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Normal",
  42910. height: math.unit(7 + 6/12, "feet"),
  42911. default: true
  42912. },
  42913. ]
  42914. ))
  42915. characterMakers.push(() => makeCharacter(
  42916. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42917. {
  42918. side: {
  42919. height: math.unit(42, "meters"),
  42920. name: "Side",
  42921. image: {
  42922. source: "./media/characters/flake/side.svg",
  42923. extra: 1525/1306,
  42924. bottom: 209/1734
  42925. }
  42926. },
  42927. },
  42928. [
  42929. {
  42930. name: "Normal",
  42931. height: math.unit(42, "meters"),
  42932. default: true
  42933. },
  42934. ]
  42935. ))
  42936. characterMakers.push(() => makeCharacter(
  42937. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42938. {
  42939. dressed: {
  42940. height: math.unit(6 + 4/12, "feet"),
  42941. weight: math.unit(520, "lb"),
  42942. name: "Dressed",
  42943. image: {
  42944. source: "./media/characters/someonne/dressed.svg",
  42945. extra: 1020/1010,
  42946. bottom: 178/1198
  42947. }
  42948. },
  42949. undressed: {
  42950. height: math.unit(6 + 4/12, "feet"),
  42951. weight: math.unit(520, "lb"),
  42952. name: "Undressed",
  42953. image: {
  42954. source: "./media/characters/someonne/undressed.svg",
  42955. extra: 1019/1014,
  42956. bottom: 169/1188
  42957. }
  42958. },
  42959. },
  42960. [
  42961. {
  42962. name: "Normal",
  42963. height: math.unit(6 + 4/12, "feet"),
  42964. default: true
  42965. },
  42966. ]
  42967. ))
  42968. characterMakers.push(() => makeCharacter(
  42969. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  42970. {
  42971. front: {
  42972. height: math.unit(3, "feet"),
  42973. weight: math.unit(30, "lb"),
  42974. name: "Front",
  42975. image: {
  42976. source: "./media/characters/till/front.svg",
  42977. extra: 892/823,
  42978. bottom: 55/947
  42979. }
  42980. },
  42981. },
  42982. [
  42983. {
  42984. name: "Normal",
  42985. height: math.unit(3, "feet"),
  42986. default: true
  42987. },
  42988. ]
  42989. ))
  42990. characterMakers.push(() => makeCharacter(
  42991. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  42992. {
  42993. front: {
  42994. height: math.unit(9 + 8/12, "feet"),
  42995. weight: math.unit(800, "lb"),
  42996. name: "Front",
  42997. image: {
  42998. source: "./media/characters/sydney-heki/front.svg",
  42999. extra: 1360/1300,
  43000. bottom: 22/1382
  43001. }
  43002. },
  43003. back: {
  43004. height: math.unit(9 + 8/12, "feet"),
  43005. weight: math.unit(800, "lb"),
  43006. name: "Back",
  43007. image: {
  43008. source: "./media/characters/sydney-heki/back.svg",
  43009. extra: 1356/1293,
  43010. bottom: 12/1368
  43011. }
  43012. },
  43013. frontDressed: {
  43014. height: math.unit(9 + 8/12, "feet"),
  43015. weight: math.unit(800, "lb"),
  43016. name: "Front-dressed",
  43017. image: {
  43018. source: "./media/characters/sydney-heki/front-dressed.svg",
  43019. extra: 1360/1300,
  43020. bottom: 22/1382
  43021. }
  43022. },
  43023. },
  43024. [
  43025. {
  43026. name: "Normal",
  43027. height: math.unit(9 + 8/12, "feet"),
  43028. default: true
  43029. },
  43030. {
  43031. name: "Macro",
  43032. height: math.unit(500, "feet")
  43033. },
  43034. {
  43035. name: "Megamacro",
  43036. height: math.unit(3.6, "miles")
  43037. },
  43038. ]
  43039. ))
  43040. characterMakers.push(() => makeCharacter(
  43041. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43042. {
  43043. front: {
  43044. height: math.unit(200, "cm"),
  43045. weight: math.unit(250, "lb"),
  43046. name: "Front",
  43047. image: {
  43048. source: "./media/characters/fowler-karlsson/front.svg",
  43049. extra: 897/845,
  43050. bottom: 123/1020
  43051. }
  43052. },
  43053. back: {
  43054. height: math.unit(200, "cm"),
  43055. weight: math.unit(250, "lb"),
  43056. name: "Back",
  43057. image: {
  43058. source: "./media/characters/fowler-karlsson/back.svg",
  43059. extra: 999/944,
  43060. bottom: 26/1025
  43061. }
  43062. },
  43063. dick: {
  43064. height: math.unit(1.92, "feet"),
  43065. weight: math.unit(150, "lb"),
  43066. name: "Dick",
  43067. image: {
  43068. source: "./media/characters/fowler-karlsson/dick.svg"
  43069. }
  43070. },
  43071. },
  43072. [
  43073. {
  43074. name: "Normal",
  43075. height: math.unit(200, "cm"),
  43076. default: true
  43077. },
  43078. {
  43079. name: "Smaller Macro",
  43080. height: math.unit(90, "m")
  43081. },
  43082. {
  43083. name: "Macro",
  43084. height: math.unit(150, "m")
  43085. },
  43086. {
  43087. name: "Bigger Macro",
  43088. height: math.unit(300, "m")
  43089. },
  43090. ]
  43091. ))
  43092. characterMakers.push(() => makeCharacter(
  43093. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43094. {
  43095. side: {
  43096. height: math.unit(8 + 2/12, "feet"),
  43097. weight: math.unit(1, "tonne"),
  43098. name: "Side",
  43099. image: {
  43100. source: "./media/characters/rylide/side.svg",
  43101. extra: 1318/1034,
  43102. bottom: 106/1424
  43103. }
  43104. },
  43105. sitting: {
  43106. height: math.unit(303, "cm"),
  43107. weight: math.unit(1, "tonne"),
  43108. name: "Sitting",
  43109. image: {
  43110. source: "./media/characters/rylide/sitting.svg",
  43111. extra: 1303/1103,
  43112. bottom: 36/1339
  43113. }
  43114. },
  43115. },
  43116. [
  43117. {
  43118. name: "Normal",
  43119. height: math.unit(8 + 2/12, "feet"),
  43120. default: true
  43121. },
  43122. ]
  43123. ))
  43124. characterMakers.push(() => makeCharacter(
  43125. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43126. {
  43127. front: {
  43128. height: math.unit(5 + 10/12, "feet"),
  43129. weight: math.unit(160, "lb"),
  43130. name: "Front",
  43131. image: {
  43132. source: "./media/characters/pudask/front.svg",
  43133. extra: 1616/1590,
  43134. bottom: 161/1777
  43135. }
  43136. },
  43137. },
  43138. [
  43139. {
  43140. name: "Ferret Height",
  43141. height: math.unit(2 + 5/12, "feet")
  43142. },
  43143. {
  43144. name: "Canon Height",
  43145. height: math.unit(5 + 10/12, "feet"),
  43146. default: true
  43147. },
  43148. ]
  43149. ))
  43150. characterMakers.push(() => makeCharacter(
  43151. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43152. {
  43153. front: {
  43154. height: math.unit(3 + 6/12, "feet"),
  43155. weight: math.unit(60, "lb"),
  43156. name: "Front",
  43157. image: {
  43158. source: "./media/characters/ramita/front.svg",
  43159. extra: 1402/1232,
  43160. bottom: 62/1464
  43161. }
  43162. },
  43163. dressed: {
  43164. height: math.unit(3 + 6/12, "feet"),
  43165. weight: math.unit(60, "lb"),
  43166. name: "Dressed",
  43167. image: {
  43168. source: "./media/characters/ramita/dressed.svg",
  43169. extra: 1534/1249,
  43170. bottom: 50/1584
  43171. }
  43172. },
  43173. },
  43174. [
  43175. {
  43176. name: "Normal",
  43177. height: math.unit(3 + 6/12, "feet"),
  43178. default: true
  43179. },
  43180. ]
  43181. ))
  43182. characterMakers.push(() => makeCharacter(
  43183. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43184. {
  43185. front: {
  43186. height: math.unit(8, "feet"),
  43187. name: "Front",
  43188. image: {
  43189. source: "./media/characters/ark/front.svg",
  43190. extra: 772/693,
  43191. bottom: 45/817
  43192. }
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "Normal",
  43198. height: math.unit(8, "feet"),
  43199. default: true
  43200. },
  43201. ]
  43202. ))
  43203. characterMakers.push(() => makeCharacter(
  43204. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43205. {
  43206. front: {
  43207. height: math.unit(6, "feet"),
  43208. weight: math.unit(250, "lb"),
  43209. volume: math.unit(5/8, "gallons"),
  43210. name: "Front",
  43211. image: {
  43212. source: "./media/characters/ludwig-horn/front.svg",
  43213. extra: 1782/1635,
  43214. bottom: 96/1878
  43215. }
  43216. },
  43217. back: {
  43218. height: math.unit(6, "feet"),
  43219. weight: math.unit(250, "lb"),
  43220. volume: math.unit(5/8, "gallons"),
  43221. name: "Back",
  43222. image: {
  43223. source: "./media/characters/ludwig-horn/back.svg",
  43224. extra: 1874/1729,
  43225. bottom: 27/1901
  43226. }
  43227. },
  43228. dick: {
  43229. height: math.unit(1.05, "feet"),
  43230. weight: math.unit(15, "lb"),
  43231. volume: math.unit(5/8, "gallons"),
  43232. name: "Dick",
  43233. image: {
  43234. source: "./media/characters/ludwig-horn/dick.svg"
  43235. }
  43236. },
  43237. },
  43238. [
  43239. {
  43240. name: "Small",
  43241. height: math.unit(6, "feet")
  43242. },
  43243. {
  43244. name: "Typical",
  43245. height: math.unit(12, "feet"),
  43246. default: true
  43247. },
  43248. {
  43249. name: "Building",
  43250. height: math.unit(80, "feet")
  43251. },
  43252. {
  43253. name: "Town",
  43254. height: math.unit(800, "feet")
  43255. },
  43256. {
  43257. name: "Kingdom",
  43258. height: math.unit(80000, "feet")
  43259. },
  43260. {
  43261. name: "Planet",
  43262. height: math.unit(8000000, "feet")
  43263. },
  43264. {
  43265. name: "Universe",
  43266. height: math.unit(8000000000, "feet")
  43267. },
  43268. {
  43269. name: "Transcended",
  43270. height: math.unit(8e27, "feet")
  43271. },
  43272. ]
  43273. ))
  43274. characterMakers.push(() => makeCharacter(
  43275. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43276. {
  43277. front: {
  43278. height: math.unit(5, "feet"),
  43279. weight: math.unit(50, "kg"),
  43280. name: "Front",
  43281. image: {
  43282. source: "./media/characters/biot-avery/front.svg",
  43283. extra: 1295/1232,
  43284. bottom: 86/1381
  43285. }
  43286. },
  43287. },
  43288. [
  43289. {
  43290. name: "Normal",
  43291. height: math.unit(5, "feet"),
  43292. default: true
  43293. },
  43294. ]
  43295. ))
  43296. characterMakers.push(() => makeCharacter(
  43297. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43298. {
  43299. front: {
  43300. height: math.unit(6, "feet"),
  43301. name: "Front",
  43302. image: {
  43303. source: "./media/characters/kitsune-kiro/front.svg",
  43304. extra: 1270/1158,
  43305. bottom: 42/1312
  43306. }
  43307. },
  43308. frontAlt: {
  43309. height: math.unit(6, "feet"),
  43310. name: "Front-alt",
  43311. image: {
  43312. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43313. extra: 1130/1081,
  43314. bottom: 36/1166
  43315. }
  43316. },
  43317. },
  43318. [
  43319. {
  43320. name: "Smol",
  43321. height: math.unit(3, "feet")
  43322. },
  43323. {
  43324. name: "Normal",
  43325. height: math.unit(6, "feet"),
  43326. default: true
  43327. },
  43328. ]
  43329. ))
  43330. characterMakers.push(() => makeCharacter(
  43331. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43332. {
  43333. front: {
  43334. height: math.unit(6, "feet"),
  43335. weight: math.unit(125, "lb"),
  43336. name: "Front",
  43337. image: {
  43338. source: "./media/characters/jack-thatcher/front.svg",
  43339. extra: 1474/1370,
  43340. bottom: 26/1500
  43341. }
  43342. },
  43343. back: {
  43344. height: math.unit(6, "feet"),
  43345. weight: math.unit(125, "lb"),
  43346. name: "Back",
  43347. image: {
  43348. source: "./media/characters/jack-thatcher/back.svg",
  43349. extra: 1489/1384,
  43350. bottom: 18/1507
  43351. }
  43352. },
  43353. },
  43354. [
  43355. {
  43356. name: "Normal",
  43357. height: math.unit(6, "feet"),
  43358. default: true
  43359. },
  43360. {
  43361. name: "Macro",
  43362. height: math.unit(75, "feet")
  43363. },
  43364. {
  43365. name: "Macro-er",
  43366. height: math.unit(250, "feet")
  43367. },
  43368. ]
  43369. ))
  43370. characterMakers.push(() => makeCharacter(
  43371. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43372. {
  43373. front: {
  43374. height: math.unit(7, "feet"),
  43375. weight: math.unit(110, "kg"),
  43376. name: "Front",
  43377. image: {
  43378. source: "./media/characters/max-hyper/front.svg",
  43379. extra: 1969/1881,
  43380. bottom: 49/2018
  43381. }
  43382. },
  43383. },
  43384. [
  43385. {
  43386. name: "Normal",
  43387. height: math.unit(7, "feet"),
  43388. default: true
  43389. },
  43390. ]
  43391. ))
  43392. characterMakers.push(() => makeCharacter(
  43393. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43394. {
  43395. front: {
  43396. height: math.unit(5 + 5/12, "feet"),
  43397. weight: math.unit(160, "lb"),
  43398. name: "Front",
  43399. image: {
  43400. source: "./media/characters/spook/front.svg",
  43401. extra: 794/791,
  43402. bottom: 54/848
  43403. }
  43404. },
  43405. back: {
  43406. height: math.unit(5 + 5/12, "feet"),
  43407. weight: math.unit(160, "lb"),
  43408. name: "Back",
  43409. image: {
  43410. source: "./media/characters/spook/back.svg",
  43411. extra: 812/798,
  43412. bottom: 32/844
  43413. }
  43414. },
  43415. },
  43416. [
  43417. {
  43418. name: "Normal",
  43419. height: math.unit(5 + 5/12, "feet"),
  43420. default: true
  43421. },
  43422. ]
  43423. ))
  43424. characterMakers.push(() => makeCharacter(
  43425. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43426. {
  43427. front: {
  43428. height: math.unit(18, "feet"),
  43429. name: "Front",
  43430. image: {
  43431. source: "./media/characters/xeaduulix/front.svg",
  43432. extra: 1380/1166,
  43433. bottom: 110/1490
  43434. }
  43435. },
  43436. back: {
  43437. height: math.unit(18, "feet"),
  43438. name: "Back",
  43439. image: {
  43440. source: "./media/characters/xeaduulix/back.svg",
  43441. extra: 1592/1170,
  43442. bottom: 128/1720
  43443. }
  43444. },
  43445. frontNsfw: {
  43446. height: math.unit(18, "feet"),
  43447. name: "Front (NSFW)",
  43448. image: {
  43449. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43450. extra: 1380/1166,
  43451. bottom: 110/1490
  43452. }
  43453. },
  43454. backNsfw: {
  43455. height: math.unit(18, "feet"),
  43456. name: "Back (NSFW)",
  43457. image: {
  43458. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43459. extra: 1592/1170,
  43460. bottom: 128/1720
  43461. }
  43462. },
  43463. },
  43464. [
  43465. {
  43466. name: "Normal",
  43467. height: math.unit(18, "feet"),
  43468. default: true
  43469. },
  43470. ]
  43471. ))
  43472. characterMakers.push(() => makeCharacter(
  43473. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43474. {
  43475. spreadWings: {
  43476. height: math.unit(20, "feet"),
  43477. name: "Spread Wings",
  43478. image: {
  43479. source: "./media/characters/fledge/spread-wings.svg",
  43480. extra: 693/635,
  43481. bottom: 26/719
  43482. }
  43483. },
  43484. front: {
  43485. height: math.unit(20, "feet"),
  43486. name: "Front",
  43487. image: {
  43488. source: "./media/characters/fledge/front.svg",
  43489. extra: 684/637,
  43490. bottom: 18/702
  43491. }
  43492. },
  43493. frontAlt: {
  43494. height: math.unit(20, "feet"),
  43495. name: "Front (Alt)",
  43496. image: {
  43497. source: "./media/characters/fledge/front-alt.svg",
  43498. extra: 708/664,
  43499. bottom: 13/721
  43500. }
  43501. },
  43502. back: {
  43503. height: math.unit(20, "feet"),
  43504. name: "Back",
  43505. image: {
  43506. source: "./media/characters/fledge/back.svg",
  43507. extra: 718/634,
  43508. bottom: 22/740
  43509. }
  43510. },
  43511. head: {
  43512. height: math.unit(5.55, "feet"),
  43513. name: "Head",
  43514. image: {
  43515. source: "./media/characters/fledge/head.svg"
  43516. }
  43517. },
  43518. headAlt: {
  43519. height: math.unit(5.1, "feet"),
  43520. name: "Head (Alt)",
  43521. image: {
  43522. source: "./media/characters/fledge/head-alt.svg"
  43523. }
  43524. },
  43525. },
  43526. [
  43527. {
  43528. name: "Small",
  43529. height: math.unit(6 + 2/12, "feet")
  43530. },
  43531. {
  43532. name: "Big",
  43533. height: math.unit(20, "feet"),
  43534. default: true
  43535. },
  43536. {
  43537. name: "Giant",
  43538. height: math.unit(100, "feet")
  43539. },
  43540. {
  43541. name: "Macro",
  43542. height: math.unit(200, "feet")
  43543. },
  43544. ]
  43545. ))
  43546. characterMakers.push(() => makeCharacter(
  43547. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43548. {
  43549. front: {
  43550. height: math.unit(1, "meter"),
  43551. name: "Front",
  43552. image: {
  43553. source: "./media/characters/atlas-morenai/front.svg",
  43554. extra: 1275/1043,
  43555. bottom: 19/1294
  43556. }
  43557. },
  43558. back: {
  43559. height: math.unit(1, "meter"),
  43560. name: "Back",
  43561. image: {
  43562. source: "./media/characters/atlas-morenai/back.svg",
  43563. extra: 1141/1001,
  43564. bottom: 25/1166
  43565. }
  43566. },
  43567. },
  43568. [
  43569. {
  43570. name: "Normal",
  43571. height: math.unit(1, "meter"),
  43572. default: true
  43573. },
  43574. {
  43575. name: "Magic-Infused",
  43576. height: math.unit(5, "meters")
  43577. },
  43578. ]
  43579. ))
  43580. characterMakers.push(() => makeCharacter(
  43581. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43582. {
  43583. front: {
  43584. height: math.unit(5, "meters"),
  43585. name: "Front",
  43586. image: {
  43587. source: "./media/characters/cintia/front.svg",
  43588. extra: 1312/1228,
  43589. bottom: 38/1350
  43590. }
  43591. },
  43592. back: {
  43593. height: math.unit(5, "meters"),
  43594. name: "Back",
  43595. image: {
  43596. source: "./media/characters/cintia/back.svg",
  43597. extra: 1260/1166,
  43598. bottom: 98/1358
  43599. }
  43600. },
  43601. frontDick: {
  43602. height: math.unit(5, "meters"),
  43603. name: "Front (Dick)",
  43604. image: {
  43605. source: "./media/characters/cintia/front-dick.svg",
  43606. extra: 1312/1228,
  43607. bottom: 38/1350
  43608. }
  43609. },
  43610. backDick: {
  43611. height: math.unit(5, "meters"),
  43612. name: "Back (Dick)",
  43613. image: {
  43614. source: "./media/characters/cintia/back-dick.svg",
  43615. extra: 1260/1166,
  43616. bottom: 98/1358
  43617. }
  43618. },
  43619. bust: {
  43620. height: math.unit(1.97, "meters"),
  43621. name: "Bust",
  43622. image: {
  43623. source: "./media/characters/cintia/bust.svg",
  43624. extra: 617/565,
  43625. bottom: 0/617
  43626. }
  43627. },
  43628. },
  43629. [
  43630. {
  43631. name: "Normal",
  43632. height: math.unit(5, "meters"),
  43633. default: true
  43634. },
  43635. ]
  43636. ))
  43637. characterMakers.push(() => makeCharacter(
  43638. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43639. {
  43640. side: {
  43641. height: math.unit(100, "feet"),
  43642. name: "Side",
  43643. image: {
  43644. source: "./media/characters/denora/side.svg",
  43645. extra: 875/803,
  43646. bottom: 9/884
  43647. }
  43648. },
  43649. },
  43650. [
  43651. {
  43652. name: "Standard",
  43653. height: math.unit(100, "feet"),
  43654. default: true
  43655. },
  43656. {
  43657. name: "Grand",
  43658. height: math.unit(1000, "feet")
  43659. },
  43660. {
  43661. name: "Conquering",
  43662. height: math.unit(10000, "feet")
  43663. },
  43664. ]
  43665. ))
  43666. characterMakers.push(() => makeCharacter(
  43667. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43668. {
  43669. dressed: {
  43670. height: math.unit(8 + 5/12, "feet"),
  43671. weight: math.unit(700, "lb"),
  43672. name: "Dressed",
  43673. image: {
  43674. source: "./media/characters/kiva/dressed.svg",
  43675. extra: 1102/1055,
  43676. bottom: 60/1162
  43677. }
  43678. },
  43679. nude: {
  43680. height: math.unit(8 + 5/12, "feet"),
  43681. weight: math.unit(700, "lb"),
  43682. name: "Nude",
  43683. image: {
  43684. source: "./media/characters/kiva/nude.svg",
  43685. extra: 1102/1055,
  43686. bottom: 60/1162
  43687. }
  43688. },
  43689. },
  43690. [
  43691. {
  43692. name: "Base Height",
  43693. height: math.unit(8 + 5/12, "feet"),
  43694. default: true
  43695. },
  43696. {
  43697. name: "Macro",
  43698. height: math.unit(100, "feet")
  43699. },
  43700. {
  43701. name: "Max",
  43702. height: math.unit(3280, "feet")
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43708. {
  43709. front: {
  43710. height: math.unit(6 + 8/12, "feet"),
  43711. weight: math.unit(250, "lb"),
  43712. name: "Front",
  43713. image: {
  43714. source: "./media/characters/ztragon/front.svg",
  43715. extra: 1825/1684,
  43716. bottom: 98/1923
  43717. }
  43718. },
  43719. },
  43720. [
  43721. {
  43722. name: "Normal",
  43723. height: math.unit(6 + 8/12, "feet"),
  43724. default: true
  43725. },
  43726. {
  43727. name: "Macro",
  43728. height: math.unit(80, "feet")
  43729. },
  43730. ]
  43731. ))
  43732. //characters
  43733. function makeCharacters() {
  43734. const results = [];
  43735. characterMakers.forEach(character => {
  43736. results.push(character());
  43737. });
  43738. return results;
  43739. }