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.
 
 
 

45420 lines
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. back: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Back",
  1832. image: {
  1833. source: "./media/characters/fen/back.svg",
  1834. },
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nHe is not currently looking at you."
  1839. }
  1840. }
  1841. },
  1842. full: {
  1843. height: math.unit(0.91, "meter"),
  1844. weight: math.unit(225, "kg"),
  1845. name: "Full",
  1846. image: {
  1847. source: "./media/characters/fen/full.svg",
  1848. extra: 1133/859,
  1849. bottom: 145/1278
  1850. },
  1851. info: {
  1852. description: {
  1853. mode: "append",
  1854. text: "\n\nMunch."
  1855. }
  1856. }
  1857. },
  1858. kneeling: {
  1859. height: math.unit(5.4, "feet"),
  1860. weight: math.unit(124.738, "kg"),
  1861. name: "Kneeling",
  1862. image: {
  1863. source: "./media/characters/fen/kneeling.svg",
  1864. extra: 563 / 507
  1865. }
  1866. },
  1867. goo: {
  1868. height: math.unit(2.8, "feet"),
  1869. weight: math.unit(125, "kg"),
  1870. capacity: math.unit(1, "people"),
  1871. name: "Goo",
  1872. image: {
  1873. source: "./media/characters/fen/goo.svg",
  1874. bottom: 116 / 613
  1875. }
  1876. },
  1877. lounging: {
  1878. height: math.unit(6.5, "feet"),
  1879. weight: math.unit(125, "kg"),
  1880. name: "Lounging",
  1881. image: {
  1882. source: "./media/characters/fen/lounging.svg"
  1883. }
  1884. },
  1885. },
  1886. [
  1887. {
  1888. name: "Small",
  1889. height: math.unit(2.2428, "meter")
  1890. },
  1891. {
  1892. name: "Normal",
  1893. height: math.unit(12, "feet"),
  1894. default: true,
  1895. },
  1896. {
  1897. name: "Minimacro",
  1898. height: math.unit(40, "feet"),
  1899. info: {
  1900. description: {
  1901. mode: "append",
  1902. text: "\n\nTOO DAMN BIG"
  1903. }
  1904. }
  1905. },
  1906. {
  1907. name: "Macro",
  1908. height: math.unit(100, "feet"),
  1909. info: {
  1910. description: {
  1911. mode: "append",
  1912. text: "\n\nTOO DAMN BIG"
  1913. }
  1914. }
  1915. },
  1916. {
  1917. name: "Macro+",
  1918. height: math.unit(300, "feet")
  1919. },
  1920. {
  1921. name: "Megamacro",
  1922. height: math.unit(2, "miles")
  1923. }
  1924. ]
  1925. ))
  1926. characterMakers.push(() => makeCharacter(
  1927. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1928. {
  1929. front: {
  1930. height: math.unit(183, "cm"),
  1931. weight: math.unit(80, "kg"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/front.svg",
  1935. bottom: 0.01,
  1936. extra: 2154 / 2081
  1937. }
  1938. },
  1939. frontAlt: {
  1940. height: math.unit(183, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Front (alt)",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1945. }
  1946. },
  1947. back: {
  1948. height: math.unit(183, "cm"),
  1949. weight: math.unit(80, "kg"),
  1950. name: "Back",
  1951. image: {
  1952. source: "./media/characters/sofia-fluttertail/back.svg"
  1953. }
  1954. },
  1955. kneeling: {
  1956. height: math.unit(125, "cm"),
  1957. weight: math.unit(80, "kg"),
  1958. name: "Kneeling",
  1959. image: {
  1960. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1961. extra: 1033 / 977,
  1962. bottom: 23.7 / 1057
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(183 / 5, "cm"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/maw.svg"
  1970. }
  1971. },
  1972. mawcloseup: {
  1973. height: math.unit(183 / 5 * 0.41, "cm"),
  1974. name: "Maw (Closeup)",
  1975. image: {
  1976. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1977. }
  1978. },
  1979. paws: {
  1980. height: math.unit(1.17, "feet"),
  1981. name: "Paws",
  1982. image: {
  1983. source: "./media/characters/sofia-fluttertail/paws.svg",
  1984. extra: 851 / 851,
  1985. bottom: 17 / 868
  1986. }
  1987. },
  1988. },
  1989. [
  1990. {
  1991. name: "Normal",
  1992. height: math.unit(1.83, "meter")
  1993. },
  1994. {
  1995. name: "Size Thief",
  1996. height: math.unit(18, "feet")
  1997. },
  1998. {
  1999. name: "50 Foot Collie",
  2000. height: math.unit(50, "feet")
  2001. },
  2002. {
  2003. name: "Macro",
  2004. height: math.unit(96, "feet"),
  2005. default: true
  2006. },
  2007. {
  2008. name: "Megamerger",
  2009. height: math.unit(650, "feet")
  2010. },
  2011. ]
  2012. ))
  2013. characterMakers.push(() => makeCharacter(
  2014. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2015. {
  2016. front: {
  2017. height: math.unit(7, "feet"),
  2018. weight: math.unit(100, "kg"),
  2019. name: "Front",
  2020. image: {
  2021. source: "./media/characters/march/front.svg",
  2022. extra: 1992/1851,
  2023. bottom: 39/2031
  2024. }
  2025. },
  2026. foot: {
  2027. height: math.unit(0.9, "feet"),
  2028. name: "Foot",
  2029. image: {
  2030. source: "./media/characters/march/foot.svg"
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(7.9, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(220, "meters")
  2042. },
  2043. {
  2044. name: "Megamacro",
  2045. height: math.unit(2.98, "km"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(15963, "km")
  2051. },
  2052. {
  2053. name: "Teramacro",
  2054. height: math.unit(2980000000, "km")
  2055. },
  2056. {
  2057. name: "Examacro",
  2058. height: math.unit(250, "parsecs")
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(6, "feet"),
  2067. weight: math.unit(60, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/noir/front.svg",
  2071. extra: 1,
  2072. bottom: 0.032
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(6.6, "feet")
  2080. },
  2081. {
  2082. name: "Macro",
  2083. height: math.unit(500, "feet")
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(2.5, "km"),
  2088. default: true
  2089. },
  2090. {
  2091. name: "Gigamacro",
  2092. height: math.unit(22500, "km")
  2093. },
  2094. {
  2095. name: "Teramacro",
  2096. height: math.unit(2500000000, "km")
  2097. },
  2098. {
  2099. name: "Examacro",
  2100. height: math.unit(200, "parsecs")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(7, "feet"),
  2109. weight: math.unit(100, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/okuri/front.svg",
  2113. extra: 1,
  2114. bottom: 0.037
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/okuri/back.svg",
  2123. extra: 1,
  2124. bottom: 0.007
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(100, "miles"),
  2132. default: true
  2133. },
  2134. ]
  2135. ))
  2136. characterMakers.push(() => makeCharacter(
  2137. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2138. {
  2139. front: {
  2140. height: math.unit(7, "feet"),
  2141. weight: math.unit(100, "kg"),
  2142. name: "Front",
  2143. image: {
  2144. source: "./media/characters/manny/front.svg",
  2145. extra: 1,
  2146. bottom: 0.06
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/manny/back.svg",
  2155. extra: 1,
  2156. bottom: 0.014
  2157. }
  2158. },
  2159. },
  2160. [
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(7, "feet"),
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(78, "feet"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Macro+",
  2172. height: math.unit(300, "meters")
  2173. },
  2174. {
  2175. name: "Macro++",
  2176. height: math.unit(2400, "meters")
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(5167, "meters")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(41769, "miles")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(7, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/adake/front-1.svg"
  2197. }
  2198. },
  2199. frontAlt: {
  2200. height: math.unit(7, "feet"),
  2201. weight: math.unit(100, "kg"),
  2202. name: "Front (Alt)",
  2203. image: {
  2204. source: "./media/characters/adake/front-2.svg",
  2205. extra: 1,
  2206. bottom: 0.01
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/adake/back.svg",
  2215. }
  2216. },
  2217. kneel: {
  2218. height: math.unit(5.385, "feet"),
  2219. weight: math.unit(100, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/adake/kneel.svg",
  2223. bottom: 0.052
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(7, "feet"),
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(78, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Macro+",
  2239. height: math.unit(300, "meters")
  2240. },
  2241. {
  2242. name: "Macro++",
  2243. height: math.unit(2400, "meters")
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(5167, "meters")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(41769, "miles")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(1.65, "meters"),
  2260. weight: math.unit(50, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/elijah/front.svg",
  2264. extra: 858 / 830,
  2265. bottom: 95.5 / 953.8559
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(1.65, "meters"),
  2270. weight: math.unit(50, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/elijah/back.svg",
  2274. extra: 895 / 850,
  2275. bottom: 5.3 / 897.956
  2276. }
  2277. },
  2278. frontNsfw: {
  2279. height: math.unit(1.65, "meters"),
  2280. weight: math.unit(50, "kg"),
  2281. name: "Front (NSFW)",
  2282. image: {
  2283. source: "./media/characters/elijah/front-nsfw.svg",
  2284. extra: 858 / 830,
  2285. bottom: 95.5 / 953.8559
  2286. }
  2287. },
  2288. backNsfw: {
  2289. height: math.unit(1.65, "meters"),
  2290. weight: math.unit(50, "kg"),
  2291. name: "Back (NSFW)",
  2292. image: {
  2293. source: "./media/characters/elijah/back-nsfw.svg",
  2294. extra: 895 / 850,
  2295. bottom: 5.3 / 897.956
  2296. }
  2297. },
  2298. dick: {
  2299. height: math.unit(1, "feet"),
  2300. name: "Dick",
  2301. image: {
  2302. source: "./media/characters/elijah/dick.svg"
  2303. }
  2304. },
  2305. beakOpen: {
  2306. height: math.unit(1.25, "feet"),
  2307. name: "Beak (Open)",
  2308. image: {
  2309. source: "./media/characters/elijah/beak-open.svg"
  2310. }
  2311. },
  2312. beakShut: {
  2313. height: math.unit(1.25, "feet"),
  2314. name: "Beak (Shut)",
  2315. image: {
  2316. source: "./media/characters/elijah/beak-shut.svg"
  2317. }
  2318. },
  2319. footFlexing: {
  2320. height: math.unit(1.61, "feet"),
  2321. name: "Foot (Flexing)",
  2322. image: {
  2323. source: "./media/characters/elijah/foot-flexing.svg"
  2324. }
  2325. },
  2326. footStepping: {
  2327. height: math.unit(1.44, "feet"),
  2328. name: "Foot (Stepping)",
  2329. image: {
  2330. source: "./media/characters/elijah/foot-stepping.svg"
  2331. }
  2332. },
  2333. plantigradeLeg: {
  2334. height: math.unit(2.34, "feet"),
  2335. name: "Plantigrade Leg",
  2336. image: {
  2337. source: "./media/characters/elijah/plantigrade-leg.svg"
  2338. }
  2339. },
  2340. plantigradeFootLeft: {
  2341. height: math.unit(0.9, "feet"),
  2342. name: "Plantigrade Foot (Left)",
  2343. image: {
  2344. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2345. }
  2346. },
  2347. plantigradeFootRight: {
  2348. height: math.unit(0.9, "feet"),
  2349. name: "Plantigrade Foot (Right)",
  2350. image: {
  2351. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2352. }
  2353. },
  2354. },
  2355. [
  2356. {
  2357. name: "Normal",
  2358. height: math.unit(1.65, "meters")
  2359. },
  2360. {
  2361. name: "Macro",
  2362. height: math.unit(55, "meters"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "Macro+",
  2367. height: math.unit(105, "meters")
  2368. },
  2369. ]
  2370. ))
  2371. characterMakers.push(() => makeCharacter(
  2372. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2373. {
  2374. front: {
  2375. height: math.unit(7 + 2/12, "feet"),
  2376. weight: math.unit(320, "kg"),
  2377. name: "Front",
  2378. image: {
  2379. source: "./media/characters/rai/front.svg",
  2380. extra: 1802/1696,
  2381. bottom: 68/1870
  2382. }
  2383. },
  2384. frontDressed: {
  2385. height: math.unit(7 + 2/12, "feet"),
  2386. weight: math.unit(320, "kg"),
  2387. name: "Front (Dressed)",
  2388. image: {
  2389. source: "./media/characters/rai/front-dressed.svg",
  2390. extra: 1802/1696,
  2391. bottom: 68/1870
  2392. }
  2393. },
  2394. side: {
  2395. height: math.unit(7 + 2/12, "feet"),
  2396. weight: math.unit(320, "kg"),
  2397. name: "Side",
  2398. image: {
  2399. source: "./media/characters/rai/side.svg",
  2400. extra: 1789/1710,
  2401. bottom: 115/1904
  2402. }
  2403. },
  2404. back: {
  2405. height: math.unit(7 + 2/12, "feet"),
  2406. weight: math.unit(320, "kg"),
  2407. name: "Back",
  2408. image: {
  2409. source: "./media/characters/rai/back.svg",
  2410. extra: 1770/1707,
  2411. bottom: 28/1798
  2412. }
  2413. },
  2414. feral: {
  2415. height: math.unit(9.5, "feet"),
  2416. weight: math.unit(640, "kg"),
  2417. name: "Feral",
  2418. image: {
  2419. source: "./media/characters/rai/feral.svg",
  2420. extra: 945/553,
  2421. bottom: 176/1121
  2422. }
  2423. },
  2424. dragon: {
  2425. height: math.unit(23, "feet"),
  2426. weight: math.unit(50000, "lb"),
  2427. name: "Dragon",
  2428. image: {
  2429. source: "./media/characters/rai/dragon.svg",
  2430. extra: 2498 / 2030,
  2431. bottom: 85.2 / 2584
  2432. }
  2433. },
  2434. maw: {
  2435. height: math.unit(1.69, "feet"),
  2436. name: "Maw",
  2437. image: {
  2438. source: "./media/characters/rai/maw.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(7 + 2/12, "feet")
  2446. },
  2447. {
  2448. name: "Big",
  2449. height: math.unit(11, "feet")
  2450. },
  2451. {
  2452. name: "Macro",
  2453. height: math.unit(302, "feet"),
  2454. default: true
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2460. {
  2461. frontDressed: {
  2462. height: math.unit(216, "feet"),
  2463. weight: math.unit(7000000, "lb"),
  2464. name: "Front (Dressed)",
  2465. image: {
  2466. source: "./media/characters/jazzy/front-dressed.svg",
  2467. extra: 2738 / 2651,
  2468. bottom: 41.8 / 2786
  2469. }
  2470. },
  2471. backDressed: {
  2472. height: math.unit(216, "feet"),
  2473. weight: math.unit(7000000, "lb"),
  2474. name: "Back (Dressed)",
  2475. image: {
  2476. source: "./media/characters/jazzy/back-dressed.svg",
  2477. extra: 2775 / 2673,
  2478. bottom: 36.8 / 2817
  2479. }
  2480. },
  2481. front: {
  2482. height: math.unit(216, "feet"),
  2483. weight: math.unit(7000000, "lb"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/jazzy/front.svg",
  2487. extra: 2738 / 2651,
  2488. bottom: 41.8 / 2786
  2489. }
  2490. },
  2491. back: {
  2492. height: math.unit(216, "feet"),
  2493. weight: math.unit(7000000, "lb"),
  2494. name: "Back",
  2495. image: {
  2496. source: "./media/characters/jazzy/back.svg",
  2497. extra: 2775 / 2673,
  2498. bottom: 36.8 / 2817
  2499. }
  2500. },
  2501. maw: {
  2502. height: math.unit(20, "feet"),
  2503. name: "Maw",
  2504. image: {
  2505. source: "./media/characters/jazzy/maw.svg"
  2506. }
  2507. },
  2508. paws: {
  2509. height: math.unit(27.5, "feet"),
  2510. name: "Paws",
  2511. image: {
  2512. source: "./media/characters/jazzy/paws.svg"
  2513. }
  2514. },
  2515. eye: {
  2516. height: math.unit(4.4, "feet"),
  2517. name: "Eye",
  2518. image: {
  2519. source: "./media/characters/jazzy/eye.svg"
  2520. }
  2521. },
  2522. droneOffense: {
  2523. height: math.unit(9.5, "inches"),
  2524. name: "Drone (Offense)",
  2525. image: {
  2526. source: "./media/characters/jazzy/drone-offense.svg"
  2527. }
  2528. },
  2529. droneRecon: {
  2530. height: math.unit(9.5, "inches"),
  2531. name: "Drone (Recon)",
  2532. image: {
  2533. source: "./media/characters/jazzy/drone-recon.svg"
  2534. }
  2535. },
  2536. droneDefense: {
  2537. height: math.unit(9.5, "inches"),
  2538. name: "Drone (Defense)",
  2539. image: {
  2540. source: "./media/characters/jazzy/drone-defense.svg"
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Macro",
  2547. height: math.unit(216, "feet"),
  2548. default: true
  2549. },
  2550. ]
  2551. ))
  2552. characterMakers.push(() => makeCharacter(
  2553. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2554. {
  2555. front: {
  2556. height: math.unit(9 + 6/12, "feet"),
  2557. weight: math.unit(700, "lb"),
  2558. name: "Front",
  2559. image: {
  2560. source: "./media/characters/flamm/front.svg",
  2561. extra: 1751/1632,
  2562. bottom: 46/1797
  2563. }
  2564. },
  2565. buff: {
  2566. height: math.unit(9 + 6/12, "feet"),
  2567. weight: math.unit(950, "lb"),
  2568. name: "Buff",
  2569. image: {
  2570. source: "./media/characters/flamm/buff.svg",
  2571. extra: 3018/2874,
  2572. bottom: 221/3239
  2573. }
  2574. },
  2575. },
  2576. [
  2577. {
  2578. name: "Normal",
  2579. height: math.unit(9.5, "feet")
  2580. },
  2581. {
  2582. name: "Macro",
  2583. height: math.unit(200, "feet"),
  2584. default: true
  2585. },
  2586. ]
  2587. ))
  2588. characterMakers.push(() => makeCharacter(
  2589. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2590. {
  2591. front: {
  2592. height: math.unit(5 + 3/12, "feet"),
  2593. weight: math.unit(60, "kg"),
  2594. name: "Front",
  2595. image: {
  2596. source: "./media/characters/zephiro/front.svg",
  2597. extra: 2309 / 2162,
  2598. bottom: 0.069
  2599. }
  2600. },
  2601. side: {
  2602. height: math.unit(5 + 3/12, "feet"),
  2603. weight: math.unit(60, "kg"),
  2604. name: "Side",
  2605. image: {
  2606. source: "./media/characters/zephiro/side.svg",
  2607. extra: 2403 / 2279,
  2608. bottom: 0.015
  2609. }
  2610. },
  2611. back: {
  2612. height: math.unit(5 + 3/12, "feet"),
  2613. weight: math.unit(60, "kg"),
  2614. name: "Back",
  2615. image: {
  2616. source: "./media/characters/zephiro/back.svg",
  2617. extra: 2373 / 2244,
  2618. bottom: 0.013
  2619. }
  2620. },
  2621. hand: {
  2622. height: math.unit(0.68, "feet"),
  2623. name: "Hand",
  2624. image: {
  2625. source: "./media/characters/zephiro/hand.svg"
  2626. }
  2627. },
  2628. paw: {
  2629. height: math.unit(1, "feet"),
  2630. name: "Paw",
  2631. image: {
  2632. source: "./media/characters/zephiro/paw.svg"
  2633. }
  2634. },
  2635. beans: {
  2636. height: math.unit(0.93, "feet"),
  2637. name: "Beans",
  2638. image: {
  2639. source: "./media/characters/zephiro/beans.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Micro",
  2646. height: math.unit(3, "inches")
  2647. },
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(5 + 3 / 12, "feet"),
  2651. default: true
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(118, "feet")
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2661. {
  2662. front: {
  2663. height: math.unit(5, "feet"),
  2664. weight: math.unit(90, "kg"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/fory/front.svg",
  2668. extra: 2862 / 2674,
  2669. bottom: 180 / 3043.8
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(5, "feet"),
  2674. weight: math.unit(90, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/fory/back.svg",
  2678. extra: 2962 / 2791,
  2679. bottom: 106 / 3071.8
  2680. }
  2681. },
  2682. foot: {
  2683. height: math.unit(2.14, "feet"),
  2684. name: "Foot",
  2685. image: {
  2686. source: "./media/characters/fory/foot.svg"
  2687. }
  2688. },
  2689. },
  2690. [
  2691. {
  2692. name: "Normal",
  2693. height: math.unit(5, "feet")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(50, "feet"),
  2698. default: true
  2699. },
  2700. {
  2701. name: "Megamacro",
  2702. height: math.unit(10, "miles")
  2703. },
  2704. {
  2705. name: "Gigamacro",
  2706. height: math.unit(5, "earths")
  2707. },
  2708. ]
  2709. ))
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2712. {
  2713. front: {
  2714. height: math.unit(7, "feet"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Front",
  2717. image: {
  2718. source: "./media/characters/kurrikage/front.svg",
  2719. extra: 1845/1733,
  2720. bottom: 119/1964
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(7, "feet"),
  2725. weight: math.unit(90, "kg"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/kurrikage/back.svg",
  2729. extra: 1790/1677,
  2730. bottom: 61/1851
  2731. }
  2732. },
  2733. dressed: {
  2734. height: math.unit(7, "feet"),
  2735. weight: math.unit(90, "kg"),
  2736. name: "Dressed",
  2737. image: {
  2738. source: "./media/characters/kurrikage/dressed.svg",
  2739. extra: 1845/1733,
  2740. bottom: 119/1964
  2741. }
  2742. },
  2743. foot: {
  2744. height: math.unit(1.5, "feet"),
  2745. name: "Foot",
  2746. image: {
  2747. source: "./media/characters/kurrikage/foot.svg"
  2748. }
  2749. },
  2750. staff: {
  2751. height: math.unit(6.7, "feet"),
  2752. name: "Staff",
  2753. image: {
  2754. source: "./media/characters/kurrikage/staff.svg"
  2755. }
  2756. },
  2757. peek: {
  2758. height: math.unit(1.05, "feet"),
  2759. name: "Peeking",
  2760. image: {
  2761. source: "./media/characters/kurrikage/peek.svg",
  2762. bottom: 0.08
  2763. }
  2764. },
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(12, "feet"),
  2770. default: true
  2771. },
  2772. {
  2773. name: "Big",
  2774. height: math.unit(20, "feet")
  2775. },
  2776. {
  2777. name: "Macro",
  2778. height: math.unit(500, "feet")
  2779. },
  2780. {
  2781. name: "Megamacro",
  2782. height: math.unit(20, "miles")
  2783. },
  2784. ]
  2785. ))
  2786. characterMakers.push(() => makeCharacter(
  2787. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2788. {
  2789. front: {
  2790. height: math.unit(6, "feet"),
  2791. weight: math.unit(75, "kg"),
  2792. name: "Front",
  2793. image: {
  2794. source: "./media/characters/shingo/front.svg",
  2795. extra: 1900/1825,
  2796. bottom: 82/1982
  2797. }
  2798. },
  2799. side: {
  2800. height: math.unit(6, "feet"),
  2801. weight: math.unit(75, "kg"),
  2802. name: "Side",
  2803. image: {
  2804. source: "./media/characters/shingo/side.svg",
  2805. extra: 1930/1865,
  2806. bottom: 16/1946
  2807. }
  2808. },
  2809. back: {
  2810. height: math.unit(6, "feet"),
  2811. weight: math.unit(75, "kg"),
  2812. name: "Back",
  2813. image: {
  2814. source: "./media/characters/shingo/back.svg",
  2815. extra: 1922/1852,
  2816. bottom: 16/1938
  2817. }
  2818. },
  2819. frontDressed: {
  2820. height: math.unit(6, "feet"),
  2821. weight: math.unit(150, "lb"),
  2822. name: "Front-dressed",
  2823. image: {
  2824. source: "./media/characters/shingo/front-dressed.svg",
  2825. extra: 1900/1825,
  2826. bottom: 82/1982
  2827. }
  2828. },
  2829. paw: {
  2830. height: math.unit(1.29, "feet"),
  2831. name: "Paw",
  2832. image: {
  2833. source: "./media/characters/shingo/paw.svg"
  2834. }
  2835. },
  2836. hand: {
  2837. height: math.unit(1.07, "feet"),
  2838. name: "Hand",
  2839. image: {
  2840. source: "./media/characters/shingo/hand.svg"
  2841. }
  2842. },
  2843. frontAlt: {
  2844. height: math.unit(6, "feet"),
  2845. weight: math.unit(75, "kg"),
  2846. name: "Front (Alt)",
  2847. image: {
  2848. source: "./media/characters/shingo/front-alt.svg",
  2849. extra: 3511 / 3338,
  2850. bottom: 0.005
  2851. }
  2852. },
  2853. frontAlt2: {
  2854. height: math.unit(6, "feet"),
  2855. weight: math.unit(75, "kg"),
  2856. name: "Front (Alt 2)",
  2857. image: {
  2858. source: "./media/characters/shingo/front-alt-2.svg",
  2859. extra: 706/681,
  2860. bottom: 11/717
  2861. }
  2862. },
  2863. pawAlt: {
  2864. height: math.unit(1, "feet"),
  2865. name: "Paw (Alt)",
  2866. image: {
  2867. source: "./media/characters/shingo/paw-alt.svg"
  2868. }
  2869. },
  2870. },
  2871. [
  2872. {
  2873. name: "Micro",
  2874. height: math.unit(4, "inches")
  2875. },
  2876. {
  2877. name: "Normal",
  2878. height: math.unit(6, "feet"),
  2879. default: true
  2880. },
  2881. {
  2882. name: "Macro",
  2883. height: math.unit(108, "feet")
  2884. },
  2885. {
  2886. name: "Macro+",
  2887. height: math.unit(1500, "feet")
  2888. },
  2889. ]
  2890. ))
  2891. characterMakers.push(() => makeCharacter(
  2892. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2893. {
  2894. side: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Side",
  2898. image: {
  2899. source: "./media/characters/aigey/side.svg"
  2900. }
  2901. },
  2902. },
  2903. [
  2904. {
  2905. name: "Macro",
  2906. height: math.unit(200, "feet"),
  2907. default: true
  2908. },
  2909. {
  2910. name: "Megamacro",
  2911. height: math.unit(100, "miles")
  2912. },
  2913. ]
  2914. )
  2915. )
  2916. characterMakers.push(() => makeCharacter(
  2917. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2918. {
  2919. front: {
  2920. height: math.unit(5 + 5 / 12, "feet"),
  2921. weight: math.unit(75, "kg"),
  2922. name: "Front",
  2923. image: {
  2924. source: "./media/characters/natasha/front.svg",
  2925. extra: 859 / 824,
  2926. bottom: 23 / 879.6
  2927. }
  2928. },
  2929. frontNsfw: {
  2930. height: math.unit(5 + 5 / 12, "feet"),
  2931. weight: math.unit(75, "kg"),
  2932. name: "Front (NSFW)",
  2933. image: {
  2934. source: "./media/characters/natasha/front-nsfw.svg",
  2935. extra: 859 / 824,
  2936. bottom: 23 / 879.6
  2937. }
  2938. },
  2939. frontErect: {
  2940. height: math.unit(5 + 5 / 12, "feet"),
  2941. weight: math.unit(75, "kg"),
  2942. name: "Front (Erect)",
  2943. image: {
  2944. source: "./media/characters/natasha/front-erect.svg",
  2945. extra: 859 / 824,
  2946. bottom: 23 / 879.6
  2947. }
  2948. },
  2949. back: {
  2950. height: math.unit(5 + 5 / 12, "feet"),
  2951. weight: math.unit(75, "kg"),
  2952. name: "Back",
  2953. image: {
  2954. source: "./media/characters/natasha/back.svg",
  2955. extra: 887.9 / 852.6,
  2956. bottom: 9.7 / 896.4
  2957. }
  2958. },
  2959. backAlt: {
  2960. height: math.unit(5 + 5 / 12, "feet"),
  2961. weight: math.unit(75, "kg"),
  2962. name: "Back (Alt)",
  2963. image: {
  2964. source: "./media/characters/natasha/back-alt.svg",
  2965. extra: 1236.7 / 1192,
  2966. bottom: 22.3 / 1258.2
  2967. }
  2968. },
  2969. dick: {
  2970. height: math.unit(1.772, "feet"),
  2971. name: "Dick",
  2972. image: {
  2973. source: "./media/characters/natasha/dick.svg"
  2974. }
  2975. },
  2976. paw: {
  2977. height: math.unit(0.250, "meters"),
  2978. name: "Paw",
  2979. image: {
  2980. source: "./media/characters/natasha/paw.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(5 + 5 / 12, "feet")
  2988. },
  2989. {
  2990. name: "Large",
  2991. height: math.unit(12, "feet")
  2992. },
  2993. {
  2994. name: "Macro",
  2995. height: math.unit(100, "feet"),
  2996. default: true
  2997. },
  2998. {
  2999. name: "Macro+",
  3000. height: math.unit(260, "feet")
  3001. },
  3002. {
  3003. name: "Macro++",
  3004. height: math.unit(1, "mile")
  3005. },
  3006. ]
  3007. ))
  3008. characterMakers.push(() => makeCharacter(
  3009. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3010. {
  3011. front: {
  3012. height: math.unit(6, "feet"),
  3013. weight: math.unit(75, "kg"),
  3014. name: "Front",
  3015. image: {
  3016. source: "./media/characters/malik/front.svg"
  3017. }
  3018. },
  3019. side: {
  3020. height: math.unit(6, "feet"),
  3021. weight: math.unit(75, "kg"),
  3022. name: "Side",
  3023. image: {
  3024. source: "./media/characters/malik/side.svg",
  3025. extra: 1.1539
  3026. }
  3027. },
  3028. back: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Back",
  3032. image: {
  3033. source: "./media/characters/malik/back.svg"
  3034. }
  3035. },
  3036. },
  3037. [
  3038. {
  3039. name: "Macro",
  3040. height: math.unit(156, "feet"),
  3041. default: true
  3042. },
  3043. {
  3044. name: "Macro+",
  3045. height: math.unit(1188, "feet")
  3046. },
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/sefer/front.svg",
  3058. extra: 848 / 659,
  3059. bottom: 28.3 / 876.442
  3060. }
  3061. },
  3062. back: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Back",
  3066. image: {
  3067. source: "./media/characters/sefer/back.svg",
  3068. extra: 864 / 695,
  3069. bottom: 10 / 871
  3070. }
  3071. },
  3072. frontDressed: {
  3073. height: math.unit(6, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Front (Dressed)",
  3076. image: {
  3077. source: "./media/characters/sefer/front-dressed.svg",
  3078. extra: 839 / 653,
  3079. bottom: 37.6 / 878
  3080. }
  3081. },
  3082. },
  3083. [
  3084. {
  3085. name: "Normal",
  3086. height: math.unit(6, "feet"),
  3087. default: true
  3088. },
  3089. ]
  3090. ))
  3091. characterMakers.push(() => makeCharacter(
  3092. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3093. {
  3094. body: {
  3095. height: math.unit(2.2428, "meter"),
  3096. weight: math.unit(124.738, "kg"),
  3097. name: "Body",
  3098. image: {
  3099. extra: 1225 / 1050,
  3100. source: "./media/characters/north/front.svg"
  3101. }
  3102. }
  3103. },
  3104. [
  3105. {
  3106. name: "Micro",
  3107. height: math.unit(4, "inches")
  3108. },
  3109. {
  3110. name: "Macro",
  3111. height: math.unit(63, "meters")
  3112. },
  3113. {
  3114. name: "Megamacro",
  3115. height: math.unit(101, "miles"),
  3116. default: true
  3117. }
  3118. ]
  3119. ))
  3120. characterMakers.push(() => makeCharacter(
  3121. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3122. {
  3123. angled: {
  3124. height: math.unit(4, "meter"),
  3125. weight: math.unit(150, "kg"),
  3126. name: "Angled",
  3127. image: {
  3128. source: "./media/characters/talan/angled-sfw.svg",
  3129. bottom: 29 / 3734
  3130. }
  3131. },
  3132. angledNsfw: {
  3133. height: math.unit(4, "meter"),
  3134. weight: math.unit(150, "kg"),
  3135. name: "Angled (NSFW)",
  3136. image: {
  3137. source: "./media/characters/talan/angled-nsfw.svg",
  3138. bottom: 29 / 3734
  3139. }
  3140. },
  3141. frontNsfw: {
  3142. height: math.unit(4, "meter"),
  3143. weight: math.unit(150, "kg"),
  3144. name: "Front (NSFW)",
  3145. image: {
  3146. source: "./media/characters/talan/front-nsfw.svg",
  3147. bottom: 29 / 3734
  3148. }
  3149. },
  3150. sideNsfw: {
  3151. height: math.unit(4, "meter"),
  3152. weight: math.unit(150, "kg"),
  3153. name: "Side (NSFW)",
  3154. image: {
  3155. source: "./media/characters/talan/side-nsfw.svg",
  3156. bottom: 29 / 3734
  3157. }
  3158. },
  3159. back: {
  3160. height: math.unit(4, "meter"),
  3161. weight: math.unit(150, "kg"),
  3162. name: "Back",
  3163. image: {
  3164. source: "./media/characters/talan/back.svg"
  3165. }
  3166. },
  3167. dickBottom: {
  3168. height: math.unit(0.621, "meter"),
  3169. name: "Dick (Bottom)",
  3170. image: {
  3171. source: "./media/characters/talan/dick-bottom.svg"
  3172. }
  3173. },
  3174. dickTop: {
  3175. height: math.unit(0.621, "meter"),
  3176. name: "Dick (Top)",
  3177. image: {
  3178. source: "./media/characters/talan/dick-top.svg"
  3179. }
  3180. },
  3181. dickSide: {
  3182. height: math.unit(0.305, "meter"),
  3183. name: "Dick (Side)",
  3184. image: {
  3185. source: "./media/characters/talan/dick-side.svg"
  3186. }
  3187. },
  3188. dickFront: {
  3189. height: math.unit(0.305, "meter"),
  3190. name: "Dick (Front)",
  3191. image: {
  3192. source: "./media/characters/talan/dick-front.svg"
  3193. }
  3194. },
  3195. },
  3196. [
  3197. {
  3198. name: "Normal",
  3199. height: math.unit(4, "meters")
  3200. },
  3201. {
  3202. name: "Macro",
  3203. height: math.unit(100, "meters")
  3204. },
  3205. {
  3206. name: "Megamacro",
  3207. height: math.unit(2, "miles"),
  3208. default: true
  3209. },
  3210. {
  3211. name: "Gigamacro",
  3212. height: math.unit(5000, "miles")
  3213. },
  3214. {
  3215. name: "Teramacro",
  3216. height: math.unit(100, "parsecs")
  3217. }
  3218. ]
  3219. ))
  3220. characterMakers.push(() => makeCharacter(
  3221. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3222. {
  3223. front: {
  3224. height: math.unit(2, "meter"),
  3225. weight: math.unit(90, "kg"),
  3226. name: "Front",
  3227. image: {
  3228. source: "./media/characters/gael'rathus/front.svg"
  3229. }
  3230. },
  3231. frontAlt: {
  3232. height: math.unit(2, "meter"),
  3233. weight: math.unit(90, "kg"),
  3234. name: "Front (alt)",
  3235. image: {
  3236. source: "./media/characters/gael'rathus/front-alt.svg"
  3237. }
  3238. },
  3239. frontAlt2: {
  3240. height: math.unit(2, "meter"),
  3241. weight: math.unit(90, "kg"),
  3242. name: "Front (alt 2)",
  3243. image: {
  3244. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3245. }
  3246. }
  3247. },
  3248. [
  3249. {
  3250. name: "Normal",
  3251. height: math.unit(9, "feet"),
  3252. default: true
  3253. },
  3254. {
  3255. name: "Large",
  3256. height: math.unit(25, "feet")
  3257. },
  3258. {
  3259. name: "Macro",
  3260. height: math.unit(0.25, "miles")
  3261. },
  3262. {
  3263. name: "Megamacro",
  3264. height: math.unit(10, "miles")
  3265. }
  3266. ]
  3267. ))
  3268. characterMakers.push(() => makeCharacter(
  3269. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3270. {
  3271. side: {
  3272. height: math.unit(2, "meter"),
  3273. weight: math.unit(140, "kg"),
  3274. name: "Side",
  3275. image: {
  3276. source: "./media/characters/sosha/side.svg",
  3277. bottom: 0.042
  3278. }
  3279. },
  3280. },
  3281. [
  3282. {
  3283. name: "Normal",
  3284. height: math.unit(12, "feet"),
  3285. default: true
  3286. }
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3291. {
  3292. side: {
  3293. height: math.unit(5 + 5 / 12, "feet"),
  3294. weight: math.unit(170, "kg"),
  3295. name: "Side",
  3296. image: {
  3297. source: "./media/characters/runnola/side.svg",
  3298. extra: 741 / 448,
  3299. bottom: 0.05
  3300. }
  3301. },
  3302. },
  3303. [
  3304. {
  3305. name: "Small",
  3306. height: math.unit(3, "feet")
  3307. },
  3308. {
  3309. name: "Normal",
  3310. height: math.unit(5 + 5 / 12, "feet"),
  3311. default: true
  3312. },
  3313. {
  3314. name: "Big",
  3315. height: math.unit(10, "feet")
  3316. },
  3317. ]
  3318. ))
  3319. characterMakers.push(() => makeCharacter(
  3320. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3321. {
  3322. front: {
  3323. height: math.unit(2, "meter"),
  3324. weight: math.unit(50, "kg"),
  3325. name: "Front",
  3326. image: {
  3327. source: "./media/characters/kurribird/front.svg",
  3328. bottom: 0.015
  3329. }
  3330. },
  3331. frontAlt: {
  3332. height: math.unit(1.5, "meter"),
  3333. weight: math.unit(50, "kg"),
  3334. name: "Front (Alt)",
  3335. image: {
  3336. source: "./media/characters/kurribird/front-alt.svg",
  3337. extra: 1.45
  3338. }
  3339. },
  3340. },
  3341. [
  3342. {
  3343. name: "Normal",
  3344. height: math.unit(7, "feet")
  3345. },
  3346. {
  3347. name: "Big",
  3348. height: math.unit(12, "feet"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Macro",
  3353. height: math.unit(1500, "feet")
  3354. },
  3355. {
  3356. name: "Megamacro",
  3357. height: math.unit(2, "miles")
  3358. }
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3363. {
  3364. front: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(80, "kg"),
  3367. name: "Front",
  3368. image: {
  3369. source: "./media/characters/elbial/front.svg",
  3370. extra: 1643 / 1556,
  3371. bottom: 60.2 / 1696
  3372. }
  3373. },
  3374. side: {
  3375. height: math.unit(2, "meter"),
  3376. weight: math.unit(80, "kg"),
  3377. name: "Side",
  3378. image: {
  3379. source: "./media/characters/elbial/side.svg",
  3380. extra: 1630 / 1565,
  3381. bottom: 71.5 / 1697
  3382. }
  3383. },
  3384. back: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(80, "kg"),
  3387. name: "Back",
  3388. image: {
  3389. source: "./media/characters/elbial/back.svg",
  3390. extra: 1668 / 1595,
  3391. bottom: 5.6 / 1672
  3392. }
  3393. },
  3394. frontDressed: {
  3395. height: math.unit(2, "meter"),
  3396. weight: math.unit(80, "kg"),
  3397. name: "Front (Dressed)",
  3398. image: {
  3399. source: "./media/characters/elbial/front-dressed.svg",
  3400. extra: 1653 / 1584,
  3401. bottom: 57 / 1708
  3402. }
  3403. },
  3404. genitals: {
  3405. height: math.unit(2 / 3.367, "meter"),
  3406. name: "Genitals",
  3407. image: {
  3408. source: "./media/characters/elbial/genitals.svg"
  3409. }
  3410. },
  3411. },
  3412. [
  3413. {
  3414. name: "Large",
  3415. height: math.unit(100, "feet")
  3416. },
  3417. {
  3418. name: "Macro",
  3419. height: math.unit(500, "feet"),
  3420. default: true
  3421. },
  3422. {
  3423. name: "Megamacro",
  3424. height: math.unit(10, "miles")
  3425. },
  3426. {
  3427. name: "Gigamacro",
  3428. height: math.unit(25000, "miles")
  3429. },
  3430. {
  3431. name: "Full-Size",
  3432. height: math.unit(8000000, "gigaparsecs")
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3438. {
  3439. front: {
  3440. height: math.unit(2, "meter"),
  3441. weight: math.unit(60, "kg"),
  3442. name: "Front",
  3443. image: {
  3444. source: "./media/characters/noah/front.svg"
  3445. }
  3446. },
  3447. talons: {
  3448. height: math.unit(0.315, "meter"),
  3449. name: "Talons",
  3450. image: {
  3451. source: "./media/characters/noah/talons.svg"
  3452. }
  3453. }
  3454. },
  3455. [
  3456. {
  3457. name: "Large",
  3458. height: math.unit(50, "feet")
  3459. },
  3460. {
  3461. name: "Macro",
  3462. height: math.unit(750, "feet"),
  3463. default: true
  3464. },
  3465. {
  3466. name: "Megamacro",
  3467. height: math.unit(50, "miles")
  3468. },
  3469. {
  3470. name: "Gigamacro",
  3471. height: math.unit(100000, "miles")
  3472. },
  3473. {
  3474. name: "Full-Size",
  3475. height: math.unit(3000000000, "miles")
  3476. }
  3477. ]
  3478. ))
  3479. characterMakers.push(() => makeCharacter(
  3480. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3481. {
  3482. front: {
  3483. height: math.unit(2, "meter"),
  3484. weight: math.unit(80, "kg"),
  3485. name: "Front",
  3486. image: {
  3487. source: "./media/characters/natalya/front.svg"
  3488. }
  3489. },
  3490. back: {
  3491. height: math.unit(2, "meter"),
  3492. weight: math.unit(80, "kg"),
  3493. name: "Back",
  3494. image: {
  3495. source: "./media/characters/natalya/back.svg"
  3496. }
  3497. }
  3498. },
  3499. [
  3500. {
  3501. name: "Normal",
  3502. height: math.unit(150, "feet"),
  3503. default: true
  3504. },
  3505. {
  3506. name: "Megamacro",
  3507. height: math.unit(5, "miles")
  3508. },
  3509. {
  3510. name: "Full-Size",
  3511. height: math.unit(600, "kiloparsecs")
  3512. }
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3517. {
  3518. front: {
  3519. height: math.unit(2, "meter"),
  3520. weight: math.unit(50, "kg"),
  3521. name: "Front",
  3522. image: {
  3523. source: "./media/characters/erestrebah/front.svg",
  3524. extra: 1262/1162,
  3525. bottom: 96/1358
  3526. }
  3527. },
  3528. back: {
  3529. height: math.unit(2, "meter"),
  3530. weight: math.unit(50, "kg"),
  3531. name: "Back",
  3532. image: {
  3533. source: "./media/characters/erestrebah/back.svg",
  3534. extra: 1257/1139,
  3535. bottom: 13/1270
  3536. }
  3537. },
  3538. wing: {
  3539. height: math.unit(2, "meter"),
  3540. weight: math.unit(50, "kg"),
  3541. name: "Wing",
  3542. image: {
  3543. source: "./media/characters/erestrebah/wing.svg",
  3544. extra: 1262/1162,
  3545. bottom: 96/1358
  3546. }
  3547. },
  3548. mouth: {
  3549. height: math.unit(0.39, "feet"),
  3550. name: "Mouth",
  3551. image: {
  3552. source: "./media/characters/erestrebah/mouth.svg"
  3553. }
  3554. }
  3555. },
  3556. [
  3557. {
  3558. name: "Normal",
  3559. height: math.unit(10, "feet")
  3560. },
  3561. {
  3562. name: "Large",
  3563. height: math.unit(50, "feet"),
  3564. default: true
  3565. },
  3566. {
  3567. name: "Macro",
  3568. height: math.unit(300, "feet")
  3569. },
  3570. {
  3571. name: "Macro+",
  3572. height: math.unit(750, "feet")
  3573. },
  3574. {
  3575. name: "Megamacro",
  3576. height: math.unit(3, "miles")
  3577. }
  3578. ]
  3579. ))
  3580. characterMakers.push(() => makeCharacter(
  3581. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3582. {
  3583. front: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(80, "kg"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/jennifer/front.svg",
  3589. bottom: 0.11,
  3590. extra: 1.16
  3591. }
  3592. },
  3593. frontAlt: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(80, "kg"),
  3596. name: "Front (Alt)",
  3597. image: {
  3598. source: "./media/characters/jennifer/front-alt.svg"
  3599. }
  3600. }
  3601. },
  3602. [
  3603. {
  3604. name: "Canon Height",
  3605. height: math.unit(120, "feet"),
  3606. default: true
  3607. },
  3608. {
  3609. name: "Macro+",
  3610. height: math.unit(300, "feet")
  3611. },
  3612. {
  3613. name: "Megamacro",
  3614. height: math.unit(20000, "feet")
  3615. }
  3616. ]
  3617. ))
  3618. characterMakers.push(() => makeCharacter(
  3619. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3620. {
  3621. front: {
  3622. height: math.unit(2, "meter"),
  3623. weight: math.unit(50, "kg"),
  3624. name: "Front",
  3625. image: {
  3626. source: "./media/characters/kalista/front.svg",
  3627. extra: 1947 / 1700,
  3628. bottom: 76.6 / 1412.98
  3629. }
  3630. },
  3631. back: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(50, "kg"),
  3634. name: "Back",
  3635. image: {
  3636. source: "./media/characters/kalista/back.svg",
  3637. extra: 1366 / 1156,
  3638. bottom: 33.9 / 1362.78
  3639. }
  3640. }
  3641. },
  3642. [
  3643. {
  3644. name: "Uncomfortably Small",
  3645. height: math.unit(10, "feet")
  3646. },
  3647. {
  3648. name: "Small",
  3649. height: math.unit(30, "feet")
  3650. },
  3651. {
  3652. name: "Macro",
  3653. height: math.unit(100, "feet"),
  3654. default: true
  3655. },
  3656. {
  3657. name: "Macro+",
  3658. height: math.unit(2000, "feet")
  3659. },
  3660. {
  3661. name: "True Form",
  3662. height: math.unit(8924, "miles")
  3663. }
  3664. ]
  3665. ))
  3666. characterMakers.push(() => makeCharacter(
  3667. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3668. {
  3669. front: {
  3670. height: math.unit(2, "meter"),
  3671. weight: math.unit(120, "kg"),
  3672. name: "Front",
  3673. image: {
  3674. source: "./media/characters/ggv/front.svg"
  3675. }
  3676. },
  3677. side: {
  3678. height: math.unit(2, "meter"),
  3679. weight: math.unit(120, "kg"),
  3680. name: "Side",
  3681. image: {
  3682. source: "./media/characters/ggv/side.svg"
  3683. }
  3684. }
  3685. },
  3686. [
  3687. {
  3688. name: "Extremely Puny",
  3689. height: math.unit(9 + 5 / 12, "feet")
  3690. },
  3691. {
  3692. name: "Horribly Small",
  3693. height: math.unit(47.7, "miles"),
  3694. default: true
  3695. },
  3696. {
  3697. name: "Reasonably Sized",
  3698. height: math.unit(25000, "parsecs")
  3699. },
  3700. {
  3701. name: "Slightly Uncompressed",
  3702. height: math.unit(7.77e31, "parsecs")
  3703. },
  3704. {
  3705. name: "Omniversal",
  3706. height: math.unit(1e300, "meters")
  3707. },
  3708. ]
  3709. ))
  3710. characterMakers.push(() => makeCharacter(
  3711. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3712. {
  3713. front: {
  3714. height: math.unit(2, "meter"),
  3715. weight: math.unit(75, "lb"),
  3716. name: "Front",
  3717. image: {
  3718. source: "./media/characters/napalm/front.svg"
  3719. }
  3720. },
  3721. back: {
  3722. height: math.unit(2, "meter"),
  3723. weight: math.unit(75, "lb"),
  3724. name: "Back",
  3725. image: {
  3726. source: "./media/characters/napalm/back.svg"
  3727. }
  3728. }
  3729. },
  3730. [
  3731. {
  3732. name: "Standard",
  3733. height: math.unit(55, "feet"),
  3734. default: true
  3735. }
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3740. {
  3741. front: {
  3742. height: math.unit(7 + 5 / 6, "feet"),
  3743. weight: math.unit(325, "lb"),
  3744. name: "Front",
  3745. image: {
  3746. source: "./media/characters/asana/front.svg",
  3747. extra: 1133 / 1060,
  3748. bottom: 15.2 / 1148.6
  3749. }
  3750. },
  3751. back: {
  3752. height: math.unit(7 + 5 / 6, "feet"),
  3753. weight: math.unit(325, "lb"),
  3754. name: "Back",
  3755. image: {
  3756. source: "./media/characters/asana/back.svg",
  3757. extra: 1114 / 1043,
  3758. bottom: 5 / 1120
  3759. }
  3760. },
  3761. dressedDark: {
  3762. height: math.unit(7 + 5 / 6, "feet"),
  3763. weight: math.unit(325, "lb"),
  3764. name: "Dressed (Dark)",
  3765. image: {
  3766. source: "./media/characters/asana/dressed-dark.svg",
  3767. extra: 1133 / 1060,
  3768. bottom: 15.2 / 1148.6
  3769. }
  3770. },
  3771. dressedLight: {
  3772. height: math.unit(7 + 5 / 6, "feet"),
  3773. weight: math.unit(325, "lb"),
  3774. name: "Dressed (Light)",
  3775. image: {
  3776. source: "./media/characters/asana/dressed-light.svg",
  3777. extra: 1133 / 1060,
  3778. bottom: 15.2 / 1148.6
  3779. }
  3780. },
  3781. },
  3782. [
  3783. {
  3784. name: "Standard",
  3785. height: math.unit(7 + 5 / 6, "feet"),
  3786. default: true
  3787. },
  3788. {
  3789. name: "Large",
  3790. height: math.unit(10, "meters")
  3791. },
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(2500, "meters")
  3795. },
  3796. {
  3797. name: "Megamacro",
  3798. height: math.unit(5e6, "meters")
  3799. },
  3800. {
  3801. name: "Examacro",
  3802. height: math.unit(5e12, "lightyears")
  3803. },
  3804. {
  3805. name: "Max Size",
  3806. height: math.unit(1e31, "lightyears")
  3807. }
  3808. ]
  3809. ))
  3810. characterMakers.push(() => makeCharacter(
  3811. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3812. {
  3813. front: {
  3814. height: math.unit(2, "meter"),
  3815. weight: math.unit(60, "kg"),
  3816. name: "Front",
  3817. image: {
  3818. source: "./media/characters/ebony/front.svg",
  3819. bottom: 0.03,
  3820. extra: 1045 / 810 + 0.03
  3821. }
  3822. },
  3823. side: {
  3824. height: math.unit(2, "meter"),
  3825. weight: math.unit(60, "kg"),
  3826. name: "Side",
  3827. image: {
  3828. source: "./media/characters/ebony/side.svg",
  3829. bottom: 0.03,
  3830. extra: 1045 / 810 + 0.03
  3831. }
  3832. },
  3833. back: {
  3834. height: math.unit(2, "meter"),
  3835. weight: math.unit(60, "kg"),
  3836. name: "Back",
  3837. image: {
  3838. source: "./media/characters/ebony/back.svg",
  3839. bottom: 0.01,
  3840. extra: 1045 / 810 + 0.01
  3841. }
  3842. },
  3843. },
  3844. [
  3845. // TODO check why I did this lol
  3846. {
  3847. name: "Standard",
  3848. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3849. default: true
  3850. },
  3851. {
  3852. name: "Macro",
  3853. height: math.unit(200, "feet")
  3854. },
  3855. {
  3856. name: "Gigamacro",
  3857. height: math.unit(13000, "km")
  3858. }
  3859. ]
  3860. ))
  3861. characterMakers.push(() => makeCharacter(
  3862. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3863. {
  3864. front: {
  3865. height: math.unit(6, "feet"),
  3866. weight: math.unit(175, "lb"),
  3867. name: "Front",
  3868. image: {
  3869. source: "./media/characters/mountain/front.svg",
  3870. extra: 972 / 955,
  3871. bottom: 64 / 1036.6
  3872. }
  3873. },
  3874. back: {
  3875. height: math.unit(6, "feet"),
  3876. weight: math.unit(175, "lb"),
  3877. name: "Back",
  3878. image: {
  3879. source: "./media/characters/mountain/back.svg",
  3880. extra: 970 / 950,
  3881. bottom: 28.25 / 999
  3882. }
  3883. },
  3884. },
  3885. [
  3886. {
  3887. name: "Large",
  3888. height: math.unit(20, "meters")
  3889. },
  3890. {
  3891. name: "Macro",
  3892. height: math.unit(300, "meters")
  3893. },
  3894. {
  3895. name: "Gigamacro",
  3896. height: math.unit(10000, "km"),
  3897. default: true
  3898. },
  3899. {
  3900. name: "Examacro",
  3901. height: math.unit(10e9, "lightyears")
  3902. }
  3903. ]
  3904. ))
  3905. characterMakers.push(() => makeCharacter(
  3906. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3907. {
  3908. front: {
  3909. height: math.unit(8, "feet"),
  3910. weight: math.unit(500, "lb"),
  3911. name: "Front",
  3912. image: {
  3913. source: "./media/characters/rick/front.svg"
  3914. }
  3915. }
  3916. },
  3917. [
  3918. {
  3919. name: "Normal",
  3920. height: math.unit(8, "feet"),
  3921. default: true
  3922. },
  3923. {
  3924. name: "Macro",
  3925. height: math.unit(5, "km")
  3926. }
  3927. ]
  3928. ))
  3929. characterMakers.push(() => makeCharacter(
  3930. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3931. {
  3932. front: {
  3933. height: math.unit(8, "feet"),
  3934. weight: math.unit(120, "lb"),
  3935. name: "Front",
  3936. image: {
  3937. source: "./media/characters/ona/front.svg"
  3938. }
  3939. },
  3940. frontAlt: {
  3941. height: math.unit(8, "feet"),
  3942. weight: math.unit(120, "lb"),
  3943. name: "Front (Alt)",
  3944. image: {
  3945. source: "./media/characters/ona/front-alt.svg"
  3946. }
  3947. },
  3948. back: {
  3949. height: math.unit(8, "feet"),
  3950. weight: math.unit(120, "lb"),
  3951. name: "Back",
  3952. image: {
  3953. source: "./media/characters/ona/back.svg"
  3954. }
  3955. },
  3956. foot: {
  3957. height: math.unit(1.1, "feet"),
  3958. name: "Foot",
  3959. image: {
  3960. source: "./media/characters/ona/foot.svg"
  3961. }
  3962. }
  3963. },
  3964. [
  3965. {
  3966. name: "Megamacro",
  3967. height: math.unit(70, "km"),
  3968. default: true
  3969. },
  3970. {
  3971. name: "Gigamacro",
  3972. height: math.unit(681818, "miles")
  3973. },
  3974. {
  3975. name: "Examacro",
  3976. height: math.unit(3800000, "lightyears")
  3977. },
  3978. ]
  3979. ))
  3980. characterMakers.push(() => makeCharacter(
  3981. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3982. {
  3983. front: {
  3984. height: math.unit(12, "feet"),
  3985. weight: math.unit(3000, "lb"),
  3986. name: "Front",
  3987. image: {
  3988. source: "./media/characters/mech/front.svg",
  3989. extra: 2900 / 2770,
  3990. bottom: 110 / 3010
  3991. }
  3992. },
  3993. back: {
  3994. height: math.unit(12, "feet"),
  3995. weight: math.unit(3000, "lb"),
  3996. name: "Back",
  3997. image: {
  3998. source: "./media/characters/mech/back.svg",
  3999. extra: 3011 / 2890,
  4000. bottom: 94 / 3105
  4001. }
  4002. },
  4003. maw: {
  4004. height: math.unit(3.07, "feet"),
  4005. name: "Maw",
  4006. image: {
  4007. source: "./media/characters/mech/maw.svg"
  4008. }
  4009. },
  4010. head: {
  4011. height: math.unit(2.82, "feet"),
  4012. name: "Head",
  4013. image: {
  4014. source: "./media/characters/mech/head.svg"
  4015. }
  4016. },
  4017. dick: {
  4018. height: math.unit(1.43, "feet"),
  4019. name: "Dick",
  4020. image: {
  4021. source: "./media/characters/mech/dick.svg"
  4022. }
  4023. },
  4024. },
  4025. [
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(12, "feet")
  4029. },
  4030. {
  4031. name: "Macro",
  4032. height: math.unit(300, "feet"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Macro+",
  4037. height: math.unit(1500, "feet")
  4038. },
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4043. {
  4044. front: {
  4045. height: math.unit(1.3, "meter"),
  4046. weight: math.unit(30, "kg"),
  4047. name: "Front",
  4048. image: {
  4049. source: "./media/characters/gregory/front.svg",
  4050. }
  4051. }
  4052. },
  4053. [
  4054. {
  4055. name: "Normal",
  4056. height: math.unit(1.3, "meter"),
  4057. default: true
  4058. },
  4059. {
  4060. name: "Macro",
  4061. height: math.unit(20, "meter")
  4062. }
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4067. {
  4068. front: {
  4069. height: math.unit(2.8, "meter"),
  4070. weight: math.unit(200, "kg"),
  4071. name: "Front",
  4072. image: {
  4073. source: "./media/characters/elory/front.svg",
  4074. }
  4075. }
  4076. },
  4077. [
  4078. {
  4079. name: "Normal",
  4080. height: math.unit(2.8, "meter"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Macro",
  4085. height: math.unit(38, "meter")
  4086. }
  4087. ]
  4088. ))
  4089. characterMakers.push(() => makeCharacter(
  4090. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4091. {
  4092. front: {
  4093. height: math.unit(470, "feet"),
  4094. weight: math.unit(924, "tons"),
  4095. name: "Front",
  4096. image: {
  4097. source: "./media/characters/angelpatamon/front.svg",
  4098. }
  4099. }
  4100. },
  4101. [
  4102. {
  4103. name: "Normal",
  4104. height: math.unit(470, "feet"),
  4105. default: true
  4106. },
  4107. {
  4108. name: "Deity Size I",
  4109. height: math.unit(28651.2, "km")
  4110. },
  4111. {
  4112. name: "Deity Size II",
  4113. height: math.unit(171907.2, "km")
  4114. }
  4115. ]
  4116. ))
  4117. characterMakers.push(() => makeCharacter(
  4118. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4119. {
  4120. side: {
  4121. height: math.unit(7.2, "meter"),
  4122. weight: math.unit(8.2, "tons"),
  4123. name: "Side",
  4124. image: {
  4125. source: "./media/characters/cryae/side.svg",
  4126. extra: 3500 / 1500
  4127. }
  4128. }
  4129. },
  4130. [
  4131. {
  4132. name: "Normal",
  4133. height: math.unit(7.2, "meter"),
  4134. default: true
  4135. }
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4140. {
  4141. front: {
  4142. height: math.unit(6, "feet"),
  4143. weight: math.unit(175, "lb"),
  4144. name: "Front",
  4145. image: {
  4146. source: "./media/characters/xera/front.svg",
  4147. extra: 2377 / 1972,
  4148. bottom: 75.5 / 2452
  4149. }
  4150. },
  4151. side: {
  4152. height: math.unit(6, "feet"),
  4153. weight: math.unit(175, "lb"),
  4154. name: "Side",
  4155. image: {
  4156. source: "./media/characters/xera/side.svg",
  4157. extra: 2345 / 2019,
  4158. bottom: 39.7 / 2384
  4159. }
  4160. },
  4161. back: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(175, "lb"),
  4164. name: "Back",
  4165. image: {
  4166. source: "./media/characters/xera/back.svg",
  4167. extra: 2095 / 1984,
  4168. bottom: 67 / 2166
  4169. }
  4170. },
  4171. },
  4172. [
  4173. {
  4174. name: "Small",
  4175. height: math.unit(10, "feet")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(500, "meters"),
  4180. default: true
  4181. },
  4182. {
  4183. name: "Macro+",
  4184. height: math.unit(10, "km")
  4185. },
  4186. {
  4187. name: "Gigamacro",
  4188. height: math.unit(25000, "km")
  4189. },
  4190. {
  4191. name: "Teramacro",
  4192. height: math.unit(3e6, "km")
  4193. }
  4194. ]
  4195. ))
  4196. characterMakers.push(() => makeCharacter(
  4197. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4198. {
  4199. front: {
  4200. height: math.unit(6, "feet"),
  4201. weight: math.unit(175, "lb"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/nebula/front.svg",
  4205. extra: 2566 / 2362,
  4206. bottom: 81 / 2644
  4207. }
  4208. }
  4209. },
  4210. [
  4211. {
  4212. name: "Small",
  4213. height: math.unit(4.5, "meters")
  4214. },
  4215. {
  4216. name: "Macro",
  4217. height: math.unit(1500, "meters"),
  4218. default: true
  4219. },
  4220. {
  4221. name: "Megamacro",
  4222. height: math.unit(150, "km")
  4223. },
  4224. {
  4225. name: "Gigamacro",
  4226. height: math.unit(27000, "km")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4232. {
  4233. front: {
  4234. height: math.unit(6, "feet"),
  4235. weight: math.unit(225, "lb"),
  4236. name: "Front",
  4237. image: {
  4238. source: "./media/characters/abysgar/front.svg"
  4239. }
  4240. }
  4241. },
  4242. [
  4243. {
  4244. name: "Small",
  4245. height: math.unit(4.5, "meters")
  4246. },
  4247. {
  4248. name: "Macro",
  4249. height: math.unit(1250, "meters"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "Megamacro",
  4254. height: math.unit(125, "km")
  4255. },
  4256. {
  4257. name: "Gigamacro",
  4258. height: math.unit(26000, "km")
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4264. {
  4265. front: {
  4266. height: math.unit(6, "feet"),
  4267. weight: math.unit(180, "lb"),
  4268. name: "Front",
  4269. image: {
  4270. source: "./media/characters/yakuz/front.svg"
  4271. }
  4272. }
  4273. },
  4274. [
  4275. {
  4276. name: "Small",
  4277. height: math.unit(5, "meters")
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(1500, "meters"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(200, "km")
  4287. },
  4288. {
  4289. name: "Gigamacro",
  4290. height: math.unit(100000, "km")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4296. {
  4297. front: {
  4298. height: math.unit(6, "feet"),
  4299. weight: math.unit(175, "lb"),
  4300. name: "Front",
  4301. image: {
  4302. source: "./media/characters/mirova/front.svg",
  4303. extra: 3334 / 3071,
  4304. bottom: 42 / 3375.6
  4305. }
  4306. }
  4307. },
  4308. [
  4309. {
  4310. name: "Small",
  4311. height: math.unit(5, "meters")
  4312. },
  4313. {
  4314. name: "Macro",
  4315. height: math.unit(900, "meters"),
  4316. default: true
  4317. },
  4318. {
  4319. name: "Megamacro",
  4320. height: math.unit(135, "km")
  4321. },
  4322. {
  4323. name: "Gigamacro",
  4324. height: math.unit(20000, "km")
  4325. }
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4330. {
  4331. side: {
  4332. height: math.unit(28.35, "feet"),
  4333. weight: math.unit(99.75, "tons"),
  4334. name: "Side",
  4335. image: {
  4336. source: "./media/characters/asana-mech/side.svg",
  4337. extra: 923 / 699,
  4338. bottom: 50 / 975
  4339. }
  4340. },
  4341. chaingun: {
  4342. height: math.unit(7, "feet"),
  4343. weight: math.unit(2400, "lb"),
  4344. name: "Chaingun",
  4345. image: {
  4346. source: "./media/characters/asana-mech/chaingun.svg"
  4347. }
  4348. },
  4349. laser: {
  4350. height: math.unit(7.12, "feet"),
  4351. weight: math.unit(2000, "lb"),
  4352. name: "Laser",
  4353. image: {
  4354. source: "./media/characters/asana-mech/laser.svg"
  4355. }
  4356. },
  4357. },
  4358. [
  4359. {
  4360. name: "Normal",
  4361. height: math.unit(28.35, "feet"),
  4362. default: true
  4363. },
  4364. {
  4365. name: "Macro",
  4366. height: math.unit(2500, "feet")
  4367. },
  4368. {
  4369. name: "Megamacro",
  4370. height: math.unit(25, "miles")
  4371. },
  4372. {
  4373. name: "Examacro",
  4374. height: math.unit(6e8, "lightyears")
  4375. },
  4376. ]
  4377. ))
  4378. characterMakers.push(() => makeCharacter(
  4379. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4380. {
  4381. front: {
  4382. height: math.unit(5, "meters"),
  4383. weight: math.unit(1000, "kg"),
  4384. name: "Front",
  4385. image: {
  4386. source: "./media/characters/asche/front.svg",
  4387. extra: 1258 / 1190,
  4388. bottom: 47 / 1305
  4389. }
  4390. },
  4391. frontUnderwear: {
  4392. height: math.unit(5, "meters"),
  4393. weight: math.unit(1000, "kg"),
  4394. name: "Front (Underwear)",
  4395. image: {
  4396. source: "./media/characters/asche/front-underwear.svg",
  4397. extra: 1258 / 1190,
  4398. bottom: 47 / 1305
  4399. }
  4400. },
  4401. frontDressed: {
  4402. height: math.unit(5, "meters"),
  4403. weight: math.unit(1000, "kg"),
  4404. name: "Front (Dressed)",
  4405. image: {
  4406. source: "./media/characters/asche/front-dressed.svg",
  4407. extra: 1258 / 1190,
  4408. bottom: 47 / 1305
  4409. }
  4410. },
  4411. frontArmor: {
  4412. height: math.unit(5, "meters"),
  4413. weight: math.unit(1000, "kg"),
  4414. name: "Front (Armored)",
  4415. image: {
  4416. source: "./media/characters/asche/front-armored.svg",
  4417. extra: 1374 / 1308,
  4418. bottom: 23 / 1397
  4419. }
  4420. },
  4421. mp724: {
  4422. height: math.unit(0.96, "meters"),
  4423. weight: math.unit(38, "kg"),
  4424. name: "H&K MP724",
  4425. image: {
  4426. source: "./media/characters/asche/h&k-mp724.svg"
  4427. }
  4428. },
  4429. side: {
  4430. height: math.unit(5, "meters"),
  4431. weight: math.unit(1000, "kg"),
  4432. name: "Side",
  4433. image: {
  4434. source: "./media/characters/asche/side.svg",
  4435. extra: 1717 / 1609,
  4436. bottom: 0.005
  4437. }
  4438. },
  4439. back: {
  4440. height: math.unit(5, "meters"),
  4441. weight: math.unit(1000, "kg"),
  4442. name: "Back",
  4443. image: {
  4444. source: "./media/characters/asche/back.svg",
  4445. extra: 1570 / 1501
  4446. }
  4447. },
  4448. },
  4449. [
  4450. {
  4451. name: "DEFCON 5",
  4452. height: math.unit(5, "meters")
  4453. },
  4454. {
  4455. name: "DEFCON 4",
  4456. height: math.unit(500, "meters"),
  4457. default: true
  4458. },
  4459. {
  4460. name: "DEFCON 3",
  4461. height: math.unit(5, "km")
  4462. },
  4463. {
  4464. name: "DEFCON 2",
  4465. height: math.unit(500, "km")
  4466. },
  4467. {
  4468. name: "DEFCON 1",
  4469. height: math.unit(500000, "km")
  4470. },
  4471. {
  4472. name: "DEFCON 0",
  4473. height: math.unit(3, "gigaparsecs")
  4474. },
  4475. ]
  4476. ))
  4477. characterMakers.push(() => makeCharacter(
  4478. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4479. {
  4480. front: {
  4481. height: math.unit(2, "meters"),
  4482. weight: math.unit(76, "kg"),
  4483. name: "Front",
  4484. image: {
  4485. source: "./media/characters/gale/front.svg"
  4486. }
  4487. },
  4488. frontAlt1: {
  4489. height: math.unit(2, "meters"),
  4490. weight: math.unit(76, "kg"),
  4491. name: "Front (Alt 1)",
  4492. image: {
  4493. source: "./media/characters/gale/front-alt-1.svg"
  4494. }
  4495. },
  4496. frontAlt2: {
  4497. height: math.unit(2, "meters"),
  4498. weight: math.unit(76, "kg"),
  4499. name: "Front (Alt 2)",
  4500. image: {
  4501. source: "./media/characters/gale/front-alt-2.svg"
  4502. }
  4503. },
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(7, "feet")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(150, "feet"),
  4513. default: true
  4514. },
  4515. {
  4516. name: "Macro+",
  4517. height: math.unit(300, "feet")
  4518. },
  4519. ]
  4520. ))
  4521. characterMakers.push(() => makeCharacter(
  4522. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4523. {
  4524. front: {
  4525. height: math.unit(5 + 10/12, "feet"),
  4526. weight: math.unit(67, "kg"),
  4527. name: "Front",
  4528. image: {
  4529. source: "./media/characters/draylen/front.svg",
  4530. extra: 832/777,
  4531. bottom: 85/917
  4532. }
  4533. }
  4534. },
  4535. [
  4536. {
  4537. name: "Normal",
  4538. height: math.unit(5 + 10/12, "feet")
  4539. },
  4540. {
  4541. name: "Macro",
  4542. height: math.unit(150, "feet"),
  4543. default: true
  4544. }
  4545. ]
  4546. ))
  4547. characterMakers.push(() => makeCharacter(
  4548. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4549. {
  4550. front: {
  4551. height: math.unit(7 + 9 / 12, "feet"),
  4552. weight: math.unit(379, "lbs"),
  4553. name: "Front",
  4554. image: {
  4555. source: "./media/characters/chez/front.svg"
  4556. }
  4557. },
  4558. side: {
  4559. height: math.unit(7 + 9 / 12, "feet"),
  4560. weight: math.unit(379, "lbs"),
  4561. name: "Side",
  4562. image: {
  4563. source: "./media/characters/chez/side.svg"
  4564. }
  4565. }
  4566. },
  4567. [
  4568. {
  4569. name: "Normal",
  4570. height: math.unit(7 + 9 / 12, "feet"),
  4571. default: true
  4572. },
  4573. {
  4574. name: "God King",
  4575. height: math.unit(9750000, "meters")
  4576. }
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(6, "feet"),
  4584. weight: math.unit(275, "lbs"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/kaylum/front.svg",
  4588. bottom: 0.01,
  4589. extra: 1166 / 1031
  4590. }
  4591. },
  4592. frontWingless: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(275, "lbs"),
  4595. name: "Front (Wingless)",
  4596. image: {
  4597. source: "./media/characters/kaylum/front-wingless.svg",
  4598. bottom: 0.01,
  4599. extra: 1117 / 1031
  4600. }
  4601. }
  4602. },
  4603. [
  4604. {
  4605. name: "Normal",
  4606. height: math.unit(3.05, "meters")
  4607. },
  4608. {
  4609. name: "Master",
  4610. height: math.unit(5.5, "meters")
  4611. },
  4612. {
  4613. name: "Rampage",
  4614. height: math.unit(19, "meters")
  4615. },
  4616. {
  4617. name: "Macro Lite",
  4618. height: math.unit(37, "meters")
  4619. },
  4620. {
  4621. name: "Hyper Predator",
  4622. height: math.unit(61, "meters")
  4623. },
  4624. {
  4625. name: "Macro",
  4626. height: math.unit(138, "meters"),
  4627. default: true
  4628. }
  4629. ]
  4630. ))
  4631. characterMakers.push(() => makeCharacter(
  4632. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4633. {
  4634. front: {
  4635. height: math.unit(6, "feet"),
  4636. weight: math.unit(150, "lbs"),
  4637. name: "Front",
  4638. image: {
  4639. source: "./media/characters/geta/front.svg"
  4640. }
  4641. }
  4642. },
  4643. [
  4644. {
  4645. name: "Micro",
  4646. height: math.unit(3, "inches"),
  4647. default: true
  4648. },
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(5 + 5 / 12, "feet")
  4652. }
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4657. {
  4658. front: {
  4659. height: math.unit(6, "feet"),
  4660. weight: math.unit(300, "lbs"),
  4661. name: "Front",
  4662. image: {
  4663. source: "./media/characters/tyrnn/front.svg"
  4664. }
  4665. }
  4666. },
  4667. [
  4668. {
  4669. name: "Main Height",
  4670. height: math.unit(355, "feet"),
  4671. default: true
  4672. },
  4673. {
  4674. name: "Fave. Height",
  4675. height: math.unit(2400, "feet")
  4676. }
  4677. ]
  4678. ))
  4679. characterMakers.push(() => makeCharacter(
  4680. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4681. {
  4682. front: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(300, "lbs"),
  4685. name: "Front",
  4686. image: {
  4687. source: "./media/characters/appledectomy/front.svg"
  4688. }
  4689. }
  4690. },
  4691. [
  4692. {
  4693. name: "Macro",
  4694. height: math.unit(2500, "feet")
  4695. },
  4696. {
  4697. name: "Megamacro",
  4698. height: math.unit(50, "miles"),
  4699. default: true
  4700. },
  4701. {
  4702. name: "Gigamacro",
  4703. height: math.unit(5000, "miles")
  4704. },
  4705. {
  4706. name: "Teramacro",
  4707. height: math.unit(250000, "miles")
  4708. },
  4709. ]
  4710. ))
  4711. characterMakers.push(() => makeCharacter(
  4712. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4713. {
  4714. front: {
  4715. height: math.unit(6, "feet"),
  4716. weight: math.unit(200, "lbs"),
  4717. name: "Front",
  4718. image: {
  4719. source: "./media/characters/vulpes/front.svg",
  4720. extra: 573 / 543,
  4721. bottom: 0.033
  4722. }
  4723. },
  4724. side: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(200, "lbs"),
  4727. name: "Side",
  4728. image: {
  4729. source: "./media/characters/vulpes/side.svg",
  4730. extra: 577 / 549,
  4731. bottom: 11 / 588
  4732. }
  4733. },
  4734. back: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(200, "lbs"),
  4737. name: "Back",
  4738. image: {
  4739. source: "./media/characters/vulpes/back.svg",
  4740. extra: 573 / 549,
  4741. bottom: 20 / 593
  4742. }
  4743. },
  4744. feet: {
  4745. height: math.unit(1.276, "feet"),
  4746. name: "Feet",
  4747. image: {
  4748. source: "./media/characters/vulpes/feet.svg"
  4749. }
  4750. },
  4751. maw: {
  4752. height: math.unit(1.18, "feet"),
  4753. name: "Maw",
  4754. image: {
  4755. source: "./media/characters/vulpes/maw.svg"
  4756. }
  4757. },
  4758. },
  4759. [
  4760. {
  4761. name: "Micro",
  4762. height: math.unit(2, "inches")
  4763. },
  4764. {
  4765. name: "Normal",
  4766. height: math.unit(6.3, "feet")
  4767. },
  4768. {
  4769. name: "Macro",
  4770. height: math.unit(850, "feet")
  4771. },
  4772. {
  4773. name: "Megamacro",
  4774. height: math.unit(7500, "feet"),
  4775. default: true
  4776. },
  4777. {
  4778. name: "Gigamacro",
  4779. height: math.unit(570000, "miles")
  4780. }
  4781. ]
  4782. ))
  4783. characterMakers.push(() => makeCharacter(
  4784. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4785. {
  4786. front: {
  4787. height: math.unit(6, "feet"),
  4788. weight: math.unit(210, "lbs"),
  4789. name: "Front",
  4790. image: {
  4791. source: "./media/characters/rain-fallen/front.svg"
  4792. }
  4793. },
  4794. side: {
  4795. height: math.unit(6, "feet"),
  4796. weight: math.unit(210, "lbs"),
  4797. name: "Side",
  4798. image: {
  4799. source: "./media/characters/rain-fallen/side.svg"
  4800. }
  4801. },
  4802. back: {
  4803. height: math.unit(6, "feet"),
  4804. weight: math.unit(210, "lbs"),
  4805. name: "Back",
  4806. image: {
  4807. source: "./media/characters/rain-fallen/back.svg"
  4808. }
  4809. },
  4810. feral: {
  4811. height: math.unit(9, "feet"),
  4812. weight: math.unit(700, "lbs"),
  4813. name: "Feral",
  4814. image: {
  4815. source: "./media/characters/rain-fallen/feral.svg"
  4816. }
  4817. },
  4818. },
  4819. [
  4820. {
  4821. name: "Meddling with Mortals",
  4822. height: math.unit(8 + 8/12, "feet")
  4823. },
  4824. {
  4825. name: "Normal",
  4826. height: math.unit(5, "meter")
  4827. },
  4828. {
  4829. name: "Macro",
  4830. height: math.unit(150, "meter"),
  4831. default: true
  4832. },
  4833. {
  4834. name: "Megamacro",
  4835. height: math.unit(278e6, "meter")
  4836. },
  4837. {
  4838. name: "Gigamacro",
  4839. height: math.unit(2e9, "meter")
  4840. },
  4841. {
  4842. name: "Teramacro",
  4843. height: math.unit(8e12, "meter")
  4844. },
  4845. {
  4846. name: "Devourer",
  4847. height: math.unit(14, "zettameters")
  4848. },
  4849. {
  4850. name: "Scarlet King",
  4851. height: math.unit(18, "yottameters")
  4852. },
  4853. {
  4854. name: "Void",
  4855. height: math.unit(1e88, "yottameters")
  4856. }
  4857. ]
  4858. ))
  4859. characterMakers.push(() => makeCharacter(
  4860. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4861. {
  4862. standing: {
  4863. height: math.unit(6, "feet"),
  4864. weight: math.unit(180, "lbs"),
  4865. name: "Standing",
  4866. image: {
  4867. source: "./media/characters/zaakira/standing.svg",
  4868. extra: 1599/1504,
  4869. bottom: 39/1638
  4870. }
  4871. },
  4872. laying: {
  4873. height: math.unit(3, "feet"),
  4874. weight: math.unit(180, "lbs"),
  4875. name: "Laying",
  4876. image: {
  4877. source: "./media/characters/zaakira/laying.svg"
  4878. }
  4879. },
  4880. },
  4881. [
  4882. {
  4883. name: "Normal",
  4884. height: math.unit(12, "feet")
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(279, "feet"),
  4889. default: true
  4890. }
  4891. ]
  4892. ))
  4893. characterMakers.push(() => makeCharacter(
  4894. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4895. {
  4896. femSfw: {
  4897. height: math.unit(8, "feet"),
  4898. weight: math.unit(350, "lb"),
  4899. name: "Fem",
  4900. image: {
  4901. source: "./media/characters/sigvald/fem-sfw.svg",
  4902. extra: 182 / 164,
  4903. bottom: 8.7 / 190.5
  4904. }
  4905. },
  4906. femNsfw: {
  4907. height: math.unit(8, "feet"),
  4908. weight: math.unit(350, "lb"),
  4909. name: "Fem (NSFW)",
  4910. image: {
  4911. source: "./media/characters/sigvald/fem-nsfw.svg",
  4912. extra: 182 / 164,
  4913. bottom: 8.7 / 190.5
  4914. }
  4915. },
  4916. maleNsfw: {
  4917. height: math.unit(8, "feet"),
  4918. weight: math.unit(350, "lb"),
  4919. name: "Male (NSFW)",
  4920. image: {
  4921. source: "./media/characters/sigvald/male-nsfw.svg",
  4922. extra: 182 / 164,
  4923. bottom: 8.7 / 190.5
  4924. }
  4925. },
  4926. hermNsfw: {
  4927. height: math.unit(8, "feet"),
  4928. weight: math.unit(350, "lb"),
  4929. name: "Herm (NSFW)",
  4930. image: {
  4931. source: "./media/characters/sigvald/herm-nsfw.svg",
  4932. extra: 182 / 164,
  4933. bottom: 8.7 / 190.5
  4934. }
  4935. },
  4936. dick: {
  4937. height: math.unit(2.36, "feet"),
  4938. name: "Dick",
  4939. image: {
  4940. source: "./media/characters/sigvald/dick.svg"
  4941. }
  4942. },
  4943. eye: {
  4944. height: math.unit(0.31, "feet"),
  4945. name: "Eye",
  4946. image: {
  4947. source: "./media/characters/sigvald/eye.svg"
  4948. }
  4949. },
  4950. mouth: {
  4951. height: math.unit(0.92, "feet"),
  4952. name: "Mouth",
  4953. image: {
  4954. source: "./media/characters/sigvald/mouth.svg"
  4955. }
  4956. },
  4957. paws: {
  4958. height: math.unit(2.2, "feet"),
  4959. name: "Paws",
  4960. image: {
  4961. source: "./media/characters/sigvald/paws.svg"
  4962. }
  4963. }
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(8, "feet")
  4969. },
  4970. {
  4971. name: "Large",
  4972. height: math.unit(12, "feet")
  4973. },
  4974. {
  4975. name: "Larger",
  4976. height: math.unit(20, "feet")
  4977. },
  4978. {
  4979. name: "Macro",
  4980. height: math.unit(150, "feet")
  4981. },
  4982. {
  4983. name: "Macro+",
  4984. height: math.unit(200, "feet"),
  4985. default: true
  4986. },
  4987. ]
  4988. ))
  4989. characterMakers.push(() => makeCharacter(
  4990. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4991. {
  4992. side: {
  4993. height: math.unit(12, "feet"),
  4994. weight: math.unit(2000, "kg"),
  4995. name: "Side",
  4996. image: {
  4997. source: "./media/characters/scott/side.svg",
  4998. extra: 754 / 724,
  4999. bottom: 0.069
  5000. }
  5001. },
  5002. upright: {
  5003. height: math.unit(12, "feet"),
  5004. weight: math.unit(2000, "kg"),
  5005. name: "Upright",
  5006. image: {
  5007. source: "./media/characters/scott/upright.svg",
  5008. extra: 3881 / 3722,
  5009. bottom: 0.05
  5010. }
  5011. },
  5012. },
  5013. [
  5014. {
  5015. name: "Normal",
  5016. height: math.unit(12, "feet"),
  5017. default: true
  5018. },
  5019. ]
  5020. ))
  5021. characterMakers.push(() => makeCharacter(
  5022. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5023. {
  5024. side: {
  5025. height: math.unit(8, "meters"),
  5026. weight: math.unit(84755, "lbs"),
  5027. name: "Side",
  5028. image: {
  5029. source: "./media/characters/tobias/side.svg",
  5030. extra: 1474 / 1096,
  5031. bottom: 38.9 / 1513.1235
  5032. }
  5033. },
  5034. },
  5035. [
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(8, "meters"),
  5039. default: true
  5040. },
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5045. {
  5046. front: {
  5047. height: math.unit(5.5, "feet"),
  5048. weight: math.unit(400, "lbs"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/kieran/front.svg",
  5052. extra: 2694 / 2364,
  5053. bottom: 217 / 2908
  5054. }
  5055. },
  5056. side: {
  5057. height: math.unit(5.5, "feet"),
  5058. weight: math.unit(400, "lbs"),
  5059. name: "Side",
  5060. image: {
  5061. source: "./media/characters/kieran/side.svg",
  5062. extra: 875 / 777,
  5063. bottom: 84.6 / 959
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(5.5, "feet"),
  5071. default: true
  5072. },
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5077. {
  5078. side: {
  5079. height: math.unit(2, "meters"),
  5080. weight: math.unit(70, "kg"),
  5081. name: "Side",
  5082. image: {
  5083. source: "./media/characters/sanya/side.svg",
  5084. bottom: 0.02,
  5085. extra: 1.02
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Small",
  5092. height: math.unit(2, "meters")
  5093. },
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(3, "meters")
  5097. },
  5098. {
  5099. name: "Macro",
  5100. height: math.unit(16, "meters"),
  5101. default: true
  5102. },
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5107. {
  5108. front: {
  5109. height: math.unit(2, "meters"),
  5110. weight: math.unit(120, "kg"),
  5111. name: "Front",
  5112. image: {
  5113. source: "./media/characters/miranda/front.svg",
  5114. extra: 195 / 185,
  5115. bottom: 10.9 / 206.5
  5116. }
  5117. },
  5118. back: {
  5119. height: math.unit(2, "meters"),
  5120. weight: math.unit(120, "kg"),
  5121. name: "Back",
  5122. image: {
  5123. source: "./media/characters/miranda/back.svg",
  5124. extra: 201 / 193,
  5125. bottom: 2.3 / 203.7
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(10, "feet"),
  5133. default: true
  5134. }
  5135. ]
  5136. ))
  5137. characterMakers.push(() => makeCharacter(
  5138. { name: "James", species: ["deer"], tags: ["anthro"] },
  5139. {
  5140. side: {
  5141. height: math.unit(2, "meters"),
  5142. weight: math.unit(100, "kg"),
  5143. name: "Front",
  5144. image: {
  5145. source: "./media/characters/james/front.svg",
  5146. extra: 10 / 8.5
  5147. }
  5148. },
  5149. },
  5150. [
  5151. {
  5152. name: "Normal",
  5153. height: math.unit(8.5, "feet"),
  5154. default: true
  5155. }
  5156. ]
  5157. ))
  5158. characterMakers.push(() => makeCharacter(
  5159. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5160. {
  5161. side: {
  5162. height: math.unit(9.5, "feet"),
  5163. weight: math.unit(2500, "lbs"),
  5164. name: "Side",
  5165. image: {
  5166. source: "./media/characters/heather/side.svg"
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(9.5, "feet"),
  5174. default: true
  5175. }
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5180. {
  5181. side: {
  5182. height: math.unit(6.5, "feet"),
  5183. weight: math.unit(400, "lbs"),
  5184. name: "Side",
  5185. image: {
  5186. source: "./media/characters/lukas/side.svg",
  5187. extra: 7.25 / 6.5
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(6.5, "feet"),
  5195. default: true
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5201. {
  5202. side: {
  5203. height: math.unit(5, "feet"),
  5204. weight: math.unit(3000, "lbs"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/louise/side.svg"
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(5, "feet"),
  5215. default: true
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5221. {
  5222. side: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(150, "lbs"),
  5225. name: "Side",
  5226. image: {
  5227. source: "./media/characters/ramona/side.svg"
  5228. }
  5229. },
  5230. },
  5231. [
  5232. {
  5233. name: "Normal",
  5234. height: math.unit(5.3, "meters"),
  5235. default: true
  5236. },
  5237. {
  5238. name: "Macro",
  5239. height: math.unit(20, "stories")
  5240. },
  5241. {
  5242. name: "Macro+",
  5243. height: math.unit(50, "stories")
  5244. },
  5245. ]
  5246. ))
  5247. characterMakers.push(() => makeCharacter(
  5248. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5249. {
  5250. standing: {
  5251. height: math.unit(5.75, "feet"),
  5252. weight: math.unit(160, "lbs"),
  5253. name: "Standing",
  5254. image: {
  5255. source: "./media/characters/deerpuff/standing.svg",
  5256. extra: 682 / 624
  5257. }
  5258. },
  5259. sitting: {
  5260. height: math.unit(5.75 / 1.79, "feet"),
  5261. weight: math.unit(160, "lbs"),
  5262. name: "Sitting",
  5263. image: {
  5264. source: "./media/characters/deerpuff/sitting.svg",
  5265. bottom: 44 / 400,
  5266. extra: 1
  5267. }
  5268. },
  5269. taurLaying: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(400, "lbs"),
  5272. name: "Taur (Laying)",
  5273. image: {
  5274. source: "./media/characters/deerpuff/taur-laying.svg"
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Puffball",
  5281. height: math.unit(6, "inches")
  5282. },
  5283. {
  5284. name: "Normalpuff",
  5285. height: math.unit(5.75, "feet")
  5286. },
  5287. {
  5288. name: "Macropuff",
  5289. height: math.unit(1500, "feet"),
  5290. default: true
  5291. },
  5292. {
  5293. name: "Megapuff",
  5294. height: math.unit(500, "miles")
  5295. },
  5296. {
  5297. name: "Gigapuff",
  5298. height: math.unit(250000, "miles")
  5299. },
  5300. {
  5301. name: "Omegapuff",
  5302. height: math.unit(1000, "lightyears")
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5308. {
  5309. stomping: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(170, "lbs"),
  5312. name: "Stomping",
  5313. image: {
  5314. source: "./media/characters/vivian/stomping.svg"
  5315. }
  5316. },
  5317. sitting: {
  5318. height: math.unit(6 / 1.75, "feet"),
  5319. weight: math.unit(170, "lbs"),
  5320. name: "Sitting",
  5321. image: {
  5322. source: "./media/characters/vivian/sitting.svg",
  5323. bottom: 1 / 6.4,
  5324. extra: 1,
  5325. }
  5326. },
  5327. },
  5328. [
  5329. {
  5330. name: "Normal",
  5331. height: math.unit(7, "feet"),
  5332. default: true
  5333. },
  5334. {
  5335. name: "Macro",
  5336. height: math.unit(10, "stories")
  5337. },
  5338. {
  5339. name: "Macro+",
  5340. height: math.unit(30, "stories")
  5341. },
  5342. {
  5343. name: "Megamacro",
  5344. height: math.unit(10, "miles")
  5345. },
  5346. {
  5347. name: "Megamacro+",
  5348. height: math.unit(2750000, "meters")
  5349. },
  5350. ]
  5351. ))
  5352. characterMakers.push(() => makeCharacter(
  5353. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5354. {
  5355. front: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(160, "lbs"),
  5358. name: "Front",
  5359. image: {
  5360. source: "./media/characters/prince/front.svg",
  5361. extra: 3400 / 3000
  5362. }
  5363. },
  5364. jumping: {
  5365. height: math.unit(6, "feet"),
  5366. weight: math.unit(160, "lbs"),
  5367. name: "Jumping",
  5368. image: {
  5369. source: "./media/characters/prince/jump.svg",
  5370. extra: 2555 / 2134
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(7.75, "feet"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Not cute",
  5382. height: math.unit(17, "feet")
  5383. },
  5384. {
  5385. name: "I said NOT",
  5386. height: math.unit(91, "feet")
  5387. },
  5388. {
  5389. name: "Please stop",
  5390. height: math.unit(560, "feet")
  5391. },
  5392. {
  5393. name: "What have you done",
  5394. height: math.unit(2200, "feet")
  5395. },
  5396. {
  5397. name: "Deer God",
  5398. height: math.unit(3.6, "miles")
  5399. },
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5404. {
  5405. standing: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(300, "lbs"),
  5408. name: "Standing",
  5409. image: {
  5410. source: "./media/characters/psymon/standing.svg",
  5411. extra: 1888 / 1810,
  5412. bottom: 0.05
  5413. }
  5414. },
  5415. slithering: {
  5416. height: math.unit(6, "feet"),
  5417. weight: math.unit(300, "lbs"),
  5418. name: "Slithering",
  5419. image: {
  5420. source: "./media/characters/psymon/slithering.svg",
  5421. extra: 1330 / 1224
  5422. }
  5423. },
  5424. slitheringAlt: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(300, "lbs"),
  5427. name: "Slithering (Alt)",
  5428. image: {
  5429. source: "./media/characters/psymon/slithering-alt.svg",
  5430. extra: 1330 / 1224
  5431. }
  5432. },
  5433. },
  5434. [
  5435. {
  5436. name: "Normal",
  5437. height: math.unit(11.25, "feet"),
  5438. default: true
  5439. },
  5440. {
  5441. name: "Large",
  5442. height: math.unit(27, "feet")
  5443. },
  5444. {
  5445. name: "Giant",
  5446. height: math.unit(87, "feet")
  5447. },
  5448. {
  5449. name: "Macro",
  5450. height: math.unit(365, "feet")
  5451. },
  5452. {
  5453. name: "Megamacro",
  5454. height: math.unit(3, "miles")
  5455. },
  5456. {
  5457. name: "World Serpent",
  5458. height: math.unit(8000, "miles")
  5459. },
  5460. ]
  5461. ))
  5462. characterMakers.push(() => makeCharacter(
  5463. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5464. {
  5465. front: {
  5466. height: math.unit(6, "feet"),
  5467. weight: math.unit(180, "lbs"),
  5468. name: "Front",
  5469. image: {
  5470. source: "./media/characters/daimos/front.svg",
  5471. extra: 4160 / 3897,
  5472. bottom: 0.021
  5473. }
  5474. }
  5475. },
  5476. [
  5477. {
  5478. name: "Normal",
  5479. height: math.unit(8, "feet"),
  5480. default: true
  5481. },
  5482. {
  5483. name: "Big Dog",
  5484. height: math.unit(22, "feet")
  5485. },
  5486. {
  5487. name: "Macro",
  5488. height: math.unit(127, "feet")
  5489. },
  5490. {
  5491. name: "Megamacro",
  5492. height: math.unit(3600, "feet")
  5493. },
  5494. ]
  5495. ))
  5496. characterMakers.push(() => makeCharacter(
  5497. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5498. {
  5499. side: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(180, "lbs"),
  5502. name: "Side",
  5503. image: {
  5504. source: "./media/characters/blake/side.svg",
  5505. extra: 1212 / 1120,
  5506. bottom: 0.05
  5507. }
  5508. },
  5509. crouched: {
  5510. height: math.unit(6 * 0.57, "feet"),
  5511. weight: math.unit(180, "lbs"),
  5512. name: "Crouched",
  5513. image: {
  5514. source: "./media/characters/blake/crouched.svg",
  5515. extra: 840 / 587,
  5516. bottom: 0.04
  5517. }
  5518. },
  5519. bent: {
  5520. height: math.unit(6 * 0.75, "feet"),
  5521. weight: math.unit(180, "lbs"),
  5522. name: "Bent",
  5523. image: {
  5524. source: "./media/characters/blake/bent.svg",
  5525. extra: 592 / 544,
  5526. bottom: 0.035
  5527. }
  5528. },
  5529. },
  5530. [
  5531. {
  5532. name: "Normal",
  5533. height: math.unit(8 + 1 / 6, "feet"),
  5534. default: true
  5535. },
  5536. {
  5537. name: "Big Backside",
  5538. height: math.unit(37, "feet")
  5539. },
  5540. {
  5541. name: "Subway Shredder",
  5542. height: math.unit(72, "feet")
  5543. },
  5544. {
  5545. name: "City Carver",
  5546. height: math.unit(1675, "feet")
  5547. },
  5548. {
  5549. name: "Tectonic Tweaker",
  5550. height: math.unit(2300, "miles")
  5551. },
  5552. ]
  5553. ))
  5554. characterMakers.push(() => makeCharacter(
  5555. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5556. {
  5557. front: {
  5558. height: math.unit(6, "feet"),
  5559. weight: math.unit(180, "lbs"),
  5560. name: "Front",
  5561. image: {
  5562. source: "./media/characters/guisetto/front.svg",
  5563. extra: 856 / 817,
  5564. bottom: 0.06
  5565. }
  5566. },
  5567. airborne: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(180, "lbs"),
  5570. name: "Airborne",
  5571. image: {
  5572. source: "./media/characters/guisetto/airborne.svg",
  5573. extra: 584 / 525
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(10 + 11 / 12, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Large",
  5585. height: math.unit(35, "feet")
  5586. },
  5587. {
  5588. name: "Macro",
  5589. height: math.unit(475, "feet")
  5590. },
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(180, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/luxor/front.svg",
  5602. extra: 2940 / 2152
  5603. }
  5604. },
  5605. back: {
  5606. height: math.unit(6, "feet"),
  5607. weight: math.unit(180, "lbs"),
  5608. name: "Back",
  5609. image: {
  5610. source: "./media/characters/luxor/back.svg",
  5611. extra: 1083 / 960
  5612. }
  5613. },
  5614. },
  5615. [
  5616. {
  5617. name: "Normal",
  5618. height: math.unit(5 + 5 / 6, "feet"),
  5619. default: true
  5620. },
  5621. {
  5622. name: "Lamp",
  5623. height: math.unit(50, "feet")
  5624. },
  5625. {
  5626. name: "Lämp",
  5627. height: math.unit(300, "feet")
  5628. },
  5629. {
  5630. name: "The sun is a lamp",
  5631. height: math.unit(250000, "miles")
  5632. },
  5633. ]
  5634. ))
  5635. characterMakers.push(() => makeCharacter(
  5636. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5637. {
  5638. front: {
  5639. height: math.unit(6, "feet"),
  5640. weight: math.unit(50, "lbs"),
  5641. name: "Front",
  5642. image: {
  5643. source: "./media/characters/huoyan/front.svg"
  5644. }
  5645. },
  5646. side: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(180, "lbs"),
  5649. name: "Side",
  5650. image: {
  5651. source: "./media/characters/huoyan/side.svg"
  5652. }
  5653. },
  5654. },
  5655. [
  5656. {
  5657. name: "Chef",
  5658. height: math.unit(9, "feet")
  5659. },
  5660. {
  5661. name: "Normal",
  5662. height: math.unit(65, "feet"),
  5663. default: true
  5664. },
  5665. {
  5666. name: "Macro",
  5667. height: math.unit(780, "feet")
  5668. },
  5669. {
  5670. name: "Flaming Mountain",
  5671. height: math.unit(4.8, "miles")
  5672. },
  5673. {
  5674. name: "Celestial",
  5675. height: math.unit(765000, "miles")
  5676. },
  5677. ]
  5678. ))
  5679. characterMakers.push(() => makeCharacter(
  5680. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5681. {
  5682. front: {
  5683. height: math.unit(5 + 3 / 4, "feet"),
  5684. weight: math.unit(120, "lbs"),
  5685. name: "Front",
  5686. image: {
  5687. source: "./media/characters/tails/front.svg"
  5688. }
  5689. }
  5690. },
  5691. [
  5692. {
  5693. name: "Normal",
  5694. height: math.unit(5 + 3 / 4, "feet"),
  5695. default: true
  5696. }
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5701. {
  5702. front: {
  5703. height: math.unit(4, "feet"),
  5704. weight: math.unit(50, "lbs"),
  5705. name: "Front",
  5706. image: {
  5707. source: "./media/characters/rainy/front.svg"
  5708. }
  5709. }
  5710. },
  5711. [
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(800, "feet"),
  5715. default: true
  5716. }
  5717. ]
  5718. ))
  5719. characterMakers.push(() => makeCharacter(
  5720. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5721. {
  5722. front: {
  5723. height: math.unit(6, "feet"),
  5724. weight: math.unit(150, "lbs"),
  5725. name: "Front",
  5726. image: {
  5727. source: "./media/characters/rainier/front.svg"
  5728. }
  5729. }
  5730. },
  5731. [
  5732. {
  5733. name: "Micro",
  5734. height: math.unit(2, "mm"),
  5735. default: true
  5736. }
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5741. {
  5742. front: {
  5743. height: math.unit(8 + 4/12, "feet"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/andy-renard/front.svg",
  5747. extra: 1839/1726,
  5748. bottom: 134/1973
  5749. }
  5750. },
  5751. back: {
  5752. height: math.unit(8 + 4/12, "feet"),
  5753. name: "Back",
  5754. image: {
  5755. source: "./media/characters/andy-renard/back.svg",
  5756. extra: 1838/1710,
  5757. bottom: 105/1943
  5758. }
  5759. },
  5760. },
  5761. [
  5762. {
  5763. name: "Tall",
  5764. height: math.unit(8 + 4/12, "feet")
  5765. },
  5766. {
  5767. name: "Mini Macro",
  5768. height: math.unit(15, "feet"),
  5769. default: true
  5770. },
  5771. {
  5772. name: "Macro",
  5773. height: math.unit(100, "feet")
  5774. },
  5775. {
  5776. name: "Mega Macro",
  5777. height: math.unit(1000, "feet")
  5778. },
  5779. {
  5780. name: "Giga Macro",
  5781. height: math.unit(10, "miles")
  5782. },
  5783. {
  5784. name: "God Macro",
  5785. height: math.unit(1, "multiverse")
  5786. },
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5791. {
  5792. front: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(210, "lbs"),
  5795. name: "Front",
  5796. image: {
  5797. source: "./media/characters/cimmaron/front-sfw.svg",
  5798. extra: 701 / 676,
  5799. bottom: 0.046
  5800. }
  5801. },
  5802. back: {
  5803. height: math.unit(6, "feet"),
  5804. weight: math.unit(210, "lbs"),
  5805. name: "Back",
  5806. image: {
  5807. source: "./media/characters/cimmaron/back-sfw.svg",
  5808. extra: 701 / 676,
  5809. bottom: 0.046
  5810. }
  5811. },
  5812. frontNsfw: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(210, "lbs"),
  5815. name: "Front (NSFW)",
  5816. image: {
  5817. source: "./media/characters/cimmaron/front-nsfw.svg",
  5818. extra: 701 / 676,
  5819. bottom: 0.046
  5820. }
  5821. },
  5822. backNsfw: {
  5823. height: math.unit(6, "feet"),
  5824. weight: math.unit(210, "lbs"),
  5825. name: "Back (NSFW)",
  5826. image: {
  5827. source: "./media/characters/cimmaron/back-nsfw.svg",
  5828. extra: 701 / 676,
  5829. bottom: 0.046
  5830. }
  5831. },
  5832. dick: {
  5833. height: math.unit(1.714, "feet"),
  5834. name: "Dick",
  5835. image: {
  5836. source: "./media/characters/cimmaron/dick.svg"
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(6, "feet"),
  5844. default: true
  5845. },
  5846. {
  5847. name: "Macro Mayor",
  5848. height: math.unit(350, "meters")
  5849. },
  5850. ]
  5851. ))
  5852. characterMakers.push(() => makeCharacter(
  5853. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5854. {
  5855. front: {
  5856. height: math.unit(6, "feet"),
  5857. weight: math.unit(200, "lbs"),
  5858. name: "Front",
  5859. image: {
  5860. source: "./media/characters/akari/front.svg",
  5861. extra: 962 / 901,
  5862. bottom: 0.04
  5863. }
  5864. }
  5865. },
  5866. [
  5867. {
  5868. name: "Micro",
  5869. height: math.unit(5, "inches"),
  5870. default: true
  5871. },
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(7, "feet")
  5875. },
  5876. ]
  5877. ))
  5878. characterMakers.push(() => makeCharacter(
  5879. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5880. {
  5881. front: {
  5882. height: math.unit(6, "feet"),
  5883. weight: math.unit(140, "lbs"),
  5884. name: "Front",
  5885. image: {
  5886. source: "./media/characters/cynosura/front.svg",
  5887. extra: 896 / 847
  5888. }
  5889. },
  5890. back: {
  5891. height: math.unit(6, "feet"),
  5892. weight: math.unit(140, "lbs"),
  5893. name: "Back",
  5894. image: {
  5895. source: "./media/characters/cynosura/back.svg",
  5896. extra: 1365 / 1250
  5897. }
  5898. },
  5899. },
  5900. [
  5901. {
  5902. name: "Micro",
  5903. height: math.unit(4, "inches")
  5904. },
  5905. {
  5906. name: "Normal",
  5907. height: math.unit(5.75, "feet"),
  5908. default: true
  5909. },
  5910. {
  5911. name: "Tall",
  5912. height: math.unit(10, "feet")
  5913. },
  5914. {
  5915. name: "Big",
  5916. height: math.unit(20, "feet")
  5917. },
  5918. {
  5919. name: "Macro",
  5920. height: math.unit(50, "feet")
  5921. },
  5922. ]
  5923. ))
  5924. characterMakers.push(() => makeCharacter(
  5925. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5926. {
  5927. front: {
  5928. height: math.unit(13 + 2/12, "feet"),
  5929. weight: math.unit(800, "kg"),
  5930. name: "Front",
  5931. image: {
  5932. source: "./media/characters/gin/front.svg",
  5933. extra: 1312/1191,
  5934. bottom: 45/1357
  5935. }
  5936. },
  5937. mouth: {
  5938. height: math.unit(2.39 * 1.8, "feet"),
  5939. name: "Mouth",
  5940. image: {
  5941. source: "./media/characters/gin/mouth.svg"
  5942. }
  5943. },
  5944. hand: {
  5945. height: math.unit(1.57 * 2.19, "feet"),
  5946. name: "Hand",
  5947. image: {
  5948. source: "./media/characters/gin/hand.svg"
  5949. }
  5950. },
  5951. foot: {
  5952. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5953. name: "Foot",
  5954. image: {
  5955. source: "./media/characters/gin/foot.svg"
  5956. }
  5957. },
  5958. sole: {
  5959. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5960. name: "Sole",
  5961. image: {
  5962. source: "./media/characters/gin/sole.svg"
  5963. }
  5964. },
  5965. },
  5966. [
  5967. {
  5968. name: "Very Small",
  5969. height: math.unit(13 + 2 / 12, "feet")
  5970. },
  5971. {
  5972. name: "Micro",
  5973. height: math.unit(600, "miles")
  5974. },
  5975. {
  5976. name: "Regular",
  5977. height: math.unit(20, "earths"),
  5978. default: true
  5979. },
  5980. {
  5981. name: "Macro",
  5982. height: math.unit(2.2, "solarradii")
  5983. },
  5984. {
  5985. name: "Teramacro",
  5986. height: math.unit(1.2, "galaxies")
  5987. },
  5988. {
  5989. name: "Omegamacro",
  5990. height: math.unit(200, "universes")
  5991. },
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5996. {
  5997. front: {
  5998. height: math.unit(6 + 1 / 6, "feet"),
  5999. weight: math.unit(178, "lbs"),
  6000. name: "Front",
  6001. image: {
  6002. source: "./media/characters/guy/front.svg"
  6003. }
  6004. }
  6005. },
  6006. [
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(6 + 1 / 6, "feet"),
  6010. default: true
  6011. },
  6012. {
  6013. name: "Large",
  6014. height: math.unit(25 + 7 / 12, "feet")
  6015. },
  6016. {
  6017. name: "Macro",
  6018. height: math.unit(60 + 9 / 12, "feet")
  6019. },
  6020. {
  6021. name: "Macro+",
  6022. height: math.unit(246, "feet")
  6023. },
  6024. {
  6025. name: "Macro++",
  6026. height: math.unit(878, "feet")
  6027. }
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6032. {
  6033. front: {
  6034. height: math.unit(9, "feet"),
  6035. weight: math.unit(800, "lbs"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/tiberius/front.svg",
  6039. extra: 2295 / 2071
  6040. }
  6041. },
  6042. back: {
  6043. height: math.unit(9, "feet"),
  6044. weight: math.unit(800, "lbs"),
  6045. name: "Back",
  6046. image: {
  6047. source: "./media/characters/tiberius/back.svg",
  6048. extra: 2373 / 2160
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Normal",
  6055. height: math.unit(9, "feet"),
  6056. default: true
  6057. }
  6058. ]
  6059. ))
  6060. characterMakers.push(() => makeCharacter(
  6061. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6062. {
  6063. front: {
  6064. height: math.unit(6, "feet"),
  6065. weight: math.unit(600, "lbs"),
  6066. name: "Front",
  6067. image: {
  6068. source: "./media/characters/surgo/front.svg",
  6069. extra: 3591 / 2227
  6070. }
  6071. },
  6072. back: {
  6073. height: math.unit(6, "feet"),
  6074. weight: math.unit(600, "lbs"),
  6075. name: "Back",
  6076. image: {
  6077. source: "./media/characters/surgo/back.svg",
  6078. extra: 3557 / 2228
  6079. }
  6080. },
  6081. laying: {
  6082. height: math.unit(6 * 0.85, "feet"),
  6083. weight: math.unit(600, "lbs"),
  6084. name: "Laying",
  6085. image: {
  6086. source: "./media/characters/surgo/laying.svg"
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(6, "feet"),
  6094. default: true
  6095. }
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6100. {
  6101. side: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(150, "lbs"),
  6104. name: "Side",
  6105. image: {
  6106. source: "./media/characters/cibus/side.svg",
  6107. extra: 800 / 400
  6108. }
  6109. },
  6110. },
  6111. [
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(6, "feet"),
  6115. default: true
  6116. }
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6121. {
  6122. front: {
  6123. height: math.unit(6, "feet"),
  6124. weight: math.unit(240, "lbs"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/nibbles/front.svg"
  6128. }
  6129. },
  6130. side: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(240, "lbs"),
  6133. name: "Side",
  6134. image: {
  6135. source: "./media/characters/nibbles/side.svg"
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(9, "feet"),
  6143. default: true
  6144. }
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6149. {
  6150. side: {
  6151. height: math.unit(5 + 1 / 6, "feet"),
  6152. weight: math.unit(130, "lbs"),
  6153. name: "Side",
  6154. image: {
  6155. source: "./media/characters/rikky/side.svg",
  6156. extra: 851 / 801
  6157. }
  6158. },
  6159. },
  6160. [
  6161. {
  6162. name: "Normal",
  6163. height: math.unit(5 + 1 / 6, "feet")
  6164. },
  6165. {
  6166. name: "Macro",
  6167. height: math.unit(152, "feet"),
  6168. default: true
  6169. },
  6170. {
  6171. name: "Megamacro",
  6172. height: math.unit(7, "miles")
  6173. }
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6178. {
  6179. side: {
  6180. height: math.unit(370, "cm"),
  6181. weight: math.unit(350, "lbs"),
  6182. name: "Side",
  6183. image: {
  6184. source: "./media/characters/malfressa/side.svg"
  6185. }
  6186. },
  6187. walking: {
  6188. height: math.unit(370, "cm"),
  6189. weight: math.unit(350, "lbs"),
  6190. name: "Walking",
  6191. image: {
  6192. source: "./media/characters/malfressa/walking.svg"
  6193. }
  6194. },
  6195. feral: {
  6196. height: math.unit(2500, "cm"),
  6197. weight: math.unit(100000, "lbs"),
  6198. name: "Feral",
  6199. image: {
  6200. source: "./media/characters/malfressa/feral.svg",
  6201. extra: 2108 / 837,
  6202. bottom: 0.02
  6203. }
  6204. },
  6205. },
  6206. [
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(370, "cm")
  6210. },
  6211. {
  6212. name: "Macro",
  6213. height: math.unit(300, "meters"),
  6214. default: true
  6215. }
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(60, "kg"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/jaro/front.svg"
  6227. }
  6228. },
  6229. back: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(60, "kg"),
  6232. name: "Back",
  6233. image: {
  6234. source: "./media/characters/jaro/back.svg"
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Micro",
  6241. height: math.unit(7, "inches")
  6242. },
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(5.5, "feet"),
  6246. default: true
  6247. },
  6248. {
  6249. name: "Minimacro",
  6250. height: math.unit(20, "feet")
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(200, "meters")
  6255. }
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6260. {
  6261. front: {
  6262. height: math.unit(6, "feet"),
  6263. weight: math.unit(195, "lb"),
  6264. name: "Front",
  6265. image: {
  6266. source: "./media/characters/rogue/front.svg"
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(90, "feet"),
  6274. default: true
  6275. },
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6280. {
  6281. front: {
  6282. height: math.unit(5 + 8 / 12, "feet"),
  6283. weight: math.unit(140, "lb"),
  6284. name: "Front",
  6285. image: {
  6286. source: "./media/characters/piper/front.svg",
  6287. extra: 3948/3655,
  6288. bottom: 0/3948
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Micro",
  6295. height: math.unit(2, "inches")
  6296. },
  6297. {
  6298. name: "Normal",
  6299. height: math.unit(5 + 8 / 12, "feet")
  6300. },
  6301. {
  6302. name: "Macro",
  6303. height: math.unit(250, "feet"),
  6304. default: true
  6305. },
  6306. {
  6307. name: "Megamacro",
  6308. height: math.unit(7, "miles")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6314. {
  6315. front: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(220, "lb"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/gemini/front.svg"
  6321. }
  6322. },
  6323. back: {
  6324. height: math.unit(6, "feet"),
  6325. weight: math.unit(220, "lb"),
  6326. name: "Back",
  6327. image: {
  6328. source: "./media/characters/gemini/back.svg"
  6329. }
  6330. },
  6331. kneeling: {
  6332. height: math.unit(6 / 1.5, "feet"),
  6333. weight: math.unit(220, "lb"),
  6334. name: "Kneeling",
  6335. image: {
  6336. source: "./media/characters/gemini/kneeling.svg",
  6337. bottom: 0.02
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(300, "meters"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Megamacro",
  6349. height: math.unit(6900, "meters")
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6355. {
  6356. anthro: {
  6357. height: math.unit(2.35, "meters"),
  6358. weight: math.unit(73, "kg"),
  6359. name: "Anthro",
  6360. image: {
  6361. source: "./media/characters/alicia/anthro.svg",
  6362. extra: 2571 / 2385,
  6363. bottom: 75 / 2648
  6364. }
  6365. },
  6366. paw: {
  6367. height: math.unit(1.32, "feet"),
  6368. name: "Paw",
  6369. image: {
  6370. source: "./media/characters/alicia/paw.svg"
  6371. }
  6372. },
  6373. feral: {
  6374. height: math.unit(1.69, "meters"),
  6375. weight: math.unit(73, "kg"),
  6376. name: "Feral",
  6377. image: {
  6378. source: "./media/characters/alicia/feral.svg",
  6379. extra: 2123 / 1715,
  6380. bottom: 222 / 2349
  6381. }
  6382. },
  6383. },
  6384. [
  6385. {
  6386. name: "Normal",
  6387. height: math.unit(2.35, "meters")
  6388. },
  6389. {
  6390. name: "Macro",
  6391. height: math.unit(60, "meters"),
  6392. default: true
  6393. },
  6394. {
  6395. name: "Megamacro",
  6396. height: math.unit(10000, "kilometers")
  6397. },
  6398. ]
  6399. ))
  6400. characterMakers.push(() => makeCharacter(
  6401. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6402. {
  6403. front: {
  6404. height: math.unit(7, "feet"),
  6405. weight: math.unit(250, "lbs"),
  6406. name: "Front",
  6407. image: {
  6408. source: "./media/characters/archy/front.svg"
  6409. }
  6410. }
  6411. },
  6412. [
  6413. {
  6414. name: "Micro",
  6415. height: math.unit(1, "inch")
  6416. },
  6417. {
  6418. name: "Shorty",
  6419. height: math.unit(5, "feet")
  6420. },
  6421. {
  6422. name: "Normal",
  6423. height: math.unit(7, "feet")
  6424. },
  6425. {
  6426. name: "Macro",
  6427. height: math.unit(600, "meters"),
  6428. default: true
  6429. },
  6430. {
  6431. name: "Megamacro",
  6432. height: math.unit(1, "mile")
  6433. },
  6434. ]
  6435. ))
  6436. characterMakers.push(() => makeCharacter(
  6437. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6438. {
  6439. front: {
  6440. height: math.unit(1.65, "meters"),
  6441. weight: math.unit(74, "kg"),
  6442. name: "Front",
  6443. image: {
  6444. source: "./media/characters/berri/front.svg",
  6445. extra: 857 / 837,
  6446. bottom: 18 / 877
  6447. }
  6448. },
  6449. bum: {
  6450. height: math.unit(1.46, "feet"),
  6451. name: "Bum",
  6452. image: {
  6453. source: "./media/characters/berri/bum.svg"
  6454. }
  6455. },
  6456. mouth: {
  6457. height: math.unit(0.44, "feet"),
  6458. name: "Mouth",
  6459. image: {
  6460. source: "./media/characters/berri/mouth.svg"
  6461. }
  6462. },
  6463. paw: {
  6464. height: math.unit(0.826, "feet"),
  6465. name: "Paw",
  6466. image: {
  6467. source: "./media/characters/berri/paw.svg"
  6468. }
  6469. },
  6470. },
  6471. [
  6472. {
  6473. name: "Normal",
  6474. height: math.unit(1.65, "meters")
  6475. },
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(60, "m"),
  6479. default: true
  6480. },
  6481. {
  6482. name: "Megamacro",
  6483. height: math.unit(9.213, "km")
  6484. },
  6485. {
  6486. name: "Planet Eater",
  6487. height: math.unit(489, "megameters")
  6488. },
  6489. {
  6490. name: "Teramacro",
  6491. height: math.unit(2471635000000, "meters")
  6492. },
  6493. {
  6494. name: "Examacro",
  6495. height: math.unit(8.0624e+26, "meters")
  6496. }
  6497. ]
  6498. ))
  6499. characterMakers.push(() => makeCharacter(
  6500. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6501. {
  6502. front: {
  6503. height: math.unit(1.72, "meters"),
  6504. weight: math.unit(68, "kg"),
  6505. name: "Front",
  6506. image: {
  6507. source: "./media/characters/lexi/front.svg"
  6508. }
  6509. }
  6510. },
  6511. [
  6512. {
  6513. name: "Very Smol",
  6514. height: math.unit(10, "mm")
  6515. },
  6516. {
  6517. name: "Micro",
  6518. height: math.unit(6.8, "cm"),
  6519. default: true
  6520. },
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(1.72, "m")
  6524. }
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6529. {
  6530. front: {
  6531. height: math.unit(1.69, "meters"),
  6532. weight: math.unit(68, "kg"),
  6533. name: "Front",
  6534. image: {
  6535. source: "./media/characters/martin/front.svg",
  6536. extra: 596 / 581
  6537. }
  6538. }
  6539. },
  6540. [
  6541. {
  6542. name: "Micro",
  6543. height: math.unit(6.85, "cm"),
  6544. default: true
  6545. },
  6546. {
  6547. name: "Normal",
  6548. height: math.unit(1.69, "m")
  6549. }
  6550. ]
  6551. ))
  6552. characterMakers.push(() => makeCharacter(
  6553. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6554. {
  6555. front: {
  6556. height: math.unit(1.69, "meters"),
  6557. weight: math.unit(68, "kg"),
  6558. name: "Front",
  6559. image: {
  6560. source: "./media/characters/juno/front.svg"
  6561. }
  6562. }
  6563. },
  6564. [
  6565. {
  6566. name: "Micro",
  6567. height: math.unit(7, "cm")
  6568. },
  6569. {
  6570. name: "Normal",
  6571. height: math.unit(1.89, "m")
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(353, "meters"),
  6576. default: true
  6577. }
  6578. ]
  6579. ))
  6580. characterMakers.push(() => makeCharacter(
  6581. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6582. {
  6583. front: {
  6584. height: math.unit(1.93, "meters"),
  6585. weight: math.unit(83, "kg"),
  6586. name: "Front",
  6587. image: {
  6588. source: "./media/characters/samantha/front.svg"
  6589. }
  6590. },
  6591. frontClothed: {
  6592. height: math.unit(1.93, "meters"),
  6593. weight: math.unit(83, "kg"),
  6594. name: "Front (Clothed)",
  6595. image: {
  6596. source: "./media/characters/samantha/front-clothed.svg"
  6597. }
  6598. },
  6599. back: {
  6600. height: math.unit(1.93, "meters"),
  6601. weight: math.unit(83, "kg"),
  6602. name: "Back",
  6603. image: {
  6604. source: "./media/characters/samantha/back.svg"
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(1.93, "m")
  6612. },
  6613. {
  6614. name: "Macro",
  6615. height: math.unit(74, "meters"),
  6616. default: true
  6617. },
  6618. {
  6619. name: "Macro+",
  6620. height: math.unit(223, "meters"),
  6621. },
  6622. {
  6623. name: "Megamacro",
  6624. height: math.unit(8381, "meters"),
  6625. },
  6626. {
  6627. name: "Megamacro+",
  6628. height: math.unit(12000, "kilometers")
  6629. },
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6634. {
  6635. front: {
  6636. height: math.unit(1.92, "meters"),
  6637. weight: math.unit(80, "kg"),
  6638. name: "Front",
  6639. image: {
  6640. source: "./media/characters/dr-clay/front.svg"
  6641. }
  6642. },
  6643. frontClothed: {
  6644. height: math.unit(1.92, "meters"),
  6645. weight: math.unit(80, "kg"),
  6646. name: "Front (Clothed)",
  6647. image: {
  6648. source: "./media/characters/dr-clay/front-clothed.svg"
  6649. }
  6650. }
  6651. },
  6652. [
  6653. {
  6654. name: "Normal",
  6655. height: math.unit(1.92, "m")
  6656. },
  6657. {
  6658. name: "Macro",
  6659. height: math.unit(214, "meters"),
  6660. default: true
  6661. },
  6662. {
  6663. name: "Macro+",
  6664. height: math.unit(12.237, "meters"),
  6665. },
  6666. {
  6667. name: "Megamacro",
  6668. height: math.unit(557, "megameters"),
  6669. },
  6670. {
  6671. name: "Unimaginable",
  6672. height: math.unit(120e9, "lightyears")
  6673. },
  6674. ]
  6675. ))
  6676. characterMakers.push(() => makeCharacter(
  6677. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6678. {
  6679. front: {
  6680. height: math.unit(2, "meters"),
  6681. weight: math.unit(80, "kg"),
  6682. name: "Front",
  6683. image: {
  6684. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6685. }
  6686. }
  6687. },
  6688. [
  6689. {
  6690. name: "Teramacro",
  6691. height: math.unit(500000, "lightyears"),
  6692. default: true
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6698. {
  6699. crux: {
  6700. height: math.unit(2, "meters"),
  6701. weight: math.unit(150, "kg"),
  6702. name: "Crux",
  6703. image: {
  6704. source: "./media/characters/vemus/crux.svg",
  6705. extra: 1074/936,
  6706. bottom: 23/1097
  6707. }
  6708. },
  6709. skunkTanuki: {
  6710. height: math.unit(2, "meters"),
  6711. weight: math.unit(150, "kg"),
  6712. name: "Skunk-Tanuki",
  6713. image: {
  6714. source: "./media/characters/vemus/skunk-tanuki.svg",
  6715. extra: 926/893,
  6716. bottom: 20/946
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(3.75, "meters"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Big",
  6728. height: math.unit(8, "meters")
  6729. },
  6730. {
  6731. name: "Macro",
  6732. height: math.unit(100, "meters")
  6733. },
  6734. {
  6735. name: "Macro+",
  6736. height: math.unit(1500, "meters")
  6737. },
  6738. {
  6739. name: "Stellar",
  6740. height: math.unit(14e8, "meters")
  6741. },
  6742. ]
  6743. ))
  6744. characterMakers.push(() => makeCharacter(
  6745. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6746. {
  6747. front: {
  6748. height: math.unit(2, "meters"),
  6749. weight: math.unit(70, "kg"),
  6750. name: "Front",
  6751. image: {
  6752. source: "./media/characters/beherit/front.svg",
  6753. extra: 1408 / 1242
  6754. }
  6755. }
  6756. },
  6757. [
  6758. {
  6759. name: "Normal",
  6760. height: math.unit(6, "feet")
  6761. },
  6762. {
  6763. name: "Lorg",
  6764. height: math.unit(25, "feet"),
  6765. default: true
  6766. },
  6767. {
  6768. name: "Lorger",
  6769. height: math.unit(75, "feet")
  6770. },
  6771. {
  6772. name: "Macro",
  6773. height: math.unit(200, "meters")
  6774. },
  6775. ]
  6776. ))
  6777. characterMakers.push(() => makeCharacter(
  6778. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6779. {
  6780. front: {
  6781. height: math.unit(2, "meters"),
  6782. weight: math.unit(150, "kg"),
  6783. name: "Front",
  6784. image: {
  6785. source: "./media/characters/everett/front.svg",
  6786. extra: 2038 / 1737,
  6787. bottom: 0.03
  6788. }
  6789. },
  6790. paw: {
  6791. height: math.unit(2 / 3.6, "meters"),
  6792. name: "Paw",
  6793. image: {
  6794. source: "./media/characters/everett/paw.svg"
  6795. }
  6796. },
  6797. },
  6798. [
  6799. {
  6800. name: "Normal",
  6801. height: math.unit(15, "feet"),
  6802. default: true
  6803. },
  6804. {
  6805. name: "Lorg",
  6806. height: math.unit(70, "feet"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Lorger",
  6811. height: math.unit(250, "feet")
  6812. },
  6813. {
  6814. name: "Macro",
  6815. height: math.unit(500, "meters")
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(2, "meters"),
  6824. weight: math.unit(86, "kg"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/rose/front.svg",
  6828. extra: 1785/1636,
  6829. bottom: 30/1815
  6830. }
  6831. },
  6832. frontSporty: {
  6833. height: math.unit(2, "meters"),
  6834. weight: math.unit(86, "kg"),
  6835. name: "Front (Sporty)",
  6836. image: {
  6837. source: "./media/characters/rose/front-sporty.svg",
  6838. extra: 350/335,
  6839. bottom: 10/360
  6840. }
  6841. },
  6842. frontAlt: {
  6843. height: math.unit(1.6, "meters"),
  6844. weight: math.unit(86, "kg"),
  6845. name: "Front (Alt)",
  6846. image: {
  6847. source: "./media/characters/rose/front-alt.svg",
  6848. extra: 299/283,
  6849. bottom: 3/302
  6850. }
  6851. },
  6852. plush: {
  6853. height: math.unit(2, "meters"),
  6854. weight: math.unit(86/3, "kg"),
  6855. name: "Plush",
  6856. image: {
  6857. source: "./media/characters/rose/plush.svg",
  6858. extra: 361/337,
  6859. bottom: 11/372
  6860. }
  6861. },
  6862. },
  6863. [
  6864. {
  6865. name: "True Micro",
  6866. height: math.unit(9, "cm")
  6867. },
  6868. {
  6869. name: "Micro",
  6870. height: math.unit(16, "cm")
  6871. },
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(1.85, "meters"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Mini-Macro",
  6879. height: math.unit(5, "meters")
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(15, "meters")
  6884. },
  6885. {
  6886. name: "True Macro",
  6887. height: math.unit(40, "meters")
  6888. },
  6889. {
  6890. name: "City Scale",
  6891. height: math.unit(1, "km")
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(2, "meters"),
  6900. weight: math.unit(350, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/regal/front.svg"
  6904. }
  6905. },
  6906. back: {
  6907. height: math.unit(2, "meters"),
  6908. weight: math.unit(350, "lbs"),
  6909. name: "Back",
  6910. image: {
  6911. source: "./media/characters/regal/back.svg"
  6912. }
  6913. },
  6914. },
  6915. [
  6916. {
  6917. name: "Macro",
  6918. height: math.unit(350, "feet"),
  6919. default: true
  6920. }
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(4 + 11 / 12, "feet"),
  6928. weight: math.unit(100, "lbs"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/opal/front.svg"
  6932. }
  6933. },
  6934. frontAlt: {
  6935. height: math.unit(4 + 11 / 12, "feet"),
  6936. weight: math.unit(100, "lbs"),
  6937. name: "Front (Alt)",
  6938. image: {
  6939. source: "./media/characters/opal/front-alt.svg"
  6940. }
  6941. },
  6942. },
  6943. [
  6944. {
  6945. name: "Small",
  6946. height: math.unit(4 + 11 / 12, "feet")
  6947. },
  6948. {
  6949. name: "Normal",
  6950. height: math.unit(20, "feet"),
  6951. default: true
  6952. },
  6953. {
  6954. name: "Macro",
  6955. height: math.unit(120, "feet")
  6956. },
  6957. {
  6958. name: "Megamacro",
  6959. height: math.unit(80, "miles")
  6960. },
  6961. {
  6962. name: "True Size",
  6963. height: math.unit(100000, "lightyears")
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(200, "lbs"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/vector-wuff/front.svg"
  6976. }
  6977. }
  6978. },
  6979. [
  6980. {
  6981. name: "Normal",
  6982. height: math.unit(2.8, "meters")
  6983. },
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(450, "meters"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Megamacro",
  6991. height: math.unit(15, "kilometers")
  6992. }
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6997. {
  6998. front: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(256, "lbs"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/dannik/front.svg"
  7004. }
  7005. }
  7006. },
  7007. [
  7008. {
  7009. name: "Macro",
  7010. height: math.unit(69.57, "meters"),
  7011. default: true
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(6, "feet"),
  7020. weight: math.unit(120, "lbs"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/azura-saharah/front.svg"
  7024. }
  7025. },
  7026. back: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(120, "lbs"),
  7029. name: "Back",
  7030. image: {
  7031. source: "./media/characters/azura-saharah/back.svg"
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Macro",
  7038. height: math.unit(100, "feet"),
  7039. default: true
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7045. {
  7046. side: {
  7047. height: math.unit(5 + 4 / 12, "feet"),
  7048. weight: math.unit(163, "lbs"),
  7049. name: "Side",
  7050. image: {
  7051. source: "./media/characters/kennedy/side.svg"
  7052. }
  7053. }
  7054. },
  7055. [
  7056. {
  7057. name: "Standard Doggo",
  7058. height: math.unit(5 + 4 / 12, "feet")
  7059. },
  7060. {
  7061. name: "Big Doggo",
  7062. height: math.unit(25 + 3 / 12, "feet"),
  7063. default: true
  7064. },
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(6, "feet"),
  7072. weight: math.unit(90, "lbs"),
  7073. name: "Front",
  7074. image: {
  7075. source: "./media/characters/odi-lunar/front.svg"
  7076. }
  7077. }
  7078. },
  7079. [
  7080. {
  7081. name: "Micro",
  7082. height: math.unit(3, "inches"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Normal",
  7087. height: math.unit(5.5, "feet")
  7088. }
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7093. {
  7094. back: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(220, "lbs"),
  7097. name: "Back",
  7098. image: {
  7099. source: "./media/characters/mandake/back.svg"
  7100. }
  7101. }
  7102. },
  7103. [
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(7, "feet"),
  7107. default: true
  7108. },
  7109. {
  7110. name: "Macro",
  7111. height: math.unit(78, "feet")
  7112. },
  7113. {
  7114. name: "Macro+",
  7115. height: math.unit(300, "meters")
  7116. },
  7117. {
  7118. name: "Macro++",
  7119. height: math.unit(2400, "feet")
  7120. },
  7121. {
  7122. name: "Megamacro",
  7123. height: math.unit(5167, "meters")
  7124. },
  7125. {
  7126. name: "Gigamacro",
  7127. height: math.unit(41769, "miles")
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(120, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/yozey/front.svg"
  7140. }
  7141. },
  7142. frontAlt: {
  7143. height: math.unit(6, "feet"),
  7144. weight: math.unit(120, "lbs"),
  7145. name: "Front (Alt)",
  7146. image: {
  7147. source: "./media/characters/yozey/front-alt.svg"
  7148. }
  7149. },
  7150. side: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(120, "lbs"),
  7153. name: "Side",
  7154. image: {
  7155. source: "./media/characters/yozey/side.svg"
  7156. }
  7157. },
  7158. },
  7159. [
  7160. {
  7161. name: "Micro",
  7162. height: math.unit(3, "inches"),
  7163. default: true
  7164. },
  7165. {
  7166. name: "Normal",
  7167. height: math.unit(6, "feet")
  7168. }
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7173. {
  7174. front: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(103, "lbs"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/valeska-voss/front.svg"
  7180. }
  7181. }
  7182. },
  7183. [
  7184. {
  7185. name: "Mini-Sized Sub",
  7186. height: math.unit(3.1, "inches")
  7187. },
  7188. {
  7189. name: "Mid-Sized Sub",
  7190. height: math.unit(6.2, "inches")
  7191. },
  7192. {
  7193. name: "Full-Sized Sub",
  7194. height: math.unit(9.3, "inches")
  7195. },
  7196. {
  7197. name: "Normal",
  7198. height: math.unit(5 + 2 / 12, "foot"),
  7199. default: true
  7200. },
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(160, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/gene-zeta/front.svg",
  7212. extra: 3006 / 2826,
  7213. bottom: 182 / 3188
  7214. }
  7215. }
  7216. },
  7217. [
  7218. {
  7219. name: "Micro",
  7220. height: math.unit(6, "inches")
  7221. },
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(5 + 11 / 12, "foot"),
  7225. default: true
  7226. },
  7227. {
  7228. name: "Macro",
  7229. height: math.unit(140, "feet")
  7230. },
  7231. {
  7232. name: "Supercharged",
  7233. height: math.unit(2500, "feet")
  7234. },
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7239. {
  7240. front: {
  7241. height: math.unit(6, "feet"),
  7242. weight: math.unit(350, "lbs"),
  7243. name: "Front",
  7244. image: {
  7245. source: "./media/characters/razinox/front.svg",
  7246. extra: 1686 / 1548,
  7247. bottom: 28.2 / 1868
  7248. }
  7249. },
  7250. back: {
  7251. height: math.unit(6, "feet"),
  7252. weight: math.unit(350, "lbs"),
  7253. name: "Back",
  7254. image: {
  7255. source: "./media/characters/razinox/back.svg",
  7256. extra: 1660 / 1590,
  7257. bottom: 15 / 1665
  7258. }
  7259. },
  7260. },
  7261. [
  7262. {
  7263. name: "Normal",
  7264. height: math.unit(10 + 8 / 12, "foot")
  7265. },
  7266. {
  7267. name: "Minimacro",
  7268. height: math.unit(15, "foot")
  7269. },
  7270. {
  7271. name: "Macro",
  7272. height: math.unit(60, "foot"),
  7273. default: true
  7274. },
  7275. {
  7276. name: "Megamacro",
  7277. height: math.unit(5, "miles")
  7278. },
  7279. {
  7280. name: "Gigamacro",
  7281. height: math.unit(6000, "miles")
  7282. },
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(150, "lbs"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/cobalt/front.svg"
  7294. }
  7295. }
  7296. },
  7297. [
  7298. {
  7299. name: "Normal",
  7300. height: math.unit(8 + 1 / 12, "foot")
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(111, "foot"),
  7305. default: true
  7306. },
  7307. {
  7308. name: "Supracosmic",
  7309. height: math.unit(1e42, "feet")
  7310. },
  7311. ]
  7312. ))
  7313. characterMakers.push(() => makeCharacter(
  7314. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7315. {
  7316. front: {
  7317. height: math.unit(6, "feet"),
  7318. weight: math.unit(140, "lbs"),
  7319. name: "Front",
  7320. image: {
  7321. source: "./media/characters/amanda/front.svg"
  7322. }
  7323. }
  7324. },
  7325. [
  7326. {
  7327. name: "Micro",
  7328. height: math.unit(5, "inches"),
  7329. default: true
  7330. },
  7331. ]
  7332. ))
  7333. characterMakers.push(() => makeCharacter(
  7334. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7335. {
  7336. front: {
  7337. height: math.unit(2.75, "meters"),
  7338. weight: math.unit(1200, "lb"),
  7339. name: "Front",
  7340. image: {
  7341. source: "./media/characters/teal/front.svg",
  7342. extra: 2463 / 2320,
  7343. bottom: 166 / 2629
  7344. }
  7345. },
  7346. back: {
  7347. height: math.unit(2.75, "meters"),
  7348. weight: math.unit(1200, "lb"),
  7349. name: "Back",
  7350. image: {
  7351. source: "./media/characters/teal/back.svg",
  7352. extra: 2580 / 2489,
  7353. bottom: 151 / 2731
  7354. }
  7355. },
  7356. sitting: {
  7357. height: math.unit(1.9, "meters"),
  7358. weight: math.unit(1200, "lb"),
  7359. name: "Sitting",
  7360. image: {
  7361. source: "./media/characters/teal/sitting.svg",
  7362. extra: 623 / 590,
  7363. bottom: 121 / 744
  7364. }
  7365. },
  7366. standing: {
  7367. height: math.unit(2.75, "meters"),
  7368. weight: math.unit(1200, "lb"),
  7369. name: "Standing",
  7370. image: {
  7371. source: "./media/characters/teal/standing.svg",
  7372. extra: 923 / 893,
  7373. bottom: 60 / 983
  7374. }
  7375. },
  7376. stretching: {
  7377. height: math.unit(3.65, "meters"),
  7378. weight: math.unit(1200, "lb"),
  7379. name: "Stretching",
  7380. image: {
  7381. source: "./media/characters/teal/stretching.svg",
  7382. extra: 1276 / 1244,
  7383. bottom: 0 / 1276
  7384. }
  7385. },
  7386. legged: {
  7387. height: math.unit(1.3, "meters"),
  7388. weight: math.unit(100, "lb"),
  7389. name: "Legged",
  7390. image: {
  7391. source: "./media/characters/teal/legged.svg",
  7392. extra: 462 / 437,
  7393. bottom: 24 / 486
  7394. }
  7395. },
  7396. naga: {
  7397. height: math.unit(5.4, "meters"),
  7398. weight: math.unit(4000, "lb"),
  7399. name: "Naga",
  7400. image: {
  7401. source: "./media/characters/teal/naga.svg",
  7402. extra: 1902 / 1858,
  7403. bottom: 0 / 1902
  7404. }
  7405. },
  7406. hand: {
  7407. height: math.unit(0.52, "meters"),
  7408. name: "Hand",
  7409. image: {
  7410. source: "./media/characters/teal/hand.svg"
  7411. }
  7412. },
  7413. maw: {
  7414. height: math.unit(0.43, "meters"),
  7415. name: "Maw",
  7416. image: {
  7417. source: "./media/characters/teal/maw.svg"
  7418. }
  7419. },
  7420. slit: {
  7421. height: math.unit(0.25, "meters"),
  7422. name: "Slit",
  7423. image: {
  7424. source: "./media/characters/teal/slit.svg"
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Normal",
  7431. height: math.unit(2.75, "meters"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Macro",
  7436. height: math.unit(300, "feet")
  7437. },
  7438. {
  7439. name: "Macro+",
  7440. height: math.unit(2000, "feet")
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7446. {
  7447. frontCat: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(180, "lbs"),
  7450. name: "Front (Cat)",
  7451. image: {
  7452. source: "./media/characters/ravin-amulet/front-cat.svg"
  7453. }
  7454. },
  7455. frontCatAlt: {
  7456. height: math.unit(6, "feet"),
  7457. weight: math.unit(180, "lbs"),
  7458. name: "Front (Alt, Cat)",
  7459. image: {
  7460. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7461. }
  7462. },
  7463. frontWerewolf: {
  7464. height: math.unit(6 * 1.2, "feet"),
  7465. weight: math.unit(225, "lbs"),
  7466. name: "Front (Werewolf)",
  7467. image: {
  7468. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7469. }
  7470. },
  7471. backWerewolf: {
  7472. height: math.unit(6 * 1.2, "feet"),
  7473. weight: math.unit(225, "lbs"),
  7474. name: "Back (Werewolf)",
  7475. image: {
  7476. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7477. }
  7478. },
  7479. },
  7480. [
  7481. {
  7482. name: "Nano",
  7483. height: math.unit(1, "micrometer")
  7484. },
  7485. {
  7486. name: "Micro",
  7487. height: math.unit(1, "inch")
  7488. },
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(6, "feet"),
  7492. default: true
  7493. },
  7494. {
  7495. name: "Macro",
  7496. height: math.unit(60, "feet")
  7497. }
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7502. {
  7503. front: {
  7504. height: math.unit(6, "feet"),
  7505. weight: math.unit(165, "lbs"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/fluoresce/front.svg"
  7509. }
  7510. }
  7511. },
  7512. [
  7513. {
  7514. name: "Micro",
  7515. height: math.unit(6, "cm")
  7516. },
  7517. {
  7518. name: "Normal",
  7519. height: math.unit(5 + 7 / 12, "feet"),
  7520. default: true
  7521. },
  7522. {
  7523. name: "Macro",
  7524. height: math.unit(56, "feet")
  7525. },
  7526. {
  7527. name: "Megamacro",
  7528. height: math.unit(1.9, "miles")
  7529. },
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7534. {
  7535. front: {
  7536. height: math.unit(9 + 6 / 12, "feet"),
  7537. weight: math.unit(523, "lbs"),
  7538. name: "Side",
  7539. image: {
  7540. source: "./media/characters/aurora/side.svg"
  7541. }
  7542. }
  7543. },
  7544. [
  7545. {
  7546. name: "Normal",
  7547. height: math.unit(9 + 6 / 12, "feet")
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(96, "feet"),
  7552. default: true
  7553. },
  7554. {
  7555. name: "Macro+",
  7556. height: math.unit(243, "feet")
  7557. },
  7558. ]
  7559. ))
  7560. characterMakers.push(() => makeCharacter(
  7561. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7562. {
  7563. front: {
  7564. height: math.unit(194, "cm"),
  7565. weight: math.unit(90, "kg"),
  7566. name: "Front",
  7567. image: {
  7568. source: "./media/characters/ranek/front.svg"
  7569. }
  7570. },
  7571. side: {
  7572. height: math.unit(194, "cm"),
  7573. weight: math.unit(90, "kg"),
  7574. name: "Side",
  7575. image: {
  7576. source: "./media/characters/ranek/side.svg"
  7577. }
  7578. },
  7579. back: {
  7580. height: math.unit(194, "cm"),
  7581. weight: math.unit(90, "kg"),
  7582. name: "Back",
  7583. image: {
  7584. source: "./media/characters/ranek/back.svg"
  7585. }
  7586. },
  7587. feral: {
  7588. height: math.unit(30, "cm"),
  7589. weight: math.unit(1.6, "lbs"),
  7590. name: "Feral",
  7591. image: {
  7592. source: "./media/characters/ranek/feral.svg"
  7593. }
  7594. },
  7595. },
  7596. [
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(194, "cm"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(100, "meters")
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(5 + 6 / 12, "feet"),
  7613. weight: math.unit(153, "lbs"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/andrew-cooper/front.svg"
  7617. }
  7618. },
  7619. },
  7620. [
  7621. {
  7622. name: "Nano",
  7623. height: math.unit(1, "mm")
  7624. },
  7625. {
  7626. name: "Micro",
  7627. height: math.unit(2, "inches")
  7628. },
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(5 + 6 / 12, "feet"),
  7632. default: true
  7633. }
  7634. ]
  7635. ))
  7636. characterMakers.push(() => makeCharacter(
  7637. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7638. {
  7639. front: {
  7640. height: math.unit(6, "feet"),
  7641. weight: math.unit(180, "lbs"),
  7642. name: "Front",
  7643. image: {
  7644. source: "./media/characters/akane-sato/front.svg",
  7645. extra: 1219 / 1140
  7646. }
  7647. },
  7648. back: {
  7649. height: math.unit(6, "feet"),
  7650. weight: math.unit(180, "lbs"),
  7651. name: "Back",
  7652. image: {
  7653. source: "./media/characters/akane-sato/back.svg",
  7654. extra: 1219 / 1170
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(2.5, "meters")
  7662. },
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(250, "meters"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Megamacro",
  7670. height: math.unit(25, "km")
  7671. },
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(65, "kg"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/rook/front.svg",
  7683. extra: 960 / 950
  7684. }
  7685. }
  7686. },
  7687. [
  7688. {
  7689. name: "Normal",
  7690. height: math.unit(8.8, "feet")
  7691. },
  7692. {
  7693. name: "Macro",
  7694. height: math.unit(88, "feet"),
  7695. default: true
  7696. },
  7697. {
  7698. name: "Megamacro",
  7699. height: math.unit(8, "miles")
  7700. },
  7701. ]
  7702. ))
  7703. characterMakers.push(() => makeCharacter(
  7704. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7705. {
  7706. front: {
  7707. height: math.unit(12 + 2 / 12, "feet"),
  7708. weight: math.unit(808, "lbs"),
  7709. name: "Front",
  7710. image: {
  7711. source: "./media/characters/prodigy/front.svg"
  7712. }
  7713. }
  7714. },
  7715. [
  7716. {
  7717. name: "Normal",
  7718. height: math.unit(12 + 2 / 12, "feet"),
  7719. default: true
  7720. },
  7721. {
  7722. name: "Macro",
  7723. height: math.unit(143, "feet")
  7724. },
  7725. {
  7726. name: "Macro+",
  7727. height: math.unit(400, "feet")
  7728. },
  7729. ]
  7730. ))
  7731. characterMakers.push(() => makeCharacter(
  7732. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7733. {
  7734. front: {
  7735. height: math.unit(6, "feet"),
  7736. weight: math.unit(225, "lbs"),
  7737. name: "Front",
  7738. image: {
  7739. source: "./media/characters/daniel/front.svg"
  7740. }
  7741. },
  7742. leaning: {
  7743. height: math.unit(6, "feet"),
  7744. weight: math.unit(225, "lbs"),
  7745. name: "Leaning",
  7746. image: {
  7747. source: "./media/characters/daniel/leaning.svg"
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Macro",
  7754. height: math.unit(1000, "feet"),
  7755. default: true
  7756. },
  7757. ]
  7758. ))
  7759. characterMakers.push(() => makeCharacter(
  7760. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7761. {
  7762. front: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(88, "lbs"),
  7765. name: "Front",
  7766. image: {
  7767. source: "./media/characters/chiros/front.svg",
  7768. extra: 306 / 226
  7769. }
  7770. },
  7771. side: {
  7772. height: math.unit(6, "feet"),
  7773. weight: math.unit(88, "lbs"),
  7774. name: "Side",
  7775. image: {
  7776. source: "./media/characters/chiros/side.svg",
  7777. extra: 306 / 226
  7778. }
  7779. },
  7780. },
  7781. [
  7782. {
  7783. name: "Normal",
  7784. height: math.unit(6, "cm"),
  7785. default: true
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7791. {
  7792. front: {
  7793. height: math.unit(6, "feet"),
  7794. weight: math.unit(100, "lbs"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/selka/front.svg",
  7798. extra: 947 / 887
  7799. }
  7800. }
  7801. },
  7802. [
  7803. {
  7804. name: "Normal",
  7805. height: math.unit(5, "cm"),
  7806. default: true
  7807. },
  7808. ]
  7809. ))
  7810. characterMakers.push(() => makeCharacter(
  7811. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7812. {
  7813. front: {
  7814. height: math.unit(8 + 3 / 12, "feet"),
  7815. weight: math.unit(424, "lbs"),
  7816. name: "Front",
  7817. image: {
  7818. source: "./media/characters/verin/front.svg",
  7819. extra: 1845 / 1550
  7820. }
  7821. },
  7822. frontArmored: {
  7823. height: math.unit(8 + 3 / 12, "feet"),
  7824. weight: math.unit(424, "lbs"),
  7825. name: "Front (Armored)",
  7826. image: {
  7827. source: "./media/characters/verin/front-armor.svg",
  7828. extra: 1845 / 1550,
  7829. bottom: 0.01
  7830. }
  7831. },
  7832. back: {
  7833. height: math.unit(8 + 3 / 12, "feet"),
  7834. weight: math.unit(424, "lbs"),
  7835. name: "Back",
  7836. image: {
  7837. source: "./media/characters/verin/back.svg",
  7838. bottom: 0.1,
  7839. extra: 1
  7840. }
  7841. },
  7842. foot: {
  7843. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7844. name: "Foot",
  7845. image: {
  7846. source: "./media/characters/verin/foot.svg"
  7847. }
  7848. },
  7849. },
  7850. [
  7851. {
  7852. name: "Normal",
  7853. height: math.unit(8 + 3 / 12, "feet")
  7854. },
  7855. {
  7856. name: "Minimacro",
  7857. height: math.unit(21, "feet"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(626, "feet")
  7863. },
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7868. {
  7869. front: {
  7870. height: math.unit(2.718, "meters"),
  7871. weight: math.unit(150, "lbs"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/sovrim-terraquian/front.svg"
  7875. }
  7876. },
  7877. back: {
  7878. height: math.unit(2.718, "meters"),
  7879. weight: math.unit(150, "lbs"),
  7880. name: "Back",
  7881. image: {
  7882. source: "./media/characters/sovrim-terraquian/back.svg"
  7883. }
  7884. }
  7885. },
  7886. [
  7887. {
  7888. name: "Micro",
  7889. height: math.unit(2, "inches")
  7890. },
  7891. {
  7892. name: "Small",
  7893. height: math.unit(1, "meter")
  7894. },
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(Math.E, "meters"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Macro",
  7902. height: math.unit(20, "meters")
  7903. },
  7904. {
  7905. name: "Macro+",
  7906. height: math.unit(400, "meters")
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7912. {
  7913. front: {
  7914. height: math.unit(7, "feet"),
  7915. weight: math.unit(489, "lbs"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/reece-silvermane/front.svg",
  7919. bottom: 0.02,
  7920. extra: 1
  7921. }
  7922. },
  7923. },
  7924. [
  7925. {
  7926. name: "Macro",
  7927. height: math.unit(1.5, "miles"),
  7928. default: true
  7929. },
  7930. ]
  7931. ))
  7932. characterMakers.push(() => makeCharacter(
  7933. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7934. {
  7935. front: {
  7936. height: math.unit(6, "feet"),
  7937. weight: math.unit(78, "kg"),
  7938. name: "Front",
  7939. image: {
  7940. source: "./media/characters/kane/front.svg",
  7941. extra: 978 / 899
  7942. }
  7943. },
  7944. },
  7945. [
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(2.1, "m"),
  7949. },
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(1, "km"),
  7953. default: true
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7959. {
  7960. front: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(200, "kg"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/tegon/front.svg",
  7966. bottom: 0.01,
  7967. extra: 1
  7968. }
  7969. },
  7970. },
  7971. [
  7972. {
  7973. name: "Micro",
  7974. height: math.unit(1, "inch")
  7975. },
  7976. {
  7977. name: "Normal",
  7978. height: math.unit(6 + 3 / 12, "feet"),
  7979. default: true
  7980. },
  7981. {
  7982. name: "Macro",
  7983. height: math.unit(300, "feet")
  7984. },
  7985. {
  7986. name: "Megamacro",
  7987. height: math.unit(69, "miles")
  7988. },
  7989. ]
  7990. ))
  7991. characterMakers.push(() => makeCharacter(
  7992. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7993. {
  7994. side: {
  7995. height: math.unit(6, "feet"),
  7996. weight: math.unit(2304, "lbs"),
  7997. name: "Side",
  7998. image: {
  7999. source: "./media/characters/arcturax/side.svg",
  8000. extra: 790 / 376,
  8001. bottom: 0.01
  8002. }
  8003. },
  8004. },
  8005. [
  8006. {
  8007. name: "Micro",
  8008. height: math.unit(2, "inch")
  8009. },
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(6, "feet")
  8013. },
  8014. {
  8015. name: "Macro",
  8016. height: math.unit(39, "feet"),
  8017. default: true
  8018. },
  8019. {
  8020. name: "Megamacro",
  8021. height: math.unit(7, "miles")
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(6, "feet"),
  8030. weight: math.unit(50, "lbs"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/sentri/front.svg",
  8034. extra: 1750 / 1570,
  8035. bottom: 0.025
  8036. }
  8037. },
  8038. frontAlt: {
  8039. height: math.unit(6, "feet"),
  8040. weight: math.unit(50, "lbs"),
  8041. name: "Front (Alt)",
  8042. image: {
  8043. source: "./media/characters/sentri/front-alt.svg",
  8044. extra: 1750 / 1570,
  8045. bottom: 0.025
  8046. }
  8047. },
  8048. },
  8049. [
  8050. {
  8051. name: "Normal",
  8052. height: math.unit(15, "feet"),
  8053. default: true
  8054. },
  8055. {
  8056. name: "Macro",
  8057. height: math.unit(2500, "feet")
  8058. }
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8063. {
  8064. front: {
  8065. height: math.unit(5 + 8 / 12, "feet"),
  8066. weight: math.unit(130, "lbs"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/corvin/front.svg",
  8070. extra: 1803 / 1629
  8071. }
  8072. },
  8073. frontShirt: {
  8074. height: math.unit(5 + 8 / 12, "feet"),
  8075. weight: math.unit(130, "lbs"),
  8076. name: "Front (Shirt)",
  8077. image: {
  8078. source: "./media/characters/corvin/front-shirt.svg",
  8079. extra: 1803 / 1629
  8080. }
  8081. },
  8082. frontPoncho: {
  8083. height: math.unit(5 + 8 / 12, "feet"),
  8084. weight: math.unit(130, "lbs"),
  8085. name: "Front (Poncho)",
  8086. image: {
  8087. source: "./media/characters/corvin/front-poncho.svg",
  8088. extra: 1803 / 1629
  8089. }
  8090. },
  8091. side: {
  8092. height: math.unit(5 + 8 / 12, "feet"),
  8093. weight: math.unit(130, "lbs"),
  8094. name: "Side",
  8095. image: {
  8096. source: "./media/characters/corvin/side.svg",
  8097. extra: 1012 / 945
  8098. }
  8099. },
  8100. back: {
  8101. height: math.unit(5 + 8 / 12, "feet"),
  8102. weight: math.unit(130, "lbs"),
  8103. name: "Back",
  8104. image: {
  8105. source: "./media/characters/corvin/back.svg",
  8106. extra: 1803 / 1629
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Micro",
  8113. height: math.unit(3, "inches")
  8114. },
  8115. {
  8116. name: "Normal",
  8117. height: math.unit(5 + 8 / 12, "feet")
  8118. },
  8119. {
  8120. name: "Macro",
  8121. height: math.unit(300, "feet"),
  8122. default: true
  8123. },
  8124. {
  8125. name: "Megamacro",
  8126. height: math.unit(500, "miles")
  8127. }
  8128. ]
  8129. ))
  8130. characterMakers.push(() => makeCharacter(
  8131. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8132. {
  8133. front: {
  8134. height: math.unit(6, "feet"),
  8135. weight: math.unit(135, "lbs"),
  8136. name: "Front",
  8137. image: {
  8138. source: "./media/characters/q/front.svg",
  8139. extra: 854 / 752,
  8140. bottom: 0.005
  8141. }
  8142. },
  8143. back: {
  8144. height: math.unit(6, "feet"),
  8145. weight: math.unit(130, "lbs"),
  8146. name: "Back",
  8147. image: {
  8148. source: "./media/characters/q/back.svg",
  8149. extra: 854 / 752
  8150. }
  8151. },
  8152. },
  8153. [
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(90, "feet"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Extra Macro",
  8161. height: math.unit(300, "feet"),
  8162. },
  8163. {
  8164. name: "BIG WALF",
  8165. height: math.unit(750, "feet"),
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(6, "feet"),
  8174. weight: math.unit(150, "lbs"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/carley/front.svg",
  8178. extra: 3927 / 3540,
  8179. bottom: 29.2 / 735
  8180. }
  8181. }
  8182. },
  8183. [
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(6 + 3 / 12, "feet")
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(185, "feet"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Megamacro",
  8195. height: math.unit(8, "miles"),
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(3, "feet"),
  8204. weight: math.unit(28, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/citrine/front.svg"
  8208. }
  8209. }
  8210. },
  8211. [
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(3, "feet"),
  8215. default: true
  8216. }
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8221. {
  8222. front: {
  8223. height: math.unit(14, "feet"),
  8224. weight: math.unit(1450, "kg"),
  8225. capacity: math.unit(15, "people"),
  8226. name: "Front",
  8227. image: {
  8228. source: "./media/characters/aura-starwind/front.svg",
  8229. extra: 1440/1327,
  8230. bottom: 11/1451
  8231. }
  8232. },
  8233. side: {
  8234. height: math.unit(14, "feet"),
  8235. weight: math.unit(1450, "kg"),
  8236. capacity: math.unit(15, "people"),
  8237. name: "Side",
  8238. image: {
  8239. source: "./media/characters/aura-starwind/side.svg",
  8240. extra: 1654 / 1497
  8241. }
  8242. },
  8243. taur: {
  8244. height: math.unit(18, "feet"),
  8245. weight: math.unit(5500, "kg"),
  8246. capacity: math.unit(50, "people"),
  8247. name: "Taur",
  8248. image: {
  8249. source: "./media/characters/aura-starwind/taur.svg",
  8250. extra: 1760 / 1650
  8251. }
  8252. },
  8253. feral: {
  8254. height: math.unit(46, "feet"),
  8255. weight: math.unit(25000, "kg"),
  8256. capacity: math.unit(120, "people"),
  8257. name: "Feral",
  8258. image: {
  8259. source: "./media/characters/aura-starwind/feral.svg"
  8260. }
  8261. },
  8262. },
  8263. [
  8264. {
  8265. name: "Normal",
  8266. height: math.unit(14, "feet"),
  8267. default: true
  8268. },
  8269. {
  8270. name: "Macro",
  8271. height: math.unit(50, "meters")
  8272. },
  8273. {
  8274. name: "Megamacro",
  8275. height: math.unit(5000, "meters")
  8276. },
  8277. {
  8278. name: "Gigamacro",
  8279. height: math.unit(100000, "kilometers")
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8285. {
  8286. front: {
  8287. height: math.unit(2 + 7 / 12, "feet"),
  8288. weight: math.unit(32, "lbs"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/rivet/front.svg",
  8292. extra: 1716 / 1658,
  8293. bottom: 0.03
  8294. }
  8295. },
  8296. foot: {
  8297. height: math.unit(0.551, "feet"),
  8298. name: "Rivet's Foot",
  8299. image: {
  8300. source: "./media/characters/rivet/foot.svg"
  8301. },
  8302. rename: true
  8303. }
  8304. },
  8305. [
  8306. {
  8307. name: "Micro",
  8308. height: math.unit(1.5, "inches"),
  8309. },
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(2 + 7 / 12, "feet"),
  8313. default: true
  8314. },
  8315. {
  8316. name: "Macro",
  8317. height: math.unit(85, "feet")
  8318. },
  8319. {
  8320. name: "Megamacro",
  8321. height: math.unit(2.2, "km")
  8322. }
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(5 + 9 / 12, "feet"),
  8330. weight: math.unit(150, "lbs"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/coffee/front.svg",
  8334. extra: 3666 / 3032,
  8335. bottom: 0.04
  8336. }
  8337. },
  8338. foot: {
  8339. height: math.unit(1.29, "feet"),
  8340. name: "Foot",
  8341. image: {
  8342. source: "./media/characters/coffee/foot.svg"
  8343. }
  8344. },
  8345. },
  8346. [
  8347. {
  8348. name: "Micro",
  8349. height: math.unit(2, "inches"),
  8350. },
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(5 + 9 / 12, "feet"),
  8354. default: true
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(800, "feet")
  8359. },
  8360. {
  8361. name: "Megamacro",
  8362. height: math.unit(25, "miles")
  8363. }
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(6, "feet"),
  8371. weight: math.unit(200, "lbs"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/chari-gal/front.svg",
  8375. extra: 1568 / 1385,
  8376. bottom: 0.047
  8377. }
  8378. },
  8379. gigantamax: {
  8380. height: math.unit(6 * 16, "feet"),
  8381. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8382. name: "Gigantamax",
  8383. image: {
  8384. source: "./media/characters/chari-gal/gigantamax.svg",
  8385. extra: 1124 / 888,
  8386. bottom: 0.03
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Normal",
  8393. height: math.unit(5 + 7 / 12, "feet")
  8394. },
  8395. {
  8396. name: "Macro",
  8397. height: math.unit(200, "feet"),
  8398. default: true
  8399. }
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8404. {
  8405. front: {
  8406. height: math.unit(6, "feet"),
  8407. weight: math.unit(150, "lbs"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/nova/front.svg",
  8411. extra: 5000 / 4722,
  8412. bottom: 0.02
  8413. }
  8414. }
  8415. },
  8416. [
  8417. {
  8418. name: "Micro-",
  8419. height: math.unit(0.8, "inches")
  8420. },
  8421. {
  8422. name: "Micro",
  8423. height: math.unit(2, "inches"),
  8424. default: true
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8430. {
  8431. front: {
  8432. height: math.unit(3 + 1 / 12, "feet"),
  8433. weight: math.unit(21.7, "lbs"),
  8434. name: "Front",
  8435. image: {
  8436. source: "./media/characters/argent/front.svg",
  8437. extra: 1471 / 1331,
  8438. bottom: 100.8 / 1575.5
  8439. }
  8440. }
  8441. },
  8442. [
  8443. {
  8444. name: "Micro",
  8445. height: math.unit(2, "inches")
  8446. },
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(3 + 1 / 12, "feet"),
  8450. default: true
  8451. },
  8452. {
  8453. name: "Macro",
  8454. height: math.unit(120, "feet")
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8460. {
  8461. lamp: {
  8462. height: math.unit(7 * 1559 / 989, "feet"),
  8463. name: "Magic Lamp",
  8464. image: {
  8465. source: "./media/characters/mira-al-cul/lamp.svg",
  8466. extra: 1617 / 1559
  8467. }
  8468. },
  8469. front: {
  8470. height: math.unit(7, "feet"),
  8471. name: "Front",
  8472. image: {
  8473. source: "./media/characters/mira-al-cul/front.svg",
  8474. extra: 1044 / 990
  8475. }
  8476. },
  8477. },
  8478. [
  8479. {
  8480. name: "Heavily Restricted",
  8481. height: math.unit(7 * 1559 / 989, "feet")
  8482. },
  8483. {
  8484. name: "Freshly Freed",
  8485. height: math.unit(50 * 1559 / 989, "feet")
  8486. },
  8487. {
  8488. name: "World Encompassing",
  8489. height: math.unit(10000 * 1559 / 989, "miles")
  8490. },
  8491. {
  8492. name: "Galactic",
  8493. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8494. },
  8495. {
  8496. name: "Palmed Universe",
  8497. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8498. default: true
  8499. },
  8500. {
  8501. name: "Multiversal Matriarch",
  8502. height: math.unit(8.87e10, "yottameters")
  8503. },
  8504. {
  8505. name: "Void Mother",
  8506. height: math.unit(3.14e110, "yottaparsecs")
  8507. },
  8508. {
  8509. name: "Toying with Transcendence",
  8510. height: math.unit(1e307, "meters")
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8516. {
  8517. front: {
  8518. height: math.unit(17 + 1 / 12, "feet"),
  8519. weight: math.unit(476.2 * 5, "lbs"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/kuro-shi-uchū/front.svg",
  8523. extra: 2329 / 1835,
  8524. bottom: 0.02
  8525. }
  8526. },
  8527. },
  8528. [
  8529. {
  8530. name: "Micro",
  8531. height: math.unit(2, "inches")
  8532. },
  8533. {
  8534. name: "Normal",
  8535. height: math.unit(12, "meters")
  8536. },
  8537. {
  8538. name: "Planetary",
  8539. height: math.unit(0.00929, "AU"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Universal",
  8544. height: math.unit(20, "gigaparsecs")
  8545. },
  8546. ]
  8547. ))
  8548. characterMakers.push(() => makeCharacter(
  8549. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8550. {
  8551. front: {
  8552. height: math.unit(5 + 2 / 12, "feet"),
  8553. weight: math.unit(120, "lbs"),
  8554. name: "Front",
  8555. image: {
  8556. source: "./media/characters/katherine/front.svg",
  8557. extra: 2075 / 1969
  8558. }
  8559. },
  8560. dress: {
  8561. height: math.unit(5 + 2 / 12, "feet"),
  8562. weight: math.unit(120, "lbs"),
  8563. name: "Dress",
  8564. image: {
  8565. source: "./media/characters/katherine/dress.svg",
  8566. extra: 2258 / 2064
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Micro",
  8573. height: math.unit(1, "inches"),
  8574. default: true
  8575. },
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(5 + 2 / 12, "feet")
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(100, "meters")
  8583. },
  8584. {
  8585. name: "Megamacro",
  8586. height: math.unit(80, "miles")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(7 + 8 / 12, "feet"),
  8595. weight: math.unit(250, "lbs"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/yevis/front.svg",
  8599. extra: 1938 / 1755
  8600. }
  8601. }
  8602. },
  8603. [
  8604. {
  8605. name: "Mortal",
  8606. height: math.unit(7 + 8 / 12, "feet")
  8607. },
  8608. {
  8609. name: "Battle",
  8610. height: math.unit(25 + 11 / 12, "feet")
  8611. },
  8612. {
  8613. name: "Wrath",
  8614. height: math.unit(1654 + 11 / 12, "feet")
  8615. },
  8616. {
  8617. name: "Planet Destroyer",
  8618. height: math.unit(12000, "miles")
  8619. },
  8620. {
  8621. name: "Galaxy Conqueror",
  8622. height: math.unit(1.45, "zettameters"),
  8623. default: true
  8624. },
  8625. {
  8626. name: "Universal War",
  8627. height: math.unit(184, "gigaparsecs")
  8628. },
  8629. {
  8630. name: "Eternity War",
  8631. height: math.unit(1.98e55, "yottaparsecs")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(5 + 8 / 12, "feet"),
  8640. weight: math.unit(63, "kg"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/xavier/front.svg",
  8644. extra: 944 / 883
  8645. }
  8646. },
  8647. frontStretch: {
  8648. height: math.unit(5 + 8 / 12, "feet"),
  8649. weight: math.unit(63, "kg"),
  8650. name: "Stretching",
  8651. image: {
  8652. source: "./media/characters/xavier/front-stretch.svg",
  8653. extra: 962 / 820
  8654. }
  8655. },
  8656. },
  8657. [
  8658. {
  8659. name: "Normal",
  8660. height: math.unit(5 + 8 / 12, "feet")
  8661. },
  8662. {
  8663. name: "Macro",
  8664. height: math.unit(100, "meters"),
  8665. default: true
  8666. },
  8667. {
  8668. name: "McLargeHuge",
  8669. height: math.unit(10, "miles")
  8670. },
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(5 + 5 / 12, "feet"),
  8678. weight: math.unit(150, "lb"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/joshii/front.svg",
  8682. extra: 765 / 653,
  8683. bottom: 51 / 816
  8684. }
  8685. },
  8686. foot: {
  8687. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8688. name: "Foot",
  8689. image: {
  8690. source: "./media/characters/joshii/foot.svg"
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Micro",
  8697. height: math.unit(2, "inches"),
  8698. default: true
  8699. },
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(5 + 5 / 12, "feet")
  8703. },
  8704. {
  8705. name: "Macro",
  8706. height: math.unit(785, "feet")
  8707. },
  8708. {
  8709. name: "Megamacro",
  8710. height: math.unit(24.5, "miles")
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(6, "feet"),
  8719. weight: math.unit(150, "lb"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/goddess-elizabeth/front.svg",
  8723. extra: 1800 / 1525,
  8724. bottom: 0.005
  8725. }
  8726. },
  8727. foot: {
  8728. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8729. name: "Foot",
  8730. image: {
  8731. source: "./media/characters/goddess-elizabeth/foot.svg"
  8732. }
  8733. },
  8734. mouth: {
  8735. height: math.unit(6, "feet"),
  8736. name: "Mouth",
  8737. image: {
  8738. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Micro",
  8745. height: math.unit(12, "feet")
  8746. },
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(80, "miles"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(15000, "parsecs")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(5 + 9 / 12, "feet"),
  8763. weight: math.unit(144, "lb"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/kara/front.svg"
  8767. }
  8768. },
  8769. feet: {
  8770. height: math.unit(6 / 6.765, "feet"),
  8771. name: "Kara's Feet",
  8772. rename: true,
  8773. image: {
  8774. source: "./media/characters/kara/feet.svg"
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Normal",
  8781. height: math.unit(5 + 9 / 12, "feet")
  8782. },
  8783. {
  8784. name: "Macro",
  8785. height: math.unit(174, "feet"),
  8786. default: true
  8787. },
  8788. ]
  8789. ))
  8790. characterMakers.push(() => makeCharacter(
  8791. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8792. {
  8793. front: {
  8794. height: math.unit(18, "feet"),
  8795. weight: math.unit(4050, "lb"),
  8796. name: "Front",
  8797. image: {
  8798. source: "./media/characters/tyrone/front.svg",
  8799. extra: 2405 / 2270,
  8800. bottom: 182 / 2587
  8801. }
  8802. },
  8803. },
  8804. [
  8805. {
  8806. name: "Normal",
  8807. height: math.unit(18, "feet"),
  8808. default: true
  8809. },
  8810. {
  8811. name: "Macro",
  8812. height: math.unit(300, "feet")
  8813. },
  8814. {
  8815. name: "Megamacro",
  8816. height: math.unit(15, "km")
  8817. },
  8818. {
  8819. name: "Gigamacro",
  8820. height: math.unit(500, "km")
  8821. },
  8822. {
  8823. name: "Teramacro",
  8824. height: math.unit(0.5, "gigameters")
  8825. },
  8826. {
  8827. name: "Omnimacro",
  8828. height: math.unit(1e252, "yottauniverse")
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(7 + 8 / 12, "feet"),
  8837. weight: math.unit(120, "lb"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/danny/front.svg",
  8841. extra: 1490 / 1350
  8842. }
  8843. },
  8844. back: {
  8845. height: math.unit(7 + 8 / 12, "feet"),
  8846. weight: math.unit(120, "lb"),
  8847. name: "Back",
  8848. image: {
  8849. source: "./media/characters/danny/back.svg",
  8850. extra: 1490 / 1350
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(7 + 8 / 12, "feet"),
  8858. default: true
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8864. {
  8865. front: {
  8866. height: math.unit(3.5, "inches"),
  8867. weight: math.unit(19, "grams"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/mallow/front.svg",
  8871. extra: 471 / 431
  8872. }
  8873. },
  8874. back: {
  8875. height: math.unit(3.5, "inches"),
  8876. weight: math.unit(19, "grams"),
  8877. name: "Back",
  8878. image: {
  8879. source: "./media/characters/mallow/back.svg",
  8880. extra: 471 / 431
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(3.5, "inches"),
  8888. default: true
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(9, "feet"),
  8897. weight: math.unit(230, "kg"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/starry-aqua/front.svg"
  8901. }
  8902. },
  8903. back: {
  8904. height: math.unit(9, "feet"),
  8905. weight: math.unit(230, "kg"),
  8906. name: "Back",
  8907. image: {
  8908. source: "./media/characters/starry-aqua/back.svg"
  8909. }
  8910. },
  8911. hand: {
  8912. height: math.unit(9 * 0.1168, "feet"),
  8913. name: "Hand",
  8914. image: {
  8915. source: "./media/characters/starry-aqua/hand.svg"
  8916. }
  8917. },
  8918. foot: {
  8919. height: math.unit(9 * 0.18, "feet"),
  8920. name: "Foot",
  8921. image: {
  8922. source: "./media/characters/starry-aqua/foot.svg"
  8923. }
  8924. }
  8925. },
  8926. [
  8927. {
  8928. name: "Micro",
  8929. height: math.unit(3, "inches")
  8930. },
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(9, "feet")
  8934. },
  8935. {
  8936. name: "Macro",
  8937. height: math.unit(300, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Megamacro",
  8942. height: math.unit(3200, "feet")
  8943. }
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(15, "feet"),
  8951. weight: math.unit(5026, "lb"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/luka-towers/front.svg",
  8955. extra: 1269/1133,
  8956. bottom: 51/1320
  8957. }
  8958. },
  8959. },
  8960. [
  8961. {
  8962. name: "Normal",
  8963. height: math.unit(15, "feet"),
  8964. default: true
  8965. },
  8966. {
  8967. name: "Minimacro",
  8968. height: math.unit(25, "feet")
  8969. },
  8970. {
  8971. name: "Macro",
  8972. height: math.unit(320, "feet")
  8973. },
  8974. {
  8975. name: "Megamacro",
  8976. height: math.unit(35000, "feet")
  8977. },
  8978. {
  8979. name: "Gigamacro",
  8980. height: math.unit(4000, "miles")
  8981. },
  8982. {
  8983. name: "Teramacro",
  8984. height: math.unit(15000, "miles")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(6, "feet"),
  8993. weight: math.unit(150, "lb"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/natalie-nightring/front.svg",
  8997. extra: 1,
  8998. bottom: 0.06
  8999. }
  9000. },
  9001. },
  9002. [
  9003. {
  9004. name: "Uh Oh",
  9005. height: math.unit(0.1, "mm")
  9006. },
  9007. {
  9008. name: "Small",
  9009. height: math.unit(3, "inches")
  9010. },
  9011. {
  9012. name: "Human Scale",
  9013. height: math.unit(6, "feet")
  9014. },
  9015. {
  9016. name: "Librarian",
  9017. height: math.unit(50, "feet"),
  9018. default: true
  9019. },
  9020. {
  9021. name: "Immense",
  9022. height: math.unit(200, "miles")
  9023. },
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9028. {
  9029. front: {
  9030. height: math.unit(6, "feet"),
  9031. weight: math.unit(180, "lbs"),
  9032. name: "Front",
  9033. image: {
  9034. source: "./media/characters/danni-rosie/front.svg",
  9035. extra: 1260 / 1128,
  9036. bottom: 0.022
  9037. }
  9038. },
  9039. },
  9040. [
  9041. {
  9042. name: "Micro",
  9043. height: math.unit(2, "inches"),
  9044. default: true
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(5 + 9 / 12, "feet"),
  9053. weight: math.unit(220, "lb"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/samantha-kruse/front.svg",
  9057. extra: (985 / 935),
  9058. bottom: 0.03
  9059. }
  9060. },
  9061. frontUndressed: {
  9062. height: math.unit(5 + 9 / 12, "feet"),
  9063. weight: math.unit(220, "lb"),
  9064. name: "Front (Undressed)",
  9065. image: {
  9066. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9067. extra: (973 / 923),
  9068. bottom: 0.025
  9069. }
  9070. },
  9071. fat: {
  9072. height: math.unit(5 + 9 / 12, "feet"),
  9073. weight: math.unit(900, "lb"),
  9074. name: "Front (Fat)",
  9075. image: {
  9076. source: "./media/characters/samantha-kruse/fat.svg",
  9077. extra: 2688 / 2561
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Normal",
  9084. height: math.unit(5 + 9 / 12, "feet"),
  9085. default: true
  9086. }
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9091. {
  9092. back: {
  9093. height: math.unit(5 + 4 / 12, "feet"),
  9094. weight: math.unit(4963, "lb"),
  9095. name: "Back",
  9096. image: {
  9097. source: "./media/characters/amelia-rosie/back.svg",
  9098. extra: 1113 / 963,
  9099. bottom: 0.01
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Level 0",
  9106. height: math.unit(5 + 4 / 12, "feet")
  9107. },
  9108. {
  9109. name: "Level 1",
  9110. height: math.unit(164597, "feet"),
  9111. default: true
  9112. },
  9113. {
  9114. name: "Level 2",
  9115. height: math.unit(956243, "miles")
  9116. },
  9117. {
  9118. name: "Level 3",
  9119. height: math.unit(29421709423, "miles")
  9120. },
  9121. {
  9122. name: "Level 4",
  9123. height: math.unit(154, "lightyears")
  9124. },
  9125. {
  9126. name: "Level 5",
  9127. height: math.unit(4738272, "lightyears")
  9128. },
  9129. {
  9130. name: "Level 6",
  9131. height: math.unit(145787152896, "lightyears")
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(5 + 11 / 12, "feet"),
  9140. weight: math.unit(65, "kg"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/rook-kitara/front.svg",
  9144. extra: 1347 / 1274,
  9145. bottom: 0.005
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Totally Unfair",
  9152. height: math.unit(1.8, "mm")
  9153. },
  9154. {
  9155. name: "Lap Rookie",
  9156. height: math.unit(1.4, "feet")
  9157. },
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(5 + 11 / 12, "feet"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "How Did This Happen",
  9165. height: math.unit(80, "miles")
  9166. }
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(7, "feet"),
  9174. weight: math.unit(300, "lb"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/pisces/front.svg",
  9178. extra: 2255 / 2115,
  9179. bottom: 0.03
  9180. }
  9181. },
  9182. back: {
  9183. height: math.unit(7, "feet"),
  9184. weight: math.unit(300, "lb"),
  9185. name: "Back",
  9186. image: {
  9187. source: "./media/characters/pisces/back.svg",
  9188. extra: 2146 / 2055,
  9189. bottom: 0.04
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Normal",
  9196. height: math.unit(7, "feet"),
  9197. default: true
  9198. },
  9199. {
  9200. name: "Swimming Pool",
  9201. height: math.unit(12.2, "meters")
  9202. },
  9203. {
  9204. name: "Olympic Swimming Pool",
  9205. height: math.unit(56.3, "meters")
  9206. },
  9207. {
  9208. name: "Lake Superior",
  9209. height: math.unit(93900, "meters")
  9210. },
  9211. {
  9212. name: "Mediterranean Sea",
  9213. height: math.unit(644457, "meters")
  9214. },
  9215. {
  9216. name: "World's Oceans",
  9217. height: math.unit(4567491, "meters")
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9223. {
  9224. front: {
  9225. height: math.unit(2.3, "meters"),
  9226. weight: math.unit(120, "kg"),
  9227. name: "Front",
  9228. image: {
  9229. source: "./media/characters/zelas/front.svg"
  9230. }
  9231. },
  9232. side: {
  9233. height: math.unit(2.3, "meters"),
  9234. weight: math.unit(120, "kg"),
  9235. name: "Side",
  9236. image: {
  9237. source: "./media/characters/zelas/side.svg"
  9238. }
  9239. },
  9240. back: {
  9241. height: math.unit(2.3, "meters"),
  9242. weight: math.unit(120, "kg"),
  9243. name: "Back",
  9244. image: {
  9245. source: "./media/characters/zelas/back.svg"
  9246. }
  9247. },
  9248. foot: {
  9249. height: math.unit(1.116, "feet"),
  9250. name: "Foot",
  9251. image: {
  9252. source: "./media/characters/zelas/foot.svg"
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(2.3, "meters")
  9260. },
  9261. {
  9262. name: "Macro",
  9263. height: math.unit(30, "meters"),
  9264. default: true
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(1, "inch"),
  9273. weight: math.unit(0.21, "grams"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/talbot/front.svg",
  9277. extra: 594 / 544
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Micro",
  9284. height: math.unit(1, "inch"),
  9285. default: true
  9286. },
  9287. ]
  9288. ))
  9289. characterMakers.push(() => makeCharacter(
  9290. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9291. {
  9292. front: {
  9293. height: math.unit(3 + 3 / 12, "feet"),
  9294. weight: math.unit(51.8, "lb"),
  9295. name: "Front",
  9296. image: {
  9297. source: "./media/characters/fliss/front.svg",
  9298. extra: 840 / 640
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Teeny Tiny",
  9305. height: math.unit(1, "mm")
  9306. },
  9307. {
  9308. name: "Small",
  9309. height: math.unit(1, "inch"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Standard Sylveon",
  9314. height: math.unit(3 + 3 / 12, "feet")
  9315. },
  9316. {
  9317. name: "Large Nuisance",
  9318. height: math.unit(33, "feet")
  9319. },
  9320. {
  9321. name: "City Filler",
  9322. height: math.unit(3000, "feet")
  9323. },
  9324. {
  9325. name: "New Horizon",
  9326. height: math.unit(6000, "miles")
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9332. {
  9333. front: {
  9334. height: math.unit(5, "cm"),
  9335. weight: math.unit(1.94, "g"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/fleta/front.svg",
  9339. extra: 835 / 803
  9340. }
  9341. },
  9342. back: {
  9343. height: math.unit(5, "cm"),
  9344. weight: math.unit(1.94, "g"),
  9345. name: "Back",
  9346. image: {
  9347. source: "./media/characters/fleta/back.svg",
  9348. extra: 835 / 803
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Micro",
  9355. height: math.unit(5, "cm"),
  9356. default: true
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(6, "feet"),
  9365. weight: math.unit(225, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/dominic/front.svg",
  9369. extra: 1770 / 1620,
  9370. bottom: 0.025
  9371. }
  9372. },
  9373. back: {
  9374. height: math.unit(6, "feet"),
  9375. weight: math.unit(225, "lb"),
  9376. name: "Back",
  9377. image: {
  9378. source: "./media/characters/dominic/back.svg",
  9379. extra: 1745 / 1620,
  9380. bottom: 0.065
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Nano",
  9387. height: math.unit(0.1, "mm")
  9388. },
  9389. {
  9390. name: "Micro-",
  9391. height: math.unit(1, "mm")
  9392. },
  9393. {
  9394. name: "Micro",
  9395. height: math.unit(4, "inches")
  9396. },
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(6 + 4 / 12, "feet"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Macro",
  9404. height: math.unit(115, "feet")
  9405. },
  9406. {
  9407. name: "Macro+",
  9408. height: math.unit(955, "feet")
  9409. },
  9410. {
  9411. name: "Megamacro",
  9412. height: math.unit(8990, "feet")
  9413. },
  9414. {
  9415. name: "Gigmacro",
  9416. height: math.unit(9310, "miles")
  9417. },
  9418. {
  9419. name: "Teramacro",
  9420. height: math.unit(1567005010, "miles")
  9421. },
  9422. {
  9423. name: "Examacro",
  9424. height: math.unit(1425, "parsecs")
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9430. {
  9431. front: {
  9432. height: math.unit(400, "feet"),
  9433. weight: math.unit(44444444, "lb"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/major-colonel/front.svg"
  9437. }
  9438. },
  9439. back: {
  9440. height: math.unit(400, "feet"),
  9441. weight: math.unit(44444444, "lb"),
  9442. name: "Back",
  9443. image: {
  9444. source: "./media/characters/major-colonel/back.svg"
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Macro",
  9451. height: math.unit(400, "feet"),
  9452. default: true
  9453. },
  9454. ]
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9458. {
  9459. catFront: {
  9460. height: math.unit(6, "feet"),
  9461. weight: math.unit(120, "lb"),
  9462. name: "Front (Cat Side)",
  9463. image: {
  9464. source: "./media/characters/axel-lycan/cat-front.svg",
  9465. extra: 430 / 402,
  9466. bottom: 43 / 472.35
  9467. }
  9468. },
  9469. catBack: {
  9470. height: math.unit(6, "feet"),
  9471. weight: math.unit(120, "lb"),
  9472. name: "Back (Cat Side)",
  9473. image: {
  9474. source: "./media/characters/axel-lycan/cat-back.svg",
  9475. extra: 447 / 419,
  9476. bottom: 23.3 / 469
  9477. }
  9478. },
  9479. wolfFront: {
  9480. height: math.unit(6, "feet"),
  9481. weight: math.unit(120, "lb"),
  9482. name: "Front (Wolf Side)",
  9483. image: {
  9484. source: "./media/characters/axel-lycan/wolf-front.svg",
  9485. extra: 485 / 456,
  9486. bottom: 19 / 504
  9487. }
  9488. },
  9489. wolfBack: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(120, "lb"),
  9492. name: "Back (Wolf Side)",
  9493. image: {
  9494. source: "./media/characters/axel-lycan/wolf-back.svg",
  9495. extra: 475 / 438,
  9496. bottom: 39.2 / 514
  9497. }
  9498. },
  9499. },
  9500. [
  9501. {
  9502. name: "Macro",
  9503. height: math.unit(1, "km"),
  9504. default: true
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9510. {
  9511. front: {
  9512. height: math.unit(5 + 9 / 12, "feet"),
  9513. weight: math.unit(175, "lb"),
  9514. name: "Front",
  9515. image: {
  9516. source: "./media/characters/vanrel-hyena/front.svg",
  9517. extra: 1086 / 1010,
  9518. bottom: 0.04
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Normal",
  9525. height: math.unit(5 + 9 / 12, "feet"),
  9526. default: true
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(103, "lb"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/abbott-absol/front.svg",
  9539. extra: 2010 / 1842
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Megamicro",
  9546. height: math.unit(0.1, "mm")
  9547. },
  9548. {
  9549. name: "Micro",
  9550. height: math.unit(1, "inch")
  9551. },
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(6, "feet"),
  9555. default: true
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(6, "feet"),
  9564. weight: math.unit(264, "lb"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/hector/front.svg",
  9568. extra: 2280 / 2130,
  9569. bottom: 0.07
  9570. }
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(12.25, "foot"),
  9577. default: true
  9578. },
  9579. {
  9580. name: "Macro",
  9581. height: math.unit(160, "feet")
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9587. {
  9588. front: {
  9589. height: math.unit(6, "feet"),
  9590. weight: math.unit(150, "lb"),
  9591. name: "Front",
  9592. image: {
  9593. source: "./media/characters/sal/front.svg",
  9594. extra: 1846 / 1699,
  9595. bottom: 0.04
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Megamacro",
  9602. height: math.unit(10, "miles"),
  9603. default: true
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9609. {
  9610. front: {
  9611. height: math.unit(3, "meters"),
  9612. weight: math.unit(450, "kg"),
  9613. name: "front",
  9614. image: {
  9615. source: "./media/characters/ranger/front.svg",
  9616. extra: 2401 / 2243,
  9617. bottom: 0.05
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Normal",
  9624. height: math.unit(3, "meters"),
  9625. default: true
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(14, "feet"),
  9634. weight: math.unit(800, "kg"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/theresa/front.svg",
  9638. extra: 3575 / 3346,
  9639. bottom: 0.03
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(14, "feet"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9653. {
  9654. front: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(3, "kg"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/ine/front.svg",
  9660. extra: 678 / 539,
  9661. bottom: 0.023
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(2.265, "feet"),
  9669. default: true
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(5, "feet"),
  9678. weight: math.unit(30, "kg"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/vial/front.svg",
  9682. extra: 1365 / 1277,
  9683. bottom: 0.04
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(5, "feet"),
  9691. default: true
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9697. {
  9698. side: {
  9699. height: math.unit(3.4, "meters"),
  9700. weight: math.unit(1000, "lb"),
  9701. name: "Side",
  9702. image: {
  9703. source: "./media/characters/rovoska/side.svg",
  9704. extra: 4403 / 1515
  9705. }
  9706. },
  9707. },
  9708. [
  9709. {
  9710. name: "Normal",
  9711. height: math.unit(3.4, "meters"),
  9712. default: true
  9713. },
  9714. ]
  9715. ))
  9716. characterMakers.push(() => makeCharacter(
  9717. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9718. {
  9719. front: {
  9720. height: math.unit(8, "feet"),
  9721. weight: math.unit(315, "lb"),
  9722. name: "Front",
  9723. image: {
  9724. source: "./media/characters/gunner-rotthbauer/front.svg"
  9725. }
  9726. },
  9727. back: {
  9728. height: math.unit(8, "feet"),
  9729. weight: math.unit(315, "lb"),
  9730. name: "Back",
  9731. image: {
  9732. source: "./media/characters/gunner-rotthbauer/back.svg"
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Micro",
  9739. height: math.unit(3.5, "inches")
  9740. },
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(8, "feet"),
  9744. default: true
  9745. },
  9746. {
  9747. name: "Macro",
  9748. height: math.unit(250, "feet")
  9749. },
  9750. {
  9751. name: "Megamacro",
  9752. height: math.unit(1, "AU")
  9753. },
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9758. {
  9759. front: {
  9760. height: math.unit(5 + 5 / 12, "feet"),
  9761. weight: math.unit(140, "lb"),
  9762. name: "Front",
  9763. image: {
  9764. source: "./media/characters/allatia/front.svg",
  9765. extra: 1227 / 1180,
  9766. bottom: 0.027
  9767. }
  9768. },
  9769. },
  9770. [
  9771. {
  9772. name: "Normal",
  9773. height: math.unit(5 + 5 / 12, "feet")
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(250, "feet"),
  9778. default: true
  9779. },
  9780. {
  9781. name: "Megamacro",
  9782. height: math.unit(8, "miles")
  9783. }
  9784. ]
  9785. ))
  9786. characterMakers.push(() => makeCharacter(
  9787. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9788. {
  9789. front: {
  9790. height: math.unit(6, "feet"),
  9791. weight: math.unit(120, "lb"),
  9792. name: "Front",
  9793. image: {
  9794. source: "./media/characters/tene/front.svg",
  9795. extra: 1728 / 1578,
  9796. bottom: 0.022
  9797. }
  9798. },
  9799. stomping: {
  9800. height: math.unit(2.025, "meters"),
  9801. weight: math.unit(120, "lb"),
  9802. name: "Stomping",
  9803. image: {
  9804. source: "./media/characters/tene/stomping.svg",
  9805. extra: 938 / 873,
  9806. bottom: 0.01
  9807. }
  9808. },
  9809. sitting: {
  9810. height: math.unit(1, "meter"),
  9811. weight: math.unit(120, "lb"),
  9812. name: "Sitting",
  9813. image: {
  9814. source: "./media/characters/tene/sitting.svg",
  9815. extra: 437 / 415,
  9816. bottom: 0.1
  9817. }
  9818. },
  9819. feral: {
  9820. height: math.unit(3.9, "feet"),
  9821. weight: math.unit(250, "lb"),
  9822. name: "Feral",
  9823. image: {
  9824. source: "./media/characters/tene/feral.svg",
  9825. extra: 717 / 458,
  9826. bottom: 0.179
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Normal",
  9833. height: math.unit(6, "feet")
  9834. },
  9835. {
  9836. name: "Macro",
  9837. height: math.unit(300, "feet"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "Megamacro",
  9842. height: math.unit(5, "miles")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9848. {
  9849. side: {
  9850. height: math.unit(6, "feet"),
  9851. name: "Side",
  9852. image: {
  9853. source: "./media/characters/evander/side.svg",
  9854. extra: 877 / 477
  9855. }
  9856. },
  9857. },
  9858. [
  9859. {
  9860. name: "Normal",
  9861. height: math.unit(0.83, "meters"),
  9862. default: true
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(12, "feet"),
  9871. weight: math.unit(1000, "lb"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9875. extra: 1762 / 1611
  9876. }
  9877. },
  9878. back: {
  9879. height: math.unit(12, "feet"),
  9880. weight: math.unit(1000, "lb"),
  9881. name: "Back",
  9882. image: {
  9883. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9884. extra: 1762 / 1611
  9885. }
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Normal",
  9891. height: math.unit(12, "feet"),
  9892. default: true
  9893. },
  9894. {
  9895. name: "Kaiju",
  9896. height: math.unit(150, "feet")
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9902. {
  9903. front: {
  9904. height: math.unit(6, "feet"),
  9905. weight: math.unit(150, "lb"),
  9906. name: "Front",
  9907. image: {
  9908. source: "./media/characters/zero-alurus/front.svg"
  9909. }
  9910. },
  9911. back: {
  9912. height: math.unit(6, "feet"),
  9913. weight: math.unit(150, "lb"),
  9914. name: "Back",
  9915. image: {
  9916. source: "./media/characters/zero-alurus/back.svg"
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(5 + 10 / 12, "feet")
  9924. },
  9925. {
  9926. name: "Macro",
  9927. height: math.unit(60, "feet"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Macro+",
  9932. height: math.unit(450, "feet")
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(200, "lb"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/mega-shi/front.svg",
  9945. extra: 1279 / 1250,
  9946. bottom: 0.02
  9947. }
  9948. },
  9949. back: {
  9950. height: math.unit(6, "feet"),
  9951. weight: math.unit(200, "lb"),
  9952. name: "Back",
  9953. image: {
  9954. source: "./media/characters/mega-shi/back.svg",
  9955. extra: 1279 / 1250,
  9956. bottom: 0.02
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Micro",
  9963. height: math.unit(16 + 6 / 12, "feet")
  9964. },
  9965. {
  9966. name: "Third Dimension",
  9967. height: math.unit(40, "meters")
  9968. },
  9969. {
  9970. name: "Normal",
  9971. height: math.unit(660, "feet"),
  9972. default: true
  9973. },
  9974. {
  9975. name: "Megamacro",
  9976. height: math.unit(10, "miles")
  9977. },
  9978. {
  9979. name: "Planetary Launch",
  9980. height: math.unit(500, "miles")
  9981. },
  9982. {
  9983. name: "Interstellar",
  9984. height: math.unit(1e9, "miles")
  9985. },
  9986. {
  9987. name: "Leaving the Universe",
  9988. height: math.unit(1, "gigaparsec")
  9989. },
  9990. {
  9991. name: "Travelling Universes",
  9992. height: math.unit(30e15, "parsecs")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(6, "feet"),
  10001. weight: math.unit(150, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/odyssey/front.svg",
  10005. extra: 1782 / 1582,
  10006. bottom: 0.01
  10007. }
  10008. },
  10009. side: {
  10010. height: math.unit(5.7, "feet"),
  10011. weight: math.unit(140, "lb"),
  10012. name: "Side",
  10013. image: {
  10014. source: "./media/characters/odyssey/side.svg",
  10015. extra: 6462 / 5700
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(5 + 4 / 12, "feet")
  10023. },
  10024. {
  10025. name: "Macro",
  10026. height: math.unit(1, "km")
  10027. },
  10028. {
  10029. name: "Megamacro",
  10030. height: math.unit(3000, "km")
  10031. },
  10032. {
  10033. name: "Gigamacro",
  10034. height: math.unit(1, "AU"),
  10035. default: true
  10036. },
  10037. {
  10038. name: "Omniversal",
  10039. height: math.unit(100e14, "lightyears")
  10040. },
  10041. ]
  10042. ))
  10043. characterMakers.push(() => makeCharacter(
  10044. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10045. {
  10046. front: {
  10047. height: math.unit(6, "feet"),
  10048. weight: math.unit(300, "lb"),
  10049. name: "Front",
  10050. image: {
  10051. source: "./media/characters/mekuto/front.svg",
  10052. extra: 921 / 832,
  10053. bottom: 0.03
  10054. }
  10055. },
  10056. hand: {
  10057. height: math.unit(6 / 10.24, "feet"),
  10058. name: "Hand",
  10059. image: {
  10060. source: "./media/characters/mekuto/hand.svg"
  10061. }
  10062. },
  10063. foot: {
  10064. height: math.unit(6 / 5.05, "feet"),
  10065. name: "Foot",
  10066. image: {
  10067. source: "./media/characters/mekuto/foot.svg"
  10068. }
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Minimicro",
  10074. height: math.unit(0.2, "inches")
  10075. },
  10076. {
  10077. name: "Micro",
  10078. height: math.unit(1.5, "inches")
  10079. },
  10080. {
  10081. name: "Normal",
  10082. height: math.unit(5 + 11 / 12, "feet"),
  10083. default: true
  10084. },
  10085. {
  10086. name: "Minimacro",
  10087. height: math.unit(17 + 9 / 12, "feet")
  10088. },
  10089. {
  10090. name: "Macro",
  10091. height: math.unit(177.5, "feet")
  10092. },
  10093. {
  10094. name: "Megamacro",
  10095. height: math.unit(152, "miles")
  10096. },
  10097. ]
  10098. ))
  10099. characterMakers.push(() => makeCharacter(
  10100. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10101. {
  10102. front: {
  10103. height: math.unit(6.5, "inches"),
  10104. weight: math.unit(13, "oz"),
  10105. name: "Front",
  10106. image: {
  10107. source: "./media/characters/dafydd-tomos/front.svg",
  10108. extra: 2990 / 2603,
  10109. bottom: 0.03
  10110. }
  10111. },
  10112. },
  10113. [
  10114. {
  10115. name: "Micro",
  10116. height: math.unit(6.5, "inches"),
  10117. default: true
  10118. },
  10119. ]
  10120. ))
  10121. characterMakers.push(() => makeCharacter(
  10122. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10123. {
  10124. front: {
  10125. height: math.unit(6, "feet"),
  10126. weight: math.unit(150, "lb"),
  10127. name: "Front",
  10128. image: {
  10129. source: "./media/characters/splinter/front.svg",
  10130. extra: 2990 / 2882,
  10131. bottom: 0.04
  10132. }
  10133. },
  10134. back: {
  10135. height: math.unit(6, "feet"),
  10136. weight: math.unit(150, "lb"),
  10137. name: "Back",
  10138. image: {
  10139. source: "./media/characters/splinter/back.svg",
  10140. extra: 2990 / 2882,
  10141. bottom: 0.04
  10142. }
  10143. },
  10144. },
  10145. [
  10146. {
  10147. name: "Normal",
  10148. height: math.unit(6, "feet")
  10149. },
  10150. {
  10151. name: "Macro",
  10152. height: math.unit(230, "meters"),
  10153. default: true
  10154. },
  10155. ]
  10156. ))
  10157. characterMakers.push(() => makeCharacter(
  10158. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10159. {
  10160. front: {
  10161. height: math.unit(4 + 10 / 12, "feet"),
  10162. weight: math.unit(480, "lb"),
  10163. name: "Front",
  10164. image: {
  10165. source: "./media/characters/snow-gabumon/front.svg",
  10166. extra: 1140 / 963,
  10167. bottom: 0.058
  10168. }
  10169. },
  10170. back: {
  10171. height: math.unit(4 + 10 / 12, "feet"),
  10172. weight: math.unit(480, "lb"),
  10173. name: "Back",
  10174. image: {
  10175. source: "./media/characters/snow-gabumon/back.svg",
  10176. extra: 1115 / 962,
  10177. bottom: 0.041
  10178. }
  10179. },
  10180. frontUndresed: {
  10181. height: math.unit(4 + 10 / 12, "feet"),
  10182. weight: math.unit(480, "lb"),
  10183. name: "Front (Undressed)",
  10184. image: {
  10185. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10186. extra: 1061 / 960,
  10187. bottom: 0.045
  10188. }
  10189. },
  10190. },
  10191. [
  10192. {
  10193. name: "Micro",
  10194. height: math.unit(1, "inch")
  10195. },
  10196. {
  10197. name: "Normal",
  10198. height: math.unit(4 + 10 / 12, "feet"),
  10199. default: true
  10200. },
  10201. {
  10202. name: "Macro",
  10203. height: math.unit(200, "feet")
  10204. },
  10205. {
  10206. name: "Megamacro",
  10207. height: math.unit(120, "miles")
  10208. },
  10209. {
  10210. name: "Gigamacro",
  10211. height: math.unit(9800, "miles")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10217. {
  10218. front: {
  10219. height: math.unit(1.7, "meters"),
  10220. weight: math.unit(140, "lb"),
  10221. name: "Front",
  10222. image: {
  10223. source: "./media/characters/moody/front.svg",
  10224. extra: 3226 / 3007,
  10225. bottom: 0.087
  10226. }
  10227. },
  10228. },
  10229. [
  10230. {
  10231. name: "Micro",
  10232. height: math.unit(1, "mm")
  10233. },
  10234. {
  10235. name: "Normal",
  10236. height: math.unit(1.7, "meters"),
  10237. default: true
  10238. },
  10239. {
  10240. name: "Macro",
  10241. height: math.unit(80, "meters")
  10242. },
  10243. {
  10244. name: "Macro+",
  10245. height: math.unit(500, "meters")
  10246. },
  10247. ]
  10248. ))
  10249. characterMakers.push(() => makeCharacter(
  10250. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10251. {
  10252. front: {
  10253. height: math.unit(6, "feet"),
  10254. weight: math.unit(150, "lb"),
  10255. name: "Front",
  10256. image: {
  10257. source: "./media/characters/zyas/front.svg",
  10258. extra: 1180 / 1120,
  10259. bottom: 0.045
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(10, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Macro",
  10271. height: math.unit(500, "feet")
  10272. },
  10273. {
  10274. name: "Megamacro",
  10275. height: math.unit(5, "miles")
  10276. },
  10277. {
  10278. name: "Teramacro",
  10279. height: math.unit(150000, "miles")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10285. {
  10286. front: {
  10287. height: math.unit(6, "feet"),
  10288. weight: math.unit(150, "lb"),
  10289. name: "Front",
  10290. image: {
  10291. source: "./media/characters/cuon/front.svg",
  10292. extra: 1390 / 1320,
  10293. bottom: 0.008
  10294. }
  10295. },
  10296. },
  10297. [
  10298. {
  10299. name: "Micro",
  10300. height: math.unit(3, "inches")
  10301. },
  10302. {
  10303. name: "Normal",
  10304. height: math.unit(18 + 9 / 12, "feet"),
  10305. default: true
  10306. },
  10307. {
  10308. name: "Macro",
  10309. height: math.unit(360, "feet")
  10310. },
  10311. {
  10312. name: "Megamacro",
  10313. height: math.unit(360, "miles")
  10314. },
  10315. ]
  10316. ))
  10317. characterMakers.push(() => makeCharacter(
  10318. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10319. {
  10320. front: {
  10321. height: math.unit(2.4, "meters"),
  10322. weight: math.unit(70, "kg"),
  10323. name: "Front",
  10324. image: {
  10325. source: "./media/characters/nyanuxk/front.svg",
  10326. extra: 1172 / 1084,
  10327. bottom: 0.065
  10328. }
  10329. },
  10330. side: {
  10331. height: math.unit(2.4, "meters"),
  10332. weight: math.unit(70, "kg"),
  10333. name: "Side",
  10334. image: {
  10335. source: "./media/characters/nyanuxk/side.svg",
  10336. extra: 1190 / 1132,
  10337. bottom: 0.007
  10338. }
  10339. },
  10340. back: {
  10341. height: math.unit(2.4, "meters"),
  10342. weight: math.unit(70, "kg"),
  10343. name: "Back",
  10344. image: {
  10345. source: "./media/characters/nyanuxk/back.svg",
  10346. extra: 1200 / 1141,
  10347. bottom: 0.015
  10348. }
  10349. },
  10350. foot: {
  10351. height: math.unit(0.52, "meters"),
  10352. name: "Foot",
  10353. image: {
  10354. source: "./media/characters/nyanuxk/foot.svg"
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Micro",
  10361. height: math.unit(2, "cm")
  10362. },
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(2.4, "meters"),
  10366. default: true
  10367. },
  10368. {
  10369. name: "Smaller Macro",
  10370. height: math.unit(120, "meters")
  10371. },
  10372. {
  10373. name: "Bigger Macro",
  10374. height: math.unit(1.2, "km")
  10375. },
  10376. {
  10377. name: "Megamacro",
  10378. height: math.unit(15, "kilometers")
  10379. },
  10380. {
  10381. name: "Gigamacro",
  10382. height: math.unit(2000, "km")
  10383. },
  10384. {
  10385. name: "Teramacro",
  10386. height: math.unit(500000, "km")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10392. {
  10393. side: {
  10394. height: math.unit(6, "feet"),
  10395. name: "Side",
  10396. image: {
  10397. source: "./media/characters/ailbhe/side.svg",
  10398. extra: 757 / 464,
  10399. bottom: 0.041
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(1.07, "meters"),
  10407. default: true
  10408. },
  10409. ]
  10410. ))
  10411. characterMakers.push(() => makeCharacter(
  10412. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10413. {
  10414. front: {
  10415. height: math.unit(6, "feet"),
  10416. weight: math.unit(120, "kg"),
  10417. name: "Front",
  10418. image: {
  10419. source: "./media/characters/zevulfius/front.svg",
  10420. extra: 965 / 903
  10421. }
  10422. },
  10423. side: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(120, "kg"),
  10426. name: "Side",
  10427. image: {
  10428. source: "./media/characters/zevulfius/side.svg",
  10429. extra: 939 / 900
  10430. }
  10431. },
  10432. back: {
  10433. height: math.unit(6, "feet"),
  10434. weight: math.unit(120, "kg"),
  10435. name: "Back",
  10436. image: {
  10437. source: "./media/characters/zevulfius/back.svg",
  10438. extra: 918 / 854,
  10439. bottom: 0.005
  10440. }
  10441. },
  10442. foot: {
  10443. height: math.unit(6 / 3.72, "feet"),
  10444. name: "Foot",
  10445. image: {
  10446. source: "./media/characters/zevulfius/foot.svg"
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Macro",
  10453. height: math.unit(750, "meters")
  10454. },
  10455. {
  10456. name: "Megamacro",
  10457. height: math.unit(20, "km"),
  10458. default: true
  10459. },
  10460. {
  10461. name: "Gigamacro",
  10462. height: math.unit(2000, "km")
  10463. },
  10464. {
  10465. name: "Teramacro",
  10466. height: math.unit(250000, "km")
  10467. },
  10468. ]
  10469. ))
  10470. characterMakers.push(() => makeCharacter(
  10471. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10472. {
  10473. front: {
  10474. height: math.unit(100, "feet"),
  10475. weight: math.unit(350, "kg"),
  10476. name: "Front",
  10477. image: {
  10478. source: "./media/characters/rikes/front.svg",
  10479. extra: 1565 / 1483,
  10480. bottom: 0.017
  10481. }
  10482. },
  10483. },
  10484. [
  10485. {
  10486. name: "Macro",
  10487. height: math.unit(100, "feet"),
  10488. default: true
  10489. },
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(8, "feet"),
  10497. weight: math.unit(356, "lb"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/adam-silver-mane/front.svg",
  10501. extra: 1036/937,
  10502. bottom: 63/1099
  10503. }
  10504. },
  10505. side: {
  10506. height: math.unit(8, "feet"),
  10507. weight: math.unit(356, "lb"),
  10508. name: "Side",
  10509. image: {
  10510. source: "./media/characters/adam-silver-mane/side.svg",
  10511. extra: 997/901,
  10512. bottom: 59/1056
  10513. }
  10514. },
  10515. frontNsfw: {
  10516. height: math.unit(8, "feet"),
  10517. weight: math.unit(356, "lb"),
  10518. name: "Front (NSFW)",
  10519. image: {
  10520. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10521. extra: 1036/937,
  10522. bottom: 63/1099
  10523. }
  10524. },
  10525. sideNsfw: {
  10526. height: math.unit(8, "feet"),
  10527. weight: math.unit(356, "lb"),
  10528. name: "Side (NSFW)",
  10529. image: {
  10530. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10531. extra: 997/901,
  10532. bottom: 59/1056
  10533. }
  10534. },
  10535. dick: {
  10536. height: math.unit(2.1, "feet"),
  10537. name: "Dick",
  10538. image: {
  10539. source: "./media/characters/adam-silver-mane/dick.svg"
  10540. }
  10541. },
  10542. taur: {
  10543. height: math.unit(16, "feet"),
  10544. weight: math.unit(1500, "kg"),
  10545. name: "Taur",
  10546. image: {
  10547. source: "./media/characters/adam-silver-mane/taur.svg",
  10548. extra: 1713 / 1571,
  10549. bottom: 0.01
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Normal",
  10556. height: math.unit(8, "feet")
  10557. },
  10558. {
  10559. name: "Minimacro",
  10560. height: math.unit(80, "feet")
  10561. },
  10562. {
  10563. name: "MDA",
  10564. height: math.unit(80, "meters")
  10565. },
  10566. {
  10567. name: "Macro",
  10568. height: math.unit(800, "feet"),
  10569. default: true
  10570. },
  10571. {
  10572. name: "Megamacro",
  10573. height: math.unit(8000, "feet")
  10574. },
  10575. {
  10576. name: "Gigamacro",
  10577. height: math.unit(800, "miles")
  10578. },
  10579. {
  10580. name: "Teramacro",
  10581. height: math.unit(80000, "miles")
  10582. },
  10583. {
  10584. name: "Celestial",
  10585. height: math.unit(8e6, "miles")
  10586. },
  10587. {
  10588. name: "Star Dragon",
  10589. height: math.unit(800000, "parsecs")
  10590. },
  10591. {
  10592. name: "Godly",
  10593. height: math.unit(800, "teraparsecs")
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(150, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/ky'owin/front.svg",
  10606. extra: 3888 / 3068,
  10607. bottom: 0.015
  10608. }
  10609. },
  10610. },
  10611. [
  10612. {
  10613. name: "Normal",
  10614. height: math.unit(6 + 8 / 12, "feet")
  10615. },
  10616. {
  10617. name: "Large",
  10618. height: math.unit(68, "feet")
  10619. },
  10620. {
  10621. name: "Macro",
  10622. height: math.unit(132, "feet")
  10623. },
  10624. {
  10625. name: "Macro+",
  10626. height: math.unit(340, "feet")
  10627. },
  10628. {
  10629. name: "Macro++",
  10630. height: math.unit(680, "feet"),
  10631. default: true
  10632. },
  10633. {
  10634. name: "Megamacro",
  10635. height: math.unit(1, "mile")
  10636. },
  10637. {
  10638. name: "Megamacro+",
  10639. height: math.unit(10, "miles")
  10640. },
  10641. ]
  10642. ))
  10643. characterMakers.push(() => makeCharacter(
  10644. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10645. {
  10646. front: {
  10647. height: math.unit(4, "feet"),
  10648. weight: math.unit(50, "lb"),
  10649. name: "Front",
  10650. image: {
  10651. source: "./media/characters/mal/front.svg",
  10652. extra: 785 / 724,
  10653. bottom: 0.07
  10654. }
  10655. },
  10656. },
  10657. [
  10658. {
  10659. name: "Micro",
  10660. height: math.unit(4, "inches")
  10661. },
  10662. {
  10663. name: "Normal",
  10664. height: math.unit(4, "feet"),
  10665. default: true
  10666. },
  10667. {
  10668. name: "Macro",
  10669. height: math.unit(200, "feet")
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10675. {
  10676. front: {
  10677. height: math.unit(6, "feet"),
  10678. weight: math.unit(150, "lb"),
  10679. name: "Front",
  10680. image: {
  10681. source: "./media/characters/jordan-deware/front.svg",
  10682. extra: 1191 / 1012
  10683. }
  10684. },
  10685. },
  10686. [
  10687. {
  10688. name: "Nano",
  10689. height: math.unit(0.01, "mm")
  10690. },
  10691. {
  10692. name: "Minimicro",
  10693. height: math.unit(1, "mm")
  10694. },
  10695. {
  10696. name: "Micro",
  10697. height: math.unit(0.5, "inches")
  10698. },
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(4, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Minimacro",
  10706. height: math.unit(40, "meters")
  10707. },
  10708. {
  10709. name: "Small Macro",
  10710. height: math.unit(400, "meters")
  10711. },
  10712. {
  10713. name: "Macro",
  10714. height: math.unit(4, "miles")
  10715. },
  10716. {
  10717. name: "Megamacro",
  10718. height: math.unit(40, "miles")
  10719. },
  10720. {
  10721. name: "Megamacro+",
  10722. height: math.unit(400, "miles")
  10723. },
  10724. {
  10725. name: "Gigamacro",
  10726. height: math.unit(400000, "miles")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10732. {
  10733. side: {
  10734. height: math.unit(6, "feet"),
  10735. weight: math.unit(150, "lb"),
  10736. name: "Side",
  10737. image: {
  10738. source: "./media/characters/kimiko/side.svg",
  10739. extra: 600 / 358
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Normal",
  10746. height: math.unit(15, "feet"),
  10747. default: true
  10748. },
  10749. {
  10750. name: "Macro",
  10751. height: math.unit(220, "feet")
  10752. },
  10753. {
  10754. name: "Macro+",
  10755. height: math.unit(1450, "feet")
  10756. },
  10757. {
  10758. name: "Megamacro",
  10759. height: math.unit(11500, "feet")
  10760. },
  10761. {
  10762. name: "Gigamacro",
  10763. height: math.unit(9500, "miles")
  10764. },
  10765. {
  10766. name: "Teramacro",
  10767. height: math.unit(2208005005, "miles")
  10768. },
  10769. {
  10770. name: "Examacro",
  10771. height: math.unit(2750, "parsecs")
  10772. },
  10773. {
  10774. name: "Zettamacro",
  10775. height: math.unit(101500, "parsecs")
  10776. },
  10777. ]
  10778. ))
  10779. characterMakers.push(() => makeCharacter(
  10780. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10781. {
  10782. front: {
  10783. height: math.unit(6, "feet"),
  10784. weight: math.unit(70, "kg"),
  10785. name: "Front",
  10786. image: {
  10787. source: "./media/characters/andrew-sleepy/front.svg"
  10788. }
  10789. },
  10790. side: {
  10791. height: math.unit(6, "feet"),
  10792. weight: math.unit(70, "kg"),
  10793. name: "Side",
  10794. image: {
  10795. source: "./media/characters/andrew-sleepy/side.svg"
  10796. }
  10797. },
  10798. },
  10799. [
  10800. {
  10801. name: "Micro",
  10802. height: math.unit(1, "mm"),
  10803. default: true
  10804. },
  10805. ]
  10806. ))
  10807. characterMakers.push(() => makeCharacter(
  10808. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10809. {
  10810. front: {
  10811. height: math.unit(6, "feet"),
  10812. weight: math.unit(150, "lb"),
  10813. name: "Front",
  10814. image: {
  10815. source: "./media/characters/judio/front.svg",
  10816. extra: 1258 / 1110
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Normal",
  10823. height: math.unit(5 + 6 / 12, "feet")
  10824. },
  10825. {
  10826. name: "Macro",
  10827. height: math.unit(1000, "feet"),
  10828. default: true
  10829. },
  10830. {
  10831. name: "Megamacro",
  10832. height: math.unit(10, "miles")
  10833. },
  10834. ]
  10835. ))
  10836. characterMakers.push(() => makeCharacter(
  10837. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10838. {
  10839. front: {
  10840. height: math.unit(6, "feet"),
  10841. weight: math.unit(68, "kg"),
  10842. name: "Front",
  10843. image: {
  10844. source: "./media/characters/nomaxice/front.svg",
  10845. extra: 1498 / 1073,
  10846. bottom: 0.075
  10847. }
  10848. },
  10849. foot: {
  10850. height: math.unit(1.1, "feet"),
  10851. name: "Foot",
  10852. image: {
  10853. source: "./media/characters/nomaxice/foot.svg"
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Micro",
  10860. height: math.unit(8, "cm")
  10861. },
  10862. {
  10863. name: "Norm",
  10864. height: math.unit(1.82, "m")
  10865. },
  10866. {
  10867. name: "Norm+",
  10868. height: math.unit(8.8, "feet")
  10869. },
  10870. {
  10871. name: "Big",
  10872. height: math.unit(8, "meters"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Macro",
  10877. height: math.unit(18, "meters")
  10878. },
  10879. {
  10880. name: "Macro+",
  10881. height: math.unit(88, "meters")
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10887. {
  10888. front: {
  10889. height: math.unit(12, "feet"),
  10890. weight: math.unit(1.5, "tons"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/dydros/front.svg",
  10894. extra: 863 / 800,
  10895. bottom: 0.015
  10896. }
  10897. },
  10898. back: {
  10899. height: math.unit(12, "feet"),
  10900. weight: math.unit(1.5, "tons"),
  10901. name: "Back",
  10902. image: {
  10903. source: "./media/characters/dydros/back.svg",
  10904. extra: 900 / 843,
  10905. bottom: 0.005
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Normal",
  10912. height: math.unit(12, "feet"),
  10913. default: true
  10914. },
  10915. ]
  10916. ))
  10917. characterMakers.push(() => makeCharacter(
  10918. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10919. {
  10920. front: {
  10921. height: math.unit(6, "feet"),
  10922. weight: math.unit(100, "kg"),
  10923. name: "Front",
  10924. image: {
  10925. source: "./media/characters/riggi/front.svg",
  10926. extra: 5787 / 5303
  10927. }
  10928. },
  10929. hyper: {
  10930. height: math.unit(6 * 5 / 3, "feet"),
  10931. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10932. name: "Hyper",
  10933. image: {
  10934. source: "./media/characters/riggi/hyper.svg",
  10935. extra: 3595 / 3485
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Small Macro",
  10942. height: math.unit(50, "feet")
  10943. },
  10944. {
  10945. name: "Default",
  10946. height: math.unit(200, "feet"),
  10947. default: true
  10948. },
  10949. {
  10950. name: "Loom",
  10951. height: math.unit(10000, "feet")
  10952. },
  10953. {
  10954. name: "Cruising Altitude",
  10955. height: math.unit(30000, "feet")
  10956. },
  10957. {
  10958. name: "Megamacro",
  10959. height: math.unit(100, "miles")
  10960. },
  10961. {
  10962. name: "Continent Sized",
  10963. height: math.unit(2800, "miles")
  10964. },
  10965. {
  10966. name: "Earth Sized",
  10967. height: math.unit(8000, "miles")
  10968. },
  10969. ]
  10970. ))
  10971. characterMakers.push(() => makeCharacter(
  10972. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10973. {
  10974. front: {
  10975. height: math.unit(6, "feet"),
  10976. weight: math.unit(250, "lb"),
  10977. name: "Front",
  10978. image: {
  10979. source: "./media/characters/alexi/front.svg",
  10980. extra: 3483 / 3291,
  10981. bottom: 0.04
  10982. }
  10983. },
  10984. back: {
  10985. height: math.unit(6, "feet"),
  10986. weight: math.unit(250, "lb"),
  10987. name: "Back",
  10988. image: {
  10989. source: "./media/characters/alexi/back.svg",
  10990. extra: 3533 / 3356,
  10991. bottom: 0.021
  10992. }
  10993. },
  10994. frontTransforming: {
  10995. height: math.unit(8.58, "feet"),
  10996. weight: math.unit(1300, "lb"),
  10997. name: "Transforming",
  10998. image: {
  10999. source: "./media/characters/alexi/front-transforming.svg",
  11000. extra: 437 / 409,
  11001. bottom: 19 / 458.66
  11002. }
  11003. },
  11004. frontTransformed: {
  11005. height: math.unit(12.5, "feet"),
  11006. weight: math.unit(4000, "lb"),
  11007. name: "Transformed",
  11008. image: {
  11009. source: "./media/characters/alexi/front-transformed.svg",
  11010. extra: 639 / 614,
  11011. bottom: 30.55 / 671
  11012. }
  11013. },
  11014. },
  11015. [
  11016. {
  11017. name: "Normal",
  11018. height: math.unit(14, "feet"),
  11019. default: true
  11020. },
  11021. {
  11022. name: "Minimacro",
  11023. height: math.unit(30, "meters")
  11024. },
  11025. {
  11026. name: "Macro",
  11027. height: math.unit(500, "meters")
  11028. },
  11029. {
  11030. name: "Megamacro",
  11031. height: math.unit(9000, "km")
  11032. },
  11033. {
  11034. name: "Teramacro",
  11035. height: math.unit(384000, "km")
  11036. },
  11037. ]
  11038. ))
  11039. characterMakers.push(() => makeCharacter(
  11040. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11041. {
  11042. front: {
  11043. height: math.unit(6, "feet"),
  11044. weight: math.unit(150, "lb"),
  11045. name: "Front",
  11046. image: {
  11047. source: "./media/characters/kayroo/front.svg",
  11048. extra: 1153 / 1038,
  11049. bottom: 0.06
  11050. }
  11051. },
  11052. foot: {
  11053. height: math.unit(6, "feet"),
  11054. weight: math.unit(150, "lb"),
  11055. name: "Foot",
  11056. image: {
  11057. source: "./media/characters/kayroo/foot.svg"
  11058. }
  11059. },
  11060. },
  11061. [
  11062. {
  11063. name: "Normal",
  11064. height: math.unit(8, "feet"),
  11065. default: true
  11066. },
  11067. {
  11068. name: "Minimacro",
  11069. height: math.unit(250, "feet")
  11070. },
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(2800, "feet")
  11074. },
  11075. {
  11076. name: "Megamacro",
  11077. height: math.unit(5200, "feet")
  11078. },
  11079. {
  11080. name: "Gigamacro",
  11081. height: math.unit(27000, "feet")
  11082. },
  11083. {
  11084. name: "Omega",
  11085. height: math.unit(45000, "feet")
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11091. {
  11092. front: {
  11093. height: math.unit(18, "feet"),
  11094. weight: math.unit(5800, "lb"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/rhys/front.svg",
  11098. extra: 3386 / 3090,
  11099. bottom: 0.07
  11100. }
  11101. },
  11102. },
  11103. [
  11104. {
  11105. name: "Normal",
  11106. height: math.unit(18, "feet"),
  11107. default: true
  11108. },
  11109. {
  11110. name: "Working Size",
  11111. height: math.unit(200, "feet")
  11112. },
  11113. {
  11114. name: "Demolition Size",
  11115. height: math.unit(2000, "feet")
  11116. },
  11117. {
  11118. name: "Maximum Licensed Size",
  11119. height: math.unit(5, "miles")
  11120. },
  11121. {
  11122. name: "Maximum Observed Size",
  11123. height: math.unit(10, "yottameters")
  11124. },
  11125. ]
  11126. ))
  11127. characterMakers.push(() => makeCharacter(
  11128. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11129. {
  11130. front: {
  11131. height: math.unit(6, "feet"),
  11132. weight: math.unit(250, "lb"),
  11133. name: "Front",
  11134. image: {
  11135. source: "./media/characters/toto/front.svg",
  11136. extra: 527 / 479,
  11137. bottom: 0.05
  11138. }
  11139. },
  11140. },
  11141. [
  11142. {
  11143. name: "Micro",
  11144. height: math.unit(3, "feet")
  11145. },
  11146. {
  11147. name: "Normal",
  11148. height: math.unit(10, "feet")
  11149. },
  11150. {
  11151. name: "Macro",
  11152. height: math.unit(150, "feet"),
  11153. default: true
  11154. },
  11155. {
  11156. name: "Megamacro",
  11157. height: math.unit(1200, "feet")
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "King", species: ["lion"], tags: ["anthro"] },
  11163. {
  11164. back: {
  11165. height: math.unit(6, "feet"),
  11166. weight: math.unit(150, "lb"),
  11167. name: "Back",
  11168. image: {
  11169. source: "./media/characters/king/back.svg"
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Micro",
  11176. height: math.unit(2, "inches")
  11177. },
  11178. {
  11179. name: "Normal",
  11180. height: math.unit(8, "feet")
  11181. },
  11182. {
  11183. name: "Macro",
  11184. height: math.unit(200, "feet"),
  11185. default: true
  11186. },
  11187. {
  11188. name: "Megamacro",
  11189. height: math.unit(50, "miles")
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(11, "feet"),
  11198. weight: math.unit(1400, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/cordite/front.svg",
  11202. extra: 1919/1827,
  11203. bottom: 40/1959
  11204. }
  11205. },
  11206. side: {
  11207. height: math.unit(11, "feet"),
  11208. weight: math.unit(1400, "lb"),
  11209. name: "Side",
  11210. image: {
  11211. source: "./media/characters/cordite/side.svg",
  11212. extra: 1908/1793,
  11213. bottom: 38/1946
  11214. }
  11215. },
  11216. back: {
  11217. height: math.unit(11, "feet"),
  11218. weight: math.unit(1400, "lb"),
  11219. name: "Back",
  11220. image: {
  11221. source: "./media/characters/cordite/back.svg",
  11222. extra: 1938/1837,
  11223. bottom: 10/1948
  11224. }
  11225. },
  11226. feral: {
  11227. height: math.unit(2, "feet"),
  11228. weight: math.unit(90, "lb"),
  11229. name: "Feral",
  11230. image: {
  11231. source: "./media/characters/cordite/feral.svg",
  11232. extra: 1260 / 755,
  11233. bottom: 0.05
  11234. }
  11235. },
  11236. },
  11237. [
  11238. {
  11239. name: "Normal",
  11240. height: math.unit(11, "feet"),
  11241. default: true
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11247. {
  11248. front: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(150, "lb"),
  11251. name: "Front",
  11252. image: {
  11253. source: "./media/characters/pianostrong/front.svg",
  11254. extra: 6577 / 6254,
  11255. bottom: 0.02
  11256. }
  11257. },
  11258. side: {
  11259. height: math.unit(6, "feet"),
  11260. weight: math.unit(150, "lb"),
  11261. name: "Side",
  11262. image: {
  11263. source: "./media/characters/pianostrong/side.svg",
  11264. extra: 6106 / 5730
  11265. }
  11266. },
  11267. back: {
  11268. height: math.unit(6, "feet"),
  11269. weight: math.unit(150, "lb"),
  11270. name: "Back",
  11271. image: {
  11272. source: "./media/characters/pianostrong/back.svg",
  11273. extra: 6085 / 5733,
  11274. bottom: 0.01
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Macro",
  11281. height: math.unit(100, "feet")
  11282. },
  11283. {
  11284. name: "Macro+",
  11285. height: math.unit(300, "feet"),
  11286. default: true
  11287. },
  11288. {
  11289. name: "Macro++",
  11290. height: math.unit(1000, "feet")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(6, "feet"),
  11299. weight: math.unit(150, "lb"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/kona/front.svg",
  11303. extra: 2960 / 2629,
  11304. bottom: 0.005
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(11 + 8 / 12, "feet")
  11312. },
  11313. {
  11314. name: "Macro",
  11315. height: math.unit(850, "feet"),
  11316. default: true
  11317. },
  11318. {
  11319. name: "Macro+",
  11320. height: math.unit(1.5, "km"),
  11321. default: true
  11322. },
  11323. {
  11324. name: "Megamacro",
  11325. height: math.unit(80, "miles")
  11326. },
  11327. {
  11328. name: "Gigamacro",
  11329. height: math.unit(3500, "miles")
  11330. },
  11331. ]
  11332. ))
  11333. characterMakers.push(() => makeCharacter(
  11334. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11335. {
  11336. side: {
  11337. height: math.unit(1.9, "meters"),
  11338. weight: math.unit(326, "kg"),
  11339. name: "Side",
  11340. image: {
  11341. source: "./media/characters/levi/side.svg",
  11342. extra: 1704 / 1334,
  11343. bottom: 0.02
  11344. }
  11345. },
  11346. },
  11347. [
  11348. {
  11349. name: "Normal",
  11350. height: math.unit(1.9, "meters"),
  11351. default: true
  11352. },
  11353. {
  11354. name: "Macro",
  11355. height: math.unit(20, "meters")
  11356. },
  11357. {
  11358. name: "Macro+",
  11359. height: math.unit(200, "meters")
  11360. },
  11361. {
  11362. name: "Megamacro",
  11363. height: math.unit(2, "km")
  11364. },
  11365. {
  11366. name: "Megamacro+",
  11367. height: math.unit(20, "km")
  11368. },
  11369. {
  11370. name: "Gigamacro",
  11371. height: math.unit(2500, "km")
  11372. },
  11373. {
  11374. name: "Gigamacro+",
  11375. height: math.unit(120000, "km")
  11376. },
  11377. {
  11378. name: "Teramacro",
  11379. height: math.unit(7.77e6, "km")
  11380. },
  11381. ]
  11382. ))
  11383. characterMakers.push(() => makeCharacter(
  11384. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11385. {
  11386. front: {
  11387. height: math.unit(6 + 4/12, "feet"),
  11388. weight: math.unit(190, "lb"),
  11389. name: "Front",
  11390. image: {
  11391. source: "./media/characters/bmc/front.svg",
  11392. extra: 1626/1472,
  11393. bottom: 79/1705
  11394. }
  11395. },
  11396. back: {
  11397. height: math.unit(6 + 4/12, "feet"),
  11398. weight: math.unit(190, "lb"),
  11399. name: "Back",
  11400. image: {
  11401. source: "./media/characters/bmc/back.svg",
  11402. extra: 1640/1479,
  11403. bottom: 45/1685
  11404. }
  11405. },
  11406. frontArmor: {
  11407. height: math.unit(6 + 4/12, "feet"),
  11408. weight: math.unit(190, "lb"),
  11409. name: "Front-armor",
  11410. image: {
  11411. source: "./media/characters/bmc/front-armor.svg",
  11412. extra: 1538/1468,
  11413. bottom: 79/1617
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Human-sized",
  11420. height: math.unit(6 + 4 / 12, "feet")
  11421. },
  11422. {
  11423. name: "Interactive Size",
  11424. height: math.unit(25, "feet")
  11425. },
  11426. {
  11427. name: "Small",
  11428. height: math.unit(250, "feet")
  11429. },
  11430. {
  11431. name: "Normal",
  11432. height: math.unit(1250, "feet"),
  11433. default: true
  11434. },
  11435. {
  11436. name: "Good Day",
  11437. height: math.unit(88, "miles")
  11438. },
  11439. {
  11440. name: "Largest Measured Size",
  11441. height: math.unit(105.960, "galaxies")
  11442. },
  11443. ]
  11444. ))
  11445. characterMakers.push(() => makeCharacter(
  11446. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11447. {
  11448. front: {
  11449. height: math.unit(20, "feet"),
  11450. weight: math.unit(2016, "kg"),
  11451. name: "Front",
  11452. image: {
  11453. source: "./media/characters/sven-the-kaiju/front.svg",
  11454. extra: 1277/1250,
  11455. bottom: 35/1312
  11456. }
  11457. },
  11458. mouth: {
  11459. height: math.unit(1.85, "feet"),
  11460. name: "Mouth",
  11461. image: {
  11462. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Fairy",
  11469. height: math.unit(6, "inches")
  11470. },
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(20, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Rampage",
  11478. height: math.unit(200, "feet")
  11479. },
  11480. {
  11481. name: "Archfey Forest Guardian",
  11482. height: math.unit(1, "mile")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(4, "meters"),
  11491. weight: math.unit(2, "tons"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/marik/front.svg",
  11495. extra: 1057 / 1003,
  11496. bottom: 0.08
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Normal",
  11503. height: math.unit(4, "meters"),
  11504. default: true
  11505. },
  11506. {
  11507. name: "Macro",
  11508. height: math.unit(20, "meters")
  11509. },
  11510. {
  11511. name: "Megamacro",
  11512. height: math.unit(50, "km")
  11513. },
  11514. {
  11515. name: "Gigamacro",
  11516. height: math.unit(100, "km")
  11517. },
  11518. {
  11519. name: "Alpha Macro",
  11520. height: math.unit(7.88e7, "yottameters")
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11526. {
  11527. front: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(110, "lb"),
  11530. name: "Front",
  11531. image: {
  11532. source: "./media/characters/mel/front.svg",
  11533. extra: 736 / 617,
  11534. bottom: 0.017
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Pico",
  11541. height: math.unit(3, "pm")
  11542. },
  11543. {
  11544. name: "Nano",
  11545. height: math.unit(3, "nm")
  11546. },
  11547. {
  11548. name: "Micro",
  11549. height: math.unit(0.3, "mm"),
  11550. default: true
  11551. },
  11552. {
  11553. name: "Micro+",
  11554. height: math.unit(3, "mm")
  11555. },
  11556. {
  11557. name: "Normal",
  11558. height: math.unit(5 + 10.5 / 12, "feet")
  11559. },
  11560. ]
  11561. ))
  11562. characterMakers.push(() => makeCharacter(
  11563. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11564. {
  11565. kaiju: {
  11566. height: math.unit(1.75, "meters"),
  11567. weight: math.unit(55, "kg"),
  11568. name: "Kaiju",
  11569. image: {
  11570. source: "./media/characters/lykonous/kaiju.svg",
  11571. extra: 1055 / 946,
  11572. bottom: 0.135
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(2.5, "meters"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Kaiju Dragon",
  11584. height: math.unit(60, "meters")
  11585. },
  11586. {
  11587. name: "Mega Kaiju",
  11588. height: math.unit(120, "km")
  11589. },
  11590. {
  11591. name: "Giga Kaiju",
  11592. height: math.unit(200, "megameters")
  11593. },
  11594. {
  11595. name: "Terra Kaiju",
  11596. height: math.unit(400, "gigameters")
  11597. },
  11598. {
  11599. name: "Kaiju Dragon God",
  11600. height: math.unit(13000, "exaparsecs")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(6, "feet"),
  11609. weight: math.unit(150, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/blü/front.svg",
  11613. extra: 1883 / 1564,
  11614. bottom: 0.031
  11615. }
  11616. },
  11617. },
  11618. [
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(13, "feet"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Big Boi",
  11626. height: math.unit(150, "meters")
  11627. },
  11628. {
  11629. name: "Mini Stomper",
  11630. height: math.unit(300, "meters")
  11631. },
  11632. {
  11633. name: "Macro",
  11634. height: math.unit(1000, "meters")
  11635. },
  11636. {
  11637. name: "Megamacro",
  11638. height: math.unit(11000, "meters")
  11639. },
  11640. {
  11641. name: "Gigamacro",
  11642. height: math.unit(11000, "km")
  11643. },
  11644. {
  11645. name: "Teramacro",
  11646. height: math.unit(420000, "km")
  11647. },
  11648. {
  11649. name: "Examacro",
  11650. height: math.unit(120, "parsecs")
  11651. },
  11652. {
  11653. name: "God Tho",
  11654. height: math.unit(98000000000, "parsecs")
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11660. {
  11661. taurFront: {
  11662. height: math.unit(6, "feet"),
  11663. weight: math.unit(200, "lb"),
  11664. name: "Taur (Front)",
  11665. image: {
  11666. source: "./media/characters/scales/taur-front.svg",
  11667. extra: 1,
  11668. bottom: 0.05
  11669. }
  11670. },
  11671. taurBack: {
  11672. height: math.unit(6, "feet"),
  11673. weight: math.unit(200, "lb"),
  11674. name: "Taur (Back)",
  11675. image: {
  11676. source: "./media/characters/scales/taur-back.svg",
  11677. extra: 1,
  11678. bottom: 0.08
  11679. }
  11680. },
  11681. anthro: {
  11682. height: math.unit(6 * 7 / 12, "feet"),
  11683. weight: math.unit(100, "lb"),
  11684. name: "Anthro",
  11685. image: {
  11686. source: "./media/characters/scales/anthro.svg",
  11687. extra: 1,
  11688. bottom: 0.06
  11689. }
  11690. },
  11691. },
  11692. [
  11693. {
  11694. name: "Normal",
  11695. height: math.unit(12, "feet"),
  11696. default: true
  11697. },
  11698. ]
  11699. ))
  11700. characterMakers.push(() => makeCharacter(
  11701. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11702. {
  11703. front: {
  11704. height: math.unit(6, "feet"),
  11705. weight: math.unit(150, "lb"),
  11706. name: "Front",
  11707. image: {
  11708. source: "./media/characters/koragos/front.svg",
  11709. extra: 841 / 794,
  11710. bottom: 0.035
  11711. }
  11712. },
  11713. back: {
  11714. height: math.unit(6, "feet"),
  11715. weight: math.unit(150, "lb"),
  11716. name: "Back",
  11717. image: {
  11718. source: "./media/characters/koragos/back.svg",
  11719. extra: 841 / 810,
  11720. bottom: 0.022
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Normal",
  11727. height: math.unit(6 + 11 / 12, "feet"),
  11728. default: true
  11729. },
  11730. {
  11731. name: "Macro",
  11732. height: math.unit(490, "feet")
  11733. },
  11734. {
  11735. name: "Megamacro",
  11736. height: math.unit(10, "miles")
  11737. },
  11738. {
  11739. name: "Gigamacro",
  11740. height: math.unit(50, "miles")
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(6, "feet"),
  11749. weight: math.unit(250, "lb"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/xylrem/front.svg",
  11753. extra: 3323 / 3050,
  11754. bottom: 0.065
  11755. }
  11756. },
  11757. },
  11758. [
  11759. {
  11760. name: "Micro",
  11761. height: math.unit(4, "feet")
  11762. },
  11763. {
  11764. name: "Normal",
  11765. height: math.unit(16, "feet"),
  11766. default: true
  11767. },
  11768. {
  11769. name: "Macro",
  11770. height: math.unit(2720, "feet")
  11771. },
  11772. {
  11773. name: "Megamacro",
  11774. height: math.unit(25000, "miles")
  11775. },
  11776. ]
  11777. ))
  11778. characterMakers.push(() => makeCharacter(
  11779. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11780. {
  11781. front: {
  11782. height: math.unit(8, "feet"),
  11783. weight: math.unit(250, "kg"),
  11784. name: "Front",
  11785. image: {
  11786. source: "./media/characters/ikideru/front.svg",
  11787. extra: 930 / 870,
  11788. bottom: 0.087
  11789. }
  11790. },
  11791. back: {
  11792. height: math.unit(8, "feet"),
  11793. weight: math.unit(250, "kg"),
  11794. name: "Back",
  11795. image: {
  11796. source: "./media/characters/ikideru/back.svg",
  11797. extra: 919 / 852,
  11798. bottom: 0.055
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Rare",
  11805. height: math.unit(8, "feet"),
  11806. default: true
  11807. },
  11808. {
  11809. name: "Playful Loom",
  11810. height: math.unit(80, "feet")
  11811. },
  11812. {
  11813. name: "City Leaner",
  11814. height: math.unit(230, "feet")
  11815. },
  11816. {
  11817. name: "Megamacro",
  11818. height: math.unit(2500, "feet")
  11819. },
  11820. {
  11821. name: "Gigamacro",
  11822. height: math.unit(26400, "feet")
  11823. },
  11824. {
  11825. name: "Tectonic Shifter",
  11826. height: math.unit(1.7, "megameters")
  11827. },
  11828. {
  11829. name: "Planet Carer",
  11830. height: math.unit(21, "megameters")
  11831. },
  11832. {
  11833. name: "God",
  11834. height: math.unit(11157.22, "parsecs")
  11835. },
  11836. ]
  11837. ))
  11838. characterMakers.push(() => makeCharacter(
  11839. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11840. {
  11841. front: {
  11842. height: math.unit(6, "feet"),
  11843. weight: math.unit(120, "lb"),
  11844. name: "Front",
  11845. image: {
  11846. source: "./media/characters/neo/front.svg"
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Micro",
  11853. height: math.unit(2, "inches"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Human Size",
  11858. height: math.unit(5 + 8 / 12, "feet")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11864. {
  11865. front: {
  11866. height: math.unit(13 + 10 / 12, "feet"),
  11867. weight: math.unit(5320, "lb"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/chauncey-chantz/front.svg",
  11871. extra: 1587 / 1435,
  11872. bottom: 0.02
  11873. }
  11874. },
  11875. },
  11876. [
  11877. {
  11878. name: "Normal",
  11879. height: math.unit(13 + 10 / 12, "feet"),
  11880. default: true
  11881. },
  11882. {
  11883. name: "Macro",
  11884. height: math.unit(45, "feet")
  11885. },
  11886. {
  11887. name: "Megamacro",
  11888. height: math.unit(250, "miles")
  11889. },
  11890. {
  11891. name: "Planetary",
  11892. height: math.unit(10000, "miles")
  11893. },
  11894. {
  11895. name: "Galactic",
  11896. height: math.unit(40000, "parsecs")
  11897. },
  11898. {
  11899. name: "Universal",
  11900. height: math.unit(1, "yottameter")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11906. {
  11907. front: {
  11908. height: math.unit(6, "feet"),
  11909. weight: math.unit(150, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/epifox/front.svg",
  11913. extra: 1,
  11914. bottom: 0.075
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Micro",
  11921. height: math.unit(6, "inches")
  11922. },
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(12, "feet"),
  11926. default: true
  11927. },
  11928. {
  11929. name: "Macro",
  11930. height: math.unit(3810, "feet")
  11931. },
  11932. {
  11933. name: "Megamacro",
  11934. height: math.unit(500, "miles")
  11935. },
  11936. ]
  11937. ))
  11938. characterMakers.push(() => makeCharacter(
  11939. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11940. {
  11941. front: {
  11942. height: math.unit(1.8796, "m"),
  11943. weight: math.unit(230, "lb"),
  11944. name: "Front",
  11945. image: {
  11946. source: "./media/characters/colin-t/front.svg",
  11947. extra: 1272 / 1193,
  11948. bottom: 0.07
  11949. }
  11950. },
  11951. },
  11952. [
  11953. {
  11954. name: "Micro",
  11955. height: math.unit(0.571, "meters")
  11956. },
  11957. {
  11958. name: "Normal",
  11959. height: math.unit(1.8796, "meters"),
  11960. default: true
  11961. },
  11962. {
  11963. name: "Tall",
  11964. height: math.unit(4, "meters")
  11965. },
  11966. {
  11967. name: "Macro",
  11968. height: math.unit(67.241, "meters")
  11969. },
  11970. {
  11971. name: "Megamacro",
  11972. height: math.unit(371.856, "meters")
  11973. },
  11974. {
  11975. name: "Planetary",
  11976. height: math.unit(12631.5689, "km")
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(1.85, "meters"),
  11985. weight: math.unit(80, "kg"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/matvei/front.svg",
  11989. extra: 614 / 594,
  11990. bottom: 0.01
  11991. }
  11992. },
  11993. },
  11994. [
  11995. {
  11996. name: "Normal",
  11997. height: math.unit(1.85, "meters"),
  11998. default: true
  11999. },
  12000. ]
  12001. ))
  12002. characterMakers.push(() => makeCharacter(
  12003. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12004. {
  12005. front: {
  12006. height: math.unit(5 + 9 / 12, "feet"),
  12007. weight: math.unit(70, "lb"),
  12008. name: "Front",
  12009. image: {
  12010. source: "./media/characters/quincy/front.svg",
  12011. extra: 3041 / 2751
  12012. }
  12013. },
  12014. back: {
  12015. height: math.unit(5 + 9 / 12, "feet"),
  12016. weight: math.unit(70, "lb"),
  12017. name: "Back",
  12018. image: {
  12019. source: "./media/characters/quincy/back.svg",
  12020. extra: 3041 / 2751
  12021. }
  12022. },
  12023. flying: {
  12024. height: math.unit(5 + 4 / 12, "feet"),
  12025. weight: math.unit(70, "lb"),
  12026. name: "Flying",
  12027. image: {
  12028. source: "./media/characters/quincy/flying.svg",
  12029. extra: 1044 / 930
  12030. }
  12031. },
  12032. },
  12033. [
  12034. {
  12035. name: "Micro",
  12036. height: math.unit(3, "cm")
  12037. },
  12038. {
  12039. name: "Normal",
  12040. height: math.unit(5 + 9 / 12, "feet")
  12041. },
  12042. {
  12043. name: "Macro",
  12044. height: math.unit(200, "meters"),
  12045. default: true
  12046. },
  12047. {
  12048. name: "Megamacro",
  12049. height: math.unit(1000, "meters")
  12050. },
  12051. ]
  12052. ))
  12053. characterMakers.push(() => makeCharacter(
  12054. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12055. {
  12056. front: {
  12057. height: math.unit(3 + 11/12, "feet"),
  12058. weight: math.unit(50, "lb"),
  12059. name: "Front",
  12060. image: {
  12061. source: "./media/characters/vanrel/front.svg",
  12062. extra: 1104/949,
  12063. bottom: 52/1156
  12064. }
  12065. },
  12066. back: {
  12067. height: math.unit(3 + 11/12, "feet"),
  12068. weight: math.unit(50, "lb"),
  12069. name: "Back",
  12070. image: {
  12071. source: "./media/characters/vanrel/back.svg",
  12072. extra: 1119/976,
  12073. bottom: 37/1156
  12074. }
  12075. },
  12076. tome: {
  12077. height: math.unit(1.35, "feet"),
  12078. weight: math.unit(10, "lb"),
  12079. name: "Vanrel's Tome",
  12080. rename: true,
  12081. image: {
  12082. source: "./media/characters/vanrel/tome.svg"
  12083. }
  12084. },
  12085. beans: {
  12086. height: math.unit(0.89, "feet"),
  12087. name: "Beans",
  12088. image: {
  12089. source: "./media/characters/vanrel/beans.svg"
  12090. }
  12091. },
  12092. },
  12093. [
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(3 + 11/12, "feet"),
  12097. default: true
  12098. },
  12099. ]
  12100. ))
  12101. characterMakers.push(() => makeCharacter(
  12102. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12103. {
  12104. front: {
  12105. height: math.unit(7 + 5 / 12, "feet"),
  12106. name: "Front",
  12107. image: {
  12108. source: "./media/characters/kuiper-vanrel/front.svg",
  12109. extra: 1219/1169,
  12110. bottom: 69/1288
  12111. }
  12112. },
  12113. back: {
  12114. height: math.unit(7 + 5 / 12, "feet"),
  12115. name: "Back",
  12116. image: {
  12117. source: "./media/characters/kuiper-vanrel/back.svg",
  12118. extra: 1236/1193,
  12119. bottom: 27/1263
  12120. }
  12121. },
  12122. foot: {
  12123. height: math.unit(0.55, "meters"),
  12124. name: "Foot",
  12125. image: {
  12126. source: "./media/characters/kuiper-vanrel/foot.svg",
  12127. }
  12128. },
  12129. battle: {
  12130. height: math.unit(6.824, "feet"),
  12131. name: "Battle",
  12132. image: {
  12133. source: "./media/characters/kuiper-vanrel/battle.svg",
  12134. extra: 1466 / 1327,
  12135. bottom: 29 / 1492.5
  12136. }
  12137. },
  12138. meerkui: {
  12139. height: math.unit(18, "inches"),
  12140. name: "Meerkui",
  12141. image: {
  12142. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12143. extra: 1354/1289,
  12144. bottom: 69/1423
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Normal",
  12151. height: math.unit(7 + 5 / 12, "feet"),
  12152. default: true
  12153. },
  12154. ]
  12155. ))
  12156. characterMakers.push(() => makeCharacter(
  12157. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12158. {
  12159. front: {
  12160. height: math.unit(8 + 5 / 12, "feet"),
  12161. name: "Front",
  12162. image: {
  12163. source: "./media/characters/keset-vanrel/front.svg",
  12164. extra: 1231/1148,
  12165. bottom: 82/1313
  12166. }
  12167. },
  12168. back: {
  12169. height: math.unit(8 + 5 / 12, "feet"),
  12170. name: "Back",
  12171. image: {
  12172. source: "./media/characters/keset-vanrel/back.svg",
  12173. extra: 1240/1174,
  12174. bottom: 33/1273
  12175. }
  12176. },
  12177. hand: {
  12178. height: math.unit(0.6, "meters"),
  12179. name: "Hand",
  12180. image: {
  12181. source: "./media/characters/keset-vanrel/hand.svg"
  12182. }
  12183. },
  12184. foot: {
  12185. height: math.unit(0.94978, "meters"),
  12186. name: "Foot",
  12187. image: {
  12188. source: "./media/characters/keset-vanrel/foot.svg"
  12189. }
  12190. },
  12191. battle: {
  12192. height: math.unit(7.408, "feet"),
  12193. name: "Battle",
  12194. image: {
  12195. source: "./media/characters/keset-vanrel/battle.svg",
  12196. extra: 1890 / 1386,
  12197. bottom: 73.28 / 1970
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(8 + 5 / 12, "feet"),
  12205. default: true
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(6, "feet"),
  12214. weight: math.unit(150, "lb"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/neos/front.svg",
  12218. extra: 1696 / 992,
  12219. bottom: 0.14
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(54, "cm"),
  12227. default: true
  12228. },
  12229. {
  12230. name: "Macro",
  12231. height: math.unit(100, "m")
  12232. },
  12233. {
  12234. name: "Megamacro",
  12235. height: math.unit(10, "km")
  12236. },
  12237. {
  12238. name: "Megamacro+",
  12239. height: math.unit(100, "km")
  12240. },
  12241. {
  12242. name: "Gigamacro",
  12243. height: math.unit(100, "Mm")
  12244. },
  12245. {
  12246. name: "Teramacro",
  12247. height: math.unit(100, "Gm")
  12248. },
  12249. {
  12250. name: "Examacro",
  12251. height: math.unit(100, "Em")
  12252. },
  12253. {
  12254. name: "Godly",
  12255. height: math.unit(10000, "Ym")
  12256. },
  12257. {
  12258. name: "Beyond Godly",
  12259. height: math.unit(25, "multiverses")
  12260. },
  12261. ]
  12262. ))
  12263. characterMakers.push(() => makeCharacter(
  12264. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12265. {
  12266. feminine: {
  12267. height: math.unit(5, "feet"),
  12268. weight: math.unit(100, "lb"),
  12269. name: "Feminine",
  12270. image: {
  12271. source: "./media/characters/sammy-mouse/feminine.svg",
  12272. extra: 2526 / 2425,
  12273. bottom: 0.123
  12274. }
  12275. },
  12276. masculine: {
  12277. height: math.unit(5, "feet"),
  12278. weight: math.unit(100, "lb"),
  12279. name: "Masculine",
  12280. image: {
  12281. source: "./media/characters/sammy-mouse/masculine.svg",
  12282. extra: 2526 / 2425,
  12283. bottom: 0.123
  12284. }
  12285. },
  12286. },
  12287. [
  12288. {
  12289. name: "Micro",
  12290. height: math.unit(5, "inches")
  12291. },
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(5, "feet"),
  12295. default: true
  12296. },
  12297. {
  12298. name: "Macro",
  12299. height: math.unit(60, "feet")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(4, "feet"),
  12308. weight: math.unit(50, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/kole/front.svg",
  12312. extra: 1423 / 1303,
  12313. bottom: 0.025
  12314. }
  12315. },
  12316. back: {
  12317. height: math.unit(4, "feet"),
  12318. weight: math.unit(50, "lb"),
  12319. name: "Back",
  12320. image: {
  12321. source: "./media/characters/kole/back.svg",
  12322. extra: 1426 / 1280,
  12323. bottom: 0.02
  12324. }
  12325. },
  12326. },
  12327. [
  12328. {
  12329. name: "Normal",
  12330. height: math.unit(4, "feet"),
  12331. default: true
  12332. },
  12333. ]
  12334. ))
  12335. characterMakers.push(() => makeCharacter(
  12336. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12337. {
  12338. front: {
  12339. height: math.unit(2.5, "feet"),
  12340. weight: math.unit(32, "lb"),
  12341. name: "Front",
  12342. image: {
  12343. source: "./media/characters/rufran/front.svg",
  12344. extra: 1313/885,
  12345. bottom: 94/1407
  12346. }
  12347. },
  12348. side: {
  12349. height: math.unit(2.5, "feet"),
  12350. weight: math.unit(32, "lb"),
  12351. name: "Side",
  12352. image: {
  12353. source: "./media/characters/rufran/side.svg",
  12354. extra: 1109/852,
  12355. bottom: 118/1227
  12356. }
  12357. },
  12358. back: {
  12359. height: math.unit(2.5, "feet"),
  12360. weight: math.unit(32, "lb"),
  12361. name: "Back",
  12362. image: {
  12363. source: "./media/characters/rufran/back.svg",
  12364. extra: 1280/878,
  12365. bottom: 131/1411
  12366. }
  12367. },
  12368. mouth: {
  12369. height: math.unit(1.13, "feet"),
  12370. name: "Mouth",
  12371. image: {
  12372. source: "./media/characters/rufran/mouth.svg"
  12373. }
  12374. },
  12375. foot: {
  12376. height: math.unit(1.33, "feet"),
  12377. name: "Foot",
  12378. image: {
  12379. source: "./media/characters/rufran/foot.svg"
  12380. }
  12381. },
  12382. koboldFront: {
  12383. height: math.unit(2 + 6 / 12, "feet"),
  12384. weight: math.unit(20, "lb"),
  12385. name: "Front (Kobold)",
  12386. image: {
  12387. source: "./media/characters/rufran/kobold-front.svg",
  12388. extra: 2041 / 1839,
  12389. bottom: 0.055
  12390. }
  12391. },
  12392. koboldBack: {
  12393. height: math.unit(2 + 6 / 12, "feet"),
  12394. weight: math.unit(20, "lb"),
  12395. name: "Back (Kobold)",
  12396. image: {
  12397. source: "./media/characters/rufran/kobold-back.svg",
  12398. extra: 2054 / 1839,
  12399. bottom: 0.01
  12400. }
  12401. },
  12402. koboldHand: {
  12403. height: math.unit(0.2166, "meters"),
  12404. name: "Hand (Kobold)",
  12405. image: {
  12406. source: "./media/characters/rufran/kobold-hand.svg"
  12407. }
  12408. },
  12409. koboldFoot: {
  12410. height: math.unit(0.185, "meters"),
  12411. name: "Foot (Kobold)",
  12412. image: {
  12413. source: "./media/characters/rufran/kobold-foot.svg"
  12414. }
  12415. },
  12416. },
  12417. [
  12418. {
  12419. name: "Micro",
  12420. height: math.unit(1, "inch")
  12421. },
  12422. {
  12423. name: "Normal",
  12424. height: math.unit(2 + 6 / 12, "feet"),
  12425. default: true
  12426. },
  12427. {
  12428. name: "Big",
  12429. height: math.unit(60, "feet")
  12430. },
  12431. {
  12432. name: "Macro",
  12433. height: math.unit(325, "feet")
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12439. {
  12440. front: {
  12441. height: math.unit(0.3, "meters"),
  12442. weight: math.unit(3.5, "kg"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/chip/front.svg",
  12446. extra: 748 / 674
  12447. }
  12448. },
  12449. },
  12450. [
  12451. {
  12452. name: "Micro",
  12453. height: math.unit(1, "inch"),
  12454. default: true
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12460. {
  12461. side: {
  12462. height: math.unit(2.3, "meters"),
  12463. weight: math.unit(3500, "lb"),
  12464. name: "Side",
  12465. image: {
  12466. source: "./media/characters/torvid/side.svg",
  12467. extra: 1972 / 722,
  12468. bottom: 0.035
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Normal",
  12475. height: math.unit(2.3, "meters"),
  12476. default: true
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(2, "meters"),
  12485. weight: math.unit(150.5, "kg"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/susan/front.svg",
  12489. extra: 693 / 635,
  12490. bottom: 0.05
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Megamacro",
  12497. height: math.unit(505, "miles"),
  12498. default: true
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12504. {
  12505. front: {
  12506. height: math.unit(6, "feet"),
  12507. weight: math.unit(150, "lb"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/raindrops/front.svg",
  12511. extra: 2655 / 2461,
  12512. bottom: 49 / 2705
  12513. }
  12514. },
  12515. back: {
  12516. height: math.unit(6, "feet"),
  12517. weight: math.unit(150, "lb"),
  12518. name: "Back",
  12519. image: {
  12520. source: "./media/characters/raindrops/back.svg",
  12521. extra: 2574 / 2400,
  12522. bottom: 65 / 2634
  12523. }
  12524. },
  12525. },
  12526. [
  12527. {
  12528. name: "Micro",
  12529. height: math.unit(6, "inches")
  12530. },
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(6 + 2 / 12, "feet")
  12534. },
  12535. {
  12536. name: "Macro",
  12537. height: math.unit(131, "feet"),
  12538. default: true
  12539. },
  12540. {
  12541. name: "Megamacro",
  12542. height: math.unit(15, "miles")
  12543. },
  12544. {
  12545. name: "Gigamacro",
  12546. height: math.unit(4000, "miles")
  12547. },
  12548. {
  12549. name: "Teramacro",
  12550. height: math.unit(315000, "miles")
  12551. },
  12552. ]
  12553. ))
  12554. characterMakers.push(() => makeCharacter(
  12555. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12556. {
  12557. front: {
  12558. height: math.unit(2.794, "meters"),
  12559. weight: math.unit(325, "kg"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/tezwa/front.svg",
  12563. extra: 2083 / 1906,
  12564. bottom: 0.031
  12565. }
  12566. },
  12567. foot: {
  12568. height: math.unit(0.687, "meters"),
  12569. name: "Foot",
  12570. image: {
  12571. source: "./media/characters/tezwa/foot.svg"
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Normal",
  12578. height: math.unit(9 + 2 / 12, "feet"),
  12579. default: true
  12580. },
  12581. ]
  12582. ))
  12583. characterMakers.push(() => makeCharacter(
  12584. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12585. {
  12586. front: {
  12587. height: math.unit(58, "feet"),
  12588. weight: math.unit(89000, "lb"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/typhus/front.svg",
  12592. extra: 816 / 800,
  12593. bottom: 0.065
  12594. }
  12595. },
  12596. },
  12597. [
  12598. {
  12599. name: "Macro",
  12600. height: math.unit(58, "feet"),
  12601. default: true
  12602. },
  12603. ]
  12604. ))
  12605. characterMakers.push(() => makeCharacter(
  12606. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12607. {
  12608. front: {
  12609. height: math.unit(12, "feet"),
  12610. weight: math.unit(6, "tonnes"),
  12611. name: "Front",
  12612. image: {
  12613. source: "./media/characters/lyra-von-wulf/front.svg",
  12614. extra: 1,
  12615. bottom: 0.10
  12616. }
  12617. },
  12618. frontMecha: {
  12619. height: math.unit(12, "feet"),
  12620. weight: math.unit(12, "tonnes"),
  12621. name: "Front (Mecha)",
  12622. image: {
  12623. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12624. extra: 1,
  12625. bottom: 0.042
  12626. }
  12627. },
  12628. maw: {
  12629. height: math.unit(2.2, "feet"),
  12630. name: "Maw",
  12631. image: {
  12632. source: "./media/characters/lyra-von-wulf/maw.svg"
  12633. }
  12634. },
  12635. },
  12636. [
  12637. {
  12638. name: "Normal",
  12639. height: math.unit(12, "feet"),
  12640. default: true
  12641. },
  12642. {
  12643. name: "Classic",
  12644. height: math.unit(50, "feet")
  12645. },
  12646. {
  12647. name: "Macro",
  12648. height: math.unit(500, "feet")
  12649. },
  12650. {
  12651. name: "Megamacro",
  12652. height: math.unit(1, "mile")
  12653. },
  12654. {
  12655. name: "Gigamacro",
  12656. height: math.unit(400, "miles")
  12657. },
  12658. {
  12659. name: "Teramacro",
  12660. height: math.unit(22000, "miles")
  12661. },
  12662. {
  12663. name: "Solarmacro",
  12664. height: math.unit(8600000, "miles")
  12665. },
  12666. {
  12667. name: "Galactic",
  12668. height: math.unit(1057000, "lightyears")
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12674. {
  12675. front: {
  12676. height: math.unit(6 + 10 / 12, "feet"),
  12677. weight: math.unit(150, "lb"),
  12678. name: "Front",
  12679. image: {
  12680. source: "./media/characters/dixon/front.svg",
  12681. extra: 3361 / 3209,
  12682. bottom: 0.01
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Normal",
  12689. height: math.unit(6 + 10 / 12, "feet"),
  12690. default: true
  12691. },
  12692. {
  12693. name: "Big",
  12694. height: math.unit(12, "meters")
  12695. },
  12696. {
  12697. name: "Macro",
  12698. height: math.unit(500, "meters")
  12699. },
  12700. {
  12701. name: "Megamacro",
  12702. height: math.unit(2, "km")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(185, "cm"),
  12711. weight: math.unit(68, "kg"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/kauko/front.svg",
  12715. extra: 1455 / 1421,
  12716. bottom: 0.03
  12717. }
  12718. },
  12719. back: {
  12720. height: math.unit(185, "cm"),
  12721. weight: math.unit(68, "kg"),
  12722. name: "Back",
  12723. image: {
  12724. source: "./media/characters/kauko/back.svg",
  12725. extra: 1455 / 1421,
  12726. bottom: 0.004
  12727. }
  12728. },
  12729. },
  12730. [
  12731. {
  12732. name: "Normal",
  12733. height: math.unit(185, "cm"),
  12734. default: true
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(6, "feet"),
  12743. weight: math.unit(150, "kg"),
  12744. name: "Front",
  12745. image: {
  12746. source: "./media/characters/varg/front.svg",
  12747. extra: 1108 / 1018,
  12748. bottom: 0.0375
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(5, "meters")
  12756. },
  12757. {
  12758. name: "Macro",
  12759. height: math.unit(200, "meters")
  12760. },
  12761. {
  12762. name: "Megamacro",
  12763. height: math.unit(20, "kilometers")
  12764. },
  12765. {
  12766. name: "True Size",
  12767. height: math.unit(211, "km"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Gigamacro",
  12772. height: math.unit(1000, "km")
  12773. },
  12774. {
  12775. name: "Gigamacro+",
  12776. height: math.unit(8000, "km")
  12777. },
  12778. {
  12779. name: "Teramacro",
  12780. height: math.unit(1000000, "km")
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12786. {
  12787. front: {
  12788. height: math.unit(7 + 7 / 12, "feet"),
  12789. weight: math.unit(267, "lb"),
  12790. name: "Front",
  12791. image: {
  12792. source: "./media/characters/dayza/front.svg",
  12793. extra: 1262 / 1200,
  12794. bottom: 0.035
  12795. }
  12796. },
  12797. side: {
  12798. height: math.unit(7 + 7 / 12, "feet"),
  12799. weight: math.unit(267, "lb"),
  12800. name: "Side",
  12801. image: {
  12802. source: "./media/characters/dayza/side.svg",
  12803. extra: 1295 / 1245,
  12804. bottom: 0.05
  12805. }
  12806. },
  12807. back: {
  12808. height: math.unit(7 + 7 / 12, "feet"),
  12809. weight: math.unit(267, "lb"),
  12810. name: "Back",
  12811. image: {
  12812. source: "./media/characters/dayza/back.svg",
  12813. extra: 1241 / 1170
  12814. }
  12815. },
  12816. },
  12817. [
  12818. {
  12819. name: "Normal",
  12820. height: math.unit(7 + 7 / 12, "feet"),
  12821. default: true
  12822. },
  12823. {
  12824. name: "Macro",
  12825. height: math.unit(155, "feet")
  12826. },
  12827. ]
  12828. ))
  12829. characterMakers.push(() => makeCharacter(
  12830. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12831. {
  12832. front: {
  12833. height: math.unit(6 + 5 / 12, "feet"),
  12834. weight: math.unit(160, "lb"),
  12835. name: "Front",
  12836. image: {
  12837. source: "./media/characters/xanthos/front.svg",
  12838. extra: 1,
  12839. bottom: 0.04
  12840. }
  12841. },
  12842. back: {
  12843. height: math.unit(6 + 5 / 12, "feet"),
  12844. weight: math.unit(160, "lb"),
  12845. name: "Back",
  12846. image: {
  12847. source: "./media/characters/xanthos/back.svg",
  12848. extra: 1,
  12849. bottom: 0.03
  12850. }
  12851. },
  12852. hand: {
  12853. height: math.unit(0.928, "feet"),
  12854. name: "Hand",
  12855. image: {
  12856. source: "./media/characters/xanthos/hand.svg"
  12857. }
  12858. },
  12859. foot: {
  12860. height: math.unit(1.286, "feet"),
  12861. name: "Foot",
  12862. image: {
  12863. source: "./media/characters/xanthos/foot.svg"
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(6 + 5 / 12, "feet"),
  12871. default: true
  12872. },
  12873. {
  12874. name: "Normal+",
  12875. height: math.unit(6, "meters")
  12876. },
  12877. {
  12878. name: "Macro",
  12879. height: math.unit(40, "feet")
  12880. },
  12881. {
  12882. name: "Macro+",
  12883. height: math.unit(200, "meters")
  12884. },
  12885. {
  12886. name: "Megamacro",
  12887. height: math.unit(20, "km")
  12888. },
  12889. {
  12890. name: "Megamacro+",
  12891. height: math.unit(100, "km")
  12892. },
  12893. {
  12894. name: "Gigamacro",
  12895. height: math.unit(200, "megameters")
  12896. },
  12897. {
  12898. name: "Gigamacro+",
  12899. height: math.unit(1.5, "gigameters")
  12900. },
  12901. ]
  12902. ))
  12903. characterMakers.push(() => makeCharacter(
  12904. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12905. {
  12906. front: {
  12907. height: math.unit(6 + 3 / 12, "feet"),
  12908. weight: math.unit(215, "lb"),
  12909. name: "Front",
  12910. image: {
  12911. source: "./media/characters/grynn/front.svg",
  12912. extra: 4627 / 4209,
  12913. bottom: 0.047
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Micro",
  12920. height: math.unit(6, "inches")
  12921. },
  12922. {
  12923. name: "Normal",
  12924. height: math.unit(6 + 3 / 12, "feet"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Big",
  12929. height: math.unit(104, "feet")
  12930. },
  12931. {
  12932. name: "Macro",
  12933. height: math.unit(944, "feet")
  12934. },
  12935. {
  12936. name: "Macro+",
  12937. height: math.unit(9480, "feet")
  12938. },
  12939. {
  12940. name: "Megamacro",
  12941. height: math.unit(78752, "feet")
  12942. },
  12943. {
  12944. name: "Megamacro+",
  12945. height: math.unit(630128, "feet")
  12946. },
  12947. {
  12948. name: "Megamacro++",
  12949. height: math.unit(3150695, "feet")
  12950. },
  12951. ]
  12952. ))
  12953. characterMakers.push(() => makeCharacter(
  12954. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12955. {
  12956. front: {
  12957. height: math.unit(7 + 5 / 12, "feet"),
  12958. weight: math.unit(450, "lb"),
  12959. name: "Front",
  12960. image: {
  12961. source: "./media/characters/mocha-aura/front.svg",
  12962. extra: 1907 / 1817,
  12963. bottom: 0.04
  12964. }
  12965. },
  12966. back: {
  12967. height: math.unit(7 + 5 / 12, "feet"),
  12968. weight: math.unit(450, "lb"),
  12969. name: "Back",
  12970. image: {
  12971. source: "./media/characters/mocha-aura/back.svg",
  12972. extra: 1900 / 1825,
  12973. bottom: 0.045
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Nano",
  12980. height: math.unit(1, "nm")
  12981. },
  12982. {
  12983. name: "Megamicro",
  12984. height: math.unit(1, "mm")
  12985. },
  12986. {
  12987. name: "Micro",
  12988. height: math.unit(3, "inches")
  12989. },
  12990. {
  12991. name: "Normal",
  12992. height: math.unit(7 + 5 / 12, "feet"),
  12993. default: true
  12994. },
  12995. {
  12996. name: "Macro",
  12997. height: math.unit(30, "feet")
  12998. },
  12999. {
  13000. name: "Megamacro",
  13001. height: math.unit(3500, "feet")
  13002. },
  13003. {
  13004. name: "Teramacro",
  13005. height: math.unit(500000, "miles")
  13006. },
  13007. {
  13008. name: "Petamacro",
  13009. height: math.unit(50000000000000000, "parsecs")
  13010. },
  13011. ]
  13012. ))
  13013. characterMakers.push(() => makeCharacter(
  13014. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13015. {
  13016. front: {
  13017. height: math.unit(6, "feet"),
  13018. weight: math.unit(150, "lb"),
  13019. name: "Front",
  13020. image: {
  13021. source: "./media/characters/ilisha-devya/front.svg",
  13022. extra: 1,
  13023. bottom: 0.175
  13024. }
  13025. },
  13026. back: {
  13027. height: math.unit(6, "feet"),
  13028. weight: math.unit(150, "lb"),
  13029. name: "Back",
  13030. image: {
  13031. source: "./media/characters/ilisha-devya/back.svg",
  13032. extra: 1,
  13033. bottom: 0.015
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Macro",
  13040. height: math.unit(500, "feet"),
  13041. default: true
  13042. },
  13043. {
  13044. name: "Megamacro",
  13045. height: math.unit(10, "miles")
  13046. },
  13047. {
  13048. name: "Gigamacro",
  13049. height: math.unit(100000, "miles")
  13050. },
  13051. {
  13052. name: "Examacro",
  13053. height: math.unit(1e9, "lightyears")
  13054. },
  13055. {
  13056. name: "Omniversal",
  13057. height: math.unit(1e33, "lightyears")
  13058. },
  13059. {
  13060. name: "Beyond Infinite",
  13061. height: math.unit(1e100, "lightyears")
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13067. {
  13068. Side: {
  13069. height: math.unit(6, "feet"),
  13070. weight: math.unit(150, "lb"),
  13071. name: "Side",
  13072. image: {
  13073. source: "./media/characters/mira/side.svg",
  13074. extra: 900 / 799,
  13075. bottom: 0.02
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Human Size",
  13082. height: math.unit(6, "feet")
  13083. },
  13084. {
  13085. name: "Macro",
  13086. height: math.unit(100, "feet"),
  13087. default: true
  13088. },
  13089. {
  13090. name: "Megamacro",
  13091. height: math.unit(10, "miles")
  13092. },
  13093. {
  13094. name: "Gigamacro",
  13095. height: math.unit(25000, "miles")
  13096. },
  13097. {
  13098. name: "Teramacro",
  13099. height: math.unit(300, "AU")
  13100. },
  13101. {
  13102. name: "Full Size",
  13103. height: math.unit(4.5e10, "lightyears")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(150, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/holly/front.svg",
  13116. extra: 639 / 606
  13117. }
  13118. },
  13119. back: {
  13120. height: math.unit(6, "feet"),
  13121. weight: math.unit(150, "lb"),
  13122. name: "Back",
  13123. image: {
  13124. source: "./media/characters/holly/back.svg",
  13125. extra: 623 / 598
  13126. }
  13127. },
  13128. frontWorking: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(150, "lb"),
  13131. name: "Front (Working)",
  13132. image: {
  13133. source: "./media/characters/holly/front-working.svg",
  13134. extra: 607 / 577,
  13135. bottom: 0.048
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Normal",
  13142. height: math.unit(12 + 3 / 12, "feet"),
  13143. default: true
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13149. {
  13150. front: {
  13151. height: math.unit(6, "feet"),
  13152. weight: math.unit(150, "lb"),
  13153. name: "Front",
  13154. image: {
  13155. source: "./media/characters/porter/front.svg",
  13156. extra: 1,
  13157. bottom: 0.01
  13158. }
  13159. },
  13160. frontRobes: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Front (Robes)",
  13164. image: {
  13165. source: "./media/characters/porter/front-robes.svg",
  13166. extra: 1.01,
  13167. bottom: 0.01
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Normal",
  13174. height: math.unit(11 + 9 / 12, "feet"),
  13175. default: true
  13176. },
  13177. ]
  13178. ))
  13179. characterMakers.push(() => makeCharacter(
  13180. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13181. {
  13182. legendary: {
  13183. height: math.unit(6, "feet"),
  13184. weight: math.unit(150, "lb"),
  13185. name: "Legendary",
  13186. image: {
  13187. source: "./media/characters/lucy/legendary.svg",
  13188. extra: 1355 / 1100,
  13189. bottom: 0.045
  13190. }
  13191. },
  13192. },
  13193. [
  13194. {
  13195. name: "Legendary",
  13196. height: math.unit(86882 * 2, "miles"),
  13197. default: true
  13198. },
  13199. ]
  13200. ))
  13201. characterMakers.push(() => makeCharacter(
  13202. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13203. {
  13204. front: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/drusilla/front.svg",
  13210. extra: 678 / 635,
  13211. bottom: 0.03
  13212. }
  13213. },
  13214. back: {
  13215. height: math.unit(6, "feet"),
  13216. weight: math.unit(150, "lb"),
  13217. name: "Back",
  13218. image: {
  13219. source: "./media/characters/drusilla/back.svg",
  13220. extra: 678 / 635,
  13221. bottom: 0.005
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Macro",
  13228. height: math.unit(100, "feet")
  13229. },
  13230. {
  13231. name: "Canon Height",
  13232. height: math.unit(2000, "feet"),
  13233. default: true
  13234. },
  13235. ]
  13236. ))
  13237. characterMakers.push(() => makeCharacter(
  13238. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13239. {
  13240. front: {
  13241. height: math.unit(6, "feet"),
  13242. weight: math.unit(180, "lb"),
  13243. name: "Front",
  13244. image: {
  13245. source: "./media/characters/renard-thatch/front.svg",
  13246. extra: 2411 / 2275,
  13247. bottom: 0.01
  13248. }
  13249. },
  13250. frontPosing: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(180, "lb"),
  13253. name: "Front (Posing)",
  13254. image: {
  13255. source: "./media/characters/renard-thatch/front-posing.svg",
  13256. extra: 2381 / 2261,
  13257. bottom: 0.01
  13258. }
  13259. },
  13260. back: {
  13261. height: math.unit(6, "feet"),
  13262. weight: math.unit(180, "lb"),
  13263. name: "Back",
  13264. image: {
  13265. source: "./media/characters/renard-thatch/back.svg",
  13266. extra: 2428 / 2288
  13267. }
  13268. },
  13269. },
  13270. [
  13271. {
  13272. name: "Micro",
  13273. height: math.unit(3, "inches")
  13274. },
  13275. {
  13276. name: "Default",
  13277. height: math.unit(6, "feet"),
  13278. default: true
  13279. },
  13280. {
  13281. name: "Macro",
  13282. height: math.unit(75, "feet")
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(1450, "feet"),
  13291. weight: math.unit(1.21e6, "tons"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/sekvra/front.svg",
  13295. extra: 1,
  13296. bottom: 0.03
  13297. }
  13298. },
  13299. frontClothed: {
  13300. height: math.unit(1450, "feet"),
  13301. weight: math.unit(1.21e6, "tons"),
  13302. name: "Front (Clothed)",
  13303. image: {
  13304. source: "./media/characters/sekvra/front-clothed.svg",
  13305. extra: 1,
  13306. bottom: 0.03
  13307. }
  13308. },
  13309. side: {
  13310. height: math.unit(1450, "feet"),
  13311. weight: math.unit(1.21e6, "tons"),
  13312. name: "Side",
  13313. image: {
  13314. source: "./media/characters/sekvra/side.svg",
  13315. extra: 1,
  13316. bottom: 0.025
  13317. }
  13318. },
  13319. back: {
  13320. height: math.unit(1450, "feet"),
  13321. weight: math.unit(1.21e6, "tons"),
  13322. name: "Back",
  13323. image: {
  13324. source: "./media/characters/sekvra/back.svg",
  13325. extra: 1,
  13326. bottom: 0.005
  13327. }
  13328. },
  13329. },
  13330. [
  13331. {
  13332. name: "Macro",
  13333. height: math.unit(1450, "feet"),
  13334. default: true
  13335. },
  13336. {
  13337. name: "Megamacro",
  13338. height: math.unit(15000, "feet")
  13339. },
  13340. ]
  13341. ))
  13342. characterMakers.push(() => makeCharacter(
  13343. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13344. {
  13345. front: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(150, "lb"),
  13348. name: "Front",
  13349. image: {
  13350. source: "./media/characters/carmine/front.svg",
  13351. extra: 1,
  13352. bottom: 0.035
  13353. }
  13354. },
  13355. frontArmor: {
  13356. height: math.unit(6, "feet"),
  13357. weight: math.unit(150, "lb"),
  13358. name: "Front (Armor)",
  13359. image: {
  13360. source: "./media/characters/carmine/front-armor.svg",
  13361. extra: 1,
  13362. bottom: 0.035
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Large",
  13369. height: math.unit(1, "mile")
  13370. },
  13371. {
  13372. name: "Huge",
  13373. height: math.unit(40, "miles"),
  13374. default: true
  13375. },
  13376. {
  13377. name: "Colossal",
  13378. height: math.unit(2500, "miles")
  13379. },
  13380. ]
  13381. ))
  13382. characterMakers.push(() => makeCharacter(
  13383. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13384. {
  13385. front: {
  13386. height: math.unit(6, "feet"),
  13387. weight: math.unit(150, "lb"),
  13388. name: "Front",
  13389. image: {
  13390. source: "./media/characters/elyssia/front.svg",
  13391. extra: 2201 / 2035,
  13392. bottom: 0.05
  13393. }
  13394. },
  13395. frontClothed: {
  13396. height: math.unit(6, "feet"),
  13397. weight: math.unit(150, "lb"),
  13398. name: "Front (Clothed)",
  13399. image: {
  13400. source: "./media/characters/elyssia/front-clothed.svg",
  13401. extra: 2201 / 2035,
  13402. bottom: 0.05
  13403. }
  13404. },
  13405. back: {
  13406. height: math.unit(6, "feet"),
  13407. weight: math.unit(150, "lb"),
  13408. name: "Back",
  13409. image: {
  13410. source: "./media/characters/elyssia/back.svg",
  13411. extra: 2201 / 2035,
  13412. bottom: 0.013
  13413. }
  13414. },
  13415. },
  13416. [
  13417. {
  13418. name: "Smaller",
  13419. height: math.unit(150, "feet")
  13420. },
  13421. {
  13422. name: "Standard",
  13423. height: math.unit(1400, "feet"),
  13424. default: true
  13425. },
  13426. {
  13427. name: "Distracted",
  13428. height: math.unit(15000, "feet")
  13429. },
  13430. ]
  13431. ))
  13432. characterMakers.push(() => makeCharacter(
  13433. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13434. {
  13435. front: {
  13436. height: math.unit(7 + 4 / 12, "feet"),
  13437. weight: math.unit(500, "lb"),
  13438. name: "Front",
  13439. image: {
  13440. source: "./media/characters/geno-maxwell/front.svg",
  13441. extra: 2207 / 2040,
  13442. bottom: 0.015
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Micro",
  13449. height: math.unit(3, "inches")
  13450. },
  13451. {
  13452. name: "Normal",
  13453. height: math.unit(7 + 4 / 12, "feet"),
  13454. default: true
  13455. },
  13456. {
  13457. name: "Macro",
  13458. height: math.unit(220, "feet")
  13459. },
  13460. {
  13461. name: "Megamacro",
  13462. height: math.unit(11, "miles")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(7 + 4 / 12, "feet"),
  13471. weight: math.unit(500, "lb"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/regena-maxwell/front.svg",
  13475. extra: 3115 / 2770,
  13476. bottom: 0.02
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Normal",
  13483. height: math.unit(7 + 4 / 12, "feet"),
  13484. default: true
  13485. },
  13486. {
  13487. name: "Macro",
  13488. height: math.unit(220, "feet")
  13489. },
  13490. {
  13491. name: "Megamacro",
  13492. height: math.unit(11, "miles")
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13498. {
  13499. front: {
  13500. height: math.unit(6, "feet"),
  13501. weight: math.unit(150, "lb"),
  13502. name: "Front",
  13503. image: {
  13504. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13505. extra: 860 / 690,
  13506. bottom: 0.03
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Normal",
  13513. height: math.unit(1.7, "meters"),
  13514. default: true
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(6, "feet"),
  13523. weight: math.unit(150, "lb"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/quilly/front.svg",
  13527. extra: 890 / 776
  13528. }
  13529. },
  13530. },
  13531. [
  13532. {
  13533. name: "Gigamacro",
  13534. height: math.unit(404090, "miles"),
  13535. default: true
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(7 + 8 / 12, "feet"),
  13544. weight: math.unit(350, "lb"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/tempest/front.svg",
  13548. extra: 1175 / 1086,
  13549. bottom: 0.02
  13550. }
  13551. },
  13552. },
  13553. [
  13554. {
  13555. name: "Normal",
  13556. height: math.unit(7 + 8 / 12, "feet"),
  13557. default: true
  13558. },
  13559. ]
  13560. ))
  13561. characterMakers.push(() => makeCharacter(
  13562. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13563. {
  13564. side: {
  13565. height: math.unit(4 + 5 / 12, "feet"),
  13566. weight: math.unit(80, "lb"),
  13567. name: "Side",
  13568. image: {
  13569. source: "./media/characters/rodger/side.svg",
  13570. extra: 1235 / 1118
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Micro",
  13577. height: math.unit(1, "inch")
  13578. },
  13579. {
  13580. name: "Normal",
  13581. height: math.unit(4 + 5 / 12, "feet"),
  13582. default: true
  13583. },
  13584. {
  13585. name: "Macro",
  13586. height: math.unit(120, "feet")
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13592. {
  13593. front: {
  13594. height: math.unit(6, "feet"),
  13595. weight: math.unit(150, "lb"),
  13596. name: "Front",
  13597. image: {
  13598. source: "./media/characters/danyel/front.svg",
  13599. extra: 1185 / 1123,
  13600. bottom: 0.05
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Shrunken",
  13607. height: math.unit(0.5, "mm")
  13608. },
  13609. {
  13610. name: "Micro",
  13611. height: math.unit(1, "mm"),
  13612. default: true
  13613. },
  13614. {
  13615. name: "Upsized",
  13616. height: math.unit(5 + 5 / 12, "feet")
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(5 + 6 / 12, "feet"),
  13625. weight: math.unit(200, "lb"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/vivian-bijoux/front.svg",
  13629. extra: 1,
  13630. bottom: 0.072
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Normal",
  13637. height: math.unit(5 + 6 / 12, "feet"),
  13638. default: true
  13639. },
  13640. {
  13641. name: "Bad Dream",
  13642. height: math.unit(500, "feet")
  13643. },
  13644. {
  13645. name: "Nightmare",
  13646. height: math.unit(500, "miles")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(6 + 1 / 12, "feet"),
  13655. weight: math.unit(260, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/zeta/front.svg",
  13659. extra: 1968 / 1889,
  13660. bottom: 0.06
  13661. }
  13662. },
  13663. back: {
  13664. height: math.unit(6 + 1 / 12, "feet"),
  13665. weight: math.unit(260, "lb"),
  13666. name: "Back",
  13667. image: {
  13668. source: "./media/characters/zeta/back.svg",
  13669. extra: 1944 / 1858,
  13670. bottom: 0.03
  13671. }
  13672. },
  13673. hand: {
  13674. height: math.unit(1.112, "feet"),
  13675. name: "Hand",
  13676. image: {
  13677. source: "./media/characters/zeta/hand.svg"
  13678. }
  13679. },
  13680. foot: {
  13681. height: math.unit(1.48, "feet"),
  13682. name: "Foot",
  13683. image: {
  13684. source: "./media/characters/zeta/foot.svg"
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Micro",
  13691. height: math.unit(6, "inches")
  13692. },
  13693. {
  13694. name: "Normal",
  13695. height: math.unit(6 + 1 / 12, "feet"),
  13696. default: true
  13697. },
  13698. {
  13699. name: "Macro",
  13700. height: math.unit(20, "feet")
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13706. {
  13707. front: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/jamie-larsen/front.svg",
  13713. extra: 962 / 933,
  13714. bottom: 0.02
  13715. }
  13716. },
  13717. back: {
  13718. height: math.unit(6, "feet"),
  13719. weight: math.unit(150, "lb"),
  13720. name: "Back",
  13721. image: {
  13722. source: "./media/characters/jamie-larsen/back.svg",
  13723. extra: 997 / 946
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Macro",
  13730. height: math.unit(28 + 7 / 12, "feet"),
  13731. default: true
  13732. },
  13733. {
  13734. name: "Macro+",
  13735. height: math.unit(180, "feet")
  13736. },
  13737. {
  13738. name: "Megamacro",
  13739. height: math.unit(10, "miles")
  13740. },
  13741. {
  13742. name: "Gigamacro",
  13743. height: math.unit(200000, "miles")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(120, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/vance/front.svg",
  13756. extra: 1980 / 1890,
  13757. bottom: 0.09
  13758. }
  13759. },
  13760. back: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(120, "lb"),
  13763. name: "Back",
  13764. image: {
  13765. source: "./media/characters/vance/back.svg",
  13766. extra: 2081 / 1994,
  13767. bottom: 0.014
  13768. }
  13769. },
  13770. hand: {
  13771. height: math.unit(0.88, "feet"),
  13772. name: "Hand",
  13773. image: {
  13774. source: "./media/characters/vance/hand.svg"
  13775. }
  13776. },
  13777. foot: {
  13778. height: math.unit(0.64, "feet"),
  13779. name: "Foot",
  13780. image: {
  13781. source: "./media/characters/vance/foot.svg"
  13782. }
  13783. },
  13784. },
  13785. [
  13786. {
  13787. name: "Small",
  13788. height: math.unit(90, "feet"),
  13789. default: true
  13790. },
  13791. {
  13792. name: "Macro",
  13793. height: math.unit(100, "meters")
  13794. },
  13795. {
  13796. name: "Megamacro",
  13797. height: math.unit(15, "miles")
  13798. },
  13799. ]
  13800. ))
  13801. characterMakers.push(() => makeCharacter(
  13802. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13803. {
  13804. front: {
  13805. height: math.unit(6, "feet"),
  13806. weight: math.unit(180, "lb"),
  13807. name: "Front",
  13808. image: {
  13809. source: "./media/characters/xochitl/front.svg",
  13810. extra: 2297 / 2261,
  13811. bottom: 0.065
  13812. }
  13813. },
  13814. back: {
  13815. height: math.unit(6, "feet"),
  13816. weight: math.unit(180, "lb"),
  13817. name: "Back",
  13818. image: {
  13819. source: "./media/characters/xochitl/back.svg",
  13820. extra: 2386 / 2354,
  13821. bottom: 0.01
  13822. }
  13823. },
  13824. foot: {
  13825. height: math.unit(6 / 5 * 1.15, "feet"),
  13826. weight: math.unit(150, "lb"),
  13827. name: "Foot",
  13828. image: {
  13829. source: "./media/characters/xochitl/foot.svg"
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "Macro",
  13836. height: math.unit(80, "feet")
  13837. },
  13838. {
  13839. name: "Macro+",
  13840. height: math.unit(400, "feet"),
  13841. default: true
  13842. },
  13843. {
  13844. name: "Gigamacro",
  13845. height: math.unit(80000, "miles")
  13846. },
  13847. {
  13848. name: "Gigamacro+",
  13849. height: math.unit(400000, "miles")
  13850. },
  13851. {
  13852. name: "Teramacro",
  13853. height: math.unit(300, "AU")
  13854. },
  13855. ]
  13856. ))
  13857. characterMakers.push(() => makeCharacter(
  13858. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13859. {
  13860. front: {
  13861. height: math.unit(6, "feet"),
  13862. weight: math.unit(150, "lb"),
  13863. name: "Front",
  13864. image: {
  13865. source: "./media/characters/vincent/front.svg",
  13866. extra: 1130 / 1080,
  13867. bottom: 0.055
  13868. }
  13869. },
  13870. beak: {
  13871. height: math.unit(6 * 0.1, "feet"),
  13872. name: "Beak",
  13873. image: {
  13874. source: "./media/characters/vincent/beak.svg"
  13875. }
  13876. },
  13877. hand: {
  13878. height: math.unit(6 * 0.85, "feet"),
  13879. weight: math.unit(150, "lb"),
  13880. name: "Hand",
  13881. image: {
  13882. source: "./media/characters/vincent/hand.svg"
  13883. }
  13884. },
  13885. foot: {
  13886. height: math.unit(6 * 0.19, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Foot",
  13889. image: {
  13890. source: "./media/characters/vincent/foot.svg"
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Base",
  13897. height: math.unit(6 + 5 / 12, "feet"),
  13898. default: true
  13899. },
  13900. {
  13901. name: "Macro",
  13902. height: math.unit(300, "feet")
  13903. },
  13904. {
  13905. name: "Megamacro",
  13906. height: math.unit(2, "miles")
  13907. },
  13908. {
  13909. name: "Gigamacro",
  13910. height: math.unit(1000, "miles")
  13911. },
  13912. ]
  13913. ))
  13914. characterMakers.push(() => makeCharacter(
  13915. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13916. {
  13917. front: {
  13918. height: math.unit(2, "meters"),
  13919. weight: math.unit(500, "kg"),
  13920. name: "Front",
  13921. image: {
  13922. source: "./media/characters/coatl/front.svg",
  13923. extra: 3948 / 3500,
  13924. bottom: 0.082
  13925. }
  13926. },
  13927. },
  13928. [
  13929. {
  13930. name: "Normal",
  13931. height: math.unit(4, "meters")
  13932. },
  13933. {
  13934. name: "Macro",
  13935. height: math.unit(100, "meters"),
  13936. default: true
  13937. },
  13938. {
  13939. name: "Macro+",
  13940. height: math.unit(300, "meters")
  13941. },
  13942. {
  13943. name: "Megamacro",
  13944. height: math.unit(3, "gigameters")
  13945. },
  13946. {
  13947. name: "Megamacro+",
  13948. height: math.unit(300, "terameters")
  13949. },
  13950. {
  13951. name: "Megamacro++",
  13952. height: math.unit(3, "lightyears")
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(6, "feet"),
  13961. weight: math.unit(50, "kg"),
  13962. name: "front",
  13963. image: {
  13964. source: "./media/characters/shiroryu/front.svg",
  13965. extra: 1990 / 1935
  13966. }
  13967. },
  13968. },
  13969. [
  13970. {
  13971. name: "Mortal Mingling",
  13972. height: math.unit(3, "meters")
  13973. },
  13974. {
  13975. name: "Kaiju-ish",
  13976. height: math.unit(250, "meters")
  13977. },
  13978. {
  13979. name: "Somewhat Godly",
  13980. height: math.unit(400, "km"),
  13981. default: true
  13982. },
  13983. {
  13984. name: "Planetary",
  13985. height: math.unit(300, "megameters")
  13986. },
  13987. {
  13988. name: "Galaxy-dwarfing",
  13989. height: math.unit(450, "kiloparsecs")
  13990. },
  13991. {
  13992. name: "Universe Eater",
  13993. height: math.unit(150, "gigaparsecs")
  13994. },
  13995. {
  13996. name: "Almost Immeasurable",
  13997. height: math.unit(1.3e266, "yottaparsecs")
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14003. {
  14004. front: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(150, "lb"),
  14007. name: "Front",
  14008. image: {
  14009. source: "./media/characters/umeko/front.svg",
  14010. extra: 1,
  14011. bottom: 0.019
  14012. }
  14013. },
  14014. frontArmored: {
  14015. height: math.unit(6, "feet"),
  14016. weight: math.unit(150, "lb"),
  14017. name: "Front (Armored)",
  14018. image: {
  14019. source: "./media/characters/umeko/front-armored.svg",
  14020. extra: 1,
  14021. bottom: 0.021
  14022. }
  14023. },
  14024. },
  14025. [
  14026. {
  14027. name: "Macro",
  14028. height: math.unit(220, "feet"),
  14029. default: true
  14030. },
  14031. {
  14032. name: "Guardian Dragon",
  14033. height: math.unit(50, "miles")
  14034. },
  14035. {
  14036. name: "Cosmic",
  14037. height: math.unit(800000, "miles")
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14043. {
  14044. front: {
  14045. height: math.unit(6, "feet"),
  14046. weight: math.unit(150, "lb"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/cassidy/front.svg",
  14050. extra: 1,
  14051. bottom: 0.043
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Canon Height",
  14058. height: math.unit(120, "feet"),
  14059. default: true
  14060. },
  14061. {
  14062. name: "Macro+",
  14063. height: math.unit(400, "feet")
  14064. },
  14065. {
  14066. name: "Macro++",
  14067. height: math.unit(4000, "feet")
  14068. },
  14069. {
  14070. name: "Megamacro",
  14071. height: math.unit(3, "miles")
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14077. {
  14078. front: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(150, "lb"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/isaac/front.svg",
  14084. extra: 896 / 815,
  14085. bottom: 0.11
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Human Size",
  14092. height: math.unit(8, "feet"),
  14093. default: true
  14094. },
  14095. {
  14096. name: "Macro",
  14097. height: math.unit(400, "feet")
  14098. },
  14099. {
  14100. name: "Megamacro",
  14101. height: math.unit(50, "miles")
  14102. },
  14103. {
  14104. name: "Canon Height",
  14105. height: math.unit(200, "AU")
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(72, "kg"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/sleekit/front.svg",
  14118. extra: 4693 / 4487,
  14119. bottom: 0.012
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Minimum Height",
  14126. height: math.unit(10, "meters")
  14127. },
  14128. {
  14129. name: "Smaller",
  14130. height: math.unit(25, "meters")
  14131. },
  14132. {
  14133. name: "Larger",
  14134. height: math.unit(38, "meters"),
  14135. default: true
  14136. },
  14137. {
  14138. name: "Maximum height",
  14139. height: math.unit(100, "meters")
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(6, "feet"),
  14148. weight: math.unit(150, "lb"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/nillia/front.svg",
  14152. extra: 2195 / 2037,
  14153. bottom: 0.005
  14154. }
  14155. },
  14156. back: {
  14157. height: math.unit(6, "feet"),
  14158. weight: math.unit(150, "lb"),
  14159. name: "Back",
  14160. image: {
  14161. source: "./media/characters/nillia/back.svg",
  14162. extra: 2195 / 2037,
  14163. bottom: 0.005
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Canon Height",
  14170. height: math.unit(489, "feet"),
  14171. default: true
  14172. }
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(6, "feet"),
  14180. weight: math.unit(150, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/mesmyriza/front.svg",
  14184. extra: 2067 / 1784,
  14185. bottom: 0.035
  14186. }
  14187. },
  14188. foot: {
  14189. height: math.unit(6 / (250 / 35), "feet"),
  14190. name: "Foot",
  14191. image: {
  14192. source: "./media/characters/mesmyriza/foot.svg"
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Macro",
  14199. height: math.unit(457, "meters"),
  14200. default: true
  14201. },
  14202. {
  14203. name: "Megamacro",
  14204. height: math.unit(8, "megameters")
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14210. {
  14211. front: {
  14212. height: math.unit(6, "feet"),
  14213. weight: math.unit(250, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/saudade/front.svg",
  14217. extra: 1172 / 1139,
  14218. bottom: 0.035
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Micro",
  14225. height: math.unit(3, "inches")
  14226. },
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(6, "feet"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Macro",
  14234. height: math.unit(50, "feet")
  14235. },
  14236. {
  14237. name: "Megamacro",
  14238. height: math.unit(2800, "feet")
  14239. },
  14240. ]
  14241. ))
  14242. characterMakers.push(() => makeCharacter(
  14243. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14244. {
  14245. front: {
  14246. height: math.unit(5 + 4 / 12, "feet"),
  14247. weight: math.unit(100, "lb"),
  14248. name: "Front",
  14249. image: {
  14250. source: "./media/characters/keireer/front.svg",
  14251. extra: 716 / 666,
  14252. bottom: 0.05
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(5 + 4 / 12, "feet"),
  14260. default: true
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(90, "kg"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/mirja/front.svg",
  14273. extra: 1789 / 1683,
  14274. bottom: 0.05
  14275. }
  14276. },
  14277. frontDressed: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(90, "lb"),
  14280. name: "Front (Dressed)",
  14281. image: {
  14282. source: "./media/characters/mirja/front-dressed.svg",
  14283. extra: 1789 / 1683,
  14284. bottom: 0.05
  14285. }
  14286. },
  14287. back: {
  14288. height: math.unit(6, "feet"),
  14289. weight: math.unit(90, "lb"),
  14290. name: "Back",
  14291. image: {
  14292. source: "./media/characters/mirja/back.svg",
  14293. extra: 953 / 917,
  14294. bottom: 0.017
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "\"Incognito\"",
  14301. height: math.unit(3, "meters")
  14302. },
  14303. {
  14304. name: "Strolling Size",
  14305. height: math.unit(15, "km")
  14306. },
  14307. {
  14308. name: "Larger Strolling Size",
  14309. height: math.unit(400, "km")
  14310. },
  14311. {
  14312. name: "Preferred Size",
  14313. height: math.unit(5000, "km")
  14314. },
  14315. {
  14316. name: "True Size",
  14317. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14318. default: true
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(15, "feet"),
  14327. weight: math.unit(880, "kg"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/nightraver/front.svg",
  14331. extra: 2444 / 2160,
  14332. bottom: 0.027
  14333. }
  14334. },
  14335. back: {
  14336. height: math.unit(15, "feet"),
  14337. weight: math.unit(880, "kg"),
  14338. name: "Back",
  14339. image: {
  14340. source: "./media/characters/nightraver/back.svg",
  14341. extra: 2309 / 2180,
  14342. bottom: 0.005
  14343. }
  14344. },
  14345. sole: {
  14346. height: math.unit(2.878, "feet"),
  14347. name: "Sole",
  14348. image: {
  14349. source: "./media/characters/nightraver/sole.svg"
  14350. }
  14351. },
  14352. foot: {
  14353. height: math.unit(2.285, "feet"),
  14354. name: "Foot",
  14355. image: {
  14356. source: "./media/characters/nightraver/foot.svg"
  14357. }
  14358. },
  14359. maw: {
  14360. height: math.unit(2.67, "feet"),
  14361. name: "Maw",
  14362. image: {
  14363. source: "./media/characters/nightraver/maw.svg"
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Micro",
  14370. height: math.unit(1, "cm")
  14371. },
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(15, "feet"),
  14375. default: true
  14376. },
  14377. {
  14378. name: "Macro",
  14379. height: math.unit(300, "feet")
  14380. },
  14381. {
  14382. name: "Megamacro",
  14383. height: math.unit(300, "miles")
  14384. },
  14385. {
  14386. name: "Gigamacro",
  14387. height: math.unit(10000, "miles")
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14393. {
  14394. side: {
  14395. height: math.unit(2, "inches"),
  14396. weight: math.unit(5, "grams"),
  14397. name: "Side",
  14398. image: {
  14399. source: "./media/characters/arc/side.svg"
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Micro",
  14406. height: math.unit(2, "inches"),
  14407. default: true
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(1.1938, "meters"),
  14416. weight: math.unit(54, "kg"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/nebula-shahar/front.svg",
  14420. extra: 1642 / 1436,
  14421. bottom: 0.06
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Megamicro",
  14428. height: math.unit(0.3, "mm")
  14429. },
  14430. {
  14431. name: "Micro",
  14432. height: math.unit(3, "cm")
  14433. },
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(138, "cm"),
  14437. default: true
  14438. },
  14439. {
  14440. name: "Macro",
  14441. height: math.unit(30, "m")
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(5.24, "feet"),
  14450. weight: math.unit(150, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/shayla/front.svg",
  14454. extra: 1512 / 1414,
  14455. bottom: 0.01
  14456. }
  14457. },
  14458. back: {
  14459. height: math.unit(5.24, "feet"),
  14460. weight: math.unit(150, "lb"),
  14461. name: "Back",
  14462. image: {
  14463. source: "./media/characters/shayla/back.svg",
  14464. extra: 1512 / 1414
  14465. }
  14466. },
  14467. hand: {
  14468. height: math.unit(0.7781496062992126, "feet"),
  14469. name: "Hand",
  14470. image: {
  14471. source: "./media/characters/shayla/hand.svg"
  14472. }
  14473. },
  14474. foot: {
  14475. height: math.unit(1.4206036745406823, "feet"),
  14476. name: "Foot",
  14477. image: {
  14478. source: "./media/characters/shayla/foot.svg"
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Micro",
  14485. height: math.unit(0.32, "feet")
  14486. },
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(5.24, "feet"),
  14490. default: true
  14491. },
  14492. {
  14493. name: "Macro",
  14494. height: math.unit(492.12, "feet")
  14495. },
  14496. {
  14497. name: "Megamacro",
  14498. height: math.unit(186.41, "miles")
  14499. },
  14500. ]
  14501. ))
  14502. characterMakers.push(() => makeCharacter(
  14503. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14504. {
  14505. front: {
  14506. height: math.unit(2.2, "m"),
  14507. weight: math.unit(120, "kg"),
  14508. name: "Front",
  14509. image: {
  14510. source: "./media/characters/pia-jr/front.svg",
  14511. extra: 1000 / 970,
  14512. bottom: 0.035
  14513. }
  14514. },
  14515. hand: {
  14516. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14517. name: "Hand",
  14518. image: {
  14519. source: "./media/characters/pia-jr/hand.svg"
  14520. }
  14521. },
  14522. paw: {
  14523. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14524. name: "Paw",
  14525. image: {
  14526. source: "./media/characters/pia-jr/paw.svg"
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Micro",
  14533. height: math.unit(1.2, "cm")
  14534. },
  14535. {
  14536. name: "Normal",
  14537. height: math.unit(2.2, "m"),
  14538. default: true
  14539. },
  14540. {
  14541. name: "Macro",
  14542. height: math.unit(180, "m")
  14543. },
  14544. {
  14545. name: "Megamacro",
  14546. height: math.unit(420, "km")
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14552. {
  14553. front: {
  14554. height: math.unit(2, "m"),
  14555. weight: math.unit(115, "kg"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/pia-sr/front.svg",
  14559. extra: 760 / 730,
  14560. bottom: 0.015
  14561. }
  14562. },
  14563. back: {
  14564. height: math.unit(2, "m"),
  14565. weight: math.unit(115, "kg"),
  14566. name: "Back",
  14567. image: {
  14568. source: "./media/characters/pia-sr/back.svg",
  14569. extra: 760 / 730,
  14570. bottom: 0.01
  14571. }
  14572. },
  14573. hand: {
  14574. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14575. name: "Hand",
  14576. image: {
  14577. source: "./media/characters/pia-sr/hand.svg"
  14578. }
  14579. },
  14580. foot: {
  14581. height: math.unit(1.83, "feet"),
  14582. name: "Foot",
  14583. image: {
  14584. source: "./media/characters/pia-sr/foot.svg"
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Micro",
  14591. height: math.unit(88, "mm")
  14592. },
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(2, "m"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Macro",
  14600. height: math.unit(200, "m")
  14601. },
  14602. {
  14603. name: "Megamacro",
  14604. height: math.unit(420, "km")
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14610. {
  14611. front: {
  14612. height: math.unit(8 + 2 / 12, "feet"),
  14613. weight: math.unit(300, "lb"),
  14614. name: "Front",
  14615. image: {
  14616. source: "./media/characters/kibibyte/front.svg",
  14617. extra: 2221 / 2098,
  14618. bottom: 0.04
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Normal",
  14625. height: math.unit(8 + 2 / 12, "feet"),
  14626. default: true
  14627. },
  14628. {
  14629. name: "Socialable Macro",
  14630. height: math.unit(50, "feet")
  14631. },
  14632. {
  14633. name: "Macro",
  14634. height: math.unit(300, "feet")
  14635. },
  14636. {
  14637. name: "Megamacro",
  14638. height: math.unit(500, "miles")
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(150, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/felix/front.svg",
  14651. extra: 762 / 722,
  14652. bottom: 0.02
  14653. }
  14654. },
  14655. frontClothed: {
  14656. height: math.unit(6, "feet"),
  14657. weight: math.unit(150, "lb"),
  14658. name: "Front (Clothed)",
  14659. image: {
  14660. source: "./media/characters/felix/front-clothed.svg",
  14661. extra: 762 / 722,
  14662. bottom: 0.02
  14663. }
  14664. },
  14665. },
  14666. [
  14667. {
  14668. name: "Normal",
  14669. height: math.unit(6 + 8 / 12, "feet"),
  14670. default: true
  14671. },
  14672. {
  14673. name: "Macro",
  14674. height: math.unit(2600, "feet")
  14675. },
  14676. {
  14677. name: "Megamacro",
  14678. height: math.unit(450, "miles")
  14679. },
  14680. ]
  14681. ))
  14682. characterMakers.push(() => makeCharacter(
  14683. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14684. {
  14685. front: {
  14686. height: math.unit(6 + 1 / 12, "feet"),
  14687. weight: math.unit(250, "lb"),
  14688. name: "Front",
  14689. image: {
  14690. source: "./media/characters/tobo/front.svg",
  14691. extra: 608 / 586,
  14692. bottom: 0.023
  14693. }
  14694. },
  14695. back: {
  14696. height: math.unit(6 + 1 / 12, "feet"),
  14697. weight: math.unit(250, "lb"),
  14698. name: "Back",
  14699. image: {
  14700. source: "./media/characters/tobo/back.svg",
  14701. extra: 608 / 586
  14702. }
  14703. },
  14704. },
  14705. [
  14706. {
  14707. name: "Nano",
  14708. height: math.unit(2, "nm")
  14709. },
  14710. {
  14711. name: "Megamicro",
  14712. height: math.unit(0.1, "mm")
  14713. },
  14714. {
  14715. name: "Micro",
  14716. height: math.unit(1, "inch"),
  14717. default: true
  14718. },
  14719. {
  14720. name: "Human-sized",
  14721. height: math.unit(6 + 1 / 12, "feet")
  14722. },
  14723. {
  14724. name: "Macro",
  14725. height: math.unit(250, "feet")
  14726. },
  14727. {
  14728. name: "Megamacro",
  14729. height: math.unit(75, "miles")
  14730. },
  14731. {
  14732. name: "Texas-sized",
  14733. height: math.unit(750, "miles")
  14734. },
  14735. {
  14736. name: "Teramacro",
  14737. height: math.unit(50000, "miles")
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(6, "feet"),
  14746. weight: math.unit(269, "lb"),
  14747. name: "Front",
  14748. image: {
  14749. source: "./media/characters/danny-kapowsky/front.svg",
  14750. extra: 766 / 736,
  14751. bottom: 0.044
  14752. }
  14753. },
  14754. back: {
  14755. height: math.unit(6, "feet"),
  14756. weight: math.unit(269, "lb"),
  14757. name: "Back",
  14758. image: {
  14759. source: "./media/characters/danny-kapowsky/back.svg",
  14760. extra: 797 / 760,
  14761. bottom: 0.025
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Macro",
  14768. height: math.unit(150, "feet"),
  14769. default: true
  14770. },
  14771. {
  14772. name: "Macro+",
  14773. height: math.unit(200, "feet")
  14774. },
  14775. {
  14776. name: "Macro++",
  14777. height: math.unit(300, "feet")
  14778. },
  14779. {
  14780. name: "Macro+++",
  14781. height: math.unit(400, "feet")
  14782. },
  14783. ]
  14784. ))
  14785. characterMakers.push(() => makeCharacter(
  14786. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14787. {
  14788. side: {
  14789. height: math.unit(6, "feet"),
  14790. weight: math.unit(170, "lb"),
  14791. name: "Side",
  14792. image: {
  14793. source: "./media/characters/finn/side.svg",
  14794. extra: 1953 / 1807,
  14795. bottom: 0.057
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Megamacro",
  14802. height: math.unit(14445, "feet"),
  14803. default: true
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(5 + 6 / 12, "feet"),
  14812. weight: math.unit(125, "lb"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/roy/front.svg",
  14816. extra: 1,
  14817. bottom: 0.11
  14818. }
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Micro",
  14824. height: math.unit(3, "inches"),
  14825. default: true
  14826. },
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(5 + 6 / 12, "feet")
  14830. },
  14831. {
  14832. name: "Lesser Macro",
  14833. height: math.unit(60, "feet")
  14834. },
  14835. {
  14836. name: "Greater Macro",
  14837. height: math.unit(120, "feet")
  14838. },
  14839. ]
  14840. ))
  14841. characterMakers.push(() => makeCharacter(
  14842. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14843. {
  14844. front: {
  14845. height: math.unit(6, "feet"),
  14846. weight: math.unit(100, "lb"),
  14847. name: "Front",
  14848. image: {
  14849. source: "./media/characters/aevsivs/front.svg",
  14850. extra: 1,
  14851. bottom: 0.03
  14852. }
  14853. },
  14854. back: {
  14855. height: math.unit(6, "feet"),
  14856. weight: math.unit(100, "lb"),
  14857. name: "Back",
  14858. image: {
  14859. source: "./media/characters/aevsivs/back.svg"
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Micro",
  14866. height: math.unit(2, "inches"),
  14867. default: true
  14868. },
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(5, "feet")
  14872. },
  14873. ]
  14874. ))
  14875. characterMakers.push(() => makeCharacter(
  14876. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14877. {
  14878. front: {
  14879. height: math.unit(5 + 7 / 12, "feet"),
  14880. weight: math.unit(159, "lb"),
  14881. name: "Front",
  14882. image: {
  14883. source: "./media/characters/hildegard/front.svg",
  14884. extra: 289 / 269,
  14885. bottom: 7.63 / 297.8
  14886. }
  14887. },
  14888. back: {
  14889. height: math.unit(5 + 7 / 12, "feet"),
  14890. weight: math.unit(159, "lb"),
  14891. name: "Back",
  14892. image: {
  14893. source: "./media/characters/hildegard/back.svg",
  14894. extra: 280 / 260,
  14895. bottom: 2.3 / 282
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(5 + 7 / 12, "feet"),
  14903. default: true
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14909. {
  14910. bernard: {
  14911. height: math.unit(2 + 7 / 12, "feet"),
  14912. weight: math.unit(66, "lb"),
  14913. name: "Bernard",
  14914. rename: true,
  14915. image: {
  14916. source: "./media/characters/bernard-wilder/bernard.svg",
  14917. extra: 192 / 128,
  14918. bottom: 0.05
  14919. }
  14920. },
  14921. wilder: {
  14922. height: math.unit(5 + 8 / 12, "feet"),
  14923. weight: math.unit(143, "lb"),
  14924. name: "Wilder",
  14925. rename: true,
  14926. image: {
  14927. source: "./media/characters/bernard-wilder/wilder.svg",
  14928. extra: 361 / 312,
  14929. bottom: 0.02
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(2 + 7 / 12, "feet"),
  14937. default: true
  14938. },
  14939. ]
  14940. ))
  14941. characterMakers.push(() => makeCharacter(
  14942. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14943. {
  14944. anthro: {
  14945. height: math.unit(6 + 1 / 12, "feet"),
  14946. weight: math.unit(155, "lb"),
  14947. name: "Anthro",
  14948. image: {
  14949. source: "./media/characters/hearth/anthro.svg",
  14950. extra: 260 / 250,
  14951. bottom: 0.02
  14952. }
  14953. },
  14954. feral: {
  14955. height: math.unit(3.78, "feet"),
  14956. weight: math.unit(35, "kg"),
  14957. name: "Feral",
  14958. image: {
  14959. source: "./media/characters/hearth/feral.svg",
  14960. extra: 153 / 135,
  14961. bottom: 0.03
  14962. }
  14963. },
  14964. },
  14965. [
  14966. {
  14967. name: "Normal",
  14968. height: math.unit(6 + 1 / 12, "feet"),
  14969. default: true
  14970. },
  14971. ]
  14972. ))
  14973. characterMakers.push(() => makeCharacter(
  14974. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14975. {
  14976. front: {
  14977. height: math.unit(6, "feet"),
  14978. weight: math.unit(182, "lb"),
  14979. name: "Front",
  14980. image: {
  14981. source: "./media/characters/ingrid/front.svg",
  14982. extra: 294 / 268,
  14983. bottom: 0.027
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Normal",
  14990. height: math.unit(6, "feet"),
  14991. default: true
  14992. },
  14993. ]
  14994. ))
  14995. characterMakers.push(() => makeCharacter(
  14996. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14997. {
  14998. eevee: {
  14999. height: math.unit(2 + 10 / 12, "feet"),
  15000. weight: math.unit(86, "lb"),
  15001. name: "Malgam",
  15002. image: {
  15003. source: "./media/characters/malgam/eevee.svg",
  15004. extra: 218 / 180,
  15005. bottom: 0.2
  15006. }
  15007. },
  15008. sylveon: {
  15009. height: math.unit(4, "feet"),
  15010. weight: math.unit(101, "lb"),
  15011. name: "Future Malgam",
  15012. rename: true,
  15013. image: {
  15014. source: "./media/characters/malgam/sylveon.svg",
  15015. extra: 371 / 325,
  15016. bottom: 0.015
  15017. }
  15018. },
  15019. gigantamax: {
  15020. height: math.unit(50, "feet"),
  15021. name: "Gigantamax Malgam",
  15022. rename: true,
  15023. image: {
  15024. source: "./media/characters/malgam/gigantamax.svg"
  15025. }
  15026. },
  15027. },
  15028. [
  15029. {
  15030. name: "Normal",
  15031. height: math.unit(2 + 10 / 12, "feet"),
  15032. default: true
  15033. },
  15034. ]
  15035. ))
  15036. characterMakers.push(() => makeCharacter(
  15037. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15038. {
  15039. front: {
  15040. height: math.unit(5 + 11 / 12, "feet"),
  15041. weight: math.unit(188, "lb"),
  15042. name: "Front",
  15043. image: {
  15044. source: "./media/characters/fleur/front.svg",
  15045. extra: 309 / 283,
  15046. bottom: 0.007
  15047. }
  15048. },
  15049. },
  15050. [
  15051. {
  15052. name: "Normal",
  15053. height: math.unit(5 + 11 / 12, "feet"),
  15054. default: true
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(5 + 4 / 12, "feet"),
  15063. weight: math.unit(122, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/jude/front.svg",
  15067. extra: 288 / 273,
  15068. bottom: 0.03
  15069. }
  15070. },
  15071. },
  15072. [
  15073. {
  15074. name: "Normal",
  15075. height: math.unit(5 + 4 / 12, "feet"),
  15076. default: true
  15077. },
  15078. ]
  15079. ))
  15080. characterMakers.push(() => makeCharacter(
  15081. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15082. {
  15083. front: {
  15084. height: math.unit(5 + 11 / 12, "feet"),
  15085. weight: math.unit(190, "lb"),
  15086. name: "Front",
  15087. image: {
  15088. source: "./media/characters/seara/front.svg",
  15089. extra: 1,
  15090. bottom: 0.05
  15091. }
  15092. },
  15093. },
  15094. [
  15095. {
  15096. name: "Normal",
  15097. height: math.unit(5 + 11 / 12, "feet"),
  15098. default: true
  15099. },
  15100. ]
  15101. ))
  15102. characterMakers.push(() => makeCharacter(
  15103. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15104. {
  15105. front: {
  15106. height: math.unit(16 + 5 / 12, "feet"),
  15107. weight: math.unit(524, "lb"),
  15108. name: "Front",
  15109. image: {
  15110. source: "./media/characters/caspian/front.svg",
  15111. extra: 1,
  15112. bottom: 0.04
  15113. }
  15114. },
  15115. },
  15116. [
  15117. {
  15118. name: "Normal",
  15119. height: math.unit(16 + 5 / 12, "feet"),
  15120. default: true
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(5 + 7 / 12, "feet"),
  15129. weight: math.unit(170, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/mika/front.svg",
  15133. extra: 1,
  15134. bottom: 0.016
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(5 + 7 / 12, "feet"),
  15142. default: true
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15148. {
  15149. front: {
  15150. height: math.unit(6 + 2 / 12, "feet"),
  15151. weight: math.unit(268, "lb"),
  15152. name: "Front",
  15153. image: {
  15154. source: "./media/characters/sol/front.svg",
  15155. extra: 247 / 231,
  15156. bottom: 0.05
  15157. }
  15158. },
  15159. },
  15160. [
  15161. {
  15162. name: "Normal",
  15163. height: math.unit(6 + 2 / 12, "feet"),
  15164. default: true
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15170. {
  15171. buizel: {
  15172. height: math.unit(2 + 5 / 12, "feet"),
  15173. weight: math.unit(87, "lb"),
  15174. name: "Buizel",
  15175. image: {
  15176. source: "./media/characters/umiko/buizel.svg",
  15177. extra: 172 / 157,
  15178. bottom: 0.01
  15179. }
  15180. },
  15181. floatzel: {
  15182. height: math.unit(5 + 9 / 12, "feet"),
  15183. weight: math.unit(250, "lb"),
  15184. name: "Floatzel",
  15185. image: {
  15186. source: "./media/characters/umiko/floatzel.svg",
  15187. extra: 262 / 248
  15188. }
  15189. },
  15190. },
  15191. [
  15192. {
  15193. name: "Normal",
  15194. height: math.unit(2 + 5 / 12, "feet"),
  15195. default: true
  15196. },
  15197. ]
  15198. ))
  15199. characterMakers.push(() => makeCharacter(
  15200. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15201. {
  15202. front: {
  15203. height: math.unit(6 + 2 / 12, "feet"),
  15204. weight: math.unit(146, "lb"),
  15205. name: "Front",
  15206. image: {
  15207. source: "./media/characters/iliac/front.svg",
  15208. extra: 389 / 365,
  15209. bottom: 0.035
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(6 + 2 / 12, "feet"),
  15217. default: true
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(170, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/topaz/front.svg",
  15230. extra: 317 / 303,
  15231. bottom: 0.055
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Normal",
  15238. height: math.unit(6, "feet"),
  15239. default: true
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15245. {
  15246. front: {
  15247. height: math.unit(5 + 11 / 12, "feet"),
  15248. weight: math.unit(144, "lb"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/gabriel/front.svg",
  15252. extra: 285 / 262,
  15253. bottom: 0.004
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Normal",
  15260. height: math.unit(5 + 11 / 12, "feet"),
  15261. default: true
  15262. },
  15263. ]
  15264. ))
  15265. characterMakers.push(() => makeCharacter(
  15266. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15267. {
  15268. side: {
  15269. height: math.unit(6 + 5 / 12, "feet"),
  15270. weight: math.unit(300, "lb"),
  15271. name: "Side",
  15272. image: {
  15273. source: "./media/characters/tempest-suicune/side.svg",
  15274. extra: 195 / 154,
  15275. bottom: 0.04
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(6 + 5 / 12, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15289. {
  15290. front: {
  15291. height: math.unit(7 + 2 / 12, "feet"),
  15292. weight: math.unit(322, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/vulcan/front.svg",
  15296. extra: 154 / 147,
  15297. bottom: 0.04
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(7 + 2 / 12, "feet"),
  15305. default: true
  15306. },
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15311. {
  15312. front: {
  15313. height: math.unit(5 + 10 / 12, "feet"),
  15314. weight: math.unit(264, "lb"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/gault/front.svg",
  15318. extra: 161 / 140,
  15319. bottom: 0.028
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(5 + 10 / 12, "feet"),
  15327. default: true
  15328. },
  15329. ]
  15330. ))
  15331. characterMakers.push(() => makeCharacter(
  15332. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15333. {
  15334. front: {
  15335. height: math.unit(6, "feet"),
  15336. weight: math.unit(150, "lb"),
  15337. name: "Front",
  15338. image: {
  15339. source: "./media/characters/shard/front.svg",
  15340. extra: 273 / 238,
  15341. bottom: 0.02
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(3 + 6 / 12, "feet"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(5 + 11 / 12, "feet"),
  15358. weight: math.unit(146, "lb"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/ashe/front.svg",
  15362. extra: 400 / 373,
  15363. bottom: 0.01
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(5 + 11 / 12, "feet"),
  15371. default: true
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15377. {
  15378. front: {
  15379. height: math.unit(5 + 5 / 12, "feet"),
  15380. weight: math.unit(135, "lb"),
  15381. name: "Front",
  15382. image: {
  15383. source: "./media/characters/beatrix/front.svg",
  15384. extra: 392 / 379,
  15385. bottom: 0.01
  15386. }
  15387. },
  15388. },
  15389. [
  15390. {
  15391. name: "Normal",
  15392. height: math.unit(6, "feet"),
  15393. default: true
  15394. },
  15395. ]
  15396. ))
  15397. characterMakers.push(() => makeCharacter(
  15398. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15399. {
  15400. front: {
  15401. height: math.unit(6, "feet"),
  15402. weight: math.unit(150, "lb"),
  15403. name: "Front",
  15404. image: {
  15405. source: "./media/characters/ignatius/front.svg",
  15406. extra: 245 / 222,
  15407. bottom: 0.01
  15408. }
  15409. },
  15410. },
  15411. [
  15412. {
  15413. name: "Normal",
  15414. height: math.unit(5 + 5 / 12, "feet"),
  15415. default: true
  15416. },
  15417. ]
  15418. ))
  15419. characterMakers.push(() => makeCharacter(
  15420. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15421. {
  15422. front: {
  15423. height: math.unit(6 + 2 / 12, "feet"),
  15424. weight: math.unit(138, "lb"),
  15425. name: "Front",
  15426. image: {
  15427. source: "./media/characters/mei-li/front.svg",
  15428. extra: 237 / 229,
  15429. bottom: 0.03
  15430. }
  15431. },
  15432. },
  15433. [
  15434. {
  15435. name: "Normal",
  15436. height: math.unit(6 + 2 / 12, "feet"),
  15437. default: true
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15443. {
  15444. front: {
  15445. height: math.unit(2 + 4 / 12, "feet"),
  15446. weight: math.unit(62, "lb"),
  15447. name: "Front",
  15448. image: {
  15449. source: "./media/characters/puru/front.svg",
  15450. extra: 206 / 149,
  15451. bottom: 0.06
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(2 + 4 / 12, "feet"),
  15459. default: true
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15465. {
  15466. anthro: {
  15467. height: math.unit(5 + 8/12, "feet"),
  15468. weight: math.unit(200, "lb"),
  15469. energyNeed: math.unit(2000, "kcal"),
  15470. name: "Anthro",
  15471. image: {
  15472. source: "./media/characters/kee/anthro.svg",
  15473. extra: 3251/3184,
  15474. bottom: 250/3501
  15475. }
  15476. },
  15477. taur: {
  15478. height: math.unit(11, "feet"),
  15479. weight: math.unit(500, "lb"),
  15480. energyNeed: math.unit(5000, "kcal"),
  15481. name: "Taur",
  15482. image: {
  15483. source: "./media/characters/kee/taur.svg",
  15484. extra: 1362/1320,
  15485. bottom: 83/1445
  15486. }
  15487. },
  15488. },
  15489. [
  15490. {
  15491. name: "Normal",
  15492. height: math.unit(5 + 8/12, "feet"),
  15493. default: true
  15494. },
  15495. {
  15496. name: "Macro",
  15497. height: math.unit(35, "feet")
  15498. },
  15499. ]
  15500. ))
  15501. characterMakers.push(() => makeCharacter(
  15502. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15503. {
  15504. anthro: {
  15505. height: math.unit(7, "feet"),
  15506. weight: math.unit(190, "lb"),
  15507. name: "Anthro",
  15508. image: {
  15509. source: "./media/characters/cobalt-dracha/anthro.svg",
  15510. extra: 231 / 225,
  15511. bottom: 0.04
  15512. }
  15513. },
  15514. feral: {
  15515. height: math.unit(9 + 7 / 12, "feet"),
  15516. weight: math.unit(294, "lb"),
  15517. name: "Feral",
  15518. image: {
  15519. source: "./media/characters/cobalt-dracha/feral.svg",
  15520. extra: 692 / 633,
  15521. bottom: 0.05
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Normal",
  15528. height: math.unit(7, "feet"),
  15529. default: true
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15535. {
  15536. fallen: {
  15537. height: math.unit(11 + 8 / 12, "feet"),
  15538. weight: math.unit(485, "lb"),
  15539. name: "Java (Fallen)",
  15540. rename: true,
  15541. image: {
  15542. source: "./media/characters/java/fallen.svg",
  15543. extra: 226 / 208,
  15544. bottom: 0.005
  15545. }
  15546. },
  15547. godkin: {
  15548. height: math.unit(10 + 6 / 12, "feet"),
  15549. weight: math.unit(328, "lb"),
  15550. name: "Java (Godkin)",
  15551. rename: true,
  15552. image: {
  15553. source: "./media/characters/java/godkin.svg",
  15554. extra: 270 / 262,
  15555. bottom: 0.02
  15556. }
  15557. },
  15558. },
  15559. [
  15560. {
  15561. name: "Normal",
  15562. height: math.unit(11 + 8 / 12, "feet"),
  15563. default: true
  15564. },
  15565. ]
  15566. ))
  15567. characterMakers.push(() => makeCharacter(
  15568. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15569. {
  15570. front: {
  15571. height: math.unit(7 + 8 / 12, "feet"),
  15572. weight: math.unit(320, "lb"),
  15573. name: "Front",
  15574. image: {
  15575. source: "./media/characters/skoll/front.svg",
  15576. extra: 232 / 220,
  15577. bottom: 0.02
  15578. }
  15579. },
  15580. },
  15581. [
  15582. {
  15583. name: "Normal",
  15584. height: math.unit(7 + 8 / 12, "feet"),
  15585. default: true
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(5 + 9 / 12, "feet"),
  15594. weight: math.unit(170, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/purna/front.svg",
  15598. extra: 239 / 229,
  15599. bottom: 0.01
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(5 + 9 / 12, "feet"),
  15607. default: true
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(5 + 9 / 12, "feet"),
  15616. weight: math.unit(142, "lb"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/kuva/front.svg",
  15620. extra: 281 / 271,
  15621. bottom: 0.006
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Normal",
  15628. height: math.unit(5 + 9 / 12, "feet"),
  15629. default: true
  15630. },
  15631. ]
  15632. ))
  15633. characterMakers.push(() => makeCharacter(
  15634. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15635. {
  15636. anthro: {
  15637. height: math.unit(9 + 2 / 12, "feet"),
  15638. weight: math.unit(270, "lb"),
  15639. name: "Anthro",
  15640. image: {
  15641. source: "./media/characters/embra/anthro.svg",
  15642. extra: 200 / 187,
  15643. bottom: 0.02
  15644. }
  15645. },
  15646. feral: {
  15647. height: math.unit(18 + 8 / 12, "feet"),
  15648. weight: math.unit(576, "lb"),
  15649. name: "Feral",
  15650. image: {
  15651. source: "./media/characters/embra/feral.svg",
  15652. extra: 152 / 137,
  15653. bottom: 0.037
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Normal",
  15660. height: math.unit(9 + 2 / 12, "feet"),
  15661. default: true
  15662. },
  15663. ]
  15664. ))
  15665. characterMakers.push(() => makeCharacter(
  15666. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15667. {
  15668. anthro: {
  15669. height: math.unit(10 + 9 / 12, "feet"),
  15670. weight: math.unit(224, "lb"),
  15671. name: "Anthro",
  15672. image: {
  15673. source: "./media/characters/grottos/anthro.svg",
  15674. extra: 350 / 332,
  15675. bottom: 0.045
  15676. }
  15677. },
  15678. feral: {
  15679. height: math.unit(20 + 7 / 12, "feet"),
  15680. weight: math.unit(629, "lb"),
  15681. name: "Feral",
  15682. image: {
  15683. source: "./media/characters/grottos/feral.svg",
  15684. extra: 207 / 190,
  15685. bottom: 0.05
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(10 + 9 / 12, "feet"),
  15693. default: true
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15699. {
  15700. anthro: {
  15701. height: math.unit(9 + 6 / 12, "feet"),
  15702. weight: math.unit(298, "lb"),
  15703. name: "Anthro",
  15704. image: {
  15705. source: "./media/characters/frifna/anthro.svg",
  15706. extra: 282 / 269,
  15707. bottom: 0.015
  15708. }
  15709. },
  15710. feral: {
  15711. height: math.unit(16 + 2 / 12, "feet"),
  15712. weight: math.unit(624, "lb"),
  15713. name: "Feral",
  15714. image: {
  15715. source: "./media/characters/frifna/feral.svg"
  15716. }
  15717. },
  15718. },
  15719. [
  15720. {
  15721. name: "Normal",
  15722. height: math.unit(9 + 6 / 12, "feet"),
  15723. default: true
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(6 + 2 / 12, "feet"),
  15732. weight: math.unit(168, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/elise/front.svg",
  15736. extra: 276 / 271
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Normal",
  15743. height: math.unit(6 + 2 / 12, "feet"),
  15744. default: true
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(5 + 10 / 12, "feet"),
  15753. weight: math.unit(210, "lb"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/glade/front.svg",
  15757. extra: 258 / 247,
  15758. bottom: 0.008
  15759. }
  15760. },
  15761. },
  15762. [
  15763. {
  15764. name: "Normal",
  15765. height: math.unit(5 + 10 / 12, "feet"),
  15766. default: true
  15767. },
  15768. ]
  15769. ))
  15770. characterMakers.push(() => makeCharacter(
  15771. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15772. {
  15773. front: {
  15774. height: math.unit(5 + 10 / 12, "feet"),
  15775. weight: math.unit(129, "lb"),
  15776. name: "Front",
  15777. image: {
  15778. source: "./media/characters/rina/front.svg",
  15779. extra: 266 / 255,
  15780. bottom: 0.005
  15781. }
  15782. },
  15783. },
  15784. [
  15785. {
  15786. name: "Normal",
  15787. height: math.unit(5 + 10 / 12, "feet"),
  15788. default: true
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15794. {
  15795. front: {
  15796. height: math.unit(6 + 1 / 12, "feet"),
  15797. weight: math.unit(192, "lb"),
  15798. name: "Front",
  15799. image: {
  15800. source: "./media/characters/veronica/front.svg",
  15801. extra: 319 / 309,
  15802. bottom: 0.005
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Normal",
  15809. height: math.unit(6 + 1 / 12, "feet"),
  15810. default: true
  15811. },
  15812. ]
  15813. ))
  15814. characterMakers.push(() => makeCharacter(
  15815. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15816. {
  15817. front: {
  15818. height: math.unit(9 + 3 / 12, "feet"),
  15819. weight: math.unit(1100, "lb"),
  15820. name: "Front",
  15821. image: {
  15822. source: "./media/characters/braxton/front.svg",
  15823. extra: 1057 / 984,
  15824. bottom: 0.05
  15825. }
  15826. },
  15827. },
  15828. [
  15829. {
  15830. name: "Normal",
  15831. height: math.unit(9 + 3 / 12, "feet")
  15832. },
  15833. {
  15834. name: "Giant",
  15835. height: math.unit(300, "feet"),
  15836. default: true
  15837. },
  15838. {
  15839. name: "Macro",
  15840. height: math.unit(700, "feet")
  15841. },
  15842. {
  15843. name: "Megamacro",
  15844. height: math.unit(6000, "feet")
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(6 + 7 / 12, "feet"),
  15853. weight: math.unit(150, "lb"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/blue-feyonics/front.svg",
  15857. extra: 1403 / 1306,
  15858. bottom: 0.047
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(6 + 7 / 12, "feet"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(1.8, "meters"),
  15875. weight: math.unit(60, "kg"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/maxwell/front.svg",
  15879. extra: 2060 / 1873
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Micro",
  15886. height: math.unit(1, "mm")
  15887. },
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(1.8, "meter"),
  15891. default: true
  15892. },
  15893. {
  15894. name: "Macro",
  15895. height: math.unit(30, "meters")
  15896. },
  15897. {
  15898. name: "Megamacro",
  15899. height: math.unit(10, "km")
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(6, "feet"),
  15908. weight: math.unit(150, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/jack/front.svg",
  15912. extra: 1754 / 1640,
  15913. bottom: 0.01
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(80000, "feet"),
  15921. default: true
  15922. },
  15923. {
  15924. name: "Max size",
  15925. height: math.unit(10, "lightyears")
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15931. {
  15932. urban: {
  15933. height: math.unit(5, "feet"),
  15934. weight: math.unit(240, "lb"),
  15935. name: "Urban",
  15936. image: {
  15937. source: "./media/characters/cafat/urban.svg",
  15938. extra: 1223/1126,
  15939. bottom: 205/1428
  15940. }
  15941. },
  15942. summer: {
  15943. height: math.unit(5, "feet"),
  15944. weight: math.unit(240, "lb"),
  15945. name: "Summer",
  15946. image: {
  15947. source: "./media/characters/cafat/summer.svg",
  15948. extra: 1223/1126,
  15949. bottom: 205/1428
  15950. }
  15951. },
  15952. winter: {
  15953. height: math.unit(5, "feet"),
  15954. weight: math.unit(240, "lb"),
  15955. name: "Winter",
  15956. image: {
  15957. source: "./media/characters/cafat/winter.svg",
  15958. extra: 1223/1126,
  15959. bottom: 205/1428
  15960. }
  15961. },
  15962. lingerie: {
  15963. height: math.unit(5, "feet"),
  15964. weight: math.unit(240, "lb"),
  15965. name: "Lingerie",
  15966. image: {
  15967. source: "./media/characters/cafat/lingerie.svg",
  15968. extra: 1223/1126,
  15969. bottom: 205/1428
  15970. }
  15971. },
  15972. upright: {
  15973. height: math.unit(6.3, "feet"),
  15974. weight: math.unit(240, "lb"),
  15975. name: "Upright",
  15976. image: {
  15977. source: "./media/characters/cafat/upright.svg",
  15978. bottom: 0.01
  15979. }
  15980. },
  15981. uprightFull: {
  15982. height: math.unit(6.3, "feet"),
  15983. weight: math.unit(240, "lb"),
  15984. name: "Upright (Full)",
  15985. image: {
  15986. source: "./media/characters/cafat/upright-full.svg",
  15987. bottom: 0.01
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Small",
  15994. height: math.unit(5, "feet"),
  15995. default: true
  15996. },
  15997. {
  15998. name: "Large",
  15999. height: math.unit(13, "feet")
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/verin-raharra/front.svg",
  16012. extra: 5019 / 4835,
  16013. bottom: 0.023
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(7 + 5 / 12, "feet"),
  16021. default: true
  16022. },
  16023. {
  16024. name: "Upsized",
  16025. height: math.unit(20, "feet")
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(7, "feet"),
  16034. weight: math.unit(230, "lb"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/nakata/front.svg",
  16038. extra: 1.005,
  16039. bottom: 0.01
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(7, "feet"),
  16047. default: true
  16048. },
  16049. {
  16050. name: "Big",
  16051. height: math.unit(14, "feet")
  16052. },
  16053. {
  16054. name: "Macro",
  16055. height: math.unit(400, "feet")
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16061. {
  16062. front: {
  16063. height: math.unit(4.91, "feet"),
  16064. weight: math.unit(100, "lb"),
  16065. name: "Front",
  16066. image: {
  16067. source: "./media/characters/lily/front.svg",
  16068. extra: 1585 / 1415,
  16069. bottom: 0.02
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(4.91, "feet"),
  16077. default: true
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16083. {
  16084. laying: {
  16085. height: math.unit(4 + 4 / 12, "feet"),
  16086. weight: math.unit(600, "lb"),
  16087. name: "Laying",
  16088. image: {
  16089. source: "./media/characters/sheila/laying.svg",
  16090. extra: 1333 / 1265,
  16091. bottom: 0.16
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Normal",
  16098. height: math.unit(4 + 4 / 12, "feet"),
  16099. default: true
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16105. {
  16106. front: {
  16107. height: math.unit(6, "feet"),
  16108. weight: math.unit(190, "lb"),
  16109. name: "Front",
  16110. image: {
  16111. source: "./media/characters/sax/front.svg",
  16112. extra: 1187 / 973,
  16113. bottom: 0.042
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Micro",
  16120. height: math.unit(4, "inches"),
  16121. default: true
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16127. {
  16128. front: {
  16129. height: math.unit(6, "feet"),
  16130. weight: math.unit(150, "lb"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/pandora/front.svg",
  16134. extra: 2720 / 2556,
  16135. bottom: 0.015
  16136. }
  16137. },
  16138. back: {
  16139. height: math.unit(6, "feet"),
  16140. weight: math.unit(150, "lb"),
  16141. name: "Back",
  16142. image: {
  16143. source: "./media/characters/pandora/back.svg",
  16144. extra: 2720 / 2556,
  16145. bottom: 0.01
  16146. }
  16147. },
  16148. beans: {
  16149. height: math.unit(6 / 8, "feet"),
  16150. name: "Beans",
  16151. image: {
  16152. source: "./media/characters/pandora/beans.svg"
  16153. }
  16154. },
  16155. collar: {
  16156. height: math.unit(0.31, "feet"),
  16157. name: "Collar",
  16158. image: {
  16159. source: "./media/characters/pandora/collar.svg"
  16160. }
  16161. },
  16162. skirt: {
  16163. height: math.unit(6, "feet"),
  16164. weight: math.unit(150, "lb"),
  16165. name: "Skirt",
  16166. image: {
  16167. source: "./media/characters/pandora/skirt.svg",
  16168. extra: 1622 / 1525,
  16169. bottom: 0.015
  16170. }
  16171. },
  16172. hoodie: {
  16173. height: math.unit(6, "feet"),
  16174. weight: math.unit(150, "lb"),
  16175. name: "Hoodie",
  16176. image: {
  16177. source: "./media/characters/pandora/hoodie.svg",
  16178. extra: 1622 / 1525,
  16179. bottom: 0.015
  16180. }
  16181. },
  16182. casual: {
  16183. height: math.unit(6, "feet"),
  16184. weight: math.unit(150, "lb"),
  16185. name: "Casual",
  16186. image: {
  16187. source: "./media/characters/pandora/casual.svg",
  16188. extra: 1622 / 1525,
  16189. bottom: 0.015
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Normal",
  16196. height: math.unit(6, "feet")
  16197. },
  16198. {
  16199. name: "Big Steppy",
  16200. height: math.unit(1, "km"),
  16201. default: true
  16202. },
  16203. {
  16204. name: "Galactic Steppy",
  16205. height: math.unit(2, "gigameters")
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16211. {
  16212. side: {
  16213. height: math.unit(10, "feet"),
  16214. weight: math.unit(800, "kg"),
  16215. name: "Side",
  16216. image: {
  16217. source: "./media/characters/venio-darcony/side.svg",
  16218. extra: 1373 / 1003,
  16219. bottom: 0.037
  16220. }
  16221. },
  16222. front: {
  16223. height: math.unit(19, "feet"),
  16224. weight: math.unit(800, "kg"),
  16225. name: "Front",
  16226. image: {
  16227. source: "./media/characters/venio-darcony/front.svg"
  16228. }
  16229. },
  16230. back: {
  16231. height: math.unit(19, "feet"),
  16232. weight: math.unit(800, "kg"),
  16233. name: "Back",
  16234. image: {
  16235. source: "./media/characters/venio-darcony/back.svg"
  16236. }
  16237. },
  16238. sideNsfw: {
  16239. height: math.unit(10, "feet"),
  16240. weight: math.unit(800, "kg"),
  16241. name: "Side (NSFW)",
  16242. image: {
  16243. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16244. extra: 1373 / 1003,
  16245. bottom: 0.037
  16246. }
  16247. },
  16248. frontNsfw: {
  16249. height: math.unit(19, "feet"),
  16250. weight: math.unit(800, "kg"),
  16251. name: "Front (NSFW)",
  16252. image: {
  16253. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16254. }
  16255. },
  16256. backNsfw: {
  16257. height: math.unit(19, "feet"),
  16258. weight: math.unit(800, "kg"),
  16259. name: "Back (NSFW)",
  16260. image: {
  16261. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16262. }
  16263. },
  16264. sideArmored: {
  16265. height: math.unit(10, "feet"),
  16266. weight: math.unit(800, "kg"),
  16267. name: "Side (Armored)",
  16268. image: {
  16269. source: "./media/characters/venio-darcony/side-armored.svg",
  16270. extra: 1373 / 1003,
  16271. bottom: 0.037
  16272. }
  16273. },
  16274. frontArmored: {
  16275. height: math.unit(19, "feet"),
  16276. weight: math.unit(900, "kg"),
  16277. name: "Front (Armored)",
  16278. image: {
  16279. source: "./media/characters/venio-darcony/front-armored.svg"
  16280. }
  16281. },
  16282. backArmored: {
  16283. height: math.unit(19, "feet"),
  16284. weight: math.unit(900, "kg"),
  16285. name: "Back (Armored)",
  16286. image: {
  16287. source: "./media/characters/venio-darcony/back-armored.svg"
  16288. }
  16289. },
  16290. sword: {
  16291. height: math.unit(10, "feet"),
  16292. weight: math.unit(50, "lb"),
  16293. name: "Sword",
  16294. image: {
  16295. source: "./media/characters/venio-darcony/sword.svg"
  16296. }
  16297. },
  16298. },
  16299. [
  16300. {
  16301. name: "Normal",
  16302. height: math.unit(10, "feet")
  16303. },
  16304. {
  16305. name: "Macro",
  16306. height: math.unit(130, "feet"),
  16307. default: true
  16308. },
  16309. {
  16310. name: "Macro+",
  16311. height: math.unit(240, "feet")
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16317. {
  16318. front: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(150, "lb"),
  16321. name: "Front",
  16322. image: {
  16323. source: "./media/characters/veski/front.svg",
  16324. extra: 1299 / 1225,
  16325. bottom: 0.04
  16326. }
  16327. },
  16328. back: {
  16329. height: math.unit(6, "feet"),
  16330. weight: math.unit(150, "lb"),
  16331. name: "Back",
  16332. image: {
  16333. source: "./media/characters/veski/back.svg",
  16334. extra: 1299 / 1225,
  16335. bottom: 0.008
  16336. }
  16337. },
  16338. maw: {
  16339. height: math.unit(1.5 * 1.21, "feet"),
  16340. name: "Maw",
  16341. image: {
  16342. source: "./media/characters/veski/maw.svg"
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Macro",
  16349. height: math.unit(2, "km"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(5 + 7 / 12, "feet"),
  16359. name: "Front",
  16360. image: {
  16361. source: "./media/characters/isabelle/front.svg",
  16362. extra: 2130 / 1976,
  16363. bottom: 0.05
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Supermicro",
  16370. height: math.unit(10, "micrometers")
  16371. },
  16372. {
  16373. name: "Micro",
  16374. height: math.unit(1, "inch")
  16375. },
  16376. {
  16377. name: "Tiny",
  16378. height: math.unit(5, "inches")
  16379. },
  16380. {
  16381. name: "Standard",
  16382. height: math.unit(5 + 7 / 12, "inches")
  16383. },
  16384. {
  16385. name: "Macro",
  16386. height: math.unit(80, "meters"),
  16387. default: true
  16388. },
  16389. {
  16390. name: "Megamacro",
  16391. height: math.unit(250, "meters")
  16392. },
  16393. {
  16394. name: "Gigamacro",
  16395. height: math.unit(5, "km")
  16396. },
  16397. {
  16398. name: "Cosmic",
  16399. height: math.unit(2.5e6, "miles")
  16400. },
  16401. ]
  16402. ))
  16403. characterMakers.push(() => makeCharacter(
  16404. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16405. {
  16406. front: {
  16407. height: math.unit(6, "feet"),
  16408. weight: math.unit(150, "lb"),
  16409. name: "Front",
  16410. image: {
  16411. source: "./media/characters/hanzo/front.svg",
  16412. extra: 374 / 344,
  16413. bottom: 0.02
  16414. }
  16415. },
  16416. },
  16417. [
  16418. {
  16419. name: "Normal",
  16420. height: math.unit(8, "feet"),
  16421. default: true
  16422. },
  16423. ]
  16424. ))
  16425. characterMakers.push(() => makeCharacter(
  16426. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16427. {
  16428. front: {
  16429. height: math.unit(7, "feet"),
  16430. weight: math.unit(130, "lb"),
  16431. name: "Front",
  16432. image: {
  16433. source: "./media/characters/anna/front.svg",
  16434. extra: 169 / 145,
  16435. bottom: 0.06
  16436. }
  16437. },
  16438. full: {
  16439. height: math.unit(4.96, "feet"),
  16440. weight: math.unit(220, "lb"),
  16441. name: "Full",
  16442. image: {
  16443. source: "./media/characters/anna/full.svg",
  16444. extra: 138 / 114,
  16445. bottom: 0.15
  16446. }
  16447. },
  16448. tongue: {
  16449. height: math.unit(2.53, "feet"),
  16450. name: "Tongue",
  16451. image: {
  16452. source: "./media/characters/anna/tongue.svg"
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(7, "feet"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(7, "feet"),
  16469. weight: math.unit(150, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/ian-corvid/front.svg",
  16473. extra: 150 / 142,
  16474. bottom: 0.02
  16475. }
  16476. },
  16477. back: {
  16478. height: math.unit(7, "feet"),
  16479. weight: math.unit(150, "lb"),
  16480. name: "Back",
  16481. image: {
  16482. source: "./media/characters/ian-corvid/back.svg",
  16483. extra: 150 / 143,
  16484. bottom: 0.01
  16485. }
  16486. },
  16487. stomping: {
  16488. height: math.unit(7, "feet"),
  16489. weight: math.unit(150, "lb"),
  16490. name: "Stomping",
  16491. image: {
  16492. source: "./media/characters/ian-corvid/stomping.svg",
  16493. extra: 76 / 72
  16494. }
  16495. },
  16496. sitting: {
  16497. height: math.unit(7 / 1.8, "feet"),
  16498. weight: math.unit(150, "lb"),
  16499. name: "Sitting",
  16500. image: {
  16501. source: "./media/characters/ian-corvid/sitting.svg",
  16502. extra: 1400 / 1269,
  16503. bottom: 0.15
  16504. }
  16505. },
  16506. },
  16507. [
  16508. {
  16509. name: "Tiny Microw",
  16510. height: math.unit(1, "inch")
  16511. },
  16512. {
  16513. name: "Microw",
  16514. height: math.unit(6, "inches")
  16515. },
  16516. {
  16517. name: "Crow",
  16518. height: math.unit(7 + 1 / 12, "feet"),
  16519. default: true
  16520. },
  16521. {
  16522. name: "Macrow",
  16523. height: math.unit(176, "feet")
  16524. },
  16525. ]
  16526. ))
  16527. characterMakers.push(() => makeCharacter(
  16528. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16529. {
  16530. front: {
  16531. height: math.unit(5 + 7 / 12, "feet"),
  16532. weight: math.unit(147, "lb"),
  16533. name: "Front",
  16534. image: {
  16535. source: "./media/characters/natalie-kellon/front.svg",
  16536. extra: 1214 / 1141,
  16537. bottom: 0.02
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Micro",
  16544. height: math.unit(1 / 16, "inch")
  16545. },
  16546. {
  16547. name: "Tiny",
  16548. height: math.unit(4, "inches")
  16549. },
  16550. {
  16551. name: "Normal",
  16552. height: math.unit(5 + 7 / 12, "feet"),
  16553. default: true
  16554. },
  16555. {
  16556. name: "Amazon",
  16557. height: math.unit(12, "feet")
  16558. },
  16559. {
  16560. name: "Giantess",
  16561. height: math.unit(160, "meters")
  16562. },
  16563. {
  16564. name: "Titaness",
  16565. height: math.unit(800, "meters")
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16571. {
  16572. front: {
  16573. height: math.unit(6, "feet"),
  16574. weight: math.unit(150, "lb"),
  16575. name: "Front",
  16576. image: {
  16577. source: "./media/characters/alluria/front.svg",
  16578. extra: 806 / 738,
  16579. bottom: 0.01
  16580. }
  16581. },
  16582. side: {
  16583. height: math.unit(6, "feet"),
  16584. weight: math.unit(150, "lb"),
  16585. name: "Side",
  16586. image: {
  16587. source: "./media/characters/alluria/side.svg",
  16588. extra: 800 / 750,
  16589. }
  16590. },
  16591. back: {
  16592. height: math.unit(6, "feet"),
  16593. weight: math.unit(150, "lb"),
  16594. name: "Back",
  16595. image: {
  16596. source: "./media/characters/alluria/back.svg",
  16597. extra: 806 / 738,
  16598. }
  16599. },
  16600. frontMaid: {
  16601. height: math.unit(6, "feet"),
  16602. weight: math.unit(150, "lb"),
  16603. name: "Front (Maid)",
  16604. image: {
  16605. source: "./media/characters/alluria/front-maid.svg",
  16606. extra: 806 / 738,
  16607. bottom: 0.01
  16608. }
  16609. },
  16610. sideMaid: {
  16611. height: math.unit(6, "feet"),
  16612. weight: math.unit(150, "lb"),
  16613. name: "Side (Maid)",
  16614. image: {
  16615. source: "./media/characters/alluria/side-maid.svg",
  16616. extra: 800 / 750,
  16617. bottom: 0.005
  16618. }
  16619. },
  16620. backMaid: {
  16621. height: math.unit(6, "feet"),
  16622. weight: math.unit(150, "lb"),
  16623. name: "Back (Maid)",
  16624. image: {
  16625. source: "./media/characters/alluria/back-maid.svg",
  16626. extra: 806 / 738,
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Micro",
  16633. height: math.unit(6, "inches"),
  16634. default: true
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(6, "feet"),
  16643. weight: math.unit(150, "lb"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/kyle/front.svg",
  16647. extra: 1069 / 962,
  16648. bottom: 77.228 / 1727.45
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Macro",
  16655. height: math.unit(150, "feet"),
  16656. default: true
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(6, "feet"),
  16665. weight: math.unit(300, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/duncan/front.svg",
  16669. extra: 1650 / 1482,
  16670. bottom: 0.05
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Macro",
  16677. height: math.unit(100, "feet"),
  16678. default: true
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16684. {
  16685. front: {
  16686. height: math.unit(5 + 4 / 12, "feet"),
  16687. weight: math.unit(220, "lb"),
  16688. name: "Front",
  16689. image: {
  16690. source: "./media/characters/memory/front.svg",
  16691. extra: 3641 / 3545,
  16692. bottom: 0.03
  16693. }
  16694. },
  16695. back: {
  16696. height: math.unit(5 + 4 / 12, "feet"),
  16697. weight: math.unit(220, "lb"),
  16698. name: "Back",
  16699. image: {
  16700. source: "./media/characters/memory/back.svg",
  16701. extra: 3641 / 3545,
  16702. bottom: 0.025
  16703. }
  16704. },
  16705. frontSkirt: {
  16706. height: math.unit(5 + 4 / 12, "feet"),
  16707. weight: math.unit(220, "lb"),
  16708. name: "Front (Skirt)",
  16709. image: {
  16710. source: "./media/characters/memory/front-skirt.svg",
  16711. extra: 3641 / 3545,
  16712. bottom: 0.03
  16713. }
  16714. },
  16715. frontDress: {
  16716. height: math.unit(5 + 4 / 12, "feet"),
  16717. weight: math.unit(220, "lb"),
  16718. name: "Front (Dress)",
  16719. image: {
  16720. source: "./media/characters/memory/front-dress.svg",
  16721. extra: 3641 / 3545,
  16722. bottom: 0.03
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Micro",
  16729. height: math.unit(6, "inches"),
  16730. default: true
  16731. },
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(5 + 4 / 12, "feet")
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16740. {
  16741. front: {
  16742. height: math.unit(4 + 11 / 12, "feet"),
  16743. weight: math.unit(100, "lb"),
  16744. name: "Front",
  16745. image: {
  16746. source: "./media/characters/luno/front.svg",
  16747. extra: 1535 / 1487,
  16748. bottom: 0.03
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Micro",
  16755. height: math.unit(3, "inches")
  16756. },
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(4 + 11 / 12, "feet"),
  16760. default: true
  16761. },
  16762. {
  16763. name: "Macro",
  16764. height: math.unit(300, "feet")
  16765. },
  16766. {
  16767. name: "Megamacro",
  16768. height: math.unit(700, "miles")
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(6 + 2 / 12, "feet"),
  16777. weight: math.unit(170, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/jamesy/front.svg",
  16781. extra: 440 / 382,
  16782. bottom: 0.005
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Micro",
  16789. height: math.unit(3, "inches")
  16790. },
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(6 + 2 / 12, "feet"),
  16794. default: true
  16795. },
  16796. {
  16797. name: "Macro",
  16798. height: math.unit(300, "feet")
  16799. },
  16800. {
  16801. name: "Megamacro",
  16802. height: math.unit(700, "miles")
  16803. },
  16804. ]
  16805. ))
  16806. characterMakers.push(() => makeCharacter(
  16807. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16808. {
  16809. front: {
  16810. height: math.unit(6, "feet"),
  16811. weight: math.unit(160, "lb"),
  16812. name: "Front",
  16813. image: {
  16814. source: "./media/characters/mark/front.svg",
  16815. extra: 3300 / 3100,
  16816. bottom: 136.42 / 3440.47
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Macro",
  16823. height: math.unit(120, "meters")
  16824. },
  16825. {
  16826. name: "Bigger Macro",
  16827. height: math.unit(350, "meters")
  16828. },
  16829. {
  16830. name: "Megamacro",
  16831. height: math.unit(8, "km"),
  16832. default: true
  16833. },
  16834. {
  16835. name: "Continental",
  16836. height: math.unit(4550, "km")
  16837. },
  16838. {
  16839. name: "Planetary",
  16840. height: math.unit(65000, "km")
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16846. {
  16847. front: {
  16848. height: math.unit(6, "feet"),
  16849. weight: math.unit(400, "lb"),
  16850. name: "Front",
  16851. image: {
  16852. source: "./media/characters/mac/front.svg",
  16853. extra: 1048 / 987.7,
  16854. bottom: 60 / 1107.6,
  16855. }
  16856. },
  16857. },
  16858. [
  16859. {
  16860. name: "Macro",
  16861. height: math.unit(500, "feet"),
  16862. default: true
  16863. },
  16864. ]
  16865. ))
  16866. characterMakers.push(() => makeCharacter(
  16867. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16868. {
  16869. front: {
  16870. height: math.unit(5 + 2 / 12, "feet"),
  16871. weight: math.unit(190, "lb"),
  16872. name: "Front",
  16873. image: {
  16874. source: "./media/characters/bari/front.svg",
  16875. extra: 3156 / 2880,
  16876. bottom: 0.03
  16877. }
  16878. },
  16879. back: {
  16880. height: math.unit(5 + 2 / 12, "feet"),
  16881. weight: math.unit(190, "lb"),
  16882. name: "Back",
  16883. image: {
  16884. source: "./media/characters/bari/back.svg",
  16885. extra: 3260 / 2834,
  16886. bottom: 0.025
  16887. }
  16888. },
  16889. frontPlush: {
  16890. height: math.unit(5 + 2 / 12, "feet"),
  16891. weight: math.unit(190, "lb"),
  16892. name: "Front (Plush)",
  16893. image: {
  16894. source: "./media/characters/bari/front-plush.svg",
  16895. extra: 1112 / 1061,
  16896. bottom: 0.002
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Micro",
  16903. height: math.unit(3, "inches")
  16904. },
  16905. {
  16906. name: "Normal",
  16907. height: math.unit(5 + 2 / 12, "feet"),
  16908. default: true
  16909. },
  16910. {
  16911. name: "Macro",
  16912. height: math.unit(20, "feet")
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16918. {
  16919. front: {
  16920. height: math.unit(6 + 1 / 12, "feet"),
  16921. weight: math.unit(275, "lb"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/hunter-misha-raven/front.svg"
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Mortal",
  16931. height: math.unit(6 + 1 / 12, "feet")
  16932. },
  16933. {
  16934. name: "Divine",
  16935. height: math.unit(1.12134e34, "parsecs"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16942. {
  16943. front: {
  16944. height: math.unit(6 + 3 / 12, "feet"),
  16945. weight: math.unit(220, "lb"),
  16946. name: "Front",
  16947. image: {
  16948. source: "./media/characters/max-calore/front.svg",
  16949. extra: 1700 / 1648,
  16950. bottom: 0.01
  16951. }
  16952. },
  16953. back: {
  16954. height: math.unit(6 + 3 / 12, "feet"),
  16955. weight: math.unit(220, "lb"),
  16956. name: "Back",
  16957. image: {
  16958. source: "./media/characters/max-calore/back.svg",
  16959. extra: 1700 / 1648,
  16960. bottom: 0.01
  16961. }
  16962. },
  16963. },
  16964. [
  16965. {
  16966. name: "Normal",
  16967. height: math.unit(6 + 3 / 12, "feet"),
  16968. default: true
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16974. {
  16975. side: {
  16976. height: math.unit(2 + 8 / 12, "feet"),
  16977. weight: math.unit(99, "lb"),
  16978. name: "Side",
  16979. image: {
  16980. source: "./media/characters/aspen/side.svg",
  16981. extra: 152 / 138,
  16982. bottom: 0.032
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(2 + 8 / 12, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16996. {
  16997. side: {
  16998. height: math.unit(3 + 2 / 12, "feet"),
  16999. weight: math.unit(224, "lb"),
  17000. name: "Side",
  17001. image: {
  17002. source: "./media/characters/sheila-feral-wolf/side.svg",
  17003. extra: 179 / 166,
  17004. bottom: 0.03
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(3 + 2 / 12, "feet"),
  17012. default: true
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17018. {
  17019. side: {
  17020. height: math.unit(1 + 9 / 12, "feet"),
  17021. weight: math.unit(38, "lb"),
  17022. name: "Side",
  17023. image: {
  17024. source: "./media/characters/michelle/side.svg",
  17025. extra: 147 / 136.7,
  17026. bottom: 0.03
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Normal",
  17033. height: math.unit(1 + 9 / 12, "feet"),
  17034. default: true
  17035. },
  17036. ]
  17037. ))
  17038. characterMakers.push(() => makeCharacter(
  17039. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17040. {
  17041. front: {
  17042. height: math.unit(1 + 1 / 12, "feet"),
  17043. weight: math.unit(18, "lb"),
  17044. name: "Front",
  17045. image: {
  17046. source: "./media/characters/nino/front.svg"
  17047. }
  17048. },
  17049. },
  17050. [
  17051. {
  17052. name: "Normal",
  17053. height: math.unit(1 + 1 / 12, "feet"),
  17054. default: true
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17060. {
  17061. front: {
  17062. height: math.unit(1, "feet"),
  17063. weight: math.unit(16, "lb"),
  17064. name: "Front",
  17065. image: {
  17066. source: "./media/characters/viola/front.svg"
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(1, "feet"),
  17074. default: true
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17080. {
  17081. front: {
  17082. height: math.unit(6 + 5 / 12, "feet"),
  17083. weight: math.unit(580, "lb"),
  17084. name: "Front",
  17085. image: {
  17086. source: "./media/characters/atlas/front.svg",
  17087. extra: 298.5 / 290,
  17088. bottom: 0.015
  17089. }
  17090. },
  17091. },
  17092. [
  17093. {
  17094. name: "Normal",
  17095. height: math.unit(6 + 5 / 12, "feet"),
  17096. default: true
  17097. },
  17098. ]
  17099. ))
  17100. characterMakers.push(() => makeCharacter(
  17101. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17102. {
  17103. side: {
  17104. height: math.unit(1 + 10 / 12, "feet"),
  17105. weight: math.unit(25, "lb"),
  17106. name: "Side",
  17107. image: {
  17108. source: "./media/characters/davy/side.svg",
  17109. extra: 200 / 170,
  17110. bottom: 0.01
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(1 + 10 / 12, "feet"),
  17118. default: true
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17124. {
  17125. side: {
  17126. height: math.unit(4 + 8 / 12, "feet"),
  17127. weight: math.unit(166, "lb"),
  17128. name: "Side",
  17129. image: {
  17130. source: "./media/characters/fiona/side.svg",
  17131. extra: 232 / 220,
  17132. bottom: 0.03
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(4 + 8 / 12, "feet"),
  17140. default: true
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17146. {
  17147. front: {
  17148. height: math.unit(2, "feet"),
  17149. weight: math.unit(62, "lb"),
  17150. name: "Front",
  17151. image: {
  17152. source: "./media/characters/lyla/front.svg",
  17153. bottom: 0.1
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(2, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17167. {
  17168. side: {
  17169. height: math.unit(1.8, "feet"),
  17170. weight: math.unit(44, "lb"),
  17171. name: "Side",
  17172. image: {
  17173. source: "./media/characters/perseus/side.svg",
  17174. bottom: 0.21
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(1.8, "feet"),
  17182. default: true
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17188. {
  17189. side: {
  17190. height: math.unit(4 + 2 / 12, "feet"),
  17191. weight: math.unit(20, "lb"),
  17192. name: "Side",
  17193. image: {
  17194. source: "./media/characters/remus/side.svg"
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(4 + 2 / 12, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17208. {
  17209. front: {
  17210. height: math.unit(4 + 11 / 12, "feet"),
  17211. weight: math.unit(114, "lb"),
  17212. name: "Front",
  17213. image: {
  17214. source: "./media/characters/raf/front.svg",
  17215. bottom: 20.5 / 1863
  17216. }
  17217. },
  17218. side: {
  17219. height: math.unit(4 + 11 / 12, "feet"),
  17220. weight: math.unit(114, "lb"),
  17221. name: "Side",
  17222. image: {
  17223. source: "./media/characters/raf/side.svg",
  17224. bottom: 22 / 1822
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Micro",
  17231. height: math.unit(2, "inches")
  17232. },
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(4 + 11 / 12, "feet"),
  17236. default: true
  17237. },
  17238. {
  17239. name: "Macro",
  17240. height: math.unit(70, "feet")
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(1.5, "meters"),
  17249. weight: math.unit(68, "kg"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/liam-einarr/front.svg",
  17253. extra: 2822 / 2666
  17254. }
  17255. },
  17256. back: {
  17257. height: math.unit(1.5, "meters"),
  17258. weight: math.unit(68, "kg"),
  17259. name: "Back",
  17260. image: {
  17261. source: "./media/characters/liam-einarr/back.svg",
  17262. extra: 2822 / 2666,
  17263. bottom: 0.015
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(1.5, "meters"),
  17271. default: true
  17272. },
  17273. {
  17274. name: "Macro",
  17275. height: math.unit(150, "meters")
  17276. },
  17277. {
  17278. name: "Megamacro",
  17279. height: math.unit(35, "km")
  17280. },
  17281. ]
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17285. {
  17286. front: {
  17287. height: math.unit(6, "feet"),
  17288. weight: math.unit(75, "kg"),
  17289. name: "Front",
  17290. image: {
  17291. source: "./media/characters/linda/front.svg",
  17292. extra: 930 / 874,
  17293. bottom: 0.004
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(6, "feet"),
  17301. default: true
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17307. {
  17308. front: {
  17309. height: math.unit(6 + 8 / 12, "feet"),
  17310. weight: math.unit(220, "lb"),
  17311. name: "Front",
  17312. image: {
  17313. source: "./media/characters/caylex/front.svg",
  17314. extra: 821 / 772,
  17315. bottom: 0.07
  17316. }
  17317. },
  17318. back: {
  17319. height: math.unit(6 + 8 / 12, "feet"),
  17320. weight: math.unit(220, "lb"),
  17321. name: "Back",
  17322. image: {
  17323. source: "./media/characters/caylex/back.svg",
  17324. extra: 821 / 772,
  17325. bottom: 0.022
  17326. }
  17327. },
  17328. hand: {
  17329. height: math.unit(1.25, "feet"),
  17330. name: "Hand",
  17331. image: {
  17332. source: "./media/characters/caylex/hand.svg"
  17333. }
  17334. },
  17335. foot: {
  17336. height: math.unit(1.6, "feet"),
  17337. name: "Foot",
  17338. image: {
  17339. source: "./media/characters/caylex/foot.svg"
  17340. }
  17341. },
  17342. armored: {
  17343. height: math.unit(6 + 8 / 12, "feet"),
  17344. weight: math.unit(250, "lb"),
  17345. name: "Armored",
  17346. image: {
  17347. source: "./media/characters/caylex/armored.svg",
  17348. extra: 1420 / 1310,
  17349. bottom: 0.045
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Normal",
  17356. height: math.unit(6 + 8 / 12, "feet"),
  17357. default: true
  17358. },
  17359. {
  17360. name: "Normal+",
  17361. height: math.unit(12, "feet")
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17367. {
  17368. front: {
  17369. height: math.unit(7 + 6 / 12, "feet"),
  17370. weight: math.unit(288, "lb"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/alana/front.svg",
  17374. extra: 679 / 653,
  17375. bottom: 22.5 / 701
  17376. }
  17377. },
  17378. },
  17379. [
  17380. {
  17381. name: "Normal",
  17382. height: math.unit(7 + 6 / 12, "feet")
  17383. },
  17384. {
  17385. name: "Large",
  17386. height: math.unit(50, "feet")
  17387. },
  17388. {
  17389. name: "Macro",
  17390. height: math.unit(100, "feet"),
  17391. default: true
  17392. },
  17393. {
  17394. name: "Macro+",
  17395. height: math.unit(200, "feet")
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(6 + 1 / 12, "feet"),
  17404. weight: math.unit(210, "lb"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/hasani/front.svg",
  17408. extra: 244 / 232,
  17409. bottom: 0.01
  17410. }
  17411. },
  17412. back: {
  17413. height: math.unit(6 + 1 / 12, "feet"),
  17414. weight: math.unit(210, "lb"),
  17415. name: "Back",
  17416. image: {
  17417. source: "./media/characters/hasani/back.svg",
  17418. extra: 244 / 232,
  17419. bottom: 0.01
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Normal",
  17426. height: math.unit(6 + 1 / 12, "feet")
  17427. },
  17428. {
  17429. name: "Macro",
  17430. height: math.unit(175, "feet"),
  17431. default: true
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(1.82, "meters"),
  17440. weight: math.unit(140, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/nita/front.svg",
  17444. extra: 2473 / 2363,
  17445. bottom: 0.01
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(1.82, "m")
  17453. },
  17454. {
  17455. name: "Macro",
  17456. height: math.unit(300, "m")
  17457. },
  17458. {
  17459. name: "Mistake Canon",
  17460. height: math.unit(0.5, "miles"),
  17461. default: true
  17462. },
  17463. {
  17464. name: "Big Mistake",
  17465. height: math.unit(13, "miles")
  17466. },
  17467. {
  17468. name: "Playing God",
  17469. height: math.unit(2450, "miles")
  17470. },
  17471. ]
  17472. ))
  17473. characterMakers.push(() => makeCharacter(
  17474. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17475. {
  17476. front: {
  17477. height: math.unit(4, "feet"),
  17478. weight: math.unit(120, "lb"),
  17479. name: "Front",
  17480. image: {
  17481. source: "./media/characters/shiriko/front.svg",
  17482. extra: 970/934,
  17483. bottom: 5/975
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(4, "feet"),
  17491. default: true
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17497. {
  17498. front: {
  17499. height: math.unit(6, "feet"),
  17500. name: "front",
  17501. image: {
  17502. source: "./media/characters/deja/front.svg",
  17503. extra: 926 / 840,
  17504. bottom: 0.07
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Planck Length",
  17511. height: math.unit(1.6e-35, "meters")
  17512. },
  17513. {
  17514. name: "Normal",
  17515. height: math.unit(30.48, "meters"),
  17516. default: true
  17517. },
  17518. {
  17519. name: "Universal",
  17520. height: math.unit(8.8e26, "meters")
  17521. },
  17522. ]
  17523. ))
  17524. characterMakers.push(() => makeCharacter(
  17525. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17526. {
  17527. side: {
  17528. height: math.unit(8, "feet"),
  17529. weight: math.unit(6300, "lb"),
  17530. name: "Side",
  17531. image: {
  17532. source: "./media/characters/anima/side.svg",
  17533. bottom: 0.035
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(8, "feet"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(8, "feet"),
  17550. weight: math.unit(350, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/bianca/front.svg",
  17554. extra: 234 / 225,
  17555. bottom: 0.03
  17556. }
  17557. },
  17558. },
  17559. [
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(8, "feet"),
  17563. default: true
  17564. },
  17565. ]
  17566. ))
  17567. characterMakers.push(() => makeCharacter(
  17568. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17569. {
  17570. front: {
  17571. height: math.unit(6, "feet"),
  17572. weight: math.unit(150, "lb"),
  17573. name: "Front",
  17574. image: {
  17575. source: "./media/characters/adinia/front.svg",
  17576. extra: 1845 / 1672,
  17577. bottom: 0.02
  17578. }
  17579. },
  17580. back: {
  17581. height: math.unit(6, "feet"),
  17582. weight: math.unit(150, "lb"),
  17583. name: "Back",
  17584. image: {
  17585. source: "./media/characters/adinia/back.svg",
  17586. extra: 1845 / 1672,
  17587. bottom: 0.002
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(11 + 5 / 12, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(3, "meters"),
  17604. weight: math.unit(200, "kg"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/lykasa/front.svg",
  17608. extra: 1076 / 976,
  17609. bottom: 0.06
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(3, "meters")
  17617. },
  17618. {
  17619. name: "Kaiju",
  17620. height: math.unit(120, "meters"),
  17621. default: true
  17622. },
  17623. {
  17624. name: "Mega Kaiju",
  17625. height: math.unit(240, "km")
  17626. },
  17627. {
  17628. name: "Giga Kaiju",
  17629. height: math.unit(400, "megameters")
  17630. },
  17631. {
  17632. name: "Tera Kaiju",
  17633. height: math.unit(800, "gigameters")
  17634. },
  17635. {
  17636. name: "Kaiju Dragon Goddess",
  17637. height: math.unit(26, "zettaparsecs")
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17643. {
  17644. side: {
  17645. height: math.unit(283 / 124 * 6, "feet"),
  17646. weight: math.unit(35000, "lb"),
  17647. name: "Side",
  17648. image: {
  17649. source: "./media/characters/malfaren/side.svg",
  17650. extra: 2500 / 1010,
  17651. bottom: 0.01
  17652. }
  17653. },
  17654. front: {
  17655. height: math.unit(22.36, "feet"),
  17656. weight: math.unit(35000, "lb"),
  17657. name: "Front",
  17658. image: {
  17659. source: "./media/characters/malfaren/front.svg",
  17660. extra: 1631 / 1476,
  17661. bottom: 0.01
  17662. }
  17663. },
  17664. maw: {
  17665. height: math.unit(6.9, "feet"),
  17666. name: "Maw",
  17667. image: {
  17668. source: "./media/characters/malfaren/maw.svg"
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Big",
  17675. height: math.unit(283 / 162 * 6, "feet"),
  17676. },
  17677. {
  17678. name: "Bigger",
  17679. height: math.unit(283 / 124 * 6, "feet")
  17680. },
  17681. {
  17682. name: "Massive",
  17683. height: math.unit(283 / 92 * 6, "feet"),
  17684. default: true
  17685. },
  17686. {
  17687. name: "👀💦",
  17688. height: math.unit(283 / 73 * 6, "feet"),
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(1.7, "m"),
  17697. weight: math.unit(70, "kg"),
  17698. name: "Front",
  17699. image: {
  17700. source: "./media/characters/kernel/front.svg",
  17701. extra: 222 / 210,
  17702. bottom: 0.007
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Nano",
  17709. height: math.unit(17, "micrometers")
  17710. },
  17711. {
  17712. name: "Micro",
  17713. height: math.unit(1.7, "mm")
  17714. },
  17715. {
  17716. name: "Small",
  17717. height: math.unit(1.7, "cm")
  17718. },
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(1.7, "m"),
  17722. default: true
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17728. {
  17729. front: {
  17730. height: math.unit(1.75, "meters"),
  17731. weight: math.unit(65, "kg"),
  17732. name: "Front",
  17733. image: {
  17734. source: "./media/characters/jayne-folest/front.svg",
  17735. extra: 2115 / 2007,
  17736. bottom: 0.02
  17737. }
  17738. },
  17739. back: {
  17740. height: math.unit(1.75, "meters"),
  17741. weight: math.unit(65, "kg"),
  17742. name: "Back",
  17743. image: {
  17744. source: "./media/characters/jayne-folest/back.svg",
  17745. extra: 2115 / 2007,
  17746. bottom: 0.005
  17747. }
  17748. },
  17749. frontClothed: {
  17750. height: math.unit(1.75, "meters"),
  17751. weight: math.unit(65, "kg"),
  17752. name: "Front (Clothed)",
  17753. image: {
  17754. source: "./media/characters/jayne-folest/front-clothed.svg",
  17755. extra: 2115 / 2007,
  17756. bottom: 0.035
  17757. }
  17758. },
  17759. hand: {
  17760. height: math.unit(1 / 1.260, "feet"),
  17761. name: "Hand",
  17762. image: {
  17763. source: "./media/characters/jayne-folest/hand.svg"
  17764. }
  17765. },
  17766. foot: {
  17767. height: math.unit(1 / 0.918, "feet"),
  17768. name: "Foot",
  17769. image: {
  17770. source: "./media/characters/jayne-folest/foot.svg"
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Micro",
  17777. height: math.unit(4, "cm")
  17778. },
  17779. {
  17780. name: "Normal",
  17781. height: math.unit(1.75, "meters")
  17782. },
  17783. {
  17784. name: "Macro",
  17785. height: math.unit(47.5, "meters"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17792. {
  17793. front: {
  17794. height: math.unit(180, "cm"),
  17795. weight: math.unit(70, "kg"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/algier/front.svg",
  17799. extra: 596 / 572,
  17800. bottom: 0.04
  17801. }
  17802. },
  17803. back: {
  17804. height: math.unit(180, "cm"),
  17805. weight: math.unit(70, "kg"),
  17806. name: "Back",
  17807. image: {
  17808. source: "./media/characters/algier/back.svg",
  17809. extra: 596 / 572,
  17810. bottom: 0.025
  17811. }
  17812. },
  17813. frontdressed: {
  17814. height: math.unit(180, "cm"),
  17815. weight: math.unit(150, "kg"),
  17816. name: "Front-dressed",
  17817. image: {
  17818. source: "./media/characters/algier/front-dressed.svg",
  17819. extra: 596 / 572,
  17820. bottom: 0.038
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Micro",
  17827. height: math.unit(5, "cm")
  17828. },
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(180, "cm"),
  17832. default: true
  17833. },
  17834. {
  17835. name: "Macro",
  17836. height: math.unit(64, "m")
  17837. },
  17838. ]
  17839. ))
  17840. characterMakers.push(() => makeCharacter(
  17841. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17842. {
  17843. upright: {
  17844. height: math.unit(7, "feet"),
  17845. weight: math.unit(300, "lb"),
  17846. name: "Upright",
  17847. image: {
  17848. source: "./media/characters/pretzel/upright.svg",
  17849. extra: 534 / 522,
  17850. bottom: 0.065
  17851. }
  17852. },
  17853. sprawling: {
  17854. height: math.unit(3.75, "feet"),
  17855. weight: math.unit(300, "lb"),
  17856. name: "Sprawling",
  17857. image: {
  17858. source: "./media/characters/pretzel/sprawling.svg",
  17859. extra: 314 / 281,
  17860. bottom: 0.1
  17861. }
  17862. },
  17863. tongue: {
  17864. height: math.unit(2, "feet"),
  17865. name: "Tongue",
  17866. image: {
  17867. source: "./media/characters/pretzel/tongue.svg"
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(7, "feet"),
  17875. default: true
  17876. },
  17877. {
  17878. name: "Oversized",
  17879. height: math.unit(15, "feet")
  17880. },
  17881. {
  17882. name: "Huge",
  17883. height: math.unit(30, "feet")
  17884. },
  17885. {
  17886. name: "Macro",
  17887. height: math.unit(250, "feet")
  17888. },
  17889. ]
  17890. ))
  17891. characterMakers.push(() => makeCharacter(
  17892. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17893. {
  17894. sideFront: {
  17895. height: math.unit(5 + 2 / 12, "feet"),
  17896. weight: math.unit(120, "lb"),
  17897. name: "Front Side",
  17898. image: {
  17899. source: "./media/characters/roxi/side-front.svg",
  17900. extra: 2924 / 2717,
  17901. bottom: 0.08
  17902. }
  17903. },
  17904. sideBack: {
  17905. height: math.unit(5 + 2 / 12, "feet"),
  17906. weight: math.unit(120, "lb"),
  17907. name: "Back Side",
  17908. image: {
  17909. source: "./media/characters/roxi/side-back.svg",
  17910. extra: 2904 / 2693,
  17911. bottom: 0.06
  17912. }
  17913. },
  17914. front: {
  17915. height: math.unit(5 + 2 / 12, "feet"),
  17916. weight: math.unit(120, "lb"),
  17917. name: "Front",
  17918. image: {
  17919. source: "./media/characters/roxi/front.svg",
  17920. extra: 2028 / 1907,
  17921. bottom: 0.01
  17922. }
  17923. },
  17924. frontAlt: {
  17925. height: math.unit(5 + 2 / 12, "feet"),
  17926. weight: math.unit(120, "lb"),
  17927. name: "Front (Alt)",
  17928. image: {
  17929. source: "./media/characters/roxi/front-alt.svg",
  17930. extra: 1828 / 1798,
  17931. bottom: 0.01
  17932. }
  17933. },
  17934. sitting: {
  17935. height: math.unit(2.8, "feet"),
  17936. weight: math.unit(120, "lb"),
  17937. name: "Sitting",
  17938. image: {
  17939. source: "./media/characters/roxi/sitting.svg",
  17940. extra: 2660 / 2462,
  17941. bottom: 0.1
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(5 + 2 / 12, "feet"),
  17949. default: true
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17955. {
  17956. side: {
  17957. height: math.unit(55, "feet"),
  17958. weight: math.unit(153, "tons"),
  17959. name: "Side",
  17960. image: {
  17961. source: "./media/characters/shadow/side.svg",
  17962. extra: 701 / 628,
  17963. bottom: 0.02
  17964. }
  17965. },
  17966. flying: {
  17967. height: math.unit(145, "feet"),
  17968. weight: math.unit(153, "tons"),
  17969. name: "Flying",
  17970. image: {
  17971. source: "./media/characters/shadow/flying.svg"
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(55, "feet"),
  17979. default: true
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(6, "feet"),
  17988. weight: math.unit(200, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/marcie/front.svg",
  17992. extra: 960 / 876,
  17993. bottom: 58 / 1017.87
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Macro",
  18000. height: math.unit(1, "mile"),
  18001. default: true
  18002. },
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18007. {
  18008. front: {
  18009. height: math.unit(7, "feet"),
  18010. weight: math.unit(200, "lb"),
  18011. name: "Front",
  18012. image: {
  18013. source: "./media/characters/kachina/front.svg",
  18014. extra: 1290.68 / 1119,
  18015. bottom: 36.5 / 1327.18
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(7, "feet"),
  18023. default: true
  18024. },
  18025. ]
  18026. ))
  18027. characterMakers.push(() => makeCharacter(
  18028. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18029. {
  18030. looking: {
  18031. height: math.unit(2, "meters"),
  18032. weight: math.unit(300, "kg"),
  18033. name: "Looking",
  18034. image: {
  18035. source: "./media/characters/kash/looking.svg",
  18036. extra: 474 / 344,
  18037. bottom: 0.03
  18038. }
  18039. },
  18040. side: {
  18041. height: math.unit(2, "meters"),
  18042. weight: math.unit(300, "kg"),
  18043. name: "Side",
  18044. image: {
  18045. source: "./media/characters/kash/side.svg",
  18046. extra: 302 / 251,
  18047. bottom: 0.03
  18048. }
  18049. },
  18050. front: {
  18051. height: math.unit(2, "meters"),
  18052. weight: math.unit(300, "kg"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/kash/front.svg",
  18056. extra: 495 / 360,
  18057. bottom: 0.015
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(2, "meters"),
  18065. default: true
  18066. },
  18067. {
  18068. name: "Big",
  18069. height: math.unit(3, "meters")
  18070. },
  18071. {
  18072. name: "Large",
  18073. height: math.unit(5, "meters")
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18079. {
  18080. feeding: {
  18081. height: math.unit(6.7, "feet"),
  18082. weight: math.unit(350, "lb"),
  18083. name: "Feeding",
  18084. image: {
  18085. source: "./media/characters/lalim/feeding.svg",
  18086. }
  18087. },
  18088. },
  18089. [
  18090. {
  18091. name: "Normal",
  18092. height: math.unit(6.7, "feet"),
  18093. default: true
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18099. {
  18100. front: {
  18101. height: math.unit(9.5, "feet"),
  18102. weight: math.unit(600, "lb"),
  18103. name: "Front",
  18104. image: {
  18105. source: "./media/characters/de'vout/front.svg",
  18106. extra: 1443 / 1328,
  18107. bottom: 0.025
  18108. }
  18109. },
  18110. back: {
  18111. height: math.unit(9.5, "feet"),
  18112. weight: math.unit(600, "lb"),
  18113. name: "Back",
  18114. image: {
  18115. source: "./media/characters/de'vout/back.svg",
  18116. extra: 1443 / 1328
  18117. }
  18118. },
  18119. frontDressed: {
  18120. height: math.unit(9.5, "feet"),
  18121. weight: math.unit(600, "lb"),
  18122. name: "Front (Dressed",
  18123. image: {
  18124. source: "./media/characters/de'vout/front-dressed.svg",
  18125. extra: 1443 / 1328,
  18126. bottom: 0.025
  18127. }
  18128. },
  18129. backDressed: {
  18130. height: math.unit(9.5, "feet"),
  18131. weight: math.unit(600, "lb"),
  18132. name: "Back (Dressed",
  18133. image: {
  18134. source: "./media/characters/de'vout/back-dressed.svg",
  18135. extra: 1443 / 1328
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(9.5, "feet"),
  18143. default: true
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18149. {
  18150. front: {
  18151. height: math.unit(8, "feet"),
  18152. weight: math.unit(225, "lb"),
  18153. name: "Front",
  18154. image: {
  18155. source: "./media/characters/talana/front.svg",
  18156. extra: 1410 / 1300,
  18157. bottom: 0.015
  18158. }
  18159. },
  18160. frontDressed: {
  18161. height: math.unit(8, "feet"),
  18162. weight: math.unit(225, "lb"),
  18163. name: "Front (Dressed",
  18164. image: {
  18165. source: "./media/characters/talana/front-dressed.svg",
  18166. extra: 1410 / 1300,
  18167. bottom: 0.015
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Normal",
  18174. height: math.unit(8, "feet"),
  18175. default: true
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18181. {
  18182. side: {
  18183. height: math.unit(7.2, "feet"),
  18184. weight: math.unit(150, "lb"),
  18185. name: "Side",
  18186. image: {
  18187. source: "./media/characters/xeauvok/side.svg",
  18188. extra: 1975 / 1523,
  18189. bottom: 0.07
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(7.2, "feet"),
  18197. default: true
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18203. {
  18204. side: {
  18205. height: math.unit(10, "feet"),
  18206. weight: math.unit(900, "kg"),
  18207. name: "Side",
  18208. image: {
  18209. source: "./media/characters/zara/side.svg",
  18210. extra: 504 / 498
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Normal",
  18217. height: math.unit(10, "feet"),
  18218. default: true
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18224. {
  18225. side: {
  18226. height: math.unit(6, "feet"),
  18227. weight: math.unit(150, "lb"),
  18228. name: "Side",
  18229. image: {
  18230. source: "./media/characters/richard-dragon/side.svg",
  18231. extra: 845 / 340,
  18232. bottom: 0.017
  18233. }
  18234. },
  18235. maw: {
  18236. height: math.unit(2.97, "feet"),
  18237. name: "Maw",
  18238. image: {
  18239. source: "./media/characters/richard-dragon/maw.svg"
  18240. }
  18241. },
  18242. },
  18243. [
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18248. {
  18249. front: {
  18250. height: math.unit(4, "feet"),
  18251. weight: math.unit(100, "lb"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/richard-smeargle/front.svg",
  18255. extra: 2952 / 2820,
  18256. bottom: 0.028
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(4, "feet"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Dynamax",
  18268. height: math.unit(20, "meters")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(6, "feet"),
  18277. weight: math.unit(110, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/klay/front.svg",
  18281. extra: 962 / 883,
  18282. bottom: 0.04
  18283. }
  18284. },
  18285. back: {
  18286. height: math.unit(6, "feet"),
  18287. weight: math.unit(110, "lb"),
  18288. name: "Back",
  18289. image: {
  18290. source: "./media/characters/klay/back.svg",
  18291. extra: 962 / 883
  18292. }
  18293. },
  18294. beans: {
  18295. height: math.unit(1.15, "feet"),
  18296. name: "Beans",
  18297. image: {
  18298. source: "./media/characters/klay/beans.svg"
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Micro",
  18305. height: math.unit(6, "inches")
  18306. },
  18307. {
  18308. name: "Mini",
  18309. height: math.unit(3, "feet")
  18310. },
  18311. {
  18312. name: "Normal",
  18313. height: math.unit(6, "feet"),
  18314. default: true
  18315. },
  18316. {
  18317. name: "Big",
  18318. height: math.unit(25, "feet")
  18319. },
  18320. {
  18321. name: "Macro",
  18322. height: math.unit(100, "feet")
  18323. },
  18324. {
  18325. name: "Megamacro",
  18326. height: math.unit(400, "feet")
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18332. {
  18333. front: {
  18334. height: math.unit(6, "feet"),
  18335. weight: math.unit(160, "lb"),
  18336. name: "Front",
  18337. image: {
  18338. source: "./media/characters/marcus/front.svg",
  18339. extra: 734 / 676,
  18340. bottom: 0.03
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Little",
  18347. height: math.unit(6, "feet")
  18348. },
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(110, "feet"),
  18352. default: true
  18353. },
  18354. {
  18355. name: "Macro",
  18356. height: math.unit(250, "feet")
  18357. },
  18358. {
  18359. name: "Megamacro",
  18360. height: math.unit(1000, "feet")
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18366. {
  18367. front: {
  18368. height: math.unit(7, "feet"),
  18369. weight: math.unit(275, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/claude-delroute/front.svg",
  18373. extra: 230 / 214,
  18374. bottom: 0.007
  18375. }
  18376. },
  18377. side: {
  18378. height: math.unit(7, "feet"),
  18379. weight: math.unit(275, "lb"),
  18380. name: "Side",
  18381. image: {
  18382. source: "./media/characters/claude-delroute/side.svg",
  18383. extra: 222 / 214,
  18384. bottom: 0.01
  18385. }
  18386. },
  18387. back: {
  18388. height: math.unit(7, "feet"),
  18389. weight: math.unit(275, "lb"),
  18390. name: "Back",
  18391. image: {
  18392. source: "./media/characters/claude-delroute/back.svg",
  18393. extra: 230 / 214,
  18394. bottom: 0.015
  18395. }
  18396. },
  18397. maw: {
  18398. height: math.unit(0.6407, "meters"),
  18399. name: "Maw",
  18400. image: {
  18401. source: "./media/characters/claude-delroute/maw.svg"
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Normal",
  18408. height: math.unit(7, "feet"),
  18409. default: true
  18410. },
  18411. {
  18412. name: "Lorge",
  18413. height: math.unit(20, "feet")
  18414. },
  18415. ]
  18416. ))
  18417. characterMakers.push(() => makeCharacter(
  18418. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18419. {
  18420. front: {
  18421. height: math.unit(8 + 4 / 12, "feet"),
  18422. weight: math.unit(600, "lb"),
  18423. name: "Front",
  18424. image: {
  18425. source: "./media/characters/dragonien/front.svg",
  18426. extra: 100 / 94,
  18427. bottom: 3.3 / 103.3445
  18428. }
  18429. },
  18430. back: {
  18431. height: math.unit(8 + 4 / 12, "feet"),
  18432. weight: math.unit(600, "lb"),
  18433. name: "Back",
  18434. image: {
  18435. source: "./media/characters/dragonien/back.svg",
  18436. extra: 776 / 746,
  18437. bottom: 6.4 / 782.0616
  18438. }
  18439. },
  18440. foot: {
  18441. height: math.unit(1.54, "feet"),
  18442. name: "Foot",
  18443. image: {
  18444. source: "./media/characters/dragonien/foot.svg",
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(8 + 4 / 12, "feet"),
  18452. default: true
  18453. },
  18454. {
  18455. name: "Macro",
  18456. height: math.unit(200, "feet")
  18457. },
  18458. {
  18459. name: "Megamacro",
  18460. height: math.unit(1, "mile")
  18461. },
  18462. {
  18463. name: "Gigamacro",
  18464. height: math.unit(1000, "miles")
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18470. {
  18471. front: {
  18472. height: math.unit(5 + 2 / 12, "feet"),
  18473. weight: math.unit(110, "lb"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/desta/front.svg",
  18477. extra: 767 / 726,
  18478. bottom: 11.7 / 779
  18479. }
  18480. },
  18481. back: {
  18482. height: math.unit(5 + 2 / 12, "feet"),
  18483. weight: math.unit(110, "lb"),
  18484. name: "Back",
  18485. image: {
  18486. source: "./media/characters/desta/back.svg",
  18487. extra: 777 / 728,
  18488. bottom: 6 / 784
  18489. }
  18490. },
  18491. frontAlt: {
  18492. height: math.unit(5 + 2 / 12, "feet"),
  18493. weight: math.unit(110, "lb"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/desta/front-alt.svg",
  18497. extra: 1482 / 1417
  18498. }
  18499. },
  18500. side: {
  18501. height: math.unit(5 + 2 / 12, "feet"),
  18502. weight: math.unit(110, "lb"),
  18503. name: "Side",
  18504. image: {
  18505. source: "./media/characters/desta/side.svg",
  18506. extra: 2579 / 2491,
  18507. bottom: 0.053
  18508. }
  18509. },
  18510. },
  18511. [
  18512. {
  18513. name: "Micro",
  18514. height: math.unit(6, "inches")
  18515. },
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(5 + 2 / 12, "feet"),
  18519. default: true
  18520. },
  18521. {
  18522. name: "Macro",
  18523. height: math.unit(62, "feet")
  18524. },
  18525. {
  18526. name: "Megamacro",
  18527. height: math.unit(1800, "feet")
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(10, "feet"),
  18536. weight: math.unit(700, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/storm-alystar/front.svg",
  18540. extra: 2112 / 1898,
  18541. bottom: 0.034
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Micro",
  18548. height: math.unit(3.5, "inches")
  18549. },
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(10, "feet"),
  18553. default: true
  18554. },
  18555. {
  18556. name: "Macro",
  18557. height: math.unit(400, "feet")
  18558. },
  18559. {
  18560. name: "Deific",
  18561. height: math.unit(60, "miles")
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(2.35, "meters"),
  18570. weight: math.unit(119, "kg"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/ilia/front.svg",
  18574. extra: 1285 / 1255,
  18575. bottom: 0.06
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Normal",
  18582. height: math.unit(2.35, "meters")
  18583. },
  18584. {
  18585. name: "Macro",
  18586. height: math.unit(140, "meters"),
  18587. default: true
  18588. },
  18589. {
  18590. name: "Megamacro",
  18591. height: math.unit(100, "miles")
  18592. },
  18593. ]
  18594. ))
  18595. characterMakers.push(() => makeCharacter(
  18596. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18597. {
  18598. front: {
  18599. height: math.unit(6 + 5 / 12, "feet"),
  18600. weight: math.unit(190, "lb"),
  18601. name: "Front",
  18602. image: {
  18603. source: "./media/characters/kingdead/front.svg",
  18604. extra: 1228 / 1177
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Micro",
  18611. height: math.unit(7, "inches")
  18612. },
  18613. {
  18614. name: "Normal",
  18615. height: math.unit(6 + 5 / 12, "feet")
  18616. },
  18617. {
  18618. name: "Macro",
  18619. height: math.unit(150, "feet"),
  18620. default: true
  18621. },
  18622. {
  18623. name: "Megamacro",
  18624. height: math.unit(200, "miles")
  18625. },
  18626. ]
  18627. ))
  18628. characterMakers.push(() => makeCharacter(
  18629. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18630. {
  18631. front: {
  18632. height: math.unit(8, "feet"),
  18633. weight: math.unit(600, "lb"),
  18634. name: "Front",
  18635. image: {
  18636. source: "./media/characters/kyrehx/front.svg",
  18637. extra: 1195 / 1095,
  18638. bottom: 0.034
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Micro",
  18645. height: math.unit(2, "inches")
  18646. },
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(8, "feet"),
  18650. default: true
  18651. },
  18652. {
  18653. name: "Macro",
  18654. height: math.unit(255, "feet")
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18660. {
  18661. front: {
  18662. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18663. weight: math.unit(184, "lb"),
  18664. name: "Front",
  18665. image: {
  18666. source: "./media/characters/xang/front.svg",
  18667. extra: 845 / 755
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18675. default: true
  18676. },
  18677. {
  18678. name: "Macro",
  18679. height: math.unit(0.935 * 146, "feet")
  18680. },
  18681. {
  18682. name: "Megamacro",
  18683. height: math.unit(0.935 * 3, "miles")
  18684. },
  18685. ]
  18686. ))
  18687. characterMakers.push(() => makeCharacter(
  18688. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18689. {
  18690. frontDressed: {
  18691. height: math.unit(5 + 7 / 12, "feet"),
  18692. weight: math.unit(140, "lb"),
  18693. name: "Front (Dressed)",
  18694. image: {
  18695. source: "./media/characters/doc-weardno/front-dressed.svg",
  18696. extra: 263 / 234
  18697. }
  18698. },
  18699. backDressed: {
  18700. height: math.unit(5 + 7 / 12, "feet"),
  18701. weight: math.unit(140, "lb"),
  18702. name: "Back (Dressed)",
  18703. image: {
  18704. source: "./media/characters/doc-weardno/back-dressed.svg",
  18705. extra: 266 / 238
  18706. }
  18707. },
  18708. front: {
  18709. height: math.unit(5 + 7 / 12, "feet"),
  18710. weight: math.unit(140, "lb"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/doc-weardno/front.svg",
  18714. extra: 254 / 233
  18715. }
  18716. },
  18717. },
  18718. [
  18719. {
  18720. name: "Micro",
  18721. height: math.unit(3, "inches")
  18722. },
  18723. {
  18724. name: "Normal",
  18725. height: math.unit(5 + 7 / 12, "feet"),
  18726. default: true
  18727. },
  18728. {
  18729. name: "Macro",
  18730. height: math.unit(25, "feet")
  18731. },
  18732. {
  18733. name: "Megamacro",
  18734. height: math.unit(2, "miles")
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18740. {
  18741. front: {
  18742. height: math.unit(6 + 2 / 12, "feet"),
  18743. weight: math.unit(153, "lb"),
  18744. name: "Front",
  18745. image: {
  18746. source: "./media/characters/seth-whilst/front.svg",
  18747. bottom: 0.07
  18748. }
  18749. },
  18750. },
  18751. [
  18752. {
  18753. name: "Micro",
  18754. height: math.unit(5, "inches")
  18755. },
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(6 + 2 / 12, "feet"),
  18759. default: true
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(3, "inches"),
  18768. weight: math.unit(8, "grams"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/pocket-jabari/front.svg",
  18772. extra: 1024 / 974,
  18773. bottom: 0.039
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Minimicro",
  18780. height: math.unit(8, "mm")
  18781. },
  18782. {
  18783. name: "Micro",
  18784. height: math.unit(3, "inches"),
  18785. default: true
  18786. },
  18787. {
  18788. name: "Normal",
  18789. height: math.unit(3, "feet")
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(15, "feet"),
  18798. weight: math.unit(3280, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/sapphy/front.svg",
  18802. extra: 671 / 577,
  18803. bottom: 0.085
  18804. }
  18805. },
  18806. back: {
  18807. height: math.unit(15, "feet"),
  18808. weight: math.unit(3280, "lb"),
  18809. name: "Back",
  18810. image: {
  18811. source: "./media/characters/sapphy/back.svg",
  18812. extra: 631 / 607,
  18813. bottom: 0.045
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(15, "feet")
  18821. },
  18822. {
  18823. name: "Casual Macro",
  18824. height: math.unit(120, "feet")
  18825. },
  18826. {
  18827. name: "Macro",
  18828. height: math.unit(2150, "feet"),
  18829. default: true
  18830. },
  18831. {
  18832. name: "Megamacro",
  18833. height: math.unit(8, "miles")
  18834. },
  18835. {
  18836. name: "Galaxy Mom",
  18837. height: math.unit(6, "megalightyears")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(6, "feet"),
  18846. weight: math.unit(170, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/kiro/front.svg",
  18850. extra: 1064 / 1012,
  18851. bottom: 0.052
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Micro",
  18858. height: math.unit(6, "inches")
  18859. },
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(6, "feet"),
  18863. default: true
  18864. },
  18865. {
  18866. name: "Macro",
  18867. height: math.unit(72, "feet")
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(5 + 9 / 12, "feet"),
  18876. weight: math.unit(175, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/irishfox/front.svg",
  18880. extra: 1912 / 1680,
  18881. bottom: 0.02
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Nano",
  18888. height: math.unit(1, "mm")
  18889. },
  18890. {
  18891. name: "Micro",
  18892. height: math.unit(2, "inches")
  18893. },
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(5 + 9 / 12, "feet"),
  18897. default: true
  18898. },
  18899. {
  18900. name: "Macro",
  18901. height: math.unit(45, "feet")
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(6 + 1 / 12, "feet"),
  18910. weight: math.unit(75, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/aronai-sieyes/front.svg",
  18914. extra: 1556 / 1480,
  18915. bottom: 0.015
  18916. }
  18917. },
  18918. side: {
  18919. height: math.unit(6 + 1 / 12, "feet"),
  18920. weight: math.unit(75, "lb"),
  18921. name: "Side",
  18922. image: {
  18923. source: "./media/characters/aronai-sieyes/side.svg",
  18924. extra: 1433 / 1390,
  18925. bottom: 0.0393
  18926. }
  18927. },
  18928. back: {
  18929. height: math.unit(6 + 1 / 12, "feet"),
  18930. weight: math.unit(75, "lb"),
  18931. name: "Back",
  18932. image: {
  18933. source: "./media/characters/aronai-sieyes/back.svg",
  18934. extra: 1544 / 1494,
  18935. bottom: 0.02
  18936. }
  18937. },
  18938. frontClothed: {
  18939. height: math.unit(6 + 1 / 12, "feet"),
  18940. weight: math.unit(75, "lb"),
  18941. name: "Front (Clothed)",
  18942. image: {
  18943. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18944. extra: 1582 / 1527
  18945. }
  18946. },
  18947. feral: {
  18948. height: math.unit(18, "feet"),
  18949. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18950. name: "Feral",
  18951. image: {
  18952. source: "./media/characters/aronai-sieyes/feral.svg",
  18953. extra: 1530 / 1240,
  18954. bottom: 0.035
  18955. }
  18956. },
  18957. },
  18958. [
  18959. {
  18960. name: "Micro",
  18961. height: math.unit(2, "inches")
  18962. },
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(6 + 1 / 12, "feet"),
  18966. default: true
  18967. }
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(12, "feet"),
  18975. weight: math.unit(410, "kg"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/xuna/front.svg",
  18979. extra: 2184 / 1980
  18980. }
  18981. },
  18982. side: {
  18983. height: math.unit(12, "feet"),
  18984. weight: math.unit(410, "kg"),
  18985. name: "Side",
  18986. image: {
  18987. source: "./media/characters/xuna/side.svg",
  18988. extra: 2184 / 1980
  18989. }
  18990. },
  18991. back: {
  18992. height: math.unit(12, "feet"),
  18993. weight: math.unit(410, "kg"),
  18994. name: "Back",
  18995. image: {
  18996. source: "./media/characters/xuna/back.svg",
  18997. extra: 2184 / 1980
  18998. }
  18999. },
  19000. },
  19001. [
  19002. {
  19003. name: "Nano glow",
  19004. height: math.unit(10, "nm")
  19005. },
  19006. {
  19007. name: "Micro floof",
  19008. height: math.unit(0.3, "m")
  19009. },
  19010. {
  19011. name: "Huggable softy boi",
  19012. height: math.unit(3.6576, "m"),
  19013. default: true
  19014. },
  19015. {
  19016. name: "Admirable floof",
  19017. height: math.unit(80, "meters")
  19018. },
  19019. {
  19020. name: "Gentle macro",
  19021. height: math.unit(300, "meters")
  19022. },
  19023. {
  19024. name: "Very careful floof",
  19025. height: math.unit(3200, "meters")
  19026. },
  19027. {
  19028. name: "The mega floof",
  19029. height: math.unit(36000, "meters")
  19030. },
  19031. {
  19032. name: "Giga-fur-Wicker",
  19033. height: math.unit(4800000, "meters")
  19034. },
  19035. {
  19036. name: "Licky world",
  19037. height: math.unit(20000000, "meters")
  19038. },
  19039. {
  19040. name: "Floofy cyan sun",
  19041. height: math.unit(1500000000, "meters")
  19042. },
  19043. {
  19044. name: "Milky Wicker",
  19045. height: math.unit(1000000000000000000000, "meters")
  19046. },
  19047. {
  19048. name: "The observing Wicker",
  19049. height: math.unit(999999999999999999999999999, "meters")
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(5 + 9 / 12, "feet"),
  19058. weight: math.unit(150, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/arokha-sieyes/front.svg",
  19062. extra: 1425 / 1284,
  19063. bottom: 0.05
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(5 + 9 / 12, "feet")
  19071. },
  19072. {
  19073. name: "Macro",
  19074. height: math.unit(30, "meters"),
  19075. default: true
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19081. {
  19082. front: {
  19083. height: math.unit(6, "feet"),
  19084. weight: math.unit(180, "lb"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/arokh-sieyes/front.svg",
  19088. extra: 1830 / 1769,
  19089. bottom: 0.01
  19090. }
  19091. },
  19092. },
  19093. [
  19094. {
  19095. name: "Normal",
  19096. height: math.unit(6, "feet")
  19097. },
  19098. {
  19099. name: "Macro",
  19100. height: math.unit(30, "meters"),
  19101. default: true
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19107. {
  19108. side: {
  19109. height: math.unit(13 + 1 / 12, "feet"),
  19110. weight: math.unit(8.5, "tonnes"),
  19111. name: "Side",
  19112. image: {
  19113. source: "./media/characters/goldeneye/side.svg",
  19114. extra: 1182 / 778,
  19115. bottom: 0.067
  19116. }
  19117. },
  19118. paw: {
  19119. height: math.unit(3.4, "feet"),
  19120. name: "Paw",
  19121. image: {
  19122. source: "./media/characters/goldeneye/paw.svg"
  19123. }
  19124. },
  19125. },
  19126. [
  19127. {
  19128. name: "Normal",
  19129. height: math.unit(13 + 1 / 12, "feet"),
  19130. default: true
  19131. },
  19132. ]
  19133. ))
  19134. characterMakers.push(() => makeCharacter(
  19135. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19136. {
  19137. front: {
  19138. height: math.unit(6 + 1 / 12, "feet"),
  19139. weight: math.unit(210, "lb"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/leonardo-lycheborne/front.svg",
  19143. extra: 776/723,
  19144. bottom: 34/810
  19145. }
  19146. },
  19147. side: {
  19148. height: math.unit(6 + 1 / 12, "feet"),
  19149. weight: math.unit(210, "lb"),
  19150. name: "Side",
  19151. image: {
  19152. source: "./media/characters/leonardo-lycheborne/side.svg",
  19153. extra: 780/728,
  19154. bottom: 12/792
  19155. }
  19156. },
  19157. back: {
  19158. height: math.unit(6 + 1 / 12, "feet"),
  19159. weight: math.unit(210, "lb"),
  19160. name: "Back",
  19161. image: {
  19162. source: "./media/characters/leonardo-lycheborne/back.svg",
  19163. extra: 775/721,
  19164. bottom: 17/792
  19165. }
  19166. },
  19167. hand: {
  19168. height: math.unit(1.08, "feet"),
  19169. name: "Hand",
  19170. image: {
  19171. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19172. }
  19173. },
  19174. foot: {
  19175. height: math.unit(1.32, "feet"),
  19176. name: "Foot",
  19177. image: {
  19178. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19179. }
  19180. },
  19181. maw: {
  19182. height: math.unit(1, "feet"),
  19183. name: "Maw",
  19184. image: {
  19185. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19186. }
  19187. },
  19188. were: {
  19189. height: math.unit(20, "feet"),
  19190. weight: math.unit(7800, "lb"),
  19191. name: "Were",
  19192. image: {
  19193. source: "./media/characters/leonardo-lycheborne/were.svg",
  19194. extra: 1224/1165,
  19195. bottom: 72/1296
  19196. }
  19197. },
  19198. feral: {
  19199. height: math.unit(7.5, "feet"),
  19200. weight: math.unit(600, "lb"),
  19201. name: "Feral",
  19202. image: {
  19203. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19204. extra: 797/702,
  19205. bottom: 139/936
  19206. }
  19207. },
  19208. taur: {
  19209. height: math.unit(11, "feet"),
  19210. weight: math.unit(3300, "lb"),
  19211. name: "Taur",
  19212. image: {
  19213. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19214. extra: 1271/1197,
  19215. bottom: 47/1318
  19216. }
  19217. },
  19218. barghest: {
  19219. height: math.unit(11, "feet"),
  19220. weight: math.unit(1300, "lb"),
  19221. name: "Barghest",
  19222. image: {
  19223. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19224. extra: 1291/1204,
  19225. bottom: 37/1328
  19226. }
  19227. },
  19228. dick: {
  19229. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19230. name: "Dick",
  19231. image: {
  19232. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19233. }
  19234. },
  19235. dickWere: {
  19236. height: math.unit((20) / 3.8, "feet"),
  19237. name: "Dick (Were)",
  19238. image: {
  19239. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19240. }
  19241. },
  19242. },
  19243. [
  19244. {
  19245. name: "Normal",
  19246. height: math.unit(6 + 1 / 12, "feet"),
  19247. default: true
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19253. {
  19254. front: {
  19255. height: math.unit(10, "feet"),
  19256. weight: math.unit(350, "lb"),
  19257. name: "Front",
  19258. image: {
  19259. source: "./media/characters/jet/front.svg",
  19260. extra: 2050 / 1980,
  19261. bottom: 0.013
  19262. }
  19263. },
  19264. back: {
  19265. height: math.unit(10, "feet"),
  19266. weight: math.unit(350, "lb"),
  19267. name: "Back",
  19268. image: {
  19269. source: "./media/characters/jet/back.svg",
  19270. extra: 2050 / 1980,
  19271. bottom: 0.013
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Micro",
  19278. height: math.unit(6, "inches")
  19279. },
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(10, "feet"),
  19283. default: true
  19284. },
  19285. {
  19286. name: "Macro",
  19287. height: math.unit(100, "feet")
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(15, "feet"),
  19296. weight: math.unit(2800, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/tanarath/front.svg",
  19300. extra: 2392 / 2220,
  19301. bottom: 0.03
  19302. }
  19303. },
  19304. back: {
  19305. height: math.unit(15, "feet"),
  19306. weight: math.unit(2800, "lb"),
  19307. name: "Back",
  19308. image: {
  19309. source: "./media/characters/tanarath/back.svg",
  19310. extra: 2392 / 2220,
  19311. bottom: 0.03
  19312. }
  19313. },
  19314. },
  19315. [
  19316. {
  19317. name: "Normal",
  19318. height: math.unit(15, "feet"),
  19319. default: true
  19320. },
  19321. ]
  19322. ))
  19323. characterMakers.push(() => makeCharacter(
  19324. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19325. {
  19326. front: {
  19327. height: math.unit(7 + 1 / 12, "feet"),
  19328. weight: math.unit(175, "lb"),
  19329. name: "Front",
  19330. image: {
  19331. source: "./media/characters/patty-cattybatty/front.svg",
  19332. extra: 908 / 874,
  19333. bottom: 0.025
  19334. }
  19335. },
  19336. },
  19337. [
  19338. {
  19339. name: "Micro",
  19340. height: math.unit(1, "inch")
  19341. },
  19342. {
  19343. name: "Normal",
  19344. height: math.unit(7 + 1 / 12, "feet")
  19345. },
  19346. {
  19347. name: "Mini Macro",
  19348. height: math.unit(155, "feet")
  19349. },
  19350. {
  19351. name: "Macro",
  19352. height: math.unit(1077, "feet")
  19353. },
  19354. {
  19355. name: "Mega Macro",
  19356. height: math.unit(47650, "feet"),
  19357. default: true
  19358. },
  19359. {
  19360. name: "Giga Macro",
  19361. height: math.unit(440, "miles")
  19362. },
  19363. {
  19364. name: "Tera Macro",
  19365. height: math.unit(8700, "miles")
  19366. },
  19367. {
  19368. name: "Planetary Macro",
  19369. height: math.unit(32700, "miles")
  19370. },
  19371. {
  19372. name: "Solar Macro",
  19373. height: math.unit(550000, "miles")
  19374. },
  19375. {
  19376. name: "Celestial Macro",
  19377. height: math.unit(2.5, "AU")
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19383. {
  19384. front: {
  19385. height: math.unit(4 + 5 / 12, "feet"),
  19386. weight: math.unit(90, "lb"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/cappu/front.svg",
  19390. extra: 1247 / 1152,
  19391. bottom: 0.012
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(4 + 5 / 12, "feet"),
  19399. default: true
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19405. {
  19406. frontDressed: {
  19407. height: math.unit(70, "cm"),
  19408. weight: math.unit(6, "kg"),
  19409. name: "Front (Dressed)",
  19410. image: {
  19411. source: "./media/characters/sebi/front-dressed.svg",
  19412. extra: 713.5 / 686.5,
  19413. bottom: 0.003
  19414. }
  19415. },
  19416. front: {
  19417. height: math.unit(70, "cm"),
  19418. weight: math.unit(5, "kg"),
  19419. name: "Front",
  19420. image: {
  19421. source: "./media/characters/sebi/front.svg",
  19422. extra: 713.5 / 686.5,
  19423. bottom: 0.003
  19424. }
  19425. }
  19426. },
  19427. [
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(70, "cm"),
  19431. default: true
  19432. },
  19433. {
  19434. name: "Macro",
  19435. height: math.unit(8, "meters")
  19436. },
  19437. ]
  19438. ))
  19439. characterMakers.push(() => makeCharacter(
  19440. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19441. {
  19442. front: {
  19443. height: math.unit(6, "feet"),
  19444. weight: math.unit(150, "lb"),
  19445. name: "Front",
  19446. image: {
  19447. source: "./media/characters/typhek/front.svg",
  19448. extra: 1948 / 1929,
  19449. bottom: 0.025
  19450. }
  19451. },
  19452. side: {
  19453. height: math.unit(6, "feet"),
  19454. weight: math.unit(150, "lb"),
  19455. name: "Side",
  19456. image: {
  19457. source: "./media/characters/typhek/side.svg",
  19458. extra: 2034 / 2010,
  19459. bottom: 0.003
  19460. }
  19461. },
  19462. back: {
  19463. height: math.unit(6, "feet"),
  19464. weight: math.unit(150, "lb"),
  19465. name: "Back",
  19466. image: {
  19467. source: "./media/characters/typhek/back.svg",
  19468. extra: 2005 / 1978,
  19469. bottom: 0.004
  19470. }
  19471. },
  19472. palm: {
  19473. height: math.unit(1.2, "feet"),
  19474. name: "Palm",
  19475. image: {
  19476. source: "./media/characters/typhek/palm.svg"
  19477. }
  19478. },
  19479. fist: {
  19480. height: math.unit(1.1, "feet"),
  19481. name: "Fist",
  19482. image: {
  19483. source: "./media/characters/typhek/fist.svg"
  19484. }
  19485. },
  19486. foot: {
  19487. height: math.unit(1.57, "feet"),
  19488. name: "Foot",
  19489. image: {
  19490. source: "./media/characters/typhek/foot.svg"
  19491. }
  19492. },
  19493. sole: {
  19494. height: math.unit(2.05, "feet"),
  19495. name: "Sole",
  19496. image: {
  19497. source: "./media/characters/typhek/sole.svg"
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Macro",
  19504. height: math.unit(40, "stories"),
  19505. default: true
  19506. },
  19507. {
  19508. name: "Megamacro",
  19509. height: math.unit(1, "mile")
  19510. },
  19511. {
  19512. name: "Gigamacro",
  19513. height: math.unit(4000, "solarradii")
  19514. },
  19515. {
  19516. name: "Universal",
  19517. height: math.unit(1.1, "universes")
  19518. }
  19519. ]
  19520. ))
  19521. characterMakers.push(() => makeCharacter(
  19522. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19523. {
  19524. side: {
  19525. height: math.unit(5 + 7 / 12, "feet"),
  19526. weight: math.unit(150, "lb"),
  19527. name: "Side",
  19528. image: {
  19529. source: "./media/characters/kassy/side.svg",
  19530. extra: 1280 / 1225,
  19531. bottom: 0.002
  19532. }
  19533. },
  19534. front: {
  19535. height: math.unit(5 + 7 / 12, "feet"),
  19536. weight: math.unit(150, "lb"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/kassy/front.svg",
  19540. extra: 1280 / 1225,
  19541. bottom: 0.025
  19542. }
  19543. },
  19544. back: {
  19545. height: math.unit(5 + 7 / 12, "feet"),
  19546. weight: math.unit(150, "lb"),
  19547. name: "Back",
  19548. image: {
  19549. source: "./media/characters/kassy/back.svg",
  19550. extra: 1280 / 1225,
  19551. bottom: 0.002
  19552. }
  19553. },
  19554. foot: {
  19555. height: math.unit(1.266, "feet"),
  19556. name: "Foot",
  19557. image: {
  19558. source: "./media/characters/kassy/foot.svg"
  19559. }
  19560. },
  19561. },
  19562. [
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(5 + 7 / 12, "feet")
  19566. },
  19567. {
  19568. name: "Macro",
  19569. height: math.unit(137, "feet"),
  19570. default: true
  19571. },
  19572. {
  19573. name: "Megamacro",
  19574. height: math.unit(1, "mile")
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19580. {
  19581. front: {
  19582. height: math.unit(6 + 1 / 12, "feet"),
  19583. weight: math.unit(200, "lb"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/neil/front.svg",
  19587. extra: 1326 / 1250,
  19588. bottom: 0.023
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(6 + 1 / 12, "feet"),
  19596. default: true
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(200, "feet")
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(5 + 9 / 12, "feet"),
  19609. weight: math.unit(190, "lb"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/atticus/front.svg",
  19613. extra: 2934 / 2785,
  19614. bottom: 0.025
  19615. }
  19616. },
  19617. },
  19618. [
  19619. {
  19620. name: "Normal",
  19621. height: math.unit(5 + 9 / 12, "feet"),
  19622. default: true
  19623. },
  19624. {
  19625. name: "Macro",
  19626. height: math.unit(180, "feet")
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19632. {
  19633. side: {
  19634. height: math.unit(9, "feet"),
  19635. weight: math.unit(650, "lb"),
  19636. name: "Side",
  19637. image: {
  19638. source: "./media/characters/milo/side.svg",
  19639. extra: 2644 / 2310,
  19640. bottom: 0.032
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(9, "feet"),
  19648. default: true
  19649. },
  19650. {
  19651. name: "Macro",
  19652. height: math.unit(300, "feet")
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19658. {
  19659. side: {
  19660. height: math.unit(8, "meters"),
  19661. weight: math.unit(90000, "kg"),
  19662. name: "Side",
  19663. image: {
  19664. source: "./media/characters/ijzer/side.svg",
  19665. extra: 2756 / 1600,
  19666. bottom: 0.01
  19667. }
  19668. },
  19669. },
  19670. [
  19671. {
  19672. name: "Small",
  19673. height: math.unit(3, "meters")
  19674. },
  19675. {
  19676. name: "Normal",
  19677. height: math.unit(8, "meters"),
  19678. default: true
  19679. },
  19680. {
  19681. name: "Normal+",
  19682. height: math.unit(10, "meters")
  19683. },
  19684. {
  19685. name: "Bigger",
  19686. height: math.unit(24, "meters")
  19687. },
  19688. {
  19689. name: "Huge",
  19690. height: math.unit(80, "meters")
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19696. {
  19697. front: {
  19698. height: math.unit(6 + 2 / 12, "feet"),
  19699. weight: math.unit(153, "lb"),
  19700. name: "Front",
  19701. image: {
  19702. source: "./media/characters/luca-cervicum/front.svg",
  19703. extra: 370 / 327,
  19704. bottom: 0.015
  19705. }
  19706. },
  19707. back: {
  19708. height: math.unit(6 + 2 / 12, "feet"),
  19709. weight: math.unit(153, "lb"),
  19710. name: "Back",
  19711. image: {
  19712. source: "./media/characters/luca-cervicum/back.svg",
  19713. extra: 367 / 333,
  19714. bottom: 0.005
  19715. }
  19716. },
  19717. frontGear: {
  19718. height: math.unit(6 + 2 / 12, "feet"),
  19719. weight: math.unit(173, "lb"),
  19720. name: "Front (Gear)",
  19721. image: {
  19722. source: "./media/characters/luca-cervicum/front-gear.svg",
  19723. extra: 377 / 333,
  19724. bottom: 0.006
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(6 + 2 / 12, "feet"),
  19732. default: true
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(6 + 1 / 12, "feet"),
  19741. weight: math.unit(304, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/oliver/front.svg",
  19745. extra: 157 / 143,
  19746. bottom: 0.08
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Normal",
  19753. height: math.unit(6 + 1 / 12, "feet"),
  19754. default: true
  19755. },
  19756. ]
  19757. ))
  19758. characterMakers.push(() => makeCharacter(
  19759. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19760. {
  19761. front: {
  19762. height: math.unit(5 + 7 / 12, "feet"),
  19763. weight: math.unit(140, "lb"),
  19764. name: "Front",
  19765. image: {
  19766. source: "./media/characters/shane/front.svg",
  19767. extra: 304 / 289,
  19768. bottom: 0.005
  19769. }
  19770. },
  19771. },
  19772. [
  19773. {
  19774. name: "Normal",
  19775. height: math.unit(5 + 7 / 12, "feet"),
  19776. default: true
  19777. },
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19782. {
  19783. front: {
  19784. height: math.unit(5 + 9 / 12, "feet"),
  19785. weight: math.unit(178, "lb"),
  19786. name: "Front",
  19787. image: {
  19788. source: "./media/characters/shin/front.svg",
  19789. extra: 159 / 151,
  19790. bottom: 0.015
  19791. }
  19792. },
  19793. },
  19794. [
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(5 + 9 / 12, "feet"),
  19798. default: true
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19804. {
  19805. front: {
  19806. height: math.unit(5 + 10 / 12, "feet"),
  19807. weight: math.unit(168, "lb"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/xerxes/front.svg",
  19811. extra: 282 / 260,
  19812. bottom: 0.045
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Normal",
  19819. height: math.unit(5 + 10 / 12, "feet"),
  19820. default: true
  19821. },
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19826. {
  19827. front: {
  19828. height: math.unit(6 + 7 / 12, "feet"),
  19829. weight: math.unit(208, "lb"),
  19830. name: "Front",
  19831. image: {
  19832. source: "./media/characters/chaska/front.svg",
  19833. extra: 332 / 319,
  19834. bottom: 0.015
  19835. }
  19836. },
  19837. },
  19838. [
  19839. {
  19840. name: "Normal",
  19841. height: math.unit(6 + 7 / 12, "feet"),
  19842. default: true
  19843. },
  19844. ]
  19845. ))
  19846. characterMakers.push(() => makeCharacter(
  19847. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19848. {
  19849. front: {
  19850. height: math.unit(5 + 8 / 12, "feet"),
  19851. weight: math.unit(208, "lb"),
  19852. name: "Front",
  19853. image: {
  19854. source: "./media/characters/enuk/front.svg",
  19855. extra: 437 / 406,
  19856. bottom: 0.02
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(5 + 8 / 12, "feet"),
  19864. default: true
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(5 + 10 / 12, "feet"),
  19873. weight: math.unit(252, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/bruun/front.svg",
  19877. extra: 197 / 187,
  19878. bottom: 0.012
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Normal",
  19885. height: math.unit(5 + 10 / 12, "feet"),
  19886. default: true
  19887. },
  19888. ]
  19889. ))
  19890. characterMakers.push(() => makeCharacter(
  19891. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19892. {
  19893. front: {
  19894. height: math.unit(6 + 10 / 12, "feet"),
  19895. weight: math.unit(255, "lb"),
  19896. name: "Front",
  19897. image: {
  19898. source: "./media/characters/alexeev/front.svg",
  19899. extra: 213 / 200,
  19900. bottom: 0.05
  19901. }
  19902. },
  19903. },
  19904. [
  19905. {
  19906. name: "Normal",
  19907. height: math.unit(6 + 10 / 12, "feet"),
  19908. default: true
  19909. },
  19910. ]
  19911. ))
  19912. characterMakers.push(() => makeCharacter(
  19913. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19914. {
  19915. front: {
  19916. height: math.unit(2 + 8 / 12, "feet"),
  19917. weight: math.unit(22, "lb"),
  19918. name: "Front",
  19919. image: {
  19920. source: "./media/characters/evelyn/front.svg",
  19921. extra: 208 / 180
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Normal",
  19928. height: math.unit(2 + 8 / 12, "feet"),
  19929. default: true
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19935. {
  19936. front: {
  19937. height: math.unit(5 + 9 / 12, "feet"),
  19938. weight: math.unit(139, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/inca/front.svg",
  19942. extra: 294 / 291,
  19943. bottom: 0.03
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Normal",
  19950. height: math.unit(5 + 9 / 12, "feet"),
  19951. default: true
  19952. },
  19953. ]
  19954. ))
  19955. characterMakers.push(() => makeCharacter(
  19956. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19957. {
  19958. front: {
  19959. height: math.unit(5 + 1 / 12, "feet"),
  19960. weight: math.unit(84, "lb"),
  19961. name: "Front",
  19962. image: {
  19963. source: "./media/characters/magdalene/front.svg",
  19964. extra: 293 / 273
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(5 + 1 / 12, "feet"),
  19972. default: true
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19978. {
  19979. front: {
  19980. height: math.unit(6 + 3 / 12, "feet"),
  19981. weight: math.unit(185, "lb"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/mera/front.svg",
  19985. extra: 291 / 277,
  19986. bottom: 0.03
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Normal",
  19993. height: math.unit(6 + 3 / 12, "feet"),
  19994. default: true
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(6 + 7 / 12, "feet"),
  20003. weight: math.unit(160, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/ceres/front.svg",
  20007. extra: 1023 / 950,
  20008. bottom: 0.027
  20009. }
  20010. },
  20011. back: {
  20012. height: math.unit(6 + 7 / 12, "feet"),
  20013. weight: math.unit(160, "lb"),
  20014. name: "Back",
  20015. image: {
  20016. source: "./media/characters/ceres/back.svg",
  20017. extra: 1023 / 950
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(6 + 7 / 12, "feet"),
  20025. default: true
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(5 + 10 / 12, "feet"),
  20034. weight: math.unit(150, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/kris/front.svg",
  20038. extra: 885 / 803,
  20039. bottom: 0.03
  20040. }
  20041. },
  20042. },
  20043. [
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(5 + 10 / 12, "feet"),
  20047. default: true
  20048. },
  20049. ]
  20050. ))
  20051. characterMakers.push(() => makeCharacter(
  20052. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20053. {
  20054. front: {
  20055. height: math.unit(7, "feet"),
  20056. weight: math.unit(120, "kg"),
  20057. name: "Front",
  20058. image: {
  20059. source: "./media/characters/taluthus/front.svg",
  20060. extra: 903 / 833,
  20061. bottom: 0.015
  20062. }
  20063. },
  20064. },
  20065. [
  20066. {
  20067. name: "Normal",
  20068. height: math.unit(7, "feet"),
  20069. default: true
  20070. },
  20071. {
  20072. name: "Macro",
  20073. height: math.unit(300, "feet")
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20079. {
  20080. front: {
  20081. height: math.unit(5 + 9 / 12, "feet"),
  20082. weight: math.unit(145, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/dawn/front.svg",
  20086. extra: 2094 / 2016,
  20087. bottom: 0.025
  20088. }
  20089. },
  20090. back: {
  20091. height: math.unit(5 + 9 / 12, "feet"),
  20092. weight: math.unit(160, "lb"),
  20093. name: "Back",
  20094. image: {
  20095. source: "./media/characters/dawn/back.svg",
  20096. extra: 2112 / 2080,
  20097. bottom: 0.005
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(6 + 7 / 12, "feet"),
  20105. default: true
  20106. },
  20107. ]
  20108. ))
  20109. characterMakers.push(() => makeCharacter(
  20110. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20111. {
  20112. anthro: {
  20113. height: math.unit(8 + 3 / 12, "feet"),
  20114. weight: math.unit(450, "lb"),
  20115. name: "Anthro",
  20116. image: {
  20117. source: "./media/characters/arador/anthro.svg",
  20118. extra: 1835 / 1718,
  20119. bottom: 0.025
  20120. }
  20121. },
  20122. feral: {
  20123. height: math.unit(4, "feet"),
  20124. weight: math.unit(200, "lb"),
  20125. name: "Feral",
  20126. image: {
  20127. source: "./media/characters/arador/feral.svg",
  20128. extra: 1683 / 1514,
  20129. bottom: 0.07
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(8 + 3 / 12, "feet")
  20137. },
  20138. {
  20139. name: "Macro",
  20140. height: math.unit(82.5, "feet"),
  20141. default: true
  20142. },
  20143. ]
  20144. ))
  20145. characterMakers.push(() => makeCharacter(
  20146. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20147. {
  20148. front: {
  20149. height: math.unit(5 + 10 / 12, "feet"),
  20150. weight: math.unit(125, "lb"),
  20151. name: "Front",
  20152. image: {
  20153. source: "./media/characters/dharsi/front.svg",
  20154. extra: 716 / 630,
  20155. bottom: 0.035
  20156. }
  20157. },
  20158. },
  20159. [
  20160. {
  20161. name: "Nano",
  20162. height: math.unit(100, "nm")
  20163. },
  20164. {
  20165. name: "Micro",
  20166. height: math.unit(2, "inches")
  20167. },
  20168. {
  20169. name: "Normal",
  20170. height: math.unit(5 + 10 / 12, "feet"),
  20171. default: true
  20172. },
  20173. {
  20174. name: "Macro",
  20175. height: math.unit(1000, "feet")
  20176. },
  20177. {
  20178. name: "Megamacro",
  20179. height: math.unit(10, "miles")
  20180. },
  20181. {
  20182. name: "Gigamacro",
  20183. height: math.unit(3000, "miles")
  20184. },
  20185. {
  20186. name: "Teramacro",
  20187. height: math.unit(500000, "miles")
  20188. },
  20189. {
  20190. name: "Teramacro+",
  20191. height: math.unit(30, "galaxies")
  20192. },
  20193. ]
  20194. ))
  20195. characterMakers.push(() => makeCharacter(
  20196. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20197. {
  20198. front: {
  20199. height: math.unit(6, "feet"),
  20200. weight: math.unit(150, "lb"),
  20201. name: "Front",
  20202. image: {
  20203. source: "./media/characters/deathy/front.svg",
  20204. extra: 1552 / 1463,
  20205. bottom: 0.025
  20206. }
  20207. },
  20208. side: {
  20209. height: math.unit(6, "feet"),
  20210. weight: math.unit(150, "lb"),
  20211. name: "Side",
  20212. image: {
  20213. source: "./media/characters/deathy/side.svg",
  20214. extra: 1604 / 1455,
  20215. bottom: 0.025
  20216. }
  20217. },
  20218. back: {
  20219. height: math.unit(6, "feet"),
  20220. weight: math.unit(150, "lb"),
  20221. name: "Back",
  20222. image: {
  20223. source: "./media/characters/deathy/back.svg",
  20224. extra: 1580 / 1463,
  20225. bottom: 0.005
  20226. }
  20227. },
  20228. },
  20229. [
  20230. {
  20231. name: "Micro",
  20232. height: math.unit(5, "millimeters")
  20233. },
  20234. {
  20235. name: "Normal",
  20236. height: math.unit(6 + 5 / 12, "feet"),
  20237. default: true
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20243. {
  20244. front: {
  20245. height: math.unit(16, "feet"),
  20246. weight: math.unit(4000, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/juniper/front.svg",
  20250. bottom: 0.04
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(16, "feet"),
  20258. default: true
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20264. {
  20265. front: {
  20266. height: math.unit(6, "feet"),
  20267. weight: math.unit(150, "lb"),
  20268. name: "Front",
  20269. image: {
  20270. source: "./media/characters/hipster/front.svg",
  20271. extra: 1312 / 1209,
  20272. bottom: 0.025
  20273. }
  20274. },
  20275. back: {
  20276. height: math.unit(6, "feet"),
  20277. weight: math.unit(150, "lb"),
  20278. name: "Back",
  20279. image: {
  20280. source: "./media/characters/hipster/back.svg",
  20281. extra: 1281 / 1196,
  20282. bottom: 0.01
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Micro",
  20289. height: math.unit(1, "mm")
  20290. },
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(4, "inches"),
  20294. default: true
  20295. },
  20296. {
  20297. name: "Macro",
  20298. height: math.unit(500, "feet")
  20299. },
  20300. {
  20301. name: "Megamacro",
  20302. height: math.unit(1000, "miles")
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20308. {
  20309. front: {
  20310. height: math.unit(6, "feet"),
  20311. weight: math.unit(150, "lb"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/tendirmuldr/front.svg",
  20315. extra: 1878 / 1772,
  20316. bottom: 0.015
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Megamacro",
  20323. height: math.unit(1500, "miles"),
  20324. default: true
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20330. {
  20331. front: {
  20332. height: math.unit(14, "feet"),
  20333. weight: math.unit(12000, "lb"),
  20334. name: "Front",
  20335. image: {
  20336. source: "./media/characters/mort/front.svg",
  20337. extra: 365 / 318,
  20338. bottom: 0.01
  20339. }
  20340. },
  20341. side: {
  20342. height: math.unit(14, "feet"),
  20343. weight: math.unit(12000, "lb"),
  20344. name: "Side",
  20345. image: {
  20346. source: "./media/characters/mort/side.svg",
  20347. extra: 365 / 318,
  20348. bottom: 0.052
  20349. },
  20350. default: true
  20351. },
  20352. back: {
  20353. height: math.unit(14, "feet"),
  20354. weight: math.unit(12000, "lb"),
  20355. name: "Back",
  20356. image: {
  20357. source: "./media/characters/mort/back.svg",
  20358. extra: 371 / 332,
  20359. bottom: 0.18
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(14, "feet"),
  20367. default: true
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20373. {
  20374. front: {
  20375. height: math.unit(8, "feet"),
  20376. weight: math.unit(1, "ton"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/lycoa/front.svg",
  20380. extra: 1875 / 1789,
  20381. bottom: 0.022
  20382. }
  20383. },
  20384. back: {
  20385. height: math.unit(8, "feet"),
  20386. weight: math.unit(1, "ton"),
  20387. name: "Back",
  20388. image: {
  20389. source: "./media/characters/lycoa/back.svg",
  20390. extra: 1835 / 1781,
  20391. bottom: 0.03
  20392. }
  20393. },
  20394. head: {
  20395. height: math.unit(2.1, "feet"),
  20396. name: "Head",
  20397. image: {
  20398. source: "./media/characters/lycoa/head.svg"
  20399. }
  20400. },
  20401. tailmaw: {
  20402. height: math.unit(1.9, "feet"),
  20403. name: "Tailmaw",
  20404. image: {
  20405. source: "./media/characters/lycoa/tailmaw.svg"
  20406. }
  20407. },
  20408. tentacles: {
  20409. height: math.unit(2.1, "feet"),
  20410. name: "Tentacles",
  20411. image: {
  20412. source: "./media/characters/lycoa/tentacles.svg"
  20413. }
  20414. },
  20415. dick: {
  20416. height: math.unit(1.73, "feet"),
  20417. name: "Dick",
  20418. image: {
  20419. source: "./media/characters/lycoa/dick.svg"
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Normal",
  20426. height: math.unit(8, "feet"),
  20427. default: true
  20428. },
  20429. {
  20430. name: "Macro",
  20431. height: math.unit(30, "feet")
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20437. {
  20438. front: {
  20439. height: math.unit(4 + 2 / 12, "feet"),
  20440. weight: math.unit(70, "lb"),
  20441. name: "Front",
  20442. image: {
  20443. source: "./media/characters/naldara/front.svg",
  20444. extra: 841 / 720,
  20445. bottom: 0.04
  20446. }
  20447. },
  20448. naga: {
  20449. height: math.unit(23, "feet"),
  20450. weight: math.unit(15000, "kg"),
  20451. name: "Naga",
  20452. image: {
  20453. source: "./media/characters/naldara/naga.svg",
  20454. extra: 3290 / 2959,
  20455. bottom: 124 / 3432
  20456. }
  20457. },
  20458. },
  20459. [
  20460. {
  20461. name: "Normal",
  20462. height: math.unit(4 + 2 / 12, "feet"),
  20463. default: true
  20464. },
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20469. {
  20470. front: {
  20471. height: math.unit(13 + 7 / 12, "feet"),
  20472. weight: math.unit(1500, "lb"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/briar/front.svg",
  20476. extra: 626 / 596,
  20477. bottom: 0.08
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(13 + 7 / 12, "feet"),
  20485. default: true
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20491. {
  20492. side: {
  20493. height: math.unit(10, "feet"),
  20494. weight: math.unit(500, "lb"),
  20495. name: "Side",
  20496. image: {
  20497. source: "./media/characters/vanguard/side.svg",
  20498. extra: 502 / 425,
  20499. bottom: 0.087
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(10, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(7.5, "feet"),
  20516. weight: math.unit(2, "lb"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/artemis/front.svg",
  20520. extra: 1192 / 1075,
  20521. bottom: 0.07
  20522. }
  20523. },
  20524. frontNsfw: {
  20525. height: math.unit(7.5, "feet"),
  20526. weight: math.unit(2, "lb"),
  20527. name: "Front (NSFW)",
  20528. image: {
  20529. source: "./media/characters/artemis/front-nsfw.svg",
  20530. extra: 1192 / 1075,
  20531. bottom: 0.07
  20532. }
  20533. },
  20534. frontNsfwer: {
  20535. height: math.unit(7.5, "feet"),
  20536. weight: math.unit(2, "lb"),
  20537. name: "Front (NSFW-er)",
  20538. image: {
  20539. source: "./media/characters/artemis/front-nsfwer.svg",
  20540. extra: 1192 / 1075,
  20541. bottom: 0.07
  20542. }
  20543. },
  20544. side: {
  20545. height: math.unit(7.5, "feet"),
  20546. weight: math.unit(2, "lb"),
  20547. name: "Side",
  20548. image: {
  20549. source: "./media/characters/artemis/side.svg",
  20550. extra: 1192 / 1075,
  20551. bottom: 0.07
  20552. }
  20553. },
  20554. sideNsfw: {
  20555. height: math.unit(7.5, "feet"),
  20556. weight: math.unit(2, "lb"),
  20557. name: "Side (NSFW)",
  20558. image: {
  20559. source: "./media/characters/artemis/side-nsfw.svg",
  20560. extra: 1192 / 1075,
  20561. bottom: 0.07
  20562. }
  20563. },
  20564. sideNsfwer: {
  20565. height: math.unit(7.5, "feet"),
  20566. weight: math.unit(2, "lb"),
  20567. name: "Side (NSFW-er)",
  20568. image: {
  20569. source: "./media/characters/artemis/side-nsfwer.svg",
  20570. extra: 1192 / 1075,
  20571. bottom: 0.07
  20572. }
  20573. },
  20574. maw: {
  20575. height: math.unit(1.1, "feet"),
  20576. name: "Maw",
  20577. image: {
  20578. source: "./media/characters/artemis/maw.svg"
  20579. }
  20580. },
  20581. stomach: {
  20582. height: math.unit(0.95, "feet"),
  20583. name: "Stomach",
  20584. image: {
  20585. source: "./media/characters/artemis/stomach.svg"
  20586. }
  20587. },
  20588. dickCanine: {
  20589. height: math.unit(1, "feet"),
  20590. name: "Dick (Canine)",
  20591. image: {
  20592. source: "./media/characters/artemis/dick-canine.svg"
  20593. }
  20594. },
  20595. dickEquine: {
  20596. height: math.unit(0.85, "feet"),
  20597. name: "Dick (Equine)",
  20598. image: {
  20599. source: "./media/characters/artemis/dick-equine.svg"
  20600. }
  20601. },
  20602. dickExotic: {
  20603. height: math.unit(0.85, "feet"),
  20604. name: "Dick (Exotic)",
  20605. image: {
  20606. source: "./media/characters/artemis/dick-exotic.svg"
  20607. }
  20608. },
  20609. },
  20610. [
  20611. {
  20612. name: "Normal",
  20613. height: math.unit(7.5, "feet"),
  20614. default: true
  20615. },
  20616. {
  20617. name: "Enlarged",
  20618. height: math.unit(12, "feet")
  20619. },
  20620. ]
  20621. ))
  20622. characterMakers.push(() => makeCharacter(
  20623. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20624. {
  20625. front: {
  20626. height: math.unit(5 + 3 / 12, "feet"),
  20627. weight: math.unit(160, "lb"),
  20628. name: "Front",
  20629. image: {
  20630. source: "./media/characters/kira/front.svg",
  20631. extra: 906 / 786,
  20632. bottom: 0.01
  20633. }
  20634. },
  20635. back: {
  20636. height: math.unit(5 + 3 / 12, "feet"),
  20637. weight: math.unit(160, "lb"),
  20638. name: "Back",
  20639. image: {
  20640. source: "./media/characters/kira/back.svg",
  20641. extra: 882 / 757,
  20642. bottom: 0.005
  20643. }
  20644. },
  20645. frontDressed: {
  20646. height: math.unit(5 + 3 / 12, "feet"),
  20647. weight: math.unit(160, "lb"),
  20648. name: "Front (Dressed)",
  20649. image: {
  20650. source: "./media/characters/kira/front-dressed.svg",
  20651. extra: 906 / 786,
  20652. bottom: 0.01
  20653. }
  20654. },
  20655. beans: {
  20656. height: math.unit(0.92, "feet"),
  20657. name: "Beans",
  20658. image: {
  20659. source: "./media/characters/kira/beans.svg"
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(5 + 3 / 12, "feet"),
  20667. default: true
  20668. },
  20669. ]
  20670. ))
  20671. characterMakers.push(() => makeCharacter(
  20672. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20673. {
  20674. front: {
  20675. height: math.unit(5 + 4 / 12, "feet"),
  20676. weight: math.unit(145, "lb"),
  20677. name: "Front",
  20678. image: {
  20679. source: "./media/characters/scramble/front.svg",
  20680. extra: 763 / 727,
  20681. bottom: 0.05
  20682. }
  20683. },
  20684. back: {
  20685. height: math.unit(5 + 4 / 12, "feet"),
  20686. weight: math.unit(145, "lb"),
  20687. name: "Back",
  20688. image: {
  20689. source: "./media/characters/scramble/back.svg",
  20690. extra: 826 / 737,
  20691. bottom: 0.002
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(5 + 4 / 12, "feet"),
  20699. default: true
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20705. {
  20706. side: {
  20707. height: math.unit(6 + 2 / 12, "feet"),
  20708. weight: math.unit(190, "lb"),
  20709. name: "Side",
  20710. image: {
  20711. source: "./media/characters/biscuit/side.svg",
  20712. extra: 858 / 791,
  20713. bottom: 0.044
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(6 + 2 / 12, "feet"),
  20721. default: true
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(5 + 2 / 12, "feet"),
  20730. weight: math.unit(120, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/poffin/front.svg",
  20734. extra: 786 / 680,
  20735. bottom: 0.005
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(5 + 2 / 12, "feet"),
  20743. default: true
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(6 + 3 / 12, "feet"),
  20752. weight: math.unit(519, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/dhari/front.svg",
  20756. extra: 1048 / 946,
  20757. bottom: 0.015
  20758. }
  20759. },
  20760. back: {
  20761. height: math.unit(6 + 3 / 12, "feet"),
  20762. weight: math.unit(519, "lb"),
  20763. name: "Back",
  20764. image: {
  20765. source: "./media/characters/dhari/back.svg",
  20766. extra: 1048 / 931,
  20767. bottom: 0.005
  20768. }
  20769. },
  20770. frontDressed: {
  20771. height: math.unit(6 + 3 / 12, "feet"),
  20772. weight: math.unit(519, "lb"),
  20773. name: "Front (Dressed)",
  20774. image: {
  20775. source: "./media/characters/dhari/front-dressed.svg",
  20776. extra: 1713 / 1546,
  20777. bottom: 0.02
  20778. }
  20779. },
  20780. backDressed: {
  20781. height: math.unit(6 + 3 / 12, "feet"),
  20782. weight: math.unit(519, "lb"),
  20783. name: "Back (Dressed)",
  20784. image: {
  20785. source: "./media/characters/dhari/back-dressed.svg",
  20786. extra: 1699 / 1537,
  20787. bottom: 0.01
  20788. }
  20789. },
  20790. maw: {
  20791. height: math.unit(0.95, "feet"),
  20792. name: "Maw",
  20793. image: {
  20794. source: "./media/characters/dhari/maw.svg"
  20795. }
  20796. },
  20797. wereFront: {
  20798. height: math.unit(12 + 8 / 12, "feet"),
  20799. weight: math.unit(4000, "lb"),
  20800. name: "Front (Were)",
  20801. image: {
  20802. source: "./media/characters/dhari/were-front.svg",
  20803. extra: 1065 / 969,
  20804. bottom: 0.015
  20805. }
  20806. },
  20807. wereBack: {
  20808. height: math.unit(12 + 8 / 12, "feet"),
  20809. weight: math.unit(4000, "lb"),
  20810. name: "Back (Were)",
  20811. image: {
  20812. source: "./media/characters/dhari/were-back.svg",
  20813. extra: 1065 / 969,
  20814. bottom: 0.012
  20815. }
  20816. },
  20817. wereMaw: {
  20818. height: math.unit(0.625, "meters"),
  20819. name: "Maw (Were)",
  20820. image: {
  20821. source: "./media/characters/dhari/were-maw.svg"
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(6 + 3 / 12, "feet"),
  20829. default: true
  20830. },
  20831. ]
  20832. ))
  20833. characterMakers.push(() => makeCharacter(
  20834. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20835. {
  20836. anthro: {
  20837. height: math.unit(5 + 7 / 12, "feet"),
  20838. weight: math.unit(175, "lb"),
  20839. name: "Anthro",
  20840. image: {
  20841. source: "./media/characters/rena-dyne/anthro.svg",
  20842. extra: 1849 / 1785,
  20843. bottom: 0.005
  20844. }
  20845. },
  20846. taur: {
  20847. height: math.unit(15 + 6 / 12, "feet"),
  20848. weight: math.unit(8000, "lb"),
  20849. name: "Taur",
  20850. image: {
  20851. source: "./media/characters/rena-dyne/taur.svg",
  20852. extra: 2315 / 2234,
  20853. bottom: 0.033
  20854. }
  20855. },
  20856. },
  20857. [
  20858. {
  20859. name: "Normal",
  20860. height: math.unit(5 + 7 / 12, "feet"),
  20861. default: true
  20862. },
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20867. {
  20868. front: {
  20869. height: math.unit(8, "feet"),
  20870. weight: math.unit(600, "lb"),
  20871. name: "Front",
  20872. image: {
  20873. source: "./media/characters/weremeep/front.svg",
  20874. extra: 967 / 862,
  20875. bottom: 0.01
  20876. }
  20877. },
  20878. },
  20879. [
  20880. {
  20881. name: "Normal",
  20882. height: math.unit(8, "feet"),
  20883. default: true
  20884. },
  20885. {
  20886. name: "Lorg",
  20887. height: math.unit(12, "feet")
  20888. },
  20889. {
  20890. name: "Oh Lawd She Comin'",
  20891. height: math.unit(20, "feet")
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20897. {
  20898. front: {
  20899. height: math.unit(4, "feet"),
  20900. weight: math.unit(90, "lb"),
  20901. name: "Front",
  20902. image: {
  20903. source: "./media/characters/reza/front.svg",
  20904. extra: 1183 / 1111,
  20905. bottom: 0.017
  20906. }
  20907. },
  20908. back: {
  20909. height: math.unit(4, "feet"),
  20910. weight: math.unit(90, "lb"),
  20911. name: "Back",
  20912. image: {
  20913. source: "./media/characters/reza/back.svg",
  20914. extra: 1183 / 1111,
  20915. bottom: 0.01
  20916. }
  20917. },
  20918. drake: {
  20919. height: math.unit(30, "feet"),
  20920. weight: math.unit(246960, "lb"),
  20921. name: "Drake",
  20922. image: {
  20923. source: "./media/characters/reza/drake.svg",
  20924. extra: 2350 / 2024,
  20925. bottom: 60.7 / 2403
  20926. }
  20927. },
  20928. },
  20929. [
  20930. {
  20931. name: "Normal",
  20932. height: math.unit(4, "feet"),
  20933. default: true
  20934. },
  20935. ]
  20936. ))
  20937. characterMakers.push(() => makeCharacter(
  20938. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20939. {
  20940. side: {
  20941. height: math.unit(15, "feet"),
  20942. weight: math.unit(14, "tons"),
  20943. name: "Side",
  20944. image: {
  20945. source: "./media/characters/athea/side.svg",
  20946. extra: 960 / 540,
  20947. bottom: 0.003
  20948. }
  20949. },
  20950. sitting: {
  20951. height: math.unit(6 * 2.85, "feet"),
  20952. weight: math.unit(14, "tons"),
  20953. name: "Sitting",
  20954. image: {
  20955. source: "./media/characters/athea/sitting.svg",
  20956. extra: 621 / 581,
  20957. bottom: 0.075
  20958. }
  20959. },
  20960. maw: {
  20961. height: math.unit(7.59498031496063, "feet"),
  20962. name: "Maw",
  20963. image: {
  20964. source: "./media/characters/athea/maw.svg"
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Lap Cat",
  20971. height: math.unit(2.5, "feet")
  20972. },
  20973. {
  20974. name: "Minimacro",
  20975. height: math.unit(15, "feet"),
  20976. default: true
  20977. },
  20978. {
  20979. name: "Macro",
  20980. height: math.unit(120, "feet")
  20981. },
  20982. {
  20983. name: "Macro+",
  20984. height: math.unit(640, "feet")
  20985. },
  20986. {
  20987. name: "Colossus",
  20988. height: math.unit(2.2, "miles")
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(8 + 8 / 12, "feet"),
  20997. weight: math.unit(130, "kg"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/seroko/front.svg",
  21001. extra: 1385 / 1280,
  21002. bottom: 0.025
  21003. }
  21004. },
  21005. back: {
  21006. height: math.unit(8 + 8 / 12, "feet"),
  21007. weight: math.unit(130, "kg"),
  21008. name: "Back",
  21009. image: {
  21010. source: "./media/characters/seroko/back.svg",
  21011. extra: 1369 / 1238,
  21012. bottom: 0.018
  21013. }
  21014. },
  21015. frontDressed: {
  21016. height: math.unit(8 + 8 / 12, "feet"),
  21017. weight: math.unit(130, "kg"),
  21018. name: "Front (Dressed)",
  21019. image: {
  21020. source: "./media/characters/seroko/front-dressed.svg",
  21021. extra: 1366 / 1275,
  21022. bottom: 0.03
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(8 + 8 / 12, "feet"),
  21030. default: true
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21036. {
  21037. front: {
  21038. height: math.unit(5.5, "feet"),
  21039. weight: math.unit(160, "lb"),
  21040. name: "Front",
  21041. image: {
  21042. source: "./media/characters/quatzi/front.svg",
  21043. extra: 2346 / 2242,
  21044. bottom: 0.015
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(5.5, "feet"),
  21052. default: true
  21053. },
  21054. {
  21055. name: "Big",
  21056. height: math.unit(7.7, "feet")
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21062. {
  21063. front: {
  21064. height: math.unit(5 + 11 / 12, "feet"),
  21065. weight: math.unit(180, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/sen/front.svg",
  21069. extra: 1321 / 1254,
  21070. bottom: 0.015
  21071. }
  21072. },
  21073. side: {
  21074. height: math.unit(5 + 11 / 12, "feet"),
  21075. weight: math.unit(180, "lb"),
  21076. name: "Side",
  21077. image: {
  21078. source: "./media/characters/sen/side.svg",
  21079. extra: 1321 / 1254,
  21080. bottom: 0.007
  21081. }
  21082. },
  21083. back: {
  21084. height: math.unit(5 + 11 / 12, "feet"),
  21085. weight: math.unit(180, "lb"),
  21086. name: "Back",
  21087. image: {
  21088. source: "./media/characters/sen/back.svg",
  21089. extra: 1321 / 1254
  21090. }
  21091. },
  21092. },
  21093. [
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(5 + 11 / 12, "feet"),
  21097. default: true
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21103. {
  21104. front: {
  21105. height: math.unit(166.6, "cm"),
  21106. weight: math.unit(66.6, "kg"),
  21107. name: "Front",
  21108. image: {
  21109. source: "./media/characters/fruity/front.svg",
  21110. extra: 1510 / 1386,
  21111. bottom: 0.04
  21112. }
  21113. },
  21114. back: {
  21115. height: math.unit(166.6, "cm"),
  21116. weight: math.unit(66.6, "lb"),
  21117. name: "Back",
  21118. image: {
  21119. source: "./media/characters/fruity/back.svg",
  21120. extra: 1563 / 1435,
  21121. bottom: 0.005
  21122. }
  21123. },
  21124. },
  21125. [
  21126. {
  21127. name: "Normal",
  21128. height: math.unit(166.6, "cm"),
  21129. default: true
  21130. },
  21131. {
  21132. name: "Demonic",
  21133. height: math.unit(166.6, "feet")
  21134. },
  21135. ]
  21136. ))
  21137. characterMakers.push(() => makeCharacter(
  21138. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21139. {
  21140. side: {
  21141. height: math.unit(10, "feet"),
  21142. weight: math.unit(500, "lb"),
  21143. name: "Side",
  21144. image: {
  21145. source: "./media/characters/zost/side.svg",
  21146. extra: 966 / 880,
  21147. bottom: 0.075
  21148. }
  21149. },
  21150. mawFront: {
  21151. height: math.unit(1.08, "meters"),
  21152. name: "Maw (Front)",
  21153. image: {
  21154. source: "./media/characters/zost/maw-front.svg"
  21155. }
  21156. },
  21157. mawSide: {
  21158. height: math.unit(2.66, "feet"),
  21159. name: "Maw (Side)",
  21160. image: {
  21161. source: "./media/characters/zost/maw-side.svg"
  21162. }
  21163. },
  21164. },
  21165. [
  21166. {
  21167. name: "Normal",
  21168. height: math.unit(10, "feet"),
  21169. default: true
  21170. },
  21171. ]
  21172. ))
  21173. characterMakers.push(() => makeCharacter(
  21174. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21175. {
  21176. front: {
  21177. height: math.unit(5 + 4 / 12, "feet"),
  21178. weight: math.unit(120, "lb"),
  21179. name: "Front",
  21180. image: {
  21181. source: "./media/characters/luci/front.svg",
  21182. extra: 1985 / 1884,
  21183. bottom: 0.04
  21184. }
  21185. },
  21186. back: {
  21187. height: math.unit(5 + 4 / 12, "feet"),
  21188. weight: math.unit(120, "lb"),
  21189. name: "Back",
  21190. image: {
  21191. source: "./media/characters/luci/back.svg",
  21192. extra: 1892 / 1791,
  21193. bottom: 0.002
  21194. }
  21195. },
  21196. },
  21197. [
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(5 + 4 / 12, "feet"),
  21201. default: true
  21202. },
  21203. ]
  21204. ))
  21205. characterMakers.push(() => makeCharacter(
  21206. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21207. {
  21208. front: {
  21209. height: math.unit(1500, "feet"),
  21210. weight: math.unit(3.8e6, "tons"),
  21211. name: "Front",
  21212. image: {
  21213. source: "./media/characters/2th/front.svg",
  21214. extra: 3489 / 3350,
  21215. bottom: 0.1
  21216. }
  21217. },
  21218. foot: {
  21219. height: math.unit(461, "feet"),
  21220. name: "Foot",
  21221. image: {
  21222. source: "./media/characters/2th/foot.svg"
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "\"Micro\"",
  21229. height: math.unit(15 + 7 / 12, "feet")
  21230. },
  21231. {
  21232. name: "Normal",
  21233. height: math.unit(1500, "feet"),
  21234. default: true
  21235. },
  21236. {
  21237. name: "Macro",
  21238. height: math.unit(5000, "feet")
  21239. },
  21240. {
  21241. name: "Megamacro",
  21242. height: math.unit(15, "miles")
  21243. },
  21244. {
  21245. name: "Gigamacro",
  21246. height: math.unit(4000, "miles")
  21247. },
  21248. {
  21249. name: "Galactic",
  21250. height: math.unit(50, "AU")
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(5 + 6 / 12, "feet"),
  21259. weight: math.unit(220, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/amethyst/front.svg",
  21263. extra: 2078 / 2040,
  21264. bottom: 0.045
  21265. }
  21266. },
  21267. back: {
  21268. height: math.unit(5 + 6 / 12, "feet"),
  21269. weight: math.unit(220, "lb"),
  21270. name: "Back",
  21271. image: {
  21272. source: "./media/characters/amethyst/back.svg",
  21273. extra: 2021 / 1989,
  21274. bottom: 0.02
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(5 + 6 / 12, "feet"),
  21282. default: true
  21283. },
  21284. ]
  21285. ))
  21286. characterMakers.push(() => makeCharacter(
  21287. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21288. {
  21289. front: {
  21290. height: math.unit(4 + 11 / 12, "feet"),
  21291. weight: math.unit(120, "lb"),
  21292. name: "Front",
  21293. image: {
  21294. source: "./media/characters/yumi-akiyama/front.svg",
  21295. extra: 1327 / 1235,
  21296. bottom: 0.02
  21297. }
  21298. },
  21299. back: {
  21300. height: math.unit(4 + 11 / 12, "feet"),
  21301. weight: math.unit(120, "lb"),
  21302. name: "Back",
  21303. image: {
  21304. source: "./media/characters/yumi-akiyama/back.svg",
  21305. extra: 1287 / 1245,
  21306. bottom: 0.002
  21307. }
  21308. },
  21309. },
  21310. [
  21311. {
  21312. name: "Galactic",
  21313. height: math.unit(50, "galaxies"),
  21314. default: true
  21315. },
  21316. {
  21317. name: "Universal",
  21318. height: math.unit(100, "universes")
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21324. {
  21325. front: {
  21326. height: math.unit(8, "feet"),
  21327. weight: math.unit(500, "lb"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/rifter-yrmori/front.svg",
  21331. extra: 1180 / 1125,
  21332. bottom: 0.02
  21333. }
  21334. },
  21335. back: {
  21336. height: math.unit(8, "feet"),
  21337. weight: math.unit(500, "lb"),
  21338. name: "Back",
  21339. image: {
  21340. source: "./media/characters/rifter-yrmori/back.svg",
  21341. extra: 1190 / 1145,
  21342. bottom: 0.001
  21343. }
  21344. },
  21345. wings: {
  21346. height: math.unit(7.75, "feet"),
  21347. weight: math.unit(500, "lb"),
  21348. name: "Wings",
  21349. image: {
  21350. source: "./media/characters/rifter-yrmori/wings.svg",
  21351. extra: 1357 / 1285
  21352. }
  21353. },
  21354. maw: {
  21355. height: math.unit(0.8, "feet"),
  21356. name: "Maw",
  21357. image: {
  21358. source: "./media/characters/rifter-yrmori/maw.svg"
  21359. }
  21360. },
  21361. mawfront: {
  21362. height: math.unit(1.45, "feet"),
  21363. name: "Maw (Front)",
  21364. image: {
  21365. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Normal",
  21372. height: math.unit(8, "feet"),
  21373. default: true
  21374. },
  21375. {
  21376. name: "Macro",
  21377. height: math.unit(42, "meters")
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21383. {
  21384. were: {
  21385. height: math.unit(25 + 6 / 12, "feet"),
  21386. weight: math.unit(10000, "lb"),
  21387. name: "Were",
  21388. image: {
  21389. source: "./media/characters/tahajin/were.svg",
  21390. extra: 801 / 770,
  21391. bottom: 0.042
  21392. }
  21393. },
  21394. aquatic: {
  21395. height: math.unit(6 + 4 / 12, "feet"),
  21396. weight: math.unit(160, "lb"),
  21397. name: "Aquatic",
  21398. image: {
  21399. source: "./media/characters/tahajin/aquatic.svg",
  21400. extra: 572 / 542,
  21401. bottom: 0.04
  21402. }
  21403. },
  21404. chow: {
  21405. height: math.unit(8 + 11 / 12, "feet"),
  21406. weight: math.unit(450, "lb"),
  21407. name: "Chow",
  21408. image: {
  21409. source: "./media/characters/tahajin/chow.svg",
  21410. extra: 660 / 640,
  21411. bottom: 0.015
  21412. }
  21413. },
  21414. demiNaga: {
  21415. height: math.unit(6 + 8 / 12, "feet"),
  21416. weight: math.unit(300, "lb"),
  21417. name: "Demi Naga",
  21418. image: {
  21419. source: "./media/characters/tahajin/demi-naga.svg",
  21420. extra: 643 / 615,
  21421. bottom: 0.1
  21422. }
  21423. },
  21424. data: {
  21425. height: math.unit(5, "inches"),
  21426. weight: math.unit(0.1, "lb"),
  21427. name: "Data",
  21428. image: {
  21429. source: "./media/characters/tahajin/data.svg"
  21430. }
  21431. },
  21432. fluu: {
  21433. height: math.unit(5 + 7 / 12, "feet"),
  21434. weight: math.unit(140, "lb"),
  21435. name: "Fluu",
  21436. image: {
  21437. source: "./media/characters/tahajin/fluu.svg",
  21438. extra: 628 / 592,
  21439. bottom: 0.02
  21440. }
  21441. },
  21442. starWarrior: {
  21443. height: math.unit(4 + 5 / 12, "feet"),
  21444. weight: math.unit(50, "lb"),
  21445. name: "Star Warrior",
  21446. image: {
  21447. source: "./media/characters/tahajin/star-warrior.svg"
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(25 + 6 / 12, "feet"),
  21455. default: true
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21461. {
  21462. front: {
  21463. height: math.unit(8, "feet"),
  21464. weight: math.unit(350, "lb"),
  21465. name: "Front",
  21466. image: {
  21467. source: "./media/characters/gabira/front.svg",
  21468. extra: 608 / 580,
  21469. bottom: 0.03
  21470. }
  21471. },
  21472. back: {
  21473. height: math.unit(8, "feet"),
  21474. weight: math.unit(350, "lb"),
  21475. name: "Back",
  21476. image: {
  21477. source: "./media/characters/gabira/back.svg",
  21478. extra: 608 / 580,
  21479. bottom: 0.03
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(8, "feet"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(5 + 3 / 12, "feet"),
  21496. weight: math.unit(137, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/sasha-katraine/front.svg",
  21500. bottom: 0.045
  21501. }
  21502. },
  21503. },
  21504. [
  21505. {
  21506. name: "Micro",
  21507. height: math.unit(5, "inches")
  21508. },
  21509. {
  21510. name: "Normal",
  21511. height: math.unit(5 + 3 / 12, "feet"),
  21512. default: true
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21518. {
  21519. side: {
  21520. height: math.unit(4, "inches"),
  21521. weight: math.unit(200, "grams"),
  21522. name: "Side",
  21523. image: {
  21524. source: "./media/characters/der/side.svg",
  21525. extra: 719 / 400,
  21526. bottom: 30.6 / 749.9187
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Micro",
  21533. height: math.unit(4, "inches"),
  21534. default: true
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21540. {
  21541. side: {
  21542. height: math.unit(30, "meters"),
  21543. weight: math.unit(700, "tonnes"),
  21544. name: "Side",
  21545. image: {
  21546. source: "./media/characters/fixerdragon/side.svg",
  21547. extra: (1293.0514 - 116.03) / 1106.86,
  21548. bottom: 116.03 / 1293.0514
  21549. }
  21550. },
  21551. },
  21552. [
  21553. {
  21554. name: "Planck",
  21555. height: math.unit(1.6e-35, "meters")
  21556. },
  21557. {
  21558. name: "Micro",
  21559. height: math.unit(0.4, "meters")
  21560. },
  21561. {
  21562. name: "Normal",
  21563. height: math.unit(30, "meters"),
  21564. default: true
  21565. },
  21566. {
  21567. name: "Megamacro",
  21568. height: math.unit(1.2, "megameters")
  21569. },
  21570. {
  21571. name: "Teramacro",
  21572. height: math.unit(130, "terameters")
  21573. },
  21574. {
  21575. name: "Yottamacro",
  21576. height: math.unit(6200, "yottameters")
  21577. },
  21578. ]
  21579. ));
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(8, "feet"),
  21585. weight: math.unit(250, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/kite/front.svg",
  21589. extra: 2796 / 2659,
  21590. bottom: 0.002
  21591. }
  21592. },
  21593. },
  21594. [
  21595. {
  21596. name: "Normal",
  21597. height: math.unit(8, "feet"),
  21598. default: true
  21599. },
  21600. {
  21601. name: "Macro",
  21602. height: math.unit(360, "feet")
  21603. },
  21604. {
  21605. name: "Megamacro",
  21606. height: math.unit(1500, "feet")
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21612. {
  21613. front: {
  21614. height: math.unit(5 + 11/12, "feet"),
  21615. weight: math.unit(170, "lb"),
  21616. name: "Front",
  21617. image: {
  21618. source: "./media/characters/poojawa-vynar/front.svg",
  21619. extra: 1735/1585,
  21620. bottom: 96/1831
  21621. }
  21622. },
  21623. back: {
  21624. height: math.unit(5 + 11/12, "feet"),
  21625. weight: math.unit(170, "lb"),
  21626. name: "Back",
  21627. image: {
  21628. source: "./media/characters/poojawa-vynar/back.svg",
  21629. extra: 1749/1607,
  21630. bottom: 28/1777
  21631. }
  21632. },
  21633. male: {
  21634. height: math.unit(5 + 11/12, "feet"),
  21635. weight: math.unit(170, "lb"),
  21636. name: "Male",
  21637. image: {
  21638. source: "./media/characters/poojawa-vynar/male.svg",
  21639. extra: 1855/1713,
  21640. bottom: 63/1918
  21641. }
  21642. },
  21643. taur: {
  21644. height: math.unit(5 + 11/12, "feet"),
  21645. weight: math.unit(170, "lb"),
  21646. name: "Taur",
  21647. image: {
  21648. source: "./media/characters/poojawa-vynar/taur.svg",
  21649. extra: 1181/1089,
  21650. bottom: 326/1507
  21651. }
  21652. },
  21653. frontDressed: {
  21654. height: math.unit(5 + 11/12, "feet"),
  21655. weight: math.unit(170, "lb"),
  21656. name: "Front (Dressed)",
  21657. image: {
  21658. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21659. extra: 1735/1585,
  21660. bottom: 96/1831
  21661. }
  21662. },
  21663. backDressed: {
  21664. height: math.unit(5 + 11/12, "feet"),
  21665. weight: math.unit(170, "lb"),
  21666. name: "Back (Dressed)",
  21667. image: {
  21668. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21669. extra: 1749/1607,
  21670. bottom: 28/1777
  21671. }
  21672. },
  21673. maleDressed: {
  21674. height: math.unit(5 + 11/12, "feet"),
  21675. weight: math.unit(170, "lb"),
  21676. name: "Male (Dressed)",
  21677. image: {
  21678. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21679. extra: 1855/1713,
  21680. bottom: 63/1918
  21681. }
  21682. },
  21683. taurDressed: {
  21684. height: math.unit(5 + 11/12, "feet"),
  21685. weight: math.unit(170, "lb"),
  21686. name: "Taur (Dressed)",
  21687. image: {
  21688. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21689. extra: 1181/1089,
  21690. bottom: 326/1507
  21691. }
  21692. },
  21693. maw: {
  21694. height: math.unit(1.46, "feet"),
  21695. name: "Maw",
  21696. image: {
  21697. source: "./media/characters/poojawa-vynar/maw.svg"
  21698. }
  21699. },
  21700. head: {
  21701. height: math.unit(2.34, "feet"),
  21702. name: "Head",
  21703. image: {
  21704. source: "./media/characters/poojawa-vynar/head.svg"
  21705. }
  21706. },
  21707. paw: {
  21708. height: math.unit(1.61, "feet"),
  21709. name: "Paw",
  21710. image: {
  21711. source: "./media/characters/poojawa-vynar/paw.svg"
  21712. }
  21713. },
  21714. pawToering: {
  21715. height: math.unit(1.72, "feet"),
  21716. name: "Paw (Toering)",
  21717. image: {
  21718. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21719. }
  21720. },
  21721. toering: {
  21722. height: math.unit(2.9, "inches"),
  21723. name: "Toering",
  21724. image: {
  21725. source: "./media/characters/poojawa-vynar/toering.svg"
  21726. }
  21727. },
  21728. shaft: {
  21729. height: math.unit(0.625, "feet"),
  21730. name: "Shaft",
  21731. image: {
  21732. source: "./media/characters/poojawa-vynar/shaft.svg"
  21733. }
  21734. },
  21735. spade: {
  21736. height: math.unit(0.42, "feet"),
  21737. name: "Spade",
  21738. image: {
  21739. source: "./media/characters/poojawa-vynar/spade.svg"
  21740. }
  21741. },
  21742. },
  21743. [
  21744. {
  21745. name: "Shortstack",
  21746. height: math.unit(4, "feet")
  21747. },
  21748. {
  21749. name: "Normal",
  21750. height: math.unit(5 + 11 / 12, "feet"),
  21751. default: true
  21752. },
  21753. {
  21754. name: "Tauric",
  21755. height: math.unit(4, "meters")
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(293, "meters"),
  21764. weight: math.unit(70400, "tons"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/violette/front.svg",
  21768. extra: 1227 / 1180,
  21769. bottom: 0.005
  21770. }
  21771. },
  21772. back: {
  21773. height: math.unit(293, "meters"),
  21774. weight: math.unit(70400, "tons"),
  21775. name: "Back",
  21776. image: {
  21777. source: "./media/characters/violette/back.svg",
  21778. extra: 1227 / 1180,
  21779. bottom: 0.005
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Macro",
  21786. height: math.unit(293, "meters"),
  21787. default: true
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21793. {
  21794. front: {
  21795. height: math.unit(1050, "feet"),
  21796. weight: math.unit(200000, "tons"),
  21797. name: "Front",
  21798. image: {
  21799. source: "./media/characters/alessandra/front.svg",
  21800. extra: 960 / 912,
  21801. bottom: 0.06
  21802. }
  21803. },
  21804. },
  21805. [
  21806. {
  21807. name: "Macro",
  21808. height: math.unit(1050, "feet")
  21809. },
  21810. {
  21811. name: "Macro+",
  21812. height: math.unit(900, "meters"),
  21813. default: true
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(5, "feet"),
  21822. weight: math.unit(187, "lb"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/person/front.svg",
  21826. extra: 3087 / 2945,
  21827. bottom: 91 / 3181
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Micro",
  21834. height: math.unit(3, "inches")
  21835. },
  21836. {
  21837. name: "Normal",
  21838. height: math.unit(5, "feet"),
  21839. default: true
  21840. },
  21841. {
  21842. name: "Macro",
  21843. height: math.unit(90, "feet")
  21844. },
  21845. {
  21846. name: "Max Size",
  21847. height: math.unit(280, "feet")
  21848. },
  21849. ]
  21850. ))
  21851. characterMakers.push(() => makeCharacter(
  21852. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21853. {
  21854. front: {
  21855. height: math.unit(4.5, "meters"),
  21856. weight: math.unit(3200, "lb"),
  21857. name: "Front",
  21858. image: {
  21859. source: "./media/characters/ty/front.svg",
  21860. extra: 1038 / 960,
  21861. bottom: 31.156 / 1068
  21862. }
  21863. },
  21864. back: {
  21865. height: math.unit(4.5, "meters"),
  21866. weight: math.unit(3200, "lb"),
  21867. name: "Back",
  21868. image: {
  21869. source: "./media/characters/ty/back.svg",
  21870. extra: 1044 / 966,
  21871. bottom: 7.48 / 1049
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Normal",
  21878. height: math.unit(4.5, "meters"),
  21879. default: true
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21885. {
  21886. front: {
  21887. height: math.unit(5 + 4 / 12, "feet"),
  21888. weight: math.unit(115, "lb"),
  21889. name: "Front",
  21890. image: {
  21891. source: "./media/characters/rocky/front.svg",
  21892. extra: 1012 / 975,
  21893. bottom: 54 / 1066
  21894. }
  21895. },
  21896. },
  21897. [
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(5 + 4 / 12, "feet"),
  21901. default: true
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21907. {
  21908. upright: {
  21909. height: math.unit(6, "meters"),
  21910. weight: math.unit(4000, "kg"),
  21911. name: "Upright",
  21912. image: {
  21913. source: "./media/characters/ruin/upright.svg",
  21914. extra: 668 / 661,
  21915. bottom: 42 / 799.8396
  21916. }
  21917. },
  21918. },
  21919. [
  21920. {
  21921. name: "Normal",
  21922. height: math.unit(6, "meters"),
  21923. default: true
  21924. },
  21925. ]
  21926. ))
  21927. characterMakers.push(() => makeCharacter(
  21928. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21929. {
  21930. front: {
  21931. height: math.unit(5, "feet"),
  21932. weight: math.unit(106, "lb"),
  21933. name: "Front",
  21934. image: {
  21935. source: "./media/characters/robin/front.svg",
  21936. extra: 862 / 799,
  21937. bottom: 42.4 / 914.8856
  21938. }
  21939. },
  21940. },
  21941. [
  21942. {
  21943. name: "Normal",
  21944. height: math.unit(5, "feet"),
  21945. default: true
  21946. },
  21947. ]
  21948. ))
  21949. characterMakers.push(() => makeCharacter(
  21950. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21951. {
  21952. side: {
  21953. height: math.unit(3, "feet"),
  21954. weight: math.unit(225, "lb"),
  21955. name: "Side",
  21956. image: {
  21957. source: "./media/characters/saian/side.svg",
  21958. extra: 566 / 356,
  21959. bottom: 79.7 / 643
  21960. }
  21961. },
  21962. maw: {
  21963. height: math.unit(2.85, "feet"),
  21964. name: "Maw",
  21965. image: {
  21966. source: "./media/characters/saian/maw.svg"
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(3, "feet"),
  21974. default: true
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21980. {
  21981. side: {
  21982. height: math.unit(8, "feet"),
  21983. weight: math.unit(300, "lb"),
  21984. name: "Side",
  21985. image: {
  21986. source: "./media/characters/equus-silvermane/side.svg",
  21987. extra: 2176 / 2050,
  21988. bottom: 65.7 / 2245
  21989. }
  21990. },
  21991. front: {
  21992. height: math.unit(8, "feet"),
  21993. weight: math.unit(300, "lb"),
  21994. name: "Front",
  21995. image: {
  21996. source: "./media/characters/equus-silvermane/front.svg",
  21997. extra: 4633 / 4400,
  21998. bottom: 71.3 / 4706.915
  21999. }
  22000. },
  22001. sideStepping: {
  22002. height: math.unit(8, "feet"),
  22003. weight: math.unit(300, "lb"),
  22004. name: "Side (Stepping)",
  22005. image: {
  22006. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22007. extra: 1968 / 1860,
  22008. bottom: 16.4 / 1989
  22009. }
  22010. },
  22011. },
  22012. [
  22013. {
  22014. name: "Normal",
  22015. height: math.unit(8, "feet")
  22016. },
  22017. {
  22018. name: "Minimacro",
  22019. height: math.unit(75, "feet"),
  22020. default: true
  22021. },
  22022. {
  22023. name: "Macro",
  22024. height: math.unit(150, "feet")
  22025. },
  22026. {
  22027. name: "Macro+",
  22028. height: math.unit(1000, "feet")
  22029. },
  22030. {
  22031. name: "Megamacro",
  22032. height: math.unit(1, "mile")
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22038. {
  22039. side: {
  22040. height: math.unit(20, "feet"),
  22041. weight: math.unit(30000, "kg"),
  22042. name: "Side",
  22043. image: {
  22044. source: "./media/characters/windar/side.svg",
  22045. extra: 1491 / 1248,
  22046. bottom: 82.56 / 1568
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(20, "feet"),
  22054. default: true
  22055. },
  22056. ]
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22060. {
  22061. side: {
  22062. height: math.unit(15.66, "feet"),
  22063. weight: math.unit(150, "lb"),
  22064. name: "Side",
  22065. image: {
  22066. source: "./media/characters/melody/side.svg",
  22067. extra: 1097 / 944,
  22068. bottom: 11.8 / 1109
  22069. }
  22070. },
  22071. sideOutfit: {
  22072. height: math.unit(15.66, "feet"),
  22073. weight: math.unit(150, "lb"),
  22074. name: "Side (Outfit)",
  22075. image: {
  22076. source: "./media/characters/melody/side-outfit.svg",
  22077. extra: 1097 / 944,
  22078. bottom: 11.8 / 1109
  22079. }
  22080. },
  22081. },
  22082. [
  22083. {
  22084. name: "Normal",
  22085. height: math.unit(15.66, "feet"),
  22086. default: true
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22092. {
  22093. front: {
  22094. height: math.unit(8, "feet"),
  22095. weight: math.unit(325, "lb"),
  22096. name: "Front",
  22097. image: {
  22098. source: "./media/characters/windera/front.svg",
  22099. extra: 3180 / 2845,
  22100. bottom: 178 / 3365
  22101. }
  22102. },
  22103. },
  22104. [
  22105. {
  22106. name: "Normal",
  22107. height: math.unit(8, "feet"),
  22108. default: true
  22109. },
  22110. ]
  22111. ))
  22112. characterMakers.push(() => makeCharacter(
  22113. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22114. {
  22115. front: {
  22116. height: math.unit(28.75, "feet"),
  22117. weight: math.unit(2000, "kg"),
  22118. name: "Front",
  22119. image: {
  22120. source: "./media/characters/sonear/front.svg",
  22121. extra: 1041.1 / 964.9,
  22122. bottom: 53.7 / 1096.6
  22123. }
  22124. },
  22125. },
  22126. [
  22127. {
  22128. name: "Normal",
  22129. height: math.unit(28.75, "feet"),
  22130. default: true
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22136. {
  22137. side: {
  22138. height: math.unit(25.5, "feet"),
  22139. weight: math.unit(23000, "kg"),
  22140. name: "Side",
  22141. image: {
  22142. source: "./media/characters/kanara/side.svg"
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(25.5, "feet"),
  22150. default: true
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22156. {
  22157. side: {
  22158. height: math.unit(10, "feet"),
  22159. weight: math.unit(1000, "kg"),
  22160. name: "Side",
  22161. image: {
  22162. source: "./media/characters/ereus/side.svg",
  22163. extra: 1157 / 959,
  22164. bottom: 153 / 1312.5
  22165. }
  22166. },
  22167. },
  22168. [
  22169. {
  22170. name: "Normal",
  22171. height: math.unit(10, "feet"),
  22172. default: true
  22173. },
  22174. ]
  22175. ))
  22176. characterMakers.push(() => makeCharacter(
  22177. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22178. {
  22179. side: {
  22180. height: math.unit(4.5, "feet"),
  22181. weight: math.unit(500, "lb"),
  22182. name: "Side",
  22183. image: {
  22184. source: "./media/characters/e-ter/side.svg",
  22185. extra: 1550 / 1248,
  22186. bottom: 146 / 1694
  22187. }
  22188. },
  22189. },
  22190. [
  22191. {
  22192. name: "Normal",
  22193. height: math.unit(4.5, "feet"),
  22194. default: true
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22200. {
  22201. side: {
  22202. height: math.unit(9.7, "feet"),
  22203. weight: math.unit(4000, "kg"),
  22204. name: "Side",
  22205. image: {
  22206. source: "./media/characters/yamie/side.svg"
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Normal",
  22213. height: math.unit(9.7, "feet"),
  22214. default: true
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22220. {
  22221. front: {
  22222. height: math.unit(50, "feet"),
  22223. weight: math.unit(50000, "kg"),
  22224. name: "Front",
  22225. image: {
  22226. source: "./media/characters/anders/front.svg",
  22227. extra: 570 / 539,
  22228. bottom: 14.7 / 586.7
  22229. }
  22230. },
  22231. },
  22232. [
  22233. {
  22234. name: "Large",
  22235. height: math.unit(50, "feet")
  22236. },
  22237. {
  22238. name: "Macro",
  22239. height: math.unit(2000, "feet"),
  22240. default: true
  22241. },
  22242. {
  22243. name: "Megamacro",
  22244. height: math.unit(12, "miles")
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22250. {
  22251. front: {
  22252. height: math.unit(7 + 2 / 12, "feet"),
  22253. weight: math.unit(300, "lb"),
  22254. name: "Front",
  22255. image: {
  22256. source: "./media/characters/reban/front.svg",
  22257. extra: 516 / 487,
  22258. bottom: 42.82 / 558.356
  22259. }
  22260. },
  22261. dick: {
  22262. height: math.unit(7 / 5, "feet"),
  22263. name: "Dick",
  22264. image: {
  22265. source: "./media/characters/reban/dick.svg"
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Natural Height",
  22272. height: math.unit(7 + 2 / 12, "feet")
  22273. },
  22274. {
  22275. name: "Macro",
  22276. height: math.unit(500, "feet"),
  22277. default: true
  22278. },
  22279. {
  22280. name: "Canon Height",
  22281. height: math.unit(50, "AU")
  22282. },
  22283. ]
  22284. ))
  22285. characterMakers.push(() => makeCharacter(
  22286. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22287. {
  22288. front: {
  22289. height: math.unit(6, "feet"),
  22290. weight: math.unit(150, "lb"),
  22291. name: "Front",
  22292. image: {
  22293. source: "./media/characters/terrance-keayes/front.svg",
  22294. extra: 1.005,
  22295. bottom: 151 / 1615
  22296. }
  22297. },
  22298. side: {
  22299. height: math.unit(6, "feet"),
  22300. weight: math.unit(150, "lb"),
  22301. name: "Side",
  22302. image: {
  22303. source: "./media/characters/terrance-keayes/side.svg",
  22304. extra: 1.005,
  22305. bottom: 129.4 / 1544
  22306. }
  22307. },
  22308. back: {
  22309. height: math.unit(6, "feet"),
  22310. weight: math.unit(150, "lb"),
  22311. name: "Back",
  22312. image: {
  22313. source: "./media/characters/terrance-keayes/back.svg",
  22314. extra: 1.005,
  22315. bottom: 58.4 / 1557.3
  22316. }
  22317. },
  22318. dick: {
  22319. height: math.unit(6 * 0.208, "feet"),
  22320. name: "Dick",
  22321. image: {
  22322. source: "./media/characters/terrance-keayes/dick.svg"
  22323. }
  22324. },
  22325. },
  22326. [
  22327. {
  22328. name: "Canon Height",
  22329. height: math.unit(35, "miles"),
  22330. default: true
  22331. },
  22332. ]
  22333. ))
  22334. characterMakers.push(() => makeCharacter(
  22335. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22336. {
  22337. front: {
  22338. height: math.unit(6, "feet"),
  22339. weight: math.unit(150, "lb"),
  22340. name: "Front",
  22341. image: {
  22342. source: "./media/characters/ofelia/front.svg",
  22343. extra: 546 / 541,
  22344. bottom: 39 / 583
  22345. }
  22346. },
  22347. back: {
  22348. height: math.unit(6, "feet"),
  22349. weight: math.unit(150, "lb"),
  22350. name: "Back",
  22351. image: {
  22352. source: "./media/characters/ofelia/back.svg",
  22353. extra: 564 / 559.5,
  22354. bottom: 8.69 / 573.02
  22355. }
  22356. },
  22357. maw: {
  22358. height: math.unit(1, "feet"),
  22359. name: "Maw",
  22360. image: {
  22361. source: "./media/characters/ofelia/maw.svg"
  22362. }
  22363. },
  22364. foot: {
  22365. height: math.unit(1.949, "feet"),
  22366. name: "Foot",
  22367. image: {
  22368. source: "./media/characters/ofelia/foot.svg"
  22369. }
  22370. },
  22371. },
  22372. [
  22373. {
  22374. name: "Canon Height",
  22375. height: math.unit(2000, "miles"),
  22376. default: true
  22377. },
  22378. ]
  22379. ))
  22380. characterMakers.push(() => makeCharacter(
  22381. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22382. {
  22383. front: {
  22384. height: math.unit(6, "feet"),
  22385. weight: math.unit(150, "lb"),
  22386. name: "Front",
  22387. image: {
  22388. source: "./media/characters/samuel/front.svg",
  22389. extra: 265 / 258,
  22390. bottom: 2 / 266.1566
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Macro",
  22397. height: math.unit(100, "feet"),
  22398. default: true
  22399. },
  22400. {
  22401. name: "Full Size",
  22402. height: math.unit(1000, "miles")
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22408. {
  22409. front: {
  22410. height: math.unit(6, "feet"),
  22411. weight: math.unit(300, "lb"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/beishir-kiel/front.svg",
  22415. extra: 569 / 547,
  22416. bottom: 41.9 / 609
  22417. }
  22418. },
  22419. maw: {
  22420. height: math.unit(6 * 0.202, "feet"),
  22421. name: "Maw",
  22422. image: {
  22423. source: "./media/characters/beishir-kiel/maw.svg"
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Macro",
  22430. height: math.unit(300, "feet"),
  22431. default: true
  22432. },
  22433. ]
  22434. ))
  22435. characterMakers.push(() => makeCharacter(
  22436. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22437. {
  22438. front: {
  22439. height: math.unit(5 + 7/12, "feet"),
  22440. weight: math.unit(120, "lb"),
  22441. name: "Front",
  22442. image: {
  22443. source: "./media/characters/logan-grey/front.svg",
  22444. extra: 1836/1738,
  22445. bottom: 108/1944
  22446. }
  22447. },
  22448. back: {
  22449. height: math.unit(5 + 7/12, "feet"),
  22450. weight: math.unit(120, "lb"),
  22451. name: "Back",
  22452. image: {
  22453. source: "./media/characters/logan-grey/back.svg",
  22454. extra: 1880/1794,
  22455. bottom: 24/1904
  22456. }
  22457. },
  22458. frontSfw: {
  22459. height: math.unit(5 + 7/12, "feet"),
  22460. weight: math.unit(120, "lb"),
  22461. name: "Front (SFW)",
  22462. image: {
  22463. source: "./media/characters/logan-grey/front-sfw.svg",
  22464. extra: 1836/1738,
  22465. bottom: 108/1944
  22466. }
  22467. },
  22468. backSfw: {
  22469. height: math.unit(5 + 7/12, "feet"),
  22470. weight: math.unit(120, "lb"),
  22471. name: "Back (SFW)",
  22472. image: {
  22473. source: "./media/characters/logan-grey/back-sfw.svg",
  22474. extra: 1880/1794,
  22475. bottom: 24/1904
  22476. }
  22477. },
  22478. hands: {
  22479. height: math.unit(0.84, "feet"),
  22480. name: "Hands",
  22481. image: {
  22482. source: "./media/characters/logan-grey/hands.svg"
  22483. }
  22484. },
  22485. paws: {
  22486. height: math.unit(0.72, "feet"),
  22487. name: "Paws",
  22488. image: {
  22489. source: "./media/characters/logan-grey/paws.svg"
  22490. }
  22491. },
  22492. cock: {
  22493. height: math.unit(1.45, "feet"),
  22494. name: "Cock",
  22495. image: {
  22496. source: "./media/characters/logan-grey/cock.svg"
  22497. }
  22498. },
  22499. cockAlt: {
  22500. height: math.unit(1.437, "feet"),
  22501. name: "Cock (alt)",
  22502. image: {
  22503. source: "./media/characters/logan-grey/cock-alt.svg"
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(5 + 8 / 12, "feet")
  22511. },
  22512. {
  22513. name: "The 500 Foot Femboy",
  22514. height: math.unit(500, "feet"),
  22515. default: true
  22516. },
  22517. {
  22518. name: "Megmacro",
  22519. height: math.unit(20, "miles")
  22520. },
  22521. ]
  22522. ))
  22523. characterMakers.push(() => makeCharacter(
  22524. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22525. {
  22526. front: {
  22527. height: math.unit(8 + 2 / 12, "feet"),
  22528. weight: math.unit(275, "lb"),
  22529. name: "Front",
  22530. image: {
  22531. source: "./media/characters/draganta/front.svg",
  22532. extra: 1177 / 1135,
  22533. bottom: 33.46 / 1212.1
  22534. }
  22535. },
  22536. },
  22537. [
  22538. {
  22539. name: "Normal",
  22540. height: math.unit(8 + 6 / 12, "feet"),
  22541. default: true
  22542. },
  22543. {
  22544. name: "Macro",
  22545. height: math.unit(150, "feet")
  22546. },
  22547. {
  22548. name: "Megamacro",
  22549. height: math.unit(1000, "miles")
  22550. },
  22551. ]
  22552. ))
  22553. characterMakers.push(() => makeCharacter(
  22554. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22555. {
  22556. front: {
  22557. height: math.unit(1.72, "m"),
  22558. weight: math.unit(80, "lb"),
  22559. name: "Front",
  22560. image: {
  22561. source: "./media/characters/voski/front.svg",
  22562. extra: 2076.22 / 2022.4,
  22563. bottom: 102.7 / 2177.3866
  22564. }
  22565. },
  22566. frontNsfw: {
  22567. height: math.unit(1.72, "m"),
  22568. weight: math.unit(80, "lb"),
  22569. name: "Front (NSFW)",
  22570. image: {
  22571. source: "./media/characters/voski/front-nsfw.svg",
  22572. extra: 2076.22 / 2022.4,
  22573. bottom: 102.7 / 2177.3866
  22574. }
  22575. },
  22576. back: {
  22577. height: math.unit(1.72, "m"),
  22578. weight: math.unit(80, "lb"),
  22579. name: "Back",
  22580. image: {
  22581. source: "./media/characters/voski/back.svg",
  22582. extra: 2104 / 2051,
  22583. bottom: 10.45 / 2113.63
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(1.72, "m")
  22591. },
  22592. {
  22593. name: "Macro",
  22594. height: math.unit(55, "m"),
  22595. default: true
  22596. },
  22597. {
  22598. name: "Macro+",
  22599. height: math.unit(300, "m")
  22600. },
  22601. {
  22602. name: "Macro++",
  22603. height: math.unit(700, "m")
  22604. },
  22605. {
  22606. name: "Macro+++",
  22607. height: math.unit(4500, "m")
  22608. },
  22609. {
  22610. name: "Macro++++",
  22611. height: math.unit(45, "km")
  22612. },
  22613. {
  22614. name: "Macro+++++",
  22615. height: math.unit(1220, "km")
  22616. },
  22617. ]
  22618. ))
  22619. characterMakers.push(() => makeCharacter(
  22620. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22621. {
  22622. front: {
  22623. height: math.unit(2.3, "m"),
  22624. weight: math.unit(304, "kg"),
  22625. name: "Front",
  22626. image: {
  22627. source: "./media/characters/icowom-lee/front.svg",
  22628. extra: 985 / 955,
  22629. bottom: 25.4 / 1012
  22630. }
  22631. },
  22632. fronttentacles: {
  22633. height: math.unit(2.3, "m"),
  22634. weight: math.unit(304, "kg"),
  22635. name: "Front-tentacles",
  22636. image: {
  22637. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22638. extra: 985 / 955,
  22639. bottom: 25.4 / 1012
  22640. }
  22641. },
  22642. back: {
  22643. height: math.unit(2.3, "m"),
  22644. weight: math.unit(304, "kg"),
  22645. name: "Back",
  22646. image: {
  22647. source: "./media/characters/icowom-lee/back.svg",
  22648. extra: 975 / 954,
  22649. bottom: 9.5 / 985
  22650. }
  22651. },
  22652. backtentacles: {
  22653. height: math.unit(2.3, "m"),
  22654. weight: math.unit(304, "kg"),
  22655. name: "Back-tentacles",
  22656. image: {
  22657. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22658. extra: 975 / 954,
  22659. bottom: 9.5 / 985
  22660. }
  22661. },
  22662. frontDressed: {
  22663. height: math.unit(2.3, "m"),
  22664. weight: math.unit(304, "kg"),
  22665. name: "Front (Dressed)",
  22666. image: {
  22667. source: "./media/characters/icowom-lee/front-dressed.svg",
  22668. extra: 3076 / 2933,
  22669. bottom: 51.4 / 3125.1889
  22670. }
  22671. },
  22672. rump: {
  22673. height: math.unit(0.776, "meters"),
  22674. name: "Rump",
  22675. image: {
  22676. source: "./media/characters/icowom-lee/rump.svg"
  22677. }
  22678. },
  22679. genitals: {
  22680. height: math.unit(0.78, "meters"),
  22681. name: "Genitals",
  22682. image: {
  22683. source: "./media/characters/icowom-lee/genitals.svg"
  22684. }
  22685. },
  22686. },
  22687. [
  22688. {
  22689. name: "Normal",
  22690. height: math.unit(2.3, "meters"),
  22691. default: true
  22692. },
  22693. {
  22694. name: "Macro",
  22695. height: math.unit(94, "meters"),
  22696. default: true
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22702. {
  22703. front: {
  22704. height: math.unit(22, "meters"),
  22705. weight: math.unit(21000, "kg"),
  22706. name: "Front",
  22707. image: {
  22708. source: "./media/characters/shock-diamond/front.svg",
  22709. extra: 2204 / 2053,
  22710. bottom: 65 / 2239.47
  22711. }
  22712. },
  22713. frontNude: {
  22714. height: math.unit(22, "meters"),
  22715. weight: math.unit(21000, "kg"),
  22716. name: "Front (Nude)",
  22717. image: {
  22718. source: "./media/characters/shock-diamond/front-nude.svg",
  22719. extra: 2514 / 2285,
  22720. bottom: 13 / 2527.56
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Normal",
  22727. height: math.unit(3, "meters")
  22728. },
  22729. {
  22730. name: "Macro",
  22731. height: math.unit(22, "meters"),
  22732. default: true
  22733. },
  22734. ]
  22735. ))
  22736. characterMakers.push(() => makeCharacter(
  22737. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22738. {
  22739. front: {
  22740. height: math.unit(5 + 4 / 12, "feet"),
  22741. weight: math.unit(120, "lb"),
  22742. name: "Front",
  22743. image: {
  22744. source: "./media/characters/rory/front.svg",
  22745. extra: 1318/1241,
  22746. bottom: 42/1360
  22747. }
  22748. },
  22749. back: {
  22750. height: math.unit(5 + 4 / 12, "feet"),
  22751. weight: math.unit(120, "lb"),
  22752. name: "Back",
  22753. image: {
  22754. source: "./media/characters/rory/back.svg",
  22755. extra: 1318/1241,
  22756. bottom: 42/1360
  22757. }
  22758. },
  22759. butt: {
  22760. height: math.unit(1.74, "feet"),
  22761. name: "Butt",
  22762. image: {
  22763. source: "./media/characters/rory/butt.svg"
  22764. }
  22765. },
  22766. dick: {
  22767. height: math.unit(1.02, "feet"),
  22768. name: "Dick",
  22769. image: {
  22770. source: "./media/characters/rory/dick.svg"
  22771. }
  22772. },
  22773. paws: {
  22774. height: math.unit(1, "feet"),
  22775. name: "Paws",
  22776. image: {
  22777. source: "./media/characters/rory/paws.svg"
  22778. }
  22779. },
  22780. frontAlt: {
  22781. height: math.unit(5 + 4 / 12, "feet"),
  22782. weight: math.unit(120, "lb"),
  22783. name: "Front (Alt)",
  22784. image: {
  22785. source: "./media/characters/rory/front-alt.svg",
  22786. extra: 589 / 556,
  22787. bottom: 45.7 / 635.76
  22788. }
  22789. },
  22790. frontAltNude: {
  22791. height: math.unit(5 + 4 / 12, "feet"),
  22792. weight: math.unit(120, "lb"),
  22793. name: "Front (Alt, Nude)",
  22794. image: {
  22795. source: "./media/characters/rory/front-alt-nude.svg",
  22796. extra: 589 / 556,
  22797. bottom: 45.7 / 635.76
  22798. }
  22799. },
  22800. side: {
  22801. height: math.unit(5 + 4 / 12, "feet"),
  22802. weight: math.unit(120, "lb"),
  22803. name: "Side",
  22804. image: {
  22805. source: "./media/characters/rory/side.svg",
  22806. extra: 597 / 564,
  22807. bottom: 55 / 653
  22808. }
  22809. },
  22810. backAlt: {
  22811. height: math.unit(5 + 4 / 12, "feet"),
  22812. weight: math.unit(120, "lb"),
  22813. name: "Back (Alt)",
  22814. image: {
  22815. source: "./media/characters/rory/back-alt.svg",
  22816. extra: 620 / 585,
  22817. bottom: 8.86 / 630.43
  22818. }
  22819. },
  22820. dickAlt: {
  22821. height: math.unit(0.86, "feet"),
  22822. name: "Dick (Alt)",
  22823. image: {
  22824. source: "./media/characters/rory/dick-alt.svg"
  22825. }
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Normal",
  22831. height: math.unit(5 + 4 / 12, "feet"),
  22832. default: true
  22833. },
  22834. {
  22835. name: "Macro",
  22836. height: math.unit(100, "feet")
  22837. },
  22838. {
  22839. name: "Macro+",
  22840. height: math.unit(140, "feet")
  22841. },
  22842. {
  22843. name: "Macro++",
  22844. height: math.unit(300, "feet")
  22845. },
  22846. ]
  22847. ))
  22848. characterMakers.push(() => makeCharacter(
  22849. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22850. {
  22851. front: {
  22852. height: math.unit(5 + 9 / 12, "feet"),
  22853. weight: math.unit(190, "lb"),
  22854. name: "Front",
  22855. image: {
  22856. source: "./media/characters/sprisk/front.svg",
  22857. extra: 1225 / 1180,
  22858. bottom: 42.7 / 1266.4
  22859. }
  22860. },
  22861. frontNsfw: {
  22862. height: math.unit(5 + 9 / 12, "feet"),
  22863. weight: math.unit(190, "lb"),
  22864. name: "Front (NSFW)",
  22865. image: {
  22866. source: "./media/characters/sprisk/front-nsfw.svg",
  22867. extra: 1225 / 1180,
  22868. bottom: 42.7 / 1266.4
  22869. }
  22870. },
  22871. back: {
  22872. height: math.unit(5 + 9 / 12, "feet"),
  22873. weight: math.unit(190, "lb"),
  22874. name: "Back",
  22875. image: {
  22876. source: "./media/characters/sprisk/back.svg",
  22877. extra: 1247 / 1200,
  22878. bottom: 5.6 / 1253.04
  22879. }
  22880. },
  22881. },
  22882. [
  22883. {
  22884. name: "Tiny",
  22885. height: math.unit(2, "inches")
  22886. },
  22887. {
  22888. name: "Normal",
  22889. height: math.unit(5 + 9 / 12, "feet"),
  22890. default: true
  22891. },
  22892. {
  22893. name: "Mini Macro",
  22894. height: math.unit(18, "feet")
  22895. },
  22896. {
  22897. name: "Macro",
  22898. height: math.unit(100, "feet")
  22899. },
  22900. {
  22901. name: "MACRO",
  22902. height: math.unit(50, "miles")
  22903. },
  22904. {
  22905. name: "M A C R O",
  22906. height: math.unit(300, "miles")
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22912. {
  22913. side: {
  22914. height: math.unit(15.6, "meters"),
  22915. weight: math.unit(700000, "kg"),
  22916. name: "Side",
  22917. image: {
  22918. source: "./media/characters/bunsen/side.svg",
  22919. extra: 1644 / 358
  22920. }
  22921. },
  22922. foot: {
  22923. height: math.unit(1.611 * 1644 / 358, "meter"),
  22924. name: "Foot",
  22925. image: {
  22926. source: "./media/characters/bunsen/foot.svg"
  22927. }
  22928. },
  22929. },
  22930. [
  22931. {
  22932. name: "Small",
  22933. height: math.unit(10, "feet")
  22934. },
  22935. {
  22936. name: "Normal",
  22937. height: math.unit(15.6, "meters"),
  22938. default: true
  22939. },
  22940. ]
  22941. ))
  22942. characterMakers.push(() => makeCharacter(
  22943. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22944. {
  22945. front: {
  22946. height: math.unit(4 + 11 / 12, "feet"),
  22947. weight: math.unit(140, "lb"),
  22948. name: "Front",
  22949. image: {
  22950. source: "./media/characters/sesh/front.svg",
  22951. extra: 3420 / 3231,
  22952. bottom: 72 / 3949.5
  22953. }
  22954. },
  22955. },
  22956. [
  22957. {
  22958. name: "Normal",
  22959. height: math.unit(4 + 11 / 12, "feet")
  22960. },
  22961. {
  22962. name: "Grown",
  22963. height: math.unit(15, "feet"),
  22964. default: true
  22965. },
  22966. {
  22967. name: "Macro",
  22968. height: math.unit(1500, "feet")
  22969. },
  22970. {
  22971. name: "Megamacro",
  22972. height: math.unit(30, "miles")
  22973. },
  22974. {
  22975. name: "Continental",
  22976. height: math.unit(3000, "miles")
  22977. },
  22978. {
  22979. name: "Gravity Mass",
  22980. height: math.unit(300000, "miles")
  22981. },
  22982. {
  22983. name: "Planet Buster",
  22984. height: math.unit(30000000, "miles")
  22985. },
  22986. {
  22987. name: "Big",
  22988. height: math.unit(3000000000, "miles")
  22989. },
  22990. ]
  22991. ))
  22992. characterMakers.push(() => makeCharacter(
  22993. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22994. {
  22995. front: {
  22996. height: math.unit(9, "feet"),
  22997. weight: math.unit(350, "lb"),
  22998. name: "Front",
  22999. image: {
  23000. source: "./media/characters/pepper/front.svg",
  23001. extra: 1448 / 1312,
  23002. bottom: 9.4 / 1457.88
  23003. }
  23004. },
  23005. back: {
  23006. height: math.unit(9, "feet"),
  23007. weight: math.unit(350, "lb"),
  23008. name: "Back",
  23009. image: {
  23010. source: "./media/characters/pepper/back.svg",
  23011. extra: 1423 / 1300,
  23012. bottom: 4.6 / 1429
  23013. }
  23014. },
  23015. maw: {
  23016. height: math.unit(0.932, "feet"),
  23017. name: "Maw",
  23018. image: {
  23019. source: "./media/characters/pepper/maw.svg"
  23020. }
  23021. },
  23022. },
  23023. [
  23024. {
  23025. name: "Normal",
  23026. height: math.unit(9, "feet"),
  23027. default: true
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23033. {
  23034. front: {
  23035. height: math.unit(6, "feet"),
  23036. weight: math.unit(150, "lb"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/maelstrom/front.svg",
  23040. extra: 2100 / 1883,
  23041. bottom: 94 / 2196.7
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Less Kaiju",
  23048. height: math.unit(200, "feet")
  23049. },
  23050. {
  23051. name: "Kaiju",
  23052. height: math.unit(400, "feet"),
  23053. default: true
  23054. },
  23055. {
  23056. name: "Kaiju-er",
  23057. height: math.unit(600, "feet")
  23058. },
  23059. ]
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23063. {
  23064. front: {
  23065. height: math.unit(6 + 5 / 12, "feet"),
  23066. weight: math.unit(180, "lb"),
  23067. name: "Front",
  23068. image: {
  23069. source: "./media/characters/lexir/front.svg",
  23070. extra: 180 / 172,
  23071. bottom: 12 / 192
  23072. }
  23073. },
  23074. back: {
  23075. height: math.unit(6 + 5 / 12, "feet"),
  23076. weight: math.unit(180, "lb"),
  23077. name: "Back",
  23078. image: {
  23079. source: "./media/characters/lexir/back.svg",
  23080. extra: 183.84 / 175.5,
  23081. bottom: 3.1 / 187
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Very Smal",
  23088. height: math.unit(1, "nm")
  23089. },
  23090. {
  23091. name: "Normal",
  23092. height: math.unit(6 + 5 / 12, "feet"),
  23093. default: true
  23094. },
  23095. {
  23096. name: "Macro",
  23097. height: math.unit(1, "mile")
  23098. },
  23099. {
  23100. name: "Megamacro",
  23101. height: math.unit(50, "miles")
  23102. },
  23103. ]
  23104. ))
  23105. characterMakers.push(() => makeCharacter(
  23106. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23107. {
  23108. front: {
  23109. height: math.unit(1.5, "meters"),
  23110. weight: math.unit(100, "lb"),
  23111. name: "Front",
  23112. image: {
  23113. source: "./media/characters/maksio/front.svg",
  23114. extra: 1549 / 1531,
  23115. bottom: 123.7 / 1674.5429
  23116. }
  23117. },
  23118. back: {
  23119. height: math.unit(1.5, "meters"),
  23120. weight: math.unit(100, "lb"),
  23121. name: "Back",
  23122. image: {
  23123. source: "./media/characters/maksio/back.svg",
  23124. extra: 1541 / 1509,
  23125. bottom: 97 / 1639
  23126. }
  23127. },
  23128. hand: {
  23129. height: math.unit(0.621, "feet"),
  23130. name: "Hand",
  23131. image: {
  23132. source: "./media/characters/maksio/hand.svg"
  23133. }
  23134. },
  23135. foot: {
  23136. height: math.unit(1.611, "feet"),
  23137. name: "Foot",
  23138. image: {
  23139. source: "./media/characters/maksio/foot.svg"
  23140. }
  23141. },
  23142. },
  23143. [
  23144. {
  23145. name: "Shrunken",
  23146. height: math.unit(10, "cm")
  23147. },
  23148. {
  23149. name: "Normal",
  23150. height: math.unit(150, "cm"),
  23151. default: true
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23157. {
  23158. front: {
  23159. height: math.unit(100, "feet"),
  23160. name: "Front",
  23161. image: {
  23162. source: "./media/characters/erza-bear/front.svg",
  23163. extra: 2449 / 2390,
  23164. bottom: 46 / 2494
  23165. }
  23166. },
  23167. back: {
  23168. height: math.unit(100, "feet"),
  23169. name: "Back",
  23170. image: {
  23171. source: "./media/characters/erza-bear/back.svg",
  23172. extra: 2489 / 2430,
  23173. bottom: 85.4 / 2480
  23174. }
  23175. },
  23176. tail: {
  23177. height: math.unit(42, "feet"),
  23178. name: "Tail",
  23179. image: {
  23180. source: "./media/characters/erza-bear/tail.svg"
  23181. }
  23182. },
  23183. tongue: {
  23184. height: math.unit(8, "feet"),
  23185. name: "Tongue",
  23186. image: {
  23187. source: "./media/characters/erza-bear/tongue.svg"
  23188. }
  23189. },
  23190. dick: {
  23191. height: math.unit(10.5, "feet"),
  23192. name: "Dick",
  23193. image: {
  23194. source: "./media/characters/erza-bear/dick.svg"
  23195. }
  23196. },
  23197. dickVertical: {
  23198. height: math.unit(16.9, "feet"),
  23199. name: "Dick (Vertical)",
  23200. image: {
  23201. source: "./media/characters/erza-bear/dick-vertical.svg"
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Macro",
  23208. height: math.unit(100, "feet"),
  23209. default: true
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23215. {
  23216. front: {
  23217. height: math.unit(172, "cm"),
  23218. weight: math.unit(73, "kg"),
  23219. name: "Front",
  23220. image: {
  23221. source: "./media/characters/violet-flor/front.svg",
  23222. extra: 1530 / 1442,
  23223. bottom: 61.9 / 1588.8
  23224. }
  23225. },
  23226. back: {
  23227. height: math.unit(180, "cm"),
  23228. weight: math.unit(73, "kg"),
  23229. name: "Back",
  23230. image: {
  23231. source: "./media/characters/violet-flor/back.svg",
  23232. extra: 1692 / 1630,
  23233. bottom: 20 / 1712
  23234. }
  23235. },
  23236. },
  23237. [
  23238. {
  23239. name: "Normal",
  23240. height: math.unit(172, "cm"),
  23241. default: true
  23242. },
  23243. ]
  23244. ))
  23245. characterMakers.push(() => makeCharacter(
  23246. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23247. {
  23248. front: {
  23249. height: math.unit(6, "feet"),
  23250. weight: math.unit(220, "lb"),
  23251. name: "Front",
  23252. image: {
  23253. source: "./media/characters/lynn-rhea/front.svg",
  23254. extra: 310 / 273
  23255. }
  23256. },
  23257. back: {
  23258. height: math.unit(6, "feet"),
  23259. weight: math.unit(220, "lb"),
  23260. name: "Back",
  23261. image: {
  23262. source: "./media/characters/lynn-rhea/back.svg",
  23263. extra: 310 / 273
  23264. }
  23265. },
  23266. dicks: {
  23267. height: math.unit(0.9, "feet"),
  23268. name: "Dicks",
  23269. image: {
  23270. source: "./media/characters/lynn-rhea/dicks.svg"
  23271. }
  23272. },
  23273. slit: {
  23274. height: math.unit(0.4, "feet"),
  23275. name: "Slit",
  23276. image: {
  23277. source: "./media/characters/lynn-rhea/slit.svg"
  23278. }
  23279. },
  23280. },
  23281. [
  23282. {
  23283. name: "Micro",
  23284. height: math.unit(1, "inch")
  23285. },
  23286. {
  23287. name: "Macro",
  23288. height: math.unit(60, "feet"),
  23289. default: true
  23290. },
  23291. {
  23292. name: "Megamacro",
  23293. height: math.unit(2, "miles")
  23294. },
  23295. {
  23296. name: "Gigamacro",
  23297. height: math.unit(3, "earths")
  23298. },
  23299. {
  23300. name: "Galactic",
  23301. height: math.unit(0.8, "galaxies")
  23302. },
  23303. ]
  23304. ))
  23305. characterMakers.push(() => makeCharacter(
  23306. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23307. {
  23308. front: {
  23309. height: math.unit(1600, "feet"),
  23310. weight: math.unit(85758785169, "kg"),
  23311. name: "Front",
  23312. image: {
  23313. source: "./media/characters/valathos/front.svg",
  23314. extra: 1451 / 1339
  23315. }
  23316. },
  23317. },
  23318. [
  23319. {
  23320. name: "Macro",
  23321. height: math.unit(1600, "feet"),
  23322. default: true
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(7 + 5 / 12, "feet"),
  23331. weight: math.unit(300, "lb"),
  23332. name: "Front",
  23333. image: {
  23334. source: "./media/characters/azula/front.svg",
  23335. extra: 3208 / 2880,
  23336. bottom: 80.2 / 3277
  23337. }
  23338. },
  23339. back: {
  23340. height: math.unit(7 + 5 / 12, "feet"),
  23341. weight: math.unit(300, "lb"),
  23342. name: "Back",
  23343. image: {
  23344. source: "./media/characters/azula/back.svg",
  23345. extra: 3169 / 2822,
  23346. bottom: 150.6 / 3321
  23347. }
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Normal",
  23353. height: math.unit(7 + 5 / 12, "feet"),
  23354. default: true
  23355. },
  23356. {
  23357. name: "Big",
  23358. height: math.unit(20, "feet")
  23359. },
  23360. ]
  23361. ))
  23362. characterMakers.push(() => makeCharacter(
  23363. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23364. {
  23365. front: {
  23366. height: math.unit(5 + 1 / 12, "feet"),
  23367. weight: math.unit(110, "lb"),
  23368. name: "Front",
  23369. image: {
  23370. source: "./media/characters/rupert/front.svg",
  23371. extra: 1549 / 1495,
  23372. bottom: 54.2 / 1604.4
  23373. }
  23374. },
  23375. },
  23376. [
  23377. {
  23378. name: "Normal",
  23379. height: math.unit(5 + 1 / 12, "feet"),
  23380. default: true
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23386. {
  23387. front: {
  23388. height: math.unit(8 + 4 / 12, "feet"),
  23389. weight: math.unit(350, "lb"),
  23390. name: "Front",
  23391. image: {
  23392. source: "./media/characters/sheera-castellar/front.svg",
  23393. extra: 1957 / 1894,
  23394. bottom: 26.97 / 1975.017
  23395. }
  23396. },
  23397. side: {
  23398. height: math.unit(8 + 4 / 12, "feet"),
  23399. weight: math.unit(350, "lb"),
  23400. name: "Side",
  23401. image: {
  23402. source: "./media/characters/sheera-castellar/side.svg",
  23403. extra: 1957 / 1894
  23404. }
  23405. },
  23406. back: {
  23407. height: math.unit(8 + 4 / 12, "feet"),
  23408. weight: math.unit(350, "lb"),
  23409. name: "Back",
  23410. image: {
  23411. source: "./media/characters/sheera-castellar/back.svg",
  23412. extra: 1957 / 1894
  23413. }
  23414. },
  23415. angled: {
  23416. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23417. weight: math.unit(350, "lb"),
  23418. name: "Angled",
  23419. image: {
  23420. source: "./media/characters/sheera-castellar/angled.svg",
  23421. extra: 1807 / 1707,
  23422. bottom: 68 / 1875
  23423. }
  23424. },
  23425. genitals: {
  23426. height: math.unit(2.2, "feet"),
  23427. name: "Genitals",
  23428. image: {
  23429. source: "./media/characters/sheera-castellar/genitals.svg"
  23430. }
  23431. },
  23432. taur: {
  23433. height: math.unit(10 + 6/12, "feet"),
  23434. name: "Taur",
  23435. image: {
  23436. source: "./media/characters/sheera-castellar/taur.svg",
  23437. extra: 2017/1909,
  23438. bottom: 185/2202
  23439. }
  23440. },
  23441. },
  23442. [
  23443. {
  23444. name: "Normal",
  23445. height: math.unit(8 + 4 / 12, "feet")
  23446. },
  23447. {
  23448. name: "Macro",
  23449. height: math.unit(150, "feet"),
  23450. default: true
  23451. },
  23452. {
  23453. name: "Macro+",
  23454. height: math.unit(800, "feet")
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23460. {
  23461. front: {
  23462. height: math.unit(6, "feet"),
  23463. weight: math.unit(150, "lb"),
  23464. name: "Front",
  23465. image: {
  23466. source: "./media/characters/jaipur/front.svg",
  23467. extra: 3860 / 3731,
  23468. bottom: 287 / 4140
  23469. }
  23470. },
  23471. back: {
  23472. height: math.unit(6, "feet"),
  23473. weight: math.unit(150, "lb"),
  23474. name: "Back",
  23475. image: {
  23476. source: "./media/characters/jaipur/back.svg",
  23477. extra: 4060 / 3930,
  23478. bottom: 151 / 4200
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Normal",
  23485. height: math.unit(1.85, "meters"),
  23486. default: true
  23487. },
  23488. {
  23489. name: "Macro",
  23490. height: math.unit(150, "meters")
  23491. },
  23492. {
  23493. name: "Macro+",
  23494. height: math.unit(0.5, "miles")
  23495. },
  23496. {
  23497. name: "Macro++",
  23498. height: math.unit(2.5, "miles")
  23499. },
  23500. {
  23501. name: "Macro+++",
  23502. height: math.unit(12, "miles")
  23503. },
  23504. {
  23505. name: "Macro++++",
  23506. height: math.unit(120, "miles")
  23507. },
  23508. {
  23509. name: "Macro+++++",
  23510. height: math.unit(1200, "miles")
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(6, "feet"),
  23519. weight: math.unit(150, "lb"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/sheila-wolf/front.svg",
  23523. extra: 1931 / 1808,
  23524. bottom: 29.5 / 1960
  23525. }
  23526. },
  23527. dick: {
  23528. height: math.unit(1.464, "feet"),
  23529. name: "Dick",
  23530. image: {
  23531. source: "./media/characters/sheila-wolf/dick.svg"
  23532. }
  23533. },
  23534. muzzle: {
  23535. height: math.unit(0.513, "feet"),
  23536. name: "Muzzle",
  23537. image: {
  23538. source: "./media/characters/sheila-wolf/muzzle.svg"
  23539. }
  23540. },
  23541. },
  23542. [
  23543. {
  23544. name: "Macro",
  23545. height: math.unit(70, "feet"),
  23546. default: true
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(32, "meters"),
  23555. weight: math.unit(300000, "kg"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/almor/front.svg",
  23559. extra: 1408 / 1322,
  23560. bottom: 94.6 / 1506.5
  23561. }
  23562. },
  23563. },
  23564. [
  23565. {
  23566. name: "Macro",
  23567. height: math.unit(32, "meters"),
  23568. default: true
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23574. {
  23575. front: {
  23576. height: math.unit(7, "feet"),
  23577. weight: math.unit(200, "lb"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/silver/front.svg",
  23581. extra: 472.1 / 450.5,
  23582. bottom: 26.5 / 499.424
  23583. }
  23584. },
  23585. },
  23586. [
  23587. {
  23588. name: "Normal",
  23589. height: math.unit(7, "feet"),
  23590. default: true
  23591. },
  23592. {
  23593. name: "Macro",
  23594. height: math.unit(800, "feet")
  23595. },
  23596. {
  23597. name: "Megamacro",
  23598. height: math.unit(250, "miles")
  23599. },
  23600. ]
  23601. ))
  23602. characterMakers.push(() => makeCharacter(
  23603. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23604. {
  23605. front: {
  23606. height: math.unit(6, "feet"),
  23607. weight: math.unit(150, "lb"),
  23608. name: "Front",
  23609. image: {
  23610. source: "./media/characters/pliskin/front.svg",
  23611. extra: 1469 / 1359,
  23612. bottom: 70 / 1540
  23613. }
  23614. },
  23615. },
  23616. [
  23617. {
  23618. name: "Micro",
  23619. height: math.unit(3, "inches")
  23620. },
  23621. {
  23622. name: "Normal",
  23623. height: math.unit(5 + 11 / 12, "feet"),
  23624. default: true
  23625. },
  23626. {
  23627. name: "Macro",
  23628. height: math.unit(120, "feet")
  23629. },
  23630. ]
  23631. ))
  23632. characterMakers.push(() => makeCharacter(
  23633. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23634. {
  23635. front: {
  23636. height: math.unit(6, "feet"),
  23637. weight: math.unit(150, "lb"),
  23638. name: "Front",
  23639. image: {
  23640. source: "./media/characters/sammy/front.svg",
  23641. extra: 1193 / 1089,
  23642. bottom: 30.5 / 1226
  23643. }
  23644. },
  23645. },
  23646. [
  23647. {
  23648. name: "Macro",
  23649. height: math.unit(1700, "feet"),
  23650. default: true
  23651. },
  23652. {
  23653. name: "Examacro",
  23654. height: math.unit(2.5e9, "lightyears")
  23655. },
  23656. ]
  23657. ))
  23658. characterMakers.push(() => makeCharacter(
  23659. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23660. {
  23661. front: {
  23662. height: math.unit(21, "meters"),
  23663. weight: math.unit(12, "tonnes"),
  23664. name: "Front",
  23665. image: {
  23666. source: "./media/characters/kuru/front.svg",
  23667. extra: 4301 / 3785,
  23668. bottom: 371.3 / 4691
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Macro",
  23675. height: math.unit(21, "meters"),
  23676. default: true
  23677. },
  23678. ]
  23679. ))
  23680. characterMakers.push(() => makeCharacter(
  23681. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23682. {
  23683. front: {
  23684. height: math.unit(23, "meters"),
  23685. weight: math.unit(12.2, "tonnes"),
  23686. name: "Front",
  23687. image: {
  23688. source: "./media/characters/rakka/front.svg",
  23689. extra: 4670 / 4169,
  23690. bottom: 301 / 4968.7
  23691. }
  23692. },
  23693. },
  23694. [
  23695. {
  23696. name: "Macro",
  23697. height: math.unit(23, "meters"),
  23698. default: true
  23699. },
  23700. ]
  23701. ))
  23702. characterMakers.push(() => makeCharacter(
  23703. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23704. {
  23705. front: {
  23706. height: math.unit(6, "feet"),
  23707. weight: math.unit(150, "lb"),
  23708. name: "Front",
  23709. image: {
  23710. source: "./media/characters/rhys-feline/front.svg",
  23711. extra: 2488 / 2308,
  23712. bottom: 35.67 / 2519.19
  23713. }
  23714. },
  23715. },
  23716. [
  23717. {
  23718. name: "Really Small",
  23719. height: math.unit(1, "nm")
  23720. },
  23721. {
  23722. name: "Micro",
  23723. height: math.unit(4, "inches")
  23724. },
  23725. {
  23726. name: "Normal",
  23727. height: math.unit(4 + 10 / 12, "feet"),
  23728. default: true
  23729. },
  23730. {
  23731. name: "Macro",
  23732. height: math.unit(100, "feet")
  23733. },
  23734. {
  23735. name: "Megamacto",
  23736. height: math.unit(50, "miles")
  23737. },
  23738. ]
  23739. ))
  23740. characterMakers.push(() => makeCharacter(
  23741. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23742. {
  23743. side: {
  23744. height: math.unit(30, "feet"),
  23745. weight: math.unit(35000, "kg"),
  23746. name: "Side",
  23747. image: {
  23748. source: "./media/characters/alydar/side.svg",
  23749. extra: 234 / 222,
  23750. bottom: 6.5 / 241
  23751. }
  23752. },
  23753. front: {
  23754. height: math.unit(30, "feet"),
  23755. weight: math.unit(35000, "kg"),
  23756. name: "Front",
  23757. image: {
  23758. source: "./media/characters/alydar/front.svg",
  23759. extra: 223.37 / 210.2,
  23760. bottom: 22.3 / 246.76
  23761. }
  23762. },
  23763. top: {
  23764. height: math.unit(64.54, "feet"),
  23765. weight: math.unit(35000, "kg"),
  23766. name: "Top",
  23767. image: {
  23768. source: "./media/characters/alydar/top.svg"
  23769. }
  23770. },
  23771. anthro: {
  23772. height: math.unit(30, "feet"),
  23773. weight: math.unit(9000, "kg"),
  23774. name: "Anthro",
  23775. image: {
  23776. source: "./media/characters/alydar/anthro.svg",
  23777. extra: 432 / 421,
  23778. bottom: 7.18 / 440
  23779. }
  23780. },
  23781. maw: {
  23782. height: math.unit(11.693, "feet"),
  23783. name: "Maw",
  23784. image: {
  23785. source: "./media/characters/alydar/maw.svg"
  23786. }
  23787. },
  23788. head: {
  23789. height: math.unit(11.693, "feet"),
  23790. name: "Head",
  23791. image: {
  23792. source: "./media/characters/alydar/head.svg"
  23793. }
  23794. },
  23795. headAlt: {
  23796. height: math.unit(12.861, "feet"),
  23797. name: "Head (Alt)",
  23798. image: {
  23799. source: "./media/characters/alydar/head-alt.svg"
  23800. }
  23801. },
  23802. wing: {
  23803. height: math.unit(20.712, "feet"),
  23804. name: "Wing",
  23805. image: {
  23806. source: "./media/characters/alydar/wing.svg"
  23807. }
  23808. },
  23809. wingFeather: {
  23810. height: math.unit(9.662, "feet"),
  23811. name: "Wing Feather",
  23812. image: {
  23813. source: "./media/characters/alydar/wing-feather.svg"
  23814. }
  23815. },
  23816. countourFeather: {
  23817. height: math.unit(4.154, "feet"),
  23818. name: "Contour Feather",
  23819. image: {
  23820. source: "./media/characters/alydar/contour-feather.svg"
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Diplomatic",
  23827. height: math.unit(13, "feet"),
  23828. default: true
  23829. },
  23830. {
  23831. name: "Small",
  23832. height: math.unit(30, "feet")
  23833. },
  23834. {
  23835. name: "Normal",
  23836. height: math.unit(95, "feet"),
  23837. default: true
  23838. },
  23839. {
  23840. name: "Large",
  23841. height: math.unit(285, "feet")
  23842. },
  23843. {
  23844. name: "Incomprehensible",
  23845. height: math.unit(450, "megameters")
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23851. {
  23852. side: {
  23853. height: math.unit(11, "feet"),
  23854. weight: math.unit(1750, "kg"),
  23855. name: "Side",
  23856. image: {
  23857. source: "./media/characters/selicia/side.svg",
  23858. extra: 440 / 396,
  23859. bottom: 24.8 / 465.979
  23860. }
  23861. },
  23862. maw: {
  23863. height: math.unit(4.665, "feet"),
  23864. name: "Maw",
  23865. image: {
  23866. source: "./media/characters/selicia/maw.svg"
  23867. }
  23868. },
  23869. },
  23870. [
  23871. {
  23872. name: "Normal",
  23873. height: math.unit(11, "feet"),
  23874. default: true
  23875. },
  23876. ]
  23877. ))
  23878. characterMakers.push(() => makeCharacter(
  23879. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23880. {
  23881. side: {
  23882. height: math.unit(2 + 6 / 12, "feet"),
  23883. weight: math.unit(30, "lb"),
  23884. name: "Side",
  23885. image: {
  23886. source: "./media/characters/layla/side.svg",
  23887. extra: 244 / 188,
  23888. bottom: 18.2 / 262.1
  23889. }
  23890. },
  23891. back: {
  23892. height: math.unit(2 + 6 / 12, "feet"),
  23893. weight: math.unit(30, "lb"),
  23894. name: "Back",
  23895. image: {
  23896. source: "./media/characters/layla/back.svg",
  23897. extra: 308 / 241.5,
  23898. bottom: 8.9 / 316.8
  23899. }
  23900. },
  23901. cumming: {
  23902. height: math.unit(2 + 6 / 12, "feet"),
  23903. weight: math.unit(30, "lb"),
  23904. name: "Cumming",
  23905. image: {
  23906. source: "./media/characters/layla/cumming.svg",
  23907. extra: 342 / 279,
  23908. bottom: 595 / 938
  23909. }
  23910. },
  23911. dickFlaccid: {
  23912. height: math.unit(2.595, "feet"),
  23913. name: "Flaccid Genitals",
  23914. image: {
  23915. source: "./media/characters/layla/dick-flaccid.svg"
  23916. }
  23917. },
  23918. dickErect: {
  23919. height: math.unit(2.359, "feet"),
  23920. name: "Erect Genitals",
  23921. image: {
  23922. source: "./media/characters/layla/dick-erect.svg"
  23923. }
  23924. },
  23925. dragon: {
  23926. height: math.unit(40, "feet"),
  23927. name: "Dragon",
  23928. image: {
  23929. source: "./media/characters/layla/dragon.svg",
  23930. extra: 610/535,
  23931. bottom: 367/977
  23932. }
  23933. },
  23934. taur: {
  23935. height: math.unit(30, "feet"),
  23936. name: "Taur",
  23937. image: {
  23938. source: "./media/characters/layla/taur.svg",
  23939. extra: 1268/1199,
  23940. bottom: 112/1380
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Micro",
  23947. height: math.unit(1, "inch")
  23948. },
  23949. {
  23950. name: "Small",
  23951. height: math.unit(1, "foot")
  23952. },
  23953. {
  23954. name: "Normal",
  23955. height: math.unit(2 + 6 / 12, "feet"),
  23956. default: true
  23957. },
  23958. {
  23959. name: "Macro",
  23960. height: math.unit(200, "feet")
  23961. },
  23962. {
  23963. name: "Megamacro",
  23964. height: math.unit(1000, "miles")
  23965. },
  23966. {
  23967. name: "Planetary",
  23968. height: math.unit(8000, "miles")
  23969. },
  23970. {
  23971. name: "True Layla",
  23972. height: math.unit(200000 * 7, "multiverses")
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23978. {
  23979. back: {
  23980. height: math.unit(10.5, "feet"),
  23981. weight: math.unit(800, "lb"),
  23982. name: "Back",
  23983. image: {
  23984. source: "./media/characters/knox/back.svg",
  23985. extra: 1486 / 1089,
  23986. bottom: 107 / 1601.4
  23987. }
  23988. },
  23989. side: {
  23990. height: math.unit(10.5, "feet"),
  23991. weight: math.unit(800, "lb"),
  23992. name: "Side",
  23993. image: {
  23994. source: "./media/characters/knox/side.svg",
  23995. extra: 244 / 218,
  23996. bottom: 14 / 260
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "Compact",
  24003. height: math.unit(10.5, "feet"),
  24004. default: true
  24005. },
  24006. {
  24007. name: "Dynamax",
  24008. height: math.unit(210, "feet")
  24009. },
  24010. {
  24011. name: "Full Macro",
  24012. height: math.unit(850, "feet")
  24013. },
  24014. ]
  24015. ))
  24016. characterMakers.push(() => makeCharacter(
  24017. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24018. {
  24019. front: {
  24020. height: math.unit(28, "feet"),
  24021. weight: math.unit(10500, "lb"),
  24022. name: "Front",
  24023. image: {
  24024. source: "./media/characters/kayda/front.svg",
  24025. extra: 1536 / 1428,
  24026. bottom: 68.7 / 1603
  24027. }
  24028. },
  24029. back: {
  24030. height: math.unit(28, "feet"),
  24031. weight: math.unit(10500, "lb"),
  24032. name: "Back",
  24033. image: {
  24034. source: "./media/characters/kayda/back.svg",
  24035. extra: 1557 / 1464,
  24036. bottom: 39.5 / 1597.49
  24037. }
  24038. },
  24039. dick: {
  24040. height: math.unit(3.858, "feet"),
  24041. name: "Dick",
  24042. image: {
  24043. source: "./media/characters/kayda/dick.svg"
  24044. }
  24045. },
  24046. },
  24047. [
  24048. {
  24049. name: "Macro",
  24050. height: math.unit(28, "feet"),
  24051. default: true
  24052. },
  24053. ]
  24054. ))
  24055. characterMakers.push(() => makeCharacter(
  24056. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24057. {
  24058. front: {
  24059. height: math.unit(10 + 11 / 12, "feet"),
  24060. weight: math.unit(1400, "lb"),
  24061. name: "Front",
  24062. image: {
  24063. source: "./media/characters/brian/front.svg",
  24064. extra: 737 / 692,
  24065. bottom: 55.4 / 785
  24066. }
  24067. },
  24068. },
  24069. [
  24070. {
  24071. name: "Normal",
  24072. height: math.unit(10 + 11 / 12, "feet"),
  24073. default: true
  24074. },
  24075. ]
  24076. ))
  24077. characterMakers.push(() => makeCharacter(
  24078. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24079. {
  24080. front: {
  24081. height: math.unit(5 + 8 / 12, "feet"),
  24082. weight: math.unit(140, "lb"),
  24083. name: "Front",
  24084. image: {
  24085. source: "./media/characters/khemri/front.svg",
  24086. extra: 4780 / 4059,
  24087. bottom: 80.1 / 4859.25
  24088. }
  24089. },
  24090. },
  24091. [
  24092. {
  24093. name: "Micro",
  24094. height: math.unit(6, "inches")
  24095. },
  24096. {
  24097. name: "Normal",
  24098. height: math.unit(5 + 8 / 12, "feet"),
  24099. default: true
  24100. },
  24101. ]
  24102. ))
  24103. characterMakers.push(() => makeCharacter(
  24104. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24105. {
  24106. front: {
  24107. height: math.unit(13, "feet"),
  24108. weight: math.unit(1700, "lb"),
  24109. name: "Front",
  24110. image: {
  24111. source: "./media/characters/felix-braveheart/front.svg",
  24112. extra: 1222 / 1157,
  24113. bottom: 53.2 / 1280
  24114. }
  24115. },
  24116. back: {
  24117. height: math.unit(13, "feet"),
  24118. weight: math.unit(1700, "lb"),
  24119. name: "Back",
  24120. image: {
  24121. source: "./media/characters/felix-braveheart/back.svg",
  24122. extra: 1277 / 1203,
  24123. bottom: 50.2 / 1327
  24124. }
  24125. },
  24126. feral: {
  24127. height: math.unit(6, "feet"),
  24128. weight: math.unit(400, "lb"),
  24129. name: "Feral",
  24130. image: {
  24131. source: "./media/characters/felix-braveheart/feral.svg",
  24132. extra: 682 / 625,
  24133. bottom: 6.9 / 688
  24134. }
  24135. },
  24136. },
  24137. [
  24138. {
  24139. name: "Normal",
  24140. height: math.unit(13, "feet"),
  24141. default: true
  24142. },
  24143. ]
  24144. ))
  24145. characterMakers.push(() => makeCharacter(
  24146. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24147. {
  24148. side: {
  24149. height: math.unit(5 + 11 / 12, "feet"),
  24150. weight: math.unit(1400, "lb"),
  24151. name: "Side",
  24152. image: {
  24153. source: "./media/characters/shadow-blade/side.svg",
  24154. extra: 1726 / 1267,
  24155. bottom: 58.4 / 1785
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Normal",
  24162. height: math.unit(5 + 11 / 12, "feet"),
  24163. default: true
  24164. },
  24165. ]
  24166. ))
  24167. characterMakers.push(() => makeCharacter(
  24168. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24169. {
  24170. front: {
  24171. height: math.unit(1 + 6 / 12, "feet"),
  24172. weight: math.unit(25, "lb"),
  24173. name: "Front",
  24174. image: {
  24175. source: "./media/characters/karla-halldor/front.svg",
  24176. extra: 1459 / 1383,
  24177. bottom: 12 / 1472
  24178. }
  24179. },
  24180. },
  24181. [
  24182. {
  24183. name: "Normal",
  24184. height: math.unit(1 + 6 / 12, "feet"),
  24185. default: true
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(6 + 2 / 12, "feet"),
  24194. weight: math.unit(160, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/ariam/front.svg",
  24198. extra: 1073/976,
  24199. bottom: 52/1125
  24200. }
  24201. },
  24202. back: {
  24203. height: math.unit(6 + 2/12, "feet"),
  24204. weight: math.unit(160, "lb"),
  24205. name: "Back",
  24206. image: {
  24207. source: "./media/characters/ariam/back.svg",
  24208. extra: 1103/1023,
  24209. bottom: 9/1112
  24210. }
  24211. },
  24212. dressed: {
  24213. height: math.unit(6 + 2/12, "feet"),
  24214. weight: math.unit(160, "lb"),
  24215. name: "Dressed",
  24216. image: {
  24217. source: "./media/characters/ariam/dressed.svg",
  24218. extra: 1099/1009,
  24219. bottom: 25/1124
  24220. }
  24221. },
  24222. squatting: {
  24223. height: math.unit(4.1, "feet"),
  24224. weight: math.unit(160, "lb"),
  24225. name: "Squatting",
  24226. image: {
  24227. source: "./media/characters/ariam/squatting.svg",
  24228. extra: 2617 / 2112,
  24229. bottom: 61.2 / 2681,
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Normal",
  24236. height: math.unit(6 + 2 / 12, "feet"),
  24237. default: true
  24238. },
  24239. {
  24240. name: "Normal+",
  24241. height: math.unit(4, "meters")
  24242. },
  24243. {
  24244. name: "Macro",
  24245. height: math.unit(50, "meters")
  24246. },
  24247. {
  24248. name: "Macro+",
  24249. height: math.unit(100, "meters")
  24250. },
  24251. {
  24252. name: "Megamacro",
  24253. height: math.unit(20, "km")
  24254. },
  24255. {
  24256. name: "Caretaker",
  24257. height: math.unit(444, "megameters")
  24258. },
  24259. ]
  24260. ))
  24261. characterMakers.push(() => makeCharacter(
  24262. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24263. {
  24264. front: {
  24265. height: math.unit(1.67, "meters"),
  24266. weight: math.unit(140, "lb"),
  24267. name: "Front",
  24268. image: {
  24269. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24270. extra: 438 / 410,
  24271. bottom: 0.75 / 439
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Shrunken",
  24278. height: math.unit(7.6, "cm")
  24279. },
  24280. {
  24281. name: "Human Scale",
  24282. height: math.unit(1.67, "meters")
  24283. },
  24284. {
  24285. name: "Wolxi Scale",
  24286. height: math.unit(36.7, "meters"),
  24287. default: true
  24288. },
  24289. ]
  24290. ))
  24291. characterMakers.push(() => makeCharacter(
  24292. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24293. {
  24294. front: {
  24295. height: math.unit(1.73, "meters"),
  24296. weight: math.unit(240, "lb"),
  24297. name: "Front",
  24298. image: {
  24299. source: "./media/characters/izue-two-mothers/front.svg",
  24300. extra: 469 / 437,
  24301. bottom: 1.24 / 470.6
  24302. }
  24303. },
  24304. },
  24305. [
  24306. {
  24307. name: "Shrunken",
  24308. height: math.unit(7.86, "cm")
  24309. },
  24310. {
  24311. name: "Human Scale",
  24312. height: math.unit(1.73, "meters")
  24313. },
  24314. {
  24315. name: "Wolxi Scale",
  24316. height: math.unit(38, "meters"),
  24317. default: true
  24318. },
  24319. ]
  24320. ))
  24321. characterMakers.push(() => makeCharacter(
  24322. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24323. {
  24324. front: {
  24325. height: math.unit(1.55, "meters"),
  24326. weight: math.unit(120, "lb"),
  24327. name: "Front",
  24328. image: {
  24329. source: "./media/characters/teeku-love-shack/front.svg",
  24330. extra: 387 / 362,
  24331. bottom: 1.51 / 388
  24332. }
  24333. },
  24334. },
  24335. [
  24336. {
  24337. name: "Shrunken",
  24338. height: math.unit(7, "cm")
  24339. },
  24340. {
  24341. name: "Human Scale",
  24342. height: math.unit(1.55, "meters")
  24343. },
  24344. {
  24345. name: "Wolxi Scale",
  24346. height: math.unit(34.1, "meters"),
  24347. default: true
  24348. },
  24349. ]
  24350. ))
  24351. characterMakers.push(() => makeCharacter(
  24352. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24353. {
  24354. front: {
  24355. height: math.unit(1.83, "meters"),
  24356. weight: math.unit(135, "lb"),
  24357. name: "Front",
  24358. image: {
  24359. source: "./media/characters/dejma-the-red/front.svg",
  24360. extra: 480 / 458,
  24361. bottom: 1.8 / 482
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Shrunken",
  24368. height: math.unit(8.3, "cm")
  24369. },
  24370. {
  24371. name: "Human Scale",
  24372. height: math.unit(1.83, "meters")
  24373. },
  24374. {
  24375. name: "Wolxi Scale",
  24376. height: math.unit(40, "meters"),
  24377. default: true
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24383. {
  24384. front: {
  24385. height: math.unit(1.78, "meters"),
  24386. weight: math.unit(65, "kg"),
  24387. name: "Front",
  24388. image: {
  24389. source: "./media/characters/aki/front.svg",
  24390. extra: 452 / 415
  24391. }
  24392. },
  24393. frontNsfw: {
  24394. height: math.unit(1.78, "meters"),
  24395. weight: math.unit(65, "kg"),
  24396. name: "Front (NSFW)",
  24397. image: {
  24398. source: "./media/characters/aki/front-nsfw.svg",
  24399. extra: 452 / 415
  24400. }
  24401. },
  24402. back: {
  24403. height: math.unit(1.78, "meters"),
  24404. weight: math.unit(65, "kg"),
  24405. name: "Back",
  24406. image: {
  24407. source: "./media/characters/aki/back.svg",
  24408. extra: 452 / 415
  24409. }
  24410. },
  24411. rump: {
  24412. height: math.unit(2.05, "feet"),
  24413. name: "Rump",
  24414. image: {
  24415. source: "./media/characters/aki/rump.svg"
  24416. }
  24417. },
  24418. dick: {
  24419. height: math.unit(0.95, "feet"),
  24420. name: "Dick",
  24421. image: {
  24422. source: "./media/characters/aki/dick.svg"
  24423. }
  24424. },
  24425. },
  24426. [
  24427. {
  24428. name: "Micro",
  24429. height: math.unit(15, "cm")
  24430. },
  24431. {
  24432. name: "Normal",
  24433. height: math.unit(178, "cm"),
  24434. default: true
  24435. },
  24436. {
  24437. name: "Macro",
  24438. height: math.unit(214, "m")
  24439. },
  24440. {
  24441. name: "Macro+",
  24442. height: math.unit(534, "m")
  24443. },
  24444. ]
  24445. ))
  24446. characterMakers.push(() => makeCharacter(
  24447. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24448. {
  24449. front: {
  24450. height: math.unit(5 + 5 / 12, "feet"),
  24451. weight: math.unit(120, "lb"),
  24452. name: "Front",
  24453. image: {
  24454. source: "./media/characters/ari/front.svg",
  24455. extra: 714.5 / 682,
  24456. bottom: 8 / 722.5
  24457. }
  24458. },
  24459. },
  24460. [
  24461. {
  24462. name: "Normal",
  24463. height: math.unit(5 + 5 / 12, "feet")
  24464. },
  24465. {
  24466. name: "Macro",
  24467. height: math.unit(100, "feet"),
  24468. default: true
  24469. },
  24470. {
  24471. name: "Megamacro",
  24472. height: math.unit(100, "miles")
  24473. },
  24474. {
  24475. name: "Gigamacro",
  24476. height: math.unit(80000, "miles")
  24477. },
  24478. ]
  24479. ))
  24480. characterMakers.push(() => makeCharacter(
  24481. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24482. {
  24483. side: {
  24484. height: math.unit(9, "feet"),
  24485. weight: math.unit(400, "kg"),
  24486. name: "Side",
  24487. image: {
  24488. source: "./media/characters/bolt/side.svg",
  24489. extra: 1126 / 896,
  24490. bottom: 60 / 1187.3,
  24491. }
  24492. },
  24493. },
  24494. [
  24495. {
  24496. name: "Micro",
  24497. height: math.unit(5, "inches")
  24498. },
  24499. {
  24500. name: "Normal",
  24501. height: math.unit(9, "feet"),
  24502. default: true
  24503. },
  24504. {
  24505. name: "Macro",
  24506. height: math.unit(700, "feet")
  24507. },
  24508. {
  24509. name: "Max Size",
  24510. height: math.unit(1.52e22, "yottameters")
  24511. },
  24512. ]
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24516. {
  24517. front: {
  24518. height: math.unit(4.53, "meters"),
  24519. weight: math.unit(3, "tons"),
  24520. name: "Front",
  24521. image: {
  24522. source: "./media/characters/draekon-sylviar/front.svg",
  24523. extra: 1228 / 1068,
  24524. bottom: 41 / 1270
  24525. }
  24526. },
  24527. tail: {
  24528. height: math.unit(1.772, "meter"),
  24529. name: "Tail",
  24530. image: {
  24531. source: "./media/characters/draekon-sylviar/tail.svg"
  24532. }
  24533. },
  24534. head: {
  24535. height: math.unit(1.331, "meter"),
  24536. name: "Head",
  24537. image: {
  24538. source: "./media/characters/draekon-sylviar/head.svg"
  24539. }
  24540. },
  24541. hand: {
  24542. height: math.unit(0.564, "meter"),
  24543. name: "Hand",
  24544. image: {
  24545. source: "./media/characters/draekon-sylviar/hand.svg"
  24546. }
  24547. },
  24548. foot: {
  24549. height: math.unit(0.621, "meter"),
  24550. name: "Foot",
  24551. image: {
  24552. source: "./media/characters/draekon-sylviar/foot.svg",
  24553. bottom: 32 / 324
  24554. }
  24555. },
  24556. dick: {
  24557. height: math.unit(61, "cm"),
  24558. name: "Dick",
  24559. image: {
  24560. source: "./media/characters/draekon-sylviar/dick.svg"
  24561. }
  24562. },
  24563. dickseparated: {
  24564. height: math.unit(61, "cm"),
  24565. name: "Dick-separated",
  24566. image: {
  24567. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24568. }
  24569. },
  24570. },
  24571. [
  24572. {
  24573. name: "Small",
  24574. height: math.unit(4.53 / 2, "meters"),
  24575. default: true
  24576. },
  24577. {
  24578. name: "Normal",
  24579. height: math.unit(4.53, "meters"),
  24580. default: true
  24581. },
  24582. {
  24583. name: "Large",
  24584. height: math.unit(4.53 * 2, "meters"),
  24585. },
  24586. ]
  24587. ))
  24588. characterMakers.push(() => makeCharacter(
  24589. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24590. {
  24591. front: {
  24592. height: math.unit(6 + 2 / 12, "feet"),
  24593. weight: math.unit(180, "lb"),
  24594. name: "Front",
  24595. image: {
  24596. source: "./media/characters/brawler/front.svg",
  24597. extra: 3301 / 3027,
  24598. bottom: 138 / 3439
  24599. }
  24600. },
  24601. },
  24602. [
  24603. {
  24604. name: "Normal",
  24605. height: math.unit(6 + 2 / 12, "feet"),
  24606. default: true
  24607. },
  24608. ]
  24609. ))
  24610. characterMakers.push(() => makeCharacter(
  24611. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24612. {
  24613. front: {
  24614. height: math.unit(11, "feet"),
  24615. weight: math.unit(1000, "lb"),
  24616. name: "Front",
  24617. image: {
  24618. source: "./media/characters/alex/front.svg",
  24619. bottom: 44.5 / 620
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Micro",
  24626. height: math.unit(5, "inches")
  24627. },
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(11, "feet"),
  24631. default: true
  24632. },
  24633. {
  24634. name: "Macro",
  24635. height: math.unit(9.5e9, "feet")
  24636. },
  24637. {
  24638. name: "Max Size",
  24639. height: math.unit(1.4e283, "yottameters")
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24645. {
  24646. female: {
  24647. height: math.unit(29.9, "m"),
  24648. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24649. name: "Female",
  24650. image: {
  24651. source: "./media/characters/zenari/female.svg",
  24652. extra: 3281.6 / 3217,
  24653. bottom: 72.2 / 3353
  24654. }
  24655. },
  24656. male: {
  24657. height: math.unit(27.7, "m"),
  24658. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24659. name: "Male",
  24660. image: {
  24661. source: "./media/characters/zenari/male.svg",
  24662. extra: 3008 / 2991,
  24663. bottom: 54.6 / 3069
  24664. }
  24665. },
  24666. },
  24667. [
  24668. {
  24669. name: "Macro",
  24670. height: math.unit(29.7, "meters"),
  24671. default: true
  24672. },
  24673. ]
  24674. ))
  24675. characterMakers.push(() => makeCharacter(
  24676. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24677. {
  24678. female: {
  24679. height: math.unit(23.8, "m"),
  24680. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24681. name: "Female",
  24682. image: {
  24683. source: "./media/characters/mactarian/female.svg",
  24684. extra: 2662 / 2569,
  24685. bottom: 73 / 2736
  24686. }
  24687. },
  24688. male: {
  24689. height: math.unit(23.8, "m"),
  24690. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24691. name: "Male",
  24692. image: {
  24693. source: "./media/characters/mactarian/male.svg",
  24694. extra: 2673 / 2600,
  24695. bottom: 76 / 2750
  24696. }
  24697. },
  24698. },
  24699. [
  24700. {
  24701. name: "Macro",
  24702. height: math.unit(23.8, "meters"),
  24703. default: true
  24704. },
  24705. ]
  24706. ))
  24707. characterMakers.push(() => makeCharacter(
  24708. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24709. {
  24710. female: {
  24711. height: math.unit(19.3, "m"),
  24712. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24713. name: "Female",
  24714. image: {
  24715. source: "./media/characters/umok/female.svg",
  24716. extra: 2186 / 2078,
  24717. bottom: 87 / 2277
  24718. }
  24719. },
  24720. male: {
  24721. height: math.unit(19.5, "m"),
  24722. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24723. name: "Male",
  24724. image: {
  24725. source: "./media/characters/umok/male.svg",
  24726. extra: 2233 / 2140,
  24727. bottom: 24.4 / 2258
  24728. }
  24729. },
  24730. },
  24731. [
  24732. {
  24733. name: "Macro",
  24734. height: math.unit(19.3, "meters"),
  24735. default: true
  24736. },
  24737. ]
  24738. ))
  24739. characterMakers.push(() => makeCharacter(
  24740. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24741. {
  24742. female: {
  24743. height: math.unit(26.15, "m"),
  24744. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24745. name: "Female",
  24746. image: {
  24747. source: "./media/characters/joraxian/female.svg",
  24748. extra: 2912 / 2824,
  24749. bottom: 36 / 2956
  24750. }
  24751. },
  24752. male: {
  24753. height: math.unit(25.4, "m"),
  24754. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24755. name: "Male",
  24756. image: {
  24757. source: "./media/characters/joraxian/male.svg",
  24758. extra: 2877 / 2721,
  24759. bottom: 82 / 2967
  24760. }
  24761. },
  24762. },
  24763. [
  24764. {
  24765. name: "Macro",
  24766. height: math.unit(26.15, "meters"),
  24767. default: true
  24768. },
  24769. ]
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24773. {
  24774. female: {
  24775. height: math.unit(21.6, "m"),
  24776. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24777. name: "Female",
  24778. image: {
  24779. source: "./media/characters/sthara/female.svg",
  24780. extra: 2516 / 2347,
  24781. bottom: 21.5 / 2537
  24782. }
  24783. },
  24784. male: {
  24785. height: math.unit(24, "m"),
  24786. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24787. name: "Male",
  24788. image: {
  24789. source: "./media/characters/sthara/male.svg",
  24790. extra: 2732 / 2607,
  24791. bottom: 23 / 2732
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Macro",
  24798. height: math.unit(21.6, "meters"),
  24799. default: true
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24805. {
  24806. front: {
  24807. height: math.unit(6 + 4 / 12, "feet"),
  24808. weight: math.unit(175, "lb"),
  24809. name: "Front",
  24810. image: {
  24811. source: "./media/characters/luka-bryzant/front.svg",
  24812. extra: 311 / 289,
  24813. bottom: 4 / 315
  24814. }
  24815. },
  24816. back: {
  24817. height: math.unit(6 + 4 / 12, "feet"),
  24818. weight: math.unit(175, "lb"),
  24819. name: "Back",
  24820. image: {
  24821. source: "./media/characters/luka-bryzant/back.svg",
  24822. extra: 311 / 289,
  24823. bottom: 3.8 / 313.7
  24824. }
  24825. },
  24826. },
  24827. [
  24828. {
  24829. name: "Micro",
  24830. height: math.unit(10, "inches")
  24831. },
  24832. {
  24833. name: "Normal",
  24834. height: math.unit(6 + 4 / 12, "feet"),
  24835. default: true
  24836. },
  24837. {
  24838. name: "Large",
  24839. height: math.unit(12, "feet")
  24840. },
  24841. ]
  24842. ))
  24843. characterMakers.push(() => makeCharacter(
  24844. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24845. {
  24846. front: {
  24847. height: math.unit(5 + 7 / 12, "feet"),
  24848. weight: math.unit(185, "lb"),
  24849. name: "Front",
  24850. image: {
  24851. source: "./media/characters/aman-aquila/front.svg",
  24852. extra: 1013 / 976,
  24853. bottom: 45.6 / 1057
  24854. }
  24855. },
  24856. side: {
  24857. height: math.unit(5 + 7 / 12, "feet"),
  24858. weight: math.unit(185, "lb"),
  24859. name: "Side",
  24860. image: {
  24861. source: "./media/characters/aman-aquila/side.svg",
  24862. extra: 1054 / 1011,
  24863. bottom: 15 / 1070
  24864. }
  24865. },
  24866. back: {
  24867. height: math.unit(5 + 7 / 12, "feet"),
  24868. weight: math.unit(185, "lb"),
  24869. name: "Back",
  24870. image: {
  24871. source: "./media/characters/aman-aquila/back.svg",
  24872. extra: 1026 / 970,
  24873. bottom: 12 / 1039
  24874. }
  24875. },
  24876. head: {
  24877. height: math.unit(1.211, "feet"),
  24878. name: "Head",
  24879. image: {
  24880. source: "./media/characters/aman-aquila/head.svg",
  24881. }
  24882. },
  24883. },
  24884. [
  24885. {
  24886. name: "Minimicro",
  24887. height: math.unit(0.057, "inches")
  24888. },
  24889. {
  24890. name: "Micro",
  24891. height: math.unit(7, "inches")
  24892. },
  24893. {
  24894. name: "Mini",
  24895. height: math.unit(3 + 7 / 12, "feet")
  24896. },
  24897. {
  24898. name: "Normal",
  24899. height: math.unit(5 + 7 / 12, "feet"),
  24900. default: true
  24901. },
  24902. {
  24903. name: "Macro",
  24904. height: math.unit(157 + 7 / 12, "feet")
  24905. },
  24906. {
  24907. name: "Megamacro",
  24908. height: math.unit(1557 + 7 / 12, "feet")
  24909. },
  24910. {
  24911. name: "Gigamacro",
  24912. height: math.unit(15557 + 7 / 12, "feet")
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24918. {
  24919. front: {
  24920. height: math.unit(3 + 2 / 12, "inches"),
  24921. weight: math.unit(0.3, "ounces"),
  24922. name: "Front",
  24923. image: {
  24924. source: "./media/characters/hiphae/front.svg",
  24925. extra: 1931 / 1683,
  24926. bottom: 24 / 1955
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Normal",
  24933. height: math.unit(3 + 1 / 2, "inches"),
  24934. default: true
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24940. {
  24941. front: {
  24942. height: math.unit(5 + 10 / 12, "feet"),
  24943. weight: math.unit(165, "lb"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/nicky/front.svg",
  24947. extra: 3144 / 2886,
  24948. bottom: 45.6 / 3192
  24949. }
  24950. },
  24951. back: {
  24952. height: math.unit(5 + 10 / 12, "feet"),
  24953. weight: math.unit(165, "lb"),
  24954. name: "Back",
  24955. image: {
  24956. source: "./media/characters/nicky/back.svg",
  24957. extra: 3055 / 2804,
  24958. bottom: 28.4 / 3087
  24959. }
  24960. },
  24961. frontclothed: {
  24962. height: math.unit(5 + 10 / 12, "feet"),
  24963. weight: math.unit(165, "lb"),
  24964. name: "Front-clothed",
  24965. image: {
  24966. source: "./media/characters/nicky/front-clothed.svg",
  24967. extra: 3184.9 / 2926.9,
  24968. bottom: 86.5 / 3239.9
  24969. }
  24970. },
  24971. foot: {
  24972. height: math.unit(1.16, "feet"),
  24973. name: "Foot",
  24974. image: {
  24975. source: "./media/characters/nicky/foot.svg"
  24976. }
  24977. },
  24978. feet: {
  24979. height: math.unit(1.34, "feet"),
  24980. name: "Feet",
  24981. image: {
  24982. source: "./media/characters/nicky/feet.svg"
  24983. }
  24984. },
  24985. maw: {
  24986. height: math.unit(0.9, "feet"),
  24987. name: "Maw",
  24988. image: {
  24989. source: "./media/characters/nicky/maw.svg"
  24990. }
  24991. },
  24992. },
  24993. [
  24994. {
  24995. name: "Normal",
  24996. height: math.unit(5 + 10 / 12, "feet"),
  24997. default: true
  24998. },
  24999. {
  25000. name: "Macro",
  25001. height: math.unit(60, "feet")
  25002. },
  25003. {
  25004. name: "Megamacro",
  25005. height: math.unit(1, "mile")
  25006. },
  25007. ]
  25008. ))
  25009. characterMakers.push(() => makeCharacter(
  25010. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25011. {
  25012. side: {
  25013. height: math.unit(10, "feet"),
  25014. weight: math.unit(600, "lb"),
  25015. name: "Side",
  25016. image: {
  25017. source: "./media/characters/blair/side.svg",
  25018. bottom: 16.6 / 475,
  25019. extra: 458 / 431
  25020. }
  25021. },
  25022. },
  25023. [
  25024. {
  25025. name: "Micro",
  25026. height: math.unit(8, "inches")
  25027. },
  25028. {
  25029. name: "Normal",
  25030. height: math.unit(10, "feet"),
  25031. default: true
  25032. },
  25033. {
  25034. name: "Macro",
  25035. height: math.unit(180, "feet")
  25036. },
  25037. ]
  25038. ))
  25039. characterMakers.push(() => makeCharacter(
  25040. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25041. {
  25042. front: {
  25043. height: math.unit(5 + 4 / 12, "feet"),
  25044. weight: math.unit(125, "lb"),
  25045. name: "Front",
  25046. image: {
  25047. source: "./media/characters/fisher/front.svg",
  25048. extra: 444 / 390,
  25049. bottom: 2 / 444.8
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Micro",
  25056. height: math.unit(4, "inches")
  25057. },
  25058. {
  25059. name: "Normal",
  25060. height: math.unit(5 + 4 / 12, "feet"),
  25061. default: true
  25062. },
  25063. {
  25064. name: "Macro",
  25065. height: math.unit(100, "feet")
  25066. },
  25067. ]
  25068. ))
  25069. characterMakers.push(() => makeCharacter(
  25070. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25071. {
  25072. front: {
  25073. height: math.unit(6.71, "feet"),
  25074. weight: math.unit(200, "lb"),
  25075. capacity: math.unit(1000000, "people"),
  25076. name: "Front",
  25077. image: {
  25078. source: "./media/characters/gliss/front.svg",
  25079. extra: 2347 / 2231,
  25080. bottom: 113 / 2462
  25081. }
  25082. },
  25083. hammerspaceSize: {
  25084. height: math.unit(6.71 * 717, "feet"),
  25085. weight: math.unit(200, "lb"),
  25086. capacity: math.unit(1000000, "people"),
  25087. name: "Hammerspace Size",
  25088. image: {
  25089. source: "./media/characters/gliss/front.svg",
  25090. extra: 2347 / 2231,
  25091. bottom: 113 / 2462
  25092. }
  25093. },
  25094. },
  25095. [
  25096. {
  25097. name: "Normal",
  25098. height: math.unit(6.71, "feet"),
  25099. default: true
  25100. },
  25101. ]
  25102. ))
  25103. characterMakers.push(() => makeCharacter(
  25104. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25105. {
  25106. side: {
  25107. height: math.unit(1.44, "m"),
  25108. weight: math.unit(80, "kg"),
  25109. name: "Side",
  25110. image: {
  25111. source: "./media/characters/dune-anderson/side.svg",
  25112. bottom: 49 / 1426
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Wolf-sized",
  25119. height: math.unit(1.44, "meters")
  25120. },
  25121. {
  25122. name: "Normal",
  25123. height: math.unit(5.05, "meters"),
  25124. default: true
  25125. },
  25126. {
  25127. name: "Big",
  25128. height: math.unit(14.4, "meters")
  25129. },
  25130. {
  25131. name: "Huge",
  25132. height: math.unit(144, "meters")
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25138. {
  25139. front: {
  25140. height: math.unit(7, "feet"),
  25141. weight: math.unit(425, "lb"),
  25142. name: "Front",
  25143. image: {
  25144. source: "./media/characters/hind/front.svg",
  25145. extra: 2091 / 1860,
  25146. bottom: 129 / 2220
  25147. }
  25148. },
  25149. back: {
  25150. height: math.unit(7, "feet"),
  25151. weight: math.unit(425, "lb"),
  25152. name: "Back",
  25153. image: {
  25154. source: "./media/characters/hind/back.svg",
  25155. extra: 2091 / 1860,
  25156. bottom: 24.6 / 2309
  25157. }
  25158. },
  25159. tail: {
  25160. height: math.unit(2.8, "feet"),
  25161. name: "Tail",
  25162. image: {
  25163. source: "./media/characters/hind/tail.svg"
  25164. }
  25165. },
  25166. head: {
  25167. height: math.unit(2.55, "feet"),
  25168. name: "Head",
  25169. image: {
  25170. source: "./media/characters/hind/head.svg"
  25171. }
  25172. },
  25173. },
  25174. [
  25175. {
  25176. name: "XS",
  25177. height: math.unit(0.7, "feet")
  25178. },
  25179. {
  25180. name: "Normal",
  25181. height: math.unit(7, "feet"),
  25182. default: true
  25183. },
  25184. {
  25185. name: "XL",
  25186. height: math.unit(70, "feet")
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25192. {
  25193. front: {
  25194. height: math.unit(2.1, "meters"),
  25195. weight: math.unit(150, "lb"),
  25196. name: "Front",
  25197. image: {
  25198. source: "./media/characters/tharquench-sizestealer/front.svg",
  25199. extra: 1605/1470,
  25200. bottom: 36/1641
  25201. }
  25202. },
  25203. frontAlt: {
  25204. height: math.unit(2.1, "meters"),
  25205. weight: math.unit(150, "lb"),
  25206. name: "Front (Alt)",
  25207. image: {
  25208. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25209. extra: 2318 / 2063,
  25210. bottom: 93.4 / 2410
  25211. }
  25212. },
  25213. },
  25214. [
  25215. {
  25216. name: "Nano",
  25217. height: math.unit(1, "mm")
  25218. },
  25219. {
  25220. name: "Micro",
  25221. height: math.unit(1, "cm")
  25222. },
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(2.1, "meters"),
  25226. default: true
  25227. },
  25228. ]
  25229. ))
  25230. characterMakers.push(() => makeCharacter(
  25231. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25232. {
  25233. front: {
  25234. height: math.unit(7 + 5 / 12, "feet"),
  25235. weight: math.unit(357, "lb"),
  25236. name: "Front",
  25237. image: {
  25238. source: "./media/characters/solex-draconov/front.svg",
  25239. extra: 1993 / 1865,
  25240. bottom: 117 / 2111
  25241. }
  25242. },
  25243. },
  25244. [
  25245. {
  25246. name: "Natural Height",
  25247. height: math.unit(7 + 5 / 12, "feet"),
  25248. default: true
  25249. },
  25250. {
  25251. name: "Macro",
  25252. height: math.unit(350, "feet")
  25253. },
  25254. {
  25255. name: "Macro+",
  25256. height: math.unit(1000, "feet")
  25257. },
  25258. {
  25259. name: "Megamacro",
  25260. height: math.unit(20, "km")
  25261. },
  25262. {
  25263. name: "Megamacro+",
  25264. height: math.unit(1000, "km")
  25265. },
  25266. {
  25267. name: "Gigamacro",
  25268. height: math.unit(2.5, "Gm")
  25269. },
  25270. {
  25271. name: "Teramacro",
  25272. height: math.unit(15, "Tm")
  25273. },
  25274. {
  25275. name: "Galactic",
  25276. height: math.unit(30, "Zm")
  25277. },
  25278. {
  25279. name: "Universal",
  25280. height: math.unit(21000, "Ym")
  25281. },
  25282. {
  25283. name: "Omniversal",
  25284. height: math.unit(9.861e50, "Ym")
  25285. },
  25286. {
  25287. name: "Existential",
  25288. height: math.unit(1e300, "meters")
  25289. },
  25290. ]
  25291. ))
  25292. characterMakers.push(() => makeCharacter(
  25293. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25294. {
  25295. side: {
  25296. height: math.unit(25, "feet"),
  25297. weight: math.unit(90000, "lb"),
  25298. name: "Side",
  25299. image: {
  25300. source: "./media/characters/mandarax/side.svg",
  25301. extra: 614 / 332,
  25302. bottom: 55 / 630
  25303. }
  25304. },
  25305. head: {
  25306. height: math.unit(11.4, "feet"),
  25307. name: "Head",
  25308. image: {
  25309. source: "./media/characters/mandarax/head.svg"
  25310. }
  25311. },
  25312. belly: {
  25313. height: math.unit(33, "feet"),
  25314. name: "Belly",
  25315. capacity: math.unit(500, "people"),
  25316. image: {
  25317. source: "./media/characters/mandarax/belly.svg"
  25318. }
  25319. },
  25320. dick: {
  25321. height: math.unit(8.46, "feet"),
  25322. name: "Dick",
  25323. image: {
  25324. source: "./media/characters/mandarax/dick.svg"
  25325. }
  25326. },
  25327. top: {
  25328. height: math.unit(28, "meters"),
  25329. name: "Top",
  25330. image: {
  25331. source: "./media/characters/mandarax/top.svg"
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Normal",
  25338. height: math.unit(25, "feet"),
  25339. default: true
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25345. {
  25346. front: {
  25347. height: math.unit(5, "feet"),
  25348. weight: math.unit(90, "lb"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/pixil/front.svg",
  25352. extra: 2000 / 1618,
  25353. bottom: 12.3 / 2011
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Normal",
  25360. height: math.unit(5, "feet"),
  25361. default: true
  25362. },
  25363. {
  25364. name: "Megamacro",
  25365. height: math.unit(10, "miles"),
  25366. },
  25367. ]
  25368. ))
  25369. characterMakers.push(() => makeCharacter(
  25370. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25371. {
  25372. front: {
  25373. height: math.unit(7 + 2 / 12, "feet"),
  25374. weight: math.unit(200, "lb"),
  25375. name: "Front",
  25376. image: {
  25377. source: "./media/characters/angel/front.svg",
  25378. extra: 1830 / 1737,
  25379. bottom: 22.6 / 1854,
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Normal",
  25386. height: math.unit(7 + 2 / 12, "feet"),
  25387. default: true
  25388. },
  25389. {
  25390. name: "Macro",
  25391. height: math.unit(1000, "feet")
  25392. },
  25393. {
  25394. name: "Megamacro",
  25395. height: math.unit(2, "miles")
  25396. },
  25397. {
  25398. name: "Gigamacro",
  25399. height: math.unit(20, "earths")
  25400. },
  25401. ]
  25402. ))
  25403. characterMakers.push(() => makeCharacter(
  25404. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25405. {
  25406. front: {
  25407. height: math.unit(5, "feet"),
  25408. weight: math.unit(180, "lb"),
  25409. name: "Front",
  25410. image: {
  25411. source: "./media/characters/mekana/front.svg",
  25412. extra: 1671 / 1605,
  25413. bottom: 3.5 / 1691
  25414. }
  25415. },
  25416. side: {
  25417. height: math.unit(5, "feet"),
  25418. weight: math.unit(180, "lb"),
  25419. name: "Side",
  25420. image: {
  25421. source: "./media/characters/mekana/side.svg",
  25422. extra: 1671 / 1605,
  25423. bottom: 3.5 / 1691
  25424. }
  25425. },
  25426. back: {
  25427. height: math.unit(5, "feet"),
  25428. weight: math.unit(180, "lb"),
  25429. name: "Back",
  25430. image: {
  25431. source: "./media/characters/mekana/back.svg",
  25432. extra: 1671 / 1605,
  25433. bottom: 3.5 / 1691
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Normal",
  25440. height: math.unit(5, "feet"),
  25441. default: true
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25447. {
  25448. front: {
  25449. height: math.unit(4 + 6 / 12, "feet"),
  25450. weight: math.unit(80, "lb"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/pixie/front.svg",
  25454. extra: 1924 / 1825,
  25455. bottom: 22.4 / 1946
  25456. }
  25457. },
  25458. },
  25459. [
  25460. {
  25461. name: "Normal",
  25462. height: math.unit(4 + 6 / 12, "feet"),
  25463. default: true
  25464. },
  25465. {
  25466. name: "Macro",
  25467. height: math.unit(40, "feet")
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(2.1, "meters"),
  25476. weight: math.unit(200, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/the-lascivious/front.svg",
  25480. extra: 1 / 0.893,
  25481. bottom: 3.5 / 573.7
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Human Scale",
  25488. height: math.unit(2.1, "meters")
  25489. },
  25490. {
  25491. name: "Wolxi Scale",
  25492. height: math.unit(46.2, "m"),
  25493. default: true
  25494. },
  25495. {
  25496. name: "Boinker of Buildings",
  25497. height: math.unit(10, "km")
  25498. },
  25499. {
  25500. name: "Shagger of Skyscrapers",
  25501. height: math.unit(40, "km")
  25502. },
  25503. {
  25504. name: "Banger of Boroughs",
  25505. height: math.unit(4000, "km")
  25506. },
  25507. {
  25508. name: "Screwer of States",
  25509. height: math.unit(100000, "km")
  25510. },
  25511. {
  25512. name: "Pounder of Planets",
  25513. height: math.unit(2000000, "km")
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(6, "feet"),
  25522. weight: math.unit(150, "lb"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/aj/front.svg",
  25526. extra: 2039 / 1562,
  25527. bottom: 40 / 2079
  25528. }
  25529. },
  25530. },
  25531. [
  25532. {
  25533. name: "Normal",
  25534. height: math.unit(11 + 6 / 12, "feet"),
  25535. default: true
  25536. },
  25537. {
  25538. name: "Megamacro",
  25539. height: math.unit(60, "megameters")
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25545. {
  25546. side: {
  25547. height: math.unit(31 + 8 / 12, "feet"),
  25548. weight: math.unit(75000, "kg"),
  25549. name: "Side",
  25550. image: {
  25551. source: "./media/characters/koros/side.svg",
  25552. extra: 1442 / 1297,
  25553. bottom: 122.7 / 1562
  25554. }
  25555. },
  25556. dicksKingsCrown: {
  25557. height: math.unit(6, "feet"),
  25558. name: "Dicks (King's Crown)",
  25559. image: {
  25560. source: "./media/characters/koros/dicks-kings-crown.svg"
  25561. }
  25562. },
  25563. dicksTailSet: {
  25564. height: math.unit(3, "feet"),
  25565. name: "Dicks (Tail Set)",
  25566. image: {
  25567. source: "./media/characters/koros/dicks-tail-set.svg"
  25568. }
  25569. },
  25570. dickCumming: {
  25571. height: math.unit(7.98, "feet"),
  25572. name: "Dick (Cumming)",
  25573. image: {
  25574. source: "./media/characters/koros/dick-cumming.svg"
  25575. }
  25576. },
  25577. dicksBack: {
  25578. height: math.unit(5.9, "feet"),
  25579. name: "Dicks (Back)",
  25580. image: {
  25581. source: "./media/characters/koros/dicks-back.svg"
  25582. }
  25583. },
  25584. dicksFront: {
  25585. height: math.unit(3.72, "feet"),
  25586. name: "Dicks (Front)",
  25587. image: {
  25588. source: "./media/characters/koros/dicks-front.svg"
  25589. }
  25590. },
  25591. dicksPeeking: {
  25592. height: math.unit(3.0, "feet"),
  25593. name: "Dicks (Peeking)",
  25594. image: {
  25595. source: "./media/characters/koros/dicks-peeking.svg"
  25596. }
  25597. },
  25598. eye: {
  25599. height: math.unit(1.7, "feet"),
  25600. name: "Eye",
  25601. image: {
  25602. source: "./media/characters/koros/eye.svg"
  25603. }
  25604. },
  25605. headFront: {
  25606. height: math.unit(11.69, "feet"),
  25607. name: "Head (Front)",
  25608. image: {
  25609. source: "./media/characters/koros/head-front.svg"
  25610. }
  25611. },
  25612. headSide: {
  25613. height: math.unit(14, "feet"),
  25614. name: "Head (Side)",
  25615. image: {
  25616. source: "./media/characters/koros/head-side.svg"
  25617. }
  25618. },
  25619. leg: {
  25620. height: math.unit(17, "feet"),
  25621. name: "Leg",
  25622. image: {
  25623. source: "./media/characters/koros/leg.svg"
  25624. }
  25625. },
  25626. mawSide: {
  25627. height: math.unit(12.8, "feet"),
  25628. name: "Maw (Side)",
  25629. image: {
  25630. source: "./media/characters/koros/maw-side.svg"
  25631. }
  25632. },
  25633. mawSpitting: {
  25634. height: math.unit(17, "feet"),
  25635. name: "Maw (Spitting)",
  25636. image: {
  25637. source: "./media/characters/koros/maw-spitting.svg"
  25638. }
  25639. },
  25640. slit: {
  25641. height: math.unit(2.8, "feet"),
  25642. name: "Slit",
  25643. image: {
  25644. source: "./media/characters/koros/slit.svg"
  25645. }
  25646. },
  25647. stomach: {
  25648. height: math.unit(6.8, "feet"),
  25649. capacity: math.unit(20, "people"),
  25650. name: "Stomach",
  25651. image: {
  25652. source: "./media/characters/koros/stomach.svg"
  25653. }
  25654. },
  25655. wingspanBottom: {
  25656. height: math.unit(114, "feet"),
  25657. name: "Wingspan (Bottom)",
  25658. image: {
  25659. source: "./media/characters/koros/wingspan-bottom.svg"
  25660. }
  25661. },
  25662. wingspanTop: {
  25663. height: math.unit(104, "feet"),
  25664. name: "Wingspan (Top)",
  25665. image: {
  25666. source: "./media/characters/koros/wingspan-top.svg"
  25667. }
  25668. },
  25669. },
  25670. [
  25671. {
  25672. name: "Normal",
  25673. height: math.unit(31 + 8 / 12, "feet"),
  25674. default: true
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25680. {
  25681. front: {
  25682. height: math.unit(18 + 5 / 12, "feet"),
  25683. weight: math.unit(3750, "kg"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/vexx/front.svg",
  25687. extra: 426 / 396,
  25688. bottom: 31.5 / 458
  25689. }
  25690. },
  25691. maw: {
  25692. height: math.unit(6, "feet"),
  25693. name: "Maw",
  25694. image: {
  25695. source: "./media/characters/vexx/maw.svg"
  25696. }
  25697. },
  25698. },
  25699. [
  25700. {
  25701. name: "Normal",
  25702. height: math.unit(18 + 5 / 12, "feet"),
  25703. default: true
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25709. {
  25710. front: {
  25711. height: math.unit(17 + 6 / 12, "feet"),
  25712. weight: math.unit(150, "lb"),
  25713. name: "Front",
  25714. image: {
  25715. source: "./media/characters/baadra/front.svg",
  25716. extra: 3137 / 2890,
  25717. bottom: 168.4 / 3305
  25718. }
  25719. },
  25720. back: {
  25721. height: math.unit(17 + 6 / 12, "feet"),
  25722. weight: math.unit(150, "lb"),
  25723. name: "Back",
  25724. image: {
  25725. source: "./media/characters/baadra/back.svg",
  25726. extra: 3142 / 2890,
  25727. bottom: 220 / 3371
  25728. }
  25729. },
  25730. head: {
  25731. height: math.unit(5.45, "feet"),
  25732. name: "Head",
  25733. image: {
  25734. source: "./media/characters/baadra/head.svg"
  25735. }
  25736. },
  25737. headAngry: {
  25738. height: math.unit(4.95, "feet"),
  25739. name: "Head (Angry)",
  25740. image: {
  25741. source: "./media/characters/baadra/head-angry.svg"
  25742. }
  25743. },
  25744. headOpen: {
  25745. height: math.unit(6, "feet"),
  25746. name: "Head (Open)",
  25747. image: {
  25748. source: "./media/characters/baadra/head-open.svg"
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(17 + 6 / 12, "feet"),
  25756. default: true
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(7 + 3 / 12, "feet"),
  25765. weight: math.unit(180, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/juri/front.svg",
  25769. extra: 1401 / 1237,
  25770. bottom: 18.5 / 1418
  25771. }
  25772. },
  25773. side: {
  25774. height: math.unit(7 + 3 / 12, "feet"),
  25775. weight: math.unit(180, "lb"),
  25776. name: "Side",
  25777. image: {
  25778. source: "./media/characters/juri/side.svg",
  25779. extra: 1424 / 1242,
  25780. bottom: 18.5 / 1447
  25781. }
  25782. },
  25783. sitting: {
  25784. height: math.unit(6, "feet"),
  25785. weight: math.unit(180, "lb"),
  25786. name: "Sitting",
  25787. image: {
  25788. source: "./media/characters/juri/sitting.svg",
  25789. extra: 1270 / 1143,
  25790. bottom: 100 / 1343
  25791. }
  25792. },
  25793. back: {
  25794. height: math.unit(7 + 3 / 12, "feet"),
  25795. weight: math.unit(180, "lb"),
  25796. name: "Back",
  25797. image: {
  25798. source: "./media/characters/juri/back.svg",
  25799. extra: 1377 / 1240,
  25800. bottom: 23.7 / 1405
  25801. }
  25802. },
  25803. maw: {
  25804. height: math.unit(2.8, "feet"),
  25805. name: "Maw",
  25806. image: {
  25807. source: "./media/characters/juri/maw.svg"
  25808. }
  25809. },
  25810. stomach: {
  25811. height: math.unit(0.89, "feet"),
  25812. capacity: math.unit(4, "liters"),
  25813. name: "Stomach",
  25814. image: {
  25815. source: "./media/characters/juri/stomach.svg"
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Normal",
  25822. height: math.unit(7 + 3 / 12, "feet"),
  25823. default: true
  25824. },
  25825. ]
  25826. ))
  25827. characterMakers.push(() => makeCharacter(
  25828. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25829. {
  25830. fox: {
  25831. height: math.unit(5 + 6 / 12, "feet"),
  25832. weight: math.unit(140, "lb"),
  25833. name: "Fox",
  25834. image: {
  25835. source: "./media/characters/maxene-sita/fox.svg",
  25836. extra: 146 / 138,
  25837. bottom: 2.1 / 148.19
  25838. }
  25839. },
  25840. foxLaying: {
  25841. height: math.unit(1.70, "feet"),
  25842. weight: math.unit(140, "lb"),
  25843. name: "Fox (Laying)",
  25844. image: {
  25845. source: "./media/characters/maxene-sita/fox-laying.svg",
  25846. extra: 910 / 572,
  25847. bottom: 71 / 981
  25848. }
  25849. },
  25850. kitsune: {
  25851. height: math.unit(10, "feet"),
  25852. weight: math.unit(800, "lb"),
  25853. name: "Kitsune",
  25854. image: {
  25855. source: "./media/characters/maxene-sita/kitsune.svg",
  25856. extra: 185 / 176,
  25857. bottom: 4.7 / 189.9
  25858. }
  25859. },
  25860. hellhound: {
  25861. height: math.unit(10, "feet"),
  25862. weight: math.unit(700, "lb"),
  25863. name: "Hellhound",
  25864. image: {
  25865. source: "./media/characters/maxene-sita/hellhound.svg",
  25866. extra: 1600 / 1545,
  25867. bottom: 81 / 1681
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Normal",
  25874. height: math.unit(5 + 6 / 12, "feet"),
  25875. default: true
  25876. },
  25877. ]
  25878. ))
  25879. characterMakers.push(() => makeCharacter(
  25880. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25881. {
  25882. front: {
  25883. height: math.unit(3 + 4 / 12, "feet"),
  25884. weight: math.unit(70, "lb"),
  25885. name: "Front",
  25886. image: {
  25887. source: "./media/characters/maia/front.svg",
  25888. extra: 227 / 219.5,
  25889. bottom: 40 / 267
  25890. }
  25891. },
  25892. back: {
  25893. height: math.unit(3 + 4 / 12, "feet"),
  25894. weight: math.unit(70, "lb"),
  25895. name: "Back",
  25896. image: {
  25897. source: "./media/characters/maia/back.svg",
  25898. extra: 237 / 225
  25899. }
  25900. },
  25901. },
  25902. [
  25903. {
  25904. name: "Normal",
  25905. height: math.unit(3 + 4 / 12, "feet"),
  25906. default: true
  25907. },
  25908. ]
  25909. ))
  25910. characterMakers.push(() => makeCharacter(
  25911. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25912. {
  25913. front: {
  25914. height: math.unit(5 + 10 / 12, "feet"),
  25915. weight: math.unit(197, "lb"),
  25916. name: "Front",
  25917. image: {
  25918. source: "./media/characters/jabaro/front.svg",
  25919. extra: 225 / 216,
  25920. bottom: 5.06 / 230
  25921. }
  25922. },
  25923. back: {
  25924. height: math.unit(5 + 10 / 12, "feet"),
  25925. weight: math.unit(197, "lb"),
  25926. name: "Back",
  25927. image: {
  25928. source: "./media/characters/jabaro/back.svg",
  25929. extra: 225 / 219,
  25930. bottom: 1.9 / 227
  25931. }
  25932. },
  25933. },
  25934. [
  25935. {
  25936. name: "Normal",
  25937. height: math.unit(5 + 10 / 12, "feet"),
  25938. default: true
  25939. },
  25940. ]
  25941. ))
  25942. characterMakers.push(() => makeCharacter(
  25943. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25944. {
  25945. front: {
  25946. height: math.unit(5 + 8 / 12, "feet"),
  25947. weight: math.unit(139, "lb"),
  25948. name: "Front",
  25949. image: {
  25950. source: "./media/characters/risa/front.svg",
  25951. extra: 270 / 260,
  25952. bottom: 11.2 / 282
  25953. }
  25954. },
  25955. back: {
  25956. height: math.unit(5 + 8 / 12, "feet"),
  25957. weight: math.unit(139, "lb"),
  25958. name: "Back",
  25959. image: {
  25960. source: "./media/characters/risa/back.svg",
  25961. extra: 264 / 255,
  25962. bottom: 4 / 268
  25963. }
  25964. },
  25965. },
  25966. [
  25967. {
  25968. name: "Normal",
  25969. height: math.unit(5 + 8 / 12, "feet"),
  25970. default: true
  25971. },
  25972. ]
  25973. ))
  25974. characterMakers.push(() => makeCharacter(
  25975. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25976. {
  25977. front: {
  25978. height: math.unit(2 + 11 / 12, "feet"),
  25979. weight: math.unit(30, "lb"),
  25980. name: "Front",
  25981. image: {
  25982. source: "./media/characters/weatley/front.svg",
  25983. bottom: 10.7 / 414,
  25984. extra: 403.5 / 362
  25985. }
  25986. },
  25987. back: {
  25988. height: math.unit(2 + 11 / 12, "feet"),
  25989. weight: math.unit(30, "lb"),
  25990. name: "Back",
  25991. image: {
  25992. source: "./media/characters/weatley/back.svg",
  25993. bottom: 10.7 / 414,
  25994. extra: 403.5 / 362
  25995. }
  25996. },
  25997. },
  25998. [
  25999. {
  26000. name: "Normal",
  26001. height: math.unit(2 + 11 / 12, "feet"),
  26002. default: true
  26003. },
  26004. ]
  26005. ))
  26006. characterMakers.push(() => makeCharacter(
  26007. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26008. {
  26009. front: {
  26010. height: math.unit(5 + 2 / 12, "feet"),
  26011. weight: math.unit(50, "kg"),
  26012. name: "Front",
  26013. image: {
  26014. source: "./media/characters/mercury-crescent/front.svg",
  26015. extra: 1088 / 1033,
  26016. bottom: 18.9 / 1109
  26017. }
  26018. },
  26019. },
  26020. [
  26021. {
  26022. name: "Normal",
  26023. height: math.unit(5 + 2 / 12, "feet"),
  26024. default: true
  26025. },
  26026. ]
  26027. ))
  26028. characterMakers.push(() => makeCharacter(
  26029. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26030. {
  26031. front: {
  26032. height: math.unit(2, "feet"),
  26033. weight: math.unit(15, "kg"),
  26034. name: "Front",
  26035. image: {
  26036. source: "./media/characters/diamond-jones/front.svg",
  26037. extra: 727/723,
  26038. bottom: 46/773
  26039. }
  26040. },
  26041. },
  26042. [
  26043. {
  26044. name: "Normal",
  26045. height: math.unit(2, "feet"),
  26046. default: true
  26047. },
  26048. ]
  26049. ))
  26050. characterMakers.push(() => makeCharacter(
  26051. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26052. {
  26053. front: {
  26054. height: math.unit(3, "feet"),
  26055. weight: math.unit(30, "kg"),
  26056. name: "Front",
  26057. image: {
  26058. source: "./media/characters/sweet-bit/front.svg",
  26059. extra: 675 / 567,
  26060. bottom: 27.7 / 703
  26061. }
  26062. },
  26063. },
  26064. [
  26065. {
  26066. name: "Normal",
  26067. height: math.unit(3, "feet"),
  26068. default: true
  26069. },
  26070. ]
  26071. ))
  26072. characterMakers.push(() => makeCharacter(
  26073. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26074. {
  26075. side: {
  26076. height: math.unit(9.178, "feet"),
  26077. weight: math.unit(500, "lb"),
  26078. name: "Side",
  26079. image: {
  26080. source: "./media/characters/umbrazen/side.svg",
  26081. extra: 1730 / 1473,
  26082. bottom: 34.6 / 1765
  26083. }
  26084. },
  26085. },
  26086. [
  26087. {
  26088. name: "Normal",
  26089. height: math.unit(9.178, "feet"),
  26090. default: true
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(10, "feet"),
  26099. weight: math.unit(750, "lb"),
  26100. name: "Front",
  26101. image: {
  26102. source: "./media/characters/arlist/front.svg",
  26103. extra: 961 / 778,
  26104. bottom: 6.2 / 986
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Normal",
  26111. height: math.unit(10, "feet"),
  26112. default: true
  26113. },
  26114. ]
  26115. ))
  26116. characterMakers.push(() => makeCharacter(
  26117. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26118. {
  26119. front: {
  26120. height: math.unit(5 + 1 / 12, "feet"),
  26121. weight: math.unit(110, "lb"),
  26122. name: "Front",
  26123. image: {
  26124. source: "./media/characters/aradel/front.svg",
  26125. extra: 324 / 303,
  26126. bottom: 3.6 / 329.4
  26127. }
  26128. },
  26129. },
  26130. [
  26131. {
  26132. name: "Normal",
  26133. height: math.unit(5 + 1 / 12, "feet"),
  26134. default: true
  26135. },
  26136. ]
  26137. ))
  26138. characterMakers.push(() => makeCharacter(
  26139. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26140. {
  26141. front: {
  26142. height: math.unit(3 + 8 / 12, "feet"),
  26143. weight: math.unit(50, "lb"),
  26144. name: "Front",
  26145. image: {
  26146. source: "./media/characters/serryn/front.svg",
  26147. extra: 1792 / 1656,
  26148. bottom: 43.5 / 1840
  26149. }
  26150. },
  26151. },
  26152. [
  26153. {
  26154. name: "Normal",
  26155. height: math.unit(3 + 8 / 12, "feet"),
  26156. default: true
  26157. },
  26158. ]
  26159. ))
  26160. characterMakers.push(() => makeCharacter(
  26161. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26162. {
  26163. front: {
  26164. height: math.unit(7 + 10 / 12, "feet"),
  26165. weight: math.unit(255, "lb"),
  26166. name: "Front",
  26167. image: {
  26168. source: "./media/characters/xavier-thyme/front.svg",
  26169. extra: 3733 / 3642,
  26170. bottom: 131 / 3869
  26171. }
  26172. },
  26173. frontRaven: {
  26174. height: math.unit(7 + 10 / 12, "feet"),
  26175. weight: math.unit(255, "lb"),
  26176. name: "Front (Raven)",
  26177. image: {
  26178. source: "./media/characters/xavier-thyme/front-raven.svg",
  26179. extra: 4385 / 3642,
  26180. bottom: 131 / 4517
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Normal",
  26187. height: math.unit(7 + 10 / 12, "feet"),
  26188. default: true
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(1.6, "m"),
  26197. weight: math.unit(50, "kg"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/kiki/front.svg",
  26201. extra: 4682 / 3610,
  26202. bottom: 115 / 4777
  26203. }
  26204. },
  26205. },
  26206. [
  26207. {
  26208. name: "Normal",
  26209. height: math.unit(1.6, "meters"),
  26210. default: true
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26216. {
  26217. front: {
  26218. height: math.unit(50, "m"),
  26219. weight: math.unit(500, "tonnes"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/ryoko/front.svg",
  26223. extra: 4632 / 3926,
  26224. bottom: 193 / 4823
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Normal",
  26231. height: math.unit(50, "meters"),
  26232. default: true
  26233. },
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26238. {
  26239. front: {
  26240. height: math.unit(30, "m"),
  26241. weight: math.unit(22, "tonnes"),
  26242. name: "Front",
  26243. image: {
  26244. source: "./media/characters/elio/front.svg",
  26245. extra: 4582 / 3720,
  26246. bottom: 236 / 4828
  26247. }
  26248. },
  26249. },
  26250. [
  26251. {
  26252. name: "Normal",
  26253. height: math.unit(30, "meters"),
  26254. default: true
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26260. {
  26261. front: {
  26262. height: math.unit(6 + 3 / 12, "feet"),
  26263. weight: math.unit(120, "lb"),
  26264. name: "Front",
  26265. image: {
  26266. source: "./media/characters/azura/front.svg",
  26267. extra: 1149 / 1135,
  26268. bottom: 45 / 1194
  26269. }
  26270. },
  26271. frontClothed: {
  26272. height: math.unit(6 + 3 / 12, "feet"),
  26273. weight: math.unit(120, "lb"),
  26274. name: "Front (Clothed)",
  26275. image: {
  26276. source: "./media/characters/azura/front-clothed.svg",
  26277. extra: 1149 / 1135,
  26278. bottom: 45 / 1194
  26279. }
  26280. },
  26281. },
  26282. [
  26283. {
  26284. name: "Normal",
  26285. height: math.unit(6 + 3 / 12, "feet"),
  26286. default: true
  26287. },
  26288. {
  26289. name: "Macro",
  26290. height: math.unit(20 + 6 / 12, "feet")
  26291. },
  26292. {
  26293. name: "Megamacro",
  26294. height: math.unit(12, "miles")
  26295. },
  26296. {
  26297. name: "Gigamacro",
  26298. height: math.unit(10000, "miles")
  26299. },
  26300. {
  26301. name: "Teramacro",
  26302. height: math.unit(900000, "miles")
  26303. },
  26304. ]
  26305. ))
  26306. characterMakers.push(() => makeCharacter(
  26307. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26308. {
  26309. front: {
  26310. height: math.unit(12, "feet"),
  26311. weight: math.unit(1, "ton"),
  26312. capacity: math.unit(660000, "gallons"),
  26313. name: "Front",
  26314. image: {
  26315. source: "./media/characters/zeus/front.svg",
  26316. extra: 5005 / 4717,
  26317. bottom: 363 / 5388
  26318. }
  26319. },
  26320. },
  26321. [
  26322. {
  26323. name: "Normal",
  26324. height: math.unit(12, "feet")
  26325. },
  26326. {
  26327. name: "Preferred Size",
  26328. height: math.unit(0.5, "miles"),
  26329. default: true
  26330. },
  26331. {
  26332. name: "Giga Horse",
  26333. height: math.unit(300, "miles")
  26334. },
  26335. {
  26336. name: "Riding Planets",
  26337. height: math.unit(30, "megameters")
  26338. },
  26339. {
  26340. name: "Cosmic Giant",
  26341. height: math.unit(3, "zettameters")
  26342. },
  26343. {
  26344. name: "Breeding God",
  26345. height: math.unit(9.92e22, "yottameters")
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26351. {
  26352. side: {
  26353. height: math.unit(9, "feet"),
  26354. weight: math.unit(1500, "kg"),
  26355. name: "Side",
  26356. image: {
  26357. source: "./media/characters/fang/side.svg",
  26358. extra: 924 / 866,
  26359. bottom: 47.5 / 972.3
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(9, "feet"),
  26367. default: true
  26368. },
  26369. {
  26370. name: "Macro",
  26371. height: math.unit(75 + 6 / 12, "feet")
  26372. },
  26373. {
  26374. name: "Teramacro",
  26375. height: math.unit(50000, "miles")
  26376. },
  26377. ]
  26378. ))
  26379. characterMakers.push(() => makeCharacter(
  26380. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26381. {
  26382. front: {
  26383. height: math.unit(10, "feet"),
  26384. weight: math.unit(2, "tons"),
  26385. name: "Front",
  26386. image: {
  26387. source: "./media/characters/rekhit/front.svg",
  26388. extra: 2796 / 2590,
  26389. bottom: 225 / 3022
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(10, "feet"),
  26397. default: true
  26398. },
  26399. {
  26400. name: "Macro",
  26401. height: math.unit(500, "feet")
  26402. },
  26403. ]
  26404. ))
  26405. characterMakers.push(() => makeCharacter(
  26406. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26407. {
  26408. front: {
  26409. height: math.unit(7 + 6.451 / 12, "feet"),
  26410. weight: math.unit(310, "lb"),
  26411. name: "Front",
  26412. image: {
  26413. source: "./media/characters/dahlia-verrick/front.svg",
  26414. extra: 1488 / 1365,
  26415. bottom: 6.2 / 1495
  26416. }
  26417. },
  26418. back: {
  26419. height: math.unit(7 + 6.451 / 12, "feet"),
  26420. weight: math.unit(310, "lb"),
  26421. name: "Back",
  26422. image: {
  26423. source: "./media/characters/dahlia-verrick/back.svg",
  26424. extra: 1472 / 1351,
  26425. bottom: 5.28 / 1477
  26426. }
  26427. },
  26428. frontBusiness: {
  26429. height: math.unit(7 + 6.451 / 12, "feet"),
  26430. weight: math.unit(200, "lb"),
  26431. name: "Front (Business)",
  26432. image: {
  26433. source: "./media/characters/dahlia-verrick/front-business.svg",
  26434. extra: 1478 / 1381,
  26435. bottom: 5.5 / 1484
  26436. }
  26437. },
  26438. frontCasual: {
  26439. height: math.unit(7 + 6.451 / 12, "feet"),
  26440. weight: math.unit(200, "lb"),
  26441. name: "Front (Casual)",
  26442. image: {
  26443. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26444. extra: 1478 / 1381,
  26445. bottom: 5.5 / 1484
  26446. }
  26447. },
  26448. },
  26449. [
  26450. {
  26451. name: "Travel-Sized",
  26452. height: math.unit(7.45, "inches")
  26453. },
  26454. {
  26455. name: "Normal",
  26456. height: math.unit(7 + 6.451 / 12, "feet"),
  26457. default: true
  26458. },
  26459. {
  26460. name: "Hitting the Town",
  26461. height: math.unit(37 + 8 / 12, "feet")
  26462. },
  26463. {
  26464. name: "Stomp in the Suburbs",
  26465. height: math.unit(964 + 9.728 / 12, "feet")
  26466. },
  26467. {
  26468. name: "Sit on the City",
  26469. height: math.unit(61747 + 10.592 / 12, "feet")
  26470. },
  26471. {
  26472. name: "Glomp the Globe",
  26473. height: math.unit(252919327 + 4.832 / 12, "feet")
  26474. },
  26475. ]
  26476. ))
  26477. characterMakers.push(() => makeCharacter(
  26478. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26479. {
  26480. front: {
  26481. height: math.unit(6 + 4 / 12, "feet"),
  26482. weight: math.unit(320, "lb"),
  26483. name: "Front",
  26484. image: {
  26485. source: "./media/characters/balina-mahigan/front.svg",
  26486. extra: 447 / 428,
  26487. bottom: 18 / 466
  26488. }
  26489. },
  26490. back: {
  26491. height: math.unit(6 + 4 / 12, "feet"),
  26492. weight: math.unit(320, "lb"),
  26493. name: "Back",
  26494. image: {
  26495. source: "./media/characters/balina-mahigan/back.svg",
  26496. extra: 445 / 428,
  26497. bottom: 4.07 / 448
  26498. }
  26499. },
  26500. arm: {
  26501. height: math.unit(1.88, "feet"),
  26502. name: "Arm",
  26503. image: {
  26504. source: "./media/characters/balina-mahigan/arm.svg"
  26505. }
  26506. },
  26507. backPort: {
  26508. height: math.unit(0.685, "feet"),
  26509. name: "Back Port",
  26510. image: {
  26511. source: "./media/characters/balina-mahigan/back-port.svg"
  26512. }
  26513. },
  26514. hoofpaw: {
  26515. height: math.unit(1.41, "feet"),
  26516. name: "Hoofpaw",
  26517. image: {
  26518. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26519. }
  26520. },
  26521. leftHandBack: {
  26522. height: math.unit(0.938, "feet"),
  26523. name: "Left Hand (Back)",
  26524. image: {
  26525. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26526. }
  26527. },
  26528. leftHandFront: {
  26529. height: math.unit(0.938, "feet"),
  26530. name: "Left Hand (Front)",
  26531. image: {
  26532. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26533. }
  26534. },
  26535. rightHandBack: {
  26536. height: math.unit(0.95, "feet"),
  26537. name: "Right Hand (Back)",
  26538. image: {
  26539. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26540. }
  26541. },
  26542. rightHandFront: {
  26543. height: math.unit(0.95, "feet"),
  26544. name: "Right Hand (Front)",
  26545. image: {
  26546. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26547. }
  26548. },
  26549. },
  26550. [
  26551. {
  26552. name: "Normal",
  26553. height: math.unit(6 + 4 / 12, "feet"),
  26554. default: true
  26555. },
  26556. ]
  26557. ))
  26558. characterMakers.push(() => makeCharacter(
  26559. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26560. {
  26561. front: {
  26562. height: math.unit(6, "feet"),
  26563. weight: math.unit(320, "lb"),
  26564. name: "Front",
  26565. image: {
  26566. source: "./media/characters/balina-mejeri/front.svg",
  26567. extra: 517 / 488,
  26568. bottom: 44.2 / 561
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Normal",
  26575. height: math.unit(6 + 4 / 12, "feet")
  26576. },
  26577. {
  26578. name: "Business",
  26579. height: math.unit(155, "feet"),
  26580. default: true
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26586. {
  26587. kneeling: {
  26588. height: math.unit(6 + 4 / 12, "feet"),
  26589. weight: math.unit(300 * 20, "lb"),
  26590. name: "Kneeling",
  26591. image: {
  26592. source: "./media/characters/balbarian/kneeling.svg",
  26593. extra: 922 / 862,
  26594. bottom: 42.4 / 965
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(6 + 4 / 12, "feet")
  26602. },
  26603. {
  26604. name: "Treasured",
  26605. height: math.unit(18 + 9 / 12, "feet"),
  26606. default: true
  26607. },
  26608. {
  26609. name: "Macro",
  26610. height: math.unit(900, "feet")
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26616. {
  26617. front: {
  26618. height: math.unit(6 + 4 / 12, "feet"),
  26619. weight: math.unit(325, "lb"),
  26620. name: "Front",
  26621. image: {
  26622. source: "./media/characters/balina-amarini/front.svg",
  26623. extra: 415 / 403,
  26624. bottom: 19 / 433.4
  26625. }
  26626. },
  26627. back: {
  26628. height: math.unit(6 + 4 / 12, "feet"),
  26629. weight: math.unit(325, "lb"),
  26630. name: "Back",
  26631. image: {
  26632. source: "./media/characters/balina-amarini/back.svg",
  26633. extra: 415 / 403,
  26634. bottom: 13.5 / 432
  26635. }
  26636. },
  26637. overdrive: {
  26638. height: math.unit(6 + 4 / 12, "feet"),
  26639. weight: math.unit(400, "lb"),
  26640. name: "Overdrive",
  26641. image: {
  26642. source: "./media/characters/balina-amarini/overdrive.svg",
  26643. extra: 269 / 259,
  26644. bottom: 12 / 282
  26645. }
  26646. },
  26647. },
  26648. [
  26649. {
  26650. name: "Boom",
  26651. height: math.unit(9 + 10 / 12, "feet"),
  26652. default: true
  26653. },
  26654. {
  26655. name: "Macro",
  26656. height: math.unit(280, "feet")
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26662. {
  26663. goddess: {
  26664. height: math.unit(600, "feet"),
  26665. weight: math.unit(2000000, "tons"),
  26666. name: "Goddess",
  26667. image: {
  26668. source: "./media/characters/lady-kubwa/goddess.svg",
  26669. extra: 1240.5 / 1223,
  26670. bottom: 22 / 1263
  26671. }
  26672. },
  26673. goddesser: {
  26674. height: math.unit(900, "feet"),
  26675. weight: math.unit(20000000, "lb"),
  26676. name: "Goddess-er",
  26677. image: {
  26678. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26679. extra: 899 / 888,
  26680. bottom: 12.6 / 912
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Macro",
  26687. height: math.unit(600, "feet"),
  26688. default: true
  26689. },
  26690. {
  26691. name: "Megamacro",
  26692. height: math.unit(250, "miles")
  26693. },
  26694. ]
  26695. ))
  26696. characterMakers.push(() => makeCharacter(
  26697. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26698. {
  26699. front: {
  26700. height: math.unit(7 + 7 / 12, "feet"),
  26701. weight: math.unit(250, "lb"),
  26702. name: "Front",
  26703. image: {
  26704. source: "./media/characters/tala-grovehorn/front.svg",
  26705. extra: 2636 / 2525,
  26706. bottom: 147 / 2781
  26707. }
  26708. },
  26709. back: {
  26710. height: math.unit(7 + 7 / 12, "feet"),
  26711. weight: math.unit(250, "lb"),
  26712. name: "Back",
  26713. image: {
  26714. source: "./media/characters/tala-grovehorn/back.svg",
  26715. extra: 2635 / 2539,
  26716. bottom: 100 / 2732.8
  26717. }
  26718. },
  26719. mouth: {
  26720. height: math.unit(1.15, "feet"),
  26721. name: "Mouth",
  26722. image: {
  26723. source: "./media/characters/tala-grovehorn/mouth.svg"
  26724. }
  26725. },
  26726. dick: {
  26727. height: math.unit(2.36, "feet"),
  26728. name: "Dick",
  26729. image: {
  26730. source: "./media/characters/tala-grovehorn/dick.svg"
  26731. }
  26732. },
  26733. slit: {
  26734. height: math.unit(0.61, "feet"),
  26735. name: "Slit",
  26736. image: {
  26737. source: "./media/characters/tala-grovehorn/slit.svg"
  26738. }
  26739. },
  26740. },
  26741. [
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26746. {
  26747. front: {
  26748. height: math.unit(7 + 7 / 12, "feet"),
  26749. weight: math.unit(225, "lb"),
  26750. name: "Front",
  26751. image: {
  26752. source: "./media/characters/epona/front.svg",
  26753. extra: 2445 / 2290,
  26754. bottom: 251 / 2696
  26755. }
  26756. },
  26757. back: {
  26758. height: math.unit(7 + 7 / 12, "feet"),
  26759. weight: math.unit(225, "lb"),
  26760. name: "Back",
  26761. image: {
  26762. source: "./media/characters/epona/back.svg",
  26763. extra: 2546 / 2408,
  26764. bottom: 44 / 2589
  26765. }
  26766. },
  26767. genitals: {
  26768. height: math.unit(1.5, "feet"),
  26769. name: "Genitals",
  26770. image: {
  26771. source: "./media/characters/epona/genitals.svg"
  26772. }
  26773. },
  26774. },
  26775. [
  26776. {
  26777. name: "Normal",
  26778. height: math.unit(7 + 7 / 12, "feet"),
  26779. default: true
  26780. },
  26781. ]
  26782. ))
  26783. characterMakers.push(() => makeCharacter(
  26784. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26785. {
  26786. front: {
  26787. height: math.unit(7, "feet"),
  26788. weight: math.unit(518, "lb"),
  26789. name: "Front",
  26790. image: {
  26791. source: "./media/characters/avia-bloodbourn/front.svg",
  26792. extra: 1466 / 1350,
  26793. bottom: 65 / 1527
  26794. }
  26795. },
  26796. },
  26797. [
  26798. ]
  26799. ))
  26800. characterMakers.push(() => makeCharacter(
  26801. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26802. {
  26803. front: {
  26804. height: math.unit(9.35, "feet"),
  26805. weight: math.unit(600, "lb"),
  26806. name: "Front",
  26807. image: {
  26808. source: "./media/characters/amera/front.svg",
  26809. extra: 891 / 818,
  26810. bottom: 30 / 922.7
  26811. }
  26812. },
  26813. back: {
  26814. height: math.unit(9.35, "feet"),
  26815. weight: math.unit(600, "lb"),
  26816. name: "Back",
  26817. image: {
  26818. source: "./media/characters/amera/back.svg",
  26819. extra: 876 / 824,
  26820. bottom: 6.8 / 884
  26821. }
  26822. },
  26823. dick: {
  26824. height: math.unit(2.14, "feet"),
  26825. name: "Dick",
  26826. image: {
  26827. source: "./media/characters/amera/dick.svg"
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Normal",
  26834. height: math.unit(9.35, "feet"),
  26835. default: true
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26841. {
  26842. kneeling: {
  26843. height: math.unit(3 + 4 / 12, "feet"),
  26844. weight: math.unit(90, "lb"),
  26845. name: "Kneeling",
  26846. image: {
  26847. source: "./media/characters/rosewen/kneeling.svg",
  26848. extra: 1835 / 1571,
  26849. bottom: 27.7 / 1862
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(3 + 4 / 12, "feet"),
  26857. default: true
  26858. },
  26859. ]
  26860. ))
  26861. characterMakers.push(() => makeCharacter(
  26862. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26863. {
  26864. front: {
  26865. height: math.unit(5 + 10 / 12, "feet"),
  26866. weight: math.unit(200, "lb"),
  26867. name: "Front",
  26868. image: {
  26869. source: "./media/characters/sabah/front.svg",
  26870. extra: 849 / 763,
  26871. bottom: 33.9 / 881
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(5 + 10 / 12, "feet"),
  26879. default: true
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26885. {
  26886. front: {
  26887. height: math.unit(3 + 5 / 12, "feet"),
  26888. weight: math.unit(40, "kg"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/purple-flame/front.svg",
  26892. extra: 1577 / 1412,
  26893. bottom: 97 / 1694
  26894. }
  26895. },
  26896. frontDressed: {
  26897. height: math.unit(3 + 5 / 12, "feet"),
  26898. weight: math.unit(40, "kg"),
  26899. name: "Front (Dressed)",
  26900. image: {
  26901. source: "./media/characters/purple-flame/front-dressed.svg",
  26902. extra: 1577 / 1412,
  26903. bottom: 97 / 1694
  26904. }
  26905. },
  26906. headphones: {
  26907. height: math.unit(0.85, "feet"),
  26908. name: "Headphones",
  26909. image: {
  26910. source: "./media/characters/purple-flame/headphones.svg"
  26911. }
  26912. },
  26913. },
  26914. [
  26915. {
  26916. name: "Really Small",
  26917. height: math.unit(5, "cm")
  26918. },
  26919. {
  26920. name: "Micro",
  26921. height: math.unit(1 + 5 / 12, "feet")
  26922. },
  26923. {
  26924. name: "Normal",
  26925. height: math.unit(3 + 5 / 12, "feet"),
  26926. default: true
  26927. },
  26928. {
  26929. name: "Minimacro",
  26930. height: math.unit(125, "feet")
  26931. },
  26932. {
  26933. name: "Macro",
  26934. height: math.unit(0.5, "miles")
  26935. },
  26936. {
  26937. name: "Megamacro",
  26938. height: math.unit(50, "miles")
  26939. },
  26940. {
  26941. name: "Gigantic",
  26942. height: math.unit(750, "miles")
  26943. },
  26944. {
  26945. name: "Planetary",
  26946. height: math.unit(15000, "miles")
  26947. },
  26948. ]
  26949. ))
  26950. characterMakers.push(() => makeCharacter(
  26951. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26952. {
  26953. front: {
  26954. height: math.unit(14, "feet"),
  26955. weight: math.unit(959, "lb"),
  26956. name: "Front",
  26957. image: {
  26958. source: "./media/characters/arsenal/front.svg",
  26959. extra: 2357 / 2157,
  26960. bottom: 93 / 2458
  26961. }
  26962. },
  26963. },
  26964. [
  26965. {
  26966. name: "Normal",
  26967. height: math.unit(14, "feet"),
  26968. default: true
  26969. },
  26970. ]
  26971. ))
  26972. characterMakers.push(() => makeCharacter(
  26973. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26974. {
  26975. front: {
  26976. height: math.unit(6, "feet"),
  26977. weight: math.unit(150, "lb"),
  26978. name: "Front",
  26979. image: {
  26980. source: "./media/characters/adira/front.svg",
  26981. extra: 1078 / 1029,
  26982. bottom: 87 / 1166
  26983. }
  26984. },
  26985. },
  26986. [
  26987. {
  26988. name: "Micro",
  26989. height: math.unit(4, "inches"),
  26990. default: true
  26991. },
  26992. {
  26993. name: "Macro",
  26994. height: math.unit(50, "feet")
  26995. },
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27000. {
  27001. front: {
  27002. height: math.unit(16, "feet"),
  27003. weight: math.unit(1000, "lb"),
  27004. name: "Front",
  27005. image: {
  27006. source: "./media/characters/grim/front.svg",
  27007. extra: 622 / 614,
  27008. bottom: 18.1 / 642
  27009. }
  27010. },
  27011. back: {
  27012. height: math.unit(16, "feet"),
  27013. weight: math.unit(1000, "lb"),
  27014. name: "Back",
  27015. image: {
  27016. source: "./media/characters/grim/back.svg",
  27017. extra: 610.6 / 602,
  27018. bottom: 40.8 / 652
  27019. }
  27020. },
  27021. hunched: {
  27022. height: math.unit(9.75, "feet"),
  27023. weight: math.unit(1000, "lb"),
  27024. name: "Hunched",
  27025. image: {
  27026. source: "./media/characters/grim/hunched.svg",
  27027. extra: 304 / 297,
  27028. bottom: 35.4 / 394
  27029. }
  27030. },
  27031. },
  27032. [
  27033. {
  27034. name: "Normal",
  27035. height: math.unit(16, "feet"),
  27036. default: true
  27037. },
  27038. ]
  27039. ))
  27040. characterMakers.push(() => makeCharacter(
  27041. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27042. {
  27043. front: {
  27044. height: math.unit(2.3, "meters"),
  27045. weight: math.unit(300, "lb"),
  27046. name: "Front",
  27047. image: {
  27048. source: "./media/characters/sinja/front-sfw.svg",
  27049. extra: 1393 / 1294,
  27050. bottom: 70 / 1463
  27051. }
  27052. },
  27053. frontNsfw: {
  27054. height: math.unit(2.3, "meters"),
  27055. weight: math.unit(300, "lb"),
  27056. name: "Front (NSFW)",
  27057. image: {
  27058. source: "./media/characters/sinja/front-nsfw.svg",
  27059. extra: 1393 / 1294,
  27060. bottom: 70 / 1463
  27061. }
  27062. },
  27063. back: {
  27064. height: math.unit(2.3, "meters"),
  27065. weight: math.unit(300, "lb"),
  27066. name: "Back",
  27067. image: {
  27068. source: "./media/characters/sinja/back.svg",
  27069. extra: 1393 / 1294,
  27070. bottom: 70 / 1463
  27071. }
  27072. },
  27073. head: {
  27074. height: math.unit(1.771, "feet"),
  27075. name: "Head",
  27076. image: {
  27077. source: "./media/characters/sinja/head.svg"
  27078. }
  27079. },
  27080. slit: {
  27081. height: math.unit(0.8, "feet"),
  27082. name: "Slit",
  27083. image: {
  27084. source: "./media/characters/sinja/slit.svg"
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Normal",
  27091. height: math.unit(2.3, "meters")
  27092. },
  27093. {
  27094. name: "Macro",
  27095. height: math.unit(91, "meters"),
  27096. default: true
  27097. },
  27098. {
  27099. name: "Megamacro",
  27100. height: math.unit(91440, "meters")
  27101. },
  27102. {
  27103. name: "Gigamacro",
  27104. height: math.unit(60960000, "meters")
  27105. },
  27106. {
  27107. name: "Teramacro",
  27108. height: math.unit(9144000000, "meters")
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(1.7, "meters"),
  27117. weight: math.unit(130, "lb"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/kyu/front.svg",
  27121. extra: 415 / 395,
  27122. bottom: 5 / 420
  27123. }
  27124. },
  27125. head: {
  27126. height: math.unit(1.75, "feet"),
  27127. name: "Head",
  27128. image: {
  27129. source: "./media/characters/kyu/head.svg"
  27130. }
  27131. },
  27132. foot: {
  27133. height: math.unit(0.81, "feet"),
  27134. name: "Foot",
  27135. image: {
  27136. source: "./media/characters/kyu/foot.svg"
  27137. }
  27138. },
  27139. },
  27140. [
  27141. {
  27142. name: "Normal",
  27143. height: math.unit(1.7, "meters")
  27144. },
  27145. {
  27146. name: "Macro",
  27147. height: math.unit(131, "feet"),
  27148. default: true
  27149. },
  27150. {
  27151. name: "Megamacro",
  27152. height: math.unit(91440, "meters")
  27153. },
  27154. {
  27155. name: "Gigamacro",
  27156. height: math.unit(60960000, "meters")
  27157. },
  27158. {
  27159. name: "Teramacro",
  27160. height: math.unit(9144000000, "meters")
  27161. },
  27162. ]
  27163. ))
  27164. characterMakers.push(() => makeCharacter(
  27165. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27166. {
  27167. front: {
  27168. height: math.unit(7 + 1 / 12, "feet"),
  27169. weight: math.unit(250, "lb"),
  27170. name: "Front",
  27171. image: {
  27172. source: "./media/characters/joey/front.svg",
  27173. extra: 1791 / 1537,
  27174. bottom: 28 / 1816
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Micro",
  27181. height: math.unit(3, "inches")
  27182. },
  27183. {
  27184. name: "Normal",
  27185. height: math.unit(7 + 1 / 12, "feet"),
  27186. default: true
  27187. },
  27188. ]
  27189. ))
  27190. characterMakers.push(() => makeCharacter(
  27191. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27192. {
  27193. front: {
  27194. height: math.unit(165, "cm"),
  27195. weight: math.unit(140, "lb"),
  27196. name: "Front",
  27197. image: {
  27198. source: "./media/characters/sam-evans/front.svg",
  27199. extra: 3417 / 3230,
  27200. bottom: 41.3 / 3417
  27201. }
  27202. },
  27203. frontSixTails: {
  27204. height: math.unit(165, "cm"),
  27205. weight: math.unit(140, "lb"),
  27206. name: "Front-six-tails",
  27207. image: {
  27208. source: "./media/characters/sam-evans/front-six-tails.svg",
  27209. extra: 3417 / 3230,
  27210. bottom: 41.3 / 3417
  27211. }
  27212. },
  27213. back: {
  27214. height: math.unit(165, "cm"),
  27215. weight: math.unit(140, "lb"),
  27216. name: "Back",
  27217. image: {
  27218. source: "./media/characters/sam-evans/back.svg",
  27219. extra: 3227 / 3032,
  27220. bottom: 6.8 / 3234
  27221. }
  27222. },
  27223. face: {
  27224. height: math.unit(0.68, "feet"),
  27225. name: "Face",
  27226. image: {
  27227. source: "./media/characters/sam-evans/face.svg"
  27228. }
  27229. },
  27230. },
  27231. [
  27232. {
  27233. name: "Normal",
  27234. height: math.unit(165, "cm"),
  27235. default: true
  27236. },
  27237. {
  27238. name: "Macro",
  27239. height: math.unit(100, "meters")
  27240. },
  27241. {
  27242. name: "Macro+",
  27243. height: math.unit(800, "meters")
  27244. },
  27245. {
  27246. name: "Macro++",
  27247. height: math.unit(3, "km")
  27248. },
  27249. {
  27250. name: "Macro+++",
  27251. height: math.unit(30, "km")
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27257. {
  27258. front: {
  27259. height: math.unit(10, "feet"),
  27260. weight: math.unit(750, "lb"),
  27261. name: "Front",
  27262. image: {
  27263. source: "./media/characters/juliet-a/front.svg",
  27264. extra: 1766 / 1720,
  27265. bottom: 43 / 1809
  27266. }
  27267. },
  27268. back: {
  27269. height: math.unit(10, "feet"),
  27270. weight: math.unit(750, "lb"),
  27271. name: "Back",
  27272. image: {
  27273. source: "./media/characters/juliet-a/back.svg",
  27274. extra: 1781 / 1734,
  27275. bottom: 35 / 1810,
  27276. }
  27277. },
  27278. },
  27279. [
  27280. {
  27281. name: "Normal",
  27282. height: math.unit(10, "feet"),
  27283. default: true
  27284. },
  27285. {
  27286. name: "Dragon Form",
  27287. height: math.unit(250, "feet")
  27288. },
  27289. {
  27290. name: "Macro",
  27291. height: math.unit(1000, "feet")
  27292. },
  27293. {
  27294. name: "Megamacro",
  27295. height: math.unit(10000, "feet")
  27296. }
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27301. {
  27302. regular: {
  27303. height: math.unit(7 + 3 / 12, "feet"),
  27304. weight: math.unit(260, "lb"),
  27305. name: "Regular",
  27306. image: {
  27307. source: "./media/characters/wild/regular.svg",
  27308. extra: 97.45 / 92,
  27309. bottom: 6.8 / 104.3
  27310. }
  27311. },
  27312. biggums: {
  27313. height: math.unit(8 + 6 / 12, "feet"),
  27314. weight: math.unit(425, "lb"),
  27315. name: "Biggums",
  27316. image: {
  27317. source: "./media/characters/wild/biggums.svg",
  27318. extra: 97.45 / 92,
  27319. bottom: 7.5 / 132.34
  27320. }
  27321. },
  27322. mawRegular: {
  27323. height: math.unit(1.24, "feet"),
  27324. name: "Maw (Regular)",
  27325. image: {
  27326. source: "./media/characters/wild/maw.svg"
  27327. }
  27328. },
  27329. mawBiggums: {
  27330. height: math.unit(1.47, "feet"),
  27331. name: "Maw (Biggums)",
  27332. image: {
  27333. source: "./media/characters/wild/maw.svg"
  27334. }
  27335. },
  27336. },
  27337. [
  27338. {
  27339. name: "Normal",
  27340. height: math.unit(7 + 3 / 12, "feet"),
  27341. default: true
  27342. },
  27343. ]
  27344. ))
  27345. characterMakers.push(() => makeCharacter(
  27346. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27347. {
  27348. front: {
  27349. height: math.unit(2.5, "meters"),
  27350. weight: math.unit(200, "kg"),
  27351. name: "Front",
  27352. image: {
  27353. source: "./media/characters/vidar/front.svg",
  27354. extra: 2994 / 2795,
  27355. bottom: 56 / 3061
  27356. }
  27357. },
  27358. back: {
  27359. height: math.unit(2.5, "meters"),
  27360. weight: math.unit(200, "kg"),
  27361. name: "Back",
  27362. image: {
  27363. source: "./media/characters/vidar/back.svg",
  27364. extra: 3131 / 2928,
  27365. bottom: 13.5 / 3141.5
  27366. }
  27367. },
  27368. feral: {
  27369. height: math.unit(2.5, "meters"),
  27370. weight: math.unit(2000, "kg"),
  27371. name: "Feral",
  27372. image: {
  27373. source: "./media/characters/vidar/feral.svg",
  27374. extra: 2790 / 1765,
  27375. bottom: 6 / 2796
  27376. }
  27377. },
  27378. },
  27379. [
  27380. {
  27381. name: "Normal",
  27382. height: math.unit(2.5, "meters"),
  27383. default: true
  27384. },
  27385. {
  27386. name: "Macro",
  27387. height: math.unit(100, "meters")
  27388. },
  27389. ]
  27390. ))
  27391. characterMakers.push(() => makeCharacter(
  27392. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27393. {
  27394. front: {
  27395. height: math.unit(5 + 9 / 12, "feet"),
  27396. weight: math.unit(120, "lb"),
  27397. name: "Front",
  27398. image: {
  27399. source: "./media/characters/ash/front.svg",
  27400. extra: 2189 / 1961,
  27401. bottom: 5.2 / 2194
  27402. }
  27403. },
  27404. },
  27405. [
  27406. {
  27407. name: "Normal",
  27408. height: math.unit(5 + 9 / 12, "feet"),
  27409. default: true
  27410. },
  27411. ]
  27412. ))
  27413. characterMakers.push(() => makeCharacter(
  27414. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27415. {
  27416. front: {
  27417. height: math.unit(9, "feet"),
  27418. weight: math.unit(10000, "lb"),
  27419. name: "Front",
  27420. image: {
  27421. source: "./media/characters/gygabite/front.svg",
  27422. bottom: 31.7 / 537.8,
  27423. extra: 505 / 370
  27424. }
  27425. },
  27426. },
  27427. [
  27428. {
  27429. name: "Normal",
  27430. height: math.unit(9, "feet"),
  27431. default: true
  27432. },
  27433. ]
  27434. ))
  27435. characterMakers.push(() => makeCharacter(
  27436. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27437. {
  27438. front: {
  27439. height: math.unit(12, "feet"),
  27440. weight: math.unit(35000, "lb"),
  27441. name: "Front",
  27442. image: {
  27443. source: "./media/characters/p0tat0/front.svg",
  27444. extra: 1065 / 921,
  27445. bottom: 55.7 / 1121.25
  27446. }
  27447. },
  27448. },
  27449. [
  27450. {
  27451. name: "Normal",
  27452. height: math.unit(12, "feet"),
  27453. default: true
  27454. },
  27455. ]
  27456. ))
  27457. characterMakers.push(() => makeCharacter(
  27458. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27459. {
  27460. side: {
  27461. height: math.unit(6.5, "feet"),
  27462. weight: math.unit(800, "lb"),
  27463. name: "Side",
  27464. image: {
  27465. source: "./media/characters/dusk/side.svg",
  27466. extra: 615 / 373,
  27467. bottom: 53 / 664
  27468. }
  27469. },
  27470. sitting: {
  27471. height: math.unit(7, "feet"),
  27472. weight: math.unit(800, "lb"),
  27473. name: "Sitting",
  27474. image: {
  27475. source: "./media/characters/dusk/sitting.svg",
  27476. extra: 753 / 425,
  27477. bottom: 33 / 774
  27478. }
  27479. },
  27480. head: {
  27481. height: math.unit(6.1, "feet"),
  27482. name: "Head",
  27483. image: {
  27484. source: "./media/characters/dusk/head.svg"
  27485. }
  27486. },
  27487. },
  27488. [
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(7, "feet"),
  27492. default: true
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(15, "feet"),
  27501. weight: math.unit(7000, "lb"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/jay-direwolf/front.svg",
  27505. extra: 1810 / 1732,
  27506. bottom: 66 / 1892
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(15, "feet"),
  27514. default: true
  27515. },
  27516. ]
  27517. ))
  27518. characterMakers.push(() => makeCharacter(
  27519. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27520. {
  27521. front: {
  27522. height: math.unit(4 + 9 / 12, "feet"),
  27523. weight: math.unit(130, "lb"),
  27524. name: "Front",
  27525. image: {
  27526. source: "./media/characters/anchovie/front.svg",
  27527. extra: 382 / 350,
  27528. bottom: 25 / 409
  27529. }
  27530. },
  27531. back: {
  27532. height: math.unit(4 + 9 / 12, "feet"),
  27533. weight: math.unit(130, "lb"),
  27534. name: "Back",
  27535. image: {
  27536. source: "./media/characters/anchovie/back.svg",
  27537. extra: 385 / 352,
  27538. bottom: 16.6 / 402
  27539. }
  27540. },
  27541. frontDressed: {
  27542. height: math.unit(4 + 9 / 12, "feet"),
  27543. weight: math.unit(130, "lb"),
  27544. name: "Front (Dressed)",
  27545. image: {
  27546. source: "./media/characters/anchovie/front-dressed.svg",
  27547. extra: 382 / 350,
  27548. bottom: 25 / 409
  27549. }
  27550. },
  27551. backDressed: {
  27552. height: math.unit(4 + 9 / 12, "feet"),
  27553. weight: math.unit(130, "lb"),
  27554. name: "Back (Dressed)",
  27555. image: {
  27556. source: "./media/characters/anchovie/back-dressed.svg",
  27557. extra: 385 / 352,
  27558. bottom: 16.6 / 402
  27559. }
  27560. },
  27561. },
  27562. [
  27563. {
  27564. name: "Micro",
  27565. height: math.unit(6.4, "inches")
  27566. },
  27567. {
  27568. name: "Normal",
  27569. height: math.unit(4 + 9 / 12, "feet"),
  27570. default: true
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(2, "meters"),
  27579. weight: math.unit(180, "lb"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/acidrenamon/front.svg",
  27583. extra: 987 / 890,
  27584. bottom: 22.8 / 1009
  27585. }
  27586. },
  27587. back: {
  27588. height: math.unit(2, "meters"),
  27589. weight: math.unit(180, "lb"),
  27590. name: "Back",
  27591. image: {
  27592. source: "./media/characters/acidrenamon/back.svg",
  27593. extra: 983 / 891,
  27594. bottom: 8.4 / 992
  27595. }
  27596. },
  27597. head: {
  27598. height: math.unit(1.92, "feet"),
  27599. name: "Head",
  27600. image: {
  27601. source: "./media/characters/acidrenamon/head.svg"
  27602. }
  27603. },
  27604. rump: {
  27605. height: math.unit(1.72, "feet"),
  27606. name: "Rump",
  27607. image: {
  27608. source: "./media/characters/acidrenamon/rump.svg"
  27609. }
  27610. },
  27611. tail: {
  27612. height: math.unit(4.2, "feet"),
  27613. name: "Tail",
  27614. image: {
  27615. source: "./media/characters/acidrenamon/tail.svg"
  27616. }
  27617. },
  27618. },
  27619. [
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(2, "meters"),
  27623. default: true
  27624. },
  27625. {
  27626. name: "Minimacro",
  27627. height: math.unit(7, "meters")
  27628. },
  27629. {
  27630. name: "Macro",
  27631. height: math.unit(200, "meters")
  27632. },
  27633. {
  27634. name: "Gigamacro",
  27635. height: math.unit(0.2, "earths")
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27641. {
  27642. front: {
  27643. height: math.unit(6, "feet"),
  27644. weight: math.unit(150, "lb"),
  27645. name: "Front",
  27646. image: {
  27647. source: "./media/characters/kenzie-lee/front.svg",
  27648. extra: 1525 / 1465,
  27649. bottom: 45 / 1570
  27650. }
  27651. },
  27652. side: {
  27653. height: math.unit(6, "feet"),
  27654. weight: math.unit(150, "lb"),
  27655. name: "Side",
  27656. image: {
  27657. source: "./media/characters/kenzie-lee/side.svg",
  27658. extra: 5505 / 5383,
  27659. bottom: 60 / 5573
  27660. }
  27661. },
  27662. paw: {
  27663. height: math.unit(0.57, "feet"),
  27664. name: "Paw",
  27665. image: {
  27666. source: "./media/characters/kenzie-lee/paw.svg"
  27667. }
  27668. },
  27669. },
  27670. [
  27671. {
  27672. name: "Normal",
  27673. height: math.unit(152, "feet"),
  27674. default: true
  27675. },
  27676. {
  27677. name: "Megamacro",
  27678. height: math.unit(7, "miles")
  27679. },
  27680. {
  27681. name: "Gigamacro",
  27682. height: math.unit(8000, "miles")
  27683. },
  27684. ]
  27685. ))
  27686. characterMakers.push(() => makeCharacter(
  27687. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27688. {
  27689. side: {
  27690. height: math.unit(6, "feet"),
  27691. weight: math.unit(150, "lb"),
  27692. name: "Side",
  27693. image: {
  27694. source: "./media/characters/withers/side.svg",
  27695. extra: 1830 / 1728,
  27696. bottom: 96 / 1927
  27697. }
  27698. },
  27699. front: {
  27700. height: math.unit(6, "feet"),
  27701. weight: math.unit(150, "lb"),
  27702. name: "Front",
  27703. image: {
  27704. source: "./media/characters/withers/front.svg",
  27705. extra: 1514 / 1438,
  27706. bottom: 118 / 1632
  27707. }
  27708. },
  27709. },
  27710. [
  27711. {
  27712. name: "Macro",
  27713. height: math.unit(168, "feet"),
  27714. default: true
  27715. },
  27716. {
  27717. name: "Megamacro",
  27718. height: math.unit(15, "miles")
  27719. }
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(6 + 7 / 12, "feet"),
  27727. weight: math.unit(250, "lb"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/nemoskii/front.svg",
  27731. extra: 2270 / 1734,
  27732. bottom: 86 / 2354
  27733. }
  27734. },
  27735. back: {
  27736. height: math.unit(6 + 7 / 12, "feet"),
  27737. weight: math.unit(250, "lb"),
  27738. name: "Back",
  27739. image: {
  27740. source: "./media/characters/nemoskii/back.svg",
  27741. extra: 1845 / 1788,
  27742. bottom: 10.5 / 1852
  27743. }
  27744. },
  27745. head: {
  27746. height: math.unit(1.31, "feet"),
  27747. name: "Head",
  27748. image: {
  27749. source: "./media/characters/nemoskii/head.svg"
  27750. }
  27751. },
  27752. },
  27753. [
  27754. {
  27755. name: "Micro",
  27756. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27757. },
  27758. {
  27759. name: "Normal",
  27760. height: math.unit(6 + 7 / 12, "feet"),
  27761. default: true
  27762. },
  27763. {
  27764. name: "Macro",
  27765. height: math.unit((6 + 7 / 12) * 150, "feet")
  27766. },
  27767. {
  27768. name: "Macro+",
  27769. height: math.unit((6 + 7 / 12) * 500, "feet")
  27770. },
  27771. {
  27772. name: "Megamacro",
  27773. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27774. },
  27775. ]
  27776. ))
  27777. characterMakers.push(() => makeCharacter(
  27778. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27779. {
  27780. front: {
  27781. height: math.unit(1, "mile"),
  27782. weight: math.unit(265261.9, "lb"),
  27783. name: "Front",
  27784. image: {
  27785. source: "./media/characters/shui/front.svg",
  27786. extra: 1633 / 1564,
  27787. bottom: 91.5 / 1726
  27788. }
  27789. },
  27790. },
  27791. [
  27792. {
  27793. name: "Macro",
  27794. height: math.unit(1, "mile"),
  27795. default: true
  27796. },
  27797. ]
  27798. ))
  27799. characterMakers.push(() => makeCharacter(
  27800. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27801. {
  27802. front: {
  27803. height: math.unit(12 + 6 / 12, "feet"),
  27804. weight: math.unit(1342, "lb"),
  27805. name: "Front",
  27806. image: {
  27807. source: "./media/characters/arokh-takakura/front.svg",
  27808. extra: 1089 / 1043,
  27809. bottom: 77.4 / 1176.7
  27810. }
  27811. },
  27812. back: {
  27813. height: math.unit(12 + 6 / 12, "feet"),
  27814. weight: math.unit(1342, "lb"),
  27815. name: "Back",
  27816. image: {
  27817. source: "./media/characters/arokh-takakura/back.svg",
  27818. extra: 1046 / 1019,
  27819. bottom: 102 / 1150
  27820. }
  27821. },
  27822. },
  27823. [
  27824. {
  27825. name: "Big",
  27826. height: math.unit(12 + 6 / 12, "feet"),
  27827. default: true
  27828. },
  27829. ]
  27830. ))
  27831. characterMakers.push(() => makeCharacter(
  27832. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27833. {
  27834. front: {
  27835. height: math.unit(5 + 6 / 12, "feet"),
  27836. weight: math.unit(150, "lb"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/theo/front.svg",
  27840. extra: 1184 / 1131,
  27841. bottom: 7.4 / 1191
  27842. }
  27843. },
  27844. },
  27845. [
  27846. {
  27847. name: "Micro",
  27848. height: math.unit(5, "inches")
  27849. },
  27850. {
  27851. name: "Normal",
  27852. height: math.unit(5 + 6 / 12, "feet"),
  27853. default: true
  27854. },
  27855. ]
  27856. ))
  27857. characterMakers.push(() => makeCharacter(
  27858. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27859. {
  27860. front: {
  27861. height: math.unit(5 + 9 / 12, "feet"),
  27862. weight: math.unit(130, "lb"),
  27863. name: "Front",
  27864. image: {
  27865. source: "./media/characters/cecelia-swift/front.svg",
  27866. extra: 502 / 484,
  27867. bottom: 23 / 523
  27868. }
  27869. },
  27870. back: {
  27871. height: math.unit(5 + 9 / 12, "feet"),
  27872. weight: math.unit(130, "lb"),
  27873. name: "Back",
  27874. image: {
  27875. source: "./media/characters/cecelia-swift/back.svg",
  27876. extra: 499 / 485,
  27877. bottom: 12 / 511
  27878. }
  27879. },
  27880. head: {
  27881. height: math.unit(0.90, "feet"),
  27882. name: "Head",
  27883. image: {
  27884. source: "./media/characters/cecelia-swift/head.svg"
  27885. }
  27886. },
  27887. rump: {
  27888. height: math.unit(1.75, "feet"),
  27889. name: "Rump",
  27890. image: {
  27891. source: "./media/characters/cecelia-swift/rump.svg"
  27892. }
  27893. },
  27894. },
  27895. [
  27896. {
  27897. name: "Normal",
  27898. height: math.unit(5 + 9 / 12, "feet"),
  27899. default: true
  27900. },
  27901. {
  27902. name: "Big",
  27903. height: math.unit(50, "feet")
  27904. },
  27905. {
  27906. name: "Macro",
  27907. height: math.unit(100, "feet")
  27908. },
  27909. {
  27910. name: "Macro+",
  27911. height: math.unit(500, "feet")
  27912. },
  27913. {
  27914. name: "Macro++",
  27915. height: math.unit(1000, "feet")
  27916. },
  27917. ]
  27918. ))
  27919. characterMakers.push(() => makeCharacter(
  27920. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27921. {
  27922. front: {
  27923. height: math.unit(6, "feet"),
  27924. weight: math.unit(150, "lb"),
  27925. name: "Front",
  27926. image: {
  27927. source: "./media/characters/kaunan/front.svg",
  27928. extra: 2890 / 2523,
  27929. bottom: 49 / 2939
  27930. }
  27931. },
  27932. },
  27933. [
  27934. {
  27935. name: "Macro",
  27936. height: math.unit(150, "feet"),
  27937. default: true
  27938. },
  27939. ]
  27940. ))
  27941. characterMakers.push(() => makeCharacter(
  27942. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27943. {
  27944. front: {
  27945. height: math.unit(175, "cm"),
  27946. weight: math.unit(60, "kg"),
  27947. name: "Front",
  27948. image: {
  27949. source: "./media/characters/fei/front.svg",
  27950. extra: 1873/1723,
  27951. bottom: 53/1926
  27952. }
  27953. },
  27954. },
  27955. [
  27956. {
  27957. name: "Mortal",
  27958. height: math.unit(175, "cm")
  27959. },
  27960. {
  27961. name: "Normal",
  27962. height: math.unit(3500, "m"),
  27963. default: true
  27964. },
  27965. {
  27966. name: "Stroll",
  27967. height: math.unit(17.5, "km")
  27968. },
  27969. {
  27970. name: "Showoff",
  27971. height: math.unit(175, "km")
  27972. },
  27973. ]
  27974. ))
  27975. characterMakers.push(() => makeCharacter(
  27976. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27977. {
  27978. front: {
  27979. height: math.unit(7, "feet"),
  27980. weight: math.unit(1000, "kg"),
  27981. name: "Front",
  27982. image: {
  27983. source: "./media/characters/edrax/front.svg",
  27984. extra: 2838 / 2550,
  27985. bottom: 130 / 2968
  27986. }
  27987. },
  27988. },
  27989. [
  27990. {
  27991. name: "Small",
  27992. height: math.unit(7, "feet")
  27993. },
  27994. {
  27995. name: "Normal",
  27996. height: math.unit(1500, "meters")
  27997. },
  27998. {
  27999. name: "Mega",
  28000. height: math.unit(12000000, "km"),
  28001. default: true
  28002. },
  28003. {
  28004. name: "Megamacro",
  28005. height: math.unit(10600000, "lightyears")
  28006. },
  28007. {
  28008. name: "Hypermacro",
  28009. height: math.unit(256, "yottameters")
  28010. },
  28011. ]
  28012. ))
  28013. characterMakers.push(() => makeCharacter(
  28014. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28015. {
  28016. front: {
  28017. height: math.unit(10, "feet"),
  28018. weight: math.unit(750, "lb"),
  28019. name: "Front",
  28020. image: {
  28021. source: "./media/characters/clove/front.svg",
  28022. extra: 2031 / 1860,
  28023. bottom: 47.8 / 2080
  28024. }
  28025. },
  28026. back: {
  28027. height: math.unit(10, "feet"),
  28028. weight: math.unit(750, "lb"),
  28029. name: "Back",
  28030. image: {
  28031. source: "./media/characters/clove/back.svg",
  28032. extra: 2025 / 1859,
  28033. bottom: 46 / 2071
  28034. }
  28035. },
  28036. },
  28037. [
  28038. {
  28039. name: "Normal",
  28040. height: math.unit(10, "feet"),
  28041. default: true
  28042. },
  28043. ]
  28044. ))
  28045. characterMakers.push(() => makeCharacter(
  28046. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28047. {
  28048. front: {
  28049. height: math.unit(4, "feet"),
  28050. weight: math.unit(50, "lb"),
  28051. name: "Front",
  28052. image: {
  28053. source: "./media/characters/alex-rabbit/front.svg",
  28054. extra: 507 / 458,
  28055. bottom: 18.5 / 527
  28056. }
  28057. },
  28058. back: {
  28059. height: math.unit(4, "feet"),
  28060. weight: math.unit(50, "lb"),
  28061. name: "Back",
  28062. image: {
  28063. source: "./media/characters/alex-rabbit/back.svg",
  28064. extra: 502 / 460,
  28065. bottom: 18.9 / 521
  28066. }
  28067. },
  28068. },
  28069. [
  28070. {
  28071. name: "Normal",
  28072. height: math.unit(4, "feet"),
  28073. default: true
  28074. },
  28075. ]
  28076. ))
  28077. characterMakers.push(() => makeCharacter(
  28078. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28079. {
  28080. front: {
  28081. height: math.unit(1 + 3 / 12, "feet"),
  28082. weight: math.unit(80, "lb"),
  28083. name: "Front",
  28084. image: {
  28085. source: "./media/characters/zander-rose/front.svg",
  28086. extra: 916 / 797,
  28087. bottom: 17 / 933
  28088. }
  28089. },
  28090. back: {
  28091. height: math.unit(1 + 3 / 12, "feet"),
  28092. weight: math.unit(80, "lb"),
  28093. name: "Back",
  28094. image: {
  28095. source: "./media/characters/zander-rose/back.svg",
  28096. extra: 903 / 779,
  28097. bottom: 31 / 934
  28098. }
  28099. },
  28100. },
  28101. [
  28102. {
  28103. name: "Normal",
  28104. height: math.unit(1 + 3 / 12, "feet"),
  28105. default: true
  28106. },
  28107. ]
  28108. ))
  28109. characterMakers.push(() => makeCharacter(
  28110. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28111. {
  28112. anthro: {
  28113. height: math.unit(6, "feet"),
  28114. weight: math.unit(150, "lb"),
  28115. name: "Anthro",
  28116. image: {
  28117. source: "./media/characters/razz/anthro.svg",
  28118. extra: 1437 / 1343,
  28119. bottom: 48 / 1485
  28120. }
  28121. },
  28122. feral: {
  28123. height: math.unit(6, "feet"),
  28124. weight: math.unit(150, "lb"),
  28125. name: "Feral",
  28126. image: {
  28127. source: "./media/characters/razz/feral.svg",
  28128. extra: 2569 / 1385,
  28129. bottom: 95 / 2664
  28130. }
  28131. },
  28132. },
  28133. [
  28134. {
  28135. name: "Normal",
  28136. height: math.unit(6, "feet"),
  28137. default: true
  28138. },
  28139. ]
  28140. ))
  28141. characterMakers.push(() => makeCharacter(
  28142. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28143. {
  28144. front: {
  28145. height: math.unit(9 + 4 / 12, "feet"),
  28146. weight: math.unit(500, "lb"),
  28147. name: "Front",
  28148. image: {
  28149. source: "./media/characters/morrigan/front.svg",
  28150. extra: 2707 / 2579,
  28151. bottom: 156 / 2863
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Normal",
  28158. height: math.unit(9 + 4 / 12, "feet"),
  28159. default: true
  28160. },
  28161. ]
  28162. ))
  28163. characterMakers.push(() => makeCharacter(
  28164. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28165. {
  28166. front: {
  28167. height: math.unit(5, "stories"),
  28168. weight: math.unit(4000, "lb"),
  28169. name: "Front",
  28170. image: {
  28171. source: "./media/characters/jenene/front.svg",
  28172. extra: 1780 / 1710,
  28173. bottom: 57 / 1837
  28174. }
  28175. },
  28176. },
  28177. [
  28178. {
  28179. name: "Normal",
  28180. height: math.unit(5, "stories"),
  28181. default: true
  28182. },
  28183. ]
  28184. ))
  28185. characterMakers.push(() => makeCharacter(
  28186. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28187. {
  28188. taurSfw: {
  28189. height: math.unit(10, "meters"),
  28190. weight: math.unit(17500, "kg"),
  28191. name: "Taur",
  28192. image: {
  28193. source: "./media/characters/faey/taur-sfw.svg",
  28194. extra: 1200 / 968,
  28195. bottom: 41 / 1241
  28196. }
  28197. },
  28198. chestmaw: {
  28199. height: math.unit(2.01, "meters"),
  28200. name: "Chestmaw",
  28201. image: {
  28202. source: "./media/characters/faey/chestmaw.svg"
  28203. }
  28204. },
  28205. foot: {
  28206. height: math.unit(2.43, "meters"),
  28207. name: "Foot",
  28208. image: {
  28209. source: "./media/characters/faey/foot.svg"
  28210. }
  28211. },
  28212. jaws: {
  28213. height: math.unit(1.66, "meters"),
  28214. name: "Jaws",
  28215. image: {
  28216. source: "./media/characters/faey/jaws.svg"
  28217. }
  28218. },
  28219. tongues: {
  28220. height: math.unit(2.01, "meters"),
  28221. name: "Tongues",
  28222. image: {
  28223. source: "./media/characters/faey/tongues.svg"
  28224. }
  28225. },
  28226. },
  28227. [
  28228. {
  28229. name: "Small",
  28230. height: math.unit(10, "meters"),
  28231. default: true
  28232. },
  28233. {
  28234. name: "Big",
  28235. height: math.unit(500000, "km")
  28236. },
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28241. {
  28242. front: {
  28243. height: math.unit(7, "feet"),
  28244. weight: math.unit(275, "lb"),
  28245. name: "Front",
  28246. image: {
  28247. source: "./media/characters/roku/front.svg",
  28248. extra: 903 / 878,
  28249. bottom: 37 / 940
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Normal",
  28256. height: math.unit(7, "feet"),
  28257. default: true
  28258. },
  28259. {
  28260. name: "Macro",
  28261. height: math.unit(500, "feet")
  28262. },
  28263. {
  28264. name: "Megamacro",
  28265. height: math.unit(200, "miles")
  28266. },
  28267. ]
  28268. ))
  28269. characterMakers.push(() => makeCharacter(
  28270. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28271. {
  28272. front: {
  28273. height: math.unit(6 + 2 / 12, "feet"),
  28274. weight: math.unit(150, "lb"),
  28275. name: "Front",
  28276. image: {
  28277. source: "./media/characters/lira/front.svg",
  28278. extra: 1727 / 1605,
  28279. bottom: 26 / 1753
  28280. }
  28281. },
  28282. back: {
  28283. height: math.unit(6 + 2 / 12, "feet"),
  28284. weight: math.unit(150, "lb"),
  28285. name: "Back",
  28286. image: {
  28287. source: "./media/characters/lira/back.svg",
  28288. extra: 1713/1621,
  28289. bottom: 20/1733
  28290. }
  28291. },
  28292. hand: {
  28293. height: math.unit(0.75, "feet"),
  28294. name: "Hand",
  28295. image: {
  28296. source: "./media/characters/lira/hand.svg"
  28297. }
  28298. },
  28299. maw: {
  28300. height: math.unit(0.65, "feet"),
  28301. name: "Maw",
  28302. image: {
  28303. source: "./media/characters/lira/maw.svg"
  28304. }
  28305. },
  28306. pawDigi: {
  28307. height: math.unit(1.6, "feet"),
  28308. name: "Paw Digi",
  28309. image: {
  28310. source: "./media/characters/lira/paw-digi.svg"
  28311. }
  28312. },
  28313. pawPlanti: {
  28314. height: math.unit(1.4, "feet"),
  28315. name: "Paw Planti",
  28316. image: {
  28317. source: "./media/characters/lira/paw-planti.svg"
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(6 + 2 / 12, "feet"),
  28325. default: true
  28326. },
  28327. {
  28328. name: "Macro",
  28329. height: math.unit(100, "feet")
  28330. },
  28331. {
  28332. name: "Macro²",
  28333. height: math.unit(1600, "feet")
  28334. },
  28335. {
  28336. name: "Planetary",
  28337. height: math.unit(20, "earths")
  28338. },
  28339. ]
  28340. ))
  28341. characterMakers.push(() => makeCharacter(
  28342. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28343. {
  28344. front: {
  28345. height: math.unit(6, "feet"),
  28346. weight: math.unit(150, "lb"),
  28347. name: "Front",
  28348. image: {
  28349. source: "./media/characters/hadjet/front.svg",
  28350. extra: 1480 / 1346,
  28351. bottom: 26 / 1506
  28352. }
  28353. },
  28354. frontNsfw: {
  28355. height: math.unit(6, "feet"),
  28356. weight: math.unit(150, "lb"),
  28357. name: "Front (NSFW)",
  28358. image: {
  28359. source: "./media/characters/hadjet/front-nsfw.svg",
  28360. extra: 1440 / 1358,
  28361. bottom: 52 / 1492
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Macro",
  28368. height: math.unit(10, "stories"),
  28369. default: true
  28370. },
  28371. {
  28372. name: "Megamacro",
  28373. height: math.unit(1.5, "miles")
  28374. },
  28375. {
  28376. name: "Megamacro+",
  28377. height: math.unit(5, "miles")
  28378. },
  28379. ]
  28380. ))
  28381. characterMakers.push(() => makeCharacter(
  28382. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28383. {
  28384. side: {
  28385. height: math.unit(106, "feet"),
  28386. weight: math.unit(500, "tonnes"),
  28387. name: "Side",
  28388. image: {
  28389. source: "./media/characters/kodran/side.svg",
  28390. extra: 553 / 480,
  28391. bottom: 33 / 586
  28392. }
  28393. },
  28394. front: {
  28395. height: math.unit(132, "feet"),
  28396. weight: math.unit(500, "tonnes"),
  28397. name: "Front",
  28398. image: {
  28399. source: "./media/characters/kodran/front.svg",
  28400. extra: 667 / 643,
  28401. bottom: 42 / 709
  28402. }
  28403. },
  28404. flying: {
  28405. height: math.unit(350, "feet"),
  28406. weight: math.unit(500, "tonnes"),
  28407. name: "Flying",
  28408. image: {
  28409. source: "./media/characters/kodran/flying.svg"
  28410. }
  28411. },
  28412. foot: {
  28413. height: math.unit(33, "feet"),
  28414. name: "Foot",
  28415. image: {
  28416. source: "./media/characters/kodran/foot.svg"
  28417. }
  28418. },
  28419. footFront: {
  28420. height: math.unit(19, "feet"),
  28421. name: "Foot (Front)",
  28422. image: {
  28423. source: "./media/characters/kodran/foot-front.svg",
  28424. extra: 261 / 261,
  28425. bottom: 91 / 352
  28426. }
  28427. },
  28428. headFront: {
  28429. height: math.unit(53, "feet"),
  28430. name: "Head (Front)",
  28431. image: {
  28432. source: "./media/characters/kodran/head-front.svg"
  28433. }
  28434. },
  28435. headSide: {
  28436. height: math.unit(65, "feet"),
  28437. name: "Head (Side)",
  28438. image: {
  28439. source: "./media/characters/kodran/head-side.svg"
  28440. }
  28441. },
  28442. throat: {
  28443. height: math.unit(79, "feet"),
  28444. name: "Throat",
  28445. image: {
  28446. source: "./media/characters/kodran/throat.svg"
  28447. }
  28448. },
  28449. },
  28450. [
  28451. {
  28452. name: "Large",
  28453. height: math.unit(106, "feet"),
  28454. default: true
  28455. },
  28456. ]
  28457. ))
  28458. characterMakers.push(() => makeCharacter(
  28459. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28460. {
  28461. side: {
  28462. height: math.unit(11, "feet"),
  28463. weight: math.unit(150, "lb"),
  28464. name: "Side",
  28465. image: {
  28466. source: "./media/characters/pyxaron/side.svg",
  28467. extra: 305 / 195,
  28468. bottom: 17 / 322
  28469. }
  28470. },
  28471. },
  28472. [
  28473. {
  28474. name: "Normal",
  28475. height: math.unit(11, "feet"),
  28476. default: true
  28477. },
  28478. ]
  28479. ))
  28480. characterMakers.push(() => makeCharacter(
  28481. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28482. {
  28483. front: {
  28484. height: math.unit(6, "feet"),
  28485. weight: math.unit(150, "lb"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/meep/front.svg",
  28489. extra: 88 / 80,
  28490. bottom: 6 / 94
  28491. }
  28492. },
  28493. },
  28494. [
  28495. {
  28496. name: "Fun Sized",
  28497. height: math.unit(2, "inches"),
  28498. default: true
  28499. },
  28500. {
  28501. name: "Friend Sized",
  28502. height: math.unit(8, "inches")
  28503. },
  28504. ]
  28505. ))
  28506. characterMakers.push(() => makeCharacter(
  28507. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28508. {
  28509. front: {
  28510. height: math.unit(15, "feet"),
  28511. weight: math.unit(2500, "lb"),
  28512. name: "Front",
  28513. image: {
  28514. source: "./media/characters/holly-rabbit/front.svg",
  28515. extra: 1433 / 1233,
  28516. bottom: 125 / 1558
  28517. }
  28518. },
  28519. dick: {
  28520. height: math.unit(4.6, "feet"),
  28521. name: "Dick",
  28522. image: {
  28523. source: "./media/characters/holly-rabbit/dick.svg"
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Normal",
  28530. height: math.unit(15, "feet"),
  28531. default: true
  28532. },
  28533. {
  28534. name: "Macro",
  28535. height: math.unit(250, "feet")
  28536. },
  28537. {
  28538. name: "Macro+",
  28539. height: math.unit(2500, "feet")
  28540. },
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28545. {
  28546. front: {
  28547. height: math.unit(3.02, "meters"),
  28548. weight: math.unit(500, "kg"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/drena/front.svg",
  28552. extra: 282 / 243,
  28553. bottom: 8 / 290
  28554. }
  28555. },
  28556. side: {
  28557. height: math.unit(3.02, "meters"),
  28558. weight: math.unit(500, "kg"),
  28559. name: "Side",
  28560. image: {
  28561. source: "./media/characters/drena/side.svg",
  28562. extra: 280 / 245,
  28563. bottom: 10 / 290
  28564. }
  28565. },
  28566. back: {
  28567. height: math.unit(3.02, "meters"),
  28568. weight: math.unit(500, "kg"),
  28569. name: "Back",
  28570. image: {
  28571. source: "./media/characters/drena/back.svg",
  28572. extra: 278 / 243,
  28573. bottom: 2 / 280
  28574. }
  28575. },
  28576. foot: {
  28577. height: math.unit(0.75, "meters"),
  28578. name: "Foot",
  28579. image: {
  28580. source: "./media/characters/drena/foot.svg"
  28581. }
  28582. },
  28583. maw: {
  28584. height: math.unit(0.82, "meters"),
  28585. name: "Maw",
  28586. image: {
  28587. source: "./media/characters/drena/maw.svg"
  28588. }
  28589. },
  28590. rump: {
  28591. height: math.unit(0.93, "meters"),
  28592. name: "Rump",
  28593. image: {
  28594. source: "./media/characters/drena/rump.svg"
  28595. }
  28596. },
  28597. },
  28598. [
  28599. {
  28600. name: "Normal",
  28601. height: math.unit(3.02, "meters"),
  28602. default: true
  28603. },
  28604. ]
  28605. ))
  28606. characterMakers.push(() => makeCharacter(
  28607. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28608. {
  28609. front: {
  28610. height: math.unit(6 + 4 / 12, "feet"),
  28611. weight: math.unit(250, "lb"),
  28612. name: "Front",
  28613. image: {
  28614. source: "./media/characters/remmyzilla/front.svg",
  28615. extra: 4033 / 3588,
  28616. bottom: 123 / 4156
  28617. }
  28618. },
  28619. back: {
  28620. height: math.unit(6 + 4 / 12, "feet"),
  28621. weight: math.unit(250, "lb"),
  28622. name: "Back",
  28623. image: {
  28624. source: "./media/characters/remmyzilla/back.svg",
  28625. extra: 2687 / 2555,
  28626. bottom: 48 / 2735
  28627. }
  28628. },
  28629. paw: {
  28630. height: math.unit(1.73, "feet"),
  28631. name: "Paw",
  28632. image: {
  28633. source: "./media/characters/remmyzilla/paw.svg"
  28634. }
  28635. },
  28636. maw: {
  28637. height: math.unit(1.73, "feet"),
  28638. name: "Maw",
  28639. image: {
  28640. source: "./media/characters/remmyzilla/maw.svg"
  28641. }
  28642. },
  28643. },
  28644. [
  28645. {
  28646. name: "Normal",
  28647. height: math.unit(6 + 4 / 12, "feet")
  28648. },
  28649. {
  28650. name: "Minimacro",
  28651. height: math.unit(12 + 8 / 12, "feet")
  28652. },
  28653. {
  28654. name: "Normal",
  28655. height: math.unit(640, "feet"),
  28656. default: true
  28657. },
  28658. {
  28659. name: "Megamacro",
  28660. height: math.unit(6400, "feet")
  28661. },
  28662. {
  28663. name: "Gigamacro",
  28664. height: math.unit(64000, "miles")
  28665. },
  28666. ]
  28667. ))
  28668. characterMakers.push(() => makeCharacter(
  28669. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28670. {
  28671. front: {
  28672. height: math.unit(2.5, "meters"),
  28673. weight: math.unit(300, "lb"),
  28674. name: "Front",
  28675. image: {
  28676. source: "./media/characters/lawrence/front.svg",
  28677. extra: 357 / 335,
  28678. bottom: 30 / 387
  28679. }
  28680. },
  28681. back: {
  28682. height: math.unit(2.5, "meters"),
  28683. weight: math.unit(300, "lb"),
  28684. name: "Back",
  28685. image: {
  28686. source: "./media/characters/lawrence/back.svg",
  28687. extra: 357 / 338,
  28688. bottom: 16 / 373
  28689. }
  28690. },
  28691. head: {
  28692. height: math.unit(0.9, "meter"),
  28693. name: "Head",
  28694. image: {
  28695. source: "./media/characters/lawrence/head.svg"
  28696. }
  28697. },
  28698. maw: {
  28699. height: math.unit(0.7, "meter"),
  28700. name: "Maw",
  28701. image: {
  28702. source: "./media/characters/lawrence/maw.svg"
  28703. }
  28704. },
  28705. footBottom: {
  28706. height: math.unit(0.5, "meter"),
  28707. name: "Foot (Bottom)",
  28708. image: {
  28709. source: "./media/characters/lawrence/foot-bottom.svg"
  28710. }
  28711. },
  28712. footTop: {
  28713. height: math.unit(0.5, "meter"),
  28714. name: "Foot (Top)",
  28715. image: {
  28716. source: "./media/characters/lawrence/foot-top.svg"
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Normal",
  28723. height: math.unit(2.5, "meters"),
  28724. default: true
  28725. },
  28726. {
  28727. name: "Macro",
  28728. height: math.unit(95, "meters")
  28729. },
  28730. {
  28731. name: "Megamacro",
  28732. height: math.unit(150, "km")
  28733. },
  28734. ]
  28735. ))
  28736. characterMakers.push(() => makeCharacter(
  28737. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28738. {
  28739. front: {
  28740. height: math.unit(4.2, "meters"),
  28741. name: "Front",
  28742. image: {
  28743. source: "./media/characters/sydney/front.svg",
  28744. extra: 1323 / 1277,
  28745. bottom: 111 / 1434
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(4.2, "meters"),
  28753. default: true
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28759. {
  28760. back: {
  28761. height: math.unit(201, "feet"),
  28762. name: "Back",
  28763. image: {
  28764. source: "./media/characters/jessica/back.svg",
  28765. extra: 273 / 259,
  28766. bottom: 7 / 280
  28767. }
  28768. },
  28769. },
  28770. [
  28771. {
  28772. name: "Normal",
  28773. height: math.unit(201, "feet"),
  28774. default: true
  28775. },
  28776. {
  28777. name: "Megamacro",
  28778. height: math.unit(8, "miles")
  28779. },
  28780. ]
  28781. ))
  28782. characterMakers.push(() => makeCharacter(
  28783. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28784. {
  28785. side: {
  28786. height: math.unit(320, "cm"),
  28787. name: "Side",
  28788. image: {
  28789. source: "./media/characters/victoria/side.svg",
  28790. extra: 778 / 346,
  28791. bottom: 56 / 834
  28792. }
  28793. },
  28794. maw: {
  28795. height: math.unit(5.9, "feet"),
  28796. name: "Maw",
  28797. image: {
  28798. source: "./media/characters/victoria/maw.svg"
  28799. }
  28800. },
  28801. },
  28802. [
  28803. {
  28804. name: "Normal",
  28805. height: math.unit(320, "cm"),
  28806. default: true
  28807. },
  28808. ]
  28809. ))
  28810. characterMakers.push(() => makeCharacter(
  28811. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28812. {
  28813. front: {
  28814. height: math.unit(5 + 6 / 12, "feet"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/cat/front.svg",
  28818. extra: 1449/1295,
  28819. bottom: 34/1483
  28820. }
  28821. },
  28822. back: {
  28823. height: math.unit(5 + 6 / 12, "feet"),
  28824. name: "Back",
  28825. image: {
  28826. source: "./media/characters/cat/back.svg",
  28827. extra: 1466/1301,
  28828. bottom: 19/1485
  28829. }
  28830. },
  28831. taur: {
  28832. height: math.unit(7, "feet"),
  28833. name: "Taur",
  28834. image: {
  28835. source: "./media/characters/cat/taur.svg",
  28836. extra: 1389/1233,
  28837. bottom: 83/1472
  28838. }
  28839. },
  28840. lucarioFront: {
  28841. height: math.unit(4, "feet"),
  28842. name: "Lucario (Front)",
  28843. image: {
  28844. source: "./media/characters/cat/lucario-front.svg",
  28845. extra: 1149/1019,
  28846. bottom: 84/1233
  28847. }
  28848. },
  28849. lucarioBack: {
  28850. height: math.unit(4, "feet"),
  28851. name: "Lucario (Back)",
  28852. image: {
  28853. source: "./media/characters/cat/lucario-back.svg",
  28854. extra: 1190/1059,
  28855. bottom: 33/1223
  28856. }
  28857. },
  28858. megaLucario: {
  28859. height: math.unit(4, "feet"),
  28860. name: "Mega Lucario",
  28861. image: {
  28862. source: "./media/characters/cat/mega-lucario.svg",
  28863. extra: 1515 / 1319,
  28864. bottom: 63 / 1578
  28865. }
  28866. },
  28867. nickit: {
  28868. height: math.unit(2, "feet"),
  28869. name: "Nickit",
  28870. image: {
  28871. source: "./media/characters/cat/nickit.svg",
  28872. extra: 1980 / 1585,
  28873. bottom: 102 / 2082
  28874. }
  28875. },
  28876. lopunnyFront: {
  28877. height: math.unit(5, "feet"),
  28878. name: "Lopunny (Front)",
  28879. image: {
  28880. source: "./media/characters/cat/lopunny-front.svg",
  28881. extra: 1782 / 1469,
  28882. bottom: 38 / 1820
  28883. }
  28884. },
  28885. lopunnyBack: {
  28886. height: math.unit(5, "feet"),
  28887. name: "Lopunny (Back)",
  28888. image: {
  28889. source: "./media/characters/cat/lopunny-back.svg",
  28890. extra: 1660 / 1490,
  28891. bottom: 25 / 1685
  28892. }
  28893. },
  28894. },
  28895. [
  28896. {
  28897. name: "Really small",
  28898. height: math.unit(1, "nm")
  28899. },
  28900. {
  28901. name: "Micro",
  28902. height: math.unit(5, "inches")
  28903. },
  28904. {
  28905. name: "Normal",
  28906. height: math.unit(5 + 6 / 12, "feet"),
  28907. default: true
  28908. },
  28909. {
  28910. name: "Macro",
  28911. height: math.unit(50, "feet")
  28912. },
  28913. {
  28914. name: "Macro+",
  28915. height: math.unit(150, "feet")
  28916. },
  28917. {
  28918. name: "Megamacro",
  28919. height: math.unit(100, "miles")
  28920. },
  28921. ]
  28922. ))
  28923. characterMakers.push(() => makeCharacter(
  28924. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28925. {
  28926. front: {
  28927. height: math.unit(63.4, "meters"),
  28928. weight: math.unit(3.28349e+6, "kilograms"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/kirina-violet/front.svg",
  28932. extra: 2812 / 2725,
  28933. bottom: 0 / 2812
  28934. }
  28935. },
  28936. back: {
  28937. height: math.unit(63.4, "meters"),
  28938. weight: math.unit(3.28349e+6, "kilograms"),
  28939. name: "Back",
  28940. image: {
  28941. source: "./media/characters/kirina-violet/back.svg",
  28942. extra: 2812 / 2725,
  28943. bottom: 0 / 2812
  28944. }
  28945. },
  28946. mouth: {
  28947. height: math.unit(4.35, "meters"),
  28948. name: "Mouth",
  28949. image: {
  28950. source: "./media/characters/kirina-violet/mouth.svg"
  28951. }
  28952. },
  28953. paw: {
  28954. height: math.unit(5.6, "meters"),
  28955. name: "Paw",
  28956. image: {
  28957. source: "./media/characters/kirina-violet/paw.svg"
  28958. }
  28959. },
  28960. tail: {
  28961. height: math.unit(18, "meters"),
  28962. name: "Tail",
  28963. image: {
  28964. source: "./media/characters/kirina-violet/tail.svg"
  28965. }
  28966. },
  28967. },
  28968. [
  28969. {
  28970. name: "Macro",
  28971. height: math.unit(63.4, "meters"),
  28972. default: true
  28973. },
  28974. ]
  28975. ))
  28976. characterMakers.push(() => makeCharacter(
  28977. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28978. {
  28979. front: {
  28980. height: math.unit(75, "feet"),
  28981. name: "Front",
  28982. image: {
  28983. source: "./media/characters/cat-gigachu/front.svg",
  28984. extra: 1239/1027,
  28985. bottom: 32/1271
  28986. }
  28987. },
  28988. back: {
  28989. height: math.unit(75, "feet"),
  28990. name: "Back",
  28991. image: {
  28992. source: "./media/characters/cat-gigachu/back.svg",
  28993. extra: 1229/1030,
  28994. bottom: 9/1238
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Dynamax",
  29001. height: math.unit(75, "feet"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29008. {
  29009. front: {
  29010. height: math.unit(6, "feet"),
  29011. weight: math.unit(150, "lb"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/sfaiyan/front.svg",
  29015. extra: 999 / 978,
  29016. bottom: 5 / 1004
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Normal",
  29023. height: math.unit(1.82, "meters")
  29024. },
  29025. {
  29026. name: "Giant",
  29027. height: math.unit(2.27, "km"),
  29028. default: true
  29029. },
  29030. ]
  29031. ))
  29032. characterMakers.push(() => makeCharacter(
  29033. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29034. {
  29035. front: {
  29036. height: math.unit(179, "cm"),
  29037. weight: math.unit(100, "kg"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/raunehkeli/front.svg",
  29041. extra: 1934 / 1926,
  29042. bottom: 0 / 1934
  29043. }
  29044. },
  29045. },
  29046. [
  29047. {
  29048. name: "Normal",
  29049. height: math.unit(179, "cm")
  29050. },
  29051. {
  29052. name: "Maximum",
  29053. height: math.unit(575, "meters"),
  29054. default: true
  29055. },
  29056. ]
  29057. ))
  29058. characterMakers.push(() => makeCharacter(
  29059. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29060. {
  29061. front: {
  29062. height: math.unit(6, "feet"),
  29063. weight: math.unit(150, "lb"),
  29064. name: "Front",
  29065. image: {
  29066. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29067. extra: 2625 / 2518,
  29068. bottom: 60 / 2685
  29069. }
  29070. },
  29071. },
  29072. [
  29073. {
  29074. name: "Normal",
  29075. height: math.unit(6 + 2 / 12, "feet")
  29076. },
  29077. {
  29078. name: "Macro",
  29079. height: math.unit(1180, "feet"),
  29080. default: true
  29081. },
  29082. ]
  29083. ))
  29084. characterMakers.push(() => makeCharacter(
  29085. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29086. {
  29087. front: {
  29088. height: math.unit(5 + 6 / 12, "feet"),
  29089. weight: math.unit(108, "lb"),
  29090. name: "Front",
  29091. image: {
  29092. source: "./media/characters/lilith-zott/front.svg",
  29093. extra: 2510 / 2238,
  29094. bottom: 100 / 2610
  29095. }
  29096. },
  29097. frontDressed: {
  29098. height: math.unit(5 + 6 / 12, "feet"),
  29099. weight: math.unit(108, "lb"),
  29100. name: "Front (Dressed)",
  29101. image: {
  29102. source: "./media/characters/lilith-zott/front-dressed.svg",
  29103. extra: 2510 / 2238,
  29104. bottom: 100 / 2610
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Normal",
  29111. height: math.unit(5 + 6 / 12, "feet")
  29112. },
  29113. {
  29114. name: "Macro",
  29115. height: math.unit(1030, "feet"),
  29116. default: true
  29117. },
  29118. ]
  29119. ))
  29120. characterMakers.push(() => makeCharacter(
  29121. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29122. {
  29123. front: {
  29124. height: math.unit(6, "feet"),
  29125. weight: math.unit(150, "lb"),
  29126. name: "Front",
  29127. image: {
  29128. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29129. extra: 2567 / 2435,
  29130. bottom: 39 / 2606
  29131. }
  29132. },
  29133. frontSuper: {
  29134. height: math.unit(6, "feet"),
  29135. name: "Front (Super)",
  29136. image: {
  29137. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29138. extra: 2567 / 2435,
  29139. bottom: 39 / 2606
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Normal",
  29146. height: math.unit(5 + 10 / 12, "feet")
  29147. },
  29148. {
  29149. name: "Macro",
  29150. height: math.unit(1100, "feet"),
  29151. default: true
  29152. },
  29153. ]
  29154. ))
  29155. characterMakers.push(() => makeCharacter(
  29156. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29157. {
  29158. front: {
  29159. height: math.unit(100, "miles"),
  29160. name: "Front",
  29161. image: {
  29162. source: "./media/characters/sona/front.svg",
  29163. extra: 2433 / 2201,
  29164. bottom: 53 / 2486
  29165. }
  29166. },
  29167. foot: {
  29168. height: math.unit(16.1, "miles"),
  29169. name: "Foot",
  29170. image: {
  29171. source: "./media/characters/sona/foot.svg"
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Macro",
  29178. height: math.unit(100, "miles"),
  29179. default: true
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(6, "feet"),
  29188. weight: math.unit(150, "lb"),
  29189. name: "Front",
  29190. image: {
  29191. source: "./media/characters/bailey/front.svg",
  29192. extra: 1778 / 1724,
  29193. bottom: 30 / 1808
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Micro",
  29200. height: math.unit(4, "inches")
  29201. },
  29202. {
  29203. name: "Normal",
  29204. height: math.unit(5 + 5 / 12, "feet"),
  29205. default: true
  29206. },
  29207. {
  29208. name: "Macro",
  29209. height: math.unit(250, "feet")
  29210. },
  29211. {
  29212. name: "Megamacro",
  29213. height: math.unit(100, "miles")
  29214. },
  29215. ]
  29216. ))
  29217. characterMakers.push(() => makeCharacter(
  29218. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29219. {
  29220. front: {
  29221. height: math.unit(5 + 2 / 12, "feet"),
  29222. weight: math.unit(120, "lb"),
  29223. name: "Front",
  29224. image: {
  29225. source: "./media/characters/snaps/front.svg",
  29226. extra: 2370 / 2177,
  29227. bottom: 48 / 2418
  29228. }
  29229. },
  29230. back: {
  29231. height: math.unit(5 + 2 / 12, "feet"),
  29232. weight: math.unit(120, "lb"),
  29233. name: "Back",
  29234. image: {
  29235. source: "./media/characters/snaps/back.svg",
  29236. extra: 2408 / 2258,
  29237. bottom: 15 / 2423
  29238. }
  29239. },
  29240. },
  29241. [
  29242. {
  29243. name: "Micro",
  29244. height: math.unit(9, "inches")
  29245. },
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(5 + 2 / 12, "feet"),
  29249. default: true
  29250. },
  29251. {
  29252. name: "Mini Macro",
  29253. height: math.unit(10, "feet")
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(1.8, "meters"),
  29262. weight: math.unit(85, "kg"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/azteck/front.svg",
  29266. extra: 2815 / 2625,
  29267. bottom: 89 / 2904
  29268. }
  29269. },
  29270. back: {
  29271. height: math.unit(1.8, "meters"),
  29272. weight: math.unit(85, "kg"),
  29273. name: "Back",
  29274. image: {
  29275. source: "./media/characters/azteck/back.svg",
  29276. extra: 2856 / 2648,
  29277. bottom: 85 / 2941
  29278. }
  29279. },
  29280. frontDressed: {
  29281. height: math.unit(1.8, "meters"),
  29282. weight: math.unit(85, "kg"),
  29283. name: "Front (Dressed)",
  29284. image: {
  29285. source: "./media/characters/azteck/front-dressed.svg",
  29286. extra: 2147 / 2003,
  29287. bottom: 68 / 2215
  29288. }
  29289. },
  29290. head: {
  29291. height: math.unit(0.47, "meters"),
  29292. weight: math.unit(85, "kg"),
  29293. name: "Head",
  29294. image: {
  29295. source: "./media/characters/azteck/head.svg"
  29296. }
  29297. },
  29298. },
  29299. [
  29300. {
  29301. name: "Bite sized",
  29302. height: math.unit(16, "cm")
  29303. },
  29304. {
  29305. name: "Normal",
  29306. height: math.unit(1.8, "meters"),
  29307. default: true
  29308. },
  29309. ]
  29310. ))
  29311. characterMakers.push(() => makeCharacter(
  29312. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29313. {
  29314. front: {
  29315. height: math.unit(6, "feet"),
  29316. weight: math.unit(150, "lb"),
  29317. name: "Front",
  29318. image: {
  29319. source: "./media/characters/pidge/front.svg",
  29320. extra: 620 / 588,
  29321. bottom: 9 / 629
  29322. }
  29323. },
  29324. back: {
  29325. height: math.unit(6, "feet"),
  29326. weight: math.unit(150, "lb"),
  29327. name: "Back",
  29328. image: {
  29329. source: "./media/characters/pidge/back.svg",
  29330. extra: 620 / 588,
  29331. bottom: 9 / 629
  29332. }
  29333. },
  29334. },
  29335. [
  29336. {
  29337. name: "Macro",
  29338. height: math.unit(1, "mile"),
  29339. default: true
  29340. },
  29341. ]
  29342. ))
  29343. characterMakers.push(() => makeCharacter(
  29344. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29345. {
  29346. front: {
  29347. height: math.unit(6, "feet"),
  29348. weight: math.unit(150, "lb"),
  29349. name: "Front",
  29350. image: {
  29351. source: "./media/characters/en/front.svg",
  29352. extra: 1697 / 1563,
  29353. bottom: 103 / 1800
  29354. }
  29355. },
  29356. back: {
  29357. height: math.unit(6, "feet"),
  29358. weight: math.unit(150, "lb"),
  29359. name: "Back",
  29360. image: {
  29361. source: "./media/characters/en/back.svg",
  29362. extra: 1700 / 1570,
  29363. bottom: 51 / 1751
  29364. }
  29365. },
  29366. frontDressed: {
  29367. height: math.unit(6, "feet"),
  29368. weight: math.unit(150, "lb"),
  29369. name: "Front (Dressed)",
  29370. image: {
  29371. source: "./media/characters/en/front-dressed.svg",
  29372. extra: 1697 / 1563,
  29373. bottom: 103 / 1800
  29374. }
  29375. },
  29376. backDressed: {
  29377. height: math.unit(6, "feet"),
  29378. weight: math.unit(150, "lb"),
  29379. name: "Back (Dressed)",
  29380. image: {
  29381. source: "./media/characters/en/back-dressed.svg",
  29382. extra: 1700 / 1570,
  29383. bottom: 51 / 1751
  29384. }
  29385. },
  29386. },
  29387. [
  29388. {
  29389. name: "Macro",
  29390. height: math.unit(210, "feet"),
  29391. default: true
  29392. },
  29393. ]
  29394. ))
  29395. characterMakers.push(() => makeCharacter(
  29396. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29397. {
  29398. front: {
  29399. height: math.unit(6, "feet"),
  29400. weight: math.unit(150, "lb"),
  29401. name: "Front",
  29402. image: {
  29403. source: "./media/characters/haze-orris/front.svg",
  29404. extra: 3975 / 3525,
  29405. bottom: 137 / 4112
  29406. }
  29407. },
  29408. },
  29409. [
  29410. {
  29411. name: "Micro",
  29412. height: math.unit(150, "mm"),
  29413. default: true
  29414. },
  29415. ]
  29416. ))
  29417. characterMakers.push(() => makeCharacter(
  29418. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29419. {
  29420. front: {
  29421. height: math.unit(6, "feet"),
  29422. weight: math.unit(150, "lb"),
  29423. name: "Front",
  29424. image: {
  29425. source: "./media/characters/casselene-yaro/front.svg",
  29426. extra: 4721 / 4541,
  29427. bottom: 82 / 4803
  29428. }
  29429. },
  29430. back: {
  29431. height: math.unit(6, "feet"),
  29432. weight: math.unit(150, "lb"),
  29433. name: "Back",
  29434. image: {
  29435. source: "./media/characters/casselene-yaro/back.svg",
  29436. extra: 4569 / 4377,
  29437. bottom: 69 / 4638
  29438. }
  29439. },
  29440. frontDressed: {
  29441. height: math.unit(6, "feet"),
  29442. weight: math.unit(150, "lb"),
  29443. name: "Front-dressed",
  29444. image: {
  29445. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29446. extra: 4721 / 4541,
  29447. bottom: 82 / 4803
  29448. }
  29449. },
  29450. },
  29451. [
  29452. {
  29453. name: "Macro",
  29454. height: math.unit(190, "feet"),
  29455. default: true
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29461. {
  29462. front: {
  29463. height: math.unit(6, "feet"),
  29464. weight: math.unit(150, "lb"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/myra-rue-delore/front.svg",
  29468. extra: 1340 / 1308,
  29469. bottom: 67 / 1407
  29470. }
  29471. },
  29472. back: {
  29473. height: math.unit(6, "feet"),
  29474. weight: math.unit(150, "lb"),
  29475. name: "Back",
  29476. image: {
  29477. source: "./media/characters/myra-rue-delore/back.svg",
  29478. extra: 1341 / 1310,
  29479. bottom: 40 / 1381
  29480. }
  29481. },
  29482. frontDressed: {
  29483. height: math.unit(6, "feet"),
  29484. weight: math.unit(150, "lb"),
  29485. name: "Front (Dressed)",
  29486. image: {
  29487. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29488. extra: 1340 / 1308,
  29489. bottom: 67 / 1407
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Macro",
  29496. height: math.unit(150, "feet"),
  29497. default: true
  29498. },
  29499. ]
  29500. ))
  29501. characterMakers.push(() => makeCharacter(
  29502. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29503. {
  29504. front: {
  29505. height: math.unit(10, "feet"),
  29506. weight: math.unit(15015, "lb"),
  29507. name: "Front",
  29508. image: {
  29509. source: "./media/characters/fem!plat/front.svg",
  29510. extra: 2799 / 2604,
  29511. bottom: 149 / 2948
  29512. }
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "Normal",
  29518. height: math.unit(10, "feet"),
  29519. default: true
  29520. },
  29521. {
  29522. name: "Macro",
  29523. height: math.unit(100, "feet")
  29524. },
  29525. {
  29526. name: "Megamacro",
  29527. height: math.unit(1000, "feet")
  29528. },
  29529. ]
  29530. ))
  29531. characterMakers.push(() => makeCharacter(
  29532. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29533. {
  29534. front: {
  29535. height: math.unit(15 + 5 / 12, "feet"),
  29536. weight: math.unit(4600, "lb"),
  29537. name: "Front",
  29538. image: {
  29539. source: "./media/characters/neapolitan-ananassa/front.svg",
  29540. extra: 2903 / 2736,
  29541. bottom: 0 / 2903
  29542. }
  29543. },
  29544. side: {
  29545. height: math.unit(15 + 5 / 12, "feet"),
  29546. weight: math.unit(4600, "lb"),
  29547. name: "Side",
  29548. image: {
  29549. source: "./media/characters/neapolitan-ananassa/side.svg",
  29550. extra: 2925 / 2719,
  29551. bottom: 0 / 2925
  29552. }
  29553. },
  29554. back: {
  29555. height: math.unit(15 + 5 / 12, "feet"),
  29556. weight: math.unit(4600, "lb"),
  29557. name: "Back",
  29558. image: {
  29559. source: "./media/characters/neapolitan-ananassa/back.svg",
  29560. extra: 2903 / 2736,
  29561. bottom: 0 / 2903
  29562. }
  29563. },
  29564. },
  29565. [
  29566. {
  29567. name: "Normal",
  29568. height: math.unit(15 + 5 / 12, "feet"),
  29569. default: true
  29570. },
  29571. {
  29572. name: "Post-Millenium",
  29573. height: math.unit(35 + 5 / 12, "feet")
  29574. },
  29575. {
  29576. name: "Post-Era",
  29577. height: math.unit(450 + 5 / 12, "feet")
  29578. },
  29579. ]
  29580. ))
  29581. characterMakers.push(() => makeCharacter(
  29582. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29583. {
  29584. front: {
  29585. height: math.unit(300, "meters"),
  29586. weight: math.unit(125000, "tonnes"),
  29587. name: "Front",
  29588. image: {
  29589. source: "./media/characters/pazuzu/front.svg",
  29590. extra: 877 / 794,
  29591. bottom: 47 / 924
  29592. }
  29593. },
  29594. },
  29595. [
  29596. {
  29597. name: "Macro",
  29598. height: math.unit(300, "meters"),
  29599. default: true
  29600. },
  29601. ]
  29602. ))
  29603. characterMakers.push(() => makeCharacter(
  29604. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29605. {
  29606. side: {
  29607. height: math.unit(10 + 7 / 12, "feet"),
  29608. weight: math.unit(2.5, "tons"),
  29609. name: "Side",
  29610. image: {
  29611. source: "./media/characters/aasha/side.svg",
  29612. extra: 1345 / 1245,
  29613. bottom: 111 / 1456
  29614. }
  29615. },
  29616. back: {
  29617. height: math.unit(10 + 7 / 12, "feet"),
  29618. weight: math.unit(2.5, "tons"),
  29619. name: "Back",
  29620. image: {
  29621. source: "./media/characters/aasha/back.svg",
  29622. extra: 1133 / 1057,
  29623. bottom: 257 / 1390
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(10 + 7 / 12, "feet"),
  29631. default: true
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29637. {
  29638. front: {
  29639. height: math.unit(6 + 3 / 12, "feet"),
  29640. name: "Front",
  29641. image: {
  29642. source: "./media/characters/nevan/front.svg",
  29643. extra: 704 / 704,
  29644. bottom: 28 / 732
  29645. }
  29646. },
  29647. back: {
  29648. height: math.unit(6 + 3 / 12, "feet"),
  29649. name: "Back",
  29650. image: {
  29651. source: "./media/characters/nevan/back.svg",
  29652. extra: 714 / 714,
  29653. bottom: 21 / 735
  29654. }
  29655. },
  29656. frontFlaccid: {
  29657. height: math.unit(6 + 3 / 12, "feet"),
  29658. name: "Front (Flaccid)",
  29659. image: {
  29660. source: "./media/characters/nevan/front-flaccid.svg",
  29661. extra: 704 / 704,
  29662. bottom: 28 / 732
  29663. }
  29664. },
  29665. frontErect: {
  29666. height: math.unit(6 + 3 / 12, "feet"),
  29667. name: "Front (Erect)",
  29668. image: {
  29669. source: "./media/characters/nevan/front-erect.svg",
  29670. extra: 704 / 704,
  29671. bottom: 28 / 732
  29672. }
  29673. },
  29674. backFlaccid: {
  29675. height: math.unit(6 + 3 / 12, "feet"),
  29676. name: "Back (Flaccid)",
  29677. image: {
  29678. source: "./media/characters/nevan/back-flaccid.svg",
  29679. extra: 714 / 714,
  29680. bottom: 21 / 735
  29681. }
  29682. },
  29683. },
  29684. [
  29685. {
  29686. name: "Normal",
  29687. height: math.unit(6 + 3 / 12, "feet"),
  29688. default: true
  29689. },
  29690. ]
  29691. ))
  29692. characterMakers.push(() => makeCharacter(
  29693. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29694. {
  29695. front: {
  29696. height: math.unit(4, "feet"),
  29697. name: "Front",
  29698. image: {
  29699. source: "./media/characters/arhan/front.svg",
  29700. extra: 3368 / 3133,
  29701. bottom: 0 / 3368
  29702. }
  29703. },
  29704. side: {
  29705. height: math.unit(4, "feet"),
  29706. name: "Side",
  29707. image: {
  29708. source: "./media/characters/arhan/side.svg",
  29709. extra: 3347 / 3105,
  29710. bottom: 0 / 3347
  29711. }
  29712. },
  29713. tongue: {
  29714. height: math.unit(1.42, "feet"),
  29715. name: "Tongue",
  29716. image: {
  29717. source: "./media/characters/arhan/tongue.svg"
  29718. }
  29719. },
  29720. head: {
  29721. height: math.unit(0.85, "feet"),
  29722. name: "Head",
  29723. image: {
  29724. source: "./media/characters/arhan/head.svg"
  29725. }
  29726. },
  29727. },
  29728. [
  29729. {
  29730. name: "Normal",
  29731. height: math.unit(4, "feet"),
  29732. default: true
  29733. },
  29734. ]
  29735. ))
  29736. characterMakers.push(() => makeCharacter(
  29737. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29738. {
  29739. front: {
  29740. height: math.unit(5 + 7.5 / 12, "feet"),
  29741. weight: math.unit(120, "lb"),
  29742. name: "Front",
  29743. image: {
  29744. source: "./media/characters/digi-duncan/front.svg",
  29745. extra: 330 / 326,
  29746. bottom: 16 / 346
  29747. }
  29748. },
  29749. side: {
  29750. height: math.unit(5 + 7.5 / 12, "feet"),
  29751. weight: math.unit(120, "lb"),
  29752. name: "Side",
  29753. image: {
  29754. source: "./media/characters/digi-duncan/side.svg",
  29755. extra: 341 / 337,
  29756. bottom: 1 / 342
  29757. }
  29758. },
  29759. back: {
  29760. height: math.unit(5 + 7.5 / 12, "feet"),
  29761. weight: math.unit(120, "lb"),
  29762. name: "Back",
  29763. image: {
  29764. source: "./media/characters/digi-duncan/back.svg",
  29765. extra: 330 / 326,
  29766. bottom: 12 / 342
  29767. }
  29768. },
  29769. },
  29770. [
  29771. {
  29772. name: "Speck",
  29773. height: math.unit(0.25, "mm")
  29774. },
  29775. {
  29776. name: "Micro",
  29777. height: math.unit(5, "mm")
  29778. },
  29779. {
  29780. name: "Tiny",
  29781. height: math.unit(0.5, "inches"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Human",
  29786. height: math.unit(5 + 7.5 / 12, "feet")
  29787. },
  29788. {
  29789. name: "Minigiant",
  29790. height: math.unit(8 + 5.25, "feet")
  29791. },
  29792. {
  29793. name: "Giant",
  29794. height: math.unit(2000, "feet")
  29795. },
  29796. {
  29797. name: "Mega",
  29798. height: math.unit(371.1, "miles")
  29799. },
  29800. ]
  29801. ))
  29802. characterMakers.push(() => makeCharacter(
  29803. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29804. {
  29805. front: {
  29806. height: math.unit(2, "meters"),
  29807. weight: math.unit(350, "kg"),
  29808. name: "Front",
  29809. image: {
  29810. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29811. extra: 898 / 838,
  29812. bottom: 9 / 907
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Micro",
  29819. height: math.unit(8, "meters")
  29820. },
  29821. {
  29822. name: "Normal",
  29823. height: math.unit(50, "meters"),
  29824. default: true
  29825. },
  29826. {
  29827. name: "Macro",
  29828. height: math.unit(500, "meters")
  29829. },
  29830. ]
  29831. ))
  29832. characterMakers.push(() => makeCharacter(
  29833. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29834. {
  29835. front: {
  29836. height: math.unit(6 + 6 / 12, "feet"),
  29837. name: "Front",
  29838. image: {
  29839. source: "./media/characters/khardesh/front.svg",
  29840. extra: 888 / 797,
  29841. bottom: 25 / 913
  29842. }
  29843. },
  29844. },
  29845. [
  29846. {
  29847. name: "Normal",
  29848. height: math.unit(6 + 6 / 12, "feet"),
  29849. default: true
  29850. },
  29851. {
  29852. name: "Normal+",
  29853. height: math.unit(4, "meters")
  29854. },
  29855. {
  29856. name: "Macro",
  29857. height: math.unit(50, "meters")
  29858. },
  29859. {
  29860. name: "Macro+",
  29861. height: math.unit(100, "meters")
  29862. },
  29863. {
  29864. name: "Megamacro",
  29865. height: math.unit(20, "km")
  29866. },
  29867. ]
  29868. ))
  29869. characterMakers.push(() => makeCharacter(
  29870. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29871. {
  29872. front: {
  29873. height: math.unit(6, "feet"),
  29874. weight: math.unit(150, "lb"),
  29875. name: "Front",
  29876. image: {
  29877. source: "./media/characters/kosho/front.svg",
  29878. extra: 1847 / 1847,
  29879. bottom: 86 / 1933
  29880. }
  29881. },
  29882. },
  29883. [
  29884. {
  29885. name: "Second-stage micro",
  29886. height: math.unit(0.5, "inches")
  29887. },
  29888. {
  29889. name: "First-stage micro",
  29890. height: math.unit(6, "inches")
  29891. },
  29892. {
  29893. name: "Normal",
  29894. height: math.unit(6, "feet"),
  29895. default: true
  29896. },
  29897. {
  29898. name: "First-stage macro",
  29899. height: math.unit(72, "feet")
  29900. },
  29901. {
  29902. name: "Second-stage macro",
  29903. height: math.unit(864, "feet")
  29904. },
  29905. ]
  29906. ))
  29907. characterMakers.push(() => makeCharacter(
  29908. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29909. {
  29910. normal: {
  29911. height: math.unit(4 + 6 / 12, "feet"),
  29912. name: "Normal",
  29913. image: {
  29914. source: "./media/characters/hydra/normal.svg",
  29915. extra: 2833 / 2634,
  29916. bottom: 68 / 2901
  29917. }
  29918. },
  29919. smol: {
  29920. height: math.unit(0.705, "inches"),
  29921. name: "Smol",
  29922. image: {
  29923. source: "./media/characters/hydra/smol.svg",
  29924. extra: 2715 / 2540,
  29925. bottom: 0 / 2715
  29926. }
  29927. },
  29928. },
  29929. [
  29930. {
  29931. name: "Normal",
  29932. height: math.unit(4 + 6 / 12, "feet"),
  29933. default: true
  29934. }
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(0.6, "cm"),
  29942. name: "Front",
  29943. image: {
  29944. source: "./media/characters/daz/front.svg",
  29945. extra: 1682 / 1164,
  29946. bottom: 42 / 1724
  29947. }
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Normal",
  29953. height: math.unit(0.6, "cm"),
  29954. default: true
  29955. },
  29956. ]
  29957. ))
  29958. characterMakers.push(() => makeCharacter(
  29959. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29960. {
  29961. front: {
  29962. height: math.unit(6, "feet"),
  29963. weight: math.unit(235, "lb"),
  29964. name: "Front",
  29965. image: {
  29966. source: "./media/characters/theo-pangolin/front.svg",
  29967. extra: 1996 / 1969,
  29968. bottom: 115 / 2111
  29969. }
  29970. },
  29971. back: {
  29972. height: math.unit(6, "feet"),
  29973. weight: math.unit(235, "lb"),
  29974. name: "Back",
  29975. image: {
  29976. source: "./media/characters/theo-pangolin/back.svg",
  29977. extra: 1979 / 1979,
  29978. bottom: 40 / 2019
  29979. }
  29980. },
  29981. feral: {
  29982. height: math.unit(2, "feet"),
  29983. weight: math.unit(30, "lb"),
  29984. name: "Feral",
  29985. image: {
  29986. source: "./media/characters/theo-pangolin/feral.svg",
  29987. extra: 803 / 791,
  29988. bottom: 181 / 984
  29989. }
  29990. },
  29991. footFive: {
  29992. height: math.unit(1.43, "feet"),
  29993. name: "Foot (Five Toes)",
  29994. image: {
  29995. source: "./media/characters/theo-pangolin/foot-five.svg"
  29996. }
  29997. },
  29998. footFour: {
  29999. height: math.unit(1.43, "feet"),
  30000. name: "Foot (Four Toes)",
  30001. image: {
  30002. source: "./media/characters/theo-pangolin/foot-four.svg"
  30003. }
  30004. },
  30005. handFour: {
  30006. height: math.unit(0.81, "feet"),
  30007. name: "Hand (Four Fingers)",
  30008. image: {
  30009. source: "./media/characters/theo-pangolin/hand-four.svg"
  30010. }
  30011. },
  30012. handThree: {
  30013. height: math.unit(0.81, "feet"),
  30014. name: "Hand (Three Fingers)",
  30015. image: {
  30016. source: "./media/characters/theo-pangolin/hand-three.svg"
  30017. }
  30018. },
  30019. headFront: {
  30020. height: math.unit(1.37, "feet"),
  30021. name: "Head (Front)",
  30022. image: {
  30023. source: "./media/characters/theo-pangolin/head-front.svg"
  30024. }
  30025. },
  30026. headSide: {
  30027. height: math.unit(1.43, "feet"),
  30028. name: "Head (Side)",
  30029. image: {
  30030. source: "./media/characters/theo-pangolin/head-side.svg"
  30031. }
  30032. },
  30033. tongue: {
  30034. height: math.unit(2.29, "feet"),
  30035. name: "Tongue",
  30036. image: {
  30037. source: "./media/characters/theo-pangolin/tongue.svg"
  30038. }
  30039. },
  30040. },
  30041. [
  30042. {
  30043. name: "Normal",
  30044. height: math.unit(6, "feet")
  30045. },
  30046. {
  30047. name: "Macro",
  30048. height: math.unit(400, "feet"),
  30049. default: true
  30050. },
  30051. ]
  30052. ))
  30053. characterMakers.push(() => makeCharacter(
  30054. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30055. {
  30056. front: {
  30057. height: math.unit(6, "inches"),
  30058. weight: math.unit(0.036, "kg"),
  30059. name: "Front",
  30060. image: {
  30061. source: "./media/characters/renée/front.svg",
  30062. extra: 900 / 886,
  30063. bottom: 8 / 908
  30064. }
  30065. },
  30066. },
  30067. [
  30068. {
  30069. name: "Nano",
  30070. height: math.unit(1, "nm")
  30071. },
  30072. {
  30073. name: "Micro",
  30074. height: math.unit(1, "mm")
  30075. },
  30076. {
  30077. name: "Normal",
  30078. height: math.unit(6, "inches")
  30079. },
  30080. {
  30081. name: "Macro",
  30082. height: math.unit(2000, "feet"),
  30083. default: true
  30084. },
  30085. {
  30086. name: "Megamacro",
  30087. height: math.unit(2, "km")
  30088. },
  30089. {
  30090. name: "Gigamacro",
  30091. height: math.unit(2000, "km")
  30092. },
  30093. {
  30094. name: "Teramacro",
  30095. height: math.unit(250000, "km")
  30096. },
  30097. ]
  30098. ))
  30099. characterMakers.push(() => makeCharacter(
  30100. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30101. {
  30102. front: {
  30103. height: math.unit(4, "meters"),
  30104. weight: math.unit(150, "kg"),
  30105. name: "Front",
  30106. image: {
  30107. source: "./media/characters/caledvwlch/front.svg",
  30108. extra: 1760 / 1551,
  30109. bottom: 28 / 1788
  30110. }
  30111. },
  30112. side: {
  30113. height: math.unit(4, "meters"),
  30114. weight: math.unit(150, "kg"),
  30115. name: "Side",
  30116. image: {
  30117. source: "./media/characters/caledvwlch/side.svg",
  30118. extra: 1605 / 1536,
  30119. bottom: 31 / 1636
  30120. }
  30121. },
  30122. back: {
  30123. height: math.unit(4, "meters"),
  30124. weight: math.unit(150, "kg"),
  30125. name: "Back",
  30126. image: {
  30127. source: "./media/characters/caledvwlch/back.svg",
  30128. extra: 1635 / 1565,
  30129. bottom: 27 / 1662
  30130. }
  30131. },
  30132. },
  30133. [
  30134. {
  30135. name: "\"Incognito\"",
  30136. height: math.unit(4, "meters")
  30137. },
  30138. {
  30139. name: "Small rampage",
  30140. height: math.unit(600, "meters")
  30141. },
  30142. {
  30143. name: "Mega",
  30144. height: math.unit(30, "km")
  30145. },
  30146. {
  30147. name: "Home-size",
  30148. height: math.unit(50, "km"),
  30149. default: true
  30150. },
  30151. {
  30152. name: "Giga",
  30153. height: math.unit(300, "km")
  30154. },
  30155. {
  30156. name: "Lounging",
  30157. height: math.unit(11000, "km")
  30158. },
  30159. {
  30160. name: "Planet snacking",
  30161. height: math.unit(2000000, "km")
  30162. },
  30163. ]
  30164. ))
  30165. characterMakers.push(() => makeCharacter(
  30166. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30167. {
  30168. front: {
  30169. height: math.unit(6, "feet"),
  30170. weight: math.unit(215, "lb"),
  30171. name: "Front",
  30172. image: {
  30173. source: "./media/characters/sapphire-svell/front.svg",
  30174. extra: 495 / 455,
  30175. bottom: 20 / 515
  30176. }
  30177. },
  30178. back: {
  30179. height: math.unit(6, "feet"),
  30180. weight: math.unit(216, "lb"),
  30181. name: "Back",
  30182. image: {
  30183. source: "./media/characters/sapphire-svell/back.svg",
  30184. extra: 497 / 477,
  30185. bottom: 7 / 504
  30186. }
  30187. },
  30188. maw: {
  30189. height: math.unit(1.57, "feet"),
  30190. name: "Maw",
  30191. image: {
  30192. source: "./media/characters/sapphire-svell/maw.svg"
  30193. }
  30194. },
  30195. foot: {
  30196. height: math.unit(1.07, "feet"),
  30197. name: "Foot",
  30198. image: {
  30199. source: "./media/characters/sapphire-svell/foot.svg"
  30200. }
  30201. },
  30202. toering: {
  30203. height: math.unit(1.7, "inch"),
  30204. name: "Toering",
  30205. image: {
  30206. source: "./media/characters/sapphire-svell/toering.svg"
  30207. }
  30208. },
  30209. },
  30210. [
  30211. {
  30212. name: "Normal",
  30213. height: math.unit(300, "feet"),
  30214. default: true
  30215. },
  30216. {
  30217. name: "Augmented",
  30218. height: math.unit(1250, "feet")
  30219. },
  30220. {
  30221. name: "Unleashed",
  30222. height: math.unit(3000, "feet")
  30223. },
  30224. ]
  30225. ))
  30226. characterMakers.push(() => makeCharacter(
  30227. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30228. {
  30229. side: {
  30230. height: math.unit(2 + 3 / 12, "feet"),
  30231. weight: math.unit(110, "lb"),
  30232. name: "Side",
  30233. image: {
  30234. source: "./media/characters/glitch-flux/side.svg",
  30235. extra: 997 / 805,
  30236. bottom: 20 / 1017
  30237. }
  30238. },
  30239. },
  30240. [
  30241. {
  30242. name: "Normal",
  30243. height: math.unit(2 + 3 / 12, "feet"),
  30244. default: true
  30245. },
  30246. ]
  30247. ))
  30248. characterMakers.push(() => makeCharacter(
  30249. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30250. {
  30251. front: {
  30252. height: math.unit(4, "meters"),
  30253. name: "Front",
  30254. image: {
  30255. source: "./media/characters/mid/front.svg",
  30256. extra: 507 / 476,
  30257. bottom: 17 / 524
  30258. }
  30259. },
  30260. back: {
  30261. height: math.unit(4, "meters"),
  30262. name: "Back",
  30263. image: {
  30264. source: "./media/characters/mid/back.svg",
  30265. extra: 519 / 487,
  30266. bottom: 7 / 526
  30267. }
  30268. },
  30269. stuck: {
  30270. height: math.unit(2.2, "meters"),
  30271. name: "Stuck",
  30272. image: {
  30273. source: "./media/characters/mid/stuck.svg",
  30274. extra: 1951 / 1869,
  30275. bottom: 88 / 2039
  30276. }
  30277. }
  30278. },
  30279. [
  30280. {
  30281. name: "Normal",
  30282. height: math.unit(4, "meters"),
  30283. default: true
  30284. },
  30285. {
  30286. name: "Big",
  30287. height: math.unit(10, "meters")
  30288. },
  30289. {
  30290. name: "Macro",
  30291. height: math.unit(800, "meters")
  30292. },
  30293. {
  30294. name: "Megamacro",
  30295. height: math.unit(100, "km")
  30296. },
  30297. {
  30298. name: "Overgrown",
  30299. height: math.unit(1, "parsec")
  30300. },
  30301. ]
  30302. ))
  30303. characterMakers.push(() => makeCharacter(
  30304. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30305. {
  30306. front: {
  30307. height: math.unit(2.5, "meters"),
  30308. weight: math.unit(225, "kg"),
  30309. name: "Front",
  30310. image: {
  30311. source: "./media/characters/iris/front.svg",
  30312. extra: 3348 / 3251,
  30313. bottom: 205 / 3553
  30314. }
  30315. },
  30316. maw: {
  30317. height: math.unit(0.56, "meter"),
  30318. name: "Maw",
  30319. image: {
  30320. source: "./media/characters/iris/maw.svg"
  30321. }
  30322. },
  30323. },
  30324. [
  30325. {
  30326. name: "Mewter cat",
  30327. height: math.unit(1.2, "meters")
  30328. },
  30329. {
  30330. name: "Minimacro",
  30331. height: math.unit(2.5, "meters"),
  30332. default: true
  30333. },
  30334. {
  30335. name: "Macro",
  30336. height: math.unit(180, "meters")
  30337. },
  30338. {
  30339. name: "Megamacro",
  30340. height: math.unit(2746, "meters")
  30341. },
  30342. ]
  30343. ))
  30344. characterMakers.push(() => makeCharacter(
  30345. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30346. {
  30347. front: {
  30348. height: math.unit(6, "feet"),
  30349. weight: math.unit(135, "lb"),
  30350. name: "Front",
  30351. image: {
  30352. source: "./media/characters/axel/front.svg",
  30353. extra: 908 / 908,
  30354. bottom: 58 / 966
  30355. }
  30356. },
  30357. side: {
  30358. height: math.unit(6, "feet"),
  30359. weight: math.unit(135, "lb"),
  30360. name: "Side",
  30361. image: {
  30362. source: "./media/characters/axel/side.svg",
  30363. extra: 958 / 958,
  30364. bottom: 11 / 969
  30365. }
  30366. },
  30367. back: {
  30368. height: math.unit(6, "feet"),
  30369. weight: math.unit(135, "lb"),
  30370. name: "Back",
  30371. image: {
  30372. source: "./media/characters/axel/back.svg",
  30373. extra: 887 / 887,
  30374. bottom: 34 / 921
  30375. }
  30376. },
  30377. head: {
  30378. height: math.unit(1.07, "feet"),
  30379. name: "Head",
  30380. image: {
  30381. source: "./media/characters/axel/head.svg"
  30382. }
  30383. },
  30384. beak: {
  30385. height: math.unit(1.4, "feet"),
  30386. name: "Beak",
  30387. image: {
  30388. source: "./media/characters/axel/beak.svg"
  30389. }
  30390. },
  30391. beakSide: {
  30392. height: math.unit(1.4, "feet"),
  30393. name: "Beak Side",
  30394. image: {
  30395. source: "./media/characters/axel/beak-side.svg"
  30396. }
  30397. },
  30398. sheath: {
  30399. height: math.unit(0.5, "feet"),
  30400. name: "Sheath",
  30401. image: {
  30402. source: "./media/characters/axel/sheath.svg"
  30403. }
  30404. },
  30405. dick: {
  30406. height: math.unit(0.98, "feet"),
  30407. name: "Dick",
  30408. image: {
  30409. source: "./media/characters/axel/dick.svg"
  30410. }
  30411. },
  30412. },
  30413. [
  30414. {
  30415. name: "Macro",
  30416. height: math.unit(68, "meters"),
  30417. default: true
  30418. },
  30419. ]
  30420. ))
  30421. characterMakers.push(() => makeCharacter(
  30422. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30423. {
  30424. front: {
  30425. height: math.unit(3.5, "meters"),
  30426. weight: math.unit(1200, "kg"),
  30427. name: "Front",
  30428. image: {
  30429. source: "./media/characters/joanna/front.svg",
  30430. extra: 1596 / 1488,
  30431. bottom: 29 / 1625
  30432. }
  30433. },
  30434. back: {
  30435. height: math.unit(3.5, "meters"),
  30436. weight: math.unit(1200, "kg"),
  30437. name: "Back",
  30438. image: {
  30439. source: "./media/characters/joanna/back.svg",
  30440. extra: 1594 / 1495,
  30441. bottom: 26 / 1620
  30442. }
  30443. },
  30444. frontShorts: {
  30445. height: math.unit(3.5, "meters"),
  30446. weight: math.unit(1200, "kg"),
  30447. name: "Front (Shorts)",
  30448. image: {
  30449. source: "./media/characters/joanna/front-shorts.svg",
  30450. extra: 1596 / 1488,
  30451. bottom: 29 / 1625
  30452. }
  30453. },
  30454. frontBiker: {
  30455. height: math.unit(3.5, "meters"),
  30456. weight: math.unit(1200, "kg"),
  30457. name: "Front (Biker)",
  30458. image: {
  30459. source: "./media/characters/joanna/front-biker.svg",
  30460. extra: 1596 / 1488,
  30461. bottom: 29 / 1625
  30462. }
  30463. },
  30464. backBiker: {
  30465. height: math.unit(3.5, "meters"),
  30466. weight: math.unit(1200, "kg"),
  30467. name: "Back (Biker)",
  30468. image: {
  30469. source: "./media/characters/joanna/back-biker.svg",
  30470. extra: 1594 / 1495,
  30471. bottom: 88 / 1682
  30472. }
  30473. },
  30474. bikeLeft: {
  30475. height: math.unit(2.4, "meters"),
  30476. weight: math.unit(1600, "kg"),
  30477. name: "Bike (Left)",
  30478. image: {
  30479. source: "./media/characters/joanna/bike-left.svg",
  30480. extra: 720 / 720,
  30481. bottom: 8 / 728
  30482. }
  30483. },
  30484. bikeRight: {
  30485. height: math.unit(2.4, "meters"),
  30486. weight: math.unit(1600, "kg"),
  30487. name: "Bike (Right)",
  30488. image: {
  30489. source: "./media/characters/joanna/bike-right.svg",
  30490. extra: 720 / 720,
  30491. bottom: 8 / 728
  30492. }
  30493. },
  30494. },
  30495. [
  30496. {
  30497. name: "Incognito",
  30498. height: math.unit(3.5, "meters")
  30499. },
  30500. {
  30501. name: "Casual Big",
  30502. height: math.unit(200, "meters")
  30503. },
  30504. {
  30505. name: "Macro",
  30506. height: math.unit(600, "meters")
  30507. },
  30508. {
  30509. name: "Original",
  30510. height: math.unit(20, "km"),
  30511. default: true
  30512. },
  30513. {
  30514. name: "Giga",
  30515. height: math.unit(400, "km")
  30516. },
  30517. {
  30518. name: "Lounging",
  30519. height: math.unit(1500, "km")
  30520. },
  30521. {
  30522. name: "Planetary",
  30523. height: math.unit(200000, "km")
  30524. },
  30525. ]
  30526. ))
  30527. characterMakers.push(() => makeCharacter(
  30528. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30529. {
  30530. front: {
  30531. height: math.unit(6, "feet"),
  30532. weight: math.unit(150, "lb"),
  30533. name: "Front",
  30534. image: {
  30535. source: "./media/characters/hugo-sigil/front.svg",
  30536. extra: 522 / 500,
  30537. bottom: 2 / 524
  30538. }
  30539. },
  30540. back: {
  30541. height: math.unit(6, "feet"),
  30542. weight: math.unit(150, "lb"),
  30543. name: "Back",
  30544. image: {
  30545. source: "./media/characters/hugo-sigil/back.svg",
  30546. extra: 519 / 495,
  30547. bottom: 5 / 524
  30548. }
  30549. },
  30550. maw: {
  30551. height: math.unit(1.4, "feet"),
  30552. weight: math.unit(150, "lb"),
  30553. name: "Maw",
  30554. image: {
  30555. source: "./media/characters/hugo-sigil/maw.svg"
  30556. }
  30557. },
  30558. feet: {
  30559. height: math.unit(1.56, "feet"),
  30560. weight: math.unit(150, "lb"),
  30561. name: "Feet",
  30562. image: {
  30563. source: "./media/characters/hugo-sigil/feet.svg",
  30564. extra: 177 / 177,
  30565. bottom: 12 / 189
  30566. }
  30567. },
  30568. },
  30569. [
  30570. {
  30571. name: "Normal",
  30572. height: math.unit(6, "feet")
  30573. },
  30574. {
  30575. name: "Macro",
  30576. height: math.unit(200, "feet"),
  30577. default: true
  30578. },
  30579. ]
  30580. ))
  30581. characterMakers.push(() => makeCharacter(
  30582. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30583. {
  30584. front: {
  30585. height: math.unit(6, "feet"),
  30586. weight: math.unit(150, "lb"),
  30587. name: "Front",
  30588. image: {
  30589. source: "./media/characters/peri/front.svg",
  30590. extra: 2354 / 2233,
  30591. bottom: 49 / 2403
  30592. }
  30593. },
  30594. },
  30595. [
  30596. {
  30597. name: "Really Small",
  30598. height: math.unit(1, "nm")
  30599. },
  30600. {
  30601. name: "Micro",
  30602. height: math.unit(4, "inches")
  30603. },
  30604. {
  30605. name: "Normal",
  30606. height: math.unit(7, "inches"),
  30607. default: true
  30608. },
  30609. {
  30610. name: "Macro",
  30611. height: math.unit(400, "feet")
  30612. },
  30613. {
  30614. name: "Megamacro",
  30615. height: math.unit(100, "miles")
  30616. },
  30617. ]
  30618. ))
  30619. characterMakers.push(() => makeCharacter(
  30620. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30621. {
  30622. frontSlim: {
  30623. height: math.unit(7, "feet"),
  30624. name: "Front (Slim)",
  30625. image: {
  30626. source: "./media/characters/issilora/front-slim.svg",
  30627. extra: 529 / 449,
  30628. bottom: 53 / 582
  30629. }
  30630. },
  30631. sideSlim: {
  30632. height: math.unit(7, "feet"),
  30633. name: "Side (Slim)",
  30634. image: {
  30635. source: "./media/characters/issilora/side-slim.svg",
  30636. extra: 570 / 480,
  30637. bottom: 30 / 600
  30638. }
  30639. },
  30640. backSlim: {
  30641. height: math.unit(7, "feet"),
  30642. name: "Back (Slim)",
  30643. image: {
  30644. source: "./media/characters/issilora/back-slim.svg",
  30645. extra: 537 / 455,
  30646. bottom: 46 / 583
  30647. }
  30648. },
  30649. frontBuff: {
  30650. height: math.unit(7, "feet"),
  30651. name: "Front (Buff)",
  30652. image: {
  30653. source: "./media/characters/issilora/front-buff.svg",
  30654. extra: 2310 / 2035,
  30655. bottom: 335 / 2645
  30656. }
  30657. },
  30658. head: {
  30659. height: math.unit(1.94, "feet"),
  30660. name: "Head",
  30661. image: {
  30662. source: "./media/characters/issilora/head.svg"
  30663. }
  30664. },
  30665. },
  30666. [
  30667. {
  30668. name: "Minimum",
  30669. height: math.unit(7, "feet")
  30670. },
  30671. {
  30672. name: "Comfortable",
  30673. height: math.unit(17, "feet")
  30674. },
  30675. {
  30676. name: "Fun Size",
  30677. height: math.unit(47, "feet")
  30678. },
  30679. {
  30680. name: "Natural Macro",
  30681. height: math.unit(137, "feet"),
  30682. default: true
  30683. },
  30684. {
  30685. name: "Maximum Kaiju",
  30686. height: math.unit(397, "feet")
  30687. },
  30688. ]
  30689. ))
  30690. characterMakers.push(() => makeCharacter(
  30691. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30692. {
  30693. front: {
  30694. height: math.unit(50 + 9/12, "feet"),
  30695. weight: math.unit(32.8, "tons"),
  30696. name: "Front",
  30697. image: {
  30698. source: "./media/characters/irb'iiritaahn/front.svg",
  30699. extra: 1878/1826,
  30700. bottom: 326/2204
  30701. }
  30702. },
  30703. back: {
  30704. height: math.unit(50 + 9/12, "feet"),
  30705. weight: math.unit(32.8, "tons"),
  30706. name: "Back",
  30707. image: {
  30708. source: "./media/characters/irb'iiritaahn/back.svg",
  30709. extra: 2052/2018,
  30710. bottom: 152/2204
  30711. }
  30712. },
  30713. head: {
  30714. height: math.unit(12.86, "feet"),
  30715. name: "Head",
  30716. image: {
  30717. source: "./media/characters/irb'iiritaahn/head.svg"
  30718. }
  30719. },
  30720. maw: {
  30721. height: math.unit(9.66, "feet"),
  30722. name: "Maw",
  30723. image: {
  30724. source: "./media/characters/irb'iiritaahn/maw.svg"
  30725. }
  30726. },
  30727. frontDick: {
  30728. height: math.unit(8.78461, "feet"),
  30729. name: "Front Dick",
  30730. image: {
  30731. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30732. }
  30733. },
  30734. rearDick: {
  30735. height: math.unit(8.78461, "feet"),
  30736. name: "Rear Dick",
  30737. image: {
  30738. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30739. }
  30740. },
  30741. rearDickUnfolded: {
  30742. height: math.unit(8.78, "feet"),
  30743. name: "Rear Dick (Unfolded)",
  30744. image: {
  30745. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30746. }
  30747. },
  30748. wings: {
  30749. height: math.unit(43, "feet"),
  30750. name: "Wings",
  30751. image: {
  30752. source: "./media/characters/irb'iiritaahn/wings.svg"
  30753. }
  30754. },
  30755. },
  30756. [
  30757. {
  30758. name: "Macro",
  30759. height: math.unit(50 + 9/12, "feet"),
  30760. default: true
  30761. },
  30762. ]
  30763. ))
  30764. characterMakers.push(() => makeCharacter(
  30765. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30766. {
  30767. front: {
  30768. height: math.unit(205, "cm"),
  30769. weight: math.unit(102, "kg"),
  30770. name: "Front",
  30771. image: {
  30772. source: "./media/characters/irbisgreif/front.svg",
  30773. extra: 785/706,
  30774. bottom: 13/798
  30775. }
  30776. },
  30777. back: {
  30778. height: math.unit(205, "cm"),
  30779. weight: math.unit(102, "kg"),
  30780. name: "Back",
  30781. image: {
  30782. source: "./media/characters/irbisgreif/back.svg",
  30783. extra: 713/701,
  30784. bottom: 26/739
  30785. }
  30786. },
  30787. frontDressed: {
  30788. height: math.unit(216, "cm"),
  30789. weight: math.unit(102, "kg"),
  30790. name: "Front-dressed",
  30791. image: {
  30792. source: "./media/characters/irbisgreif/front-dressed.svg",
  30793. extra: 902/776,
  30794. bottom: 14/916
  30795. }
  30796. },
  30797. sideDressed: {
  30798. height: math.unit(195, "cm"),
  30799. weight: math.unit(102, "kg"),
  30800. name: "Side-dressed",
  30801. image: {
  30802. source: "./media/characters/irbisgreif/side-dressed.svg",
  30803. extra: 788/688,
  30804. bottom: 21/809
  30805. }
  30806. },
  30807. backDressed: {
  30808. height: math.unit(216, "cm"),
  30809. weight: math.unit(102, "kg"),
  30810. name: "Back-dressed",
  30811. image: {
  30812. source: "./media/characters/irbisgreif/back-dressed.svg",
  30813. extra: 901/783,
  30814. bottom: 10/911
  30815. }
  30816. },
  30817. dick: {
  30818. height: math.unit(0.49, "feet"),
  30819. name: "Dick",
  30820. image: {
  30821. source: "./media/characters/irbisgreif/dick.svg"
  30822. }
  30823. },
  30824. wingTop: {
  30825. height: math.unit(1.93 , "feet"),
  30826. name: "Wing-top",
  30827. image: {
  30828. source: "./media/characters/irbisgreif/wing-top.svg"
  30829. }
  30830. },
  30831. wingBottom: {
  30832. height: math.unit(1.93 , "feet"),
  30833. name: "Wing-bottom",
  30834. image: {
  30835. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30836. }
  30837. },
  30838. },
  30839. [
  30840. {
  30841. name: "Normal",
  30842. height: math.unit(216, "cm"),
  30843. default: true
  30844. },
  30845. ]
  30846. ))
  30847. characterMakers.push(() => makeCharacter(
  30848. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30849. {
  30850. front: {
  30851. height: math.unit(6, "feet"),
  30852. weight: math.unit(150, "lb"),
  30853. name: "Front",
  30854. image: {
  30855. source: "./media/characters/pride/front.svg",
  30856. extra: 1299/1230,
  30857. bottom: 18/1317
  30858. }
  30859. },
  30860. },
  30861. [
  30862. {
  30863. name: "Normal",
  30864. height: math.unit(7, "feet")
  30865. },
  30866. {
  30867. name: "Mini-macro",
  30868. height: math.unit(11, "feet")
  30869. },
  30870. {
  30871. name: "Macro",
  30872. height: math.unit(15, "meters"),
  30873. default: true
  30874. },
  30875. {
  30876. name: "Macro+",
  30877. height: math.unit(40, "meters")
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30883. {
  30884. front: {
  30885. height: math.unit(4 + 2 / 12, "feet"),
  30886. weight: math.unit(95, "lb"),
  30887. name: "Front",
  30888. image: {
  30889. source: "./media/characters/vaelophis-nyx/front.svg",
  30890. extra: 2532/2330,
  30891. bottom: 0/2532
  30892. }
  30893. },
  30894. back: {
  30895. height: math.unit(4 + 2 / 12, "feet"),
  30896. weight: math.unit(95, "lb"),
  30897. name: "Back",
  30898. image: {
  30899. source: "./media/characters/vaelophis-nyx/back.svg",
  30900. extra: 2484/2361,
  30901. bottom: 0/2484
  30902. }
  30903. },
  30904. feralSide: {
  30905. height: math.unit(2 + 1/12, "feet"),
  30906. weight: math.unit(20, "lb"),
  30907. name: "Feral (Side)",
  30908. image: {
  30909. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30910. extra: 1721/1581,
  30911. bottom: 70/1791
  30912. }
  30913. },
  30914. feralLazing: {
  30915. height: math.unit(1.08, "feet"),
  30916. weight: math.unit(20, "lb"),
  30917. name: "Feral (Lazing)",
  30918. image: {
  30919. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30920. extra: 822/822,
  30921. bottom: 248/1070
  30922. }
  30923. },
  30924. ear: {
  30925. height: math.unit(0.416, "feet"),
  30926. name: "Ear",
  30927. image: {
  30928. source: "./media/characters/vaelophis-nyx/ear.svg"
  30929. }
  30930. },
  30931. eye: {
  30932. height: math.unit(0.0748, "feet"),
  30933. name: "Eye",
  30934. image: {
  30935. source: "./media/characters/vaelophis-nyx/eye.svg"
  30936. }
  30937. },
  30938. mouth: {
  30939. height: math.unit(0.378, "feet"),
  30940. name: "Mouth",
  30941. image: {
  30942. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30943. }
  30944. },
  30945. spade: {
  30946. height: math.unit(0.55, "feet"),
  30947. name: "Spade",
  30948. image: {
  30949. source: "./media/characters/vaelophis-nyx/spade.svg"
  30950. }
  30951. },
  30952. },
  30953. [
  30954. {
  30955. name: "Normal",
  30956. height: math.unit(4 + 2/12, "feet"),
  30957. default: true
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30963. {
  30964. front: {
  30965. height: math.unit(7, "feet"),
  30966. weight: math.unit(231, "lb"),
  30967. name: "Front",
  30968. image: {
  30969. source: "./media/characters/flux/front.svg",
  30970. extra: 919/871,
  30971. bottom: 0/919
  30972. }
  30973. },
  30974. back: {
  30975. height: math.unit(7, "feet"),
  30976. weight: math.unit(231, "lb"),
  30977. name: "Back",
  30978. image: {
  30979. source: "./media/characters/flux/back.svg",
  30980. extra: 1040/992,
  30981. bottom: 0/1040
  30982. }
  30983. },
  30984. frontDressed: {
  30985. height: math.unit(7, "feet"),
  30986. weight: math.unit(231, "lb"),
  30987. name: "Front (Dressed)",
  30988. image: {
  30989. source: "./media/characters/flux/front-dressed.svg",
  30990. extra: 919/871,
  30991. bottom: 0/919
  30992. }
  30993. },
  30994. feralSide: {
  30995. height: math.unit(5, "feet"),
  30996. weight: math.unit(150, "lb"),
  30997. name: "Feral (Side)",
  30998. image: {
  30999. source: "./media/characters/flux/feral-side.svg",
  31000. extra: 598/528,
  31001. bottom: 28/626
  31002. }
  31003. },
  31004. head: {
  31005. height: math.unit(1.585, "feet"),
  31006. name: "Head",
  31007. image: {
  31008. source: "./media/characters/flux/head.svg"
  31009. }
  31010. },
  31011. headSide: {
  31012. height: math.unit(1.74, "feet"),
  31013. name: "Head (Side)",
  31014. image: {
  31015. source: "./media/characters/flux/head-side.svg"
  31016. }
  31017. },
  31018. headSideFire: {
  31019. height: math.unit(1.76, "feet"),
  31020. name: "Head (Side, Fire)",
  31021. image: {
  31022. source: "./media/characters/flux/head-side-fire.svg"
  31023. }
  31024. },
  31025. },
  31026. [
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(7, "feet"),
  31030. default: true
  31031. },
  31032. ]
  31033. ))
  31034. characterMakers.push(() => makeCharacter(
  31035. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31036. {
  31037. front: {
  31038. height: math.unit(9, "feet"),
  31039. weight: math.unit(1012, "lb"),
  31040. name: "Front",
  31041. image: {
  31042. source: "./media/characters/ulfra-lupae/front.svg",
  31043. extra: 1083/1011,
  31044. bottom: 67/1150
  31045. }
  31046. },
  31047. },
  31048. [
  31049. {
  31050. name: "Micro",
  31051. height: math.unit(6, "inches")
  31052. },
  31053. {
  31054. name: "Socializing",
  31055. height: math.unit(6 + 5/12, "feet")
  31056. },
  31057. {
  31058. name: "Normal",
  31059. height: math.unit(9, "feet"),
  31060. default: true
  31061. },
  31062. {
  31063. name: "Macro",
  31064. height: math.unit(150, "feet")
  31065. },
  31066. ]
  31067. ))
  31068. characterMakers.push(() => makeCharacter(
  31069. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31070. {
  31071. front: {
  31072. height: math.unit(5 + 2/12, "feet"),
  31073. weight: math.unit(120, "lb"),
  31074. name: "Front",
  31075. image: {
  31076. source: "./media/characters/timber/front.svg",
  31077. extra: 2814/2705,
  31078. bottom: 181/2995
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Normal",
  31085. height: math.unit(5 + 2/12, "feet"),
  31086. default: true
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(5 + 7/12, "feet"),
  31095. weight: math.unit(220, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/nicki/front.svg",
  31099. extra: 453/419,
  31100. bottom: 7/460
  31101. }
  31102. },
  31103. frontAlt: {
  31104. height: math.unit(5 + 7/12, "feet"),
  31105. weight: math.unit(220, "lb"),
  31106. name: "Front-alt",
  31107. image: {
  31108. source: "./media/characters/nicki/front-alt.svg",
  31109. extra: 435/411,
  31110. bottom: 12/447
  31111. }
  31112. },
  31113. back: {
  31114. height: math.unit(5 + 7/12, "feet"),
  31115. weight: math.unit(220, "lb"),
  31116. name: "Back",
  31117. image: {
  31118. source: "./media/characters/nicki/back.svg",
  31119. extra: 440/413,
  31120. bottom: 19/459
  31121. }
  31122. },
  31123. taur: {
  31124. height: math.unit(7 + 6/12, "feet"),
  31125. weight: math.unit(700, "lb"),
  31126. name: "Taur",
  31127. image: {
  31128. source: "./media/characters/nicki/taur.svg",
  31129. extra: 975/773,
  31130. bottom: 0/975
  31131. }
  31132. },
  31133. frontNsfw: {
  31134. height: math.unit(5 + 7/12, "feet"),
  31135. weight: math.unit(220, "lb"),
  31136. name: "Front (NSFW)",
  31137. image: {
  31138. source: "./media/characters/nicki/front-nsfw.svg",
  31139. extra: 453/419,
  31140. bottom: 7/460
  31141. }
  31142. },
  31143. frontNsfwAlt: {
  31144. height: math.unit(5 + 7/12, "feet"),
  31145. weight: math.unit(220, "lb"),
  31146. name: "Front (Alt, NSFW)",
  31147. image: {
  31148. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31149. extra: 435/411,
  31150. bottom: 12/447
  31151. }
  31152. },
  31153. backNsfw: {
  31154. height: math.unit(5 + 7/12, "feet"),
  31155. weight: math.unit(220, "lb"),
  31156. name: "Back (NSFW)",
  31157. image: {
  31158. source: "./media/characters/nicki/back-nsfw.svg",
  31159. extra: 440/413,
  31160. bottom: 19/459
  31161. }
  31162. },
  31163. head: {
  31164. height: math.unit(2.1, "feet"),
  31165. name: "Head",
  31166. image: {
  31167. source: "./media/characters/nicki/head.svg"
  31168. }
  31169. },
  31170. paw: {
  31171. height: math.unit(1.88, "feet"),
  31172. name: "Paw",
  31173. image: {
  31174. source: "./media/characters/nicki/paw.svg"
  31175. }
  31176. },
  31177. },
  31178. [
  31179. {
  31180. name: "Normal",
  31181. height: math.unit(5 + 7/12, "feet"),
  31182. default: true
  31183. },
  31184. ]
  31185. ))
  31186. characterMakers.push(() => makeCharacter(
  31187. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31188. {
  31189. front: {
  31190. height: math.unit(7 + 10/12, "feet"),
  31191. weight: math.unit(3.5, "tons"),
  31192. name: "Front",
  31193. image: {
  31194. source: "./media/characters/lee/front.svg",
  31195. extra: 1773/1615,
  31196. bottom: 86/1859
  31197. }
  31198. },
  31199. hand: {
  31200. height: math.unit(1.78, "feet"),
  31201. name: "Hand",
  31202. image: {
  31203. source: "./media/characters/lee/hand.svg"
  31204. }
  31205. },
  31206. maw: {
  31207. height: math.unit(1.18, "feet"),
  31208. name: "Maw",
  31209. image: {
  31210. source: "./media/characters/lee/maw.svg"
  31211. }
  31212. },
  31213. },
  31214. [
  31215. {
  31216. name: "Normal",
  31217. height: math.unit(7 + 10/12, "feet"),
  31218. default: true
  31219. },
  31220. ]
  31221. ))
  31222. characterMakers.push(() => makeCharacter(
  31223. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31224. {
  31225. front: {
  31226. height: math.unit(9, "feet"),
  31227. name: "Front",
  31228. image: {
  31229. source: "./media/characters/guti/front.svg",
  31230. extra: 4551/4355,
  31231. bottom: 123/4674
  31232. }
  31233. },
  31234. tongue: {
  31235. height: math.unit(1, "feet"),
  31236. name: "Tongue",
  31237. image: {
  31238. source: "./media/characters/guti/tongue.svg"
  31239. }
  31240. },
  31241. paw: {
  31242. height: math.unit(1.18, "feet"),
  31243. name: "Paw",
  31244. image: {
  31245. source: "./media/characters/guti/paw.svg"
  31246. }
  31247. },
  31248. },
  31249. [
  31250. {
  31251. name: "Normal",
  31252. height: math.unit(9, "feet"),
  31253. default: true
  31254. },
  31255. ]
  31256. ))
  31257. characterMakers.push(() => makeCharacter(
  31258. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31259. {
  31260. side: {
  31261. height: math.unit(5, "meters"),
  31262. name: "Side",
  31263. image: {
  31264. source: "./media/characters/vesper/side.svg",
  31265. extra: 1605/1518,
  31266. bottom: 0/1605
  31267. }
  31268. },
  31269. },
  31270. [
  31271. {
  31272. name: "Small",
  31273. height: math.unit(5, "meters")
  31274. },
  31275. {
  31276. name: "Sage",
  31277. height: math.unit(100, "meters"),
  31278. default: true
  31279. },
  31280. {
  31281. name: "Fun Size",
  31282. height: math.unit(600, "meters")
  31283. },
  31284. {
  31285. name: "Goddess",
  31286. height: math.unit(20000, "km")
  31287. },
  31288. {
  31289. name: "Maximum",
  31290. height: math.unit(5, "galaxies")
  31291. },
  31292. ]
  31293. ))
  31294. characterMakers.push(() => makeCharacter(
  31295. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31296. {
  31297. front: {
  31298. height: math.unit(6 + 3/12, "feet"),
  31299. weight: math.unit(190, "lb"),
  31300. name: "Front",
  31301. image: {
  31302. source: "./media/characters/gawain/front.svg",
  31303. extra: 2222/2139,
  31304. bottom: 90/2312
  31305. }
  31306. },
  31307. back: {
  31308. height: math.unit(6 + 3/12, "feet"),
  31309. weight: math.unit(190, "lb"),
  31310. name: "Back",
  31311. image: {
  31312. source: "./media/characters/gawain/back.svg",
  31313. extra: 2199/2111,
  31314. bottom: 73/2272
  31315. }
  31316. },
  31317. },
  31318. [
  31319. {
  31320. name: "Normal",
  31321. height: math.unit(6 + 3/12, "feet"),
  31322. default: true
  31323. },
  31324. ]
  31325. ))
  31326. characterMakers.push(() => makeCharacter(
  31327. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31328. {
  31329. side: {
  31330. height: math.unit(3.5, "meters"),
  31331. weight: math.unit(16000, "lb"),
  31332. name: "Side",
  31333. image: {
  31334. source: "./media/characters/dascalti/side.svg",
  31335. extra: 392/273,
  31336. bottom: 47/439
  31337. }
  31338. },
  31339. breath: {
  31340. height: math.unit(7.4, "feet"),
  31341. name: "Breath",
  31342. image: {
  31343. source: "./media/characters/dascalti/breath.svg"
  31344. }
  31345. },
  31346. fed: {
  31347. height: math.unit(3.6, "meters"),
  31348. weight: math.unit(16000, "lb"),
  31349. name: "Fed",
  31350. image: {
  31351. source: "./media/characters/dascalti/fed.svg",
  31352. extra: 1419/820,
  31353. bottom: 95/1514
  31354. }
  31355. },
  31356. },
  31357. [
  31358. {
  31359. name: "Normal",
  31360. height: math.unit(3.5, "meters"),
  31361. default: true
  31362. },
  31363. ]
  31364. ))
  31365. characterMakers.push(() => makeCharacter(
  31366. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31367. {
  31368. front: {
  31369. height: math.unit(3 + 5/12, "feet"),
  31370. name: "Front",
  31371. image: {
  31372. source: "./media/characters/mauve/front.svg",
  31373. extra: 1126/1033,
  31374. bottom: 65/1191
  31375. }
  31376. },
  31377. side: {
  31378. height: math.unit(3 + 5/12, "feet"),
  31379. name: "Side",
  31380. image: {
  31381. source: "./media/characters/mauve/side.svg",
  31382. extra: 1089/1001,
  31383. bottom: 29/1118
  31384. }
  31385. },
  31386. back: {
  31387. height: math.unit(3 + 5/12, "feet"),
  31388. name: "Back",
  31389. image: {
  31390. source: "./media/characters/mauve/back.svg",
  31391. extra: 1173/1053,
  31392. bottom: 109/1282
  31393. }
  31394. },
  31395. },
  31396. [
  31397. {
  31398. name: "Normal",
  31399. height: math.unit(3 + 5/12, "feet"),
  31400. default: true
  31401. },
  31402. ]
  31403. ))
  31404. characterMakers.push(() => makeCharacter(
  31405. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31406. {
  31407. front: {
  31408. height: math.unit(6 + 3/12, "feet"),
  31409. weight: math.unit(430, "lb"),
  31410. name: "Front",
  31411. image: {
  31412. source: "./media/characters/carlos/front.svg",
  31413. extra: 1964/1913,
  31414. bottom: 70/2034
  31415. }
  31416. },
  31417. },
  31418. [
  31419. {
  31420. name: "Normal",
  31421. height: math.unit(6 + 3/12, "feet"),
  31422. default: true
  31423. },
  31424. ]
  31425. ))
  31426. characterMakers.push(() => makeCharacter(
  31427. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31428. {
  31429. back: {
  31430. height: math.unit(5 + 10/12, "feet"),
  31431. weight: math.unit(200, "lb"),
  31432. name: "Back",
  31433. image: {
  31434. source: "./media/characters/jax/back.svg",
  31435. extra: 764/739,
  31436. bottom: 25/789
  31437. }
  31438. },
  31439. },
  31440. [
  31441. {
  31442. name: "Normal",
  31443. height: math.unit(5 + 10/12, "feet"),
  31444. default: true
  31445. },
  31446. ]
  31447. ))
  31448. characterMakers.push(() => makeCharacter(
  31449. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31450. {
  31451. front: {
  31452. height: math.unit(8, "feet"),
  31453. weight: math.unit(250, "lb"),
  31454. name: "Front",
  31455. image: {
  31456. source: "./media/characters/eikthynir/front.svg",
  31457. extra: 1332/1166,
  31458. bottom: 82/1414
  31459. }
  31460. },
  31461. back: {
  31462. height: math.unit(8, "feet"),
  31463. weight: math.unit(250, "lb"),
  31464. name: "Back",
  31465. image: {
  31466. source: "./media/characters/eikthynir/back.svg",
  31467. extra: 1342/1190,
  31468. bottom: 19/1361
  31469. }
  31470. },
  31471. dick: {
  31472. height: math.unit(2.35, "feet"),
  31473. name: "Dick",
  31474. image: {
  31475. source: "./media/characters/eikthynir/dick.svg"
  31476. }
  31477. },
  31478. },
  31479. [
  31480. {
  31481. name: "Normal",
  31482. height: math.unit(8, "feet"),
  31483. default: true
  31484. },
  31485. ]
  31486. ))
  31487. characterMakers.push(() => makeCharacter(
  31488. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31489. {
  31490. front: {
  31491. height: math.unit(99, "meters"),
  31492. weight: math.unit(13000, "tons"),
  31493. name: "Front",
  31494. image: {
  31495. source: "./media/characters/zlmos/front.svg",
  31496. extra: 2202/1992,
  31497. bottom: 315/2517
  31498. }
  31499. },
  31500. },
  31501. [
  31502. {
  31503. name: "Macro",
  31504. height: math.unit(99, "meters"),
  31505. default: true
  31506. },
  31507. ]
  31508. ))
  31509. characterMakers.push(() => makeCharacter(
  31510. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31511. {
  31512. front: {
  31513. height: math.unit(6 + 5/12, "feet"),
  31514. name: "Front",
  31515. image: {
  31516. source: "./media/characters/purri/front.svg",
  31517. extra: 1698/1610,
  31518. bottom: 32/1730
  31519. }
  31520. },
  31521. frontAlt: {
  31522. height: math.unit(6 + 5/12, "feet"),
  31523. name: "Front (Alt)",
  31524. image: {
  31525. source: "./media/characters/purri/front-alt.svg",
  31526. extra: 450/420,
  31527. bottom: 26/476
  31528. }
  31529. },
  31530. boots: {
  31531. height: math.unit(5.5, "feet"),
  31532. name: "Boots",
  31533. image: {
  31534. source: "./media/characters/purri/boots.svg",
  31535. extra: 905/853,
  31536. bottom: 18/923
  31537. }
  31538. },
  31539. lying: {
  31540. height: math.unit(2, "feet"),
  31541. name: "Lying",
  31542. image: {
  31543. source: "./media/characters/purri/lying.svg",
  31544. extra: 940/843,
  31545. bottom: 146/1086
  31546. }
  31547. },
  31548. devious: {
  31549. height: math.unit(1.77, "feet"),
  31550. name: "Devious",
  31551. image: {
  31552. source: "./media/characters/purri/devious.svg",
  31553. extra: 1440/1155,
  31554. bottom: 147/1587
  31555. }
  31556. },
  31557. bean: {
  31558. height: math.unit(1.94, "feet"),
  31559. name: "Bean",
  31560. image: {
  31561. source: "./media/characters/purri/bean.svg"
  31562. }
  31563. },
  31564. },
  31565. [
  31566. {
  31567. name: "Micro",
  31568. height: math.unit(1, "mm")
  31569. },
  31570. {
  31571. name: "Normal",
  31572. height: math.unit(6 + 5/12, "feet"),
  31573. default: true
  31574. },
  31575. {
  31576. name: "Macro :3c",
  31577. height: math.unit(2, "miles")
  31578. },
  31579. ]
  31580. ))
  31581. characterMakers.push(() => makeCharacter(
  31582. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31583. {
  31584. front: {
  31585. height: math.unit(6 + 2/12, "feet"),
  31586. weight: math.unit(250, "lb"),
  31587. name: "Front",
  31588. image: {
  31589. source: "./media/characters/moonlight/front.svg",
  31590. extra: 1044/908,
  31591. bottom: 56/1100
  31592. }
  31593. },
  31594. feral: {
  31595. height: math.unit(3 + 1/12, "feet"),
  31596. weight: math.unit(50, "kg"),
  31597. name: "Feral",
  31598. image: {
  31599. source: "./media/characters/moonlight/feral.svg",
  31600. extra: 3705/2791,
  31601. bottom: 145/3850
  31602. }
  31603. },
  31604. paw: {
  31605. height: math.unit(1, "feet"),
  31606. name: "Paw",
  31607. image: {
  31608. source: "./media/characters/moonlight/paw.svg"
  31609. }
  31610. },
  31611. paws: {
  31612. height: math.unit(0.98, "feet"),
  31613. name: "Paws",
  31614. image: {
  31615. source: "./media/characters/moonlight/paws.svg",
  31616. extra: 939/939,
  31617. bottom: 50/989
  31618. }
  31619. },
  31620. mouth: {
  31621. height: math.unit(0.48, "feet"),
  31622. name: "Mouth",
  31623. image: {
  31624. source: "./media/characters/moonlight/mouth.svg"
  31625. }
  31626. },
  31627. dick: {
  31628. height: math.unit(1.46, "feet"),
  31629. name: "Dick",
  31630. image: {
  31631. source: "./media/characters/moonlight/dick.svg"
  31632. }
  31633. },
  31634. },
  31635. [
  31636. {
  31637. name: "Normal",
  31638. height: math.unit(6 + 2/12, "feet"),
  31639. default: true
  31640. },
  31641. {
  31642. name: "Macro",
  31643. height: math.unit(300, "feet")
  31644. },
  31645. {
  31646. name: "Macro+",
  31647. height: math.unit(1, "mile")
  31648. },
  31649. {
  31650. name: "Mt. Moon",
  31651. height: math.unit(5, "miles")
  31652. },
  31653. {
  31654. name: "Megamacro",
  31655. height: math.unit(15, "miles")
  31656. },
  31657. ]
  31658. ))
  31659. characterMakers.push(() => makeCharacter(
  31660. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31661. {
  31662. back: {
  31663. height: math.unit(6, "feet"),
  31664. weight: math.unit(150, "lb"),
  31665. name: "Back",
  31666. image: {
  31667. source: "./media/characters/sylen/back.svg",
  31668. extra: 1335/1273,
  31669. bottom: 107/1442
  31670. }
  31671. },
  31672. },
  31673. [
  31674. {
  31675. name: "Normal",
  31676. height: math.unit(5 + 5/12, "feet")
  31677. },
  31678. {
  31679. name: "Megamacro",
  31680. height: math.unit(3, "miles"),
  31681. default: true
  31682. },
  31683. ]
  31684. ))
  31685. characterMakers.push(() => makeCharacter(
  31686. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31687. {
  31688. front: {
  31689. height: math.unit(6, "feet"),
  31690. weight: math.unit(190, "lb"),
  31691. name: "Front",
  31692. image: {
  31693. source: "./media/characters/huttser/front.svg",
  31694. extra: 1152/1058,
  31695. bottom: 23/1175
  31696. }
  31697. },
  31698. side: {
  31699. height: math.unit(6, "feet"),
  31700. weight: math.unit(190, "lb"),
  31701. name: "Side",
  31702. image: {
  31703. source: "./media/characters/huttser/side.svg",
  31704. extra: 1174/1065,
  31705. bottom: 18/1192
  31706. }
  31707. },
  31708. back: {
  31709. height: math.unit(6, "feet"),
  31710. weight: math.unit(190, "lb"),
  31711. name: "Back",
  31712. image: {
  31713. source: "./media/characters/huttser/back.svg",
  31714. extra: 1158/1056,
  31715. bottom: 12/1170
  31716. }
  31717. },
  31718. },
  31719. [
  31720. ]
  31721. ))
  31722. characterMakers.push(() => makeCharacter(
  31723. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31724. {
  31725. side: {
  31726. height: math.unit(12 + 9/12, "feet"),
  31727. weight: math.unit(15000, "lb"),
  31728. name: "Side",
  31729. image: {
  31730. source: "./media/characters/faan/side.svg",
  31731. extra: 2747/2697,
  31732. bottom: 0/2747
  31733. }
  31734. },
  31735. front: {
  31736. height: math.unit(12 + 9/12, "feet"),
  31737. weight: math.unit(15000, "lb"),
  31738. name: "Front",
  31739. image: {
  31740. source: "./media/characters/faan/front.svg",
  31741. extra: 607/571,
  31742. bottom: 24/631
  31743. }
  31744. },
  31745. head: {
  31746. height: math.unit(2.85, "feet"),
  31747. name: "Head",
  31748. image: {
  31749. source: "./media/characters/faan/head.svg"
  31750. }
  31751. },
  31752. headAlt: {
  31753. height: math.unit(3.13, "feet"),
  31754. name: "Head-alt",
  31755. image: {
  31756. source: "./media/characters/faan/head-alt.svg"
  31757. }
  31758. },
  31759. },
  31760. [
  31761. {
  31762. name: "Normal",
  31763. height: math.unit(12 + 9/12, "feet"),
  31764. default: true
  31765. },
  31766. ]
  31767. ))
  31768. characterMakers.push(() => makeCharacter(
  31769. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31770. {
  31771. front: {
  31772. height: math.unit(6, "feet"),
  31773. weight: math.unit(300, "lb"),
  31774. name: "Front",
  31775. image: {
  31776. source: "./media/characters/tanio/front.svg",
  31777. extra: 711/673,
  31778. bottom: 25/736
  31779. }
  31780. },
  31781. },
  31782. [
  31783. {
  31784. name: "Normal",
  31785. height: math.unit(6, "feet"),
  31786. default: true
  31787. },
  31788. ]
  31789. ))
  31790. characterMakers.push(() => makeCharacter(
  31791. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31792. {
  31793. front: {
  31794. height: math.unit(3, "inches"),
  31795. name: "Front",
  31796. image: {
  31797. source: "./media/characters/noboru/front.svg",
  31798. extra: 1039/932,
  31799. bottom: 18/1057
  31800. }
  31801. },
  31802. },
  31803. [
  31804. {
  31805. name: "Micro",
  31806. height: math.unit(3, "inches"),
  31807. default: true
  31808. },
  31809. ]
  31810. ))
  31811. characterMakers.push(() => makeCharacter(
  31812. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31813. {
  31814. front: {
  31815. height: math.unit(1.85, "meters"),
  31816. weight: math.unit(80, "kg"),
  31817. name: "Front",
  31818. image: {
  31819. source: "./media/characters/daniel-barrett/front.svg",
  31820. extra: 355/337,
  31821. bottom: 9/364
  31822. }
  31823. },
  31824. },
  31825. [
  31826. {
  31827. name: "Pico",
  31828. height: math.unit(0.0433, "mm")
  31829. },
  31830. {
  31831. name: "Nano",
  31832. height: math.unit(1.5, "mm")
  31833. },
  31834. {
  31835. name: "Micro",
  31836. height: math.unit(5.3, "cm"),
  31837. default: true
  31838. },
  31839. {
  31840. name: "Normal",
  31841. height: math.unit(1.85, "meters")
  31842. },
  31843. {
  31844. name: "Macro",
  31845. height: math.unit(64.7, "meters")
  31846. },
  31847. {
  31848. name: "Megamacro",
  31849. height: math.unit(2.26, "km")
  31850. },
  31851. {
  31852. name: "Gigamacro",
  31853. height: math.unit(79, "km")
  31854. },
  31855. {
  31856. name: "Teramacro",
  31857. height: math.unit(2765, "km")
  31858. },
  31859. {
  31860. name: "Petamacro",
  31861. height: math.unit(96678, "km")
  31862. },
  31863. ]
  31864. ))
  31865. characterMakers.push(() => makeCharacter(
  31866. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31867. {
  31868. front: {
  31869. height: math.unit(30, "meters"),
  31870. weight: math.unit(400, "tons"),
  31871. name: "Front",
  31872. image: {
  31873. source: "./media/characters/zeel/front.svg",
  31874. extra: 2599/2599,
  31875. bottom: 226/2825
  31876. }
  31877. },
  31878. },
  31879. [
  31880. {
  31881. name: "Macro",
  31882. height: math.unit(30, "meters"),
  31883. default: true
  31884. },
  31885. ]
  31886. ))
  31887. characterMakers.push(() => makeCharacter(
  31888. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31889. {
  31890. front: {
  31891. height: math.unit(6 + 7/12, "feet"),
  31892. weight: math.unit(210, "lb"),
  31893. name: "Front",
  31894. image: {
  31895. source: "./media/characters/tarn/front.svg",
  31896. extra: 3517/3220,
  31897. bottom: 91/3608
  31898. }
  31899. },
  31900. back: {
  31901. height: math.unit(6 + 7/12, "feet"),
  31902. weight: math.unit(210, "lb"),
  31903. name: "Back",
  31904. image: {
  31905. source: "./media/characters/tarn/back.svg",
  31906. extra: 3566/3241,
  31907. bottom: 34/3600
  31908. }
  31909. },
  31910. dick: {
  31911. height: math.unit(1.65, "feet"),
  31912. name: "Dick",
  31913. image: {
  31914. source: "./media/characters/tarn/dick.svg"
  31915. }
  31916. },
  31917. paw: {
  31918. height: math.unit(1.80, "feet"),
  31919. name: "Paw",
  31920. image: {
  31921. source: "./media/characters/tarn/paw.svg"
  31922. }
  31923. },
  31924. tongue: {
  31925. height: math.unit(0.97, "feet"),
  31926. name: "Tongue",
  31927. image: {
  31928. source: "./media/characters/tarn/tongue.svg"
  31929. }
  31930. },
  31931. },
  31932. [
  31933. {
  31934. name: "Micro",
  31935. height: math.unit(4, "inches")
  31936. },
  31937. {
  31938. name: "Normal",
  31939. height: math.unit(6 + 7/12, "feet"),
  31940. default: true
  31941. },
  31942. {
  31943. name: "Macro",
  31944. height: math.unit(300, "feet")
  31945. },
  31946. ]
  31947. ))
  31948. characterMakers.push(() => makeCharacter(
  31949. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31950. {
  31951. front: {
  31952. height: math.unit(5 + 7/12, "feet"),
  31953. weight: math.unit(80, "kg"),
  31954. name: "Front",
  31955. image: {
  31956. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31957. extra: 3023/2865,
  31958. bottom: 33/3056
  31959. }
  31960. },
  31961. back: {
  31962. height: math.unit(5 + 7/12, "feet"),
  31963. weight: math.unit(80, "kg"),
  31964. name: "Back",
  31965. image: {
  31966. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31967. extra: 3020/2886,
  31968. bottom: 30/3050
  31969. }
  31970. },
  31971. dick: {
  31972. height: math.unit(0.98, "feet"),
  31973. name: "Dick",
  31974. image: {
  31975. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31976. }
  31977. },
  31978. anatomy: {
  31979. height: math.unit(2.86, "feet"),
  31980. name: "Anatomy",
  31981. image: {
  31982. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Really Small",
  31989. height: math.unit(2, "inches")
  31990. },
  31991. {
  31992. name: "Micro",
  31993. height: math.unit(5.583, "inches")
  31994. },
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(5 + 7/12, "feet"),
  31998. default: true
  31999. },
  32000. {
  32001. name: "Macro",
  32002. height: math.unit(67, "feet")
  32003. },
  32004. {
  32005. name: "Megamacro",
  32006. height: math.unit(134, "feet")
  32007. },
  32008. ]
  32009. ))
  32010. characterMakers.push(() => makeCharacter(
  32011. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32012. {
  32013. front: {
  32014. height: math.unit(9, "feet"),
  32015. weight: math.unit(120, "lb"),
  32016. name: "Front",
  32017. image: {
  32018. source: "./media/characters/sally/front.svg",
  32019. extra: 1506/1349,
  32020. bottom: 66/1572
  32021. }
  32022. },
  32023. },
  32024. [
  32025. {
  32026. name: "Normal",
  32027. height: math.unit(9, "feet"),
  32028. default: true
  32029. },
  32030. ]
  32031. ))
  32032. characterMakers.push(() => makeCharacter(
  32033. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32034. {
  32035. front: {
  32036. height: math.unit(8, "feet"),
  32037. weight: math.unit(900, "lb"),
  32038. name: "Front",
  32039. image: {
  32040. source: "./media/characters/owen/front.svg",
  32041. extra: 1761/1657,
  32042. bottom: 74/1835
  32043. }
  32044. },
  32045. side: {
  32046. height: math.unit(8, "feet"),
  32047. weight: math.unit(900, "lb"),
  32048. name: "Side",
  32049. image: {
  32050. source: "./media/characters/owen/side.svg",
  32051. extra: 1797/1734,
  32052. bottom: 30/1827
  32053. }
  32054. },
  32055. back: {
  32056. height: math.unit(8, "feet"),
  32057. weight: math.unit(900, "lb"),
  32058. name: "Back",
  32059. image: {
  32060. source: "./media/characters/owen/back.svg",
  32061. extra: 1796/1706,
  32062. bottom: 59/1855
  32063. }
  32064. },
  32065. maw: {
  32066. height: math.unit(1.76, "feet"),
  32067. name: "Maw",
  32068. image: {
  32069. source: "./media/characters/owen/maw.svg"
  32070. }
  32071. },
  32072. },
  32073. [
  32074. {
  32075. name: "Normal",
  32076. height: math.unit(8, "feet"),
  32077. default: true
  32078. },
  32079. ]
  32080. ))
  32081. characterMakers.push(() => makeCharacter(
  32082. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32083. {
  32084. front: {
  32085. height: math.unit(4, "feet"),
  32086. weight: math.unit(400, "lb"),
  32087. name: "Front",
  32088. image: {
  32089. source: "./media/characters/ryth/front.svg",
  32090. extra: 1920/1748,
  32091. bottom: 42/1962
  32092. }
  32093. },
  32094. back: {
  32095. height: math.unit(4, "feet"),
  32096. weight: math.unit(400, "lb"),
  32097. name: "Back",
  32098. image: {
  32099. source: "./media/characters/ryth/back.svg",
  32100. extra: 1897/1690,
  32101. bottom: 89/1986
  32102. }
  32103. },
  32104. mouth: {
  32105. height: math.unit(1.39, "feet"),
  32106. name: "Mouth",
  32107. image: {
  32108. source: "./media/characters/ryth/mouth.svg"
  32109. }
  32110. },
  32111. tailmaw: {
  32112. height: math.unit(1.23, "feet"),
  32113. name: "Tailmaw",
  32114. image: {
  32115. source: "./media/characters/ryth/tailmaw.svg"
  32116. }
  32117. },
  32118. goia: {
  32119. height: math.unit(12, "feet"),
  32120. weight: math.unit(10800, "lb"),
  32121. name: "Goia",
  32122. image: {
  32123. source: "./media/characters/ryth/goia.svg",
  32124. extra: 3450/3198,
  32125. bottom: 61/3511
  32126. }
  32127. },
  32128. },
  32129. [
  32130. {
  32131. name: "Normal",
  32132. height: math.unit(4, "feet"),
  32133. default: true
  32134. },
  32135. ]
  32136. ))
  32137. characterMakers.push(() => makeCharacter(
  32138. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32139. {
  32140. front: {
  32141. height: math.unit(7, "feet"),
  32142. weight: math.unit(180, "lb"),
  32143. name: "Front",
  32144. image: {
  32145. source: "./media/characters/necrolance/front.svg",
  32146. extra: 1062/947,
  32147. bottom: 41/1103
  32148. }
  32149. },
  32150. back: {
  32151. height: math.unit(7, "feet"),
  32152. weight: math.unit(180, "lb"),
  32153. name: "Back",
  32154. image: {
  32155. source: "./media/characters/necrolance/back.svg",
  32156. extra: 1045/984,
  32157. bottom: 14/1059
  32158. }
  32159. },
  32160. wing: {
  32161. height: math.unit(2.67, "feet"),
  32162. name: "Wing",
  32163. image: {
  32164. source: "./media/characters/necrolance/wing.svg"
  32165. }
  32166. },
  32167. },
  32168. [
  32169. {
  32170. name: "Normal",
  32171. height: math.unit(7, "feet"),
  32172. default: true
  32173. },
  32174. ]
  32175. ))
  32176. characterMakers.push(() => makeCharacter(
  32177. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32178. {
  32179. front: {
  32180. height: math.unit(76, "meters"),
  32181. weight: math.unit(30000, "tons"),
  32182. name: "Front",
  32183. image: {
  32184. source: "./media/characters/tyler/front.svg",
  32185. extra: 1640/1640,
  32186. bottom: 114/1754
  32187. }
  32188. },
  32189. },
  32190. [
  32191. {
  32192. name: "Macro",
  32193. height: math.unit(76, "meters"),
  32194. default: true
  32195. },
  32196. ]
  32197. ))
  32198. characterMakers.push(() => makeCharacter(
  32199. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32200. {
  32201. front: {
  32202. height: math.unit(4 + 11/12, "feet"),
  32203. weight: math.unit(132, "lb"),
  32204. name: "Front",
  32205. image: {
  32206. source: "./media/characters/icey/front.svg",
  32207. extra: 2750/2550,
  32208. bottom: 33/2783
  32209. }
  32210. },
  32211. back: {
  32212. height: math.unit(4 + 11/12, "feet"),
  32213. weight: math.unit(132, "lb"),
  32214. name: "Back",
  32215. image: {
  32216. source: "./media/characters/icey/back.svg",
  32217. extra: 2624/2481,
  32218. bottom: 35/2659
  32219. }
  32220. },
  32221. },
  32222. [
  32223. {
  32224. name: "Normal",
  32225. height: math.unit(4 + 11/12, "feet"),
  32226. default: true
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32232. {
  32233. front: {
  32234. height: math.unit(100, "feet"),
  32235. weight: math.unit(0, "lb"),
  32236. name: "Front",
  32237. image: {
  32238. source: "./media/characters/smile/front.svg",
  32239. extra: 2983/2912,
  32240. bottom: 162/3145
  32241. }
  32242. },
  32243. back: {
  32244. height: math.unit(100, "feet"),
  32245. weight: math.unit(0, "lb"),
  32246. name: "Back",
  32247. image: {
  32248. source: "./media/characters/smile/back.svg",
  32249. extra: 3143/3031,
  32250. bottom: 91/3234
  32251. }
  32252. },
  32253. head: {
  32254. height: math.unit(26.3, "feet"),
  32255. weight: math.unit(0, "lb"),
  32256. name: "Head",
  32257. image: {
  32258. source: "./media/characters/smile/head.svg"
  32259. }
  32260. },
  32261. collar: {
  32262. height: math.unit(5.3, "feet"),
  32263. weight: math.unit(0, "lb"),
  32264. name: "Collar",
  32265. image: {
  32266. source: "./media/characters/smile/collar.svg"
  32267. }
  32268. },
  32269. },
  32270. [
  32271. {
  32272. name: "Macro",
  32273. height: math.unit(100, "feet"),
  32274. default: true
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32280. {
  32281. dragon: {
  32282. height: math.unit(26, "feet"),
  32283. weight: math.unit(36, "tons"),
  32284. name: "Dragon",
  32285. image: {
  32286. source: "./media/characters/arimphae/dragon.svg",
  32287. extra: 1574/983,
  32288. bottom: 357/1931
  32289. }
  32290. },
  32291. drake: {
  32292. height: math.unit(9, "feet"),
  32293. weight: math.unit(1.5, "tons"),
  32294. name: "Drake",
  32295. image: {
  32296. source: "./media/characters/arimphae/drake.svg",
  32297. extra: 1120/925,
  32298. bottom: 435/1555
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Small",
  32305. height: math.unit(26*5/9, "feet")
  32306. },
  32307. {
  32308. name: "Normal",
  32309. height: math.unit(26, "feet"),
  32310. default: true
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(8 + 9/12, "feet"),
  32319. name: "Front",
  32320. image: {
  32321. source: "./media/characters/xander/front.svg",
  32322. extra: 1237/974,
  32323. bottom: 94/1331
  32324. }
  32325. },
  32326. },
  32327. [
  32328. {
  32329. name: "Normal",
  32330. height: math.unit(8 + 9/12, "feet"),
  32331. default: true
  32332. },
  32333. {
  32334. name: "Gaze Grabber",
  32335. height: math.unit(13 + 8/12, "feet")
  32336. },
  32337. {
  32338. name: "Jaw Dropper",
  32339. height: math.unit(27, "feet")
  32340. },
  32341. {
  32342. name: "Show Stopper",
  32343. height: math.unit(136, "feet")
  32344. },
  32345. {
  32346. name: "Superstar",
  32347. height: math.unit(1.9e6, "miles")
  32348. },
  32349. ]
  32350. ))
  32351. characterMakers.push(() => makeCharacter(
  32352. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32353. {
  32354. side: {
  32355. height: math.unit(2100, "feet"),
  32356. name: "Side",
  32357. image: {
  32358. source: "./media/characters/osiris/side.svg",
  32359. extra: 1105/939,
  32360. bottom: 167/1272
  32361. }
  32362. },
  32363. },
  32364. [
  32365. {
  32366. name: "Macro",
  32367. height: math.unit(2100, "feet"),
  32368. default: true
  32369. },
  32370. ]
  32371. ))
  32372. characterMakers.push(() => makeCharacter(
  32373. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32374. {
  32375. front: {
  32376. height: math.unit(6 + 8/12, "feet"),
  32377. weight: math.unit(225, "lb"),
  32378. name: "Front",
  32379. image: {
  32380. source: "./media/characters/rhys-londe/front.svg",
  32381. extra: 2258/2141,
  32382. bottom: 188/2446
  32383. }
  32384. },
  32385. back: {
  32386. height: math.unit(6 + 8/12, "feet"),
  32387. weight: math.unit(225, "lb"),
  32388. name: "Back",
  32389. image: {
  32390. source: "./media/characters/rhys-londe/back.svg",
  32391. extra: 2237/2137,
  32392. bottom: 63/2300
  32393. }
  32394. },
  32395. frontNsfw: {
  32396. height: math.unit(6 + 8/12, "feet"),
  32397. weight: math.unit(225, "lb"),
  32398. name: "Front (NSFW)",
  32399. image: {
  32400. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32401. extra: 2258/2141,
  32402. bottom: 188/2446
  32403. }
  32404. },
  32405. backNsfw: {
  32406. height: math.unit(6 + 8/12, "feet"),
  32407. weight: math.unit(225, "lb"),
  32408. name: "Back (NSFW)",
  32409. image: {
  32410. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32411. extra: 2237/2137,
  32412. bottom: 63/2300
  32413. }
  32414. },
  32415. dick: {
  32416. height: math.unit(30, "inches"),
  32417. name: "Dick",
  32418. image: {
  32419. source: "./media/characters/rhys-londe/dick.svg"
  32420. }
  32421. },
  32422. maw: {
  32423. height: math.unit(1.6, "feet"),
  32424. name: "Maw",
  32425. image: {
  32426. source: "./media/characters/rhys-londe/maw.svg"
  32427. }
  32428. },
  32429. },
  32430. [
  32431. {
  32432. name: "Normal",
  32433. height: math.unit(6 + 8/12, "feet"),
  32434. default: true
  32435. },
  32436. ]
  32437. ))
  32438. characterMakers.push(() => makeCharacter(
  32439. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32440. {
  32441. front: {
  32442. height: math.unit(3 + 10/12, "feet"),
  32443. weight: math.unit(90, "lb"),
  32444. name: "Front",
  32445. image: {
  32446. source: "./media/characters/taivas-ensim/front.svg",
  32447. extra: 1327/1216,
  32448. bottom: 96/1423
  32449. }
  32450. },
  32451. back: {
  32452. height: math.unit(3 + 10/12, "feet"),
  32453. weight: math.unit(90, "lb"),
  32454. name: "Back",
  32455. image: {
  32456. source: "./media/characters/taivas-ensim/back.svg",
  32457. extra: 1355/1247,
  32458. bottom: 11/1366
  32459. }
  32460. },
  32461. frontNsfw: {
  32462. height: math.unit(3 + 10/12, "feet"),
  32463. weight: math.unit(90, "lb"),
  32464. name: "Front (NSFW)",
  32465. image: {
  32466. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32467. extra: 1327/1216,
  32468. bottom: 96/1423
  32469. }
  32470. },
  32471. backNsfw: {
  32472. height: math.unit(3 + 10/12, "feet"),
  32473. weight: math.unit(90, "lb"),
  32474. name: "Back (NSFW)",
  32475. image: {
  32476. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32477. extra: 1355/1247,
  32478. bottom: 11/1366
  32479. }
  32480. },
  32481. },
  32482. [
  32483. {
  32484. name: "Normal",
  32485. height: math.unit(3 + 10/12, "feet"),
  32486. default: true
  32487. },
  32488. ]
  32489. ))
  32490. characterMakers.push(() => makeCharacter(
  32491. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32492. {
  32493. front: {
  32494. height: math.unit(9 + 6/12, "feet"),
  32495. weight: math.unit(940, "lb"),
  32496. name: "Front",
  32497. image: {
  32498. source: "./media/characters/byliss/front.svg",
  32499. extra: 1327/1290,
  32500. bottom: 82/1409
  32501. }
  32502. },
  32503. back: {
  32504. height: math.unit(9 + 6/12, "feet"),
  32505. weight: math.unit(940, "lb"),
  32506. name: "Back",
  32507. image: {
  32508. source: "./media/characters/byliss/back.svg",
  32509. extra: 1376/1349,
  32510. bottom: 9/1385
  32511. }
  32512. },
  32513. frontNsfw: {
  32514. height: math.unit(9 + 6/12, "feet"),
  32515. weight: math.unit(940, "lb"),
  32516. name: "Front (NSFW)",
  32517. image: {
  32518. source: "./media/characters/byliss/front-nsfw.svg",
  32519. extra: 1327/1290,
  32520. bottom: 82/1409
  32521. }
  32522. },
  32523. backNsfw: {
  32524. height: math.unit(9 + 6/12, "feet"),
  32525. weight: math.unit(940, "lb"),
  32526. name: "Back (NSFW)",
  32527. image: {
  32528. source: "./media/characters/byliss/back-nsfw.svg",
  32529. extra: 1376/1349,
  32530. bottom: 9/1385
  32531. }
  32532. },
  32533. },
  32534. [
  32535. {
  32536. name: "Normal",
  32537. height: math.unit(9 + 6/12, "feet"),
  32538. default: true
  32539. },
  32540. ]
  32541. ))
  32542. characterMakers.push(() => makeCharacter(
  32543. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32544. {
  32545. front: {
  32546. height: math.unit(5 + 2/12, "feet"),
  32547. weight: math.unit(200, "lb"),
  32548. name: "Front",
  32549. image: {
  32550. source: "./media/characters/noraly/front.svg",
  32551. extra: 4985/4773,
  32552. bottom: 150/5135
  32553. }
  32554. },
  32555. full: {
  32556. height: math.unit(5 + 2/12, "feet"),
  32557. weight: math.unit(164, "lb"),
  32558. name: "Full",
  32559. image: {
  32560. source: "./media/characters/noraly/full.svg",
  32561. extra: 1114/1059,
  32562. bottom: 35/1149
  32563. }
  32564. },
  32565. fuller: {
  32566. height: math.unit(5 + 2/12, "feet"),
  32567. weight: math.unit(230, "lb"),
  32568. name: "Fuller",
  32569. image: {
  32570. source: "./media/characters/noraly/fuller.svg",
  32571. extra: 1114/1059,
  32572. bottom: 35/1149
  32573. }
  32574. },
  32575. fullest: {
  32576. height: math.unit(5 + 2/12, "feet"),
  32577. weight: math.unit(300, "lb"),
  32578. name: "Fullest",
  32579. image: {
  32580. source: "./media/characters/noraly/fullest.svg",
  32581. extra: 1114/1059,
  32582. bottom: 35/1149
  32583. }
  32584. },
  32585. },
  32586. [
  32587. {
  32588. name: "Normal",
  32589. height: math.unit(5 + 2/12, "feet"),
  32590. default: true
  32591. },
  32592. ]
  32593. ))
  32594. characterMakers.push(() => makeCharacter(
  32595. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32596. {
  32597. front: {
  32598. height: math.unit(5 + 2/12, "feet"),
  32599. weight: math.unit(210, "lb"),
  32600. name: "Front",
  32601. image: {
  32602. source: "./media/characters/pera/front.svg",
  32603. extra: 1560/1531,
  32604. bottom: 165/1725
  32605. }
  32606. },
  32607. back: {
  32608. height: math.unit(5 + 2/12, "feet"),
  32609. weight: math.unit(210, "lb"),
  32610. name: "Back",
  32611. image: {
  32612. source: "./media/characters/pera/back.svg",
  32613. extra: 1523/1493,
  32614. bottom: 152/1675
  32615. }
  32616. },
  32617. dick: {
  32618. height: math.unit(2.4, "feet"),
  32619. name: "Dick",
  32620. image: {
  32621. source: "./media/characters/pera/dick.svg"
  32622. }
  32623. },
  32624. },
  32625. [
  32626. {
  32627. name: "Normal",
  32628. height: math.unit(5 + 2/12, "feet"),
  32629. default: true
  32630. },
  32631. ]
  32632. ))
  32633. characterMakers.push(() => makeCharacter(
  32634. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32635. {
  32636. front: {
  32637. height: math.unit(12, "feet"),
  32638. weight: math.unit(3200, "lb"),
  32639. name: "Front",
  32640. image: {
  32641. source: "./media/characters/julian/front.svg",
  32642. extra: 2962/2701,
  32643. bottom: 184/3146
  32644. }
  32645. },
  32646. maw: {
  32647. height: math.unit(5.35, "feet"),
  32648. name: "Maw",
  32649. image: {
  32650. source: "./media/characters/julian/maw.svg"
  32651. }
  32652. },
  32653. paw: {
  32654. height: math.unit(3.07, "feet"),
  32655. name: "Paw",
  32656. image: {
  32657. source: "./media/characters/julian/paw.svg"
  32658. }
  32659. },
  32660. },
  32661. [
  32662. {
  32663. name: "Default",
  32664. height: math.unit(12, "feet"),
  32665. default: true
  32666. },
  32667. {
  32668. name: "Big",
  32669. height: math.unit(50, "feet")
  32670. },
  32671. {
  32672. name: "Really Big",
  32673. height: math.unit(1, "mile")
  32674. },
  32675. {
  32676. name: "Extremely Big",
  32677. height: math.unit(100, "miles")
  32678. },
  32679. {
  32680. name: "Planet Hugger",
  32681. height: math.unit(200, "megameters")
  32682. },
  32683. {
  32684. name: "Unreasonably Big",
  32685. height: math.unit(1e300, "meters")
  32686. },
  32687. ]
  32688. ))
  32689. characterMakers.push(() => makeCharacter(
  32690. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32691. {
  32692. solgooleo: {
  32693. height: math.unit(4, "meters"),
  32694. weight: math.unit(6000*1.5, "kg"),
  32695. volume: math.unit(6000, "liters"),
  32696. name: "Solgooleo",
  32697. image: {
  32698. source: "./media/characters/pi/solgooleo.svg",
  32699. extra: 388/331,
  32700. bottom: 29/417
  32701. }
  32702. },
  32703. },
  32704. [
  32705. {
  32706. name: "Normal",
  32707. height: math.unit(4, "meters"),
  32708. default: true
  32709. },
  32710. ]
  32711. ))
  32712. characterMakers.push(() => makeCharacter(
  32713. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32714. {
  32715. front: {
  32716. height: math.unit(8 + 2/12, "feet"),
  32717. weight: math.unit(4, "tons"),
  32718. name: "Front",
  32719. image: {
  32720. source: "./media/characters/shaun/front.svg",
  32721. extra: 1550/1505,
  32722. bottom: 353/1903
  32723. }
  32724. },
  32725. },
  32726. [
  32727. {
  32728. name: "Lorg",
  32729. height: math.unit(8 + 2/12, "feet"),
  32730. default: true
  32731. },
  32732. ]
  32733. ))
  32734. characterMakers.push(() => makeCharacter(
  32735. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32736. {
  32737. front: {
  32738. height: math.unit(7, "feet"),
  32739. name: "Front",
  32740. image: {
  32741. source: "./media/characters/sini/front.svg",
  32742. extra: 726/678,
  32743. bottom: 35/761
  32744. }
  32745. },
  32746. back: {
  32747. height: math.unit(7, "feet"),
  32748. name: "Back",
  32749. image: {
  32750. source: "./media/characters/sini/back.svg",
  32751. extra: 743/701,
  32752. bottom: 12/755
  32753. }
  32754. },
  32755. mawAnthro: {
  32756. height: math.unit(2.14, "feet"),
  32757. name: "Maw (Anthro)",
  32758. image: {
  32759. source: "./media/characters/sini/maw-anthro.svg"
  32760. }
  32761. },
  32762. dick: {
  32763. height: math.unit(1.45, "feet"),
  32764. name: "Dick (Anthro)",
  32765. image: {
  32766. source: "./media/characters/sini/dick-anthro.svg"
  32767. }
  32768. },
  32769. feral: {
  32770. height: math.unit(16, "feet"),
  32771. name: "Feral",
  32772. image: {
  32773. source: "./media/characters/sini/feral.svg",
  32774. extra: 814/605,
  32775. bottom: 11/825
  32776. }
  32777. },
  32778. mawFeral: {
  32779. height: math.unit(5.66, "feet"),
  32780. name: "Maw-feral",
  32781. image: {
  32782. source: "./media/characters/sini/maw-feral.svg"
  32783. }
  32784. },
  32785. footFeral: {
  32786. height: math.unit(5.17, "feet"),
  32787. name: "Foot-feral",
  32788. image: {
  32789. source: "./media/characters/sini/foot-feral.svg"
  32790. }
  32791. },
  32792. },
  32793. [
  32794. {
  32795. name: "Normal",
  32796. height: math.unit(7, "feet"),
  32797. default: true
  32798. },
  32799. ]
  32800. ))
  32801. characterMakers.push(() => makeCharacter(
  32802. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32803. {
  32804. side: {
  32805. height: math.unit(13, "meters"),
  32806. weight: math.unit(9072, "kg"),
  32807. name: "Side",
  32808. image: {
  32809. source: "./media/characters/raylldo/side.svg",
  32810. extra: 403/344,
  32811. bottom: 42/445
  32812. }
  32813. },
  32814. leaping: {
  32815. height: math.unit(12.3, "meters"),
  32816. weight: math.unit(9072, "kg"),
  32817. name: "Leaping",
  32818. image: {
  32819. source: "./media/characters/raylldo/leaping.svg",
  32820. extra: 470/249,
  32821. bottom: 13/483
  32822. }
  32823. },
  32824. flying: {
  32825. height: math.unit(18, "meters"),
  32826. weight: math.unit(9072, "kg"),
  32827. name: "Flying",
  32828. image: {
  32829. source: "./media/characters/raylldo/flying.svg"
  32830. }
  32831. },
  32832. head: {
  32833. height: math.unit(5.85, "meters"),
  32834. name: "Head",
  32835. image: {
  32836. source: "./media/characters/raylldo/head.svg"
  32837. }
  32838. },
  32839. maw: {
  32840. height: math.unit(5.32, "meters"),
  32841. name: "Maw",
  32842. image: {
  32843. source: "./media/characters/raylldo/maw.svg"
  32844. }
  32845. },
  32846. eye: {
  32847. height: math.unit(0.54, "meters"),
  32848. name: "Eye",
  32849. image: {
  32850. source: "./media/characters/raylldo/eye.svg"
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Normal",
  32857. height: math.unit(13, "meters"),
  32858. default: true
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32864. {
  32865. anthroFront: {
  32866. height: math.unit(9, "feet"),
  32867. weight: math.unit(600, "lb"),
  32868. name: "Anthro (Front)",
  32869. image: {
  32870. source: "./media/characters/glint/anthro-front.svg",
  32871. extra: 1097/1018,
  32872. bottom: 28/1125
  32873. }
  32874. },
  32875. anthroBack: {
  32876. height: math.unit(9, "feet"),
  32877. weight: math.unit(600, "lb"),
  32878. name: "Anthro (Back)",
  32879. image: {
  32880. source: "./media/characters/glint/anthro-back.svg",
  32881. extra: 1154/997,
  32882. bottom: 36/1190
  32883. }
  32884. },
  32885. feral: {
  32886. height: math.unit(11, "feet"),
  32887. weight: math.unit(50000, "lb"),
  32888. name: "Feral",
  32889. image: {
  32890. source: "./media/characters/glint/feral.svg",
  32891. extra: 3035/1585,
  32892. bottom: 1169/4204
  32893. }
  32894. },
  32895. dickAnthro: {
  32896. height: math.unit(0.7, "meters"),
  32897. name: "Dick (Anthro)",
  32898. image: {
  32899. source: "./media/characters/glint/dick-anthro.svg"
  32900. }
  32901. },
  32902. dickFeral: {
  32903. height: math.unit(2.65, "meters"),
  32904. name: "Dick (Feral)",
  32905. image: {
  32906. source: "./media/characters/glint/dick-feral.svg"
  32907. }
  32908. },
  32909. slitHidden: {
  32910. height: math.unit(5.85, "meters"),
  32911. name: "Slit (Hidden)",
  32912. image: {
  32913. source: "./media/characters/glint/slit-hidden.svg"
  32914. }
  32915. },
  32916. slitErect: {
  32917. height: math.unit(5.85, "meters"),
  32918. name: "Slit (Erect)",
  32919. image: {
  32920. source: "./media/characters/glint/slit-erect.svg"
  32921. }
  32922. },
  32923. mawAnthro: {
  32924. height: math.unit(0.63, "meters"),
  32925. name: "Maw (Anthro)",
  32926. image: {
  32927. source: "./media/characters/glint/maw.svg"
  32928. }
  32929. },
  32930. mawFeral: {
  32931. height: math.unit(2.89, "meters"),
  32932. name: "Maw (Feral)",
  32933. image: {
  32934. source: "./media/characters/glint/maw.svg"
  32935. }
  32936. },
  32937. },
  32938. [
  32939. {
  32940. name: "Normal",
  32941. height: math.unit(9, "feet"),
  32942. default: true
  32943. },
  32944. ]
  32945. ))
  32946. characterMakers.push(() => makeCharacter(
  32947. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32948. {
  32949. side: {
  32950. height: math.unit(15, "feet"),
  32951. weight: math.unit(5000, "kg"),
  32952. name: "Side",
  32953. image: {
  32954. source: "./media/characters/kairne/side.svg",
  32955. extra: 979/811,
  32956. bottom: 13/992
  32957. }
  32958. },
  32959. front: {
  32960. height: math.unit(15, "feet"),
  32961. weight: math.unit(5000, "kg"),
  32962. name: "Front",
  32963. image: {
  32964. source: "./media/characters/kairne/front.svg",
  32965. extra: 908/814,
  32966. bottom: 26/934
  32967. }
  32968. },
  32969. sideNsfw: {
  32970. height: math.unit(15, "feet"),
  32971. weight: math.unit(5000, "kg"),
  32972. name: "Side (NSFW)",
  32973. image: {
  32974. source: "./media/characters/kairne/side-nsfw.svg",
  32975. extra: 979/811,
  32976. bottom: 13/992
  32977. }
  32978. },
  32979. frontNsfw: {
  32980. height: math.unit(15, "feet"),
  32981. weight: math.unit(5000, "kg"),
  32982. name: "Front (NSFW)",
  32983. image: {
  32984. source: "./media/characters/kairne/front-nsfw.svg",
  32985. extra: 908/814,
  32986. bottom: 26/934
  32987. }
  32988. },
  32989. dickCaged: {
  32990. height: math.unit(0.65, "meters"),
  32991. name: "Dick-caged",
  32992. image: {
  32993. source: "./media/characters/kairne/dick-caged.svg"
  32994. }
  32995. },
  32996. dick: {
  32997. height: math.unit(0.79, "meters"),
  32998. name: "Dick",
  32999. image: {
  33000. source: "./media/characters/kairne/dick.svg"
  33001. }
  33002. },
  33003. genitals: {
  33004. height: math.unit(1.29, "meters"),
  33005. name: "Genitals",
  33006. image: {
  33007. source: "./media/characters/kairne/genitals.svg"
  33008. }
  33009. },
  33010. maw: {
  33011. height: math.unit(1.73, "meters"),
  33012. name: "Maw",
  33013. image: {
  33014. source: "./media/characters/kairne/maw.svg"
  33015. }
  33016. },
  33017. },
  33018. [
  33019. {
  33020. name: "Normal",
  33021. height: math.unit(15, "feet"),
  33022. default: true
  33023. },
  33024. ]
  33025. ))
  33026. characterMakers.push(() => makeCharacter(
  33027. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33028. {
  33029. front: {
  33030. height: math.unit(5 + 8/12, "feet"),
  33031. weight: math.unit(139, "lb"),
  33032. name: "Front",
  33033. image: {
  33034. source: "./media/characters/biscuit-jackal/front.svg",
  33035. extra: 2106/1961,
  33036. bottom: 58/2164
  33037. }
  33038. },
  33039. back: {
  33040. height: math.unit(5 + 8/12, "feet"),
  33041. weight: math.unit(139, "lb"),
  33042. name: "Back",
  33043. image: {
  33044. source: "./media/characters/biscuit-jackal/back.svg",
  33045. extra: 2132/1976,
  33046. bottom: 57/2189
  33047. }
  33048. },
  33049. werejackal: {
  33050. height: math.unit(6 + 3/12, "feet"),
  33051. weight: math.unit(188, "lb"),
  33052. name: "Werejackal",
  33053. image: {
  33054. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33055. extra: 2373/2178,
  33056. bottom: 53/2426
  33057. }
  33058. },
  33059. },
  33060. [
  33061. {
  33062. name: "Normal",
  33063. height: math.unit(5 + 8/12, "feet"),
  33064. default: true
  33065. },
  33066. ]
  33067. ))
  33068. characterMakers.push(() => makeCharacter(
  33069. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33070. {
  33071. front: {
  33072. height: math.unit(140, "cm"),
  33073. weight: math.unit(45, "kg"),
  33074. name: "Front",
  33075. image: {
  33076. source: "./media/characters/tayra-white/front.svg",
  33077. extra: 2229/2192,
  33078. bottom: 75/2304
  33079. }
  33080. },
  33081. },
  33082. [
  33083. {
  33084. name: "Normal",
  33085. height: math.unit(140, "cm"),
  33086. default: true
  33087. },
  33088. ]
  33089. ))
  33090. characterMakers.push(() => makeCharacter(
  33091. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33092. {
  33093. front: {
  33094. height: math.unit(4 + 5/12, "feet"),
  33095. name: "Front",
  33096. image: {
  33097. source: "./media/characters/scoop/front.svg",
  33098. extra: 1257/1136,
  33099. bottom: 69/1326
  33100. }
  33101. },
  33102. back: {
  33103. height: math.unit(4 + 5/12, "feet"),
  33104. name: "Back",
  33105. image: {
  33106. source: "./media/characters/scoop/back.svg",
  33107. extra: 1321/1152,
  33108. bottom: 32/1353
  33109. }
  33110. },
  33111. maw: {
  33112. height: math.unit(0.68, "feet"),
  33113. name: "Maw",
  33114. image: {
  33115. source: "./media/characters/scoop/maw.svg"
  33116. }
  33117. },
  33118. },
  33119. [
  33120. {
  33121. name: "Really Small",
  33122. height: math.unit(1, "mm")
  33123. },
  33124. {
  33125. name: "Micro",
  33126. height: math.unit(1, "inch")
  33127. },
  33128. {
  33129. name: "Normal",
  33130. height: math.unit(4 + 5/12, "feet"),
  33131. default: true
  33132. },
  33133. {
  33134. name: "Macro",
  33135. height: math.unit(200, "feet")
  33136. },
  33137. {
  33138. name: "Megamacro",
  33139. height: math.unit(3240, "feet")
  33140. },
  33141. {
  33142. name: "Teramacro",
  33143. height: math.unit(2500, "miles")
  33144. },
  33145. ]
  33146. ))
  33147. characterMakers.push(() => makeCharacter(
  33148. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33149. {
  33150. front: {
  33151. height: math.unit(15 + 7/12, "feet"),
  33152. name: "Front",
  33153. image: {
  33154. source: "./media/characters/saphinara/front.svg",
  33155. extra: 604/546,
  33156. bottom: 19/623
  33157. }
  33158. },
  33159. side: {
  33160. height: math.unit(15 + 7/12, "feet"),
  33161. name: "Side",
  33162. image: {
  33163. source: "./media/characters/saphinara/side.svg",
  33164. extra: 605/547,
  33165. bottom: 6/611
  33166. }
  33167. },
  33168. back: {
  33169. height: math.unit(15 + 7/12, "feet"),
  33170. name: "Back",
  33171. image: {
  33172. source: "./media/characters/saphinara/back.svg",
  33173. extra: 591/531,
  33174. bottom: 13/604
  33175. }
  33176. },
  33177. frontTail: {
  33178. height: math.unit(15 + 7/12, "feet"),
  33179. name: "Front (Full Tail)",
  33180. image: {
  33181. source: "./media/characters/saphinara/front-tail.svg",
  33182. extra: 748/547,
  33183. bottom: 66/814
  33184. }
  33185. },
  33186. },
  33187. [
  33188. {
  33189. name: "Normal",
  33190. height: math.unit(15 + 7/12, "feet"),
  33191. default: true
  33192. },
  33193. {
  33194. name: "Angry",
  33195. height: math.unit(30 + 6/12, "feet")
  33196. },
  33197. {
  33198. name: "Enraged",
  33199. height: math.unit(102 + 1/12, "feet")
  33200. },
  33201. ]
  33202. ))
  33203. characterMakers.push(() => makeCharacter(
  33204. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33205. {
  33206. front: {
  33207. height: math.unit(6 + 8/12, "feet"),
  33208. weight: math.unit(300, "lb"),
  33209. name: "Front",
  33210. image: {
  33211. source: "./media/characters/jrain/front.svg",
  33212. extra: 3039/2865,
  33213. bottom: 399/3438
  33214. }
  33215. },
  33216. back: {
  33217. height: math.unit(6 + 8/12, "feet"),
  33218. weight: math.unit(300, "lb"),
  33219. name: "Back",
  33220. image: {
  33221. source: "./media/characters/jrain/back.svg",
  33222. extra: 3089/2938,
  33223. bottom: 172/3261
  33224. }
  33225. },
  33226. head: {
  33227. height: math.unit(2.14, "feet"),
  33228. name: "Head",
  33229. image: {
  33230. source: "./media/characters/jrain/head.svg"
  33231. }
  33232. },
  33233. maw: {
  33234. height: math.unit(1.77, "feet"),
  33235. name: "Maw",
  33236. image: {
  33237. source: "./media/characters/jrain/maw.svg"
  33238. }
  33239. },
  33240. leftHand: {
  33241. height: math.unit(1.1, "feet"),
  33242. name: "Left Hand",
  33243. image: {
  33244. source: "./media/characters/jrain/left-hand.svg"
  33245. }
  33246. },
  33247. rightHand: {
  33248. height: math.unit(1.1, "feet"),
  33249. name: "Right Hand",
  33250. image: {
  33251. source: "./media/characters/jrain/right-hand.svg"
  33252. }
  33253. },
  33254. eye: {
  33255. height: math.unit(0.35, "feet"),
  33256. name: "Eye",
  33257. image: {
  33258. source: "./media/characters/jrain/eye.svg"
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Normal",
  33265. height: math.unit(6 + 8/12, "feet"),
  33266. default: true
  33267. },
  33268. {
  33269. name: "Casually Large",
  33270. height: math.unit(25, "feet")
  33271. },
  33272. {
  33273. name: "Giant",
  33274. height: math.unit(100, "feet")
  33275. },
  33276. {
  33277. name: "Kaiju",
  33278. height: math.unit(300, "feet")
  33279. },
  33280. ]
  33281. ))
  33282. characterMakers.push(() => makeCharacter(
  33283. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33284. {
  33285. dragon: {
  33286. height: math.unit(5, "meters"),
  33287. name: "Dragon",
  33288. image: {
  33289. source: "./media/characters/sabrina/dragon.svg",
  33290. extra: 3670 / 2365,
  33291. bottom: 333 / 4003
  33292. }
  33293. },
  33294. gryphon: {
  33295. height: math.unit(3, "meters"),
  33296. name: "Gryphon",
  33297. image: {
  33298. source: "./media/characters/sabrina/gryphon.svg",
  33299. extra: 1576 / 945,
  33300. bottom: 71 / 1647
  33301. }
  33302. },
  33303. snake: {
  33304. height: math.unit(12, "meters"),
  33305. name: "Snake",
  33306. image: {
  33307. source: "./media/characters/sabrina/snake.svg",
  33308. extra: 1758 / 1320,
  33309. bottom: 186 / 1944
  33310. }
  33311. },
  33312. collar: {
  33313. height: math.unit(1.86, "meters"),
  33314. name: "Collar",
  33315. image: {
  33316. source: "./media/characters/sabrina/collar.svg"
  33317. }
  33318. },
  33319. eye: {
  33320. height: math.unit(0.53, "meters"),
  33321. name: "Eye",
  33322. image: {
  33323. source: "./media/characters/sabrina/eye.svg"
  33324. }
  33325. },
  33326. foot: {
  33327. height: math.unit(1.86, "meters"),
  33328. name: "Foot",
  33329. image: {
  33330. source: "./media/characters/sabrina/foot.svg"
  33331. }
  33332. },
  33333. hand: {
  33334. height: math.unit(1.32, "meters"),
  33335. name: "Hand",
  33336. image: {
  33337. source: "./media/characters/sabrina/hand.svg"
  33338. }
  33339. },
  33340. head: {
  33341. height: math.unit(2.44, "meters"),
  33342. name: "Head",
  33343. image: {
  33344. source: "./media/characters/sabrina/head.svg"
  33345. }
  33346. },
  33347. headAngry: {
  33348. height: math.unit(2.44, "meters"),
  33349. name: "Head (Angry))",
  33350. image: {
  33351. source: "./media/characters/sabrina/head-angry.svg"
  33352. }
  33353. },
  33354. maw: {
  33355. height: math.unit(1.65, "meters"),
  33356. name: "Maw",
  33357. image: {
  33358. source: "./media/characters/sabrina/maw.svg"
  33359. }
  33360. },
  33361. spikes: {
  33362. height: math.unit(1.69, "meters"),
  33363. name: "Spikes",
  33364. image: {
  33365. source: "./media/characters/sabrina/spikes.svg"
  33366. }
  33367. },
  33368. stomach: {
  33369. height: math.unit(1.15, "meters"),
  33370. name: "Stomach",
  33371. image: {
  33372. source: "./media/characters/sabrina/stomach.svg"
  33373. }
  33374. },
  33375. tongue: {
  33376. height: math.unit(1.27, "meters"),
  33377. name: "Tongue",
  33378. image: {
  33379. source: "./media/characters/sabrina/tongue.svg"
  33380. }
  33381. },
  33382. wingDorsal: {
  33383. height: math.unit(4.85, "meters"),
  33384. name: "Wing (Dorsal)",
  33385. image: {
  33386. source: "./media/characters/sabrina/wing-dorsal.svg"
  33387. }
  33388. },
  33389. wingVentral: {
  33390. height: math.unit(4.85, "meters"),
  33391. name: "Wing (Ventral)",
  33392. image: {
  33393. source: "./media/characters/sabrina/wing-ventral.svg"
  33394. }
  33395. },
  33396. },
  33397. [
  33398. {
  33399. name: "Normal",
  33400. height: math.unit(5, "meters"),
  33401. default: true
  33402. },
  33403. ]
  33404. ))
  33405. characterMakers.push(() => makeCharacter(
  33406. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33407. {
  33408. frontMaid: {
  33409. height: math.unit(5 + 5/12, "feet"),
  33410. weight: math.unit(130, "lb"),
  33411. name: "Front (Maid)",
  33412. image: {
  33413. source: "./media/characters/midnight-tales/front-maid.svg",
  33414. extra: 489/454,
  33415. bottom: 61/550
  33416. }
  33417. },
  33418. frontFormal: {
  33419. height: math.unit(5 + 5/12, "feet"),
  33420. weight: math.unit(130, "lb"),
  33421. name: "Front (Formal)",
  33422. image: {
  33423. source: "./media/characters/midnight-tales/front-formal.svg",
  33424. extra: 489/454,
  33425. bottom: 61/550
  33426. }
  33427. },
  33428. back: {
  33429. height: math.unit(5 + 5/12, "feet"),
  33430. weight: math.unit(130, "lb"),
  33431. name: "Back",
  33432. image: {
  33433. source: "./media/characters/midnight-tales/back.svg",
  33434. extra: 498/456,
  33435. bottom: 33/531
  33436. }
  33437. },
  33438. frontBeast: {
  33439. height: math.unit(40, "feet"),
  33440. weight: math.unit(64000, "lb"),
  33441. name: "Front (Beast)",
  33442. image: {
  33443. source: "./media/characters/midnight-tales/front-beast.svg",
  33444. extra: 927/860,
  33445. bottom: 53/980
  33446. }
  33447. },
  33448. backBeast: {
  33449. height: math.unit(40, "feet"),
  33450. weight: math.unit(64000, "lb"),
  33451. name: "Back (Beast)",
  33452. image: {
  33453. source: "./media/characters/midnight-tales/back-beast.svg",
  33454. extra: 929/855,
  33455. bottom: 16/945
  33456. }
  33457. },
  33458. footBeast: {
  33459. height: math.unit(6.7, "feet"),
  33460. name: "Foot (Beast)",
  33461. image: {
  33462. source: "./media/characters/midnight-tales/foot-beast.svg"
  33463. }
  33464. },
  33465. headBeast: {
  33466. height: math.unit(8, "feet"),
  33467. name: "Head (Beast)",
  33468. image: {
  33469. source: "./media/characters/midnight-tales/head-beast.svg"
  33470. }
  33471. },
  33472. },
  33473. [
  33474. {
  33475. name: "Normal",
  33476. height: math.unit(5 + 5 / 12, "feet"),
  33477. default: true
  33478. },
  33479. {
  33480. name: "Macro",
  33481. height: math.unit(25, "feet")
  33482. },
  33483. ]
  33484. ))
  33485. characterMakers.push(() => makeCharacter(
  33486. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33487. {
  33488. front: {
  33489. height: math.unit(5 + 10/12, "feet"),
  33490. name: "Front",
  33491. image: {
  33492. source: "./media/characters/argon/front.svg",
  33493. extra: 2009/1935,
  33494. bottom: 118/2127
  33495. }
  33496. },
  33497. back: {
  33498. height: math.unit(5 + 10/12, "feet"),
  33499. name: "Back",
  33500. image: {
  33501. source: "./media/characters/argon/back.svg",
  33502. extra: 2047/1992,
  33503. bottom: 20/2067
  33504. }
  33505. },
  33506. frontDressed: {
  33507. height: math.unit(5 + 10/12, "feet"),
  33508. name: "Front (Dressed)",
  33509. image: {
  33510. source: "./media/characters/argon/front-dressed.svg",
  33511. extra: 2009/1935,
  33512. bottom: 118/2127
  33513. }
  33514. },
  33515. },
  33516. [
  33517. {
  33518. name: "Normal",
  33519. height: math.unit(5 + 10/12, "feet"),
  33520. default: true
  33521. },
  33522. ]
  33523. ))
  33524. characterMakers.push(() => makeCharacter(
  33525. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33526. {
  33527. front: {
  33528. height: math.unit(8 + 6/12, "feet"),
  33529. weight: math.unit(1150, "lb"),
  33530. name: "Front",
  33531. image: {
  33532. source: "./media/characters/kichi/front.svg",
  33533. extra: 1267/1164,
  33534. bottom: 61/1328
  33535. }
  33536. },
  33537. back: {
  33538. height: math.unit(8 + 6/12, "feet"),
  33539. weight: math.unit(1150, "lb"),
  33540. name: "Back",
  33541. image: {
  33542. source: "./media/characters/kichi/back.svg",
  33543. extra: 1273/1166,
  33544. bottom: 33/1306
  33545. }
  33546. },
  33547. },
  33548. [
  33549. {
  33550. name: "Normal",
  33551. height: math.unit(8 + 6/12, "feet"),
  33552. default: true
  33553. },
  33554. ]
  33555. ))
  33556. characterMakers.push(() => makeCharacter(
  33557. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33558. {
  33559. front: {
  33560. height: math.unit(6, "feet"),
  33561. weight: math.unit(210, "lb"),
  33562. name: "Front",
  33563. image: {
  33564. source: "./media/characters/manetel-greyscale/front.svg",
  33565. extra: 350/312,
  33566. bottom: 8/358
  33567. }
  33568. },
  33569. },
  33570. [
  33571. {
  33572. name: "Micro",
  33573. height: math.unit(2, "inches")
  33574. },
  33575. {
  33576. name: "Normal",
  33577. height: math.unit(6, "feet"),
  33578. default: true
  33579. },
  33580. {
  33581. name: "Minimacro",
  33582. height: math.unit(17, "feet")
  33583. },
  33584. {
  33585. name: "Macro",
  33586. height: math.unit(117, "feet")
  33587. },
  33588. ]
  33589. ))
  33590. characterMakers.push(() => makeCharacter(
  33591. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33592. {
  33593. side: {
  33594. height: math.unit(5 + 1/12, "feet"),
  33595. weight: math.unit(418, "lb"),
  33596. name: "Side",
  33597. image: {
  33598. source: "./media/characters/softpurr/side.svg",
  33599. extra: 1993/1945,
  33600. bottom: 134/2127
  33601. }
  33602. },
  33603. front: {
  33604. height: math.unit(5 + 1/12, "feet"),
  33605. weight: math.unit(418, "lb"),
  33606. name: "Front",
  33607. image: {
  33608. source: "./media/characters/softpurr/front.svg",
  33609. extra: 1950/1856,
  33610. bottom: 174/2124
  33611. }
  33612. },
  33613. paw: {
  33614. height: math.unit(1, "feet"),
  33615. name: "Paw",
  33616. image: {
  33617. source: "./media/characters/softpurr/paw.svg"
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Normal",
  33624. height: math.unit(5 + 1/12, "feet"),
  33625. default: true
  33626. },
  33627. ]
  33628. ))
  33629. characterMakers.push(() => makeCharacter(
  33630. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33631. {
  33632. front: {
  33633. height: math.unit(260, "meters"),
  33634. name: "Front",
  33635. image: {
  33636. source: "./media/characters/anahita/front.svg",
  33637. extra: 665/635,
  33638. bottom: 89/754
  33639. }
  33640. },
  33641. },
  33642. [
  33643. {
  33644. name: "Macro",
  33645. height: math.unit(260, "meters"),
  33646. default: true
  33647. },
  33648. ]
  33649. ))
  33650. characterMakers.push(() => makeCharacter(
  33651. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33652. {
  33653. front: {
  33654. height: math.unit(4 + 10/12, "feet"),
  33655. weight: math.unit(160, "lb"),
  33656. name: "Front",
  33657. image: {
  33658. source: "./media/characters/chip-mouse/front.svg",
  33659. extra: 3528/3408,
  33660. bottom: 0/3528
  33661. }
  33662. },
  33663. frontNsfw: {
  33664. height: math.unit(4 + 10/12, "feet"),
  33665. weight: math.unit(160, "lb"),
  33666. name: "Front (NSFW)",
  33667. image: {
  33668. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33669. extra: 3528/3408,
  33670. bottom: 0/3528
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Normal",
  33677. height: math.unit(4 + 10/12, "feet"),
  33678. default: true
  33679. },
  33680. ]
  33681. ))
  33682. characterMakers.push(() => makeCharacter(
  33683. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33684. {
  33685. side: {
  33686. height: math.unit(10, "feet"),
  33687. weight: math.unit(14000, "lb"),
  33688. name: "Side",
  33689. image: {
  33690. source: "./media/characters/kremm/side.svg",
  33691. extra: 1390/1053,
  33692. bottom: 90/1480
  33693. }
  33694. },
  33695. gut: {
  33696. height: math.unit(5.8, "feet"),
  33697. name: "Gut",
  33698. image: {
  33699. source: "./media/characters/kremm/gut.svg"
  33700. }
  33701. },
  33702. ass: {
  33703. height: math.unit(6.1, "feet"),
  33704. name: "Ass",
  33705. image: {
  33706. source: "./media/characters/kremm/ass.svg"
  33707. }
  33708. },
  33709. jaws: {
  33710. height: math.unit(2.2, "feet"),
  33711. name: "Jaws",
  33712. image: {
  33713. source: "./media/characters/kremm/jaws.svg"
  33714. }
  33715. },
  33716. dick: {
  33717. height: math.unit(4.26, "feet"),
  33718. name: "Dick",
  33719. image: {
  33720. source: "./media/characters/kremm/dick.svg"
  33721. }
  33722. },
  33723. },
  33724. [
  33725. {
  33726. name: "Normal",
  33727. height: math.unit(10, "feet"),
  33728. default: true
  33729. },
  33730. ]
  33731. ))
  33732. characterMakers.push(() => makeCharacter(
  33733. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33734. {
  33735. front: {
  33736. height: math.unit(30, "stories"),
  33737. name: "Front",
  33738. image: {
  33739. source: "./media/characters/kai/front.svg",
  33740. extra: 1892/1718,
  33741. bottom: 162/2054
  33742. }
  33743. },
  33744. },
  33745. [
  33746. {
  33747. name: "Macro",
  33748. height: math.unit(30, "stories"),
  33749. default: true
  33750. },
  33751. ]
  33752. ))
  33753. characterMakers.push(() => makeCharacter(
  33754. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33755. {
  33756. front: {
  33757. height: math.unit(6 + 4/12, "feet"),
  33758. weight: math.unit(145, "lb"),
  33759. name: "Front",
  33760. image: {
  33761. source: "./media/characters/sykes/front.svg",
  33762. extra: 1321 / 1187,
  33763. bottom: 66 / 1387
  33764. }
  33765. },
  33766. back: {
  33767. height: math.unit(6 + 4/12, "feet"),
  33768. weight: math.unit(145, "lb"),
  33769. name: "Back",
  33770. image: {
  33771. source: "./media/characters/sykes/back.svg",
  33772. extra: 1326/1181,
  33773. bottom: 31/1357
  33774. }
  33775. },
  33776. handBack: {
  33777. height: math.unit(0.9, "feet"),
  33778. name: "Hand (Back)",
  33779. image: {
  33780. source: "./media/characters/sykes/hand-back.svg"
  33781. }
  33782. },
  33783. handFront: {
  33784. height: math.unit(0.839, "feet"),
  33785. name: "Hand (Front)",
  33786. image: {
  33787. source: "./media/characters/sykes/hand-front.svg"
  33788. }
  33789. },
  33790. leftFoot: {
  33791. height: math.unit(1.2, "feet"),
  33792. name: "Foot (Left)",
  33793. image: {
  33794. source: "./media/characters/sykes/foot-left.svg"
  33795. }
  33796. },
  33797. rightFoot: {
  33798. height: math.unit(1.2, "feet"),
  33799. name: "Foot (Right)",
  33800. image: {
  33801. source: "./media/characters/sykes/foot-right.svg"
  33802. }
  33803. },
  33804. maw: {
  33805. height: math.unit(1.93, "feet"),
  33806. name: "Maw",
  33807. image: {
  33808. source: "./media/characters/sykes/maw.svg"
  33809. }
  33810. },
  33811. teeth: {
  33812. height: math.unit(0.51, "feet"),
  33813. name: "Teeth",
  33814. image: {
  33815. source: "./media/characters/sykes/teeth.svg"
  33816. }
  33817. },
  33818. tongue: {
  33819. height: math.unit(2.13, "feet"),
  33820. name: "Tongue",
  33821. image: {
  33822. source: "./media/characters/sykes/tongue.svg"
  33823. }
  33824. },
  33825. uvula: {
  33826. height: math.unit(0.16, "feet"),
  33827. name: "Uvula",
  33828. image: {
  33829. source: "./media/characters/sykes/uvula.svg"
  33830. }
  33831. },
  33832. collar: {
  33833. height: math.unit(0.287, "feet"),
  33834. name: "Collar",
  33835. image: {
  33836. source: "./media/characters/sykes/collar.svg"
  33837. }
  33838. },
  33839. },
  33840. [
  33841. {
  33842. name: "Shrunken",
  33843. height: math.unit(5, "inches")
  33844. },
  33845. {
  33846. name: "Normal",
  33847. height: math.unit(6 + 4 / 12, "feet"),
  33848. default: true
  33849. },
  33850. {
  33851. name: "Big",
  33852. height: math.unit(15, "feet")
  33853. },
  33854. ]
  33855. ))
  33856. characterMakers.push(() => makeCharacter(
  33857. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33858. {
  33859. front: {
  33860. height: math.unit(5 + 8/12, "feet"),
  33861. weight: math.unit(190, "lb"),
  33862. name: "Front",
  33863. image: {
  33864. source: "./media/characters/oven-otter/front.svg",
  33865. extra: 1809/1740,
  33866. bottom: 181/1990
  33867. }
  33868. },
  33869. back: {
  33870. height: math.unit(5 + 8/12, "feet"),
  33871. weight: math.unit(190, "lb"),
  33872. name: "Back",
  33873. image: {
  33874. source: "./media/characters/oven-otter/back.svg",
  33875. extra: 1709/1635,
  33876. bottom: 118/1827
  33877. }
  33878. },
  33879. hand: {
  33880. height: math.unit(1.07, "feet"),
  33881. name: "Hand",
  33882. image: {
  33883. source: "./media/characters/oven-otter/hand.svg"
  33884. }
  33885. },
  33886. beans: {
  33887. height: math.unit(1.74, "feet"),
  33888. name: "Beans",
  33889. image: {
  33890. source: "./media/characters/oven-otter/beans.svg"
  33891. }
  33892. },
  33893. },
  33894. [
  33895. {
  33896. name: "Micro",
  33897. height: math.unit(0.5, "inches")
  33898. },
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(5 + 8/12, "feet"),
  33902. default: true
  33903. },
  33904. {
  33905. name: "Macro",
  33906. height: math.unit(250, "feet")
  33907. },
  33908. {
  33909. name: "Really High",
  33910. height: math.unit(420, "feet")
  33911. },
  33912. ]
  33913. ))
  33914. characterMakers.push(() => makeCharacter(
  33915. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33916. {
  33917. front: {
  33918. height: math.unit(5, "meters"),
  33919. weight: math.unit(292000000000000, "kg"),
  33920. name: "Front",
  33921. image: {
  33922. source: "./media/characters/devourer/front.svg",
  33923. extra: 1800/1733,
  33924. bottom: 211/2011
  33925. }
  33926. },
  33927. maw: {
  33928. height: math.unit(1.1, "meter"),
  33929. name: "Maw",
  33930. image: {
  33931. source: "./media/characters/devourer/maw.svg"
  33932. }
  33933. },
  33934. },
  33935. [
  33936. {
  33937. name: "Small",
  33938. height: math.unit(3, "meters")
  33939. },
  33940. {
  33941. name: "Large",
  33942. height: math.unit(5, "meters"),
  33943. default: true
  33944. },
  33945. ]
  33946. ))
  33947. characterMakers.push(() => makeCharacter(
  33948. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33949. {
  33950. front: {
  33951. height: math.unit(6, "feet"),
  33952. weight: math.unit(400, "lb"),
  33953. name: "Front",
  33954. image: {
  33955. source: "./media/characters/ellarby/front.svg",
  33956. extra: 1909/1763,
  33957. bottom: 80/1989
  33958. }
  33959. },
  33960. back: {
  33961. height: math.unit(6, "feet"),
  33962. weight: math.unit(400, "lb"),
  33963. name: "Back",
  33964. image: {
  33965. source: "./media/characters/ellarby/back.svg",
  33966. extra: 1914/1784,
  33967. bottom: 172/2086
  33968. }
  33969. },
  33970. },
  33971. [
  33972. {
  33973. name: "Mischief",
  33974. height: math.unit(18, "inches")
  33975. },
  33976. {
  33977. name: "Trouble",
  33978. height: math.unit(12, "feet")
  33979. },
  33980. {
  33981. name: "Havoc",
  33982. height: math.unit(200, "feet"),
  33983. default: true
  33984. },
  33985. {
  33986. name: "Pandemonium",
  33987. height: math.unit(1, "mile")
  33988. },
  33989. {
  33990. name: "Catastrophe",
  33991. height: math.unit(100, "miles")
  33992. },
  33993. ]
  33994. ))
  33995. characterMakers.push(() => makeCharacter(
  33996. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33997. {
  33998. front: {
  33999. height: math.unit(4.7, "meters"),
  34000. weight: math.unit(6500, "kg"),
  34001. name: "Front",
  34002. image: {
  34003. source: "./media/characters/vex/front.svg",
  34004. extra: 1288/1140,
  34005. bottom: 100/1388
  34006. }
  34007. },
  34008. },
  34009. [
  34010. {
  34011. name: "Normal",
  34012. height: math.unit(4.7, "meters"),
  34013. default: true
  34014. },
  34015. ]
  34016. ))
  34017. characterMakers.push(() => makeCharacter(
  34018. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34019. {
  34020. normal: {
  34021. height: math.unit(6, "feet"),
  34022. weight: math.unit(350, "lb"),
  34023. name: "Normal",
  34024. image: {
  34025. source: "./media/characters/teshy/normal.svg",
  34026. extra: 1795/1735,
  34027. bottom: 16/1811
  34028. }
  34029. },
  34030. monsterFront: {
  34031. height: math.unit(12, "feet"),
  34032. weight: math.unit(4700, "lb"),
  34033. name: "Monster (Front)",
  34034. image: {
  34035. source: "./media/characters/teshy/monster-front.svg",
  34036. extra: 2042/2034,
  34037. bottom: 128/2170
  34038. }
  34039. },
  34040. monsterSide: {
  34041. height: math.unit(12, "feet"),
  34042. weight: math.unit(4700, "lb"),
  34043. name: "Monster (Side)",
  34044. image: {
  34045. source: "./media/characters/teshy/monster-side.svg",
  34046. extra: 2067/2056,
  34047. bottom: 70/2137
  34048. }
  34049. },
  34050. monsterBack: {
  34051. height: math.unit(12, "feet"),
  34052. weight: math.unit(4700, "lb"),
  34053. name: "Monster (Back)",
  34054. image: {
  34055. source: "./media/characters/teshy/monster-back.svg",
  34056. extra: 1921/1914,
  34057. bottom: 171/2092
  34058. }
  34059. },
  34060. },
  34061. [
  34062. {
  34063. name: "Normal",
  34064. height: math.unit(6, "feet"),
  34065. default: true
  34066. },
  34067. ]
  34068. ))
  34069. characterMakers.push(() => makeCharacter(
  34070. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34071. {
  34072. front: {
  34073. height: math.unit(6, "feet"),
  34074. name: "Front",
  34075. image: {
  34076. source: "./media/characters/ramey/front.svg",
  34077. extra: 790/787,
  34078. bottom: 27/817
  34079. }
  34080. },
  34081. },
  34082. [
  34083. {
  34084. name: "Normal",
  34085. height: math.unit(6, "feet"),
  34086. default: true
  34087. },
  34088. ]
  34089. ))
  34090. characterMakers.push(() => makeCharacter(
  34091. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34092. {
  34093. front: {
  34094. height: math.unit(5 + 5/12, "feet"),
  34095. weight: math.unit(120, "lb"),
  34096. name: "Front",
  34097. image: {
  34098. source: "./media/characters/phirae/front.svg",
  34099. extra: 2491/2436,
  34100. bottom: 38/2529
  34101. }
  34102. },
  34103. },
  34104. [
  34105. {
  34106. name: "Normal",
  34107. height: math.unit(5 + 5/12, "feet"),
  34108. default: true
  34109. },
  34110. ]
  34111. ))
  34112. characterMakers.push(() => makeCharacter(
  34113. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34114. {
  34115. front: {
  34116. height: math.unit(5 + 3/12, "feet"),
  34117. name: "Front",
  34118. image: {
  34119. source: "./media/characters/stagglas/front.svg",
  34120. extra: 962/882,
  34121. bottom: 53/1015
  34122. }
  34123. },
  34124. feral: {
  34125. height: math.unit(335, "cm"),
  34126. name: "Feral",
  34127. image: {
  34128. source: "./media/characters/stagglas/feral.svg",
  34129. extra: 1732/1090,
  34130. bottom: 48/1780
  34131. }
  34132. },
  34133. },
  34134. [
  34135. {
  34136. name: "Normal",
  34137. height: math.unit(5 + 3/12, "feet"),
  34138. default: true
  34139. },
  34140. ]
  34141. ))
  34142. characterMakers.push(() => makeCharacter(
  34143. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34144. {
  34145. front: {
  34146. height: math.unit(5 + 4/12, "feet"),
  34147. weight: math.unit(145, "lb"),
  34148. name: "Front",
  34149. image: {
  34150. source: "./media/characters/starra/front.svg",
  34151. extra: 1790/1691,
  34152. bottom: 91/1881
  34153. }
  34154. },
  34155. },
  34156. [
  34157. {
  34158. name: "Normal",
  34159. height: math.unit(5 + 4/12, "feet"),
  34160. default: true
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34166. {
  34167. front: {
  34168. height: math.unit(2.2, "meters"),
  34169. name: "Front",
  34170. image: {
  34171. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34172. extra: 1194/1005,
  34173. bottom: 25/1219
  34174. }
  34175. },
  34176. },
  34177. [
  34178. {
  34179. name: "Normal",
  34180. height: math.unit(2.2, "meters"),
  34181. default: true
  34182. },
  34183. ]
  34184. ))
  34185. characterMakers.push(() => makeCharacter(
  34186. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34187. {
  34188. side: {
  34189. height: math.unit(8 + 2/12, "feet"),
  34190. weight: math.unit(1240, "lb"),
  34191. name: "Side",
  34192. image: {
  34193. source: "./media/characters/mika-valentine/side.svg",
  34194. extra: 2670/2501,
  34195. bottom: 250/2920
  34196. }
  34197. },
  34198. },
  34199. [
  34200. {
  34201. name: "Normal",
  34202. height: math.unit(8 + 2/12, "feet"),
  34203. default: true
  34204. },
  34205. ]
  34206. ))
  34207. characterMakers.push(() => makeCharacter(
  34208. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34209. {
  34210. front: {
  34211. height: math.unit(7 + 2/12, "feet"),
  34212. name: "Front",
  34213. image: {
  34214. source: "./media/characters/xoltol/front.svg",
  34215. extra: 2212/2124,
  34216. bottom: 84/2296
  34217. }
  34218. },
  34219. side: {
  34220. height: math.unit(7 + 2/12, "feet"),
  34221. name: "Side",
  34222. image: {
  34223. source: "./media/characters/xoltol/side.svg",
  34224. extra: 2273/2197,
  34225. bottom: 26/2299
  34226. }
  34227. },
  34228. hand: {
  34229. height: math.unit(2.5, "feet"),
  34230. name: "Hand",
  34231. image: {
  34232. source: "./media/characters/xoltol/hand.svg"
  34233. }
  34234. },
  34235. },
  34236. [
  34237. {
  34238. name: "Small-ish",
  34239. height: math.unit(5 + 11/12, "feet")
  34240. },
  34241. {
  34242. name: "Normal",
  34243. height: math.unit(7 + 2/12, "feet")
  34244. },
  34245. {
  34246. name: "\"Macro\"",
  34247. height: math.unit(14 + 9/12, "feet"),
  34248. default: true
  34249. },
  34250. {
  34251. name: "Alternate Height",
  34252. height: math.unit(20, "feet")
  34253. },
  34254. {
  34255. name: "Actually Macro",
  34256. height: math.unit(100, "feet")
  34257. },
  34258. ]
  34259. ))
  34260. characterMakers.push(() => makeCharacter(
  34261. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34262. {
  34263. front: {
  34264. height: math.unit(5 + 2/12, "feet"),
  34265. name: "Front",
  34266. image: {
  34267. source: "./media/characters/kotetsu-redwood/front.svg",
  34268. extra: 1053/942,
  34269. bottom: 60/1113
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Normal",
  34276. height: math.unit(5 + 2/12, "feet"),
  34277. default: true
  34278. },
  34279. ]
  34280. ))
  34281. characterMakers.push(() => makeCharacter(
  34282. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34283. {
  34284. front: {
  34285. height: math.unit(2.4, "meters"),
  34286. weight: math.unit(125, "kg"),
  34287. name: "Front",
  34288. image: {
  34289. source: "./media/characters/lilith/front.svg",
  34290. extra: 1590/1513,
  34291. bottom: 203/1793
  34292. }
  34293. },
  34294. },
  34295. [
  34296. {
  34297. name: "Humanoid",
  34298. height: math.unit(2.4, "meters")
  34299. },
  34300. {
  34301. name: "Normal",
  34302. height: math.unit(6, "meters"),
  34303. default: true
  34304. },
  34305. {
  34306. name: "Largest",
  34307. height: math.unit(55, "meters")
  34308. },
  34309. ]
  34310. ))
  34311. characterMakers.push(() => makeCharacter(
  34312. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34313. {
  34314. front: {
  34315. height: math.unit(8 + 4/12, "feet"),
  34316. weight: math.unit(535, "lb"),
  34317. name: "Front",
  34318. image: {
  34319. source: "./media/characters/beh'kah-bolger/front.svg",
  34320. extra: 1660/1603,
  34321. bottom: 37/1697
  34322. }
  34323. },
  34324. },
  34325. [
  34326. {
  34327. name: "Normal",
  34328. height: math.unit(8 + 4/12, "feet"),
  34329. default: true
  34330. },
  34331. {
  34332. name: "Kaiju",
  34333. height: math.unit(250, "feet")
  34334. },
  34335. {
  34336. name: "Still Growing",
  34337. height: math.unit(10, "miles")
  34338. },
  34339. {
  34340. name: "Continental",
  34341. height: math.unit(5000, "miles")
  34342. },
  34343. {
  34344. name: "Final Form",
  34345. height: math.unit(2500000, "miles")
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34351. {
  34352. front: {
  34353. height: math.unit(7 + 2/12, "feet"),
  34354. weight: math.unit(230, "kg"),
  34355. name: "Front",
  34356. image: {
  34357. source: "./media/characters/tatyana-milewska/front.svg",
  34358. extra: 1199/1150,
  34359. bottom: 86/1285
  34360. }
  34361. },
  34362. },
  34363. [
  34364. {
  34365. name: "Normal",
  34366. height: math.unit(7 + 2/12, "feet"),
  34367. default: true
  34368. },
  34369. {
  34370. name: "Big",
  34371. height: math.unit(12, "feet")
  34372. },
  34373. {
  34374. name: "Minimacro",
  34375. height: math.unit(20, "feet")
  34376. },
  34377. {
  34378. name: "Macro",
  34379. height: math.unit(120, "feet")
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34385. {
  34386. front: {
  34387. height: math.unit(7 + 8/12, "feet"),
  34388. weight: math.unit(152, "kg"),
  34389. name: "Front",
  34390. image: {
  34391. source: "./media/characters/helen-arri/front.svg",
  34392. extra: 440/423,
  34393. bottom: 14/454
  34394. }
  34395. },
  34396. back: {
  34397. height: math.unit(7 + 8/12, "feet"),
  34398. weight: math.unit(152, "kg"),
  34399. name: "Back",
  34400. image: {
  34401. source: "./media/characters/helen-arri/back.svg",
  34402. extra: 443/426,
  34403. bottom: 8/451
  34404. }
  34405. },
  34406. },
  34407. [
  34408. {
  34409. name: "Normal",
  34410. height: math.unit(7 + 8/12, "feet"),
  34411. default: true
  34412. },
  34413. {
  34414. name: "Big",
  34415. height: math.unit(14, "feet")
  34416. },
  34417. {
  34418. name: "Minimacro",
  34419. height: math.unit(24, "feet")
  34420. },
  34421. {
  34422. name: "Macro",
  34423. height: math.unit(140, "feet")
  34424. },
  34425. ]
  34426. ))
  34427. characterMakers.push(() => makeCharacter(
  34428. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34429. {
  34430. front: {
  34431. height: math.unit(6, "meters"),
  34432. name: "Front",
  34433. image: {
  34434. source: "./media/characters/ehanu-rehu/front.svg",
  34435. extra: 1800/1800,
  34436. bottom: 59/1859
  34437. }
  34438. },
  34439. },
  34440. [
  34441. {
  34442. name: "Normal",
  34443. height: math.unit(6, "meters"),
  34444. default: true
  34445. },
  34446. ]
  34447. ))
  34448. characterMakers.push(() => makeCharacter(
  34449. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34450. {
  34451. front: {
  34452. height: math.unit(7 + 3/12, "feet"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/renholder/front.svg",
  34456. extra: 3096/2960,
  34457. bottom: 250/3346
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal Bat",
  34464. height: math.unit(7 + 3/12, "feet"),
  34465. default: true
  34466. },
  34467. {
  34468. name: "Slightly Tall Bat",
  34469. height: math.unit(100, "feet")
  34470. },
  34471. {
  34472. name: "Big Bat",
  34473. height: math.unit(1000, "feet")
  34474. },
  34475. {
  34476. name: "City-Sized Bat",
  34477. height: math.unit(200000, "feet")
  34478. },
  34479. {
  34480. name: "Bigger Bat",
  34481. height: math.unit(10000, "miles")
  34482. },
  34483. {
  34484. name: "Solar Sized Bat",
  34485. height: math.unit(100, "AU")
  34486. },
  34487. {
  34488. name: "Galactic Bat",
  34489. height: math.unit(200000, "lightyears")
  34490. },
  34491. {
  34492. name: "Universally Known Bat",
  34493. height: math.unit(1, "universe")
  34494. },
  34495. ]
  34496. ))
  34497. characterMakers.push(() => makeCharacter(
  34498. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34499. {
  34500. front: {
  34501. height: math.unit(6 + 11/12, "feet"),
  34502. weight: math.unit(250, "lb"),
  34503. name: "Front",
  34504. image: {
  34505. source: "./media/characters/cookiecat/front.svg",
  34506. extra: 893/827,
  34507. bottom: 14/907
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "Micro",
  34514. height: math.unit(3, "inches")
  34515. },
  34516. {
  34517. name: "Normal",
  34518. height: math.unit(6 + 11/12, "feet"),
  34519. default: true
  34520. },
  34521. {
  34522. name: "Macro",
  34523. height: math.unit(100, "feet")
  34524. },
  34525. {
  34526. name: "Macro+",
  34527. height: math.unit(404, "feet")
  34528. },
  34529. {
  34530. name: "Megamacro",
  34531. height: math.unit(165, "miles")
  34532. },
  34533. {
  34534. name: "Planetary",
  34535. height: math.unit(4600, "miles")
  34536. },
  34537. ]
  34538. ))
  34539. characterMakers.push(() => makeCharacter(
  34540. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34541. {
  34542. front: {
  34543. height: math.unit(10 + 3/12, "feet"),
  34544. weight: math.unit(1500, "lb"),
  34545. name: "Front",
  34546. image: {
  34547. source: "./media/characters/tux-kusanagi/front.svg",
  34548. extra: 944/840,
  34549. bottom: 39/983
  34550. }
  34551. },
  34552. back: {
  34553. height: math.unit(10 + 3/12, "feet"),
  34554. weight: math.unit(1500, "lb"),
  34555. name: "Back",
  34556. image: {
  34557. source: "./media/characters/tux-kusanagi/back.svg",
  34558. extra: 941/842,
  34559. bottom: 28/969
  34560. }
  34561. },
  34562. rump: {
  34563. height: math.unit(5.25, "feet"),
  34564. name: "Rump",
  34565. image: {
  34566. source: "./media/characters/tux-kusanagi/rump.svg"
  34567. }
  34568. },
  34569. beak: {
  34570. height: math.unit(1.54, "feet"),
  34571. name: "Beak",
  34572. image: {
  34573. source: "./media/characters/tux-kusanagi/beak.svg"
  34574. }
  34575. },
  34576. },
  34577. [
  34578. {
  34579. name: "Normal",
  34580. height: math.unit(10 + 3/12, "feet"),
  34581. default: true
  34582. },
  34583. ]
  34584. ))
  34585. characterMakers.push(() => makeCharacter(
  34586. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34587. {
  34588. front: {
  34589. height: math.unit(58, "feet"),
  34590. weight: math.unit(200, "tons"),
  34591. name: "Front",
  34592. image: {
  34593. source: "./media/characters/uzarmazari/front.svg",
  34594. extra: 1575/1455,
  34595. bottom: 152/1727
  34596. }
  34597. },
  34598. back: {
  34599. height: math.unit(58, "feet"),
  34600. weight: math.unit(200, "tons"),
  34601. name: "Back",
  34602. image: {
  34603. source: "./media/characters/uzarmazari/back.svg",
  34604. extra: 1585/1510,
  34605. bottom: 157/1742
  34606. }
  34607. },
  34608. head: {
  34609. height: math.unit(26, "feet"),
  34610. name: "Head",
  34611. image: {
  34612. source: "./media/characters/uzarmazari/head.svg"
  34613. }
  34614. },
  34615. },
  34616. [
  34617. {
  34618. name: "Normal",
  34619. height: math.unit(58, "feet"),
  34620. default: true
  34621. },
  34622. ]
  34623. ))
  34624. characterMakers.push(() => makeCharacter(
  34625. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34626. {
  34627. side: {
  34628. height: math.unit(15, "feet"),
  34629. name: "Side",
  34630. image: {
  34631. source: "./media/characters/akitu/side.svg",
  34632. extra: 1421/1321,
  34633. bottom: 157/1578
  34634. }
  34635. },
  34636. front: {
  34637. height: math.unit(15, "feet"),
  34638. name: "Front",
  34639. image: {
  34640. source: "./media/characters/akitu/front.svg",
  34641. extra: 1435/1326,
  34642. bottom: 232/1667
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Normal",
  34649. height: math.unit(15, "feet"),
  34650. default: true
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(10 + 8/12, "feet"),
  34659. name: "Front",
  34660. image: {
  34661. source: "./media/characters/azalie-croixland/front.svg",
  34662. extra: 1972/1856,
  34663. bottom: 31/2003
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Original Height",
  34670. height: math.unit(5 + 4/12, "feet")
  34671. },
  34672. {
  34673. name: "Normal Height",
  34674. height: math.unit(10 + 8/12, "feet"),
  34675. default: true
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34681. {
  34682. side: {
  34683. height: math.unit(7 + 1/12, "feet"),
  34684. weight: math.unit(245, "lb"),
  34685. name: "Side",
  34686. image: {
  34687. source: "./media/characters/kavus-kazian/side.svg",
  34688. extra: 349/342,
  34689. bottom: 15/364
  34690. }
  34691. },
  34692. },
  34693. [
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(7 + 1/12, "feet"),
  34697. default: true
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34703. {
  34704. normal: {
  34705. height: math.unit(5 + 11/12, "feet"),
  34706. name: "Normal",
  34707. image: {
  34708. source: "./media/characters/moonlight-rose/normal.svg",
  34709. extra: 1979/1835,
  34710. bottom: 14/1993
  34711. }
  34712. },
  34713. demon: {
  34714. height: math.unit(5, "km"),
  34715. name: "Demon",
  34716. image: {
  34717. source: "./media/characters/moonlight-rose/demon.svg",
  34718. extra: 986/916,
  34719. bottom: 28/1014
  34720. }
  34721. },
  34722. },
  34723. [
  34724. {
  34725. name: "\"Natural\" height",
  34726. height: math.unit(5 + 11/12, "feet")
  34727. },
  34728. {
  34729. name: "Comfortable Size",
  34730. height: math.unit(40, "meters")
  34731. },
  34732. {
  34733. name: "Common Size",
  34734. height: math.unit(50, "km"),
  34735. default: true
  34736. },
  34737. {
  34738. name: "Demonic",
  34739. height: math.unit(1.24415e+21, "meters")
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34745. {
  34746. front: {
  34747. height: math.unit(16, "feet"),
  34748. weight: math.unit(610, "kg"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/huckle/front.svg",
  34752. extra: 1731/1625,
  34753. bottom: 33/1764
  34754. }
  34755. },
  34756. back: {
  34757. height: math.unit(16, "feet"),
  34758. weight: math.unit(610, "kg"),
  34759. name: "Back",
  34760. image: {
  34761. source: "./media/characters/huckle/back.svg",
  34762. extra: 1738/1651,
  34763. bottom: 37/1775
  34764. }
  34765. },
  34766. laughing: {
  34767. height: math.unit(3.75, "feet"),
  34768. name: "Laughing",
  34769. image: {
  34770. source: "./media/characters/huckle/laughing.svg"
  34771. }
  34772. },
  34773. angry: {
  34774. height: math.unit(4.15, "feet"),
  34775. name: "Angry",
  34776. image: {
  34777. source: "./media/characters/huckle/angry.svg"
  34778. }
  34779. },
  34780. },
  34781. [
  34782. {
  34783. name: "Normal",
  34784. height: math.unit(16, "feet"),
  34785. default: true
  34786. },
  34787. {
  34788. name: "Mini Macro",
  34789. height: math.unit(463, "feet")
  34790. },
  34791. {
  34792. name: "Macro",
  34793. height: math.unit(1680, "meters")
  34794. },
  34795. {
  34796. name: "Mega Macro",
  34797. height: math.unit(175, "km")
  34798. },
  34799. {
  34800. name: "Terra Macro",
  34801. height: math.unit(32, "gigameters")
  34802. },
  34803. {
  34804. name: "Multiverse+",
  34805. height: math.unit(2.56e23, "yottameters")
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(6 + 9/12, "feet"),
  34814. weight: math.unit(280, "lb"),
  34815. name: "Front",
  34816. image: {
  34817. source: "./media/characters/candy/front.svg",
  34818. extra: 234/217,
  34819. bottom: 11/245
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Really Small",
  34826. height: math.unit(0.1, "nm")
  34827. },
  34828. {
  34829. name: "Micro",
  34830. height: math.unit(2, "inches")
  34831. },
  34832. {
  34833. name: "Normal",
  34834. height: math.unit(6 + 9/12, "feet"),
  34835. default: true
  34836. },
  34837. {
  34838. name: "Small Macro",
  34839. height: math.unit(69, "feet")
  34840. },
  34841. {
  34842. name: "Macro",
  34843. height: math.unit(160, "feet")
  34844. },
  34845. {
  34846. name: "Megamacro",
  34847. height: math.unit(22000, "miles")
  34848. },
  34849. {
  34850. name: "Gigamacro",
  34851. height: math.unit(50000, "miles")
  34852. },
  34853. ]
  34854. ))
  34855. characterMakers.push(() => makeCharacter(
  34856. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34857. {
  34858. front: {
  34859. height: math.unit(4, "feet"),
  34860. weight: math.unit(90, "lb"),
  34861. name: "Front",
  34862. image: {
  34863. source: "./media/characters/joey-mcdonald/front.svg",
  34864. extra: 1059/852,
  34865. bottom: 33/1092
  34866. }
  34867. },
  34868. back: {
  34869. height: math.unit(4, "feet"),
  34870. weight: math.unit(90, "lb"),
  34871. name: "Back",
  34872. image: {
  34873. source: "./media/characters/joey-mcdonald/back.svg",
  34874. extra: 1077/879,
  34875. bottom: 5/1082
  34876. }
  34877. },
  34878. frontKobold: {
  34879. height: math.unit(4, "feet"),
  34880. weight: math.unit(100, "lb"),
  34881. name: "Front-kobold",
  34882. image: {
  34883. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34884. extra: 1480/1367,
  34885. bottom: 0/1480
  34886. }
  34887. },
  34888. backKobold: {
  34889. height: math.unit(4, "feet"),
  34890. weight: math.unit(100, "lb"),
  34891. name: "Back-kobold",
  34892. image: {
  34893. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34894. extra: 1449/1361,
  34895. bottom: 0/1449
  34896. }
  34897. },
  34898. },
  34899. [
  34900. {
  34901. name: "Normal",
  34902. height: math.unit(4, "feet"),
  34903. default: true
  34904. },
  34905. ]
  34906. ))
  34907. characterMakers.push(() => makeCharacter(
  34908. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34909. {
  34910. front: {
  34911. height: math.unit(12 + 6/12, "feet"),
  34912. name: "Front",
  34913. image: {
  34914. source: "./media/characters/kass-lockheed/front.svg",
  34915. extra: 354/343,
  34916. bottom: 9/363
  34917. }
  34918. },
  34919. back: {
  34920. height: math.unit(12 + 6/12, "feet"),
  34921. name: "Back",
  34922. image: {
  34923. source: "./media/characters/kass-lockheed/back.svg",
  34924. extra: 364/352,
  34925. bottom: 3/367
  34926. }
  34927. },
  34928. dick: {
  34929. height: math.unit(3.12, "feet"),
  34930. name: "Dick",
  34931. image: {
  34932. source: "./media/characters/kass-lockheed/dick.svg"
  34933. }
  34934. },
  34935. head: {
  34936. height: math.unit(2.6, "feet"),
  34937. name: "Head",
  34938. image: {
  34939. source: "./media/characters/kass-lockheed/head.svg"
  34940. }
  34941. },
  34942. bleh: {
  34943. height: math.unit(2.85, "feet"),
  34944. name: "Bleh",
  34945. image: {
  34946. source: "./media/characters/kass-lockheed/bleh.svg"
  34947. }
  34948. },
  34949. smug: {
  34950. height: math.unit(2.85, "feet"),
  34951. name: "Smug",
  34952. image: {
  34953. source: "./media/characters/kass-lockheed/smug.svg"
  34954. }
  34955. },
  34956. },
  34957. [
  34958. {
  34959. name: "Normal",
  34960. height: math.unit(12 + 6/12, "feet"),
  34961. default: true
  34962. },
  34963. ]
  34964. ))
  34965. characterMakers.push(() => makeCharacter(
  34966. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34967. {
  34968. front: {
  34969. height: math.unit(6 + 2/12, "feet"),
  34970. name: "Front",
  34971. image: {
  34972. source: "./media/characters/taylor/front.svg",
  34973. extra: 639/495,
  34974. bottom: 12/651
  34975. }
  34976. },
  34977. },
  34978. [
  34979. {
  34980. name: "Normal",
  34981. height: math.unit(6 + 2/12, "feet"),
  34982. default: true
  34983. },
  34984. {
  34985. name: "Big",
  34986. height: math.unit(15, "feet")
  34987. },
  34988. {
  34989. name: "Lorg",
  34990. height: math.unit(80, "feet")
  34991. },
  34992. {
  34993. name: "Too Lorg",
  34994. height: math.unit(120, "feet")
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35000. {
  35001. front: {
  35002. height: math.unit(15, "feet"),
  35003. name: "Front",
  35004. image: {
  35005. source: "./media/characters/kaizer/front.svg",
  35006. extra: 1612/1436,
  35007. bottom: 43/1655
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(15, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(2, "feet"),
  35024. weight: math.unit(30, "lb"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/sandy/front.svg",
  35028. extra: 1439/1307,
  35029. bottom: 194/1633
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Normal",
  35036. height: math.unit(2, "feet"),
  35037. default: true
  35038. },
  35039. ]
  35040. ))
  35041. characterMakers.push(() => makeCharacter(
  35042. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35043. {
  35044. front: {
  35045. height: math.unit(3, "feet"),
  35046. name: "Front",
  35047. image: {
  35048. source: "./media/characters/mellvi/front.svg",
  35049. extra: 1831/1630,
  35050. bottom: 58/1889
  35051. }
  35052. },
  35053. },
  35054. [
  35055. {
  35056. name: "Normal",
  35057. height: math.unit(3, "feet"),
  35058. default: true
  35059. },
  35060. ]
  35061. ))
  35062. characterMakers.push(() => makeCharacter(
  35063. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35064. {
  35065. front: {
  35066. height: math.unit(5 + 11/12, "feet"),
  35067. weight: math.unit(200, "lb"),
  35068. name: "Front",
  35069. image: {
  35070. source: "./media/characters/shirou/front.svg",
  35071. extra: 2491/2383,
  35072. bottom: 189/2680
  35073. }
  35074. },
  35075. back: {
  35076. height: math.unit(5 + 11/12, "feet"),
  35077. weight: math.unit(200, "lb"),
  35078. name: "Back",
  35079. image: {
  35080. source: "./media/characters/shirou/back.svg",
  35081. extra: 2554/2450,
  35082. bottom: 76/2630
  35083. }
  35084. },
  35085. },
  35086. [
  35087. {
  35088. name: "Normal",
  35089. height: math.unit(5 + 11/12, "feet"),
  35090. default: true
  35091. },
  35092. ]
  35093. ))
  35094. characterMakers.push(() => makeCharacter(
  35095. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35096. {
  35097. front: {
  35098. height: math.unit(6 + 3/12, "feet"),
  35099. weight: math.unit(177, "lb"),
  35100. name: "Front",
  35101. image: {
  35102. source: "./media/characters/noryu/front.svg",
  35103. extra: 973/885,
  35104. bottom: 10/983
  35105. }
  35106. },
  35107. },
  35108. [
  35109. {
  35110. name: "Normal",
  35111. height: math.unit(6 + 3/12, "feet"),
  35112. default: true
  35113. },
  35114. ]
  35115. ))
  35116. characterMakers.push(() => makeCharacter(
  35117. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35118. {
  35119. front: {
  35120. height: math.unit(5 + 6/12, "feet"),
  35121. weight: math.unit(170, "lb"),
  35122. name: "Front",
  35123. image: {
  35124. source: "./media/characters/mevolas-rubenido/front.svg",
  35125. extra: 2109/1901,
  35126. bottom: 96/2205
  35127. }
  35128. },
  35129. },
  35130. [
  35131. {
  35132. name: "Normal",
  35133. height: math.unit(5 + 6/12, "feet"),
  35134. default: true
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35140. {
  35141. front: {
  35142. height: math.unit(100, "feet"),
  35143. name: "Front",
  35144. image: {
  35145. source: "./media/characters/dee/front.svg",
  35146. extra: 2153/2036,
  35147. bottom: 59/2212
  35148. }
  35149. },
  35150. back: {
  35151. height: math.unit(100, "feet"),
  35152. name: "Back",
  35153. image: {
  35154. source: "./media/characters/dee/back.svg",
  35155. extra: 2183/2058,
  35156. bottom: 75/2258
  35157. }
  35158. },
  35159. foot: {
  35160. height: math.unit(19.43, "feet"),
  35161. name: "Foot",
  35162. image: {
  35163. source: "./media/characters/dee/foot.svg"
  35164. }
  35165. },
  35166. hoof: {
  35167. height: math.unit(20.6, "feet"),
  35168. name: "Hoof",
  35169. image: {
  35170. source: "./media/characters/dee/hoof.svg"
  35171. }
  35172. },
  35173. },
  35174. [
  35175. {
  35176. name: "Macro",
  35177. height: math.unit(100, "feet"),
  35178. default: true
  35179. },
  35180. ]
  35181. ))
  35182. characterMakers.push(() => makeCharacter(
  35183. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35184. {
  35185. front: {
  35186. height: math.unit(5 + 6/12, "feet"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/teh/front.svg",
  35190. extra: 1002/847,
  35191. bottom: 62/1064
  35192. }
  35193. },
  35194. },
  35195. [
  35196. {
  35197. name: "Normal",
  35198. height: math.unit(5 + 6/12, "feet"),
  35199. default: true
  35200. },
  35201. ]
  35202. ))
  35203. characterMakers.push(() => makeCharacter(
  35204. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35205. {
  35206. side: {
  35207. height: math.unit(6 + 1/12, "feet"),
  35208. weight: math.unit(204, "lb"),
  35209. name: "Side",
  35210. image: {
  35211. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35212. extra: 974/775,
  35213. bottom: 169/1143
  35214. }
  35215. },
  35216. sitting: {
  35217. height: math.unit(6 + 2/12, "feet"),
  35218. weight: math.unit(204, "lb"),
  35219. name: "Sitting",
  35220. image: {
  35221. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35222. extra: 1175/964,
  35223. bottom: 378/1553
  35224. }
  35225. },
  35226. },
  35227. [
  35228. {
  35229. name: "Normal",
  35230. height: math.unit(6 + 1/12, "feet"),
  35231. default: true
  35232. },
  35233. ]
  35234. ))
  35235. characterMakers.push(() => makeCharacter(
  35236. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35237. {
  35238. front: {
  35239. height: math.unit(6, "inches"),
  35240. name: "Front",
  35241. image: {
  35242. source: "./media/characters/tululi/front.svg",
  35243. extra: 1997/1876,
  35244. bottom: 20/2017
  35245. }
  35246. },
  35247. },
  35248. [
  35249. {
  35250. name: "Normal",
  35251. height: math.unit(6, "inches"),
  35252. default: true
  35253. },
  35254. ]
  35255. ))
  35256. characterMakers.push(() => makeCharacter(
  35257. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35258. {
  35259. front: {
  35260. height: math.unit(4 + 1/12, "feet"),
  35261. name: "Front",
  35262. image: {
  35263. source: "./media/characters/star/front.svg",
  35264. extra: 1493/1189,
  35265. bottom: 48/1541
  35266. }
  35267. },
  35268. },
  35269. [
  35270. {
  35271. name: "Normal",
  35272. height: math.unit(4 + 1/12, "feet"),
  35273. default: true
  35274. },
  35275. ]
  35276. ))
  35277. characterMakers.push(() => makeCharacter(
  35278. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35279. {
  35280. front: {
  35281. height: math.unit(6 + 3/12, "feet"),
  35282. name: "Front",
  35283. image: {
  35284. source: "./media/characters/comet/front.svg",
  35285. extra: 1681/1462,
  35286. bottom: 26/1707
  35287. }
  35288. },
  35289. },
  35290. [
  35291. {
  35292. name: "Normal",
  35293. height: math.unit(6 + 3/12, "feet"),
  35294. default: true
  35295. },
  35296. ]
  35297. ))
  35298. characterMakers.push(() => makeCharacter(
  35299. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35300. {
  35301. front: {
  35302. height: math.unit(950, "feet"),
  35303. name: "Front",
  35304. image: {
  35305. source: "./media/characters/vortex/front.svg",
  35306. extra: 1497/1434,
  35307. bottom: 56/1553
  35308. }
  35309. },
  35310. maw: {
  35311. height: math.unit(285, "feet"),
  35312. name: "Maw",
  35313. image: {
  35314. source: "./media/characters/vortex/maw.svg"
  35315. }
  35316. },
  35317. },
  35318. [
  35319. {
  35320. name: "Macro",
  35321. height: math.unit(950, "feet"),
  35322. default: true
  35323. },
  35324. ]
  35325. ))
  35326. characterMakers.push(() => makeCharacter(
  35327. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35328. {
  35329. front: {
  35330. height: math.unit(600, "feet"),
  35331. weight: math.unit(0.02, "grams"),
  35332. name: "Front",
  35333. image: {
  35334. source: "./media/characters/doodle/front.svg",
  35335. extra: 1578/1413,
  35336. bottom: 37/1615
  35337. }
  35338. },
  35339. },
  35340. [
  35341. {
  35342. name: "Macro",
  35343. height: math.unit(600, "feet"),
  35344. default: true
  35345. },
  35346. ]
  35347. ))
  35348. characterMakers.push(() => makeCharacter(
  35349. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35350. {
  35351. front: {
  35352. height: math.unit(6 + 6/12, "feet"),
  35353. name: "Front",
  35354. image: {
  35355. source: "./media/characters/jai/front.svg",
  35356. extra: 1645/1534,
  35357. bottom: 115/1760
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(6 + 6/12, "feet"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35371. {
  35372. front: {
  35373. height: math.unit(6 + 8/12, "feet"),
  35374. name: "Front",
  35375. image: {
  35376. source: "./media/characters/pixel/front.svg",
  35377. extra: 1900/1735,
  35378. bottom: 63/1963
  35379. }
  35380. },
  35381. },
  35382. [
  35383. {
  35384. name: "Normal",
  35385. height: math.unit(6 + 8/12, "feet"),
  35386. default: true
  35387. },
  35388. ]
  35389. ))
  35390. characterMakers.push(() => makeCharacter(
  35391. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35392. {
  35393. front: {
  35394. height: math.unit(4 + 11/12, "feet"),
  35395. weight: math.unit(111, "lb"),
  35396. name: "Front",
  35397. image: {
  35398. source: "./media/characters/rhett/front.svg",
  35399. extra: 1682/1586,
  35400. bottom: 92/1774
  35401. }
  35402. },
  35403. },
  35404. [
  35405. {
  35406. name: "Mini",
  35407. height: math.unit(1 + 1/12, "feet")
  35408. },
  35409. {
  35410. name: "Normal",
  35411. height: math.unit(4 + 11/12, "feet"),
  35412. default: true
  35413. },
  35414. ]
  35415. ))
  35416. characterMakers.push(() => makeCharacter(
  35417. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35418. {
  35419. front: {
  35420. height: math.unit(3 + 3/12, "feet"),
  35421. name: "Front",
  35422. image: {
  35423. source: "./media/characters/penny/front.svg",
  35424. extra: 1406/1311,
  35425. bottom: 26/1432
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(3 + 3/12, "feet"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35439. {
  35440. front: {
  35441. height: math.unit(4 + 11/12, "feet"),
  35442. name: "Front",
  35443. image: {
  35444. source: "./media/characters/monty/front.svg",
  35445. extra: 1479/1209,
  35446. bottom: 0/1479
  35447. }
  35448. },
  35449. },
  35450. [
  35451. {
  35452. name: "Normal",
  35453. height: math.unit(4 + 11/12, "feet"),
  35454. default: true
  35455. },
  35456. ]
  35457. ))
  35458. characterMakers.push(() => makeCharacter(
  35459. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35460. {
  35461. front: {
  35462. height: math.unit(8 + 4/12, "feet"),
  35463. name: "Front",
  35464. image: {
  35465. source: "./media/characters/sterling/front.svg",
  35466. extra: 1420/1236,
  35467. bottom: 27/1447
  35468. }
  35469. },
  35470. },
  35471. [
  35472. {
  35473. name: "Normal",
  35474. height: math.unit(8 + 4/12, "feet"),
  35475. default: true
  35476. },
  35477. ]
  35478. ))
  35479. characterMakers.push(() => makeCharacter(
  35480. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35481. {
  35482. front: {
  35483. height: math.unit(15, "feet"),
  35484. name: "Front",
  35485. image: {
  35486. source: "./media/characters/marble/front.svg",
  35487. extra: 973/937,
  35488. bottom: 32/1005
  35489. }
  35490. },
  35491. },
  35492. [
  35493. {
  35494. name: "Normal",
  35495. height: math.unit(15, "feet"),
  35496. default: true
  35497. },
  35498. ]
  35499. ))
  35500. characterMakers.push(() => makeCharacter(
  35501. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35502. {
  35503. front: {
  35504. height: math.unit(3, "inches"),
  35505. name: "Front",
  35506. image: {
  35507. source: "./media/characters/powder/front.svg",
  35508. extra: 1504/1334,
  35509. bottom: 518/2022
  35510. }
  35511. },
  35512. },
  35513. [
  35514. {
  35515. name: "Normal",
  35516. height: math.unit(3, "inches"),
  35517. default: true
  35518. },
  35519. ]
  35520. ))
  35521. characterMakers.push(() => makeCharacter(
  35522. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35523. {
  35524. front: {
  35525. height: math.unit(4 + 5/12, "feet"),
  35526. name: "Front",
  35527. image: {
  35528. source: "./media/characters/joey-raccoon/front.svg",
  35529. extra: 1273/1197,
  35530. bottom: 0/1273
  35531. }
  35532. },
  35533. },
  35534. [
  35535. {
  35536. name: "Normal",
  35537. height: math.unit(4 + 5/12, "feet"),
  35538. default: true
  35539. },
  35540. ]
  35541. ))
  35542. characterMakers.push(() => makeCharacter(
  35543. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35544. {
  35545. front: {
  35546. height: math.unit(8 + 4/12, "feet"),
  35547. name: "Front",
  35548. image: {
  35549. source: "./media/characters/vick/front.svg",
  35550. extra: 2187/2118,
  35551. bottom: 47/2234
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Normal",
  35558. height: math.unit(8 + 4/12, "feet"),
  35559. default: true
  35560. },
  35561. ]
  35562. ))
  35563. characterMakers.push(() => makeCharacter(
  35564. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35565. {
  35566. front: {
  35567. height: math.unit(5 + 5/12, "feet"),
  35568. name: "Front",
  35569. image: {
  35570. source: "./media/characters/mitsy/front.svg",
  35571. extra: 1842/1695,
  35572. bottom: 0/1842
  35573. }
  35574. },
  35575. },
  35576. [
  35577. {
  35578. name: "Normal",
  35579. height: math.unit(5 + 5/12, "feet"),
  35580. default: true
  35581. },
  35582. ]
  35583. ))
  35584. characterMakers.push(() => makeCharacter(
  35585. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35586. {
  35587. front: {
  35588. height: math.unit(6 + 3/12, "feet"),
  35589. name: "Front",
  35590. image: {
  35591. source: "./media/characters/silvy/front.svg",
  35592. extra: 1995/1836,
  35593. bottom: 225/2220
  35594. }
  35595. },
  35596. },
  35597. [
  35598. {
  35599. name: "Normal",
  35600. height: math.unit(6 + 3/12, "feet"),
  35601. default: true
  35602. },
  35603. ]
  35604. ))
  35605. characterMakers.push(() => makeCharacter(
  35606. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35607. {
  35608. front: {
  35609. height: math.unit(3 + 8/12, "feet"),
  35610. name: "Front",
  35611. image: {
  35612. source: "./media/characters/rodney/front.svg",
  35613. extra: 1956/1747,
  35614. bottom: 31/1987
  35615. }
  35616. },
  35617. frontDressed: {
  35618. height: math.unit(2.9, "feet"),
  35619. name: "Front (Dressed)",
  35620. image: {
  35621. source: "./media/characters/rodney/front-dressed.svg",
  35622. extra: 1382/1241,
  35623. bottom: 385/1767
  35624. }
  35625. },
  35626. },
  35627. [
  35628. {
  35629. name: "Normal",
  35630. height: math.unit(3 + 8/12, "feet"),
  35631. default: true
  35632. },
  35633. ]
  35634. ))
  35635. characterMakers.push(() => makeCharacter(
  35636. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35637. {
  35638. front: {
  35639. height: math.unit(5 + 9/12, "feet"),
  35640. weight: math.unit(194, "lbs"),
  35641. name: "Front",
  35642. image: {
  35643. source: "./media/characters/zakail-sudekai/front.svg",
  35644. extra: 2696/2533,
  35645. bottom: 248/2944
  35646. }
  35647. },
  35648. maw: {
  35649. height: math.unit(1.35, "feet"),
  35650. name: "Maw",
  35651. image: {
  35652. source: "./media/characters/zakail-sudekai/maw.svg"
  35653. }
  35654. },
  35655. },
  35656. [
  35657. {
  35658. name: "Normal",
  35659. height: math.unit(5 + 9/12, "feet"),
  35660. default: true
  35661. },
  35662. ]
  35663. ))
  35664. characterMakers.push(() => makeCharacter(
  35665. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35666. {
  35667. front: {
  35668. height: math.unit(8 + 4/12, "feet"),
  35669. weight: math.unit(1200, "lb"),
  35670. name: "Front",
  35671. image: {
  35672. source: "./media/characters/eleanor/front.svg",
  35673. extra: 1226/1192,
  35674. bottom: 52/1278
  35675. }
  35676. },
  35677. back: {
  35678. height: math.unit(8 + 4/12, "feet"),
  35679. weight: math.unit(1200, "lb"),
  35680. name: "Back",
  35681. image: {
  35682. source: "./media/characters/eleanor/back.svg",
  35683. extra: 1242/1184,
  35684. bottom: 60/1302
  35685. }
  35686. },
  35687. head: {
  35688. height: math.unit(2.62, "feet"),
  35689. name: "Head",
  35690. image: {
  35691. source: "./media/characters/eleanor/head.svg"
  35692. }
  35693. },
  35694. },
  35695. [
  35696. {
  35697. name: "Normal",
  35698. height: math.unit(8 + 4/12, "feet"),
  35699. default: true
  35700. },
  35701. ]
  35702. ))
  35703. characterMakers.push(() => makeCharacter(
  35704. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35705. {
  35706. front: {
  35707. height: math.unit(8 + 4/12, "feet"),
  35708. weight: math.unit(750, "lb"),
  35709. name: "Front",
  35710. image: {
  35711. source: "./media/characters/tanya/front.svg",
  35712. extra: 1749/1615,
  35713. bottom: 33/1782
  35714. }
  35715. },
  35716. },
  35717. [
  35718. {
  35719. name: "Normal",
  35720. height: math.unit(8 + 4/12, "feet"),
  35721. default: true
  35722. },
  35723. ]
  35724. ))
  35725. characterMakers.push(() => makeCharacter(
  35726. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35727. {
  35728. front: {
  35729. height: math.unit(5, "feet"),
  35730. weight: math.unit(225, "lb"),
  35731. name: "Front",
  35732. image: {
  35733. source: "./media/characters/cindy/front.svg",
  35734. extra: 1320/1250,
  35735. bottom: 42/1362
  35736. }
  35737. },
  35738. frontDressed: {
  35739. height: math.unit(5, "feet"),
  35740. weight: math.unit(225, "lb"),
  35741. name: "Front (Dressed)",
  35742. image: {
  35743. source: "./media/characters/cindy/front-dressed.svg",
  35744. extra: 1320/1250,
  35745. bottom: 42/1362
  35746. }
  35747. },
  35748. back: {
  35749. height: math.unit(5, "feet"),
  35750. weight: math.unit(225, "lb"),
  35751. name: "Back",
  35752. image: {
  35753. source: "./media/characters/cindy/back.svg",
  35754. extra: 1384/1346,
  35755. bottom: 14/1398
  35756. }
  35757. },
  35758. },
  35759. [
  35760. {
  35761. name: "Normal",
  35762. height: math.unit(5, "feet"),
  35763. default: true
  35764. },
  35765. ]
  35766. ))
  35767. characterMakers.push(() => makeCharacter(
  35768. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35769. {
  35770. front: {
  35771. height: math.unit(6 + 9/12, "feet"),
  35772. weight: math.unit(440, "lb"),
  35773. name: "Front",
  35774. image: {
  35775. source: "./media/characters/wilbur-owen/front.svg",
  35776. extra: 1575/1448,
  35777. bottom: 72/1647
  35778. }
  35779. },
  35780. back: {
  35781. height: math.unit(6 + 9/12, "feet"),
  35782. weight: math.unit(440, "lb"),
  35783. name: "Back",
  35784. image: {
  35785. source: "./media/characters/wilbur-owen/back.svg",
  35786. extra: 1578/1445,
  35787. bottom: 36/1614
  35788. }
  35789. },
  35790. },
  35791. [
  35792. {
  35793. name: "Normal",
  35794. height: math.unit(6 + 9/12, "feet"),
  35795. default: true
  35796. },
  35797. ]
  35798. ))
  35799. characterMakers.push(() => makeCharacter(
  35800. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35801. {
  35802. front: {
  35803. height: math.unit(6 + 5/12, "feet"),
  35804. weight: math.unit(650, "lb"),
  35805. name: "Front",
  35806. image: {
  35807. source: "./media/characters/keegan/front.svg",
  35808. extra: 2387/2198,
  35809. bottom: 33/2420
  35810. }
  35811. },
  35812. side: {
  35813. height: math.unit(6 + 5/12, "feet"),
  35814. weight: math.unit(650, "lb"),
  35815. name: "Side",
  35816. image: {
  35817. source: "./media/characters/keegan/side.svg",
  35818. extra: 2390/2202,
  35819. bottom: 47/2437
  35820. }
  35821. },
  35822. back: {
  35823. height: math.unit(6 + 5/12, "feet"),
  35824. weight: math.unit(650, "lb"),
  35825. name: "Back",
  35826. image: {
  35827. source: "./media/characters/keegan/back.svg",
  35828. extra: 2418/2268,
  35829. bottom: 15/2433
  35830. }
  35831. },
  35832. frontSfw: {
  35833. height: math.unit(6 + 5/12, "feet"),
  35834. weight: math.unit(650, "lb"),
  35835. name: "Front (SFW)",
  35836. image: {
  35837. source: "./media/characters/keegan/front-sfw.svg",
  35838. extra: 2387/2198,
  35839. bottom: 33/2420
  35840. }
  35841. },
  35842. beans: {
  35843. height: math.unit(1.85, "feet"),
  35844. name: "Beans",
  35845. image: {
  35846. source: "./media/characters/keegan/beans.svg"
  35847. }
  35848. },
  35849. },
  35850. [
  35851. {
  35852. name: "Normal",
  35853. height: math.unit(6 + 5/12, "feet"),
  35854. default: true
  35855. },
  35856. ]
  35857. ))
  35858. characterMakers.push(() => makeCharacter(
  35859. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35860. {
  35861. front: {
  35862. height: math.unit(9, "feet"),
  35863. name: "Front",
  35864. image: {
  35865. source: "./media/characters/colton/front.svg",
  35866. extra: 1589/1326,
  35867. bottom: 139/1728
  35868. }
  35869. },
  35870. },
  35871. [
  35872. {
  35873. name: "Normal",
  35874. height: math.unit(9, "feet"),
  35875. default: true
  35876. },
  35877. ]
  35878. ))
  35879. characterMakers.push(() => makeCharacter(
  35880. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35881. {
  35882. front: {
  35883. height: math.unit(2 + 9/12, "feet"),
  35884. name: "Front",
  35885. image: {
  35886. source: "./media/characters/bora/front.svg",
  35887. extra: 1265/1250,
  35888. bottom: 24/1289
  35889. }
  35890. },
  35891. },
  35892. [
  35893. {
  35894. name: "Normal",
  35895. height: math.unit(2 + 9/12, "feet"),
  35896. default: true
  35897. },
  35898. ]
  35899. ))
  35900. characterMakers.push(() => makeCharacter(
  35901. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35902. {
  35903. front: {
  35904. height: math.unit(8, "feet"),
  35905. name: "Front",
  35906. image: {
  35907. source: "./media/characters/myu-myu/front.svg",
  35908. extra: 1949/1857,
  35909. bottom: 90/2039
  35910. }
  35911. },
  35912. },
  35913. [
  35914. {
  35915. name: "Normal",
  35916. height: math.unit(8, "feet"),
  35917. default: true
  35918. },
  35919. {
  35920. name: "Big",
  35921. height: math.unit(15, "feet")
  35922. },
  35923. {
  35924. name: "BIG",
  35925. height: math.unit(25, "feet")
  35926. },
  35927. ]
  35928. ))
  35929. characterMakers.push(() => makeCharacter(
  35930. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35931. {
  35932. side: {
  35933. height: math.unit(7 + 5/12, "feet"),
  35934. weight: math.unit(2800, "lb"),
  35935. name: "Side",
  35936. image: {
  35937. source: "./media/characters/haloren/side.svg",
  35938. extra: 1793/409,
  35939. bottom: 59/1852
  35940. }
  35941. },
  35942. frontPaw: {
  35943. height: math.unit(2.36, "feet"),
  35944. name: "Front paw",
  35945. image: {
  35946. source: "./media/characters/haloren/front-paw.svg"
  35947. }
  35948. },
  35949. hindPaw: {
  35950. height: math.unit(3.18, "feet"),
  35951. name: "Hind paw",
  35952. image: {
  35953. source: "./media/characters/haloren/hind-paw.svg"
  35954. }
  35955. },
  35956. maw: {
  35957. height: math.unit(5.05, "feet"),
  35958. name: "Maw",
  35959. image: {
  35960. source: "./media/characters/haloren/maw.svg"
  35961. }
  35962. },
  35963. dick: {
  35964. height: math.unit(2.90, "feet"),
  35965. name: "Dick",
  35966. image: {
  35967. source: "./media/characters/haloren/dick.svg"
  35968. }
  35969. },
  35970. },
  35971. [
  35972. {
  35973. name: "Normal",
  35974. height: math.unit(7 + 5/12, "feet"),
  35975. default: true
  35976. },
  35977. {
  35978. name: "Enhanced",
  35979. height: math.unit(14 + 3/12, "feet")
  35980. },
  35981. ]
  35982. ))
  35983. characterMakers.push(() => makeCharacter(
  35984. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35985. {
  35986. front: {
  35987. height: math.unit(171, "cm"),
  35988. name: "Front",
  35989. image: {
  35990. source: "./media/characters/kimmy/front.svg",
  35991. extra: 1491/1435,
  35992. bottom: 53/1544
  35993. }
  35994. },
  35995. },
  35996. [
  35997. {
  35998. name: "Small",
  35999. height: math.unit(9, "cm")
  36000. },
  36001. {
  36002. name: "Normal",
  36003. height: math.unit(171, "cm"),
  36004. default: true
  36005. },
  36006. ]
  36007. ))
  36008. characterMakers.push(() => makeCharacter(
  36009. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36010. {
  36011. front: {
  36012. height: math.unit(8, "feet"),
  36013. weight: math.unit(300, "lb"),
  36014. name: "Front",
  36015. image: {
  36016. source: "./media/characters/galeboomer/front.svg",
  36017. extra: 4651/4415,
  36018. bottom: 162/4813
  36019. }
  36020. },
  36021. back: {
  36022. height: math.unit(8, "feet"),
  36023. weight: math.unit(300, "lb"),
  36024. name: "Back",
  36025. image: {
  36026. source: "./media/characters/galeboomer/back.svg",
  36027. extra: 4544/4314,
  36028. bottom: 16/4560
  36029. }
  36030. },
  36031. frontAlt: {
  36032. height: math.unit(8, "feet"),
  36033. weight: math.unit(300, "lb"),
  36034. name: "Front (Alt)",
  36035. image: {
  36036. source: "./media/characters/galeboomer/front-alt.svg",
  36037. extra: 4458/4228,
  36038. bottom: 68/4526
  36039. }
  36040. },
  36041. maw: {
  36042. height: math.unit(1.2, "feet"),
  36043. name: "Maw",
  36044. image: {
  36045. source: "./media/characters/galeboomer/maw.svg"
  36046. }
  36047. },
  36048. },
  36049. [
  36050. {
  36051. name: "Normal",
  36052. height: math.unit(8, "feet"),
  36053. default: true
  36054. },
  36055. ]
  36056. ))
  36057. characterMakers.push(() => makeCharacter(
  36058. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36059. {
  36060. front: {
  36061. height: math.unit(5 + 9/12, "feet"),
  36062. weight: math.unit(120, "lb"),
  36063. name: "Front",
  36064. image: {
  36065. source: "./media/characters/chyr/front.svg",
  36066. extra: 1323/1254,
  36067. bottom: 63/1386
  36068. }
  36069. },
  36070. back: {
  36071. height: math.unit(5 + 9/12, "feet"),
  36072. weight: math.unit(120, "lb"),
  36073. name: "Back",
  36074. image: {
  36075. source: "./media/characters/chyr/back.svg",
  36076. extra: 1323/1252,
  36077. bottom: 48/1371
  36078. }
  36079. },
  36080. },
  36081. [
  36082. {
  36083. name: "Normal",
  36084. height: math.unit(5 + 9/12, "feet"),
  36085. default: true
  36086. },
  36087. ]
  36088. ))
  36089. characterMakers.push(() => makeCharacter(
  36090. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36091. {
  36092. front: {
  36093. height: math.unit(7, "feet"),
  36094. weight: math.unit(310, "lb"),
  36095. name: "Front",
  36096. image: {
  36097. source: "./media/characters/solarus/front.svg",
  36098. extra: 2415/2021,
  36099. bottom: 103/2518
  36100. }
  36101. },
  36102. back: {
  36103. height: math.unit(7, "feet"),
  36104. weight: math.unit(310, "lb"),
  36105. name: "Back",
  36106. image: {
  36107. source: "./media/characters/solarus/back.svg",
  36108. extra: 2463/2089,
  36109. bottom: 79/2542
  36110. }
  36111. },
  36112. },
  36113. [
  36114. {
  36115. name: "Normal",
  36116. height: math.unit(7, "feet"),
  36117. default: true
  36118. },
  36119. ]
  36120. ))
  36121. characterMakers.push(() => makeCharacter(
  36122. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36123. {
  36124. front: {
  36125. height: math.unit(16, "feet"),
  36126. name: "Front",
  36127. image: {
  36128. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36129. extra: 1844/1780,
  36130. bottom: 58/1902
  36131. }
  36132. },
  36133. winterCoat: {
  36134. height: math.unit(16, "feet"),
  36135. name: "Winter Coat",
  36136. image: {
  36137. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36138. extra: 1807/1775,
  36139. bottom: 69/1876
  36140. }
  36141. },
  36142. },
  36143. [
  36144. {
  36145. name: "Normal",
  36146. height: math.unit(16, "feet"),
  36147. default: true
  36148. },
  36149. {
  36150. name: "Chicago Size",
  36151. height: math.unit(560, "feet")
  36152. },
  36153. ]
  36154. ))
  36155. characterMakers.push(() => makeCharacter(
  36156. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36157. {
  36158. front: {
  36159. height: math.unit(11 + 6/12, "feet"),
  36160. weight: math.unit(1366, "lb"),
  36161. name: "Front",
  36162. image: {
  36163. source: "./media/characters/lexor/front.svg",
  36164. extra: 1560/1481,
  36165. bottom: 211/1771
  36166. }
  36167. },
  36168. back: {
  36169. height: math.unit(11 + 6/12, "feet"),
  36170. weight: math.unit(1366, "lb"),
  36171. name: "Back",
  36172. image: {
  36173. source: "./media/characters/lexor/back.svg",
  36174. extra: 1614/1533,
  36175. bottom: 76/1690
  36176. }
  36177. },
  36178. maw: {
  36179. height: math.unit(3, "feet"),
  36180. name: "Maw",
  36181. image: {
  36182. source: "./media/characters/lexor/maw.svg"
  36183. }
  36184. },
  36185. dick: {
  36186. height: math.unit(2.59, "feet"),
  36187. name: "Dick",
  36188. image: {
  36189. source: "./media/characters/lexor/dick.svg"
  36190. }
  36191. },
  36192. },
  36193. [
  36194. {
  36195. name: "Normal",
  36196. height: math.unit(11 + 6/12, "feet"),
  36197. default: true
  36198. },
  36199. ]
  36200. ))
  36201. characterMakers.push(() => makeCharacter(
  36202. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36203. {
  36204. front: {
  36205. height: math.unit(5 + 8/12, "feet"),
  36206. name: "Front",
  36207. image: {
  36208. source: "./media/characters/magnum/front.svg",
  36209. extra: 942/855,
  36210. bottom: 26/968
  36211. }
  36212. },
  36213. },
  36214. [
  36215. {
  36216. name: "Normal",
  36217. height: math.unit(5 + 8/12, "feet"),
  36218. default: true
  36219. },
  36220. ]
  36221. ))
  36222. characterMakers.push(() => makeCharacter(
  36223. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36224. {
  36225. front: {
  36226. height: math.unit(18 + 4/12, "feet"),
  36227. weight: math.unit(1500, "kg"),
  36228. name: "Front",
  36229. image: {
  36230. source: "./media/characters/solas-sharpsman/front.svg",
  36231. extra: 1698/1589,
  36232. bottom: 0/1698
  36233. }
  36234. },
  36235. },
  36236. [
  36237. {
  36238. name: "Normal",
  36239. height: math.unit(18 + 4/12, "feet"),
  36240. default: true
  36241. },
  36242. ]
  36243. ))
  36244. characterMakers.push(() => makeCharacter(
  36245. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36246. {
  36247. front: {
  36248. height: math.unit(5 + 5/12, "feet"),
  36249. weight: math.unit(180, "lb"),
  36250. name: "Front",
  36251. image: {
  36252. source: "./media/characters/october/front.svg",
  36253. extra: 1800/1650,
  36254. bottom: 0/1800
  36255. }
  36256. },
  36257. frontNsfw: {
  36258. height: math.unit(5 + 5/12, "feet"),
  36259. weight: math.unit(180, "lb"),
  36260. name: "Front (NSFW)",
  36261. image: {
  36262. source: "./media/characters/october/front-nsfw.svg",
  36263. extra: 1392/1307,
  36264. bottom: 42/1434
  36265. }
  36266. },
  36267. },
  36268. [
  36269. {
  36270. name: "Normal",
  36271. height: math.unit(5 + 5/12, "feet"),
  36272. default: true
  36273. },
  36274. ]
  36275. ))
  36276. characterMakers.push(() => makeCharacter(
  36277. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36278. {
  36279. front: {
  36280. height: math.unit(8 + 6/12, "feet"),
  36281. name: "Front",
  36282. image: {
  36283. source: "./media/characters/essynkardi/front.svg",
  36284. extra: 1914/1846,
  36285. bottom: 22/1936
  36286. }
  36287. },
  36288. },
  36289. [
  36290. {
  36291. name: "Normal",
  36292. height: math.unit(8 + 6/12, "feet"),
  36293. default: true
  36294. },
  36295. ]
  36296. ))
  36297. characterMakers.push(() => makeCharacter(
  36298. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36299. {
  36300. front: {
  36301. height: math.unit(6 + 6/12, "feet"),
  36302. weight: math.unit(7, "lb"),
  36303. name: "Front",
  36304. image: {
  36305. source: "./media/characters/icky/front.svg",
  36306. extra: 813/782,
  36307. bottom: 66/879
  36308. }
  36309. },
  36310. back: {
  36311. height: math.unit(6 + 6/12, "feet"),
  36312. weight: math.unit(7, "lb"),
  36313. name: "Back",
  36314. image: {
  36315. source: "./media/characters/icky/back.svg",
  36316. extra: 754/735,
  36317. bottom: 56/810
  36318. }
  36319. },
  36320. },
  36321. [
  36322. {
  36323. name: "Normal",
  36324. height: math.unit(6 + 6/12, "feet"),
  36325. default: true
  36326. },
  36327. ]
  36328. ))
  36329. characterMakers.push(() => makeCharacter(
  36330. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36331. {
  36332. front: {
  36333. height: math.unit(15, "feet"),
  36334. name: "Front",
  36335. image: {
  36336. source: "./media/characters/rojas/front.svg",
  36337. extra: 1462/1408,
  36338. bottom: 95/1557
  36339. }
  36340. },
  36341. back: {
  36342. height: math.unit(15, "feet"),
  36343. name: "Back",
  36344. image: {
  36345. source: "./media/characters/rojas/back.svg",
  36346. extra: 1023/954,
  36347. bottom: 28/1051
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Normal",
  36354. height: math.unit(15, "feet"),
  36355. default: true
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36361. {
  36362. frontHuman: {
  36363. height: math.unit(5 + 7/12, "feet"),
  36364. name: "Front (Human)",
  36365. image: {
  36366. source: "./media/characters/alek-dryagan/front-human.svg",
  36367. extra: 1687/1667,
  36368. bottom: 69/1756
  36369. }
  36370. },
  36371. backHuman: {
  36372. height: math.unit(5 + 7/12, "feet"),
  36373. name: "Back (Human)",
  36374. image: {
  36375. source: "./media/characters/alek-dryagan/back-human.svg",
  36376. extra: 1670/1649,
  36377. bottom: 65/1735
  36378. }
  36379. },
  36380. frontDemi: {
  36381. height: math.unit(65, "feet"),
  36382. name: "Front (Demi)",
  36383. image: {
  36384. source: "./media/characters/alek-dryagan/front-demi.svg",
  36385. extra: 1669/1642,
  36386. bottom: 49/1718
  36387. }
  36388. },
  36389. backDemi: {
  36390. height: math.unit(65, "feet"),
  36391. name: "Back (Demi)",
  36392. image: {
  36393. source: "./media/characters/alek-dryagan/back-demi.svg",
  36394. extra: 1658/1637,
  36395. bottom: 40/1698
  36396. }
  36397. },
  36398. mawHuman: {
  36399. height: math.unit(0.3, "feet"),
  36400. name: "Maw (Human)",
  36401. image: {
  36402. source: "./media/characters/alek-dryagan/maw-human.svg"
  36403. }
  36404. },
  36405. mawDemi: {
  36406. height: math.unit(3.8, "feet"),
  36407. name: "Maw (Demi)",
  36408. image: {
  36409. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36410. }
  36411. },
  36412. },
  36413. [
  36414. {
  36415. name: "Normal",
  36416. height: math.unit(5 + 7/12, "feet"),
  36417. default: true
  36418. },
  36419. ]
  36420. ))
  36421. characterMakers.push(() => makeCharacter(
  36422. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36423. {
  36424. frontHuman: {
  36425. height: math.unit(5 + 2/12, "feet"),
  36426. name: "Front (Human)",
  36427. image: {
  36428. source: "./media/characters/gen/front-human.svg",
  36429. extra: 1627/1538,
  36430. bottom: 71/1698
  36431. }
  36432. },
  36433. backHuman: {
  36434. height: math.unit(5 + 2/12, "feet"),
  36435. name: "Back (Human)",
  36436. image: {
  36437. source: "./media/characters/gen/back-human.svg",
  36438. extra: 1638/1548,
  36439. bottom: 69/1707
  36440. }
  36441. },
  36442. frontDemi: {
  36443. height: math.unit(5 + 2/12, "feet"),
  36444. name: "Front (Demi)",
  36445. image: {
  36446. source: "./media/characters/gen/front-demi.svg",
  36447. extra: 1627/1538,
  36448. bottom: 71/1698
  36449. }
  36450. },
  36451. backDemi: {
  36452. height: math.unit(5 + 2/12, "feet"),
  36453. name: "Back (Demi)",
  36454. image: {
  36455. source: "./media/characters/gen/back-demi.svg",
  36456. extra: 1638/1548,
  36457. bottom: 69/1707
  36458. }
  36459. },
  36460. },
  36461. [
  36462. {
  36463. name: "Normal",
  36464. height: math.unit(5 + 2/12, "feet"),
  36465. default: true
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36471. {
  36472. frontImp: {
  36473. height: math.unit(1 + 11/12, "feet"),
  36474. name: "Front (Imp)",
  36475. image: {
  36476. source: "./media/characters/max-kobold/front-imp.svg",
  36477. extra: 1238/1134,
  36478. bottom: 81/1319
  36479. }
  36480. },
  36481. backImp: {
  36482. height: math.unit(1 + 11/12, "feet"),
  36483. name: "Back (Imp)",
  36484. image: {
  36485. source: "./media/characters/max-kobold/back-imp.svg",
  36486. extra: 1334/1175,
  36487. bottom: 34/1368
  36488. }
  36489. },
  36490. frontDemi: {
  36491. height: math.unit(5 + 9/12, "feet"),
  36492. name: "Front (Demi)",
  36493. image: {
  36494. source: "./media/characters/max-kobold/front-demi.svg",
  36495. extra: 1715/1685,
  36496. bottom: 54/1769
  36497. }
  36498. },
  36499. backDemi: {
  36500. height: math.unit(5 + 9/12, "feet"),
  36501. name: "Back (Demi)",
  36502. image: {
  36503. source: "./media/characters/max-kobold/back-demi.svg",
  36504. extra: 1752/1729,
  36505. bottom: 41/1793
  36506. }
  36507. },
  36508. handImp: {
  36509. height: math.unit(0.45, "feet"),
  36510. name: "Hand (Imp)",
  36511. image: {
  36512. source: "./media/characters/max-kobold/hand.svg"
  36513. }
  36514. },
  36515. pawImp: {
  36516. height: math.unit(0.46, "feet"),
  36517. name: "Paw (Imp)",
  36518. image: {
  36519. source: "./media/characters/max-kobold/paw.svg"
  36520. }
  36521. },
  36522. handDemi: {
  36523. height: math.unit(0.80, "feet"),
  36524. name: "Hand (Demi)",
  36525. image: {
  36526. source: "./media/characters/max-kobold/hand.svg"
  36527. }
  36528. },
  36529. pawDemi: {
  36530. height: math.unit(1.1, "feet"),
  36531. name: "Paw (Demi)",
  36532. image: {
  36533. source: "./media/characters/max-kobold/paw.svg"
  36534. }
  36535. },
  36536. headImp: {
  36537. height: math.unit(1.33, "feet"),
  36538. name: "Head (Imp)",
  36539. image: {
  36540. source: "./media/characters/max-kobold/head-imp.svg"
  36541. }
  36542. },
  36543. mawImp: {
  36544. height: math.unit(0.75, "feet"),
  36545. name: "Maw (Imp)",
  36546. image: {
  36547. source: "./media/characters/max-kobold/maw-imp.svg"
  36548. }
  36549. },
  36550. mawDemi: {
  36551. height: math.unit(0.42, "feet"),
  36552. name: "Maw (Demi)",
  36553. image: {
  36554. source: "./media/characters/max-kobold/maw-demi.svg"
  36555. }
  36556. },
  36557. },
  36558. [
  36559. {
  36560. name: "Normal",
  36561. height: math.unit(1 + 11/12, "feet"),
  36562. default: true
  36563. },
  36564. ]
  36565. ))
  36566. characterMakers.push(() => makeCharacter(
  36567. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36568. {
  36569. front: {
  36570. height: math.unit(7 + 5/12, "feet"),
  36571. name: "Front",
  36572. image: {
  36573. source: "./media/characters/carbon/front.svg",
  36574. extra: 1754/1689,
  36575. bottom: 65/1819
  36576. }
  36577. },
  36578. back: {
  36579. height: math.unit(7 + 5/12, "feet"),
  36580. name: "Back",
  36581. image: {
  36582. source: "./media/characters/carbon/back.svg",
  36583. extra: 1762/1695,
  36584. bottom: 24/1786
  36585. }
  36586. },
  36587. frontGigantamax: {
  36588. height: math.unit(150, "feet"),
  36589. name: "Front (Gigantamax)",
  36590. image: {
  36591. source: "./media/characters/carbon/front-gigantamax.svg",
  36592. extra: 1826/1669,
  36593. bottom: 59/1885
  36594. }
  36595. },
  36596. backGigantamax: {
  36597. height: math.unit(150, "feet"),
  36598. name: "Back (Gigantamax)",
  36599. image: {
  36600. source: "./media/characters/carbon/back-gigantamax.svg",
  36601. extra: 1796/1653,
  36602. bottom: 53/1849
  36603. }
  36604. },
  36605. maw: {
  36606. height: math.unit(0.48, "feet"),
  36607. name: "Maw",
  36608. image: {
  36609. source: "./media/characters/carbon/maw.svg"
  36610. }
  36611. },
  36612. mawGigantamax: {
  36613. height: math.unit(7.5, "feet"),
  36614. name: "Maw (Gigantamax)",
  36615. image: {
  36616. source: "./media/characters/carbon/maw-gigantamax.svg"
  36617. }
  36618. },
  36619. },
  36620. [
  36621. {
  36622. name: "Normal",
  36623. height: math.unit(7 + 5/12, "feet"),
  36624. default: true
  36625. },
  36626. ]
  36627. ))
  36628. characterMakers.push(() => makeCharacter(
  36629. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36630. {
  36631. front: {
  36632. height: math.unit(6, "feet"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/maverick/front.svg",
  36636. extra: 1672/1661,
  36637. bottom: 85/1757
  36638. }
  36639. },
  36640. back: {
  36641. height: math.unit(6, "feet"),
  36642. name: "Back",
  36643. image: {
  36644. source: "./media/characters/maverick/back.svg",
  36645. extra: 1642/1631,
  36646. bottom: 38/1680
  36647. }
  36648. },
  36649. },
  36650. [
  36651. {
  36652. name: "Normal",
  36653. height: math.unit(6, "feet"),
  36654. default: true
  36655. },
  36656. ]
  36657. ))
  36658. characterMakers.push(() => makeCharacter(
  36659. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36660. {
  36661. front: {
  36662. height: math.unit(15, "feet"),
  36663. weight: math.unit(615, "lb"),
  36664. name: "Front",
  36665. image: {
  36666. source: "./media/characters/grockle/front.svg",
  36667. extra: 1535/1427,
  36668. bottom: 56/1591
  36669. }
  36670. },
  36671. },
  36672. [
  36673. {
  36674. name: "Normal",
  36675. height: math.unit(15, "feet"),
  36676. default: true
  36677. },
  36678. {
  36679. name: "Large",
  36680. height: math.unit(150, "feet")
  36681. },
  36682. {
  36683. name: "Macro",
  36684. height: math.unit(1876, "feet")
  36685. },
  36686. {
  36687. name: "Mega Macro",
  36688. height: math.unit(121940, "feet")
  36689. },
  36690. {
  36691. name: "Giga Macro",
  36692. height: math.unit(750, "km")
  36693. },
  36694. {
  36695. name: "Tera Macro",
  36696. height: math.unit(750000, "km")
  36697. },
  36698. {
  36699. name: "Galactic",
  36700. height: math.unit(1.4e5, "km")
  36701. },
  36702. {
  36703. name: "Godlike",
  36704. height: math.unit(9.8e280, "galaxies")
  36705. },
  36706. ]
  36707. ))
  36708. characterMakers.push(() => makeCharacter(
  36709. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36710. {
  36711. front: {
  36712. height: math.unit(11, "meters"),
  36713. weight: math.unit(20, "tonnes"),
  36714. name: "Front",
  36715. image: {
  36716. source: "./media/characters/alistair/front.svg",
  36717. extra: 1265/1009,
  36718. bottom: 93/1358
  36719. }
  36720. },
  36721. },
  36722. [
  36723. {
  36724. name: "Normal",
  36725. height: math.unit(11, "meters"),
  36726. default: true
  36727. },
  36728. ]
  36729. ))
  36730. characterMakers.push(() => makeCharacter(
  36731. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36732. {
  36733. front: {
  36734. height: math.unit(5 + 8/12, "feet"),
  36735. name: "Front",
  36736. image: {
  36737. source: "./media/characters/haruka/front.svg",
  36738. extra: 2012/1952,
  36739. bottom: 0/2012
  36740. }
  36741. },
  36742. },
  36743. [
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(5 + 8/12, "feet"),
  36747. default: true
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36753. {
  36754. back: {
  36755. height: math.unit(9, "feet"),
  36756. name: "Back",
  36757. image: {
  36758. source: "./media/characters/vivian-sylveon/back.svg",
  36759. extra: 1853/1714,
  36760. bottom: 0/1853
  36761. }
  36762. },
  36763. },
  36764. [
  36765. {
  36766. name: "Normal",
  36767. height: math.unit(9, "feet"),
  36768. default: true
  36769. },
  36770. {
  36771. name: "Macro",
  36772. height: math.unit(500, "feet")
  36773. },
  36774. {
  36775. name: "Megamacro",
  36776. height: math.unit(600, "miles")
  36777. },
  36778. {
  36779. name: "Gigamacro",
  36780. height: math.unit(30000, "miles")
  36781. },
  36782. ]
  36783. ))
  36784. characterMakers.push(() => makeCharacter(
  36785. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36786. {
  36787. anthro: {
  36788. height: math.unit(5 + 10/12, "feet"),
  36789. weight: math.unit(100, "lb"),
  36790. name: "Anthro",
  36791. image: {
  36792. source: "./media/characters/daiki/anthro.svg",
  36793. extra: 1115/1027,
  36794. bottom: 69/1184
  36795. }
  36796. },
  36797. feral: {
  36798. height: math.unit(200, "feet"),
  36799. name: "Feral",
  36800. image: {
  36801. source: "./media/characters/daiki/feral.svg",
  36802. extra: 1256/313,
  36803. bottom: 39/1295
  36804. }
  36805. },
  36806. feralHead: {
  36807. height: math.unit(171, "feet"),
  36808. name: "Feral Head",
  36809. image: {
  36810. source: "./media/characters/daiki/feral-head.svg"
  36811. }
  36812. },
  36813. manaDragon: {
  36814. height: math.unit(170, "meters"),
  36815. name: "Mana-dragon",
  36816. image: {
  36817. source: "./media/characters/daiki/mana-dragon.svg",
  36818. extra: 763/420,
  36819. bottom: 97/860
  36820. }
  36821. },
  36822. },
  36823. [
  36824. {
  36825. name: "Normal",
  36826. height: math.unit(5 + 10/12, "feet"),
  36827. default: true
  36828. },
  36829. ]
  36830. ))
  36831. characterMakers.push(() => makeCharacter(
  36832. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36833. {
  36834. fullyEquippedFront: {
  36835. height: math.unit(3 + 1/12, "feet"),
  36836. weight: math.unit(24, "lb"),
  36837. name: "Fully Equipped (Front)",
  36838. image: {
  36839. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36840. extra: 687/605,
  36841. bottom: 18/705
  36842. }
  36843. },
  36844. fullyEquippedBack: {
  36845. height: math.unit(3 + 1/12, "feet"),
  36846. weight: math.unit(24, "lb"),
  36847. name: "Fully Equipped (Back)",
  36848. image: {
  36849. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36850. extra: 689/590,
  36851. bottom: 18/707
  36852. }
  36853. },
  36854. dailyWear: {
  36855. height: math.unit(3 + 1/12, "feet"),
  36856. weight: math.unit(24, "lb"),
  36857. name: "Daily Wear",
  36858. image: {
  36859. source: "./media/characters/tea-spot/daily-wear.svg",
  36860. extra: 701/620,
  36861. bottom: 21/722
  36862. }
  36863. },
  36864. maidWork: {
  36865. height: math.unit(3 + 1/12, "feet"),
  36866. weight: math.unit(24, "lb"),
  36867. name: "Maid Work",
  36868. image: {
  36869. source: "./media/characters/tea-spot/maid-work.svg",
  36870. extra: 693/609,
  36871. bottom: 15/708
  36872. }
  36873. },
  36874. },
  36875. [
  36876. {
  36877. name: "Normal",
  36878. height: math.unit(3 + 1/12, "feet"),
  36879. default: true
  36880. },
  36881. ]
  36882. ))
  36883. characterMakers.push(() => makeCharacter(
  36884. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36885. {
  36886. front: {
  36887. height: math.unit(175, "cm"),
  36888. weight: math.unit(75, "kg"),
  36889. name: "Front",
  36890. image: {
  36891. source: "./media/characters/chee/front.svg",
  36892. extra: 1796/1740,
  36893. bottom: 40/1836
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Micro-Micro",
  36900. height: math.unit(1, "nm")
  36901. },
  36902. {
  36903. name: "Micro-erst",
  36904. height: math.unit(1, "micrometer")
  36905. },
  36906. {
  36907. name: "Micro-er",
  36908. height: math.unit(1, "cm")
  36909. },
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(175, "cm"),
  36913. default: true
  36914. },
  36915. {
  36916. name: "Macro",
  36917. height: math.unit(100, "m")
  36918. },
  36919. {
  36920. name: "Macro-er",
  36921. height: math.unit(1, "km")
  36922. },
  36923. {
  36924. name: "Macro-erst",
  36925. height: math.unit(10, "km")
  36926. },
  36927. {
  36928. name: "Macro-Macro",
  36929. height: math.unit(100, "km")
  36930. },
  36931. ]
  36932. ))
  36933. characterMakers.push(() => makeCharacter(
  36934. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36935. {
  36936. front: {
  36937. height: math.unit(11 + 9/12, "feet"),
  36938. weight: math.unit(935, "lb"),
  36939. name: "Front",
  36940. image: {
  36941. source: "./media/characters/kingsley/front.svg",
  36942. extra: 1803/1674,
  36943. bottom: 127/1930
  36944. }
  36945. },
  36946. frontNude: {
  36947. height: math.unit(11 + 9/12, "feet"),
  36948. weight: math.unit(935, "lb"),
  36949. name: "Front (Nude)",
  36950. image: {
  36951. source: "./media/characters/kingsley/front-nude.svg",
  36952. extra: 1803/1674,
  36953. bottom: 127/1930
  36954. }
  36955. },
  36956. },
  36957. [
  36958. {
  36959. name: "Normal",
  36960. height: math.unit(11 + 9/12, "feet"),
  36961. default: true
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36967. {
  36968. side: {
  36969. height: math.unit(9, "feet"),
  36970. name: "Side",
  36971. image: {
  36972. source: "./media/characters/rymel/side.svg",
  36973. extra: 792/469,
  36974. bottom: 121/913
  36975. }
  36976. },
  36977. maw: {
  36978. height: math.unit(2.4, "meters"),
  36979. name: "Maw",
  36980. image: {
  36981. source: "./media/characters/rymel/maw.svg"
  36982. }
  36983. },
  36984. },
  36985. [
  36986. {
  36987. name: "House Drake",
  36988. height: math.unit(2, "feet")
  36989. },
  36990. {
  36991. name: "Reduced",
  36992. height: math.unit(4.5, "feet")
  36993. },
  36994. {
  36995. name: "Normal",
  36996. height: math.unit(9, "feet"),
  36997. default: true
  36998. },
  36999. ]
  37000. ))
  37001. characterMakers.push(() => makeCharacter(
  37002. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37003. {
  37004. front: {
  37005. height: math.unit(1.74, "meters"),
  37006. weight: math.unit(55, "kg"),
  37007. name: "Front",
  37008. image: {
  37009. source: "./media/characters/rubus/front.svg",
  37010. extra: 1894/1742,
  37011. bottom: 44/1938
  37012. }
  37013. },
  37014. },
  37015. [
  37016. {
  37017. name: "Normal",
  37018. height: math.unit(1.74, "meters"),
  37019. default: true
  37020. },
  37021. ]
  37022. ))
  37023. characterMakers.push(() => makeCharacter(
  37024. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37025. {
  37026. front: {
  37027. height: math.unit(5 + 2/12, "feet"),
  37028. weight: math.unit(112, "lb"),
  37029. name: "Front",
  37030. image: {
  37031. source: "./media/characters/cassie-kingston/front.svg",
  37032. extra: 1438/1390,
  37033. bottom: 47/1485
  37034. }
  37035. },
  37036. },
  37037. [
  37038. {
  37039. name: "Normal",
  37040. height: math.unit(5 + 2/12, "feet"),
  37041. default: true
  37042. },
  37043. {
  37044. name: "Macro",
  37045. height: math.unit(128, "feet")
  37046. },
  37047. {
  37048. name: "Megamacro",
  37049. height: math.unit(2.56, "miles")
  37050. },
  37051. ]
  37052. ))
  37053. characterMakers.push(() => makeCharacter(
  37054. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37055. {
  37056. front: {
  37057. height: math.unit(7, "feet"),
  37058. name: "Front",
  37059. image: {
  37060. source: "./media/characters/fox/front.svg",
  37061. extra: 1798/1703,
  37062. bottom: 55/1853
  37063. }
  37064. },
  37065. back: {
  37066. height: math.unit(7, "feet"),
  37067. name: "Back",
  37068. image: {
  37069. source: "./media/characters/fox/back.svg",
  37070. extra: 1748/1649,
  37071. bottom: 32/1780
  37072. }
  37073. },
  37074. head: {
  37075. height: math.unit(1.95, "feet"),
  37076. name: "Head",
  37077. image: {
  37078. source: "./media/characters/fox/head.svg"
  37079. }
  37080. },
  37081. dick: {
  37082. height: math.unit(1.33, "feet"),
  37083. name: "Dick",
  37084. image: {
  37085. source: "./media/characters/fox/dick.svg"
  37086. }
  37087. },
  37088. foot: {
  37089. height: math.unit(1, "feet"),
  37090. name: "Foot",
  37091. image: {
  37092. source: "./media/characters/fox/foot.svg"
  37093. }
  37094. },
  37095. paw: {
  37096. height: math.unit(0.92, "feet"),
  37097. name: "Paw",
  37098. image: {
  37099. source: "./media/characters/fox/paw.svg"
  37100. }
  37101. },
  37102. },
  37103. [
  37104. {
  37105. name: "Small",
  37106. height: math.unit(3, "inches")
  37107. },
  37108. {
  37109. name: "\"Realistic\"",
  37110. height: math.unit(7, "feet")
  37111. },
  37112. {
  37113. name: "Normal",
  37114. height: math.unit(150, "feet"),
  37115. default: true
  37116. },
  37117. {
  37118. name: "BIG",
  37119. height: math.unit(1200, "feet")
  37120. },
  37121. {
  37122. name: "👀",
  37123. height: math.unit(5, "miles")
  37124. },
  37125. {
  37126. name: "👀👀👀",
  37127. height: math.unit(64, "miles")
  37128. },
  37129. ]
  37130. ))
  37131. characterMakers.push(() => makeCharacter(
  37132. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37133. {
  37134. front: {
  37135. height: math.unit(625, "feet"),
  37136. name: "Front",
  37137. image: {
  37138. source: "./media/characters/asonja-rossa/front.svg",
  37139. extra: 1833/1686,
  37140. bottom: 24/1857
  37141. }
  37142. },
  37143. back: {
  37144. height: math.unit(625, "feet"),
  37145. name: "Back",
  37146. image: {
  37147. source: "./media/characters/asonja-rossa/back.svg",
  37148. extra: 1852/1753,
  37149. bottom: 26/1878
  37150. }
  37151. },
  37152. },
  37153. [
  37154. {
  37155. name: "Macro",
  37156. height: math.unit(625, "feet"),
  37157. default: true
  37158. },
  37159. ]
  37160. ))
  37161. characterMakers.push(() => makeCharacter(
  37162. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37163. {
  37164. side: {
  37165. height: math.unit(8, "feet"),
  37166. name: "Side",
  37167. image: {
  37168. source: "./media/characters/rezukii/side.svg",
  37169. extra: 979/542,
  37170. bottom: 87/1066
  37171. }
  37172. },
  37173. sitting: {
  37174. height: math.unit(14.6, "feet"),
  37175. name: "Sitting",
  37176. image: {
  37177. source: "./media/characters/rezukii/sitting.svg",
  37178. extra: 1023/813,
  37179. bottom: 45/1068
  37180. }
  37181. },
  37182. },
  37183. [
  37184. {
  37185. name: "Tiny",
  37186. height: math.unit(2, "feet")
  37187. },
  37188. {
  37189. name: "Smol",
  37190. height: math.unit(4, "feet")
  37191. },
  37192. {
  37193. name: "Normal",
  37194. height: math.unit(8, "feet"),
  37195. default: true
  37196. },
  37197. {
  37198. name: "Big",
  37199. height: math.unit(12, "feet")
  37200. },
  37201. {
  37202. name: "Macro",
  37203. height: math.unit(30, "feet")
  37204. },
  37205. ]
  37206. ))
  37207. characterMakers.push(() => makeCharacter(
  37208. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37209. {
  37210. front: {
  37211. height: math.unit(14, "feet"),
  37212. weight: math.unit(9.5, "tonnes"),
  37213. name: "Front",
  37214. image: {
  37215. source: "./media/characters/dawnheart/front.svg",
  37216. extra: 2792/2675,
  37217. bottom: 64/2856
  37218. }
  37219. },
  37220. },
  37221. [
  37222. {
  37223. name: "Normal",
  37224. height: math.unit(14, "feet"),
  37225. default: true
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37231. {
  37232. front: {
  37233. height: math.unit(1.7, "m"),
  37234. name: "Front",
  37235. image: {
  37236. source: "./media/characters/gladi/front.svg",
  37237. extra: 1460/1362,
  37238. bottom: 19/1479
  37239. }
  37240. },
  37241. back: {
  37242. height: math.unit(1.7, "m"),
  37243. name: "Back",
  37244. image: {
  37245. source: "./media/characters/gladi/back.svg",
  37246. extra: 1459/1357,
  37247. bottom: 12/1471
  37248. }
  37249. },
  37250. feral: {
  37251. height: math.unit(2.05, "m"),
  37252. name: "Feral",
  37253. image: {
  37254. source: "./media/characters/gladi/feral.svg",
  37255. extra: 821/557,
  37256. bottom: 91/912
  37257. }
  37258. },
  37259. },
  37260. [
  37261. {
  37262. name: "Shortest",
  37263. height: math.unit(70, "cm")
  37264. },
  37265. {
  37266. name: "Normal",
  37267. height: math.unit(1.7, "m")
  37268. },
  37269. {
  37270. name: "Macro",
  37271. height: math.unit(10, "m"),
  37272. default: true
  37273. },
  37274. {
  37275. name: "Tallest",
  37276. height: math.unit(200, "m")
  37277. },
  37278. ]
  37279. ))
  37280. characterMakers.push(() => makeCharacter(
  37281. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37282. {
  37283. front: {
  37284. height: math.unit(5 + 7/12, "feet"),
  37285. weight: math.unit(2, "tons"),
  37286. name: "Front",
  37287. image: {
  37288. source: "./media/characters/erdno/front.svg",
  37289. extra: 1234/1129,
  37290. bottom: 35/1269
  37291. }
  37292. },
  37293. angled: {
  37294. height: math.unit(5 + 7/12, "feet"),
  37295. weight: math.unit(2, "tons"),
  37296. name: "Angled",
  37297. image: {
  37298. source: "./media/characters/erdno/angled.svg",
  37299. extra: 1185/1139,
  37300. bottom: 36/1221
  37301. }
  37302. },
  37303. side: {
  37304. height: math.unit(5 + 7/12, "feet"),
  37305. weight: math.unit(2, "tons"),
  37306. name: "Side",
  37307. image: {
  37308. source: "./media/characters/erdno/side.svg",
  37309. extra: 1191/1144,
  37310. bottom: 40/1231
  37311. }
  37312. },
  37313. back: {
  37314. height: math.unit(5 + 7/12, "feet"),
  37315. weight: math.unit(2, "tons"),
  37316. name: "Back",
  37317. image: {
  37318. source: "./media/characters/erdno/back.svg",
  37319. extra: 1202/1146,
  37320. bottom: 17/1219
  37321. }
  37322. },
  37323. frontNsfw: {
  37324. height: math.unit(5 + 7/12, "feet"),
  37325. weight: math.unit(2, "tons"),
  37326. name: "Front (NSFW)",
  37327. image: {
  37328. source: "./media/characters/erdno/front-nsfw.svg",
  37329. extra: 1234/1129,
  37330. bottom: 35/1269
  37331. }
  37332. },
  37333. angledNsfw: {
  37334. height: math.unit(5 + 7/12, "feet"),
  37335. weight: math.unit(2, "tons"),
  37336. name: "Angled (NSFW)",
  37337. image: {
  37338. source: "./media/characters/erdno/angled-nsfw.svg",
  37339. extra: 1185/1139,
  37340. bottom: 36/1221
  37341. }
  37342. },
  37343. sideNsfw: {
  37344. height: math.unit(5 + 7/12, "feet"),
  37345. weight: math.unit(2, "tons"),
  37346. name: "Side (NSFW)",
  37347. image: {
  37348. source: "./media/characters/erdno/side-nsfw.svg",
  37349. extra: 1191/1144,
  37350. bottom: 40/1231
  37351. }
  37352. },
  37353. backNsfw: {
  37354. height: math.unit(5 + 7/12, "feet"),
  37355. weight: math.unit(2, "tons"),
  37356. name: "Back (NSFW)",
  37357. image: {
  37358. source: "./media/characters/erdno/back-nsfw.svg",
  37359. extra: 1202/1146,
  37360. bottom: 17/1219
  37361. }
  37362. },
  37363. frontHyper: {
  37364. height: math.unit(5 + 7/12, "feet"),
  37365. weight: math.unit(2, "tons"),
  37366. name: "Front (Hyper)",
  37367. image: {
  37368. source: "./media/characters/erdno/front-hyper.svg",
  37369. extra: 1298/1136,
  37370. bottom: 35/1333
  37371. }
  37372. },
  37373. },
  37374. [
  37375. {
  37376. name: "Normal",
  37377. height: math.unit(5 + 7/12, "feet"),
  37378. default: true
  37379. },
  37380. {
  37381. name: "Big",
  37382. height: math.unit(5.7, "meters")
  37383. },
  37384. {
  37385. name: "Macro",
  37386. height: math.unit(5.7, "kilometers")
  37387. },
  37388. {
  37389. name: "Megamacro",
  37390. height: math.unit(5.7, "earths")
  37391. },
  37392. ]
  37393. ))
  37394. characterMakers.push(() => makeCharacter(
  37395. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37396. {
  37397. front: {
  37398. height: math.unit(5 + 10/12, "feet"),
  37399. weight: math.unit(150, "lb"),
  37400. name: "Front",
  37401. image: {
  37402. source: "./media/characters/jamie/front.svg",
  37403. extra: 1908/1768,
  37404. bottom: 19/1927
  37405. }
  37406. },
  37407. },
  37408. [
  37409. {
  37410. name: "Minimum",
  37411. height: math.unit(2, "cm")
  37412. },
  37413. {
  37414. name: "Micro",
  37415. height: math.unit(3, "inches")
  37416. },
  37417. {
  37418. name: "Normal",
  37419. height: math.unit(5 + 10/12, "feet"),
  37420. default: true
  37421. },
  37422. {
  37423. name: "Macro",
  37424. height: math.unit(150, "feet")
  37425. },
  37426. {
  37427. name: "Megamacro",
  37428. height: math.unit(10000, "m")
  37429. },
  37430. ]
  37431. ))
  37432. characterMakers.push(() => makeCharacter(
  37433. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37434. {
  37435. front: {
  37436. height: math.unit(2, "meters"),
  37437. weight: math.unit(100, "kg"),
  37438. name: "Front",
  37439. image: {
  37440. source: "./media/characters/shiron/front.svg",
  37441. extra: 2103/1985,
  37442. bottom: 98/2201
  37443. }
  37444. },
  37445. back: {
  37446. height: math.unit(2, "meters"),
  37447. weight: math.unit(100, "kg"),
  37448. name: "Back",
  37449. image: {
  37450. source: "./media/characters/shiron/back.svg",
  37451. extra: 2110/2015,
  37452. bottom: 89/2199
  37453. }
  37454. },
  37455. hand: {
  37456. height: math.unit(0.96, "feet"),
  37457. name: "Hand",
  37458. image: {
  37459. source: "./media/characters/shiron/hand.svg"
  37460. }
  37461. },
  37462. foot: {
  37463. height: math.unit(1.464, "feet"),
  37464. name: "Foot",
  37465. image: {
  37466. source: "./media/characters/shiron/foot.svg"
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Normal",
  37473. height: math.unit(2, "meters")
  37474. },
  37475. {
  37476. name: "Macro",
  37477. height: math.unit(500, "meters"),
  37478. default: true
  37479. },
  37480. {
  37481. name: "Megamacro",
  37482. height: math.unit(20, "km")
  37483. },
  37484. ]
  37485. ))
  37486. characterMakers.push(() => makeCharacter(
  37487. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37488. {
  37489. front: {
  37490. height: math.unit(6, "feet"),
  37491. name: "Front",
  37492. image: {
  37493. source: "./media/characters/sam/front.svg",
  37494. extra: 849/826,
  37495. bottom: 19/868
  37496. }
  37497. },
  37498. },
  37499. [
  37500. {
  37501. name: "Normal",
  37502. height: math.unit(6, "feet"),
  37503. default: true
  37504. },
  37505. ]
  37506. ))
  37507. characterMakers.push(() => makeCharacter(
  37508. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37509. {
  37510. front: {
  37511. height: math.unit(8 + 4/12, "feet"),
  37512. weight: math.unit(122, "kg"),
  37513. name: "Front",
  37514. image: {
  37515. source: "./media/characters/namori-kurogawa/front.svg",
  37516. extra: 1894/1576,
  37517. bottom: 34/1928
  37518. }
  37519. },
  37520. },
  37521. [
  37522. {
  37523. name: "Normal",
  37524. height: math.unit(8 + 4/12, "feet"),
  37525. default: true
  37526. },
  37527. ]
  37528. ))
  37529. characterMakers.push(() => makeCharacter(
  37530. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37531. {
  37532. front: {
  37533. height: math.unit(9, "feet"),
  37534. weight: math.unit(621, "lb"),
  37535. name: "Front",
  37536. image: {
  37537. source: "./media/characters/unmru/front.svg",
  37538. extra: 1853/1747,
  37539. bottom: 73/1926
  37540. }
  37541. },
  37542. side: {
  37543. height: math.unit(9, "feet"),
  37544. weight: math.unit(621, "lb"),
  37545. name: "Side",
  37546. image: {
  37547. source: "./media/characters/unmru/side.svg",
  37548. extra: 1781/1671,
  37549. bottom: 127/1908
  37550. }
  37551. },
  37552. back: {
  37553. height: math.unit(9, "feet"),
  37554. weight: math.unit(621, "lb"),
  37555. name: "Back",
  37556. image: {
  37557. source: "./media/characters/unmru/back.svg",
  37558. extra: 1894/1765,
  37559. bottom: 75/1969
  37560. }
  37561. },
  37562. dick: {
  37563. height: math.unit(3, "feet"),
  37564. weight: math.unit(35, "lb"),
  37565. name: "Dick",
  37566. image: {
  37567. source: "./media/characters/unmru/dick.svg"
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Normal",
  37574. height: math.unit(9, "feet")
  37575. },
  37576. {
  37577. name: "Natural",
  37578. height: math.unit(27, "feet"),
  37579. default: true
  37580. },
  37581. {
  37582. name: "Giant",
  37583. height: math.unit(90, "feet")
  37584. },
  37585. {
  37586. name: "Kaiju",
  37587. height: math.unit(270, "feet")
  37588. },
  37589. {
  37590. name: "Macro",
  37591. height: math.unit(900, "feet")
  37592. },
  37593. {
  37594. name: "Macro+",
  37595. height: math.unit(2700, "feet")
  37596. },
  37597. {
  37598. name: "Megamacro",
  37599. height: math.unit(9000, "feet")
  37600. },
  37601. {
  37602. name: "City-Crushing",
  37603. height: math.unit(27000, "feet")
  37604. },
  37605. {
  37606. name: "Mountain-Mashing",
  37607. height: math.unit(90000, "feet")
  37608. },
  37609. {
  37610. name: "Earth-Eclipsing",
  37611. height: math.unit(2.7e8, "feet")
  37612. },
  37613. {
  37614. name: "Sol-Swallowing",
  37615. height: math.unit(9e10, "feet")
  37616. },
  37617. {
  37618. name: "Majoris-Munching",
  37619. height: math.unit(2.7e13, "feet")
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37625. {
  37626. front: {
  37627. height: math.unit(1, "inch"),
  37628. name: "Front",
  37629. image: {
  37630. source: "./media/characters/squeaks-mouse/front.svg",
  37631. extra: 352/308,
  37632. bottom: 25/377
  37633. }
  37634. },
  37635. },
  37636. [
  37637. {
  37638. name: "Micro",
  37639. height: math.unit(1, "inch"),
  37640. default: true
  37641. },
  37642. ]
  37643. ))
  37644. characterMakers.push(() => makeCharacter(
  37645. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37646. {
  37647. side: {
  37648. height: math.unit(35, "feet"),
  37649. name: "Side",
  37650. image: {
  37651. source: "./media/characters/sayko/side.svg",
  37652. extra: 1697/1021,
  37653. bottom: 82/1779
  37654. }
  37655. },
  37656. head: {
  37657. height: math.unit(16, "feet"),
  37658. name: "Head",
  37659. image: {
  37660. source: "./media/characters/sayko/head.svg"
  37661. }
  37662. },
  37663. forepaw: {
  37664. height: math.unit(7.85, "feet"),
  37665. name: "Forepaw",
  37666. image: {
  37667. source: "./media/characters/sayko/forepaw.svg"
  37668. }
  37669. },
  37670. hindpaw: {
  37671. height: math.unit(8.8, "feet"),
  37672. name: "Hindpaw",
  37673. image: {
  37674. source: "./media/characters/sayko/hindpaw.svg"
  37675. }
  37676. },
  37677. },
  37678. [
  37679. {
  37680. name: "Normal",
  37681. height: math.unit(35, "feet"),
  37682. default: true
  37683. },
  37684. {
  37685. name: "Colossus",
  37686. height: math.unit(100, "meters")
  37687. },
  37688. {
  37689. name: "\"Small\" Deity",
  37690. height: math.unit(1, "km")
  37691. },
  37692. {
  37693. name: "\"Large\" Deity",
  37694. height: math.unit(15, "km")
  37695. },
  37696. ]
  37697. ))
  37698. characterMakers.push(() => makeCharacter(
  37699. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37700. {
  37701. front: {
  37702. height: math.unit(6, "feet"),
  37703. weight: math.unit(250, "lb"),
  37704. name: "Front",
  37705. image: {
  37706. source: "./media/characters/mukiro/front.svg",
  37707. extra: 1368/1310,
  37708. bottom: 34/1402
  37709. }
  37710. },
  37711. },
  37712. [
  37713. {
  37714. name: "Normal",
  37715. height: math.unit(6, "feet"),
  37716. default: true
  37717. },
  37718. ]
  37719. ))
  37720. characterMakers.push(() => makeCharacter(
  37721. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37722. {
  37723. front: {
  37724. height: math.unit(12 + 4/12, "feet"),
  37725. name: "Front",
  37726. image: {
  37727. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37728. extra: 1346/1311,
  37729. bottom: 65/1411
  37730. }
  37731. },
  37732. },
  37733. [
  37734. {
  37735. name: "Base",
  37736. height: math.unit(12 + 4/12, "feet"),
  37737. default: true
  37738. },
  37739. {
  37740. name: "Macro",
  37741. height: math.unit(150, "feet")
  37742. },
  37743. {
  37744. name: "Mega",
  37745. height: math.unit(2, "miles")
  37746. },
  37747. {
  37748. name: "Demi God",
  37749. height: math.unit(4, "AU")
  37750. },
  37751. {
  37752. name: "God Size",
  37753. height: math.unit(1, "universe")
  37754. },
  37755. ]
  37756. ))
  37757. characterMakers.push(() => makeCharacter(
  37758. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37759. {
  37760. front: {
  37761. height: math.unit(3 + 3/12, "feet"),
  37762. weight: math.unit(88, "lb"),
  37763. name: "Front",
  37764. image: {
  37765. source: "./media/characters/trey/front.svg",
  37766. extra: 1815/1509,
  37767. bottom: 60/1875
  37768. }
  37769. },
  37770. },
  37771. [
  37772. {
  37773. name: "Normal",
  37774. height: math.unit(3 + 3/12, "feet"),
  37775. default: true
  37776. },
  37777. ]
  37778. ))
  37779. characterMakers.push(() => makeCharacter(
  37780. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37781. {
  37782. front: {
  37783. height: math.unit(4, "meters"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/adelonda/front.svg",
  37787. extra: 1077/982,
  37788. bottom: 39/1116
  37789. }
  37790. },
  37791. back: {
  37792. height: math.unit(4, "meters"),
  37793. name: "Back",
  37794. image: {
  37795. source: "./media/characters/adelonda/back.svg",
  37796. extra: 1105/1003,
  37797. bottom: 25/1130
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(4, "meters"),
  37805. default: true
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37811. {
  37812. front: {
  37813. height: math.unit(8 + 4/12, "feet"),
  37814. weight: math.unit(670, "lb"),
  37815. name: "Front",
  37816. image: {
  37817. source: "./media/characters/acadiel/front.svg",
  37818. extra: 1901/1595,
  37819. bottom: 142/2043
  37820. }
  37821. },
  37822. },
  37823. [
  37824. {
  37825. name: "Normal",
  37826. height: math.unit(8 + 4/12, "feet"),
  37827. default: true
  37828. },
  37829. {
  37830. name: "Macro",
  37831. height: math.unit(200, "feet")
  37832. },
  37833. ]
  37834. ))
  37835. characterMakers.push(() => makeCharacter(
  37836. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37837. {
  37838. front: {
  37839. height: math.unit(6 + 2/12, "feet"),
  37840. weight: math.unit(185, "lb"),
  37841. name: "Front",
  37842. image: {
  37843. source: "./media/characters/kayne-ein/front.svg",
  37844. extra: 1780/1560,
  37845. bottom: 81/1861
  37846. }
  37847. },
  37848. },
  37849. [
  37850. {
  37851. name: "Normal",
  37852. height: math.unit(6 + 2/12, "feet"),
  37853. default: true
  37854. },
  37855. {
  37856. name: "Transformation Stage",
  37857. height: math.unit(15, "feet")
  37858. },
  37859. {
  37860. name: "Macro",
  37861. height: math.unit(150, "feet")
  37862. },
  37863. {
  37864. name: "Earth's Shadow",
  37865. height: math.unit(6200, "miles")
  37866. },
  37867. {
  37868. name: "Universal Demon",
  37869. height: math.unit(28e9, "parsecs")
  37870. },
  37871. {
  37872. name: "Multiverse God",
  37873. height: math.unit(3, "multiverses")
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37879. {
  37880. front: {
  37881. height: math.unit(5 + 5/12, "feet"),
  37882. name: "Front",
  37883. image: {
  37884. source: "./media/characters/fawn/front.svg",
  37885. extra: 1873/1731,
  37886. bottom: 95/1968
  37887. }
  37888. },
  37889. back: {
  37890. height: math.unit(5 + 5/12, "feet"),
  37891. name: "Back",
  37892. image: {
  37893. source: "./media/characters/fawn/back.svg",
  37894. extra: 1813/1700,
  37895. bottom: 14/1827
  37896. }
  37897. },
  37898. hoof: {
  37899. height: math.unit(1.45, "feet"),
  37900. name: "Hoof",
  37901. image: {
  37902. source: "./media/characters/fawn/hoof.svg"
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Normal",
  37909. height: math.unit(5 + 5/12, "feet"),
  37910. default: true
  37911. },
  37912. ]
  37913. ))
  37914. characterMakers.push(() => makeCharacter(
  37915. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37916. {
  37917. front: {
  37918. height: math.unit(2 + 5/12, "feet"),
  37919. name: "Front",
  37920. image: {
  37921. source: "./media/characters/orion/front.svg",
  37922. extra: 1366/1304,
  37923. bottom: 43/1409
  37924. }
  37925. },
  37926. paw: {
  37927. height: math.unit(0.52, "feet"),
  37928. name: "Paw",
  37929. image: {
  37930. source: "./media/characters/orion/paw.svg"
  37931. }
  37932. },
  37933. },
  37934. [
  37935. {
  37936. name: "Normal",
  37937. height: math.unit(2 + 5/12, "feet"),
  37938. default: true
  37939. },
  37940. ]
  37941. ))
  37942. characterMakers.push(() => makeCharacter(
  37943. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37944. {
  37945. front: {
  37946. height: math.unit(5 + 10/12, "feet"),
  37947. name: "Front",
  37948. image: {
  37949. source: "./media/characters/vera/front.svg",
  37950. extra: 1680/1575,
  37951. bottom: 49/1729
  37952. }
  37953. },
  37954. back: {
  37955. height: math.unit(5 + 10/12, "feet"),
  37956. name: "Back",
  37957. image: {
  37958. source: "./media/characters/vera/back.svg",
  37959. extra: 1700/1588,
  37960. bottom: 18/1718
  37961. }
  37962. },
  37963. arcanine: {
  37964. height: math.unit(6 + 8/12, "feet"),
  37965. name: "Arcanine",
  37966. image: {
  37967. source: "./media/characters/vera/arcanine.svg",
  37968. extra: 1590/1511,
  37969. bottom: 71/1661
  37970. }
  37971. },
  37972. maw: {
  37973. height: math.unit(0.82, "feet"),
  37974. name: "Maw",
  37975. image: {
  37976. source: "./media/characters/vera/maw.svg"
  37977. }
  37978. },
  37979. mawArcanine: {
  37980. height: math.unit(0.97, "feet"),
  37981. name: "Maw (Arcanine)",
  37982. image: {
  37983. source: "./media/characters/vera/maw-arcanine.svg"
  37984. }
  37985. },
  37986. paw: {
  37987. height: math.unit(0.75, "feet"),
  37988. name: "Paw",
  37989. image: {
  37990. source: "./media/characters/vera/paw.svg"
  37991. }
  37992. },
  37993. pawprint: {
  37994. height: math.unit(0.52, "feet"),
  37995. name: "Pawprint",
  37996. image: {
  37997. source: "./media/characters/vera/pawprint.svg"
  37998. }
  37999. },
  38000. },
  38001. [
  38002. {
  38003. name: "Normal",
  38004. height: math.unit(5 + 10/12, "feet"),
  38005. default: true
  38006. },
  38007. {
  38008. name: "Macro",
  38009. height: math.unit(75, "feet")
  38010. },
  38011. ]
  38012. ))
  38013. characterMakers.push(() => makeCharacter(
  38014. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38015. {
  38016. front: {
  38017. height: math.unit(4, "feet"),
  38018. weight: math.unit(40, "lb"),
  38019. name: "Front",
  38020. image: {
  38021. source: "./media/characters/orvan-rabbit/front.svg",
  38022. extra: 1896/1642,
  38023. bottom: 29/1925
  38024. }
  38025. },
  38026. },
  38027. [
  38028. {
  38029. name: "Normal",
  38030. height: math.unit(4, "feet"),
  38031. default: true
  38032. },
  38033. ]
  38034. ))
  38035. characterMakers.push(() => makeCharacter(
  38036. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38037. {
  38038. front: {
  38039. height: math.unit(6, "feet"),
  38040. weight: math.unit(168, "lb"),
  38041. name: "Front",
  38042. image: {
  38043. source: "./media/characters/lisa/front.svg",
  38044. extra: 2065/1867,
  38045. bottom: 46/2111
  38046. }
  38047. },
  38048. back: {
  38049. height: math.unit(6, "feet"),
  38050. weight: math.unit(168, "lb"),
  38051. name: "Back",
  38052. image: {
  38053. source: "./media/characters/lisa/back.svg",
  38054. extra: 1982/1838,
  38055. bottom: 29/2011
  38056. }
  38057. },
  38058. maw: {
  38059. height: math.unit(0.81, "feet"),
  38060. name: "Maw",
  38061. image: {
  38062. source: "./media/characters/lisa/maw.svg"
  38063. }
  38064. },
  38065. paw: {
  38066. height: math.unit(0.9, "feet"),
  38067. name: "Paw",
  38068. image: {
  38069. source: "./media/characters/lisa/paw.svg"
  38070. }
  38071. },
  38072. caribousune: {
  38073. height: math.unit(7 + 2/12, "feet"),
  38074. weight: math.unit(268, "lb"),
  38075. name: "Caribousune",
  38076. image: {
  38077. source: "./media/characters/lisa/caribousune.svg",
  38078. extra: 1843/1633,
  38079. bottom: 29/1872
  38080. }
  38081. },
  38082. frontCaribousune: {
  38083. height: math.unit(7 + 2/12, "feet"),
  38084. weight: math.unit(268, "lb"),
  38085. name: "Front (Caribousune)",
  38086. image: {
  38087. source: "./media/characters/lisa/front-caribousune.svg",
  38088. extra: 1818/1638,
  38089. bottom: 52/1870
  38090. }
  38091. },
  38092. sideCaribousune: {
  38093. height: math.unit(7 + 2/12, "feet"),
  38094. weight: math.unit(268, "lb"),
  38095. name: "Side (Caribousune)",
  38096. image: {
  38097. source: "./media/characters/lisa/side-caribousune.svg",
  38098. extra: 1851/1635,
  38099. bottom: 16/1867
  38100. }
  38101. },
  38102. backCaribousune: {
  38103. height: math.unit(7 + 2/12, "feet"),
  38104. weight: math.unit(268, "lb"),
  38105. name: "Back (Caribousune)",
  38106. image: {
  38107. source: "./media/characters/lisa/back-caribousune.svg",
  38108. extra: 1801/1604,
  38109. bottom: 44/1845
  38110. }
  38111. },
  38112. caribou: {
  38113. height: math.unit(7 + 2/12, "feet"),
  38114. weight: math.unit(268, "lb"),
  38115. name: "Caribou",
  38116. image: {
  38117. source: "./media/characters/lisa/caribou.svg",
  38118. extra: 1843/1633,
  38119. bottom: 29/1872
  38120. }
  38121. },
  38122. frontCaribou: {
  38123. height: math.unit(7 + 2/12, "feet"),
  38124. weight: math.unit(268, "lb"),
  38125. name: "Front (Caribou)",
  38126. image: {
  38127. source: "./media/characters/lisa/front-caribou.svg",
  38128. extra: 1818/1638,
  38129. bottom: 52/1870
  38130. }
  38131. },
  38132. sideCaribou: {
  38133. height: math.unit(7 + 2/12, "feet"),
  38134. weight: math.unit(268, "lb"),
  38135. name: "Side (Caribou)",
  38136. image: {
  38137. source: "./media/characters/lisa/side-caribou.svg",
  38138. extra: 1851/1635,
  38139. bottom: 16/1867
  38140. }
  38141. },
  38142. backCaribou: {
  38143. height: math.unit(7 + 2/12, "feet"),
  38144. weight: math.unit(268, "lb"),
  38145. name: "Back (Caribou)",
  38146. image: {
  38147. source: "./media/characters/lisa/back-caribou.svg",
  38148. extra: 1801/1604,
  38149. bottom: 44/1845
  38150. }
  38151. },
  38152. mawCaribou: {
  38153. height: math.unit(1.45, "feet"),
  38154. name: "Maw (Caribou)",
  38155. image: {
  38156. source: "./media/characters/lisa/maw-caribou.svg"
  38157. }
  38158. },
  38159. mawCaribousune: {
  38160. height: math.unit(1.45, "feet"),
  38161. name: "Maw (Caribousune)",
  38162. image: {
  38163. source: "./media/characters/lisa/maw-caribousune.svg"
  38164. }
  38165. },
  38166. pawCaribousune: {
  38167. height: math.unit(1.61, "feet"),
  38168. name: "Paw (Caribou)",
  38169. image: {
  38170. source: "./media/characters/lisa/paw-caribousune.svg"
  38171. }
  38172. },
  38173. },
  38174. [
  38175. {
  38176. name: "Normal",
  38177. height: math.unit(6, "feet")
  38178. },
  38179. {
  38180. name: "God Size",
  38181. height: math.unit(72, "feet"),
  38182. default: true
  38183. },
  38184. {
  38185. name: "Towering",
  38186. height: math.unit(288, "feet")
  38187. },
  38188. {
  38189. name: "City Size",
  38190. height: math.unit(48384, "feet")
  38191. },
  38192. {
  38193. name: "Continental",
  38194. height: math.unit(4200, "miles")
  38195. },
  38196. {
  38197. name: "Planet Eater",
  38198. height: math.unit(42, "earths")
  38199. },
  38200. {
  38201. name: "Star Swallower",
  38202. height: math.unit(42, "solarradii")
  38203. },
  38204. {
  38205. name: "System Swallower",
  38206. height: math.unit(84000, "AU")
  38207. },
  38208. {
  38209. name: "Galaxy Gobbler",
  38210. height: math.unit(42, "galaxies")
  38211. },
  38212. {
  38213. name: "Universe Devourer",
  38214. height: math.unit(42, "universes")
  38215. },
  38216. {
  38217. name: "Multiverse Muncher",
  38218. height: math.unit(42, "multiverses")
  38219. },
  38220. ]
  38221. ))
  38222. characterMakers.push(() => makeCharacter(
  38223. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38224. {
  38225. front: {
  38226. height: math.unit(36, "feet"),
  38227. name: "Front",
  38228. image: {
  38229. source: "./media/characters/shadow-rat/front.svg",
  38230. extra: 1845/1758,
  38231. bottom: 83/1928
  38232. }
  38233. },
  38234. },
  38235. [
  38236. {
  38237. name: "Macro",
  38238. height: math.unit(36, "feet"),
  38239. default: true
  38240. },
  38241. ]
  38242. ))
  38243. characterMakers.push(() => makeCharacter(
  38244. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38245. {
  38246. side: {
  38247. height: math.unit(8, "feet"),
  38248. weight: math.unit(2630, "lb"),
  38249. name: "Side",
  38250. image: {
  38251. source: "./media/characters/torallia/side.svg",
  38252. extra: 2164/2021,
  38253. bottom: 371/2535
  38254. }
  38255. },
  38256. },
  38257. [
  38258. {
  38259. name: "Mortal Interaction",
  38260. height: math.unit(8, "feet")
  38261. },
  38262. {
  38263. name: "Natural",
  38264. height: math.unit(24, "feet"),
  38265. default: true
  38266. },
  38267. {
  38268. name: "Giant",
  38269. height: math.unit(80, "feet")
  38270. },
  38271. {
  38272. name: "Kaiju",
  38273. height: math.unit(240, "feet")
  38274. },
  38275. {
  38276. name: "Macro",
  38277. height: math.unit(800, "feet")
  38278. },
  38279. {
  38280. name: "Macro+",
  38281. height: math.unit(2400, "feet")
  38282. },
  38283. {
  38284. name: "Macro++",
  38285. height: math.unit(8000, "feet")
  38286. },
  38287. {
  38288. name: "City-Crushing",
  38289. height: math.unit(24000, "feet")
  38290. },
  38291. {
  38292. name: "Mountain-Mashing",
  38293. height: math.unit(80000, "feet")
  38294. },
  38295. {
  38296. name: "District Demolisher",
  38297. height: math.unit(240000, "feet")
  38298. },
  38299. {
  38300. name: "Tri-County Terror",
  38301. height: math.unit(800000, "feet")
  38302. },
  38303. {
  38304. name: "State Smasher",
  38305. height: math.unit(2.4e6, "feet")
  38306. },
  38307. {
  38308. name: "Nation Nemesis",
  38309. height: math.unit(8e6, "feet")
  38310. },
  38311. {
  38312. name: "Continent Cracker",
  38313. height: math.unit(2.4e7, "feet")
  38314. },
  38315. {
  38316. name: "Planet-Pillaging",
  38317. height: math.unit(8e7, "feet")
  38318. },
  38319. {
  38320. name: "Earth-Eclipsing",
  38321. height: math.unit(2.4e8, "feet")
  38322. },
  38323. {
  38324. name: "Jovian-Jostling",
  38325. height: math.unit(8e8, "feet")
  38326. },
  38327. {
  38328. name: "Gas Giant Gulper",
  38329. height: math.unit(2.4e9, "feet")
  38330. },
  38331. {
  38332. name: "Astral Annihilator",
  38333. height: math.unit(8e9, "feet")
  38334. },
  38335. {
  38336. name: "Celestial Conqueror",
  38337. height: math.unit(2.4e10, "feet")
  38338. },
  38339. {
  38340. name: "Sol-Swallowing",
  38341. height: math.unit(8e10, "feet")
  38342. },
  38343. {
  38344. name: "Hunter of the Heavens",
  38345. height: math.unit(2.4e13, "feet")
  38346. },
  38347. ]
  38348. ))
  38349. characterMakers.push(() => makeCharacter(
  38350. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38351. {
  38352. front: {
  38353. height: math.unit(6 + 8/12, "feet"),
  38354. name: "Front",
  38355. image: {
  38356. source: "./media/characters/rebecca-pawlson/front.svg",
  38357. extra: 1737/1596,
  38358. bottom: 107/1844
  38359. }
  38360. },
  38361. back: {
  38362. height: math.unit(6 + 8/12, "feet"),
  38363. name: "Back",
  38364. image: {
  38365. source: "./media/characters/rebecca-pawlson/back.svg",
  38366. extra: 1702/1523,
  38367. bottom: 86/1788
  38368. }
  38369. },
  38370. },
  38371. [
  38372. {
  38373. name: "Normal",
  38374. height: math.unit(6 + 8/12, "feet")
  38375. },
  38376. {
  38377. name: "Mini Macro",
  38378. height: math.unit(10, "feet"),
  38379. default: true
  38380. },
  38381. {
  38382. name: "Macro",
  38383. height: math.unit(100, "feet")
  38384. },
  38385. {
  38386. name: "Mega Macro",
  38387. height: math.unit(2500, "feet")
  38388. },
  38389. {
  38390. name: "Giga Macro",
  38391. height: math.unit(50, "miles")
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38397. {
  38398. front: {
  38399. height: math.unit(7 + 6/12, "feet"),
  38400. weight: math.unit(600, "lb"),
  38401. name: "Front",
  38402. image: {
  38403. source: "./media/characters/moxie-nova/front.svg",
  38404. extra: 1734/1652,
  38405. bottom: 41/1775
  38406. }
  38407. },
  38408. },
  38409. [
  38410. {
  38411. name: "Normal",
  38412. height: math.unit(7 + 6/12, "feet"),
  38413. default: true
  38414. },
  38415. ]
  38416. ))
  38417. characterMakers.push(() => makeCharacter(
  38418. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38419. {
  38420. goat: {
  38421. height: math.unit(4, "feet"),
  38422. weight: math.unit(180, "lb"),
  38423. name: "Goat",
  38424. image: {
  38425. source: "./media/characters/tiffany/goat.svg",
  38426. extra: 1845/1595,
  38427. bottom: 106/1951
  38428. }
  38429. },
  38430. front: {
  38431. height: math.unit(5, "feet"),
  38432. weight: math.unit(150, "lb"),
  38433. name: "Foxcoon",
  38434. image: {
  38435. source: "./media/characters/tiffany/foxcoon.svg",
  38436. extra: 1941/1845,
  38437. bottom: 58/1999
  38438. }
  38439. },
  38440. },
  38441. [
  38442. {
  38443. name: "Normal",
  38444. height: math.unit(5, "feet"),
  38445. default: true
  38446. },
  38447. ]
  38448. ))
  38449. characterMakers.push(() => makeCharacter(
  38450. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38451. {
  38452. front: {
  38453. height: math.unit(8, "feet"),
  38454. weight: math.unit(300, "lb"),
  38455. name: "Front",
  38456. image: {
  38457. source: "./media/characters/raxinath/front.svg",
  38458. extra: 1407/1309,
  38459. bottom: 39/1446
  38460. }
  38461. },
  38462. back: {
  38463. height: math.unit(8, "feet"),
  38464. weight: math.unit(300, "lb"),
  38465. name: "Back",
  38466. image: {
  38467. source: "./media/characters/raxinath/back.svg",
  38468. extra: 1405/1315,
  38469. bottom: 9/1414
  38470. }
  38471. },
  38472. },
  38473. [
  38474. {
  38475. name: "Speck",
  38476. height: math.unit(0.5, "nm")
  38477. },
  38478. {
  38479. name: "Micro",
  38480. height: math.unit(3, "inches")
  38481. },
  38482. {
  38483. name: "Kobold",
  38484. height: math.unit(3, "feet")
  38485. },
  38486. {
  38487. name: "Normal",
  38488. height: math.unit(8, "feet"),
  38489. default: true
  38490. },
  38491. {
  38492. name: "Giant",
  38493. height: math.unit(50, "feet")
  38494. },
  38495. {
  38496. name: "Macro",
  38497. height: math.unit(1000, "feet")
  38498. },
  38499. {
  38500. name: "Megamacro",
  38501. height: math.unit(1, "mile")
  38502. },
  38503. ]
  38504. ))
  38505. characterMakers.push(() => makeCharacter(
  38506. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38507. {
  38508. front: {
  38509. height: math.unit(10, "feet"),
  38510. weight: math.unit(1442, "lb"),
  38511. name: "Front",
  38512. image: {
  38513. source: "./media/characters/mal-dragon/front.svg",
  38514. extra: 1515/1444,
  38515. bottom: 113/1628
  38516. }
  38517. },
  38518. back: {
  38519. height: math.unit(10, "feet"),
  38520. weight: math.unit(1442, "lb"),
  38521. name: "Back",
  38522. image: {
  38523. source: "./media/characters/mal-dragon/back.svg",
  38524. extra: 1527/1434,
  38525. bottom: 25/1552
  38526. }
  38527. },
  38528. },
  38529. [
  38530. {
  38531. name: "Mortal Interaction",
  38532. height: math.unit(10, "feet"),
  38533. default: true
  38534. },
  38535. {
  38536. name: "Large",
  38537. height: math.unit(30, "feet")
  38538. },
  38539. {
  38540. name: "Kaiju",
  38541. height: math.unit(300, "feet")
  38542. },
  38543. {
  38544. name: "Megamacro",
  38545. height: math.unit(10000, "feet")
  38546. },
  38547. {
  38548. name: "Continent Cracker",
  38549. height: math.unit(30000000, "feet")
  38550. },
  38551. {
  38552. name: "Sol-Swallowing",
  38553. height: math.unit(1e11, "feet")
  38554. },
  38555. {
  38556. name: "Light Universal",
  38557. height: math.unit(5, "universes")
  38558. },
  38559. {
  38560. name: "Universe Atoms",
  38561. height: math.unit(1.829e9, "universes")
  38562. },
  38563. {
  38564. name: "Light Multiversal",
  38565. height: math.unit(5, "multiverses")
  38566. },
  38567. {
  38568. name: "Multiverse Atoms",
  38569. height: math.unit(1.829e9, "multiverses")
  38570. },
  38571. {
  38572. name: "Fabric of Time",
  38573. height: math.unit(1e262, "multiverses")
  38574. },
  38575. ]
  38576. ))
  38577. characterMakers.push(() => makeCharacter(
  38578. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38579. {
  38580. front: {
  38581. height: math.unit(9, "feet"),
  38582. weight: math.unit(1050, "lb"),
  38583. name: "Front",
  38584. image: {
  38585. source: "./media/characters/tabitha/front.svg",
  38586. extra: 2083/1994,
  38587. bottom: 68/2151
  38588. }
  38589. },
  38590. },
  38591. [
  38592. {
  38593. name: "Baseline",
  38594. height: math.unit(9, "feet"),
  38595. default: true
  38596. },
  38597. {
  38598. name: "Giant",
  38599. height: math.unit(90, "feet")
  38600. },
  38601. {
  38602. name: "Macro",
  38603. height: math.unit(900, "feet")
  38604. },
  38605. {
  38606. name: "Megamacro",
  38607. height: math.unit(9000, "feet")
  38608. },
  38609. {
  38610. name: "City-Crushing",
  38611. height: math.unit(27000, "feet")
  38612. },
  38613. {
  38614. name: "Mountain-Mashing",
  38615. height: math.unit(90000, "feet")
  38616. },
  38617. {
  38618. name: "Nation Nemesis",
  38619. height: math.unit(9e6, "feet")
  38620. },
  38621. {
  38622. name: "Continent Cracker",
  38623. height: math.unit(27e6, "feet")
  38624. },
  38625. {
  38626. name: "Earth-Eclipsing",
  38627. height: math.unit(2.7e8, "feet")
  38628. },
  38629. {
  38630. name: "Gas Giant Gulper",
  38631. height: math.unit(2.7e9, "feet")
  38632. },
  38633. {
  38634. name: "Sol-Swallowing",
  38635. height: math.unit(9e10, "feet")
  38636. },
  38637. {
  38638. name: "Galaxy Gulper",
  38639. height: math.unit(9, "galaxies")
  38640. },
  38641. {
  38642. name: "Cosmos Churner",
  38643. height: math.unit(9, "universes")
  38644. },
  38645. ]
  38646. ))
  38647. characterMakers.push(() => makeCharacter(
  38648. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38649. {
  38650. front: {
  38651. height: math.unit(160, "cm"),
  38652. weight: math.unit(55, "kg"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/tow/front.svg",
  38656. extra: 1751/1722,
  38657. bottom: 74/1825
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Norm",
  38664. height: math.unit(160, "cm")
  38665. },
  38666. {
  38667. name: "Casual",
  38668. height: math.unit(3200, "m"),
  38669. default: true
  38670. },
  38671. {
  38672. name: "Show-Off",
  38673. height: math.unit(160, "km")
  38674. },
  38675. ]
  38676. ))
  38677. characterMakers.push(() => makeCharacter(
  38678. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38679. {
  38680. front: {
  38681. height: math.unit(7 + 11/12, "feet"),
  38682. weight: math.unit(342.8, "lb"),
  38683. name: "Front",
  38684. image: {
  38685. source: "./media/characters/vivian-orca-dragon/front.svg",
  38686. extra: 1890/1865,
  38687. bottom: 28/1918
  38688. }
  38689. },
  38690. },
  38691. [
  38692. {
  38693. name: "Micro",
  38694. height: math.unit(5, "inches")
  38695. },
  38696. {
  38697. name: "Normal",
  38698. height: math.unit(7 + 11/12, "feet"),
  38699. default: true
  38700. },
  38701. {
  38702. name: "Macro",
  38703. height: math.unit(395 + 7/12, "feet")
  38704. },
  38705. ]
  38706. ))
  38707. characterMakers.push(() => makeCharacter(
  38708. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38709. {
  38710. side: {
  38711. height: math.unit(10, "feet"),
  38712. weight: math.unit(1442, "lb"),
  38713. name: "Side",
  38714. image: {
  38715. source: "./media/characters/lotherakon/side.svg",
  38716. extra: 1604/1497,
  38717. bottom: 89/1693
  38718. }
  38719. },
  38720. },
  38721. [
  38722. {
  38723. name: "Mortal Interaction",
  38724. height: math.unit(10, "feet")
  38725. },
  38726. {
  38727. name: "Large",
  38728. height: math.unit(30, "feet"),
  38729. default: true
  38730. },
  38731. {
  38732. name: "Giant",
  38733. height: math.unit(100, "feet")
  38734. },
  38735. {
  38736. name: "Kaiju",
  38737. height: math.unit(300, "feet")
  38738. },
  38739. {
  38740. name: "Macro",
  38741. height: math.unit(1000, "feet")
  38742. },
  38743. {
  38744. name: "Macro+",
  38745. height: math.unit(3000, "feet")
  38746. },
  38747. {
  38748. name: "Megamacro",
  38749. height: math.unit(10000, "feet")
  38750. },
  38751. {
  38752. name: "City-Crushing",
  38753. height: math.unit(30000, "feet")
  38754. },
  38755. {
  38756. name: "Continent Cracker",
  38757. height: math.unit(30e6, "feet")
  38758. },
  38759. {
  38760. name: "Earth Eclipsing",
  38761. height: math.unit(3e8, "feet")
  38762. },
  38763. {
  38764. name: "Gas Giant Gulper",
  38765. height: math.unit(3e9, "feet")
  38766. },
  38767. {
  38768. name: "Sol-Swallowing",
  38769. height: math.unit(1e11, "feet")
  38770. },
  38771. {
  38772. name: "System Swallower",
  38773. height: math.unit(3e14, "feet")
  38774. },
  38775. {
  38776. name: "Galaxy Gulper",
  38777. height: math.unit(10, "galaxies")
  38778. },
  38779. {
  38780. name: "Light Universal",
  38781. height: math.unit(5, "universes")
  38782. },
  38783. {
  38784. name: "Universe Palm",
  38785. height: math.unit(20, "universes")
  38786. },
  38787. {
  38788. name: "Light Multiversal",
  38789. height: math.unit(5, "multiverses")
  38790. },
  38791. {
  38792. name: "Multiverse Palm",
  38793. height: math.unit(20, "multiverses")
  38794. },
  38795. {
  38796. name: "Inferno Incarnate",
  38797. height: math.unit(1e7, "multiverses")
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(8, "feet"),
  38806. weight: math.unit(1200, "lb"),
  38807. name: "Front",
  38808. image: {
  38809. source: "./media/characters/malithee/front.svg",
  38810. extra: 1675/1640,
  38811. bottom: 162/1837
  38812. }
  38813. },
  38814. },
  38815. [
  38816. {
  38817. name: "Mortal Interaction",
  38818. height: math.unit(8, "feet"),
  38819. default: true
  38820. },
  38821. {
  38822. name: "Large",
  38823. height: math.unit(24, "feet")
  38824. },
  38825. {
  38826. name: "Kaiju",
  38827. height: math.unit(240, "feet")
  38828. },
  38829. {
  38830. name: "Megamacro",
  38831. height: math.unit(8000, "feet")
  38832. },
  38833. {
  38834. name: "Continent Cracker",
  38835. height: math.unit(24e6, "feet")
  38836. },
  38837. {
  38838. name: "Earth-Eclipsing",
  38839. height: math.unit(2.4e8, "feet")
  38840. },
  38841. {
  38842. name: "Sol-Swallowing",
  38843. height: math.unit(8e10, "feet")
  38844. },
  38845. {
  38846. name: "Galaxy Gulper",
  38847. height: math.unit(8, "galaxies")
  38848. },
  38849. {
  38850. name: "Light Universal",
  38851. height: math.unit(4, "universes")
  38852. },
  38853. {
  38854. name: "Universe Atoms",
  38855. height: math.unit(1.829e9, "universes")
  38856. },
  38857. {
  38858. name: "Light Multiversal",
  38859. height: math.unit(4, "multiverses")
  38860. },
  38861. {
  38862. name: "Multiverse Atoms",
  38863. height: math.unit(1.829e9, "multiverses")
  38864. },
  38865. {
  38866. name: "Nigh-Omnipresence",
  38867. height: math.unit(8e261, "multiverses")
  38868. },
  38869. ]
  38870. ))
  38871. characterMakers.push(() => makeCharacter(
  38872. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38873. {
  38874. front: {
  38875. height: math.unit(10, "feet"),
  38876. weight: math.unit(1500, "lb"),
  38877. name: "Front",
  38878. image: {
  38879. source: "./media/characters/miles-thestia/front.svg",
  38880. extra: 1812/1727,
  38881. bottom: 86/1898
  38882. }
  38883. },
  38884. back: {
  38885. height: math.unit(10, "feet"),
  38886. weight: math.unit(1500, "lb"),
  38887. name: "Back",
  38888. image: {
  38889. source: "./media/characters/miles-thestia/back.svg",
  38890. extra: 1799/1690,
  38891. bottom: 47/1846
  38892. }
  38893. },
  38894. frontNsfw: {
  38895. height: math.unit(10, "feet"),
  38896. weight: math.unit(1500, "lb"),
  38897. name: "Front (NSFW)",
  38898. image: {
  38899. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38900. extra: 1812/1727,
  38901. bottom: 86/1898
  38902. }
  38903. },
  38904. },
  38905. [
  38906. {
  38907. name: "Mini-Macro",
  38908. height: math.unit(10, "feet"),
  38909. default: true
  38910. },
  38911. ]
  38912. ))
  38913. characterMakers.push(() => makeCharacter(
  38914. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38915. {
  38916. front: {
  38917. height: math.unit(25, "feet"),
  38918. name: "Front",
  38919. image: {
  38920. source: "./media/characters/titan-s-wulf/front.svg",
  38921. extra: 1560/1484,
  38922. bottom: 76/1636
  38923. }
  38924. },
  38925. },
  38926. [
  38927. {
  38928. name: "Smallest",
  38929. height: math.unit(25, "feet"),
  38930. default: true
  38931. },
  38932. {
  38933. name: "Normal",
  38934. height: math.unit(200, "feet")
  38935. },
  38936. {
  38937. name: "Macro",
  38938. height: math.unit(200000, "feet")
  38939. },
  38940. {
  38941. name: "Multiversal Original",
  38942. height: math.unit(10000, "multiverses")
  38943. },
  38944. ]
  38945. ))
  38946. characterMakers.push(() => makeCharacter(
  38947. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38948. {
  38949. front: {
  38950. height: math.unit(8, "feet"),
  38951. weight: math.unit(553, "lb"),
  38952. name: "Front",
  38953. image: {
  38954. source: "./media/characters/tawendeh/front.svg",
  38955. extra: 2365/2268,
  38956. bottom: 83/2448
  38957. }
  38958. },
  38959. frontClothed: {
  38960. height: math.unit(8, "feet"),
  38961. weight: math.unit(553, "lb"),
  38962. name: "Front (Clothed)",
  38963. image: {
  38964. source: "./media/characters/tawendeh/front-clothed.svg",
  38965. extra: 2365/2268,
  38966. bottom: 83/2448
  38967. }
  38968. },
  38969. back: {
  38970. height: math.unit(8, "feet"),
  38971. weight: math.unit(553, "lb"),
  38972. name: "Back",
  38973. image: {
  38974. source: "./media/characters/tawendeh/back.svg",
  38975. extra: 2397/2294,
  38976. bottom: 42/2439
  38977. }
  38978. },
  38979. },
  38980. [
  38981. {
  38982. name: "Mortal Interaction",
  38983. height: math.unit(8, "feet"),
  38984. default: true
  38985. },
  38986. {
  38987. name: "Giant",
  38988. height: math.unit(80, "feet")
  38989. },
  38990. {
  38991. name: "Macro",
  38992. height: math.unit(800, "feet")
  38993. },
  38994. {
  38995. name: "Megamacro",
  38996. height: math.unit(8000, "feet")
  38997. },
  38998. {
  38999. name: "City-Crushing",
  39000. height: math.unit(24000, "feet")
  39001. },
  39002. {
  39003. name: "Mountain-Mashing",
  39004. height: math.unit(80000, "feet")
  39005. },
  39006. {
  39007. name: "Nation Nemesis",
  39008. height: math.unit(8e6, "feet")
  39009. },
  39010. {
  39011. name: "Continent Cracker",
  39012. height: math.unit(24e6, "feet")
  39013. },
  39014. {
  39015. name: "Earth-Eclipsing",
  39016. height: math.unit(2.4e8, "feet")
  39017. },
  39018. {
  39019. name: "Gas Giant Gulper",
  39020. height: math.unit(2.4e9, "feet")
  39021. },
  39022. {
  39023. name: "Sol-Swallowing",
  39024. height: math.unit(8e10, "feet")
  39025. },
  39026. {
  39027. name: "Galaxy Gulper",
  39028. height: math.unit(8, "galaxies")
  39029. },
  39030. {
  39031. name: "Cosmos Churner",
  39032. height: math.unit(8, "universes")
  39033. },
  39034. {
  39035. name: "Omnipotent Otter",
  39036. height: math.unit(80, "universes")
  39037. },
  39038. ]
  39039. ))
  39040. characterMakers.push(() => makeCharacter(
  39041. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39042. {
  39043. front: {
  39044. height: math.unit(2.6, "meters"),
  39045. weight: math.unit(900, "kg"),
  39046. name: "Front",
  39047. image: {
  39048. source: "./media/characters/neesha/front.svg",
  39049. extra: 1803/1653,
  39050. bottom: 128/1931
  39051. }
  39052. },
  39053. },
  39054. [
  39055. {
  39056. name: "Normal",
  39057. height: math.unit(2.6, "meters"),
  39058. default: true
  39059. },
  39060. {
  39061. name: "Macro",
  39062. height: math.unit(50, "meters")
  39063. },
  39064. ]
  39065. ))
  39066. characterMakers.push(() => makeCharacter(
  39067. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39068. {
  39069. front: {
  39070. height: math.unit(5, "feet"),
  39071. weight: math.unit(185, "lb"),
  39072. name: "Front",
  39073. image: {
  39074. source: "./media/characters/kyera/front.svg",
  39075. extra: 1875/1790,
  39076. bottom: 96/1971
  39077. }
  39078. },
  39079. },
  39080. [
  39081. {
  39082. name: "Normal",
  39083. height: math.unit(5, "feet"),
  39084. default: true
  39085. },
  39086. ]
  39087. ))
  39088. characterMakers.push(() => makeCharacter(
  39089. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39090. {
  39091. front: {
  39092. height: math.unit(7 + 6/12, "feet"),
  39093. weight: math.unit(540, "lb"),
  39094. name: "Front",
  39095. image: {
  39096. source: "./media/characters/yuko/front.svg",
  39097. extra: 1282/1222,
  39098. bottom: 101/1383
  39099. }
  39100. },
  39101. frontClothed: {
  39102. height: math.unit(7 + 6/12, "feet"),
  39103. weight: math.unit(540, "lb"),
  39104. name: "Front (Clothed)",
  39105. image: {
  39106. source: "./media/characters/yuko/front-clothed.svg",
  39107. extra: 1282/1222,
  39108. bottom: 101/1383
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Normal",
  39115. height: math.unit(7 + 6/12, "feet"),
  39116. default: true
  39117. },
  39118. {
  39119. name: "Macro",
  39120. height: math.unit(26 + 9/12, "feet")
  39121. },
  39122. {
  39123. name: "Megamacro",
  39124. height: math.unit(300, "feet")
  39125. },
  39126. {
  39127. name: "Gigamacro",
  39128. height: math.unit(5000, "feet")
  39129. },
  39130. {
  39131. name: "Planetary",
  39132. height: math.unit(10000, "miles")
  39133. },
  39134. ]
  39135. ))
  39136. characterMakers.push(() => makeCharacter(
  39137. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39138. {
  39139. front: {
  39140. height: math.unit(8 + 2/12, "feet"),
  39141. weight: math.unit(600, "lb"),
  39142. name: "Front",
  39143. image: {
  39144. source: "./media/characters/deam-nitrel/front.svg",
  39145. extra: 1308/1234,
  39146. bottom: 125/1433
  39147. }
  39148. },
  39149. },
  39150. [
  39151. {
  39152. name: "Normal",
  39153. height: math.unit(8 + 2/12, "feet"),
  39154. default: true
  39155. },
  39156. ]
  39157. ))
  39158. characterMakers.push(() => makeCharacter(
  39159. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39160. {
  39161. front: {
  39162. height: math.unit(6.1, "feet"),
  39163. weight: math.unit(180, "lb"),
  39164. name: "Front",
  39165. image: {
  39166. source: "./media/characters/skyress/front.svg",
  39167. extra: 1045/915,
  39168. bottom: 28/1073
  39169. }
  39170. },
  39171. maw: {
  39172. height: math.unit(1, "feet"),
  39173. name: "Maw",
  39174. image: {
  39175. source: "./media/characters/skyress/maw.svg"
  39176. }
  39177. },
  39178. },
  39179. [
  39180. {
  39181. name: "Normal",
  39182. height: math.unit(6.1, "feet"),
  39183. default: true
  39184. },
  39185. {
  39186. name: "Macro",
  39187. height: math.unit(200, "feet")
  39188. },
  39189. ]
  39190. ))
  39191. characterMakers.push(() => makeCharacter(
  39192. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39193. {
  39194. front: {
  39195. height: math.unit(4 + 2/12, "feet"),
  39196. weight: math.unit(40, "kg"),
  39197. name: "Front",
  39198. image: {
  39199. source: "./media/characters/amethyst-jones/front.svg",
  39200. extra: 1220/1150,
  39201. bottom: 101/1321
  39202. }
  39203. },
  39204. },
  39205. [
  39206. {
  39207. name: "Normal",
  39208. height: math.unit(4 + 2/12, "feet"),
  39209. default: true
  39210. },
  39211. ]
  39212. ))
  39213. characterMakers.push(() => makeCharacter(
  39214. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39215. {
  39216. front: {
  39217. height: math.unit(1.7, "m"),
  39218. weight: math.unit(135, "lb"),
  39219. name: "Front",
  39220. image: {
  39221. source: "./media/characters/jade/front.svg",
  39222. extra: 1818/1767,
  39223. bottom: 32/1850
  39224. }
  39225. },
  39226. back: {
  39227. height: math.unit(1.7, "m"),
  39228. weight: math.unit(135, "lb"),
  39229. name: "Back",
  39230. image: {
  39231. source: "./media/characters/jade/back.svg",
  39232. extra: 1869/1809,
  39233. bottom: 35/1904
  39234. }
  39235. },
  39236. hand: {
  39237. height: math.unit(0.24, "m"),
  39238. name: "Hand",
  39239. image: {
  39240. source: "./media/characters/jade/hand.svg"
  39241. }
  39242. },
  39243. foot: {
  39244. height: math.unit(0.263, "m"),
  39245. name: "Foot",
  39246. image: {
  39247. source: "./media/characters/jade/foot.svg"
  39248. }
  39249. },
  39250. dick: {
  39251. height: math.unit(0.47, "m"),
  39252. name: "Dick",
  39253. image: {
  39254. source: "./media/characters/jade/dick.svg"
  39255. }
  39256. },
  39257. },
  39258. [
  39259. {
  39260. name: "Micro",
  39261. height: math.unit(22, "cm")
  39262. },
  39263. {
  39264. name: "Normal",
  39265. height: math.unit(1.7, "m"),
  39266. default: true
  39267. },
  39268. {
  39269. name: "Macro",
  39270. height: math.unit(152, "m")
  39271. },
  39272. ]
  39273. ))
  39274. characterMakers.push(() => makeCharacter(
  39275. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39276. {
  39277. front: {
  39278. height: math.unit(100, "miles"),
  39279. weight: math.unit(20000, "tons"),
  39280. name: "Front",
  39281. image: {
  39282. source: "./media/characters/cookie/front.svg",
  39283. extra: 1125/1070,
  39284. bottom: 30/1155
  39285. }
  39286. },
  39287. },
  39288. [
  39289. {
  39290. name: "Big",
  39291. height: math.unit(50, "feet")
  39292. },
  39293. {
  39294. name: "Macro",
  39295. height: math.unit(100, "miles"),
  39296. default: true
  39297. },
  39298. {
  39299. name: "Megamacro",
  39300. height: math.unit(90000, "miles")
  39301. },
  39302. ]
  39303. ))
  39304. characterMakers.push(() => makeCharacter(
  39305. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39306. {
  39307. front: {
  39308. height: math.unit(6, "feet"),
  39309. weight: math.unit(145, "lb"),
  39310. name: "Front",
  39311. image: {
  39312. source: "./media/characters/farzian/front.svg",
  39313. extra: 1902/1693,
  39314. bottom: 108/2010
  39315. }
  39316. },
  39317. },
  39318. [
  39319. {
  39320. name: "Macro",
  39321. height: math.unit(500, "feet"),
  39322. default: true
  39323. },
  39324. ]
  39325. ))
  39326. characterMakers.push(() => makeCharacter(
  39327. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39328. {
  39329. front: {
  39330. height: math.unit(3 + 6/12, "feet"),
  39331. weight: math.unit(50, "lb"),
  39332. name: "Front",
  39333. image: {
  39334. source: "./media/characters/kimberly-tilson/front.svg",
  39335. extra: 1400/1322,
  39336. bottom: 36/1436
  39337. }
  39338. },
  39339. back: {
  39340. height: math.unit(3 + 6/12, "feet"),
  39341. weight: math.unit(50, "lb"),
  39342. name: "Back",
  39343. image: {
  39344. source: "./media/characters/kimberly-tilson/back.svg",
  39345. extra: 1370/1307,
  39346. bottom: 20/1390
  39347. }
  39348. },
  39349. },
  39350. [
  39351. {
  39352. name: "Normal",
  39353. height: math.unit(3 + 6/12, "feet"),
  39354. default: true
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39360. {
  39361. front: {
  39362. height: math.unit(1148, "feet"),
  39363. weight: math.unit(34057, "lb"),
  39364. name: "Front",
  39365. image: {
  39366. source: "./media/characters/harthos/front.svg",
  39367. extra: 1391/1339,
  39368. bottom: 13/1404
  39369. }
  39370. },
  39371. },
  39372. [
  39373. {
  39374. name: "Macro",
  39375. height: math.unit(1148, "feet"),
  39376. default: true
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(15, "feet"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/hypatia/front.svg",
  39388. extra: 1653/1591,
  39389. bottom: 79/1732
  39390. }
  39391. },
  39392. },
  39393. [
  39394. {
  39395. name: "Normal",
  39396. height: math.unit(15, "feet")
  39397. },
  39398. {
  39399. name: "Small",
  39400. height: math.unit(300, "feet")
  39401. },
  39402. {
  39403. name: "Macro",
  39404. height: math.unit(2500, "feet"),
  39405. default: true
  39406. },
  39407. {
  39408. name: "Mega Macro",
  39409. height: math.unit(1500, "miles")
  39410. },
  39411. {
  39412. name: "Giga Macro",
  39413. height: math.unit(1.5e6, "miles")
  39414. },
  39415. ]
  39416. ))
  39417. characterMakers.push(() => makeCharacter(
  39418. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39419. {
  39420. front: {
  39421. height: math.unit(6, "feet"),
  39422. weight: math.unit(200, "lb"),
  39423. name: "Front",
  39424. image: {
  39425. source: "./media/characters/wulver/front.svg",
  39426. extra: 1724/1632,
  39427. bottom: 130/1854
  39428. }
  39429. },
  39430. frontNsfw: {
  39431. height: math.unit(6, "feet"),
  39432. weight: math.unit(200, "lb"),
  39433. name: "Front (NSFW)",
  39434. image: {
  39435. source: "./media/characters/wulver/front-nsfw.svg",
  39436. extra: 1724/1632,
  39437. bottom: 130/1854
  39438. }
  39439. },
  39440. },
  39441. [
  39442. {
  39443. name: "Human-Sized",
  39444. height: math.unit(6, "feet")
  39445. },
  39446. {
  39447. name: "Normal",
  39448. height: math.unit(4, "meters"),
  39449. default: true
  39450. },
  39451. {
  39452. name: "Large",
  39453. height: math.unit(6, "m")
  39454. },
  39455. ]
  39456. ))
  39457. characterMakers.push(() => makeCharacter(
  39458. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39459. {
  39460. front: {
  39461. height: math.unit(7, "feet"),
  39462. name: "Front",
  39463. image: {
  39464. source: "./media/characters/maru/front.svg",
  39465. extra: 1595/1570,
  39466. bottom: 0/1595
  39467. }
  39468. },
  39469. },
  39470. [
  39471. {
  39472. name: "Normal",
  39473. height: math.unit(7, "feet"),
  39474. default: true
  39475. },
  39476. {
  39477. name: "Macro",
  39478. height: math.unit(700, "feet")
  39479. },
  39480. {
  39481. name: "Mega Macro",
  39482. height: math.unit(25, "miles")
  39483. },
  39484. ]
  39485. ))
  39486. characterMakers.push(() => makeCharacter(
  39487. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39488. {
  39489. front: {
  39490. height: math.unit(6, "feet"),
  39491. weight: math.unit(170, "lb"),
  39492. name: "Front",
  39493. image: {
  39494. source: "./media/characters/xenon/front.svg",
  39495. extra: 1376/1305,
  39496. bottom: 56/1432
  39497. }
  39498. },
  39499. back: {
  39500. height: math.unit(6, "feet"),
  39501. weight: math.unit(170, "lb"),
  39502. name: "Back",
  39503. image: {
  39504. source: "./media/characters/xenon/back.svg",
  39505. extra: 1328/1259,
  39506. bottom: 95/1423
  39507. }
  39508. },
  39509. maw: {
  39510. height: math.unit(0.52, "feet"),
  39511. name: "Maw",
  39512. image: {
  39513. source: "./media/characters/xenon/maw.svg"
  39514. }
  39515. },
  39516. hand: {
  39517. height: math.unit(0.82, "feet"),
  39518. name: "Hand",
  39519. image: {
  39520. source: "./media/characters/xenon/hand.svg"
  39521. }
  39522. },
  39523. foot: {
  39524. height: math.unit(1.13, "feet"),
  39525. name: "Foot",
  39526. image: {
  39527. source: "./media/characters/xenon/foot.svg"
  39528. }
  39529. },
  39530. },
  39531. [
  39532. {
  39533. name: "Micro",
  39534. height: math.unit(0.8, "inches")
  39535. },
  39536. {
  39537. name: "Normal",
  39538. height: math.unit(6, "feet")
  39539. },
  39540. {
  39541. name: "Macro",
  39542. height: math.unit(50, "feet"),
  39543. default: true
  39544. },
  39545. {
  39546. name: "Macro+",
  39547. height: math.unit(250, "feet")
  39548. },
  39549. {
  39550. name: "Megamacro",
  39551. height: math.unit(1500, "feet")
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39557. {
  39558. front: {
  39559. height: math.unit(7 + 5/12, "feet"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/zane/front.svg",
  39563. extra: 1260/1203,
  39564. bottom: 94/1354
  39565. }
  39566. },
  39567. back: {
  39568. height: math.unit(5.05, "feet"),
  39569. name: "Back",
  39570. image: {
  39571. source: "./media/characters/zane/back.svg",
  39572. extra: 893/829,
  39573. bottom: 30/923
  39574. }
  39575. },
  39576. werewolf: {
  39577. height: math.unit(11, "feet"),
  39578. name: "Werewolf",
  39579. image: {
  39580. source: "./media/characters/zane/werewolf.svg",
  39581. extra: 1383/1323,
  39582. bottom: 89/1472
  39583. }
  39584. },
  39585. foot: {
  39586. height: math.unit(1.46, "feet"),
  39587. name: "Foot",
  39588. image: {
  39589. source: "./media/characters/zane/foot.svg"
  39590. }
  39591. },
  39592. footFront: {
  39593. height: math.unit(0.784, "feet"),
  39594. name: "Foot (Front)",
  39595. image: {
  39596. source: "./media/characters/zane/foot-front.svg"
  39597. }
  39598. },
  39599. dick: {
  39600. height: math.unit(1.95, "feet"),
  39601. name: "Dick",
  39602. image: {
  39603. source: "./media/characters/zane/dick.svg"
  39604. }
  39605. },
  39606. dickWerewolf: {
  39607. height: math.unit(3.77, "feet"),
  39608. name: "Dick (Werewolf)",
  39609. image: {
  39610. source: "./media/characters/zane/dick.svg"
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(7 + 5/12, "feet"),
  39618. default: true
  39619. },
  39620. ]
  39621. ))
  39622. characterMakers.push(() => makeCharacter(
  39623. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39624. {
  39625. front: {
  39626. height: math.unit(6 + 2/12, "feet"),
  39627. weight: math.unit(284, "lb"),
  39628. name: "Front",
  39629. image: {
  39630. source: "./media/characters/benni-desparque/front.svg",
  39631. extra: 1353/1126,
  39632. bottom: 69/1422
  39633. }
  39634. },
  39635. },
  39636. [
  39637. {
  39638. name: "Civilian",
  39639. height: math.unit(6 + 2/12, "feet")
  39640. },
  39641. {
  39642. name: "Normal",
  39643. height: math.unit(98, "feet"),
  39644. default: true
  39645. },
  39646. {
  39647. name: "Kaiju Fighter",
  39648. height: math.unit(268, "feet")
  39649. },
  39650. ]
  39651. ))
  39652. characterMakers.push(() => makeCharacter(
  39653. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39654. {
  39655. front: {
  39656. height: math.unit(5, "feet"),
  39657. weight: math.unit(105, "lb"),
  39658. name: "Front",
  39659. image: {
  39660. source: "./media/characters/maxine/front.svg",
  39661. extra: 1386/1250,
  39662. bottom: 71/1457
  39663. }
  39664. },
  39665. },
  39666. [
  39667. {
  39668. name: "Normal",
  39669. height: math.unit(5, "feet"),
  39670. default: true
  39671. },
  39672. ]
  39673. ))
  39674. characterMakers.push(() => makeCharacter(
  39675. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39676. {
  39677. front: {
  39678. height: math.unit(11 + 7/12, "feet"),
  39679. weight: math.unit(9576, "lb"),
  39680. name: "Front",
  39681. image: {
  39682. source: "./media/characters/scaly/front.svg",
  39683. extra: 888/867,
  39684. bottom: 36/924
  39685. }
  39686. },
  39687. },
  39688. [
  39689. {
  39690. name: "Normal",
  39691. height: math.unit(11 + 7/12, "feet"),
  39692. default: true
  39693. },
  39694. ]
  39695. ))
  39696. characterMakers.push(() => makeCharacter(
  39697. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39698. {
  39699. front: {
  39700. height: math.unit(9, "inches"),
  39701. name: "Front",
  39702. image: {
  39703. source: "./media/characters/saelria/front.svg",
  39704. extra: 662/621,
  39705. bottom: 12/674
  39706. }
  39707. },
  39708. },
  39709. [
  39710. {
  39711. name: "Tiny",
  39712. height: math.unit(9, "inches"),
  39713. default: true
  39714. },
  39715. ]
  39716. ))
  39717. characterMakers.push(() => makeCharacter(
  39718. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39719. {
  39720. front: {
  39721. height: math.unit(80, "meters"),
  39722. weight: math.unit(7000, "tonnes"),
  39723. name: "Front",
  39724. image: {
  39725. source: "./media/characters/tef/front.svg",
  39726. extra: 2036/1991,
  39727. bottom: 54/2090
  39728. }
  39729. },
  39730. back: {
  39731. height: math.unit(80, "meters"),
  39732. weight: math.unit(7000, "tonnes"),
  39733. name: "Back",
  39734. image: {
  39735. source: "./media/characters/tef/back.svg",
  39736. extra: 2036/1991,
  39737. bottom: 54/2090
  39738. }
  39739. },
  39740. },
  39741. [
  39742. {
  39743. name: "Macro",
  39744. height: math.unit(80, "meters"),
  39745. default: true
  39746. },
  39747. ]
  39748. ))
  39749. characterMakers.push(() => makeCharacter(
  39750. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39751. {
  39752. front: {
  39753. height: math.unit(13, "feet"),
  39754. weight: math.unit(6, "tons"),
  39755. name: "Front",
  39756. image: {
  39757. source: "./media/characters/rover/front.svg",
  39758. extra: 1233/1156,
  39759. bottom: 50/1283
  39760. }
  39761. },
  39762. back: {
  39763. height: math.unit(13, "feet"),
  39764. weight: math.unit(6, "tons"),
  39765. name: "Back",
  39766. image: {
  39767. source: "./media/characters/rover/back.svg",
  39768. extra: 1327/1258,
  39769. bottom: 39/1366
  39770. }
  39771. },
  39772. },
  39773. [
  39774. {
  39775. name: "Normal",
  39776. height: math.unit(13, "feet"),
  39777. default: true
  39778. },
  39779. {
  39780. name: "Macro",
  39781. height: math.unit(1300, "feet")
  39782. },
  39783. {
  39784. name: "Megamacro",
  39785. height: math.unit(1300, "miles")
  39786. },
  39787. {
  39788. name: "Gigamacro",
  39789. height: math.unit(1300000, "miles")
  39790. },
  39791. ]
  39792. ))
  39793. characterMakers.push(() => makeCharacter(
  39794. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39795. {
  39796. front: {
  39797. height: math.unit(6, "feet"),
  39798. weight: math.unit(150, "lb"),
  39799. name: "Front",
  39800. image: {
  39801. source: "./media/characters/ariz/front.svg",
  39802. extra: 1401/1346,
  39803. bottom: 5/1406
  39804. }
  39805. },
  39806. },
  39807. [
  39808. {
  39809. name: "Normal",
  39810. height: math.unit(10, "feet"),
  39811. default: true
  39812. },
  39813. ]
  39814. ))
  39815. characterMakers.push(() => makeCharacter(
  39816. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39817. {
  39818. front: {
  39819. height: math.unit(6, "feet"),
  39820. weight: math.unit(140, "lb"),
  39821. name: "Front",
  39822. image: {
  39823. source: "./media/characters/sigrun/front.svg",
  39824. extra: 1418/1359,
  39825. bottom: 27/1445
  39826. }
  39827. },
  39828. },
  39829. [
  39830. {
  39831. name: "Macro",
  39832. height: math.unit(35, "feet"),
  39833. default: true
  39834. },
  39835. ]
  39836. ))
  39837. characterMakers.push(() => makeCharacter(
  39838. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39839. {
  39840. front: {
  39841. height: math.unit(6, "feet"),
  39842. weight: math.unit(150, "lb"),
  39843. name: "Front",
  39844. image: {
  39845. source: "./media/characters/numin/front.svg",
  39846. extra: 1433/1388,
  39847. bottom: 12/1445
  39848. }
  39849. },
  39850. },
  39851. [
  39852. {
  39853. name: "Macro",
  39854. height: math.unit(21.5, "km"),
  39855. default: true
  39856. },
  39857. ]
  39858. ))
  39859. characterMakers.push(() => makeCharacter(
  39860. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39861. {
  39862. front: {
  39863. height: math.unit(6, "feet"),
  39864. weight: math.unit(463, "lb"),
  39865. name: "Front",
  39866. image: {
  39867. source: "./media/characters/melwa/front.svg",
  39868. extra: 1307/1248,
  39869. bottom: 93/1400
  39870. }
  39871. },
  39872. },
  39873. [
  39874. {
  39875. name: "Macro",
  39876. height: math.unit(50, "meters"),
  39877. default: true
  39878. },
  39879. ]
  39880. ))
  39881. characterMakers.push(() => makeCharacter(
  39882. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39883. {
  39884. front: {
  39885. height: math.unit(325, "feet"),
  39886. name: "Front",
  39887. image: {
  39888. source: "./media/characters/zorkaiju/front.svg",
  39889. extra: 1955/1814,
  39890. bottom: 40/1995
  39891. }
  39892. },
  39893. frontExtended: {
  39894. height: math.unit(325, "feet"),
  39895. name: "Front (Extended)",
  39896. image: {
  39897. source: "./media/characters/zorkaiju/front-extended.svg",
  39898. extra: 1955/1814,
  39899. bottom: 40/1995
  39900. }
  39901. },
  39902. side: {
  39903. height: math.unit(325, "feet"),
  39904. name: "Side",
  39905. image: {
  39906. source: "./media/characters/zorkaiju/side.svg",
  39907. extra: 1495/1396,
  39908. bottom: 17/1512
  39909. }
  39910. },
  39911. sideExtended: {
  39912. height: math.unit(325, "feet"),
  39913. name: "Side (Extended)",
  39914. image: {
  39915. source: "./media/characters/zorkaiju/side-extended.svg",
  39916. extra: 1495/1396,
  39917. bottom: 17/1512
  39918. }
  39919. },
  39920. back: {
  39921. height: math.unit(325, "feet"),
  39922. name: "Back",
  39923. image: {
  39924. source: "./media/characters/zorkaiju/back.svg",
  39925. extra: 1959/1821,
  39926. bottom: 31/1990
  39927. }
  39928. },
  39929. backExtended: {
  39930. height: math.unit(325, "feet"),
  39931. name: "Back (Extended)",
  39932. image: {
  39933. source: "./media/characters/zorkaiju/back-extended.svg",
  39934. extra: 1959/1821,
  39935. bottom: 31/1990
  39936. }
  39937. },
  39938. hand: {
  39939. height: math.unit(58.4, "feet"),
  39940. name: "Hand",
  39941. image: {
  39942. source: "./media/characters/zorkaiju/hand.svg"
  39943. }
  39944. },
  39945. handExtended: {
  39946. height: math.unit(61.4, "feet"),
  39947. name: "Hand (Extended)",
  39948. image: {
  39949. source: "./media/characters/zorkaiju/hand-extended.svg"
  39950. }
  39951. },
  39952. foot: {
  39953. height: math.unit(95, "feet"),
  39954. name: "Foot",
  39955. image: {
  39956. source: "./media/characters/zorkaiju/foot.svg"
  39957. }
  39958. },
  39959. leftArm: {
  39960. height: math.unit(59, "feet"),
  39961. name: "Left Arm",
  39962. image: {
  39963. source: "./media/characters/zorkaiju/left-arm.svg"
  39964. }
  39965. },
  39966. rightArm: {
  39967. height: math.unit(59, "feet"),
  39968. name: "Right Arm",
  39969. image: {
  39970. source: "./media/characters/zorkaiju/right-arm.svg"
  39971. }
  39972. },
  39973. tail: {
  39974. height: math.unit(104, "feet"),
  39975. name: "Tail",
  39976. image: {
  39977. source: "./media/characters/zorkaiju/tail.svg"
  39978. }
  39979. },
  39980. tailExtended: {
  39981. height: math.unit(104, "feet"),
  39982. name: "Tail (Extended)",
  39983. image: {
  39984. source: "./media/characters/zorkaiju/tail-extended.svg"
  39985. }
  39986. },
  39987. tailBottom: {
  39988. height: math.unit(104, "feet"),
  39989. name: "Tail Bottom",
  39990. image: {
  39991. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39992. }
  39993. },
  39994. crystal: {
  39995. height: math.unit(27.54, "feet"),
  39996. name: "Crystal",
  39997. image: {
  39998. source: "./media/characters/zorkaiju/crystal.svg"
  39999. }
  40000. },
  40001. },
  40002. [
  40003. {
  40004. name: "Kaiju",
  40005. height: math.unit(325, "feet"),
  40006. default: true
  40007. },
  40008. ]
  40009. ))
  40010. characterMakers.push(() => makeCharacter(
  40011. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40012. {
  40013. front: {
  40014. height: math.unit(6 + 1/12, "feet"),
  40015. weight: math.unit(115, "lb"),
  40016. name: "Front",
  40017. image: {
  40018. source: "./media/characters/bailey-belfry/front.svg",
  40019. extra: 1240/1121,
  40020. bottom: 101/1341
  40021. }
  40022. },
  40023. },
  40024. [
  40025. {
  40026. name: "Normal",
  40027. height: math.unit(6 + 1/12, "feet"),
  40028. default: true
  40029. },
  40030. ]
  40031. ))
  40032. characterMakers.push(() => makeCharacter(
  40033. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40034. {
  40035. side: {
  40036. height: math.unit(4, "meters"),
  40037. weight: math.unit(250, "kg"),
  40038. name: "Side",
  40039. image: {
  40040. source: "./media/characters/blacky/side.svg",
  40041. extra: 1027/919,
  40042. bottom: 43/1070
  40043. }
  40044. },
  40045. maw: {
  40046. height: math.unit(1, "meters"),
  40047. name: "Maw",
  40048. image: {
  40049. source: "./media/characters/blacky/maw.svg"
  40050. }
  40051. },
  40052. paw: {
  40053. height: math.unit(1, "meters"),
  40054. name: "Paw",
  40055. image: {
  40056. source: "./media/characters/blacky/paw.svg"
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Normal",
  40063. height: math.unit(4, "meters"),
  40064. default: true
  40065. },
  40066. ]
  40067. ))
  40068. characterMakers.push(() => makeCharacter(
  40069. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40070. {
  40071. front: {
  40072. height: math.unit(170, "cm"),
  40073. weight: math.unit(66, "kg"),
  40074. name: "Front",
  40075. image: {
  40076. source: "./media/characters/thux-ei/front.svg",
  40077. extra: 1109/1011,
  40078. bottom: 8/1117
  40079. }
  40080. },
  40081. },
  40082. [
  40083. {
  40084. name: "Normal",
  40085. height: math.unit(170, "cm"),
  40086. default: true
  40087. },
  40088. ]
  40089. ))
  40090. characterMakers.push(() => makeCharacter(
  40091. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40092. {
  40093. front: {
  40094. height: math.unit(5, "feet"),
  40095. weight: math.unit(120, "lb"),
  40096. name: "Front",
  40097. image: {
  40098. source: "./media/characters/roxanne-voltaire/front.svg",
  40099. extra: 1901/1779,
  40100. bottom: 53/1954
  40101. }
  40102. },
  40103. },
  40104. [
  40105. {
  40106. name: "Normal",
  40107. height: math.unit(5, "feet"),
  40108. default: true
  40109. },
  40110. {
  40111. name: "Giant",
  40112. height: math.unit(50, "feet")
  40113. },
  40114. {
  40115. name: "Titan",
  40116. height: math.unit(500, "feet")
  40117. },
  40118. {
  40119. name: "Macro",
  40120. height: math.unit(5000, "feet")
  40121. },
  40122. {
  40123. name: "Megamacro",
  40124. height: math.unit(50000, "feet")
  40125. },
  40126. {
  40127. name: "Gigamacro",
  40128. height: math.unit(500000, "feet")
  40129. },
  40130. {
  40131. name: "Teramacro",
  40132. height: math.unit(5e6, "feet")
  40133. },
  40134. ]
  40135. ))
  40136. characterMakers.push(() => makeCharacter(
  40137. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40138. {
  40139. front: {
  40140. height: math.unit(6 + 2/12, "feet"),
  40141. name: "Front",
  40142. image: {
  40143. source: "./media/characters/squeaks/front.svg",
  40144. extra: 1823/1768,
  40145. bottom: 138/1961
  40146. }
  40147. },
  40148. },
  40149. [
  40150. {
  40151. name: "Micro",
  40152. height: math.unit(0.5, "inches")
  40153. },
  40154. {
  40155. name: "Normal",
  40156. height: math.unit(6 + 2/12, "feet"),
  40157. default: true
  40158. },
  40159. {
  40160. name: "Macro",
  40161. height: math.unit(600, "feet")
  40162. },
  40163. ]
  40164. ))
  40165. characterMakers.push(() => makeCharacter(
  40166. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40167. {
  40168. front: {
  40169. height: math.unit(1.72, "meters"),
  40170. name: "Front",
  40171. image: {
  40172. source: "./media/characters/archinger/front.svg",
  40173. extra: 1861/1675,
  40174. bottom: 125/1986
  40175. }
  40176. },
  40177. back: {
  40178. height: math.unit(1.72, "meters"),
  40179. name: "Back",
  40180. image: {
  40181. source: "./media/characters/archinger/back.svg",
  40182. extra: 1844/1701,
  40183. bottom: 104/1948
  40184. }
  40185. },
  40186. cock: {
  40187. height: math.unit(0.59, "feet"),
  40188. name: "Cock",
  40189. image: {
  40190. source: "./media/characters/archinger/cock.svg"
  40191. }
  40192. },
  40193. },
  40194. [
  40195. {
  40196. name: "Normal",
  40197. height: math.unit(1.72, "meters"),
  40198. default: true
  40199. },
  40200. {
  40201. name: "Macro",
  40202. height: math.unit(84, "meters")
  40203. },
  40204. {
  40205. name: "Macro+",
  40206. height: math.unit(112, "meters")
  40207. },
  40208. {
  40209. name: "Macro++",
  40210. height: math.unit(960, "meters")
  40211. },
  40212. {
  40213. name: "Macro+++",
  40214. height: math.unit(4, "km")
  40215. },
  40216. {
  40217. name: "Macro++++",
  40218. height: math.unit(48, "km")
  40219. },
  40220. {
  40221. name: "Macro+++++",
  40222. height: math.unit(4500, "km")
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40228. {
  40229. front: {
  40230. height: math.unit(5 + 5/12, "feet"),
  40231. name: "Front",
  40232. image: {
  40233. source: "./media/characters/alsnapz/front.svg",
  40234. extra: 1157/1065,
  40235. bottom: 42/1199
  40236. }
  40237. },
  40238. },
  40239. [
  40240. {
  40241. name: "Normal",
  40242. height: math.unit(5 + 5/12, "feet"),
  40243. default: true
  40244. },
  40245. ]
  40246. ))
  40247. characterMakers.push(() => makeCharacter(
  40248. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40249. {
  40250. side: {
  40251. height: math.unit(3.2, "earths"),
  40252. name: "Side",
  40253. image: {
  40254. source: "./media/characters/mag/side.svg",
  40255. extra: 1331/1008,
  40256. bottom: 52/1383
  40257. }
  40258. },
  40259. wing: {
  40260. height: math.unit(1.94, "earths"),
  40261. name: "Wing",
  40262. image: {
  40263. source: "./media/characters/mag/wing.svg"
  40264. }
  40265. },
  40266. dick: {
  40267. height: math.unit(1.8, "earths"),
  40268. name: "Dick",
  40269. image: {
  40270. source: "./media/characters/mag/dick.svg"
  40271. }
  40272. },
  40273. ass: {
  40274. height: math.unit(1.33, "earths"),
  40275. name: "Ass",
  40276. image: {
  40277. source: "./media/characters/mag/ass.svg"
  40278. }
  40279. },
  40280. head: {
  40281. height: math.unit(1.1, "earths"),
  40282. name: "Head",
  40283. image: {
  40284. source: "./media/characters/mag/head.svg"
  40285. }
  40286. },
  40287. maw: {
  40288. height: math.unit(1.62, "earths"),
  40289. name: "Maw",
  40290. image: {
  40291. source: "./media/characters/mag/maw.svg"
  40292. }
  40293. },
  40294. },
  40295. [
  40296. {
  40297. name: "Small",
  40298. height: math.unit(162, "feet")
  40299. },
  40300. {
  40301. name: "Normal",
  40302. height: math.unit(3.2, "earths"),
  40303. default: true
  40304. },
  40305. ]
  40306. ))
  40307. characterMakers.push(() => makeCharacter(
  40308. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40309. {
  40310. front: {
  40311. height: math.unit(512, "feet"),
  40312. weight: math.unit(63509, "tonnes"),
  40313. name: "Front",
  40314. image: {
  40315. source: "./media/characters/vorrel-harroc/front.svg",
  40316. extra: 1075/1063,
  40317. bottom: 62/1137
  40318. }
  40319. },
  40320. },
  40321. [
  40322. {
  40323. name: "Normal",
  40324. height: math.unit(10, "feet")
  40325. },
  40326. {
  40327. name: "Macro",
  40328. height: math.unit(512, "feet"),
  40329. default: true
  40330. },
  40331. {
  40332. name: "Megamacro",
  40333. height: math.unit(256, "miles")
  40334. },
  40335. {
  40336. name: "Gigamacro",
  40337. height: math.unit(4096, "miles")
  40338. },
  40339. ]
  40340. ))
  40341. characterMakers.push(() => makeCharacter(
  40342. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40343. {
  40344. side: {
  40345. height: math.unit(50, "feet"),
  40346. name: "Side",
  40347. image: {
  40348. source: "./media/characters/froimar/side.svg",
  40349. extra: 855/638,
  40350. bottom: 99/954
  40351. }
  40352. },
  40353. },
  40354. [
  40355. {
  40356. name: "Macro",
  40357. height: math.unit(50, "feet"),
  40358. default: true
  40359. },
  40360. ]
  40361. ))
  40362. characterMakers.push(() => makeCharacter(
  40363. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40364. {
  40365. front: {
  40366. height: math.unit(210, "miles"),
  40367. name: "Front",
  40368. image: {
  40369. source: "./media/characters/timothy/front.svg",
  40370. extra: 1007/943,
  40371. bottom: 62/1069
  40372. }
  40373. },
  40374. frontSkirt: {
  40375. height: math.unit(210, "miles"),
  40376. name: "Front (Skirt)",
  40377. image: {
  40378. source: "./media/characters/timothy/front-skirt.svg",
  40379. extra: 1007/943,
  40380. bottom: 62/1069
  40381. }
  40382. },
  40383. frontCoat: {
  40384. height: math.unit(210, "miles"),
  40385. name: "Front (Coat)",
  40386. image: {
  40387. source: "./media/characters/timothy/front-coat.svg",
  40388. extra: 1007/943,
  40389. bottom: 62/1069
  40390. }
  40391. },
  40392. },
  40393. [
  40394. {
  40395. name: "Macro",
  40396. height: math.unit(210, "miles"),
  40397. default: true
  40398. },
  40399. {
  40400. name: "Megamacro",
  40401. height: math.unit(210000, "miles")
  40402. },
  40403. ]
  40404. ))
  40405. characterMakers.push(() => makeCharacter(
  40406. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40407. {
  40408. front: {
  40409. height: math.unit(188, "feet"),
  40410. name: "Front",
  40411. image: {
  40412. source: "./media/characters/pyotr/front.svg",
  40413. extra: 1912/1826,
  40414. bottom: 18/1930
  40415. }
  40416. },
  40417. },
  40418. [
  40419. {
  40420. name: "Macro",
  40421. height: math.unit(188, "feet"),
  40422. default: true
  40423. },
  40424. {
  40425. name: "Megamacro",
  40426. height: math.unit(8, "miles")
  40427. },
  40428. ]
  40429. ))
  40430. characterMakers.push(() => makeCharacter(
  40431. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40432. {
  40433. side: {
  40434. height: math.unit(10, "feet"),
  40435. weight: math.unit(4500, "lb"),
  40436. name: "Side",
  40437. image: {
  40438. source: "./media/characters/ackart/side.svg",
  40439. extra: 1776/1668,
  40440. bottom: 116/1892
  40441. }
  40442. },
  40443. },
  40444. [
  40445. {
  40446. name: "Normal",
  40447. height: math.unit(10, "feet"),
  40448. default: true
  40449. },
  40450. ]
  40451. ))
  40452. characterMakers.push(() => makeCharacter(
  40453. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40454. {
  40455. side: {
  40456. height: math.unit(21, "feet"),
  40457. name: "Side",
  40458. image: {
  40459. source: "./media/characters/nolow/side.svg",
  40460. extra: 1484/1434,
  40461. bottom: 85/1569
  40462. }
  40463. },
  40464. sideErect: {
  40465. height: math.unit(21, "feet"),
  40466. name: "Side-erect",
  40467. image: {
  40468. source: "./media/characters/nolow/side-erect.svg",
  40469. extra: 1484/1434,
  40470. bottom: 85/1569
  40471. }
  40472. },
  40473. },
  40474. [
  40475. {
  40476. name: "Regular",
  40477. height: math.unit(12, "feet")
  40478. },
  40479. {
  40480. name: "Big Chee",
  40481. height: math.unit(21, "feet"),
  40482. default: true
  40483. },
  40484. ]
  40485. ))
  40486. characterMakers.push(() => makeCharacter(
  40487. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40488. {
  40489. front: {
  40490. height: math.unit(7, "feet"),
  40491. weight: math.unit(250, "lb"),
  40492. name: "Front",
  40493. image: {
  40494. source: "./media/characters/nines/front.svg",
  40495. extra: 1741/1607,
  40496. bottom: 41/1782
  40497. }
  40498. },
  40499. side: {
  40500. height: math.unit(7, "feet"),
  40501. weight: math.unit(250, "lb"),
  40502. name: "Side",
  40503. image: {
  40504. source: "./media/characters/nines/side.svg",
  40505. extra: 1854/1735,
  40506. bottom: 93/1947
  40507. }
  40508. },
  40509. back: {
  40510. height: math.unit(7, "feet"),
  40511. weight: math.unit(250, "lb"),
  40512. name: "Back",
  40513. image: {
  40514. source: "./media/characters/nines/back.svg",
  40515. extra: 1748/1615,
  40516. bottom: 20/1768
  40517. }
  40518. },
  40519. },
  40520. [
  40521. {
  40522. name: "Megamacro",
  40523. height: math.unit(99, "km"),
  40524. default: true
  40525. },
  40526. ]
  40527. ))
  40528. characterMakers.push(() => makeCharacter(
  40529. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40530. {
  40531. front: {
  40532. height: math.unit(5 + 10/12, "feet"),
  40533. weight: math.unit(210, "lb"),
  40534. name: "Front",
  40535. image: {
  40536. source: "./media/characters/zenith/front.svg",
  40537. extra: 1531/1452,
  40538. bottom: 198/1729
  40539. }
  40540. },
  40541. back: {
  40542. height: math.unit(5 + 10/12, "feet"),
  40543. weight: math.unit(210, "lb"),
  40544. name: "Back",
  40545. image: {
  40546. source: "./media/characters/zenith/back.svg",
  40547. extra: 1571/1487,
  40548. bottom: 75/1646
  40549. }
  40550. },
  40551. },
  40552. [
  40553. {
  40554. name: "Normal",
  40555. height: math.unit(5 + 10/12, "feet"),
  40556. default: true
  40557. }
  40558. ]
  40559. ))
  40560. characterMakers.push(() => makeCharacter(
  40561. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40562. {
  40563. front: {
  40564. height: math.unit(4, "feet"),
  40565. weight: math.unit(60, "lb"),
  40566. name: "Front",
  40567. image: {
  40568. source: "./media/characters/jasper/front.svg",
  40569. extra: 1450/1379,
  40570. bottom: 19/1469
  40571. }
  40572. },
  40573. },
  40574. [
  40575. {
  40576. name: "Normal",
  40577. height: math.unit(4, "feet"),
  40578. default: true
  40579. },
  40580. ]
  40581. ))
  40582. characterMakers.push(() => makeCharacter(
  40583. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40584. {
  40585. front: {
  40586. height: math.unit(6 + 5/12, "feet"),
  40587. weight: math.unit(290, "lb"),
  40588. name: "Front",
  40589. image: {
  40590. source: "./media/characters/tiberius-thyben/front.svg",
  40591. extra: 757/739,
  40592. bottom: 39/796
  40593. }
  40594. },
  40595. },
  40596. [
  40597. {
  40598. name: "Micro",
  40599. height: math.unit(1.5, "inches")
  40600. },
  40601. {
  40602. name: "Normal",
  40603. height: math.unit(6 + 5/12, "feet"),
  40604. default: true
  40605. },
  40606. {
  40607. name: "Macro",
  40608. height: math.unit(300, "feet")
  40609. },
  40610. ]
  40611. ))
  40612. characterMakers.push(() => makeCharacter(
  40613. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40614. {
  40615. front: {
  40616. height: math.unit(5 + 6/12, "feet"),
  40617. weight: math.unit(60, "kg"),
  40618. name: "Front",
  40619. image: {
  40620. source: "./media/characters/sabre/front.svg",
  40621. extra: 738/671,
  40622. bottom: 27/765
  40623. }
  40624. },
  40625. },
  40626. [
  40627. {
  40628. name: "Teeny",
  40629. height: math.unit(2, "inches")
  40630. },
  40631. {
  40632. name: "Smol",
  40633. height: math.unit(8, "inches")
  40634. },
  40635. {
  40636. name: "Normal",
  40637. height: math.unit(5 + 6/12, "feet"),
  40638. default: true
  40639. },
  40640. {
  40641. name: "Mini-Macro",
  40642. height: math.unit(15, "feet")
  40643. },
  40644. {
  40645. name: "Macro",
  40646. height: math.unit(50, "feet")
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40652. {
  40653. front: {
  40654. height: math.unit(6 + 4/12, "feet"),
  40655. weight: math.unit(170, "lb"),
  40656. name: "Front",
  40657. image: {
  40658. source: "./media/characters/charlie/front.svg",
  40659. extra: 1348/1228,
  40660. bottom: 15/1363
  40661. }
  40662. },
  40663. },
  40664. [
  40665. {
  40666. name: "Macro",
  40667. height: math.unit(1700, "meters"),
  40668. default: true
  40669. },
  40670. {
  40671. name: "MegaMacro",
  40672. height: math.unit(20400, "meters")
  40673. },
  40674. ]
  40675. ))
  40676. characterMakers.push(() => makeCharacter(
  40677. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40678. {
  40679. front: {
  40680. height: math.unit(6 + 3/12, "feet"),
  40681. weight: math.unit(185, "lb"),
  40682. name: "Front",
  40683. image: {
  40684. source: "./media/characters/susan-grant/front.svg",
  40685. extra: 1351/1327,
  40686. bottom: 26/1377
  40687. }
  40688. },
  40689. },
  40690. [
  40691. {
  40692. name: "Normal",
  40693. height: math.unit(6 + 3/12, "feet"),
  40694. default: true
  40695. },
  40696. {
  40697. name: "Macro",
  40698. height: math.unit(225, "feet")
  40699. },
  40700. {
  40701. name: "Macro+",
  40702. height: math.unit(900, "feet")
  40703. },
  40704. {
  40705. name: "MegaMacro",
  40706. height: math.unit(14400, "feet")
  40707. },
  40708. ]
  40709. ))
  40710. characterMakers.push(() => makeCharacter(
  40711. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40712. {
  40713. front: {
  40714. height: math.unit(5 + 4/12, "feet"),
  40715. weight: math.unit(110, "lb"),
  40716. name: "Front",
  40717. image: {
  40718. source: "./media/characters/axel-isanov/front.svg",
  40719. extra: 1096/1065,
  40720. bottom: 13/1109
  40721. }
  40722. },
  40723. },
  40724. [
  40725. {
  40726. name: "Normal",
  40727. height: math.unit(5 + 4/12, "feet"),
  40728. default: true
  40729. },
  40730. ]
  40731. ))
  40732. characterMakers.push(() => makeCharacter(
  40733. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40734. {
  40735. front: {
  40736. height: math.unit(9, "feet"),
  40737. weight: math.unit(467, "lb"),
  40738. name: "Front",
  40739. image: {
  40740. source: "./media/characters/necahual/front.svg",
  40741. extra: 920/873,
  40742. bottom: 26/946
  40743. }
  40744. },
  40745. back: {
  40746. height: math.unit(9, "feet"),
  40747. weight: math.unit(467, "lb"),
  40748. name: "Back",
  40749. image: {
  40750. source: "./media/characters/necahual/back.svg",
  40751. extra: 930/884,
  40752. bottom: 16/946
  40753. }
  40754. },
  40755. frontUnderwear: {
  40756. height: math.unit(9, "feet"),
  40757. weight: math.unit(467, "lb"),
  40758. name: "Front (Underwear)",
  40759. image: {
  40760. source: "./media/characters/necahual/front-underwear.svg",
  40761. extra: 920/873,
  40762. bottom: 26/946
  40763. }
  40764. },
  40765. frontDressed: {
  40766. height: math.unit(9, "feet"),
  40767. weight: math.unit(467, "lb"),
  40768. name: "Front (Dressed)",
  40769. image: {
  40770. source: "./media/characters/necahual/front-dressed.svg",
  40771. extra: 920/873,
  40772. bottom: 26/946
  40773. }
  40774. },
  40775. },
  40776. [
  40777. {
  40778. name: "Comprsesed",
  40779. height: math.unit(9, "feet")
  40780. },
  40781. {
  40782. name: "Natural",
  40783. height: math.unit(15, "feet"),
  40784. default: true
  40785. },
  40786. {
  40787. name: "Boosted",
  40788. height: math.unit(50, "feet")
  40789. },
  40790. {
  40791. name: "Boosted+",
  40792. height: math.unit(150, "feet")
  40793. },
  40794. {
  40795. name: "Max",
  40796. height: math.unit(500, "feet")
  40797. },
  40798. ]
  40799. ))
  40800. characterMakers.push(() => makeCharacter(
  40801. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40802. {
  40803. front: {
  40804. height: math.unit(22 + 1/12, "feet"),
  40805. weight: math.unit(3200, "lb"),
  40806. name: "Front",
  40807. image: {
  40808. source: "./media/characters/theo-acacia/front.svg",
  40809. extra: 1796/1741,
  40810. bottom: 83/1879
  40811. }
  40812. },
  40813. frontUnderwear: {
  40814. height: math.unit(22 + 1/12, "feet"),
  40815. weight: math.unit(3200, "lb"),
  40816. name: "Front (Underwear)",
  40817. image: {
  40818. source: "./media/characters/theo-acacia/front-underwear.svg",
  40819. extra: 1796/1741,
  40820. bottom: 83/1879
  40821. }
  40822. },
  40823. frontNude: {
  40824. height: math.unit(22 + 1/12, "feet"),
  40825. weight: math.unit(3200, "lb"),
  40826. name: "Front (Nude)",
  40827. image: {
  40828. source: "./media/characters/theo-acacia/front-nude.svg",
  40829. extra: 1796/1741,
  40830. bottom: 83/1879
  40831. }
  40832. },
  40833. },
  40834. [
  40835. {
  40836. name: "Normal",
  40837. height: math.unit(22 + 1/12, "feet"),
  40838. default: true
  40839. },
  40840. ]
  40841. ))
  40842. characterMakers.push(() => makeCharacter(
  40843. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40844. {
  40845. front: {
  40846. height: math.unit(20, "feet"),
  40847. name: "Front",
  40848. image: {
  40849. source: "./media/characters/astra/front.svg",
  40850. extra: 1850/1714,
  40851. bottom: 106/1956
  40852. }
  40853. },
  40854. frontUndressed: {
  40855. height: math.unit(20, "feet"),
  40856. name: "Front (Undressed)",
  40857. image: {
  40858. source: "./media/characters/astra/front-undressed.svg",
  40859. extra: 1926/1749,
  40860. bottom: 0/1926
  40861. }
  40862. },
  40863. hand: {
  40864. height: math.unit(1.53, "feet"),
  40865. name: "Hand",
  40866. image: {
  40867. source: "./media/characters/astra/hand.svg"
  40868. }
  40869. },
  40870. paw: {
  40871. height: math.unit(1.53, "feet"),
  40872. name: "Paw",
  40873. image: {
  40874. source: "./media/characters/astra/paw.svg"
  40875. }
  40876. },
  40877. },
  40878. [
  40879. {
  40880. name: "Smallest",
  40881. height: math.unit(20, "feet")
  40882. },
  40883. {
  40884. name: "Normal",
  40885. height: math.unit(1e9, "miles"),
  40886. default: true
  40887. },
  40888. {
  40889. name: "Larger",
  40890. height: math.unit(5, "multiverses")
  40891. },
  40892. {
  40893. name: "Largest",
  40894. height: math.unit(1e9, "multiverses")
  40895. },
  40896. ]
  40897. ))
  40898. characterMakers.push(() => makeCharacter(
  40899. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40900. {
  40901. front: {
  40902. height: math.unit(8, "feet"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/breanna/front.svg",
  40906. extra: 1912/1632,
  40907. bottom: 33/1945
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Smallest",
  40914. height: math.unit(8, "feet")
  40915. },
  40916. {
  40917. name: "Normal",
  40918. height: math.unit(1, "mile"),
  40919. default: true
  40920. },
  40921. {
  40922. name: "Maximum",
  40923. height: math.unit(1500000000000, "lightyears")
  40924. },
  40925. ]
  40926. ))
  40927. characterMakers.push(() => makeCharacter(
  40928. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40929. {
  40930. front: {
  40931. height: math.unit(5 + 11/12, "feet"),
  40932. weight: math.unit(155, "lb"),
  40933. name: "Front",
  40934. image: {
  40935. source: "./media/characters/cai/front.svg",
  40936. extra: 1823/1702,
  40937. bottom: 32/1855
  40938. }
  40939. },
  40940. back: {
  40941. height: math.unit(5 + 11/12, "feet"),
  40942. weight: math.unit(155, "lb"),
  40943. name: "Back",
  40944. image: {
  40945. source: "./media/characters/cai/back.svg",
  40946. extra: 1809/1708,
  40947. bottom: 31/1840
  40948. }
  40949. },
  40950. },
  40951. [
  40952. {
  40953. name: "Normal",
  40954. height: math.unit(5 + 11/12, "feet"),
  40955. default: true
  40956. },
  40957. {
  40958. name: "Big",
  40959. height: math.unit(15, "feet")
  40960. },
  40961. {
  40962. name: "Macro",
  40963. height: math.unit(200, "feet")
  40964. },
  40965. ]
  40966. ))
  40967. characterMakers.push(() => makeCharacter(
  40968. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40969. {
  40970. front: {
  40971. height: math.unit(5 + 6/12, "feet"),
  40972. weight: math.unit(160, "lb"),
  40973. name: "Front",
  40974. image: {
  40975. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40976. extra: 1227/1174,
  40977. bottom: 37/1264
  40978. }
  40979. },
  40980. },
  40981. [
  40982. {
  40983. name: "Macro",
  40984. height: math.unit(444, "meters"),
  40985. default: true
  40986. },
  40987. ]
  40988. ))
  40989. characterMakers.push(() => makeCharacter(
  40990. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40991. {
  40992. front: {
  40993. height: math.unit(18 + 7/12, "feet"),
  40994. name: "Front",
  40995. image: {
  40996. source: "./media/characters/rex/front.svg",
  40997. extra: 1941/1807,
  40998. bottom: 66/2007
  40999. }
  41000. },
  41001. back: {
  41002. height: math.unit(18 + 7/12, "feet"),
  41003. name: "Back",
  41004. image: {
  41005. source: "./media/characters/rex/back.svg",
  41006. extra: 1937/1822,
  41007. bottom: 42/1979
  41008. }
  41009. },
  41010. boot: {
  41011. height: math.unit(3.45, "feet"),
  41012. name: "Boot",
  41013. image: {
  41014. source: "./media/characters/rex/boot.svg"
  41015. }
  41016. },
  41017. paw: {
  41018. height: math.unit(4.17, "feet"),
  41019. name: "Paw",
  41020. image: {
  41021. source: "./media/characters/rex/paw.svg"
  41022. }
  41023. },
  41024. head: {
  41025. height: math.unit(6.728, "feet"),
  41026. name: "Head",
  41027. image: {
  41028. source: "./media/characters/rex/head.svg"
  41029. }
  41030. },
  41031. },
  41032. [
  41033. {
  41034. name: "Nano",
  41035. height: math.unit(18 + 7/12, "feet")
  41036. },
  41037. {
  41038. name: "Micro",
  41039. height: math.unit(1.5, "megameters")
  41040. },
  41041. {
  41042. name: "Normal",
  41043. height: math.unit(440, "megameters"),
  41044. default: true
  41045. },
  41046. {
  41047. name: "Macro",
  41048. height: math.unit(2.5, "gigameters")
  41049. },
  41050. {
  41051. name: "Gigamacro",
  41052. height: math.unit(2, "galaxies")
  41053. },
  41054. ]
  41055. ))
  41056. characterMakers.push(() => makeCharacter(
  41057. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41058. {
  41059. side: {
  41060. height: math.unit(32, "feet"),
  41061. weight: math.unit(250000, "lb"),
  41062. name: "Side",
  41063. image: {
  41064. source: "./media/characters/silverwing/side.svg",
  41065. extra: 1100/1019,
  41066. bottom: 204/1304
  41067. }
  41068. },
  41069. },
  41070. [
  41071. {
  41072. name: "Normal",
  41073. height: math.unit(32, "feet"),
  41074. default: true
  41075. },
  41076. ]
  41077. ))
  41078. characterMakers.push(() => makeCharacter(
  41079. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41080. {
  41081. front: {
  41082. height: math.unit(6 + 6/12, "feet"),
  41083. weight: math.unit(350, "lb"),
  41084. name: "Front",
  41085. image: {
  41086. source: "./media/characters/tristan-hawthorne/front.svg",
  41087. extra: 1159/1124,
  41088. bottom: 37/1196
  41089. }
  41090. },
  41091. },
  41092. [
  41093. {
  41094. name: "Normal",
  41095. height: math.unit(6 + 6/12, "feet"),
  41096. default: true
  41097. },
  41098. ]
  41099. ))
  41100. characterMakers.push(() => makeCharacter(
  41101. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41102. {
  41103. front: {
  41104. height: math.unit(5 + 11/12, "feet"),
  41105. weight: math.unit(190, "lb"),
  41106. name: "Front",
  41107. image: {
  41108. source: "./media/characters/mizu/front.svg",
  41109. extra: 1988/1788,
  41110. bottom: 14/2002
  41111. }
  41112. },
  41113. },
  41114. [
  41115. {
  41116. name: "Normal",
  41117. height: math.unit(5 + 11/12, "feet"),
  41118. default: true
  41119. },
  41120. ]
  41121. ))
  41122. characterMakers.push(() => makeCharacter(
  41123. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41124. {
  41125. front: {
  41126. height: math.unit(6, "feet"),
  41127. name: "Front",
  41128. image: {
  41129. source: "./media/characters/moonlight-rose-terra/front.svg",
  41130. extra: 1434/1252,
  41131. bottom: 48/1482
  41132. }
  41133. },
  41134. },
  41135. [
  41136. {
  41137. name: "TRAPPIST-1D",
  41138. height: math.unit(4992*2, "km")
  41139. },
  41140. {
  41141. name: "Earth",
  41142. height: math.unit(6367*2, "km"),
  41143. default: true
  41144. },
  41145. {
  41146. name: "Kepler-22b",
  41147. height: math.unit(15282*2, "km")
  41148. },
  41149. ]
  41150. ))
  41151. characterMakers.push(() => makeCharacter(
  41152. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41153. {
  41154. front: {
  41155. height: math.unit(6, "feet"),
  41156. name: "Front",
  41157. image: {
  41158. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41159. extra: 1851/1712,
  41160. bottom: 0/1851
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Enceladus",
  41167. height: math.unit(513*2, "km")
  41168. },
  41169. {
  41170. name: "Europe",
  41171. height: math.unit(1560*2, "km")
  41172. },
  41173. {
  41174. name: "Neptune",
  41175. height: math.unit(24622*2, "km"),
  41176. default: true
  41177. },
  41178. {
  41179. name: "CoRoT-9b",
  41180. height: math.unit(75067*2, "km")
  41181. },
  41182. ]
  41183. ))
  41184. characterMakers.push(() => makeCharacter(
  41185. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41186. {
  41187. front: {
  41188. height: math.unit(6, "feet"),
  41189. name: "Front",
  41190. image: {
  41191. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41192. extra: 1367/1286,
  41193. bottom: 55/1422
  41194. }
  41195. },
  41196. },
  41197. [
  41198. {
  41199. name: "Saturn",
  41200. height: math.unit(58232*2, "km")
  41201. },
  41202. {
  41203. name: "Jupiter",
  41204. height: math.unit(69911*2, "km"),
  41205. default: true
  41206. },
  41207. {
  41208. name: "HD 100546 b",
  41209. height: math.unit(482938, "km")
  41210. },
  41211. ]
  41212. ))
  41213. characterMakers.push(() => makeCharacter(
  41214. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41215. {
  41216. front: {
  41217. height: math.unit(1.7, "feet"),
  41218. weight: math.unit(50, "lb"),
  41219. name: "Front",
  41220. image: {
  41221. source: "./media/characters/dechroma/front.svg",
  41222. extra: 1095/859,
  41223. bottom: 64/1159
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(1.7, "feet"),
  41231. default: true
  41232. },
  41233. ]
  41234. ))
  41235. characterMakers.push(() => makeCharacter(
  41236. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41237. {
  41238. side: {
  41239. height: math.unit(30, "feet"),
  41240. name: "Side",
  41241. image: {
  41242. source: "./media/characters/veluren-thanazel/side.svg",
  41243. extra: 1611/633,
  41244. bottom: 118/1729
  41245. }
  41246. },
  41247. front: {
  41248. height: math.unit(30, "feet"),
  41249. name: "Front",
  41250. image: {
  41251. source: "./media/characters/veluren-thanazel/front.svg",
  41252. extra: 1486/636,
  41253. bottom: 238/1724
  41254. }
  41255. },
  41256. head: {
  41257. height: math.unit(21.4, "feet"),
  41258. name: "Head",
  41259. image: {
  41260. source: "./media/characters/veluren-thanazel/head.svg"
  41261. }
  41262. },
  41263. genitals: {
  41264. height: math.unit(19.4, "feet"),
  41265. name: "Genitals",
  41266. image: {
  41267. source: "./media/characters/veluren-thanazel/genitals.svg"
  41268. }
  41269. },
  41270. },
  41271. [
  41272. {
  41273. name: "Social",
  41274. height: math.unit(6, "feet")
  41275. },
  41276. {
  41277. name: "Play",
  41278. height: math.unit(12, "feet")
  41279. },
  41280. {
  41281. name: "True",
  41282. height: math.unit(30, "feet"),
  41283. default: true
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41289. {
  41290. front: {
  41291. height: math.unit(7 + 6/12, "feet"),
  41292. weight: math.unit(500, "kg"),
  41293. name: "Front",
  41294. image: {
  41295. source: "./media/characters/arcturas/front.svg",
  41296. extra: 1700/1500,
  41297. bottom: 145/1845
  41298. }
  41299. },
  41300. },
  41301. [
  41302. {
  41303. name: "Normal",
  41304. height: math.unit(7 + 6/12, "feet"),
  41305. default: true
  41306. },
  41307. ]
  41308. ))
  41309. characterMakers.push(() => makeCharacter(
  41310. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41311. {
  41312. side: {
  41313. height: math.unit(6, "feet"),
  41314. weight: math.unit(2, "tons"),
  41315. name: "Side",
  41316. image: {
  41317. source: "./media/characters/vitaen/side.svg",
  41318. extra: 1157/617,
  41319. bottom: 122/1279
  41320. }
  41321. },
  41322. },
  41323. [
  41324. {
  41325. name: "Normal",
  41326. height: math.unit(6, "feet"),
  41327. default: true
  41328. },
  41329. ]
  41330. ))
  41331. characterMakers.push(() => makeCharacter(
  41332. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41333. {
  41334. front: {
  41335. height: math.unit(19, "feet"),
  41336. name: "Front",
  41337. image: {
  41338. source: "./media/characters/fia-dreamweaver/front.svg",
  41339. extra: 1630/1504,
  41340. bottom: 25/1655
  41341. }
  41342. },
  41343. },
  41344. [
  41345. {
  41346. name: "Normal",
  41347. height: math.unit(19, "feet"),
  41348. default: true
  41349. },
  41350. ]
  41351. ))
  41352. characterMakers.push(() => makeCharacter(
  41353. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41354. {
  41355. front: {
  41356. height: math.unit(5 + 4/12, "feet"),
  41357. name: "Front",
  41358. image: {
  41359. source: "./media/characters/artan/front.svg",
  41360. extra: 1618/1535,
  41361. bottom: 46/1664
  41362. }
  41363. },
  41364. back: {
  41365. height: math.unit(5 + 4/12, "feet"),
  41366. name: "Back",
  41367. image: {
  41368. source: "./media/characters/artan/back.svg",
  41369. extra: 1618/1543,
  41370. bottom: 31/1649
  41371. }
  41372. },
  41373. },
  41374. [
  41375. {
  41376. name: "Normal",
  41377. height: math.unit(5 + 4/12, "feet"),
  41378. default: true
  41379. },
  41380. ]
  41381. ))
  41382. characterMakers.push(() => makeCharacter(
  41383. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41384. {
  41385. side: {
  41386. height: math.unit(182, "cm"),
  41387. weight: math.unit(1000, "lb"),
  41388. name: "Side",
  41389. image: {
  41390. source: "./media/characters/silver-dragon/side.svg",
  41391. extra: 710/287,
  41392. bottom: 88/798
  41393. }
  41394. },
  41395. },
  41396. [
  41397. {
  41398. name: "Normal",
  41399. height: math.unit(182, "cm"),
  41400. default: true
  41401. },
  41402. ]
  41403. ))
  41404. characterMakers.push(() => makeCharacter(
  41405. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41406. {
  41407. side: {
  41408. height: math.unit(6 + 6/12, "feet"),
  41409. weight: math.unit(1.5, "tons"),
  41410. name: "Side",
  41411. image: {
  41412. source: "./media/characters/zephyr/side.svg",
  41413. extra: 1433/586,
  41414. bottom: 109/1542
  41415. }
  41416. },
  41417. },
  41418. [
  41419. {
  41420. name: "Normal",
  41421. height: math.unit(6 + 6/12, "feet"),
  41422. default: true
  41423. },
  41424. ]
  41425. ))
  41426. characterMakers.push(() => makeCharacter(
  41427. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41428. {
  41429. side: {
  41430. height: math.unit(1, "feet"),
  41431. name: "Side",
  41432. image: {
  41433. source: "./media/characters/vixye/side.svg",
  41434. extra: 632/541,
  41435. bottom: 0/632
  41436. }
  41437. },
  41438. },
  41439. [
  41440. {
  41441. name: "Normal",
  41442. height: math.unit(1, "feet"),
  41443. default: true
  41444. },
  41445. {
  41446. name: "True",
  41447. height: math.unit(1e15, "multiverses")
  41448. },
  41449. ]
  41450. ))
  41451. characterMakers.push(() => makeCharacter(
  41452. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41453. {
  41454. front: {
  41455. height: math.unit(8 + 2/12, "feet"),
  41456. weight: math.unit(650, "lb"),
  41457. name: "Front",
  41458. image: {
  41459. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41460. extra: 1174/1137,
  41461. bottom: 82/1256
  41462. }
  41463. },
  41464. back: {
  41465. height: math.unit(8 + 2/12, "feet"),
  41466. weight: math.unit(650, "lb"),
  41467. name: "Back",
  41468. image: {
  41469. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41470. extra: 1204/1157,
  41471. bottom: 46/1250
  41472. }
  41473. },
  41474. },
  41475. [
  41476. {
  41477. name: "Wildform",
  41478. height: math.unit(8 + 2/12, "feet"),
  41479. default: true
  41480. },
  41481. ]
  41482. ))
  41483. characterMakers.push(() => makeCharacter(
  41484. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41485. {
  41486. front: {
  41487. height: math.unit(18, "feet"),
  41488. name: "Front",
  41489. image: {
  41490. source: "./media/characters/cyphin/front.svg",
  41491. extra: 970/886,
  41492. bottom: 42/1012
  41493. }
  41494. },
  41495. back: {
  41496. height: math.unit(18, "feet"),
  41497. name: "Back",
  41498. image: {
  41499. source: "./media/characters/cyphin/back.svg",
  41500. extra: 1009/894,
  41501. bottom: 24/1033
  41502. }
  41503. },
  41504. head: {
  41505. height: math.unit(5.05, "feet"),
  41506. name: "Head",
  41507. image: {
  41508. source: "./media/characters/cyphin/head.svg"
  41509. }
  41510. },
  41511. tailbud: {
  41512. height: math.unit(5, "feet"),
  41513. name: "Tailbud",
  41514. image: {
  41515. source: "./media/characters/cyphin/tailbud.svg"
  41516. }
  41517. },
  41518. },
  41519. [
  41520. ]
  41521. ))
  41522. characterMakers.push(() => makeCharacter(
  41523. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41524. {
  41525. side: {
  41526. height: math.unit(10, "feet"),
  41527. weight: math.unit(6, "tons"),
  41528. name: "Side",
  41529. image: {
  41530. source: "./media/characters/raijin/side.svg",
  41531. extra: 1529/613,
  41532. bottom: 337/1866
  41533. }
  41534. },
  41535. },
  41536. [
  41537. {
  41538. name: "Normal",
  41539. height: math.unit(10, "feet"),
  41540. default: true
  41541. },
  41542. ]
  41543. ))
  41544. characterMakers.push(() => makeCharacter(
  41545. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41546. {
  41547. side: {
  41548. height: math.unit(9, "feet"),
  41549. name: "Side",
  41550. image: {
  41551. source: "./media/characters/nilghais/side.svg",
  41552. extra: 1047/744,
  41553. bottom: 91/1138
  41554. }
  41555. },
  41556. head: {
  41557. height: math.unit(3.14, "feet"),
  41558. name: "Head",
  41559. image: {
  41560. source: "./media/characters/nilghais/head.svg"
  41561. }
  41562. },
  41563. mouth: {
  41564. height: math.unit(4.6, "feet"),
  41565. name: "Mouth",
  41566. image: {
  41567. source: "./media/characters/nilghais/mouth.svg"
  41568. }
  41569. },
  41570. wings: {
  41571. height: math.unit(24, "feet"),
  41572. name: "Wings",
  41573. image: {
  41574. source: "./media/characters/nilghais/wings.svg"
  41575. }
  41576. },
  41577. ass: {
  41578. height: math.unit(6.12, "feet"),
  41579. name: "Ass",
  41580. image: {
  41581. source: "./media/characters/nilghais/ass.svg"
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Normal",
  41588. height: math.unit(9, "feet"),
  41589. default: true
  41590. },
  41591. ]
  41592. ))
  41593. characterMakers.push(() => makeCharacter(
  41594. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41595. {
  41596. regular: {
  41597. height: math.unit(16 + 2/12, "feet"),
  41598. weight: math.unit(2300, "lb"),
  41599. name: "Regular",
  41600. image: {
  41601. source: "./media/characters/zolgar/regular.svg",
  41602. extra: 1246/1004,
  41603. bottom: 124/1370
  41604. }
  41605. },
  41606. boxers: {
  41607. height: math.unit(16 + 2/12, "feet"),
  41608. weight: math.unit(2300, "lb"),
  41609. name: "Boxers",
  41610. image: {
  41611. source: "./media/characters/zolgar/boxers.svg",
  41612. extra: 1246/1004,
  41613. bottom: 124/1370
  41614. }
  41615. },
  41616. armored: {
  41617. height: math.unit(16 + 2/12, "feet"),
  41618. weight: math.unit(2300, "lb"),
  41619. name: "Armored",
  41620. image: {
  41621. source: "./media/characters/zolgar/armored.svg",
  41622. extra: 1246/1004,
  41623. bottom: 124/1370
  41624. }
  41625. },
  41626. goth: {
  41627. height: math.unit(16 + 2/12, "feet"),
  41628. weight: math.unit(2300, "lb"),
  41629. name: "Goth",
  41630. image: {
  41631. source: "./media/characters/zolgar/goth.svg",
  41632. extra: 1246/1004,
  41633. bottom: 124/1370
  41634. }
  41635. },
  41636. },
  41637. [
  41638. {
  41639. name: "Shrunken Down",
  41640. height: math.unit(9 + 2/12, "feet")
  41641. },
  41642. {
  41643. name: "Normal",
  41644. height: math.unit(16 + 2/12, "feet"),
  41645. default: true
  41646. },
  41647. ]
  41648. ))
  41649. characterMakers.push(() => makeCharacter(
  41650. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41651. {
  41652. front: {
  41653. height: math.unit(6, "feet"),
  41654. weight: math.unit(168, "lb"),
  41655. name: "Front",
  41656. image: {
  41657. source: "./media/characters/luca/front.svg",
  41658. extra: 841/667,
  41659. bottom: 102/943
  41660. }
  41661. },
  41662. },
  41663. [
  41664. {
  41665. name: "Normal",
  41666. height: math.unit(6, "feet"),
  41667. default: true
  41668. },
  41669. ]
  41670. ))
  41671. characterMakers.push(() => makeCharacter(
  41672. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41673. {
  41674. side: {
  41675. height: math.unit(7 + 3/12, "feet"),
  41676. weight: math.unit(312, "lb"),
  41677. name: "Side",
  41678. image: {
  41679. source: "./media/characters/zezo/side.svg",
  41680. extra: 1192/1067,
  41681. bottom: 63/1255
  41682. }
  41683. },
  41684. },
  41685. [
  41686. {
  41687. name: "Normal",
  41688. height: math.unit(7 + 3/12, "feet"),
  41689. default: true
  41690. },
  41691. ]
  41692. ))
  41693. characterMakers.push(() => makeCharacter(
  41694. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41695. {
  41696. front: {
  41697. height: math.unit(5 + 5/12, "feet"),
  41698. weight: math.unit(170, "lb"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/mayso/front.svg",
  41702. extra: 1215/1108,
  41703. bottom: 16/1231
  41704. }
  41705. },
  41706. },
  41707. [
  41708. {
  41709. name: "Normal",
  41710. height: math.unit(5 + 5/12, "feet"),
  41711. default: true
  41712. },
  41713. ]
  41714. ))
  41715. characterMakers.push(() => makeCharacter(
  41716. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41717. {
  41718. front: {
  41719. height: math.unit(4 + 3/12, "feet"),
  41720. weight: math.unit(80, "lb"),
  41721. name: "Front",
  41722. image: {
  41723. source: "./media/characters/hess/front.svg",
  41724. extra: 1200/1123,
  41725. bottom: 16/1216
  41726. }
  41727. },
  41728. },
  41729. [
  41730. {
  41731. name: "Normal",
  41732. height: math.unit(4 + 3/12, "feet"),
  41733. default: true
  41734. },
  41735. ]
  41736. ))
  41737. characterMakers.push(() => makeCharacter(
  41738. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41739. {
  41740. front: {
  41741. height: math.unit(1.9, "meters"),
  41742. name: "Front",
  41743. image: {
  41744. source: "./media/characters/ashgar/front.svg",
  41745. extra: 1177/1146,
  41746. bottom: 99/1276
  41747. }
  41748. },
  41749. back: {
  41750. height: math.unit(1.9, "meters"),
  41751. name: "Back",
  41752. image: {
  41753. source: "./media/characters/ashgar/back.svg",
  41754. extra: 1201/1183,
  41755. bottom: 53/1254
  41756. }
  41757. },
  41758. feral: {
  41759. height: math.unit(1.4, "meters"),
  41760. name: "Feral",
  41761. image: {
  41762. source: "./media/characters/ashgar/feral.svg",
  41763. extra: 370/345,
  41764. bottom: 45/415
  41765. }
  41766. },
  41767. },
  41768. [
  41769. {
  41770. name: "Normal",
  41771. height: math.unit(1.9, "meters"),
  41772. default: true
  41773. },
  41774. ]
  41775. ))
  41776. characterMakers.push(() => makeCharacter(
  41777. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41778. {
  41779. regular: {
  41780. height: math.unit(6, "feet"),
  41781. weight: math.unit(220, "lb"),
  41782. name: "Regular",
  41783. image: {
  41784. source: "./media/characters/phillip/regular.svg",
  41785. extra: 1373/1277,
  41786. bottom: 75/1448
  41787. }
  41788. },
  41789. dressed: {
  41790. height: math.unit(6, "feet"),
  41791. weight: math.unit(220, "lb"),
  41792. name: "Dressed",
  41793. image: {
  41794. source: "./media/characters/phillip/dressed.svg",
  41795. extra: 1373/1277,
  41796. bottom: 75/1448
  41797. }
  41798. },
  41799. paw: {
  41800. height: math.unit(1.44, "feet"),
  41801. name: "Paw",
  41802. image: {
  41803. source: "./media/characters/phillip/paw.svg"
  41804. }
  41805. },
  41806. },
  41807. [
  41808. {
  41809. name: "Normal",
  41810. height: math.unit(6, "feet"),
  41811. default: true
  41812. },
  41813. ]
  41814. ))
  41815. characterMakers.push(() => makeCharacter(
  41816. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41817. {
  41818. side: {
  41819. height: math.unit(42, "feet"),
  41820. name: "Side",
  41821. image: {
  41822. source: "./media/characters/uvula/side.svg",
  41823. extra: 683/586,
  41824. bottom: 60/743
  41825. }
  41826. },
  41827. front: {
  41828. height: math.unit(42, "feet"),
  41829. name: "Front",
  41830. image: {
  41831. source: "./media/characters/uvula/front.svg",
  41832. extra: 705/613,
  41833. bottom: 54/759
  41834. }
  41835. },
  41836. maw: {
  41837. height: math.unit(23.5, "feet"),
  41838. name: "Maw",
  41839. image: {
  41840. source: "./media/characters/uvula/maw.svg"
  41841. }
  41842. },
  41843. },
  41844. [
  41845. {
  41846. name: "Original Size",
  41847. height: math.unit(14, "inches")
  41848. },
  41849. {
  41850. name: "Human Size",
  41851. height: math.unit(6, "feet")
  41852. },
  41853. {
  41854. name: "Big",
  41855. height: math.unit(42, "feet"),
  41856. default: true
  41857. },
  41858. {
  41859. name: "Bigger",
  41860. height: math.unit(100, "feet")
  41861. },
  41862. ]
  41863. ))
  41864. characterMakers.push(() => makeCharacter(
  41865. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41866. {
  41867. front: {
  41868. height: math.unit(5 + 11/12, "feet"),
  41869. name: "Front",
  41870. image: {
  41871. source: "./media/characters/lannah/front.svg",
  41872. extra: 1208/1113,
  41873. bottom: 97/1305
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Normal",
  41880. height: math.unit(5 + 11/12, "feet"),
  41881. default: true
  41882. },
  41883. ]
  41884. ))
  41885. characterMakers.push(() => makeCharacter(
  41886. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41887. {
  41888. front: {
  41889. height: math.unit(6 + 3/12, "feet"),
  41890. weight: math.unit(3.5, "tons"),
  41891. name: "Front",
  41892. image: {
  41893. source: "./media/characters/emberflame/front.svg",
  41894. extra: 1198/672,
  41895. bottom: 82/1280
  41896. }
  41897. },
  41898. side: {
  41899. height: math.unit(6 + 3/12, "feet"),
  41900. weight: math.unit(3.5, "tons"),
  41901. name: "Side",
  41902. image: {
  41903. source: "./media/characters/emberflame/side.svg",
  41904. extra: 938/527,
  41905. bottom: 56/994
  41906. }
  41907. },
  41908. },
  41909. [
  41910. {
  41911. name: "Normal",
  41912. height: math.unit(6 + 3/12, "feet"),
  41913. default: true
  41914. },
  41915. ]
  41916. ))
  41917. characterMakers.push(() => makeCharacter(
  41918. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41919. {
  41920. side: {
  41921. height: math.unit(17.5, "feet"),
  41922. weight: math.unit(35, "tons"),
  41923. name: "Side",
  41924. image: {
  41925. source: "./media/characters/sophie-ambrose/side.svg",
  41926. extra: 1573/1242,
  41927. bottom: 71/1644
  41928. }
  41929. },
  41930. maw: {
  41931. height: math.unit(7.4, "feet"),
  41932. name: "Maw",
  41933. image: {
  41934. source: "./media/characters/sophie-ambrose/maw.svg"
  41935. }
  41936. },
  41937. },
  41938. [
  41939. {
  41940. name: "Normal",
  41941. height: math.unit(17.5, "feet"),
  41942. default: true
  41943. },
  41944. ]
  41945. ))
  41946. characterMakers.push(() => makeCharacter(
  41947. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41948. {
  41949. front: {
  41950. height: math.unit(280, "feet"),
  41951. weight: math.unit(550, "tons"),
  41952. name: "Front",
  41953. image: {
  41954. source: "./media/characters/king-mugi/front.svg",
  41955. extra: 1102/947,
  41956. bottom: 104/1206
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "King Mugi",
  41963. height: math.unit(280, "feet"),
  41964. default: true
  41965. },
  41966. ]
  41967. ))
  41968. characterMakers.push(() => makeCharacter(
  41969. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41970. {
  41971. front: {
  41972. height: math.unit(64, "meters"),
  41973. name: "Front",
  41974. image: {
  41975. source: "./media/characters/nova-fox/front.svg",
  41976. extra: 1310/1246,
  41977. bottom: 65/1375
  41978. }
  41979. },
  41980. },
  41981. [
  41982. {
  41983. name: "Macro",
  41984. height: math.unit(64, "meters"),
  41985. default: true
  41986. },
  41987. ]
  41988. ))
  41989. characterMakers.push(() => makeCharacter(
  41990. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41991. {
  41992. front: {
  41993. height: math.unit(6 + 3/12, "feet"),
  41994. weight: math.unit(170, "lb"),
  41995. name: "Front",
  41996. image: {
  41997. source: "./media/characters/sam-bat/front.svg",
  41998. extra: 1601/1411,
  41999. bottom: 125/1726
  42000. }
  42001. },
  42002. back: {
  42003. height: math.unit(6 + 3/12, "feet"),
  42004. weight: math.unit(170, "lb"),
  42005. name: "Back",
  42006. image: {
  42007. source: "./media/characters/sam-bat/back.svg",
  42008. extra: 1577/1405,
  42009. bottom: 58/1635
  42010. }
  42011. },
  42012. },
  42013. [
  42014. {
  42015. name: "Normal",
  42016. height: math.unit(6 + 3/12, "feet"),
  42017. default: true
  42018. },
  42019. ]
  42020. ))
  42021. characterMakers.push(() => makeCharacter(
  42022. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42023. {
  42024. front: {
  42025. height: math.unit(59, "feet"),
  42026. weight: math.unit(40000, "lb"),
  42027. name: "Front",
  42028. image: {
  42029. source: "./media/characters/inari/front.svg",
  42030. extra: 1884/1350,
  42031. bottom: 95/1979
  42032. }
  42033. },
  42034. },
  42035. [
  42036. {
  42037. name: "Gigantamax",
  42038. height: math.unit(59, "feet"),
  42039. default: true
  42040. },
  42041. ]
  42042. ))
  42043. characterMakers.push(() => makeCharacter(
  42044. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42045. {
  42046. front: {
  42047. height: math.unit(5 + 8/12, "feet"),
  42048. name: "Front",
  42049. image: {
  42050. source: "./media/characters/elizabeth/front.svg",
  42051. extra: 1395/1298,
  42052. bottom: 54/1449
  42053. }
  42054. },
  42055. mouth: {
  42056. height: math.unit(1.97, "feet"),
  42057. name: "Mouth",
  42058. image: {
  42059. source: "./media/characters/elizabeth/mouth.svg"
  42060. }
  42061. },
  42062. foot: {
  42063. height: math.unit(1.17, "feet"),
  42064. name: "Foot",
  42065. image: {
  42066. source: "./media/characters/elizabeth/foot.svg"
  42067. }
  42068. },
  42069. },
  42070. [
  42071. {
  42072. name: "Normal",
  42073. height: math.unit(5 + 8/12, "feet"),
  42074. default: true
  42075. },
  42076. {
  42077. name: "Minimacro",
  42078. height: math.unit(18, "feet")
  42079. },
  42080. {
  42081. name: "Macro",
  42082. height: math.unit(180, "feet")
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42088. {
  42089. front: {
  42090. height: math.unit(5 + 2/12, "feet"),
  42091. name: "Front",
  42092. image: {
  42093. source: "./media/characters/october-gossamer/front.svg",
  42094. extra: 505/454,
  42095. bottom: 7/512
  42096. }
  42097. },
  42098. back: {
  42099. height: math.unit(5 + 2/12, "feet"),
  42100. name: "Back",
  42101. image: {
  42102. source: "./media/characters/october-gossamer/back.svg",
  42103. extra: 501/454,
  42104. bottom: 11/512
  42105. }
  42106. },
  42107. },
  42108. [
  42109. {
  42110. name: "Normal",
  42111. height: math.unit(5 + 2/12, "feet"),
  42112. default: true
  42113. },
  42114. ]
  42115. ))
  42116. characterMakers.push(() => makeCharacter(
  42117. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42118. {
  42119. front: {
  42120. height: math.unit(5, "feet"),
  42121. name: "Front",
  42122. image: {
  42123. source: "./media/characters/epiglottis/front.svg",
  42124. extra: 923/849,
  42125. bottom: 17/940
  42126. }
  42127. },
  42128. },
  42129. [
  42130. {
  42131. name: "Original Size",
  42132. height: math.unit(10, "inches")
  42133. },
  42134. {
  42135. name: "Human Size",
  42136. height: math.unit(5, "feet"),
  42137. default: true
  42138. },
  42139. {
  42140. name: "Big",
  42141. height: math.unit(25, "feet")
  42142. },
  42143. {
  42144. name: "Bigger",
  42145. height: math.unit(50, "feet")
  42146. },
  42147. {
  42148. name: "oh lawd",
  42149. height: math.unit(75, "feet")
  42150. },
  42151. ]
  42152. ))
  42153. characterMakers.push(() => makeCharacter(
  42154. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42155. {
  42156. front: {
  42157. height: math.unit(2 + 4/12, "feet"),
  42158. weight: math.unit(60, "lb"),
  42159. name: "Front",
  42160. image: {
  42161. source: "./media/characters/lerm/front.svg",
  42162. extra: 796/790,
  42163. bottom: 79/875
  42164. }
  42165. },
  42166. },
  42167. [
  42168. {
  42169. name: "Normal",
  42170. height: math.unit(2 + 4/12, "feet"),
  42171. default: true
  42172. },
  42173. ]
  42174. ))
  42175. characterMakers.push(() => makeCharacter(
  42176. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42177. {
  42178. front: {
  42179. height: math.unit(5.5, "feet"),
  42180. weight: math.unit(130, "lb"),
  42181. name: "Front",
  42182. image: {
  42183. source: "./media/characters/xena-nebadon/front.svg",
  42184. extra: 1828/1730,
  42185. bottom: 79/1907
  42186. }
  42187. },
  42188. },
  42189. [
  42190. {
  42191. name: "Tiny Puppy",
  42192. height: math.unit(3, "inches")
  42193. },
  42194. {
  42195. name: "Normal",
  42196. height: math.unit(5.5, "feet"),
  42197. default: true
  42198. },
  42199. {
  42200. name: "Lotta Lady",
  42201. height: math.unit(12, "feet")
  42202. },
  42203. {
  42204. name: "Pretty Big",
  42205. height: math.unit(100, "feet")
  42206. },
  42207. {
  42208. name: "Big",
  42209. height: math.unit(500, "feet")
  42210. },
  42211. {
  42212. name: "Skyscraper Toys",
  42213. height: math.unit(2500, "feet")
  42214. },
  42215. {
  42216. name: "Plane Catcher",
  42217. height: math.unit(8, "miles")
  42218. },
  42219. {
  42220. name: "Planet Toys",
  42221. height: math.unit(15, "earths")
  42222. },
  42223. {
  42224. name: "Stardust",
  42225. height: math.unit(0.25, "galaxies")
  42226. },
  42227. {
  42228. name: "Snacks",
  42229. height: math.unit(70, "universes")
  42230. },
  42231. ]
  42232. ))
  42233. characterMakers.push(() => makeCharacter(
  42234. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42235. {
  42236. front: {
  42237. height: math.unit(1.6, "meters"),
  42238. weight: math.unit(60, "kg"),
  42239. name: "Front",
  42240. image: {
  42241. source: "./media/characters/bounty/front.svg",
  42242. extra: 1426/1308,
  42243. bottom: 15/1441
  42244. }
  42245. },
  42246. back: {
  42247. height: math.unit(1.6, "meters"),
  42248. weight: math.unit(60, "kg"),
  42249. name: "Back",
  42250. image: {
  42251. source: "./media/characters/bounty/back.svg",
  42252. extra: 1417/1307,
  42253. bottom: 8/1425
  42254. }
  42255. },
  42256. },
  42257. [
  42258. {
  42259. name: "Normal",
  42260. height: math.unit(1.6, "meters"),
  42261. default: true
  42262. },
  42263. {
  42264. name: "Macro",
  42265. height: math.unit(300, "meters")
  42266. },
  42267. ]
  42268. ))
  42269. characterMakers.push(() => makeCharacter(
  42270. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42271. {
  42272. front: {
  42273. height: math.unit(2 + 8/12, "feet"),
  42274. weight: math.unit(15, "lb"),
  42275. name: "Front",
  42276. image: {
  42277. source: "./media/characters/mochi/front.svg",
  42278. extra: 1022/852,
  42279. bottom: 435/1457
  42280. }
  42281. },
  42282. back: {
  42283. height: math.unit(2 + 8/12, "feet"),
  42284. weight: math.unit(15, "lb"),
  42285. name: "Back",
  42286. image: {
  42287. source: "./media/characters/mochi/back.svg",
  42288. extra: 1335/1119,
  42289. bottom: 39/1374
  42290. }
  42291. },
  42292. bird: {
  42293. height: math.unit(2 + 8/12, "feet"),
  42294. weight: math.unit(15, "lb"),
  42295. name: "Bird",
  42296. image: {
  42297. source: "./media/characters/mochi/bird.svg",
  42298. extra: 1251/1113,
  42299. bottom: 178/1429
  42300. }
  42301. },
  42302. kaiju: {
  42303. height: math.unit(154, "feet"),
  42304. weight: math.unit(1e7, "lb"),
  42305. name: "Kaiju",
  42306. image: {
  42307. source: "./media/characters/mochi/kaiju.svg",
  42308. extra: 460/324,
  42309. bottom: 40/500
  42310. }
  42311. },
  42312. head: {
  42313. height: math.unit(1.21, "feet"),
  42314. name: "Head",
  42315. image: {
  42316. source: "./media/characters/mochi/head.svg"
  42317. }
  42318. },
  42319. alternateTail: {
  42320. height: math.unit(2 + 8/12, "feet"),
  42321. weight: math.unit(45, "lb"),
  42322. name: "Alternate Tail",
  42323. image: {
  42324. source: "./media/characters/mochi/alternate-tail.svg",
  42325. extra: 139/76,
  42326. bottom: 45/184
  42327. }
  42328. },
  42329. },
  42330. [
  42331. {
  42332. name: "Micro",
  42333. height: math.unit(2, "inches")
  42334. },
  42335. {
  42336. name: "Normal",
  42337. height: math.unit(2 + 8/12, "feet"),
  42338. default: true
  42339. },
  42340. {
  42341. name: "Macro",
  42342. height: math.unit(106, "feet")
  42343. },
  42344. ]
  42345. ))
  42346. characterMakers.push(() => makeCharacter(
  42347. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42348. {
  42349. front: {
  42350. height: math.unit(5.67, "feet"),
  42351. weight: math.unit(135, "lb"),
  42352. name: "Front",
  42353. image: {
  42354. source: "./media/characters/sarel/front.svg",
  42355. extra: 865/788,
  42356. bottom: 97/962
  42357. }
  42358. },
  42359. back: {
  42360. height: math.unit(5.67, "feet"),
  42361. weight: math.unit(135, "lb"),
  42362. name: "Back",
  42363. image: {
  42364. source: "./media/characters/sarel/back.svg",
  42365. extra: 857/777,
  42366. bottom: 32/889
  42367. }
  42368. },
  42369. chozoan: {
  42370. height: math.unit(5.67, "feet"),
  42371. weight: math.unit(135, "lb"),
  42372. name: "Chozoan",
  42373. image: {
  42374. source: "./media/characters/sarel/chozoan.svg",
  42375. extra: 865/788,
  42376. bottom: 97/962
  42377. }
  42378. },
  42379. current: {
  42380. height: math.unit(5.67, "feet"),
  42381. weight: math.unit(135, "lb"),
  42382. name: "Current",
  42383. image: {
  42384. source: "./media/characters/sarel/current.svg",
  42385. extra: 865/788,
  42386. bottom: 97/962
  42387. }
  42388. },
  42389. head: {
  42390. height: math.unit(1.77, "feet"),
  42391. name: "Head",
  42392. image: {
  42393. source: "./media/characters/sarel/head.svg"
  42394. }
  42395. },
  42396. claws: {
  42397. height: math.unit(1.8, "feet"),
  42398. name: "Claws",
  42399. image: {
  42400. source: "./media/characters/sarel/claws.svg"
  42401. }
  42402. },
  42403. clawsAlt: {
  42404. height: math.unit(1.8, "feet"),
  42405. name: "Claws-alt",
  42406. image: {
  42407. source: "./media/characters/sarel/claws-alt.svg"
  42408. }
  42409. },
  42410. },
  42411. [
  42412. {
  42413. name: "Normal",
  42414. height: math.unit(5.67, "feet"),
  42415. default: true
  42416. },
  42417. ]
  42418. ))
  42419. characterMakers.push(() => makeCharacter(
  42420. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42421. {
  42422. front: {
  42423. height: math.unit(5500, "feet"),
  42424. name: "Front",
  42425. image: {
  42426. source: "./media/characters/alyonia/front.svg",
  42427. extra: 1200/1135,
  42428. bottom: 29/1229
  42429. }
  42430. },
  42431. back: {
  42432. height: math.unit(5500, "feet"),
  42433. name: "Back",
  42434. image: {
  42435. source: "./media/characters/alyonia/back.svg",
  42436. extra: 1205/1138,
  42437. bottom: 10/1215
  42438. }
  42439. },
  42440. },
  42441. [
  42442. {
  42443. name: "Small",
  42444. height: math.unit(10, "feet")
  42445. },
  42446. {
  42447. name: "Macro",
  42448. height: math.unit(500, "feet")
  42449. },
  42450. {
  42451. name: "Mega Macro",
  42452. height: math.unit(5500, "feet"),
  42453. default: true
  42454. },
  42455. {
  42456. name: "Mega Macro+",
  42457. height: math.unit(500000, "feet")
  42458. },
  42459. {
  42460. name: "Giga Macro",
  42461. height: math.unit(3000, "miles")
  42462. },
  42463. {
  42464. name: "Tera Macro",
  42465. height: math.unit(2.8e6, "miles")
  42466. },
  42467. {
  42468. name: "Galactic",
  42469. height: math.unit(120000, "lightyears")
  42470. },
  42471. ]
  42472. ))
  42473. characterMakers.push(() => makeCharacter(
  42474. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42475. {
  42476. werewolf: {
  42477. height: math.unit(8, "feet"),
  42478. weight: math.unit(425, "lb"),
  42479. name: "Werewolf",
  42480. image: {
  42481. source: "./media/characters/autumn/werewolf.svg",
  42482. extra: 2154/2031,
  42483. bottom: 160/2314
  42484. }
  42485. },
  42486. human: {
  42487. height: math.unit(5 + 8/12, "feet"),
  42488. weight: math.unit(150, "lb"),
  42489. name: "Human",
  42490. image: {
  42491. source: "./media/characters/autumn/human.svg",
  42492. extra: 1200/1149,
  42493. bottom: 30/1230
  42494. }
  42495. },
  42496. },
  42497. [
  42498. {
  42499. name: "Normal",
  42500. height: math.unit(8, "feet"),
  42501. default: true
  42502. },
  42503. ]
  42504. ))
  42505. characterMakers.push(() => makeCharacter(
  42506. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42507. {
  42508. front: {
  42509. height: math.unit(8 + 5/12, "feet"),
  42510. weight: math.unit(825, "lb"),
  42511. name: "Front",
  42512. image: {
  42513. source: "./media/characters/cobalt-charizard/front.svg",
  42514. extra: 1268/1155,
  42515. bottom: 122/1390
  42516. }
  42517. },
  42518. side: {
  42519. height: math.unit(8 + 5/12, "feet"),
  42520. weight: math.unit(825, "lb"),
  42521. name: "Side",
  42522. image: {
  42523. source: "./media/characters/cobalt-charizard/side.svg",
  42524. extra: 1348/1257,
  42525. bottom: 58/1406
  42526. }
  42527. },
  42528. gMax: {
  42529. height: math.unit(134 + 11/12, "feet"),
  42530. name: "G-Max",
  42531. image: {
  42532. source: "./media/characters/cobalt-charizard/g-max.svg",
  42533. extra: 1835/1541,
  42534. bottom: 151/1986
  42535. }
  42536. },
  42537. },
  42538. [
  42539. {
  42540. name: "Normal",
  42541. height: math.unit(8 + 5/12, "feet"),
  42542. default: true
  42543. },
  42544. ]
  42545. ))
  42546. characterMakers.push(() => makeCharacter(
  42547. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42548. {
  42549. front: {
  42550. height: math.unit(6 + 3/12, "feet"),
  42551. weight: math.unit(210, "lb"),
  42552. name: "Front",
  42553. image: {
  42554. source: "./media/characters/stella/front.svg",
  42555. extra: 3549/3335,
  42556. bottom: 51/3600
  42557. }
  42558. },
  42559. },
  42560. [
  42561. {
  42562. name: "Normal",
  42563. height: math.unit(6 + 3/12, "feet"),
  42564. default: true
  42565. },
  42566. ]
  42567. ))
  42568. characterMakers.push(() => makeCharacter(
  42569. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42570. {
  42571. front: {
  42572. height: math.unit(5, "feet"),
  42573. weight: math.unit(90, "lb"),
  42574. name: "Front",
  42575. image: {
  42576. source: "./media/characters/riley-bishop/front.svg",
  42577. extra: 1450/1428,
  42578. bottom: 152/1602
  42579. }
  42580. },
  42581. },
  42582. [
  42583. {
  42584. name: "Normal",
  42585. height: math.unit(5, "feet"),
  42586. default: true
  42587. },
  42588. ]
  42589. ))
  42590. characterMakers.push(() => makeCharacter(
  42591. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42592. {
  42593. side: {
  42594. height: math.unit(8 + 2/12, "feet"),
  42595. weight: math.unit(500, "kg"),
  42596. name: "Side",
  42597. image: {
  42598. source: "./media/characters/theo-arcanine/side.svg",
  42599. extra: 1342/1074,
  42600. bottom: 111/1453
  42601. }
  42602. },
  42603. },
  42604. [
  42605. {
  42606. name: "Normal",
  42607. height: math.unit(8 + 2/12, "feet"),
  42608. default: true
  42609. },
  42610. ]
  42611. ))
  42612. characterMakers.push(() => makeCharacter(
  42613. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42614. {
  42615. front: {
  42616. height: math.unit(4, "feet"),
  42617. name: "Front",
  42618. image: {
  42619. source: "./media/characters/kali/front.svg",
  42620. extra: 1921/1357,
  42621. bottom: 70/1991
  42622. }
  42623. },
  42624. },
  42625. [
  42626. {
  42627. name: "Normal",
  42628. height: math.unit(4, "feet"),
  42629. default: true
  42630. },
  42631. {
  42632. name: "Macro",
  42633. height: math.unit(32, "meters")
  42634. },
  42635. {
  42636. name: "Macro+",
  42637. height: math.unit(150, "meters")
  42638. },
  42639. {
  42640. name: "Megamacro",
  42641. height: math.unit(7500, "meters")
  42642. },
  42643. {
  42644. name: "Megamacro+",
  42645. height: math.unit(80, "kilometers")
  42646. },
  42647. ]
  42648. ))
  42649. characterMakers.push(() => makeCharacter(
  42650. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42651. {
  42652. side: {
  42653. height: math.unit(5 + 11/12, "feet"),
  42654. weight: math.unit(236, "lb"),
  42655. name: "Side",
  42656. image: {
  42657. source: "./media/characters/gapp/side.svg",
  42658. extra: 775/340,
  42659. bottom: 58/833
  42660. }
  42661. },
  42662. mouth: {
  42663. height: math.unit(2.98, "feet"),
  42664. name: "Mouth",
  42665. image: {
  42666. source: "./media/characters/gapp/mouth.svg"
  42667. }
  42668. },
  42669. },
  42670. [
  42671. {
  42672. name: "Normal",
  42673. height: math.unit(5 + 1/12, "feet"),
  42674. default: true
  42675. },
  42676. ]
  42677. ))
  42678. characterMakers.push(() => makeCharacter(
  42679. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42680. {
  42681. front: {
  42682. height: math.unit(6, "feet"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/persephone/front.svg",
  42686. extra: 1895/1717,
  42687. bottom: 96/1991
  42688. }
  42689. },
  42690. back: {
  42691. height: math.unit(6, "feet"),
  42692. name: "Back",
  42693. image: {
  42694. source: "./media/characters/persephone/back.svg",
  42695. extra: 1868/1679,
  42696. bottom: 26/1894
  42697. }
  42698. },
  42699. casual: {
  42700. height: math.unit(6, "feet"),
  42701. name: "Casual",
  42702. image: {
  42703. source: "./media/characters/persephone/casual.svg",
  42704. extra: 1713/1541,
  42705. bottom: 76/1789
  42706. }
  42707. },
  42708. },
  42709. [
  42710. {
  42711. name: "Human Size",
  42712. height: math.unit(6, "feet")
  42713. },
  42714. {
  42715. name: "Big Steppy",
  42716. height: math.unit(600, "meters"),
  42717. default: true
  42718. },
  42719. {
  42720. name: "Galaxy Brain",
  42721. height: math.unit(1, "zettameter")
  42722. },
  42723. ]
  42724. ))
  42725. characterMakers.push(() => makeCharacter(
  42726. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42727. {
  42728. front: {
  42729. height: math.unit(1.85, "meters"),
  42730. name: "Front",
  42731. image: {
  42732. source: "./media/characters/riley-foxthing/front.svg",
  42733. extra: 1495/1354,
  42734. bottom: 122/1617
  42735. }
  42736. },
  42737. frontAlt: {
  42738. height: math.unit(1.85, "meters"),
  42739. name: "Front (Alt)",
  42740. image: {
  42741. source: "./media/characters/riley-foxthing/front-alt.svg",
  42742. extra: 1572/1389,
  42743. bottom: 116/1688
  42744. }
  42745. },
  42746. },
  42747. [
  42748. {
  42749. name: "Normal Sized",
  42750. height: math.unit(1.85, "meters"),
  42751. default: true
  42752. },
  42753. {
  42754. name: "Quite Sizable",
  42755. height: math.unit(5, "meters")
  42756. },
  42757. {
  42758. name: "Rather Large",
  42759. height: math.unit(20, "meters")
  42760. },
  42761. {
  42762. name: "Macro",
  42763. height: math.unit(450, "meters")
  42764. },
  42765. {
  42766. name: "Giga",
  42767. height: math.unit(5, "km")
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42773. {
  42774. front: {
  42775. height: math.unit(6, "feet"),
  42776. weight: math.unit(200, "lb"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/blizzard/front.svg",
  42780. extra: 1136/990,
  42781. bottom: 136/1272
  42782. }
  42783. },
  42784. back: {
  42785. height: math.unit(6, "feet"),
  42786. weight: math.unit(200, "lb"),
  42787. name: "Back",
  42788. image: {
  42789. source: "./media/characters/blizzard/back.svg",
  42790. extra: 1175/1034,
  42791. bottom: 97/1272
  42792. }
  42793. },
  42794. sitting: {
  42795. height: math.unit(3.725, "feet"),
  42796. weight: math.unit(200, "lb"),
  42797. name: "Sitting",
  42798. image: {
  42799. source: "./media/characters/blizzard/sitting.svg",
  42800. extra: 581/485,
  42801. bottom: 90/671
  42802. }
  42803. },
  42804. frontWizard: {
  42805. height: math.unit(7.9, "feet"),
  42806. weight: math.unit(200, "lb"),
  42807. name: "Front (Wizard)",
  42808. image: {
  42809. source: "./media/characters/blizzard/front-wizard.svg"
  42810. }
  42811. },
  42812. backWizard: {
  42813. height: math.unit(7.9, "feet"),
  42814. weight: math.unit(200, "lb"),
  42815. name: "Back (Wizard)",
  42816. image: {
  42817. source: "./media/characters/blizzard/back-wizard.svg"
  42818. }
  42819. },
  42820. frontNsfw: {
  42821. height: math.unit(6, "feet"),
  42822. weight: math.unit(200, "lb"),
  42823. name: "Front (NSFW)",
  42824. image: {
  42825. source: "./media/characters/blizzard/front-nsfw.svg",
  42826. extra: 1136/990,
  42827. bottom: 136/1272
  42828. }
  42829. },
  42830. backNsfw: {
  42831. height: math.unit(6, "feet"),
  42832. weight: math.unit(200, "lb"),
  42833. name: "Back (NSFW)",
  42834. image: {
  42835. source: "./media/characters/blizzard/back-nsfw.svg",
  42836. extra: 1175/1034,
  42837. bottom: 97/1272
  42838. }
  42839. },
  42840. sittingNsfw: {
  42841. height: math.unit(3.725, "feet"),
  42842. weight: math.unit(200, "lb"),
  42843. name: "Sitting (NSFW)",
  42844. image: {
  42845. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42846. extra: 581/485,
  42847. bottom: 90/671
  42848. }
  42849. },
  42850. wizardFrontNsfw: {
  42851. height: math.unit(7.9, "feet"),
  42852. weight: math.unit(200, "lb"),
  42853. name: "Wizard (Front, NSFW)",
  42854. image: {
  42855. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42856. }
  42857. },
  42858. },
  42859. [
  42860. {
  42861. name: "Normal",
  42862. height: math.unit(6, "feet"),
  42863. default: true
  42864. },
  42865. ]
  42866. ))
  42867. characterMakers.push(() => makeCharacter(
  42868. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42869. {
  42870. front: {
  42871. height: math.unit(5 + 2/12, "feet"),
  42872. name: "Front",
  42873. image: {
  42874. source: "./media/characters/lumi/front.svg",
  42875. extra: 1328/1268,
  42876. bottom: 103/1431
  42877. }
  42878. },
  42879. back: {
  42880. height: math.unit(5 + 2/12, "feet"),
  42881. name: "Back",
  42882. image: {
  42883. source: "./media/characters/lumi/back.svg",
  42884. extra: 1381/1327,
  42885. bottom: 43/1424
  42886. }
  42887. },
  42888. },
  42889. [
  42890. {
  42891. name: "Normal",
  42892. height: math.unit(5 + 2/12, "feet"),
  42893. default: true
  42894. },
  42895. ]
  42896. ))
  42897. characterMakers.push(() => makeCharacter(
  42898. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42899. {
  42900. front: {
  42901. height: math.unit(5 + 9/12, "feet"),
  42902. name: "Front",
  42903. image: {
  42904. source: "./media/characters/aliya-cotton/front.svg",
  42905. extra: 577/564,
  42906. bottom: 29/606
  42907. }
  42908. },
  42909. },
  42910. [
  42911. {
  42912. name: "Normal",
  42913. height: math.unit(5 + 9/12, "feet"),
  42914. default: true
  42915. },
  42916. ]
  42917. ))
  42918. characterMakers.push(() => makeCharacter(
  42919. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42920. {
  42921. front: {
  42922. height: math.unit(2.7, "meters"),
  42923. weight: math.unit(25000, "lb"),
  42924. name: "Front",
  42925. image: {
  42926. source: "./media/characters/noah-luxray/front.svg",
  42927. extra: 1644/825,
  42928. bottom: 339/1983
  42929. }
  42930. },
  42931. side: {
  42932. height: math.unit(2.97, "meters"),
  42933. weight: math.unit(25000, "lb"),
  42934. name: "Side",
  42935. image: {
  42936. source: "./media/characters/noah-luxray/side.svg",
  42937. extra: 1319/650,
  42938. bottom: 163/1482
  42939. }
  42940. },
  42941. dick: {
  42942. height: math.unit(7.4, "feet"),
  42943. weight: math.unit(2500, "lb"),
  42944. name: "Dick",
  42945. image: {
  42946. source: "./media/characters/noah-luxray/dick.svg"
  42947. }
  42948. },
  42949. dickAlt: {
  42950. height: math.unit(10.83, "feet"),
  42951. weight: math.unit(2500, "lb"),
  42952. name: "Dick-alt",
  42953. image: {
  42954. source: "./media/characters/noah-luxray/dick-alt.svg"
  42955. }
  42956. },
  42957. },
  42958. [
  42959. {
  42960. name: "BIG",
  42961. height: math.unit(2.7, "meters"),
  42962. default: true
  42963. },
  42964. ]
  42965. ))
  42966. characterMakers.push(() => makeCharacter(
  42967. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42968. {
  42969. standing: {
  42970. height: math.unit(183, "cm"),
  42971. weight: math.unit(68, "kg"),
  42972. name: "Standing",
  42973. image: {
  42974. source: "./media/characters/arion/standing.svg",
  42975. extra: 1869/1807,
  42976. bottom: 93/1962
  42977. }
  42978. },
  42979. reclining: {
  42980. height: math.unit(70.5, "cm"),
  42981. weight: math.unit(68, "lb"),
  42982. name: "Reclining",
  42983. image: {
  42984. source: "./media/characters/arion/reclining.svg",
  42985. extra: 937/870,
  42986. bottom: 63/1000
  42987. }
  42988. },
  42989. },
  42990. [
  42991. {
  42992. name: "Colossus Size, Low",
  42993. height: math.unit(33, "meters"),
  42994. default: true
  42995. },
  42996. {
  42997. name: "Colossus Size, Mid",
  42998. height: math.unit(52, "meters")
  42999. },
  43000. {
  43001. name: "Colossus Size, High",
  43002. height: math.unit(60, "meters")
  43003. },
  43004. {
  43005. name: "Titan Size, Low",
  43006. height: math.unit(91, "meters"),
  43007. },
  43008. {
  43009. name: "Titan Size, Mid",
  43010. height: math.unit(122, "meters")
  43011. },
  43012. {
  43013. name: "Titan Size, High",
  43014. height: math.unit(162, "meters")
  43015. },
  43016. ]
  43017. ))
  43018. characterMakers.push(() => makeCharacter(
  43019. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43020. {
  43021. front: {
  43022. height: math.unit(53, "meters"),
  43023. name: "Front",
  43024. image: {
  43025. source: "./media/characters/stellar-marbey/front.svg",
  43026. extra: 1913/1805,
  43027. bottom: 92/2005
  43028. }
  43029. },
  43030. back: {
  43031. height: math.unit(53, "meters"),
  43032. name: "Back",
  43033. image: {
  43034. source: "./media/characters/stellar-marbey/back.svg",
  43035. extra: 1960/1851,
  43036. bottom: 28/1988
  43037. }
  43038. },
  43039. mouth: {
  43040. height: math.unit(3.5, "meters"),
  43041. name: "Mouth",
  43042. image: {
  43043. source: "./media/characters/stellar-marbey/mouth.svg"
  43044. }
  43045. },
  43046. },
  43047. [
  43048. {
  43049. name: "Macro",
  43050. height: math.unit(53, "meters"),
  43051. default: true
  43052. },
  43053. ]
  43054. ))
  43055. characterMakers.push(() => makeCharacter(
  43056. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43057. {
  43058. front: {
  43059. height: math.unit(8 + 1/12, "feet"),
  43060. weight: math.unit(233, "lb"),
  43061. name: "Front",
  43062. image: {
  43063. source: "./media/characters/matsu/front.svg",
  43064. extra: 832/772,
  43065. bottom: 40/872
  43066. }
  43067. },
  43068. back: {
  43069. height: math.unit(8 + 1/12, "feet"),
  43070. weight: math.unit(233, "lb"),
  43071. name: "Back",
  43072. image: {
  43073. source: "./media/characters/matsu/back.svg",
  43074. extra: 839/780,
  43075. bottom: 47/886
  43076. }
  43077. },
  43078. },
  43079. [
  43080. {
  43081. name: "Normal",
  43082. height: math.unit(8 + 1/12, "feet"),
  43083. default: true
  43084. },
  43085. ]
  43086. ))
  43087. characterMakers.push(() => makeCharacter(
  43088. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43089. {
  43090. front: {
  43091. height: math.unit(4, "feet"),
  43092. weight: math.unit(148, "lb"),
  43093. name: "Front",
  43094. image: {
  43095. source: "./media/characters/thiz/front.svg",
  43096. extra: 1913/1748,
  43097. bottom: 62/1975
  43098. }
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Normal",
  43104. height: math.unit(4, "feet"),
  43105. default: true
  43106. },
  43107. ]
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43111. {
  43112. front: {
  43113. height: math.unit(7 + 6/12, "feet"),
  43114. weight: math.unit(267, "lb"),
  43115. name: "Front",
  43116. image: {
  43117. source: "./media/characters/marcel/front.svg",
  43118. extra: 1221/1096,
  43119. bottom: 76/1297
  43120. }
  43121. },
  43122. },
  43123. [
  43124. {
  43125. name: "Normal",
  43126. height: math.unit(7 + 6/12, "feet"),
  43127. default: true
  43128. },
  43129. ]
  43130. ))
  43131. characterMakers.push(() => makeCharacter(
  43132. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43133. {
  43134. side: {
  43135. height: math.unit(42, "meters"),
  43136. name: "Side",
  43137. image: {
  43138. source: "./media/characters/flake/side.svg",
  43139. extra: 1525/1306,
  43140. bottom: 209/1734
  43141. }
  43142. },
  43143. },
  43144. [
  43145. {
  43146. name: "Normal",
  43147. height: math.unit(42, "meters"),
  43148. default: true
  43149. },
  43150. ]
  43151. ))
  43152. characterMakers.push(() => makeCharacter(
  43153. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43154. {
  43155. dressed: {
  43156. height: math.unit(6 + 4/12, "feet"),
  43157. weight: math.unit(520, "lb"),
  43158. name: "Dressed",
  43159. image: {
  43160. source: "./media/characters/someonne/dressed.svg",
  43161. extra: 1020/1010,
  43162. bottom: 178/1198
  43163. }
  43164. },
  43165. undressed: {
  43166. height: math.unit(6 + 4/12, "feet"),
  43167. weight: math.unit(520, "lb"),
  43168. name: "Undressed",
  43169. image: {
  43170. source: "./media/characters/someonne/undressed.svg",
  43171. extra: 1019/1014,
  43172. bottom: 169/1188
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "Normal",
  43179. height: math.unit(6 + 4/12, "feet"),
  43180. default: true
  43181. },
  43182. ]
  43183. ))
  43184. characterMakers.push(() => makeCharacter(
  43185. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43186. {
  43187. front: {
  43188. height: math.unit(3, "feet"),
  43189. weight: math.unit(30, "lb"),
  43190. name: "Front",
  43191. image: {
  43192. source: "./media/characters/till/front.svg",
  43193. extra: 892/823,
  43194. bottom: 55/947
  43195. }
  43196. },
  43197. },
  43198. [
  43199. {
  43200. name: "Normal",
  43201. height: math.unit(3, "feet"),
  43202. default: true
  43203. },
  43204. ]
  43205. ))
  43206. characterMakers.push(() => makeCharacter(
  43207. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43208. {
  43209. front: {
  43210. height: math.unit(9 + 8/12, "feet"),
  43211. weight: math.unit(800, "lb"),
  43212. name: "Front",
  43213. image: {
  43214. source: "./media/characters/sydney-heki/front.svg",
  43215. extra: 1360/1300,
  43216. bottom: 22/1382
  43217. }
  43218. },
  43219. back: {
  43220. height: math.unit(9 + 8/12, "feet"),
  43221. weight: math.unit(800, "lb"),
  43222. name: "Back",
  43223. image: {
  43224. source: "./media/characters/sydney-heki/back.svg",
  43225. extra: 1356/1293,
  43226. bottom: 12/1368
  43227. }
  43228. },
  43229. frontDressed: {
  43230. height: math.unit(9 + 8/12, "feet"),
  43231. weight: math.unit(800, "lb"),
  43232. name: "Front-dressed",
  43233. image: {
  43234. source: "./media/characters/sydney-heki/front-dressed.svg",
  43235. extra: 1360/1300,
  43236. bottom: 22/1382
  43237. }
  43238. },
  43239. },
  43240. [
  43241. {
  43242. name: "Normal",
  43243. height: math.unit(9 + 8/12, "feet"),
  43244. default: true
  43245. },
  43246. {
  43247. name: "Macro",
  43248. height: math.unit(500, "feet")
  43249. },
  43250. {
  43251. name: "Megamacro",
  43252. height: math.unit(3.6, "miles")
  43253. },
  43254. ]
  43255. ))
  43256. characterMakers.push(() => makeCharacter(
  43257. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43258. {
  43259. front: {
  43260. height: math.unit(200, "cm"),
  43261. weight: math.unit(250, "lb"),
  43262. name: "Front",
  43263. image: {
  43264. source: "./media/characters/fowler-karlsson/front.svg",
  43265. extra: 897/845,
  43266. bottom: 123/1020
  43267. }
  43268. },
  43269. back: {
  43270. height: math.unit(200, "cm"),
  43271. weight: math.unit(250, "lb"),
  43272. name: "Back",
  43273. image: {
  43274. source: "./media/characters/fowler-karlsson/back.svg",
  43275. extra: 999/944,
  43276. bottom: 26/1025
  43277. }
  43278. },
  43279. dick: {
  43280. height: math.unit(1.92, "feet"),
  43281. weight: math.unit(150, "lb"),
  43282. name: "Dick",
  43283. image: {
  43284. source: "./media/characters/fowler-karlsson/dick.svg"
  43285. }
  43286. },
  43287. },
  43288. [
  43289. {
  43290. name: "Normal",
  43291. height: math.unit(200, "cm"),
  43292. default: true
  43293. },
  43294. {
  43295. name: "Smaller Macro",
  43296. height: math.unit(90, "m")
  43297. },
  43298. {
  43299. name: "Macro",
  43300. height: math.unit(150, "m")
  43301. },
  43302. {
  43303. name: "Bigger Macro",
  43304. height: math.unit(300, "m")
  43305. },
  43306. ]
  43307. ))
  43308. characterMakers.push(() => makeCharacter(
  43309. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43310. {
  43311. side: {
  43312. height: math.unit(8 + 2/12, "feet"),
  43313. weight: math.unit(1, "tonne"),
  43314. name: "Side",
  43315. image: {
  43316. source: "./media/characters/rylide/side.svg",
  43317. extra: 1318/1034,
  43318. bottom: 106/1424
  43319. }
  43320. },
  43321. sitting: {
  43322. height: math.unit(303, "cm"),
  43323. weight: math.unit(1, "tonne"),
  43324. name: "Sitting",
  43325. image: {
  43326. source: "./media/characters/rylide/sitting.svg",
  43327. extra: 1303/1103,
  43328. bottom: 36/1339
  43329. }
  43330. },
  43331. },
  43332. [
  43333. {
  43334. name: "Normal",
  43335. height: math.unit(8 + 2/12, "feet"),
  43336. default: true
  43337. },
  43338. ]
  43339. ))
  43340. characterMakers.push(() => makeCharacter(
  43341. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43342. {
  43343. front: {
  43344. height: math.unit(5 + 10/12, "feet"),
  43345. weight: math.unit(160, "lb"),
  43346. name: "Front",
  43347. image: {
  43348. source: "./media/characters/pudask/front.svg",
  43349. extra: 1616/1590,
  43350. bottom: 161/1777
  43351. }
  43352. },
  43353. },
  43354. [
  43355. {
  43356. name: "Ferret Height",
  43357. height: math.unit(2 + 5/12, "feet")
  43358. },
  43359. {
  43360. name: "Canon Height",
  43361. height: math.unit(5 + 10/12, "feet"),
  43362. default: true
  43363. },
  43364. ]
  43365. ))
  43366. characterMakers.push(() => makeCharacter(
  43367. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43368. {
  43369. front: {
  43370. height: math.unit(3 + 6/12, "feet"),
  43371. weight: math.unit(60, "lb"),
  43372. name: "Front",
  43373. image: {
  43374. source: "./media/characters/ramita/front.svg",
  43375. extra: 1402/1232,
  43376. bottom: 62/1464
  43377. }
  43378. },
  43379. dressed: {
  43380. height: math.unit(3 + 6/12, "feet"),
  43381. weight: math.unit(60, "lb"),
  43382. name: "Dressed",
  43383. image: {
  43384. source: "./media/characters/ramita/dressed.svg",
  43385. extra: 1534/1249,
  43386. bottom: 50/1584
  43387. }
  43388. },
  43389. },
  43390. [
  43391. {
  43392. name: "Normal",
  43393. height: math.unit(3 + 6/12, "feet"),
  43394. default: true
  43395. },
  43396. ]
  43397. ))
  43398. characterMakers.push(() => makeCharacter(
  43399. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43400. {
  43401. front: {
  43402. height: math.unit(8, "feet"),
  43403. name: "Front",
  43404. image: {
  43405. source: "./media/characters/ark/front.svg",
  43406. extra: 772/693,
  43407. bottom: 45/817
  43408. }
  43409. },
  43410. },
  43411. [
  43412. {
  43413. name: "Normal",
  43414. height: math.unit(8, "feet"),
  43415. default: true
  43416. },
  43417. ]
  43418. ))
  43419. characterMakers.push(() => makeCharacter(
  43420. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43421. {
  43422. front: {
  43423. height: math.unit(6, "feet"),
  43424. weight: math.unit(250, "lb"),
  43425. volume: math.unit(5/8, "gallons"),
  43426. name: "Front",
  43427. image: {
  43428. source: "./media/characters/ludwig-horn/front.svg",
  43429. extra: 1782/1635,
  43430. bottom: 96/1878
  43431. }
  43432. },
  43433. back: {
  43434. height: math.unit(6, "feet"),
  43435. weight: math.unit(250, "lb"),
  43436. volume: math.unit(5/8, "gallons"),
  43437. name: "Back",
  43438. image: {
  43439. source: "./media/characters/ludwig-horn/back.svg",
  43440. extra: 1874/1729,
  43441. bottom: 27/1901
  43442. }
  43443. },
  43444. dick: {
  43445. height: math.unit(1.05, "feet"),
  43446. weight: math.unit(15, "lb"),
  43447. volume: math.unit(5/8, "gallons"),
  43448. name: "Dick",
  43449. image: {
  43450. source: "./media/characters/ludwig-horn/dick.svg"
  43451. }
  43452. },
  43453. },
  43454. [
  43455. {
  43456. name: "Small",
  43457. height: math.unit(6, "feet")
  43458. },
  43459. {
  43460. name: "Typical",
  43461. height: math.unit(12, "feet"),
  43462. default: true
  43463. },
  43464. {
  43465. name: "Building",
  43466. height: math.unit(80, "feet")
  43467. },
  43468. {
  43469. name: "Town",
  43470. height: math.unit(800, "feet")
  43471. },
  43472. {
  43473. name: "Kingdom",
  43474. height: math.unit(80000, "feet")
  43475. },
  43476. {
  43477. name: "Planet",
  43478. height: math.unit(8000000, "feet")
  43479. },
  43480. {
  43481. name: "Universe",
  43482. height: math.unit(8000000000, "feet")
  43483. },
  43484. {
  43485. name: "Transcended",
  43486. height: math.unit(8e27, "feet")
  43487. },
  43488. ]
  43489. ))
  43490. characterMakers.push(() => makeCharacter(
  43491. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43492. {
  43493. front: {
  43494. height: math.unit(5, "feet"),
  43495. weight: math.unit(50, "kg"),
  43496. name: "Front",
  43497. image: {
  43498. source: "./media/characters/biot-avery/front.svg",
  43499. extra: 1295/1232,
  43500. bottom: 86/1381
  43501. }
  43502. },
  43503. },
  43504. [
  43505. {
  43506. name: "Normal",
  43507. height: math.unit(5, "feet"),
  43508. default: true
  43509. },
  43510. ]
  43511. ))
  43512. characterMakers.push(() => makeCharacter(
  43513. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43514. {
  43515. front: {
  43516. height: math.unit(6, "feet"),
  43517. name: "Front",
  43518. image: {
  43519. source: "./media/characters/kitsune-kiro/front.svg",
  43520. extra: 1270/1158,
  43521. bottom: 42/1312
  43522. }
  43523. },
  43524. frontAlt: {
  43525. height: math.unit(6, "feet"),
  43526. name: "Front-alt",
  43527. image: {
  43528. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43529. extra: 1130/1081,
  43530. bottom: 36/1166
  43531. }
  43532. },
  43533. },
  43534. [
  43535. {
  43536. name: "Smol",
  43537. height: math.unit(3, "feet")
  43538. },
  43539. {
  43540. name: "Normal",
  43541. height: math.unit(6, "feet"),
  43542. default: true
  43543. },
  43544. ]
  43545. ))
  43546. characterMakers.push(() => makeCharacter(
  43547. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43548. {
  43549. front: {
  43550. height: math.unit(6, "feet"),
  43551. weight: math.unit(125, "lb"),
  43552. name: "Front",
  43553. image: {
  43554. source: "./media/characters/jack-thatcher/front.svg",
  43555. extra: 1474/1370,
  43556. bottom: 26/1500
  43557. }
  43558. },
  43559. back: {
  43560. height: math.unit(6, "feet"),
  43561. weight: math.unit(125, "lb"),
  43562. name: "Back",
  43563. image: {
  43564. source: "./media/characters/jack-thatcher/back.svg",
  43565. extra: 1489/1384,
  43566. bottom: 18/1507
  43567. }
  43568. },
  43569. },
  43570. [
  43571. {
  43572. name: "Normal",
  43573. height: math.unit(6, "feet"),
  43574. default: true
  43575. },
  43576. {
  43577. name: "Macro",
  43578. height: math.unit(75, "feet")
  43579. },
  43580. {
  43581. name: "Macro-er",
  43582. height: math.unit(250, "feet")
  43583. },
  43584. ]
  43585. ))
  43586. characterMakers.push(() => makeCharacter(
  43587. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43588. {
  43589. front: {
  43590. height: math.unit(7, "feet"),
  43591. weight: math.unit(110, "kg"),
  43592. name: "Front",
  43593. image: {
  43594. source: "./media/characters/max-hyper/front.svg",
  43595. extra: 1969/1881,
  43596. bottom: 49/2018
  43597. }
  43598. },
  43599. },
  43600. [
  43601. {
  43602. name: "Normal",
  43603. height: math.unit(7, "feet"),
  43604. default: true
  43605. },
  43606. ]
  43607. ))
  43608. characterMakers.push(() => makeCharacter(
  43609. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43610. {
  43611. front: {
  43612. height: math.unit(5 + 5/12, "feet"),
  43613. weight: math.unit(160, "lb"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/spook/front.svg",
  43617. extra: 794/791,
  43618. bottom: 54/848
  43619. }
  43620. },
  43621. back: {
  43622. height: math.unit(5 + 5/12, "feet"),
  43623. weight: math.unit(160, "lb"),
  43624. name: "Back",
  43625. image: {
  43626. source: "./media/characters/spook/back.svg",
  43627. extra: 812/798,
  43628. bottom: 32/844
  43629. }
  43630. },
  43631. },
  43632. [
  43633. {
  43634. name: "Normal",
  43635. height: math.unit(5 + 5/12, "feet"),
  43636. default: true
  43637. },
  43638. ]
  43639. ))
  43640. characterMakers.push(() => makeCharacter(
  43641. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43642. {
  43643. front: {
  43644. height: math.unit(18, "feet"),
  43645. name: "Front",
  43646. image: {
  43647. source: "./media/characters/xeaduulix/front.svg",
  43648. extra: 1380/1166,
  43649. bottom: 110/1490
  43650. }
  43651. },
  43652. back: {
  43653. height: math.unit(18, "feet"),
  43654. name: "Back",
  43655. image: {
  43656. source: "./media/characters/xeaduulix/back.svg",
  43657. extra: 1592/1170,
  43658. bottom: 128/1720
  43659. }
  43660. },
  43661. frontNsfw: {
  43662. height: math.unit(18, "feet"),
  43663. name: "Front (NSFW)",
  43664. image: {
  43665. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43666. extra: 1380/1166,
  43667. bottom: 110/1490
  43668. }
  43669. },
  43670. backNsfw: {
  43671. height: math.unit(18, "feet"),
  43672. name: "Back (NSFW)",
  43673. image: {
  43674. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43675. extra: 1592/1170,
  43676. bottom: 128/1720
  43677. }
  43678. },
  43679. },
  43680. [
  43681. {
  43682. name: "Normal",
  43683. height: math.unit(18, "feet"),
  43684. default: true
  43685. },
  43686. ]
  43687. ))
  43688. characterMakers.push(() => makeCharacter(
  43689. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43690. {
  43691. spreadWings: {
  43692. height: math.unit(20, "feet"),
  43693. name: "Spread Wings",
  43694. image: {
  43695. source: "./media/characters/fledge/spread-wings.svg",
  43696. extra: 693/635,
  43697. bottom: 26/719
  43698. }
  43699. },
  43700. front: {
  43701. height: math.unit(20, "feet"),
  43702. name: "Front",
  43703. image: {
  43704. source: "./media/characters/fledge/front.svg",
  43705. extra: 684/637,
  43706. bottom: 18/702
  43707. }
  43708. },
  43709. frontAlt: {
  43710. height: math.unit(20, "feet"),
  43711. name: "Front (Alt)",
  43712. image: {
  43713. source: "./media/characters/fledge/front-alt.svg",
  43714. extra: 708/664,
  43715. bottom: 13/721
  43716. }
  43717. },
  43718. back: {
  43719. height: math.unit(20, "feet"),
  43720. name: "Back",
  43721. image: {
  43722. source: "./media/characters/fledge/back.svg",
  43723. extra: 718/634,
  43724. bottom: 22/740
  43725. }
  43726. },
  43727. head: {
  43728. height: math.unit(5.55, "feet"),
  43729. name: "Head",
  43730. image: {
  43731. source: "./media/characters/fledge/head.svg"
  43732. }
  43733. },
  43734. headAlt: {
  43735. height: math.unit(5.1, "feet"),
  43736. name: "Head (Alt)",
  43737. image: {
  43738. source: "./media/characters/fledge/head-alt.svg"
  43739. }
  43740. },
  43741. },
  43742. [
  43743. {
  43744. name: "Small",
  43745. height: math.unit(6 + 2/12, "feet")
  43746. },
  43747. {
  43748. name: "Big",
  43749. height: math.unit(20, "feet"),
  43750. default: true
  43751. },
  43752. {
  43753. name: "Giant",
  43754. height: math.unit(100, "feet")
  43755. },
  43756. {
  43757. name: "Macro",
  43758. height: math.unit(200, "feet")
  43759. },
  43760. ]
  43761. ))
  43762. characterMakers.push(() => makeCharacter(
  43763. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43764. {
  43765. front: {
  43766. height: math.unit(1, "meter"),
  43767. name: "Front",
  43768. image: {
  43769. source: "./media/characters/atlas-morenai/front.svg",
  43770. extra: 1275/1043,
  43771. bottom: 19/1294
  43772. }
  43773. },
  43774. back: {
  43775. height: math.unit(1, "meter"),
  43776. name: "Back",
  43777. image: {
  43778. source: "./media/characters/atlas-morenai/back.svg",
  43779. extra: 1141/1001,
  43780. bottom: 25/1166
  43781. }
  43782. },
  43783. },
  43784. [
  43785. {
  43786. name: "Normal",
  43787. height: math.unit(1, "meter"),
  43788. default: true
  43789. },
  43790. {
  43791. name: "Magic-Infused",
  43792. height: math.unit(5, "meters")
  43793. },
  43794. ]
  43795. ))
  43796. characterMakers.push(() => makeCharacter(
  43797. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43798. {
  43799. front: {
  43800. height: math.unit(5, "meters"),
  43801. name: "Front",
  43802. image: {
  43803. source: "./media/characters/cintia/front.svg",
  43804. extra: 1312/1228,
  43805. bottom: 38/1350
  43806. }
  43807. },
  43808. back: {
  43809. height: math.unit(5, "meters"),
  43810. name: "Back",
  43811. image: {
  43812. source: "./media/characters/cintia/back.svg",
  43813. extra: 1260/1166,
  43814. bottom: 98/1358
  43815. }
  43816. },
  43817. frontDick: {
  43818. height: math.unit(5, "meters"),
  43819. name: "Front (Dick)",
  43820. image: {
  43821. source: "./media/characters/cintia/front-dick.svg",
  43822. extra: 1312/1228,
  43823. bottom: 38/1350
  43824. }
  43825. },
  43826. backDick: {
  43827. height: math.unit(5, "meters"),
  43828. name: "Back (Dick)",
  43829. image: {
  43830. source: "./media/characters/cintia/back-dick.svg",
  43831. extra: 1260/1166,
  43832. bottom: 98/1358
  43833. }
  43834. },
  43835. bust: {
  43836. height: math.unit(1.97, "meters"),
  43837. name: "Bust",
  43838. image: {
  43839. source: "./media/characters/cintia/bust.svg",
  43840. extra: 617/565,
  43841. bottom: 0/617
  43842. }
  43843. },
  43844. },
  43845. [
  43846. {
  43847. name: "Normal",
  43848. height: math.unit(5, "meters"),
  43849. default: true
  43850. },
  43851. ]
  43852. ))
  43853. characterMakers.push(() => makeCharacter(
  43854. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43855. {
  43856. side: {
  43857. height: math.unit(100, "feet"),
  43858. name: "Side",
  43859. image: {
  43860. source: "./media/characters/denora/side.svg",
  43861. extra: 875/803,
  43862. bottom: 9/884
  43863. }
  43864. },
  43865. },
  43866. [
  43867. {
  43868. name: "Standard",
  43869. height: math.unit(100, "feet"),
  43870. default: true
  43871. },
  43872. {
  43873. name: "Grand",
  43874. height: math.unit(1000, "feet")
  43875. },
  43876. {
  43877. name: "Conquering",
  43878. height: math.unit(10000, "feet")
  43879. },
  43880. ]
  43881. ))
  43882. characterMakers.push(() => makeCharacter(
  43883. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43884. {
  43885. dressed: {
  43886. height: math.unit(8 + 5/12, "feet"),
  43887. weight: math.unit(700, "lb"),
  43888. name: "Dressed",
  43889. image: {
  43890. source: "./media/characters/kiva/dressed.svg",
  43891. extra: 1102/1055,
  43892. bottom: 60/1162
  43893. }
  43894. },
  43895. nude: {
  43896. height: math.unit(8 + 5/12, "feet"),
  43897. weight: math.unit(700, "lb"),
  43898. name: "Nude",
  43899. image: {
  43900. source: "./media/characters/kiva/nude.svg",
  43901. extra: 1102/1055,
  43902. bottom: 60/1162
  43903. }
  43904. },
  43905. },
  43906. [
  43907. {
  43908. name: "Base Height",
  43909. height: math.unit(8 + 5/12, "feet"),
  43910. default: true
  43911. },
  43912. {
  43913. name: "Macro",
  43914. height: math.unit(100, "feet")
  43915. },
  43916. {
  43917. name: "Max",
  43918. height: math.unit(3280, "feet")
  43919. },
  43920. ]
  43921. ))
  43922. characterMakers.push(() => makeCharacter(
  43923. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43924. {
  43925. front: {
  43926. height: math.unit(6 + 8/12, "feet"),
  43927. weight: math.unit(250, "lb"),
  43928. name: "Front",
  43929. image: {
  43930. source: "./media/characters/ztragon/front.svg",
  43931. extra: 1825/1684,
  43932. bottom: 98/1923
  43933. }
  43934. },
  43935. },
  43936. [
  43937. {
  43938. name: "Normal",
  43939. height: math.unit(6 + 8/12, "feet"),
  43940. default: true
  43941. },
  43942. {
  43943. name: "Macro",
  43944. height: math.unit(80, "feet")
  43945. },
  43946. ]
  43947. ))
  43948. characterMakers.push(() => makeCharacter(
  43949. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  43950. {
  43951. front: {
  43952. height: math.unit(10.4, "feet"),
  43953. weight: math.unit(2, "tons"),
  43954. name: "Front",
  43955. image: {
  43956. source: "./media/characters/yesenia/front.svg",
  43957. extra: 1479/1474,
  43958. bottom: 233/1712
  43959. }
  43960. },
  43961. },
  43962. [
  43963. {
  43964. name: "Normal",
  43965. height: math.unit(10.4, "feet"),
  43966. default: true
  43967. },
  43968. ]
  43969. ))
  43970. characterMakers.push(() => makeCharacter(
  43971. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  43972. {
  43973. normal: {
  43974. height: math.unit(6 + 1/12, "feet"),
  43975. weight: math.unit(180, "lb"),
  43976. name: "Normal",
  43977. image: {
  43978. source: "./media/characters/leanne-lycheborne/normal.svg",
  43979. extra: 1748/1660,
  43980. bottom: 98/1846
  43981. }
  43982. },
  43983. were: {
  43984. height: math.unit(12, "feet"),
  43985. weight: math.unit(1600, "lb"),
  43986. name: "Were",
  43987. image: {
  43988. source: "./media/characters/leanne-lycheborne/were.svg",
  43989. extra: 1485/1432,
  43990. bottom: 66/1551
  43991. }
  43992. },
  43993. },
  43994. [
  43995. {
  43996. name: "Normal",
  43997. height: math.unit(6 + 1/12, "feet"),
  43998. default: true
  43999. },
  44000. ]
  44001. ))
  44002. characterMakers.push(() => makeCharacter(
  44003. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44004. {
  44005. side: {
  44006. height: math.unit(13, "feet"),
  44007. name: "Side",
  44008. image: {
  44009. source: "./media/characters/kira-tyler/side.svg",
  44010. extra: 693/393,
  44011. bottom: 58/751
  44012. }
  44013. },
  44014. },
  44015. [
  44016. {
  44017. name: "Normal",
  44018. height: math.unit(13, "feet"),
  44019. default: true
  44020. },
  44021. ]
  44022. ))
  44023. characterMakers.push(() => makeCharacter(
  44024. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44025. {
  44026. front: {
  44027. height: math.unit(10.3, "feet"),
  44028. weight: math.unit(150, "lb"),
  44029. name: "Front",
  44030. image: {
  44031. source: "./media/characters/blaze/front.svg",
  44032. extra: 1378/1286,
  44033. bottom: 172/1550
  44034. }
  44035. },
  44036. },
  44037. [
  44038. {
  44039. name: "Normal",
  44040. height: math.unit(10.3, "feet"),
  44041. default: true
  44042. },
  44043. ]
  44044. ))
  44045. characterMakers.push(() => makeCharacter(
  44046. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44047. {
  44048. side: {
  44049. height: math.unit(2, "meters"),
  44050. weight: math.unit(400, "kg"),
  44051. name: "Side",
  44052. image: {
  44053. source: "./media/characters/anu/side.svg",
  44054. extra: 506/394,
  44055. bottom: 18/524
  44056. }
  44057. },
  44058. },
  44059. [
  44060. {
  44061. name: "Humanoid",
  44062. height: math.unit(2, "meters")
  44063. },
  44064. {
  44065. name: "Normal",
  44066. height: math.unit(5, "meters"),
  44067. default: true
  44068. },
  44069. ]
  44070. ))
  44071. characterMakers.push(() => makeCharacter(
  44072. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44073. {
  44074. front: {
  44075. height: math.unit(5 + 5/12, "feet"),
  44076. weight: math.unit(170, "lb"),
  44077. name: "Front",
  44078. image: {
  44079. source: "./media/characters/synx-the-lynx/front.svg",
  44080. extra: 1893/1745,
  44081. bottom: 17/1910
  44082. }
  44083. },
  44084. side: {
  44085. height: math.unit(5 + 5/12, "feet"),
  44086. weight: math.unit(170, "lb"),
  44087. name: "Side",
  44088. image: {
  44089. source: "./media/characters/synx-the-lynx/side.svg",
  44090. extra: 1884/1740,
  44091. bottom: 39/1923
  44092. }
  44093. },
  44094. back: {
  44095. height: math.unit(5 + 5/12, "feet"),
  44096. weight: math.unit(170, "lb"),
  44097. name: "Back",
  44098. image: {
  44099. source: "./media/characters/synx-the-lynx/back.svg",
  44100. extra: 1903/1755,
  44101. bottom: 14/1917
  44102. }
  44103. },
  44104. },
  44105. [
  44106. {
  44107. name: "Normal",
  44108. height: math.unit(5 + 5/12, "feet"),
  44109. default: true
  44110. },
  44111. ]
  44112. ))
  44113. characterMakers.push(() => makeCharacter(
  44114. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44115. {
  44116. back: {
  44117. height: math.unit(15, "feet"),
  44118. name: "Back",
  44119. image: {
  44120. source: "./media/characters/nadezda-fex/back.svg",
  44121. extra: 1695/1481,
  44122. bottom: 25/1720
  44123. }
  44124. },
  44125. },
  44126. [
  44127. {
  44128. name: "Normal",
  44129. height: math.unit(15, "feet"),
  44130. default: true
  44131. },
  44132. {
  44133. name: "Macro",
  44134. height: math.unit(2.5, "miles")
  44135. },
  44136. {
  44137. name: "Goddess",
  44138. height: math.unit(2, "multiverses")
  44139. },
  44140. ]
  44141. ))
  44142. characterMakers.push(() => makeCharacter(
  44143. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44144. {
  44145. front: {
  44146. height: math.unit(216, "cm"),
  44147. name: "Front",
  44148. image: {
  44149. source: "./media/characters/lev/front.svg",
  44150. extra: 1728/1670,
  44151. bottom: 82/1810
  44152. }
  44153. },
  44154. back: {
  44155. height: math.unit(216, "cm"),
  44156. name: "Back",
  44157. image: {
  44158. source: "./media/characters/lev/back.svg",
  44159. extra: 1738/1675,
  44160. bottom: 24/1762
  44161. }
  44162. },
  44163. dressed: {
  44164. height: math.unit(216, "cm"),
  44165. name: "Dressed",
  44166. image: {
  44167. source: "./media/characters/lev/dressed.svg",
  44168. extra: 1397/1351,
  44169. bottom: 73/1470
  44170. }
  44171. },
  44172. head: {
  44173. height: math.unit(0.51, "meter"),
  44174. name: "Head",
  44175. image: {
  44176. source: "./media/characters/lev/head.svg"
  44177. }
  44178. },
  44179. },
  44180. [
  44181. {
  44182. name: "Normal",
  44183. height: math.unit(216, "cm"),
  44184. default: true
  44185. },
  44186. {
  44187. name: "Relatively Macro",
  44188. height: math.unit(80, "meters")
  44189. },
  44190. {
  44191. name: "Megamacro",
  44192. height: math.unit(21600, "meters")
  44193. },
  44194. {
  44195. name: "Megamacro+",
  44196. height: math.unit(64800, "meters")
  44197. },
  44198. ]
  44199. ))
  44200. characterMakers.push(() => makeCharacter(
  44201. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44202. {
  44203. front: {
  44204. height: math.unit(2, "meters"),
  44205. weight: math.unit(80, "kg"),
  44206. name: "Front",
  44207. image: {
  44208. source: "./media/characters/moka/front.svg",
  44209. extra: 1337/1255,
  44210. bottom: 58/1395
  44211. }
  44212. },
  44213. },
  44214. [
  44215. {
  44216. name: "Micro",
  44217. height: math.unit(15, "cm")
  44218. },
  44219. {
  44220. name: "Normal",
  44221. height: math.unit(2, "meters"),
  44222. default: true
  44223. },
  44224. {
  44225. name: "Macro",
  44226. height: math.unit(20, "meters"),
  44227. },
  44228. ]
  44229. ))
  44230. characterMakers.push(() => makeCharacter(
  44231. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44232. {
  44233. front: {
  44234. height: math.unit(9, "feet"),
  44235. weight: math.unit(240, "lb"),
  44236. name: "Front",
  44237. image: {
  44238. source: "./media/characters/kuzco/front.svg",
  44239. extra: 1593/1487,
  44240. bottom: 32/1625
  44241. }
  44242. },
  44243. side: {
  44244. height: math.unit(9, "feet"),
  44245. weight: math.unit(240, "lb"),
  44246. name: "Side",
  44247. image: {
  44248. source: "./media/characters/kuzco/side.svg",
  44249. extra: 1575/1485,
  44250. bottom: 30/1605
  44251. }
  44252. },
  44253. back: {
  44254. height: math.unit(9, "feet"),
  44255. weight: math.unit(240, "lb"),
  44256. name: "Back",
  44257. image: {
  44258. source: "./media/characters/kuzco/back.svg",
  44259. extra: 1603/1514,
  44260. bottom: 14/1617
  44261. }
  44262. },
  44263. },
  44264. [
  44265. {
  44266. name: "Normal",
  44267. height: math.unit(9, "feet"),
  44268. default: true
  44269. },
  44270. ]
  44271. ))
  44272. characterMakers.push(() => makeCharacter(
  44273. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44274. {
  44275. side: {
  44276. height: math.unit(2, "meters"),
  44277. weight: math.unit(300, "kg"),
  44278. name: "Side",
  44279. image: {
  44280. source: "./media/characters/ceruleus/side.svg",
  44281. extra: 1068/974,
  44282. bottom: 126/1194
  44283. }
  44284. },
  44285. },
  44286. [
  44287. {
  44288. name: "Normal",
  44289. height: math.unit(16, "meters"),
  44290. default: true
  44291. },
  44292. ]
  44293. ))
  44294. //characters
  44295. function makeCharacters() {
  44296. const results = [];
  44297. characterMakers.forEach(character => {
  44298. results.push(character());
  44299. });
  44300. return results;
  44301. }