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.
 
 
 

43839 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. }
  1767. //species
  1768. function getSpeciesInfo(speciesList) {
  1769. let result = new Set();
  1770. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1771. result.add(entry)
  1772. });
  1773. return Array.from(result);
  1774. };
  1775. function getSpeciesInfoHelper(species) {
  1776. if (!speciesData[species]) {
  1777. console.warn(species + " doesn't exist");
  1778. return [];
  1779. }
  1780. if (speciesData[species].parents) {
  1781. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1782. } else {
  1783. return [species];
  1784. }
  1785. }
  1786. characterMakers.push(() => makeCharacter(
  1787. {
  1788. name: "Fen",
  1789. species: ["crux"],
  1790. description: {
  1791. title: "Bio",
  1792. text: "Very furry. Sheds on everything."
  1793. },
  1794. tags: [
  1795. "anthro",
  1796. "goo"
  1797. ]
  1798. },
  1799. {
  1800. back: {
  1801. height: math.unit(2.2428, "meter"),
  1802. weight: math.unit(124.738, "kg"),
  1803. name: "Back",
  1804. image: {
  1805. source: "./media/characters/fen/back.svg",
  1806. },
  1807. info: {
  1808. description: {
  1809. mode: "append",
  1810. text: "\n\nHe is not currently looking at you."
  1811. }
  1812. }
  1813. },
  1814. full: {
  1815. height: math.unit(1.34, "meter"),
  1816. weight: math.unit(225, "kg"),
  1817. name: "Full",
  1818. image: {
  1819. source: "./media/characters/fen/full.svg"
  1820. },
  1821. info: {
  1822. description: {
  1823. mode: "append",
  1824. text: "\n\nMunch."
  1825. }
  1826. }
  1827. },
  1828. kneeling: {
  1829. height: math.unit(5.4, "feet"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Kneeling",
  1832. image: {
  1833. source: "./media/characters/fen/kneeling.svg",
  1834. extra: 563 / 507
  1835. }
  1836. },
  1837. goo: {
  1838. height: math.unit(2.8, "feet"),
  1839. weight: math.unit(125, "kg"),
  1840. capacity: math.unit(1, "people"),
  1841. name: "Goo",
  1842. image: {
  1843. source: "./media/characters/fen/goo.svg",
  1844. bottom: 116 / 613
  1845. }
  1846. },
  1847. lounging: {
  1848. height: math.unit(6.5, "feet"),
  1849. weight: math.unit(125, "kg"),
  1850. name: "Lounging",
  1851. image: {
  1852. source: "./media/characters/fen/lounging.svg"
  1853. }
  1854. },
  1855. },
  1856. [
  1857. {
  1858. name: "Normal",
  1859. height: math.unit(2.2428, "meter")
  1860. },
  1861. {
  1862. name: "Big",
  1863. height: math.unit(12, "feet")
  1864. },
  1865. {
  1866. name: "Minimacro",
  1867. height: math.unit(40, "feet"),
  1868. default: true,
  1869. info: {
  1870. description: {
  1871. mode: "append",
  1872. text: "\n\nTOO DAMN BIG"
  1873. }
  1874. }
  1875. },
  1876. {
  1877. name: "Macro",
  1878. height: math.unit(100, "feet"),
  1879. info: {
  1880. description: {
  1881. mode: "append",
  1882. text: "\n\nTOO DAMN BIG"
  1883. }
  1884. }
  1885. },
  1886. {
  1887. name: "Macro+",
  1888. height: math.unit(300, "feet")
  1889. },
  1890. {
  1891. name: "Megamacro",
  1892. height: math.unit(2, "miles")
  1893. }
  1894. ]
  1895. ))
  1896. characterMakers.push(() => makeCharacter(
  1897. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1898. {
  1899. front: {
  1900. height: math.unit(183, "cm"),
  1901. weight: math.unit(80, "kg"),
  1902. name: "Front",
  1903. image: {
  1904. source: "./media/characters/sofia-fluttertail/front.svg",
  1905. bottom: 0.01,
  1906. extra: 2154 / 2081
  1907. }
  1908. },
  1909. frontAlt: {
  1910. height: math.unit(183, "cm"),
  1911. weight: math.unit(80, "kg"),
  1912. name: "Front (alt)",
  1913. image: {
  1914. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1915. }
  1916. },
  1917. back: {
  1918. height: math.unit(183, "cm"),
  1919. weight: math.unit(80, "kg"),
  1920. name: "Back",
  1921. image: {
  1922. source: "./media/characters/sofia-fluttertail/back.svg"
  1923. }
  1924. },
  1925. kneeling: {
  1926. height: math.unit(125, "cm"),
  1927. weight: math.unit(80, "kg"),
  1928. name: "Kneeling",
  1929. image: {
  1930. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1931. extra: 1033 / 977,
  1932. bottom: 23.7 / 1057
  1933. }
  1934. },
  1935. maw: {
  1936. height: math.unit(183 / 5, "cm"),
  1937. name: "Maw",
  1938. image: {
  1939. source: "./media/characters/sofia-fluttertail/maw.svg"
  1940. }
  1941. },
  1942. mawcloseup: {
  1943. height: math.unit(183 / 5 * 0.41, "cm"),
  1944. name: "Maw (Closeup)",
  1945. image: {
  1946. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1947. }
  1948. },
  1949. paws: {
  1950. height: math.unit(1.17, "feet"),
  1951. name: "Paws",
  1952. image: {
  1953. source: "./media/characters/sofia-fluttertail/paws.svg",
  1954. extra: 851 / 851,
  1955. bottom: 17 / 868
  1956. }
  1957. },
  1958. },
  1959. [
  1960. {
  1961. name: "Normal",
  1962. height: math.unit(1.83, "meter")
  1963. },
  1964. {
  1965. name: "Size Thief",
  1966. height: math.unit(18, "feet")
  1967. },
  1968. {
  1969. name: "50 Foot Collie",
  1970. height: math.unit(50, "feet")
  1971. },
  1972. {
  1973. name: "Macro",
  1974. height: math.unit(96, "feet"),
  1975. default: true
  1976. },
  1977. {
  1978. name: "Megamerger",
  1979. height: math.unit(650, "feet")
  1980. },
  1981. ]
  1982. ))
  1983. characterMakers.push(() => makeCharacter(
  1984. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1985. {
  1986. front: {
  1987. height: math.unit(7, "feet"),
  1988. weight: math.unit(100, "kg"),
  1989. name: "Front",
  1990. image: {
  1991. source: "./media/characters/march/front.svg",
  1992. extra: 1992/1851,
  1993. bottom: 39/2031
  1994. }
  1995. },
  1996. foot: {
  1997. height: math.unit(0.9, "feet"),
  1998. name: "Foot",
  1999. image: {
  2000. source: "./media/characters/march/foot.svg"
  2001. }
  2002. },
  2003. },
  2004. [
  2005. {
  2006. name: "Normal",
  2007. height: math.unit(7.9, "feet")
  2008. },
  2009. {
  2010. name: "Macro",
  2011. height: math.unit(220, "meters")
  2012. },
  2013. {
  2014. name: "Megamacro",
  2015. height: math.unit(2.98, "km"),
  2016. default: true
  2017. },
  2018. {
  2019. name: "Gigamacro",
  2020. height: math.unit(15963, "km")
  2021. },
  2022. {
  2023. name: "Teramacro",
  2024. height: math.unit(2980000000, "km")
  2025. },
  2026. {
  2027. name: "Examacro",
  2028. height: math.unit(250, "parsecs")
  2029. },
  2030. ]
  2031. ))
  2032. characterMakers.push(() => makeCharacter(
  2033. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2034. {
  2035. front: {
  2036. height: math.unit(6, "feet"),
  2037. weight: math.unit(60, "kg"),
  2038. name: "Front",
  2039. image: {
  2040. source: "./media/characters/noir/front.svg",
  2041. extra: 1,
  2042. bottom: 0.032
  2043. }
  2044. },
  2045. },
  2046. [
  2047. {
  2048. name: "Normal",
  2049. height: math.unit(6.6, "feet")
  2050. },
  2051. {
  2052. name: "Macro",
  2053. height: math.unit(500, "feet")
  2054. },
  2055. {
  2056. name: "Megamacro",
  2057. height: math.unit(2.5, "km"),
  2058. default: true
  2059. },
  2060. {
  2061. name: "Gigamacro",
  2062. height: math.unit(22500, "km")
  2063. },
  2064. {
  2065. name: "Teramacro",
  2066. height: math.unit(2500000000, "km")
  2067. },
  2068. {
  2069. name: "Examacro",
  2070. height: math.unit(200, "parsecs")
  2071. },
  2072. ]
  2073. ))
  2074. characterMakers.push(() => makeCharacter(
  2075. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2076. {
  2077. front: {
  2078. height: math.unit(7, "feet"),
  2079. weight: math.unit(100, "kg"),
  2080. name: "Front",
  2081. image: {
  2082. source: "./media/characters/okuri/front.svg",
  2083. extra: 1,
  2084. bottom: 0.037
  2085. }
  2086. },
  2087. back: {
  2088. height: math.unit(7, "feet"),
  2089. weight: math.unit(100, "kg"),
  2090. name: "Back",
  2091. image: {
  2092. source: "./media/characters/okuri/back.svg",
  2093. extra: 1,
  2094. bottom: 0.007
  2095. }
  2096. },
  2097. },
  2098. [
  2099. {
  2100. name: "Megamacro",
  2101. height: math.unit(100, "miles"),
  2102. default: true
  2103. },
  2104. ]
  2105. ))
  2106. characterMakers.push(() => makeCharacter(
  2107. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2108. {
  2109. front: {
  2110. height: math.unit(7, "feet"),
  2111. weight: math.unit(100, "kg"),
  2112. name: "Front",
  2113. image: {
  2114. source: "./media/characters/manny/front.svg",
  2115. extra: 1,
  2116. bottom: 0.06
  2117. }
  2118. },
  2119. back: {
  2120. height: math.unit(7, "feet"),
  2121. weight: math.unit(100, "kg"),
  2122. name: "Back",
  2123. image: {
  2124. source: "./media/characters/manny/back.svg",
  2125. extra: 1,
  2126. bottom: 0.014
  2127. }
  2128. },
  2129. },
  2130. [
  2131. {
  2132. name: "Normal",
  2133. height: math.unit(7, "feet"),
  2134. },
  2135. {
  2136. name: "Macro",
  2137. height: math.unit(78, "feet"),
  2138. default: true
  2139. },
  2140. {
  2141. name: "Macro+",
  2142. height: math.unit(300, "meters")
  2143. },
  2144. {
  2145. name: "Macro++",
  2146. height: math.unit(2400, "meters")
  2147. },
  2148. {
  2149. name: "Megamacro",
  2150. height: math.unit(5167, "meters")
  2151. },
  2152. {
  2153. name: "Gigamacro",
  2154. height: math.unit(41769, "miles")
  2155. },
  2156. ]
  2157. ))
  2158. characterMakers.push(() => makeCharacter(
  2159. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2160. {
  2161. front: {
  2162. height: math.unit(7, "feet"),
  2163. weight: math.unit(100, "kg"),
  2164. name: "Front",
  2165. image: {
  2166. source: "./media/characters/adake/front-1.svg"
  2167. }
  2168. },
  2169. frontAlt: {
  2170. height: math.unit(7, "feet"),
  2171. weight: math.unit(100, "kg"),
  2172. name: "Front (Alt)",
  2173. image: {
  2174. source: "./media/characters/adake/front-2.svg",
  2175. extra: 1,
  2176. bottom: 0.01
  2177. }
  2178. },
  2179. back: {
  2180. height: math.unit(7, "feet"),
  2181. weight: math.unit(100, "kg"),
  2182. name: "Back",
  2183. image: {
  2184. source: "./media/characters/adake/back.svg",
  2185. }
  2186. },
  2187. kneel: {
  2188. height: math.unit(5.385, "feet"),
  2189. weight: math.unit(100, "kg"),
  2190. name: "Kneeling",
  2191. image: {
  2192. source: "./media/characters/adake/kneel.svg",
  2193. bottom: 0.052
  2194. }
  2195. },
  2196. },
  2197. [
  2198. {
  2199. name: "Normal",
  2200. height: math.unit(7, "feet"),
  2201. },
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(78, "feet"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Macro+",
  2209. height: math.unit(300, "meters")
  2210. },
  2211. {
  2212. name: "Macro++",
  2213. height: math.unit(2400, "meters")
  2214. },
  2215. {
  2216. name: "Megamacro",
  2217. height: math.unit(5167, "meters")
  2218. },
  2219. {
  2220. name: "Gigamacro",
  2221. height: math.unit(41769, "miles")
  2222. },
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2227. {
  2228. front: {
  2229. height: math.unit(1.65, "meters"),
  2230. weight: math.unit(50, "kg"),
  2231. name: "Front",
  2232. image: {
  2233. source: "./media/characters/elijah/front.svg",
  2234. extra: 858 / 830,
  2235. bottom: 95.5 / 953.8559
  2236. }
  2237. },
  2238. back: {
  2239. height: math.unit(1.65, "meters"),
  2240. weight: math.unit(50, "kg"),
  2241. name: "Back",
  2242. image: {
  2243. source: "./media/characters/elijah/back.svg",
  2244. extra: 895 / 850,
  2245. bottom: 5.3 / 897.956
  2246. }
  2247. },
  2248. frontNsfw: {
  2249. height: math.unit(1.65, "meters"),
  2250. weight: math.unit(50, "kg"),
  2251. name: "Front (NSFW)",
  2252. image: {
  2253. source: "./media/characters/elijah/front-nsfw.svg",
  2254. extra: 858 / 830,
  2255. bottom: 95.5 / 953.8559
  2256. }
  2257. },
  2258. backNsfw: {
  2259. height: math.unit(1.65, "meters"),
  2260. weight: math.unit(50, "kg"),
  2261. name: "Back (NSFW)",
  2262. image: {
  2263. source: "./media/characters/elijah/back-nsfw.svg",
  2264. extra: 895 / 850,
  2265. bottom: 5.3 / 897.956
  2266. }
  2267. },
  2268. dick: {
  2269. height: math.unit(1, "feet"),
  2270. name: "Dick",
  2271. image: {
  2272. source: "./media/characters/elijah/dick.svg"
  2273. }
  2274. },
  2275. beakOpen: {
  2276. height: math.unit(1.25, "feet"),
  2277. name: "Beak (Open)",
  2278. image: {
  2279. source: "./media/characters/elijah/beak-open.svg"
  2280. }
  2281. },
  2282. beakShut: {
  2283. height: math.unit(1.25, "feet"),
  2284. name: "Beak (Shut)",
  2285. image: {
  2286. source: "./media/characters/elijah/beak-shut.svg"
  2287. }
  2288. },
  2289. footFlexing: {
  2290. height: math.unit(1.61, "feet"),
  2291. name: "Foot (Flexing)",
  2292. image: {
  2293. source: "./media/characters/elijah/foot-flexing.svg"
  2294. }
  2295. },
  2296. footStepping: {
  2297. height: math.unit(1.44, "feet"),
  2298. name: "Foot (Stepping)",
  2299. image: {
  2300. source: "./media/characters/elijah/foot-stepping.svg"
  2301. }
  2302. },
  2303. plantigradeLeg: {
  2304. height: math.unit(2.34, "feet"),
  2305. name: "Plantigrade Leg",
  2306. image: {
  2307. source: "./media/characters/elijah/plantigrade-leg.svg"
  2308. }
  2309. },
  2310. plantigradeFootLeft: {
  2311. height: math.unit(0.9, "feet"),
  2312. name: "Plantigrade Foot (Left)",
  2313. image: {
  2314. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2315. }
  2316. },
  2317. plantigradeFootRight: {
  2318. height: math.unit(0.9, "feet"),
  2319. name: "Plantigrade Foot (Right)",
  2320. image: {
  2321. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2322. }
  2323. },
  2324. },
  2325. [
  2326. {
  2327. name: "Normal",
  2328. height: math.unit(1.65, "meters")
  2329. },
  2330. {
  2331. name: "Macro",
  2332. height: math.unit(55, "meters"),
  2333. default: true
  2334. },
  2335. {
  2336. name: "Macro+",
  2337. height: math.unit(105, "meters")
  2338. },
  2339. ]
  2340. ))
  2341. characterMakers.push(() => makeCharacter(
  2342. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2343. {
  2344. front: {
  2345. height: math.unit(11, "feet"),
  2346. weight: math.unit(320, "kg"),
  2347. name: "Front",
  2348. image: {
  2349. source: "./media/characters/rai/front.svg",
  2350. extra: 1802/1696,
  2351. bottom: 68/1870
  2352. }
  2353. },
  2354. frontDressed: {
  2355. height: math.unit(11, "feet"),
  2356. weight: math.unit(320, "kg"),
  2357. name: "Front (Dressed)",
  2358. image: {
  2359. source: "./media/characters/rai/front-dressed.svg",
  2360. extra: 1802/1696,
  2361. bottom: 68/1870
  2362. }
  2363. },
  2364. side: {
  2365. height: math.unit(11, "feet"),
  2366. weight: math.unit(320, "kg"),
  2367. name: "Side",
  2368. image: {
  2369. source: "./media/characters/rai/side.svg",
  2370. extra: 1789/1710,
  2371. bottom: 115/1904
  2372. }
  2373. },
  2374. back: {
  2375. height: math.unit(11, "feet"),
  2376. weight: math.unit(320, "kg"),
  2377. name: "Back",
  2378. image: {
  2379. source: "./media/characters/rai/back.svg",
  2380. extra: 1770/1707,
  2381. bottom: 28/1798
  2382. }
  2383. },
  2384. feral: {
  2385. height: math.unit(11, "feet"),
  2386. weight: math.unit(640, "kg"),
  2387. name: "Feral",
  2388. image: {
  2389. source: "./media/characters/rai/feral.svg",
  2390. extra: 1035/642,
  2391. bottom: 86/1121
  2392. }
  2393. },
  2394. dragon: {
  2395. height: math.unit(23, "feet"),
  2396. weight: math.unit(50000, "lb"),
  2397. name: "Dragon",
  2398. image: {
  2399. source: "./media/characters/rai/dragon.svg",
  2400. extra: 2498 / 2030,
  2401. bottom: 85.2 / 2584
  2402. }
  2403. },
  2404. maw: {
  2405. height: math.unit(6 / 3.81416, "feet"),
  2406. name: "Maw",
  2407. image: {
  2408. source: "./media/characters/rai/maw.svg"
  2409. }
  2410. },
  2411. },
  2412. [
  2413. {
  2414. name: "Normal",
  2415. height: math.unit(11, "feet")
  2416. },
  2417. {
  2418. name: "Macro",
  2419. height: math.unit(302, "feet"),
  2420. default: true
  2421. },
  2422. ]
  2423. ))
  2424. characterMakers.push(() => makeCharacter(
  2425. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2426. {
  2427. frontDressed: {
  2428. height: math.unit(216, "feet"),
  2429. weight: math.unit(7000000, "lb"),
  2430. name: "Front (Dressed)",
  2431. image: {
  2432. source: "./media/characters/jazzy/front-dressed.svg",
  2433. extra: 2738 / 2651,
  2434. bottom: 41.8 / 2786
  2435. }
  2436. },
  2437. backDressed: {
  2438. height: math.unit(216, "feet"),
  2439. weight: math.unit(7000000, "lb"),
  2440. name: "Back (Dressed)",
  2441. image: {
  2442. source: "./media/characters/jazzy/back-dressed.svg",
  2443. extra: 2775 / 2673,
  2444. bottom: 36.8 / 2817
  2445. }
  2446. },
  2447. front: {
  2448. height: math.unit(216, "feet"),
  2449. weight: math.unit(7000000, "lb"),
  2450. name: "Front",
  2451. image: {
  2452. source: "./media/characters/jazzy/front.svg",
  2453. extra: 2738 / 2651,
  2454. bottom: 41.8 / 2786
  2455. }
  2456. },
  2457. back: {
  2458. height: math.unit(216, "feet"),
  2459. weight: math.unit(7000000, "lb"),
  2460. name: "Back",
  2461. image: {
  2462. source: "./media/characters/jazzy/back.svg",
  2463. extra: 2775 / 2673,
  2464. bottom: 36.8 / 2817
  2465. }
  2466. },
  2467. maw: {
  2468. height: math.unit(20, "feet"),
  2469. name: "Maw",
  2470. image: {
  2471. source: "./media/characters/jazzy/maw.svg"
  2472. }
  2473. },
  2474. paws: {
  2475. height: math.unit(27.5, "feet"),
  2476. name: "Paws",
  2477. image: {
  2478. source: "./media/characters/jazzy/paws.svg"
  2479. }
  2480. },
  2481. eye: {
  2482. height: math.unit(4.4, "feet"),
  2483. name: "Eye",
  2484. image: {
  2485. source: "./media/characters/jazzy/eye.svg"
  2486. }
  2487. },
  2488. droneOffense: {
  2489. height: math.unit(9.5, "inches"),
  2490. name: "Drone (Offense)",
  2491. image: {
  2492. source: "./media/characters/jazzy/drone-offense.svg"
  2493. }
  2494. },
  2495. droneRecon: {
  2496. height: math.unit(9.5, "inches"),
  2497. name: "Drone (Recon)",
  2498. image: {
  2499. source: "./media/characters/jazzy/drone-recon.svg"
  2500. }
  2501. },
  2502. droneDefense: {
  2503. height: math.unit(9.5, "inches"),
  2504. name: "Drone (Defense)",
  2505. image: {
  2506. source: "./media/characters/jazzy/drone-defense.svg"
  2507. }
  2508. },
  2509. },
  2510. [
  2511. {
  2512. name: "Macro",
  2513. height: math.unit(216, "feet"),
  2514. default: true
  2515. },
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2520. {
  2521. front: {
  2522. height: math.unit(9 + 6/12, "feet"),
  2523. weight: math.unit(700, "lb"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/flamm/front.svg",
  2527. extra: 1751/1632,
  2528. bottom: 46/1797
  2529. }
  2530. },
  2531. buff: {
  2532. height: math.unit(9 + 6/12, "feet"),
  2533. weight: math.unit(950, "lb"),
  2534. name: "Buff",
  2535. image: {
  2536. source: "./media/characters/flamm/buff.svg",
  2537. extra: 3018/2874,
  2538. bottom: 221/3239
  2539. }
  2540. },
  2541. },
  2542. [
  2543. {
  2544. name: "Normal",
  2545. height: math.unit(9.5, "feet")
  2546. },
  2547. {
  2548. name: "Macro",
  2549. height: math.unit(200, "feet"),
  2550. default: true
  2551. },
  2552. ]
  2553. ))
  2554. characterMakers.push(() => makeCharacter(
  2555. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2556. {
  2557. front: {
  2558. height: math.unit(5 + 3/12, "feet"),
  2559. weight: math.unit(60, "kg"),
  2560. name: "Front",
  2561. image: {
  2562. source: "./media/characters/zephiro/front.svg",
  2563. extra: 2309 / 2162,
  2564. bottom: 0.069
  2565. }
  2566. },
  2567. side: {
  2568. height: math.unit(5 + 3/12, "feet"),
  2569. weight: math.unit(60, "kg"),
  2570. name: "Side",
  2571. image: {
  2572. source: "./media/characters/zephiro/side.svg",
  2573. extra: 2403 / 2279,
  2574. bottom: 0.015
  2575. }
  2576. },
  2577. back: {
  2578. height: math.unit(5 + 3/12, "feet"),
  2579. weight: math.unit(60, "kg"),
  2580. name: "Back",
  2581. image: {
  2582. source: "./media/characters/zephiro/back.svg",
  2583. extra: 2373 / 2244,
  2584. bottom: 0.013
  2585. }
  2586. },
  2587. hand: {
  2588. height: math.unit(0.68, "feet"),
  2589. name: "Hand",
  2590. image: {
  2591. source: "./media/characters/zephiro/hand.svg"
  2592. }
  2593. },
  2594. paw: {
  2595. height: math.unit(1, "feet"),
  2596. name: "Paw",
  2597. image: {
  2598. source: "./media/characters/zephiro/paw.svg"
  2599. }
  2600. },
  2601. beans: {
  2602. height: math.unit(0.93, "feet"),
  2603. name: "Beans",
  2604. image: {
  2605. source: "./media/characters/zephiro/beans.svg"
  2606. }
  2607. },
  2608. },
  2609. [
  2610. {
  2611. name: "Micro",
  2612. height: math.unit(3, "inches")
  2613. },
  2614. {
  2615. name: "Normal",
  2616. height: math.unit(5 + 3 / 12, "feet"),
  2617. default: true
  2618. },
  2619. {
  2620. name: "Macro",
  2621. height: math.unit(118, "feet")
  2622. },
  2623. ]
  2624. ))
  2625. characterMakers.push(() => makeCharacter(
  2626. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2627. {
  2628. front: {
  2629. height: math.unit(5, "feet"),
  2630. weight: math.unit(90, "kg"),
  2631. name: "Front",
  2632. image: {
  2633. source: "./media/characters/fory/front.svg",
  2634. extra: 2862 / 2674,
  2635. bottom: 180 / 3043.8
  2636. }
  2637. },
  2638. back: {
  2639. height: math.unit(5, "feet"),
  2640. weight: math.unit(90, "kg"),
  2641. name: "Back",
  2642. image: {
  2643. source: "./media/characters/fory/back.svg",
  2644. extra: 2962 / 2791,
  2645. bottom: 106 / 3071.8
  2646. }
  2647. },
  2648. foot: {
  2649. height: math.unit(2.14, "feet"),
  2650. name: "Foot",
  2651. image: {
  2652. source: "./media/characters/fory/foot.svg"
  2653. }
  2654. },
  2655. },
  2656. [
  2657. {
  2658. name: "Normal",
  2659. height: math.unit(5, "feet")
  2660. },
  2661. {
  2662. name: "Macro",
  2663. height: math.unit(50, "feet"),
  2664. default: true
  2665. },
  2666. {
  2667. name: "Megamacro",
  2668. height: math.unit(10, "miles")
  2669. },
  2670. {
  2671. name: "Gigamacro",
  2672. height: math.unit(5, "earths")
  2673. },
  2674. ]
  2675. ))
  2676. characterMakers.push(() => makeCharacter(
  2677. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2678. {
  2679. front: {
  2680. height: math.unit(7, "feet"),
  2681. weight: math.unit(90, "kg"),
  2682. name: "Front",
  2683. image: {
  2684. source: "./media/characters/kurrikage/front.svg",
  2685. extra: 1,
  2686. bottom: 0.035
  2687. }
  2688. },
  2689. back: {
  2690. height: math.unit(7, "feet"),
  2691. weight: math.unit(90, "lb"),
  2692. name: "Back",
  2693. image: {
  2694. source: "./media/characters/kurrikage/back.svg"
  2695. }
  2696. },
  2697. paw: {
  2698. height: math.unit(1.5, "feet"),
  2699. name: "Paw",
  2700. image: {
  2701. source: "./media/characters/kurrikage/paw.svg"
  2702. }
  2703. },
  2704. staff: {
  2705. height: math.unit(6.7, "feet"),
  2706. name: "Staff",
  2707. image: {
  2708. source: "./media/characters/kurrikage/staff.svg"
  2709. }
  2710. },
  2711. peek: {
  2712. height: math.unit(1.05, "feet"),
  2713. name: "Peeking",
  2714. image: {
  2715. source: "./media/characters/kurrikage/peek.svg",
  2716. bottom: 0.08
  2717. }
  2718. },
  2719. },
  2720. [
  2721. {
  2722. name: "Normal",
  2723. height: math.unit(12, "feet"),
  2724. default: true
  2725. },
  2726. {
  2727. name: "Big",
  2728. height: math.unit(20, "feet")
  2729. },
  2730. {
  2731. name: "Macro",
  2732. height: math.unit(500, "feet")
  2733. },
  2734. {
  2735. name: "Megamacro",
  2736. height: math.unit(20, "miles")
  2737. },
  2738. ]
  2739. ))
  2740. characterMakers.push(() => makeCharacter(
  2741. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2742. {
  2743. front: {
  2744. height: math.unit(6, "feet"),
  2745. weight: math.unit(75, "kg"),
  2746. name: "Front",
  2747. image: {
  2748. source: "./media/characters/shingo/front.svg",
  2749. extra: 1900/1825,
  2750. bottom: 82/1982
  2751. }
  2752. },
  2753. side: {
  2754. height: math.unit(6, "feet"),
  2755. weight: math.unit(75, "kg"),
  2756. name: "Side",
  2757. image: {
  2758. source: "./media/characters/shingo/side.svg",
  2759. extra: 1930/1865,
  2760. bottom: 16/1946
  2761. }
  2762. },
  2763. back: {
  2764. height: math.unit(6, "feet"),
  2765. weight: math.unit(75, "kg"),
  2766. name: "Back",
  2767. image: {
  2768. source: "./media/characters/shingo/back.svg",
  2769. extra: 1922/1852,
  2770. bottom: 16/1938
  2771. }
  2772. },
  2773. frontDressed: {
  2774. height: math.unit(6, "feet"),
  2775. weight: math.unit(150, "lb"),
  2776. name: "Front-dressed",
  2777. image: {
  2778. source: "./media/characters/shingo/front-dressed.svg",
  2779. extra: 1900/1825,
  2780. bottom: 82/1982
  2781. }
  2782. },
  2783. paw: {
  2784. height: math.unit(1.29, "feet"),
  2785. name: "Paw",
  2786. image: {
  2787. source: "./media/characters/shingo/paw.svg"
  2788. }
  2789. },
  2790. hand: {
  2791. height: math.unit(1.07, "feet"),
  2792. name: "Hand",
  2793. image: {
  2794. source: "./media/characters/shingo/hand.svg"
  2795. }
  2796. },
  2797. frontAlt: {
  2798. height: math.unit(6, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Front (Alt)",
  2801. image: {
  2802. source: "./media/characters/shingo/front-alt.svg",
  2803. extra: 3511 / 3338,
  2804. bottom: 0.005
  2805. }
  2806. },
  2807. frontAlt2: {
  2808. height: math.unit(6, "feet"),
  2809. weight: math.unit(75, "kg"),
  2810. name: "Front (Alt 2)",
  2811. image: {
  2812. source: "./media/characters/shingo/front-alt-2.svg",
  2813. extra: 706/681,
  2814. bottom: 11/717
  2815. }
  2816. },
  2817. pawAlt: {
  2818. height: math.unit(1, "feet"),
  2819. name: "Paw (Alt)",
  2820. image: {
  2821. source: "./media/characters/shingo/paw-alt.svg"
  2822. }
  2823. },
  2824. },
  2825. [
  2826. {
  2827. name: "Micro",
  2828. height: math.unit(4, "inches")
  2829. },
  2830. {
  2831. name: "Normal",
  2832. height: math.unit(6, "feet"),
  2833. default: true
  2834. },
  2835. {
  2836. name: "Macro",
  2837. height: math.unit(108, "feet")
  2838. },
  2839. {
  2840. name: "Macro+",
  2841. height: math.unit(1500, "feet")
  2842. },
  2843. ]
  2844. ))
  2845. characterMakers.push(() => makeCharacter(
  2846. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2847. {
  2848. side: {
  2849. height: math.unit(6, "feet"),
  2850. weight: math.unit(75, "kg"),
  2851. name: "Side",
  2852. image: {
  2853. source: "./media/characters/aigey/side.svg"
  2854. }
  2855. },
  2856. },
  2857. [
  2858. {
  2859. name: "Macro",
  2860. height: math.unit(200, "feet"),
  2861. default: true
  2862. },
  2863. {
  2864. name: "Megamacro",
  2865. height: math.unit(100, "miles")
  2866. },
  2867. ]
  2868. )
  2869. )
  2870. characterMakers.push(() => makeCharacter(
  2871. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2872. {
  2873. front: {
  2874. height: math.unit(5 + 5 / 12, "feet"),
  2875. weight: math.unit(75, "kg"),
  2876. name: "Front",
  2877. image: {
  2878. source: "./media/characters/natasha/front.svg",
  2879. extra: 859 / 824,
  2880. bottom: 23 / 879.6
  2881. }
  2882. },
  2883. frontNsfw: {
  2884. height: math.unit(5 + 5 / 12, "feet"),
  2885. weight: math.unit(75, "kg"),
  2886. name: "Front (NSFW)",
  2887. image: {
  2888. source: "./media/characters/natasha/front-nsfw.svg",
  2889. extra: 859 / 824,
  2890. bottom: 23 / 879.6
  2891. }
  2892. },
  2893. frontErect: {
  2894. height: math.unit(5 + 5 / 12, "feet"),
  2895. weight: math.unit(75, "kg"),
  2896. name: "Front (Erect)",
  2897. image: {
  2898. source: "./media/characters/natasha/front-erect.svg",
  2899. extra: 859 / 824,
  2900. bottom: 23 / 879.6
  2901. }
  2902. },
  2903. back: {
  2904. height: math.unit(5 + 5 / 12, "feet"),
  2905. weight: math.unit(75, "kg"),
  2906. name: "Back",
  2907. image: {
  2908. source: "./media/characters/natasha/back.svg",
  2909. extra: 887.9 / 852.6,
  2910. bottom: 9.7 / 896.4
  2911. }
  2912. },
  2913. backAlt: {
  2914. height: math.unit(5 + 5 / 12, "feet"),
  2915. weight: math.unit(75, "kg"),
  2916. name: "Back (Alt)",
  2917. image: {
  2918. source: "./media/characters/natasha/back-alt.svg",
  2919. extra: 1236.7 / 1192,
  2920. bottom: 22.3 / 1258.2
  2921. }
  2922. },
  2923. dick: {
  2924. height: math.unit(1.772, "feet"),
  2925. name: "Dick",
  2926. image: {
  2927. source: "./media/characters/natasha/dick.svg"
  2928. }
  2929. },
  2930. paw: {
  2931. height: math.unit(0.250, "meters"),
  2932. name: "Paw",
  2933. image: {
  2934. source: "./media/characters/natasha/paw.svg"
  2935. }
  2936. },
  2937. },
  2938. [
  2939. {
  2940. name: "Normal",
  2941. height: math.unit(5 + 5 / 12, "feet")
  2942. },
  2943. {
  2944. name: "Large",
  2945. height: math.unit(12, "feet")
  2946. },
  2947. {
  2948. name: "Macro",
  2949. height: math.unit(100, "feet"),
  2950. default: true
  2951. },
  2952. {
  2953. name: "Macro+",
  2954. height: math.unit(260, "feet")
  2955. },
  2956. {
  2957. name: "Macro++",
  2958. height: math.unit(1, "mile")
  2959. },
  2960. ]
  2961. ))
  2962. characterMakers.push(() => makeCharacter(
  2963. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2964. {
  2965. front: {
  2966. height: math.unit(6, "feet"),
  2967. weight: math.unit(75, "kg"),
  2968. name: "Front",
  2969. image: {
  2970. source: "./media/characters/malik/front.svg"
  2971. }
  2972. },
  2973. side: {
  2974. height: math.unit(6, "feet"),
  2975. weight: math.unit(75, "kg"),
  2976. name: "Side",
  2977. image: {
  2978. source: "./media/characters/malik/side.svg",
  2979. extra: 1.1539
  2980. }
  2981. },
  2982. back: {
  2983. height: math.unit(6, "feet"),
  2984. weight: math.unit(75, "kg"),
  2985. name: "Back",
  2986. image: {
  2987. source: "./media/characters/malik/back.svg"
  2988. }
  2989. },
  2990. },
  2991. [
  2992. {
  2993. name: "Macro",
  2994. height: math.unit(156, "feet"),
  2995. default: true
  2996. },
  2997. {
  2998. name: "Macro+",
  2999. height: math.unit(1188, "feet")
  3000. },
  3001. ]
  3002. ))
  3003. characterMakers.push(() => makeCharacter(
  3004. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3005. {
  3006. front: {
  3007. height: math.unit(6, "feet"),
  3008. weight: math.unit(75, "kg"),
  3009. name: "Front",
  3010. image: {
  3011. source: "./media/characters/sefer/front.svg",
  3012. extra: 848 / 659,
  3013. bottom: 28.3 / 876.442
  3014. }
  3015. },
  3016. back: {
  3017. height: math.unit(6, "feet"),
  3018. weight: math.unit(75, "kg"),
  3019. name: "Back",
  3020. image: {
  3021. source: "./media/characters/sefer/back.svg",
  3022. extra: 864 / 695,
  3023. bottom: 10 / 871
  3024. }
  3025. },
  3026. frontDressed: {
  3027. height: math.unit(6, "feet"),
  3028. weight: math.unit(75, "kg"),
  3029. name: "Front (Dressed)",
  3030. image: {
  3031. source: "./media/characters/sefer/front-dressed.svg",
  3032. extra: 839 / 653,
  3033. bottom: 37.6 / 878
  3034. }
  3035. },
  3036. },
  3037. [
  3038. {
  3039. name: "Normal",
  3040. height: math.unit(6, "feet"),
  3041. default: true
  3042. },
  3043. ]
  3044. ))
  3045. characterMakers.push(() => makeCharacter(
  3046. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3047. {
  3048. body: {
  3049. height: math.unit(2.2428, "meter"),
  3050. weight: math.unit(124.738, "kg"),
  3051. name: "Body",
  3052. image: {
  3053. extra: 1225 / 1050,
  3054. source: "./media/characters/north/front.svg"
  3055. }
  3056. }
  3057. },
  3058. [
  3059. {
  3060. name: "Micro",
  3061. height: math.unit(4, "inches")
  3062. },
  3063. {
  3064. name: "Macro",
  3065. height: math.unit(63, "meters")
  3066. },
  3067. {
  3068. name: "Megamacro",
  3069. height: math.unit(101, "miles"),
  3070. default: true
  3071. }
  3072. ]
  3073. ))
  3074. characterMakers.push(() => makeCharacter(
  3075. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3076. {
  3077. angled: {
  3078. height: math.unit(4, "meter"),
  3079. weight: math.unit(150, "kg"),
  3080. name: "Angled",
  3081. image: {
  3082. source: "./media/characters/talan/angled-sfw.svg",
  3083. bottom: 29 / 3734
  3084. }
  3085. },
  3086. angledNsfw: {
  3087. height: math.unit(4, "meter"),
  3088. weight: math.unit(150, "kg"),
  3089. name: "Angled (NSFW)",
  3090. image: {
  3091. source: "./media/characters/talan/angled-nsfw.svg",
  3092. bottom: 29 / 3734
  3093. }
  3094. },
  3095. frontNsfw: {
  3096. height: math.unit(4, "meter"),
  3097. weight: math.unit(150, "kg"),
  3098. name: "Front (NSFW)",
  3099. image: {
  3100. source: "./media/characters/talan/front-nsfw.svg",
  3101. bottom: 29 / 3734
  3102. }
  3103. },
  3104. sideNsfw: {
  3105. height: math.unit(4, "meter"),
  3106. weight: math.unit(150, "kg"),
  3107. name: "Side (NSFW)",
  3108. image: {
  3109. source: "./media/characters/talan/side-nsfw.svg",
  3110. bottom: 29 / 3734
  3111. }
  3112. },
  3113. back: {
  3114. height: math.unit(4, "meter"),
  3115. weight: math.unit(150, "kg"),
  3116. name: "Back",
  3117. image: {
  3118. source: "./media/characters/talan/back.svg"
  3119. }
  3120. },
  3121. dickBottom: {
  3122. height: math.unit(0.621, "meter"),
  3123. name: "Dick (Bottom)",
  3124. image: {
  3125. source: "./media/characters/talan/dick-bottom.svg"
  3126. }
  3127. },
  3128. dickTop: {
  3129. height: math.unit(0.621, "meter"),
  3130. name: "Dick (Top)",
  3131. image: {
  3132. source: "./media/characters/talan/dick-top.svg"
  3133. }
  3134. },
  3135. dickSide: {
  3136. height: math.unit(0.305, "meter"),
  3137. name: "Dick (Side)",
  3138. image: {
  3139. source: "./media/characters/talan/dick-side.svg"
  3140. }
  3141. },
  3142. dickFront: {
  3143. height: math.unit(0.305, "meter"),
  3144. name: "Dick (Front)",
  3145. image: {
  3146. source: "./media/characters/talan/dick-front.svg"
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Normal",
  3153. height: math.unit(4, "meters")
  3154. },
  3155. {
  3156. name: "Macro",
  3157. height: math.unit(100, "meters")
  3158. },
  3159. {
  3160. name: "Megamacro",
  3161. height: math.unit(2, "miles"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Gigamacro",
  3166. height: math.unit(5000, "miles")
  3167. },
  3168. {
  3169. name: "Teramacro",
  3170. height: math.unit(100, "parsecs")
  3171. }
  3172. ]
  3173. ))
  3174. characterMakers.push(() => makeCharacter(
  3175. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3176. {
  3177. front: {
  3178. height: math.unit(2, "meter"),
  3179. weight: math.unit(90, "kg"),
  3180. name: "Front",
  3181. image: {
  3182. source: "./media/characters/gael'rathus/front.svg"
  3183. }
  3184. },
  3185. frontAlt: {
  3186. height: math.unit(2, "meter"),
  3187. weight: math.unit(90, "kg"),
  3188. name: "Front (alt)",
  3189. image: {
  3190. source: "./media/characters/gael'rathus/front-alt.svg"
  3191. }
  3192. },
  3193. frontAlt2: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(90, "kg"),
  3196. name: "Front (alt 2)",
  3197. image: {
  3198. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3199. }
  3200. }
  3201. },
  3202. [
  3203. {
  3204. name: "Normal",
  3205. height: math.unit(9, "feet"),
  3206. default: true
  3207. },
  3208. {
  3209. name: "Large",
  3210. height: math.unit(25, "feet")
  3211. },
  3212. {
  3213. name: "Macro",
  3214. height: math.unit(0.25, "miles")
  3215. },
  3216. {
  3217. name: "Megamacro",
  3218. height: math.unit(10, "miles")
  3219. }
  3220. ]
  3221. ))
  3222. characterMakers.push(() => makeCharacter(
  3223. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3224. {
  3225. side: {
  3226. height: math.unit(2, "meter"),
  3227. weight: math.unit(140, "kg"),
  3228. name: "Side",
  3229. image: {
  3230. source: "./media/characters/sosha/side.svg",
  3231. bottom: 0.042
  3232. }
  3233. },
  3234. },
  3235. [
  3236. {
  3237. name: "Normal",
  3238. height: math.unit(12, "feet"),
  3239. default: true
  3240. }
  3241. ]
  3242. ))
  3243. characterMakers.push(() => makeCharacter(
  3244. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3245. {
  3246. side: {
  3247. height: math.unit(5 + 5 / 12, "feet"),
  3248. weight: math.unit(170, "kg"),
  3249. name: "Side",
  3250. image: {
  3251. source: "./media/characters/runnola/side.svg",
  3252. extra: 741 / 448,
  3253. bottom: 0.05
  3254. }
  3255. },
  3256. },
  3257. [
  3258. {
  3259. name: "Small",
  3260. height: math.unit(3, "feet")
  3261. },
  3262. {
  3263. name: "Normal",
  3264. height: math.unit(5 + 5 / 12, "feet"),
  3265. default: true
  3266. },
  3267. {
  3268. name: "Big",
  3269. height: math.unit(10, "feet")
  3270. },
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3275. {
  3276. front: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(50, "kg"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/kurribird/front.svg",
  3282. bottom: 0.015
  3283. }
  3284. },
  3285. frontAlt: {
  3286. height: math.unit(1.5, "meter"),
  3287. weight: math.unit(50, "kg"),
  3288. name: "Front (Alt)",
  3289. image: {
  3290. source: "./media/characters/kurribird/front-alt.svg",
  3291. extra: 1.45
  3292. }
  3293. },
  3294. },
  3295. [
  3296. {
  3297. name: "Normal",
  3298. height: math.unit(7, "feet")
  3299. },
  3300. {
  3301. name: "Big",
  3302. height: math.unit(12, "feet"),
  3303. default: true
  3304. },
  3305. {
  3306. name: "Macro",
  3307. height: math.unit(1500, "feet")
  3308. },
  3309. {
  3310. name: "Megamacro",
  3311. height: math.unit(2, "miles")
  3312. }
  3313. ]
  3314. ))
  3315. characterMakers.push(() => makeCharacter(
  3316. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3317. {
  3318. front: {
  3319. height: math.unit(2, "meter"),
  3320. weight: math.unit(80, "kg"),
  3321. name: "Front",
  3322. image: {
  3323. source: "./media/characters/elbial/front.svg",
  3324. extra: 1643 / 1556,
  3325. bottom: 60.2 / 1696
  3326. }
  3327. },
  3328. side: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(80, "kg"),
  3331. name: "Side",
  3332. image: {
  3333. source: "./media/characters/elbial/side.svg",
  3334. extra: 1630 / 1565,
  3335. bottom: 71.5 / 1697
  3336. }
  3337. },
  3338. back: {
  3339. height: math.unit(2, "meter"),
  3340. weight: math.unit(80, "kg"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/elbial/back.svg",
  3344. extra: 1668 / 1595,
  3345. bottom: 5.6 / 1672
  3346. }
  3347. },
  3348. frontDressed: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(80, "kg"),
  3351. name: "Front (Dressed)",
  3352. image: {
  3353. source: "./media/characters/elbial/front-dressed.svg",
  3354. extra: 1653 / 1584,
  3355. bottom: 57 / 1708
  3356. }
  3357. },
  3358. genitals: {
  3359. height: math.unit(2 / 3.367, "meter"),
  3360. name: "Genitals",
  3361. image: {
  3362. source: "./media/characters/elbial/genitals.svg"
  3363. }
  3364. },
  3365. },
  3366. [
  3367. {
  3368. name: "Large",
  3369. height: math.unit(100, "feet")
  3370. },
  3371. {
  3372. name: "Macro",
  3373. height: math.unit(500, "feet"),
  3374. default: true
  3375. },
  3376. {
  3377. name: "Megamacro",
  3378. height: math.unit(10, "miles")
  3379. },
  3380. {
  3381. name: "Gigamacro",
  3382. height: math.unit(25000, "miles")
  3383. },
  3384. {
  3385. name: "Full-Size",
  3386. height: math.unit(8000000, "gigaparsecs")
  3387. }
  3388. ]
  3389. ))
  3390. characterMakers.push(() => makeCharacter(
  3391. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3392. {
  3393. front: {
  3394. height: math.unit(2, "meter"),
  3395. weight: math.unit(60, "kg"),
  3396. name: "Front",
  3397. image: {
  3398. source: "./media/characters/noah/front.svg"
  3399. }
  3400. },
  3401. talons: {
  3402. height: math.unit(0.315, "meter"),
  3403. name: "Talons",
  3404. image: {
  3405. source: "./media/characters/noah/talons.svg"
  3406. }
  3407. }
  3408. },
  3409. [
  3410. {
  3411. name: "Large",
  3412. height: math.unit(50, "feet")
  3413. },
  3414. {
  3415. name: "Macro",
  3416. height: math.unit(750, "feet"),
  3417. default: true
  3418. },
  3419. {
  3420. name: "Megamacro",
  3421. height: math.unit(50, "miles")
  3422. },
  3423. {
  3424. name: "Gigamacro",
  3425. height: math.unit(100000, "miles")
  3426. },
  3427. {
  3428. name: "Full-Size",
  3429. height: math.unit(3000000000, "miles")
  3430. }
  3431. ]
  3432. ))
  3433. characterMakers.push(() => makeCharacter(
  3434. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3435. {
  3436. front: {
  3437. height: math.unit(2, "meter"),
  3438. weight: math.unit(80, "kg"),
  3439. name: "Front",
  3440. image: {
  3441. source: "./media/characters/natalya/front.svg"
  3442. }
  3443. },
  3444. back: {
  3445. height: math.unit(2, "meter"),
  3446. weight: math.unit(80, "kg"),
  3447. name: "Back",
  3448. image: {
  3449. source: "./media/characters/natalya/back.svg"
  3450. }
  3451. }
  3452. },
  3453. [
  3454. {
  3455. name: "Normal",
  3456. height: math.unit(150, "feet"),
  3457. default: true
  3458. },
  3459. {
  3460. name: "Megamacro",
  3461. height: math.unit(5, "miles")
  3462. },
  3463. {
  3464. name: "Full-Size",
  3465. height: math.unit(600, "kiloparsecs")
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3471. {
  3472. front: {
  3473. height: math.unit(2, "meter"),
  3474. weight: math.unit(50, "kg"),
  3475. name: "Front",
  3476. image: {
  3477. source: "./media/characters/erestrebah/front.svg",
  3478. extra: 208 / 193,
  3479. bottom: 0.055
  3480. }
  3481. },
  3482. back: {
  3483. height: math.unit(2, "meter"),
  3484. weight: math.unit(50, "kg"),
  3485. name: "Back",
  3486. image: {
  3487. source: "./media/characters/erestrebah/back.svg",
  3488. extra: 1.3
  3489. }
  3490. }
  3491. },
  3492. [
  3493. {
  3494. name: "Normal",
  3495. height: math.unit(10, "feet")
  3496. },
  3497. {
  3498. name: "Large",
  3499. height: math.unit(50, "feet"),
  3500. default: true
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(300, "feet")
  3505. },
  3506. {
  3507. name: "Macro+",
  3508. height: math.unit(750, "feet")
  3509. },
  3510. {
  3511. name: "Megamacro",
  3512. height: math.unit(3, "miles")
  3513. }
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(80, "kg"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/jennifer/front.svg",
  3525. bottom: 0.11,
  3526. extra: 1.16
  3527. }
  3528. },
  3529. frontAlt: {
  3530. height: math.unit(2, "meter"),
  3531. weight: math.unit(80, "kg"),
  3532. name: "Front (Alt)",
  3533. image: {
  3534. source: "./media/characters/jennifer/front-alt.svg"
  3535. }
  3536. }
  3537. },
  3538. [
  3539. {
  3540. name: "Canon Height",
  3541. height: math.unit(120, "feet"),
  3542. default: true
  3543. },
  3544. {
  3545. name: "Macro+",
  3546. height: math.unit(300, "feet")
  3547. },
  3548. {
  3549. name: "Megamacro",
  3550. height: math.unit(20000, "feet")
  3551. }
  3552. ]
  3553. ))
  3554. characterMakers.push(() => makeCharacter(
  3555. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3556. {
  3557. front: {
  3558. height: math.unit(2, "meter"),
  3559. weight: math.unit(50, "kg"),
  3560. name: "Front",
  3561. image: {
  3562. source: "./media/characters/kalista/front.svg",
  3563. extra: 1947 / 1700,
  3564. bottom: 76.6 / 1412.98
  3565. }
  3566. },
  3567. back: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(50, "kg"),
  3570. name: "Back",
  3571. image: {
  3572. source: "./media/characters/kalista/back.svg",
  3573. extra: 1366 / 1156,
  3574. bottom: 33.9 / 1362.78
  3575. }
  3576. }
  3577. },
  3578. [
  3579. {
  3580. name: "Uncomfortably Small",
  3581. height: math.unit(10, "feet")
  3582. },
  3583. {
  3584. name: "Small",
  3585. height: math.unit(30, "feet")
  3586. },
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(100, "feet"),
  3590. default: true
  3591. },
  3592. {
  3593. name: "Macro+",
  3594. height: math.unit(2000, "feet")
  3595. },
  3596. {
  3597. name: "True Form",
  3598. height: math.unit(8924, "miles")
  3599. }
  3600. ]
  3601. ))
  3602. characterMakers.push(() => makeCharacter(
  3603. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3604. {
  3605. front: {
  3606. height: math.unit(2, "meter"),
  3607. weight: math.unit(120, "kg"),
  3608. name: "Front",
  3609. image: {
  3610. source: "./media/characters/ggv/front.svg"
  3611. }
  3612. },
  3613. side: {
  3614. height: math.unit(2, "meter"),
  3615. weight: math.unit(120, "kg"),
  3616. name: "Side",
  3617. image: {
  3618. source: "./media/characters/ggv/side.svg"
  3619. }
  3620. }
  3621. },
  3622. [
  3623. {
  3624. name: "Extremely Puny",
  3625. height: math.unit(9 + 5 / 12, "feet")
  3626. },
  3627. {
  3628. name: "Horribly Small",
  3629. height: math.unit(47.7, "miles"),
  3630. default: true
  3631. },
  3632. {
  3633. name: "Reasonably Sized",
  3634. height: math.unit(25000, "parsecs")
  3635. },
  3636. {
  3637. name: "Slightly Uncompressed",
  3638. height: math.unit(7.77e31, "parsecs")
  3639. },
  3640. {
  3641. name: "Omniversal",
  3642. height: math.unit(1e300, "meters")
  3643. },
  3644. ]
  3645. ))
  3646. characterMakers.push(() => makeCharacter(
  3647. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3648. {
  3649. front: {
  3650. height: math.unit(2, "meter"),
  3651. weight: math.unit(75, "lb"),
  3652. name: "Front",
  3653. image: {
  3654. source: "./media/characters/napalm/front.svg"
  3655. }
  3656. },
  3657. back: {
  3658. height: math.unit(2, "meter"),
  3659. weight: math.unit(75, "lb"),
  3660. name: "Back",
  3661. image: {
  3662. source: "./media/characters/napalm/back.svg"
  3663. }
  3664. }
  3665. },
  3666. [
  3667. {
  3668. name: "Standard",
  3669. height: math.unit(55, "feet"),
  3670. default: true
  3671. }
  3672. ]
  3673. ))
  3674. characterMakers.push(() => makeCharacter(
  3675. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3676. {
  3677. front: {
  3678. height: math.unit(7 + 5 / 6, "feet"),
  3679. weight: math.unit(325, "lb"),
  3680. name: "Front",
  3681. image: {
  3682. source: "./media/characters/asana/front.svg",
  3683. extra: 1133 / 1060,
  3684. bottom: 15.2 / 1148.6
  3685. }
  3686. },
  3687. back: {
  3688. height: math.unit(7 + 5 / 6, "feet"),
  3689. weight: math.unit(325, "lb"),
  3690. name: "Back",
  3691. image: {
  3692. source: "./media/characters/asana/back.svg",
  3693. extra: 1114 / 1043,
  3694. bottom: 5 / 1120
  3695. }
  3696. },
  3697. dressedDark: {
  3698. height: math.unit(7 + 5 / 6, "feet"),
  3699. weight: math.unit(325, "lb"),
  3700. name: "Dressed (Dark)",
  3701. image: {
  3702. source: "./media/characters/asana/dressed-dark.svg",
  3703. extra: 1133 / 1060,
  3704. bottom: 15.2 / 1148.6
  3705. }
  3706. },
  3707. dressedLight: {
  3708. height: math.unit(7 + 5 / 6, "feet"),
  3709. weight: math.unit(325, "lb"),
  3710. name: "Dressed (Light)",
  3711. image: {
  3712. source: "./media/characters/asana/dressed-light.svg",
  3713. extra: 1133 / 1060,
  3714. bottom: 15.2 / 1148.6
  3715. }
  3716. },
  3717. },
  3718. [
  3719. {
  3720. name: "Standard",
  3721. height: math.unit(7 + 5 / 6, "feet"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Large",
  3726. height: math.unit(10, "meters")
  3727. },
  3728. {
  3729. name: "Macro",
  3730. height: math.unit(2500, "meters")
  3731. },
  3732. {
  3733. name: "Megamacro",
  3734. height: math.unit(5e6, "meters")
  3735. },
  3736. {
  3737. name: "Examacro",
  3738. height: math.unit(5e12, "lightyears")
  3739. },
  3740. {
  3741. name: "Max Size",
  3742. height: math.unit(1e31, "lightyears")
  3743. }
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(2, "meter"),
  3751. weight: math.unit(60, "kg"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/ebony/front.svg",
  3755. bottom: 0.03,
  3756. extra: 1045 / 810 + 0.03
  3757. }
  3758. },
  3759. side: {
  3760. height: math.unit(2, "meter"),
  3761. weight: math.unit(60, "kg"),
  3762. name: "Side",
  3763. image: {
  3764. source: "./media/characters/ebony/side.svg",
  3765. bottom: 0.03,
  3766. extra: 1045 / 810 + 0.03
  3767. }
  3768. },
  3769. back: {
  3770. height: math.unit(2, "meter"),
  3771. weight: math.unit(60, "kg"),
  3772. name: "Back",
  3773. image: {
  3774. source: "./media/characters/ebony/back.svg",
  3775. bottom: 0.01,
  3776. extra: 1045 / 810 + 0.01
  3777. }
  3778. },
  3779. },
  3780. [
  3781. // TODO check why I did this lol
  3782. {
  3783. name: "Standard",
  3784. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3785. default: true
  3786. },
  3787. {
  3788. name: "Macro",
  3789. height: math.unit(200, "feet")
  3790. },
  3791. {
  3792. name: "Gigamacro",
  3793. height: math.unit(13000, "km")
  3794. }
  3795. ]
  3796. ))
  3797. characterMakers.push(() => makeCharacter(
  3798. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3799. {
  3800. front: {
  3801. height: math.unit(6, "feet"),
  3802. weight: math.unit(175, "lb"),
  3803. name: "Front",
  3804. image: {
  3805. source: "./media/characters/mountain/front.svg",
  3806. extra: 972 / 955,
  3807. bottom: 64 / 1036.6
  3808. }
  3809. },
  3810. back: {
  3811. height: math.unit(6, "feet"),
  3812. weight: math.unit(175, "lb"),
  3813. name: "Back",
  3814. image: {
  3815. source: "./media/characters/mountain/back.svg",
  3816. extra: 970 / 950,
  3817. bottom: 28.25 / 999
  3818. }
  3819. },
  3820. },
  3821. [
  3822. {
  3823. name: "Large",
  3824. height: math.unit(20, "meters")
  3825. },
  3826. {
  3827. name: "Macro",
  3828. height: math.unit(300, "meters")
  3829. },
  3830. {
  3831. name: "Gigamacro",
  3832. height: math.unit(10000, "km"),
  3833. default: true
  3834. },
  3835. {
  3836. name: "Examacro",
  3837. height: math.unit(10e9, "lightyears")
  3838. }
  3839. ]
  3840. ))
  3841. characterMakers.push(() => makeCharacter(
  3842. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3843. {
  3844. front: {
  3845. height: math.unit(8, "feet"),
  3846. weight: math.unit(500, "lb"),
  3847. name: "Front",
  3848. image: {
  3849. source: "./media/characters/rick/front.svg"
  3850. }
  3851. }
  3852. },
  3853. [
  3854. {
  3855. name: "Normal",
  3856. height: math.unit(8, "feet"),
  3857. default: true
  3858. },
  3859. {
  3860. name: "Macro",
  3861. height: math.unit(5, "km")
  3862. }
  3863. ]
  3864. ))
  3865. characterMakers.push(() => makeCharacter(
  3866. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3867. {
  3868. front: {
  3869. height: math.unit(8, "feet"),
  3870. weight: math.unit(120, "lb"),
  3871. name: "Front",
  3872. image: {
  3873. source: "./media/characters/ona/front.svg"
  3874. }
  3875. },
  3876. frontAlt: {
  3877. height: math.unit(8, "feet"),
  3878. weight: math.unit(120, "lb"),
  3879. name: "Front (Alt)",
  3880. image: {
  3881. source: "./media/characters/ona/front-alt.svg"
  3882. }
  3883. },
  3884. back: {
  3885. height: math.unit(8, "feet"),
  3886. weight: math.unit(120, "lb"),
  3887. name: "Back",
  3888. image: {
  3889. source: "./media/characters/ona/back.svg"
  3890. }
  3891. },
  3892. foot: {
  3893. height: math.unit(1.1, "feet"),
  3894. name: "Foot",
  3895. image: {
  3896. source: "./media/characters/ona/foot.svg"
  3897. }
  3898. }
  3899. },
  3900. [
  3901. {
  3902. name: "Megamacro",
  3903. height: math.unit(70, "km"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "Gigamacro",
  3908. height: math.unit(681818, "miles")
  3909. },
  3910. {
  3911. name: "Examacro",
  3912. height: math.unit(3800000, "lightyears")
  3913. },
  3914. ]
  3915. ))
  3916. characterMakers.push(() => makeCharacter(
  3917. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3918. {
  3919. front: {
  3920. height: math.unit(12, "feet"),
  3921. weight: math.unit(3000, "lb"),
  3922. name: "Front",
  3923. image: {
  3924. source: "./media/characters/mech/front.svg",
  3925. extra: 2900 / 2770,
  3926. bottom: 110 / 3010
  3927. }
  3928. },
  3929. back: {
  3930. height: math.unit(12, "feet"),
  3931. weight: math.unit(3000, "lb"),
  3932. name: "Back",
  3933. image: {
  3934. source: "./media/characters/mech/back.svg",
  3935. extra: 3011 / 2890,
  3936. bottom: 94 / 3105
  3937. }
  3938. },
  3939. maw: {
  3940. height: math.unit(3.07, "feet"),
  3941. name: "Maw",
  3942. image: {
  3943. source: "./media/characters/mech/maw.svg"
  3944. }
  3945. },
  3946. head: {
  3947. height: math.unit(2.82, "feet"),
  3948. name: "Head",
  3949. image: {
  3950. source: "./media/characters/mech/head.svg"
  3951. }
  3952. },
  3953. dick: {
  3954. height: math.unit(1.43, "feet"),
  3955. name: "Dick",
  3956. image: {
  3957. source: "./media/characters/mech/dick.svg"
  3958. }
  3959. },
  3960. },
  3961. [
  3962. {
  3963. name: "Normal",
  3964. height: math.unit(12, "feet")
  3965. },
  3966. {
  3967. name: "Macro",
  3968. height: math.unit(300, "feet"),
  3969. default: true
  3970. },
  3971. {
  3972. name: "Macro+",
  3973. height: math.unit(1500, "feet")
  3974. },
  3975. ]
  3976. ))
  3977. characterMakers.push(() => makeCharacter(
  3978. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3979. {
  3980. front: {
  3981. height: math.unit(1.3, "meter"),
  3982. weight: math.unit(30, "kg"),
  3983. name: "Front",
  3984. image: {
  3985. source: "./media/characters/gregory/front.svg",
  3986. }
  3987. }
  3988. },
  3989. [
  3990. {
  3991. name: "Normal",
  3992. height: math.unit(1.3, "meter"),
  3993. default: true
  3994. },
  3995. {
  3996. name: "Macro",
  3997. height: math.unit(20, "meter")
  3998. }
  3999. ]
  4000. ))
  4001. characterMakers.push(() => makeCharacter(
  4002. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4003. {
  4004. front: {
  4005. height: math.unit(2.8, "meter"),
  4006. weight: math.unit(200, "kg"),
  4007. name: "Front",
  4008. image: {
  4009. source: "./media/characters/elory/front.svg",
  4010. }
  4011. }
  4012. },
  4013. [
  4014. {
  4015. name: "Normal",
  4016. height: math.unit(2.8, "meter"),
  4017. default: true
  4018. },
  4019. {
  4020. name: "Macro",
  4021. height: math.unit(38, "meter")
  4022. }
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4027. {
  4028. front: {
  4029. height: math.unit(470, "feet"),
  4030. weight: math.unit(924, "tons"),
  4031. name: "Front",
  4032. image: {
  4033. source: "./media/characters/angelpatamon/front.svg",
  4034. }
  4035. }
  4036. },
  4037. [
  4038. {
  4039. name: "Normal",
  4040. height: math.unit(470, "feet"),
  4041. default: true
  4042. },
  4043. {
  4044. name: "Deity Size I",
  4045. height: math.unit(28651.2, "km")
  4046. },
  4047. {
  4048. name: "Deity Size II",
  4049. height: math.unit(171907.2, "km")
  4050. }
  4051. ]
  4052. ))
  4053. characterMakers.push(() => makeCharacter(
  4054. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4055. {
  4056. side: {
  4057. height: math.unit(7.2, "meter"),
  4058. weight: math.unit(8.2, "tons"),
  4059. name: "Side",
  4060. image: {
  4061. source: "./media/characters/cryae/side.svg",
  4062. extra: 3500 / 1500
  4063. }
  4064. }
  4065. },
  4066. [
  4067. {
  4068. name: "Normal",
  4069. height: math.unit(7.2, "meter"),
  4070. default: true
  4071. }
  4072. ]
  4073. ))
  4074. characterMakers.push(() => makeCharacter(
  4075. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4076. {
  4077. front: {
  4078. height: math.unit(6, "feet"),
  4079. weight: math.unit(175, "lb"),
  4080. name: "Front",
  4081. image: {
  4082. source: "./media/characters/xera/front.svg",
  4083. extra: 2377 / 1972,
  4084. bottom: 75.5 / 2452
  4085. }
  4086. },
  4087. side: {
  4088. height: math.unit(6, "feet"),
  4089. weight: math.unit(175, "lb"),
  4090. name: "Side",
  4091. image: {
  4092. source: "./media/characters/xera/side.svg",
  4093. extra: 2345 / 2019,
  4094. bottom: 39.7 / 2384
  4095. }
  4096. },
  4097. back: {
  4098. height: math.unit(6, "feet"),
  4099. weight: math.unit(175, "lb"),
  4100. name: "Back",
  4101. image: {
  4102. source: "./media/characters/xera/back.svg",
  4103. extra: 2095 / 1984,
  4104. bottom: 67 / 2166
  4105. }
  4106. },
  4107. },
  4108. [
  4109. {
  4110. name: "Small",
  4111. height: math.unit(10, "feet")
  4112. },
  4113. {
  4114. name: "Macro",
  4115. height: math.unit(500, "meters"),
  4116. default: true
  4117. },
  4118. {
  4119. name: "Macro+",
  4120. height: math.unit(10, "km")
  4121. },
  4122. {
  4123. name: "Gigamacro",
  4124. height: math.unit(25000, "km")
  4125. },
  4126. {
  4127. name: "Teramacro",
  4128. height: math.unit(3e6, "km")
  4129. }
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4134. {
  4135. front: {
  4136. height: math.unit(6, "feet"),
  4137. weight: math.unit(175, "lb"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/nebula/front.svg",
  4141. extra: 2566 / 2362,
  4142. bottom: 81 / 2644
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Small",
  4149. height: math.unit(4.5, "meters")
  4150. },
  4151. {
  4152. name: "Macro",
  4153. height: math.unit(1500, "meters"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Megamacro",
  4158. height: math.unit(150, "km")
  4159. },
  4160. {
  4161. name: "Gigamacro",
  4162. height: math.unit(27000, "km")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4168. {
  4169. front: {
  4170. height: math.unit(6, "feet"),
  4171. weight: math.unit(225, "lb"),
  4172. name: "Front",
  4173. image: {
  4174. source: "./media/characters/abysgar/front.svg"
  4175. }
  4176. }
  4177. },
  4178. [
  4179. {
  4180. name: "Small",
  4181. height: math.unit(4.5, "meters")
  4182. },
  4183. {
  4184. name: "Macro",
  4185. height: math.unit(1250, "meters"),
  4186. default: true
  4187. },
  4188. {
  4189. name: "Megamacro",
  4190. height: math.unit(125, "km")
  4191. },
  4192. {
  4193. name: "Gigamacro",
  4194. height: math.unit(26000, "km")
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4200. {
  4201. front: {
  4202. height: math.unit(6, "feet"),
  4203. weight: math.unit(180, "lb"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/yakuz/front.svg"
  4207. }
  4208. }
  4209. },
  4210. [
  4211. {
  4212. name: "Small",
  4213. height: math.unit(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(200, "km")
  4223. },
  4224. {
  4225. name: "Gigamacro",
  4226. height: math.unit(100000, "km")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4232. {
  4233. front: {
  4234. height: math.unit(6, "feet"),
  4235. weight: math.unit(175, "lb"),
  4236. name: "Front",
  4237. image: {
  4238. source: "./media/characters/mirova/front.svg",
  4239. extra: 3334 / 3071,
  4240. bottom: 42 / 3375.6
  4241. }
  4242. }
  4243. },
  4244. [
  4245. {
  4246. name: "Small",
  4247. height: math.unit(5, "meters")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(900, "meters"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Megamacro",
  4256. height: math.unit(135, "km")
  4257. },
  4258. {
  4259. name: "Gigamacro",
  4260. height: math.unit(20000, "km")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4266. {
  4267. side: {
  4268. height: math.unit(28.35, "feet"),
  4269. weight: math.unit(99.75, "tons"),
  4270. name: "Side",
  4271. image: {
  4272. source: "./media/characters/asana-mech/side.svg",
  4273. extra: 923 / 699,
  4274. bottom: 50 / 975
  4275. }
  4276. },
  4277. chaingun: {
  4278. height: math.unit(7, "feet"),
  4279. weight: math.unit(2400, "lb"),
  4280. name: "Chaingun",
  4281. image: {
  4282. source: "./media/characters/asana-mech/chaingun.svg"
  4283. }
  4284. },
  4285. laser: {
  4286. height: math.unit(7.12, "feet"),
  4287. weight: math.unit(2000, "lb"),
  4288. name: "Laser",
  4289. image: {
  4290. source: "./media/characters/asana-mech/laser.svg"
  4291. }
  4292. },
  4293. },
  4294. [
  4295. {
  4296. name: "Normal",
  4297. height: math.unit(28.35, "feet"),
  4298. default: true
  4299. },
  4300. {
  4301. name: "Macro",
  4302. height: math.unit(2500, "feet")
  4303. },
  4304. {
  4305. name: "Megamacro",
  4306. height: math.unit(25, "miles")
  4307. },
  4308. {
  4309. name: "Examacro",
  4310. height: math.unit(6e8, "lightyears")
  4311. },
  4312. ]
  4313. ))
  4314. characterMakers.push(() => makeCharacter(
  4315. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4316. {
  4317. front: {
  4318. height: math.unit(5, "meters"),
  4319. weight: math.unit(1000, "kg"),
  4320. name: "Front",
  4321. image: {
  4322. source: "./media/characters/asche/front.svg",
  4323. extra: 1258 / 1190,
  4324. bottom: 47 / 1305
  4325. }
  4326. },
  4327. frontUnderwear: {
  4328. height: math.unit(5, "meters"),
  4329. weight: math.unit(1000, "kg"),
  4330. name: "Front (Underwear)",
  4331. image: {
  4332. source: "./media/characters/asche/front-underwear.svg",
  4333. extra: 1258 / 1190,
  4334. bottom: 47 / 1305
  4335. }
  4336. },
  4337. frontDressed: {
  4338. height: math.unit(5, "meters"),
  4339. weight: math.unit(1000, "kg"),
  4340. name: "Front (Dressed)",
  4341. image: {
  4342. source: "./media/characters/asche/front-dressed.svg",
  4343. extra: 1258 / 1190,
  4344. bottom: 47 / 1305
  4345. }
  4346. },
  4347. frontArmor: {
  4348. height: math.unit(5, "meters"),
  4349. weight: math.unit(1000, "kg"),
  4350. name: "Front (Armored)",
  4351. image: {
  4352. source: "./media/characters/asche/front-armored.svg",
  4353. extra: 1374 / 1308,
  4354. bottom: 23 / 1397
  4355. }
  4356. },
  4357. mp724: {
  4358. height: math.unit(0.96, "meters"),
  4359. weight: math.unit(38, "kg"),
  4360. name: "H&K MP724",
  4361. image: {
  4362. source: "./media/characters/asche/h&k-mp724.svg"
  4363. }
  4364. },
  4365. side: {
  4366. height: math.unit(5, "meters"),
  4367. weight: math.unit(1000, "kg"),
  4368. name: "Side",
  4369. image: {
  4370. source: "./media/characters/asche/side.svg",
  4371. extra: 1717 / 1609,
  4372. bottom: 0.005
  4373. }
  4374. },
  4375. back: {
  4376. height: math.unit(5, "meters"),
  4377. weight: math.unit(1000, "kg"),
  4378. name: "Back",
  4379. image: {
  4380. source: "./media/characters/asche/back.svg",
  4381. extra: 1570 / 1501
  4382. }
  4383. },
  4384. },
  4385. [
  4386. {
  4387. name: "DEFCON 5",
  4388. height: math.unit(5, "meters")
  4389. },
  4390. {
  4391. name: "DEFCON 4",
  4392. height: math.unit(500, "meters"),
  4393. default: true
  4394. },
  4395. {
  4396. name: "DEFCON 3",
  4397. height: math.unit(5, "km")
  4398. },
  4399. {
  4400. name: "DEFCON 2",
  4401. height: math.unit(500, "km")
  4402. },
  4403. {
  4404. name: "DEFCON 1",
  4405. height: math.unit(500000, "km")
  4406. },
  4407. {
  4408. name: "DEFCON 0",
  4409. height: math.unit(3, "gigaparsecs")
  4410. },
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4415. {
  4416. front: {
  4417. height: math.unit(2, "meters"),
  4418. weight: math.unit(76, "kg"),
  4419. name: "Front",
  4420. image: {
  4421. source: "./media/characters/gale/front.svg"
  4422. }
  4423. },
  4424. frontAlt1: {
  4425. height: math.unit(2, "meters"),
  4426. weight: math.unit(76, "kg"),
  4427. name: "Front (Alt 1)",
  4428. image: {
  4429. source: "./media/characters/gale/front-alt-1.svg"
  4430. }
  4431. },
  4432. frontAlt2: {
  4433. height: math.unit(2, "meters"),
  4434. weight: math.unit(76, "kg"),
  4435. name: "Front (Alt 2)",
  4436. image: {
  4437. source: "./media/characters/gale/front-alt-2.svg"
  4438. }
  4439. },
  4440. },
  4441. [
  4442. {
  4443. name: "Normal",
  4444. height: math.unit(7, "feet")
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(150, "feet"),
  4449. default: true
  4450. },
  4451. {
  4452. name: "Macro+",
  4453. height: math.unit(300, "feet")
  4454. },
  4455. ]
  4456. ))
  4457. characterMakers.push(() => makeCharacter(
  4458. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4459. {
  4460. front: {
  4461. height: math.unit(2, "meters"),
  4462. weight: math.unit(76, "kg"),
  4463. name: "Front",
  4464. image: {
  4465. source: "./media/characters/draylen/front.svg"
  4466. }
  4467. }
  4468. },
  4469. [
  4470. {
  4471. name: "Macro",
  4472. height: math.unit(150, "feet"),
  4473. default: true
  4474. }
  4475. ]
  4476. ))
  4477. characterMakers.push(() => makeCharacter(
  4478. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4479. {
  4480. front: {
  4481. height: math.unit(7 + 9 / 12, "feet"),
  4482. weight: math.unit(379, "lbs"),
  4483. name: "Front",
  4484. image: {
  4485. source: "./media/characters/chez/front.svg"
  4486. }
  4487. },
  4488. side: {
  4489. height: math.unit(7 + 9 / 12, "feet"),
  4490. weight: math.unit(379, "lbs"),
  4491. name: "Side",
  4492. image: {
  4493. source: "./media/characters/chez/side.svg"
  4494. }
  4495. }
  4496. },
  4497. [
  4498. {
  4499. name: "Normal",
  4500. height: math.unit(7 + 9 / 12, "feet"),
  4501. default: true
  4502. },
  4503. {
  4504. name: "God King",
  4505. height: math.unit(9750000, "meters")
  4506. }
  4507. ]
  4508. ))
  4509. characterMakers.push(() => makeCharacter(
  4510. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4511. {
  4512. front: {
  4513. height: math.unit(6, "feet"),
  4514. weight: math.unit(275, "lbs"),
  4515. name: "Front",
  4516. image: {
  4517. source: "./media/characters/kaylum/front.svg",
  4518. bottom: 0.01,
  4519. extra: 1166 / 1031
  4520. }
  4521. },
  4522. frontWingless: {
  4523. height: math.unit(6, "feet"),
  4524. weight: math.unit(275, "lbs"),
  4525. name: "Front (Wingless)",
  4526. image: {
  4527. source: "./media/characters/kaylum/front-wingless.svg",
  4528. bottom: 0.01,
  4529. extra: 1117 / 1031
  4530. }
  4531. }
  4532. },
  4533. [
  4534. {
  4535. name: "Normal",
  4536. height: math.unit(3.05, "meters")
  4537. },
  4538. {
  4539. name: "Master",
  4540. height: math.unit(5.5, "meters")
  4541. },
  4542. {
  4543. name: "Rampage",
  4544. height: math.unit(19, "meters")
  4545. },
  4546. {
  4547. name: "Macro Lite",
  4548. height: math.unit(37, "meters")
  4549. },
  4550. {
  4551. name: "Hyper Predator",
  4552. height: math.unit(61, "meters")
  4553. },
  4554. {
  4555. name: "Macro",
  4556. height: math.unit(138, "meters"),
  4557. default: true
  4558. }
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4563. {
  4564. front: {
  4565. height: math.unit(6, "feet"),
  4566. weight: math.unit(150, "lbs"),
  4567. name: "Front",
  4568. image: {
  4569. source: "./media/characters/geta/front.svg"
  4570. }
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Micro",
  4576. height: math.unit(3, "inches"),
  4577. default: true
  4578. },
  4579. {
  4580. name: "Normal",
  4581. height: math.unit(5 + 5 / 12, "feet")
  4582. }
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4587. {
  4588. front: {
  4589. height: math.unit(6, "feet"),
  4590. weight: math.unit(300, "lbs"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/tyrnn/front.svg"
  4594. }
  4595. }
  4596. },
  4597. [
  4598. {
  4599. name: "Main Height",
  4600. height: math.unit(355, "feet"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Fave. Height",
  4605. height: math.unit(2400, "feet")
  4606. }
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(6, "feet"),
  4614. weight: math.unit(300, "lbs"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/appledectomy/front.svg"
  4618. }
  4619. }
  4620. },
  4621. [
  4622. {
  4623. name: "Macro",
  4624. height: math.unit(2500, "feet")
  4625. },
  4626. {
  4627. name: "Megamacro",
  4628. height: math.unit(50, "miles"),
  4629. default: true
  4630. },
  4631. {
  4632. name: "Gigamacro",
  4633. height: math.unit(5000, "miles")
  4634. },
  4635. {
  4636. name: "Teramacro",
  4637. height: math.unit(250000, "miles")
  4638. },
  4639. ]
  4640. ))
  4641. characterMakers.push(() => makeCharacter(
  4642. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4643. {
  4644. front: {
  4645. height: math.unit(6, "feet"),
  4646. weight: math.unit(200, "lbs"),
  4647. name: "Front",
  4648. image: {
  4649. source: "./media/characters/vulpes/front.svg",
  4650. extra: 573 / 543,
  4651. bottom: 0.033
  4652. }
  4653. },
  4654. side: {
  4655. height: math.unit(6, "feet"),
  4656. weight: math.unit(200, "lbs"),
  4657. name: "Side",
  4658. image: {
  4659. source: "./media/characters/vulpes/side.svg",
  4660. extra: 577 / 549,
  4661. bottom: 11 / 588
  4662. }
  4663. },
  4664. back: {
  4665. height: math.unit(6, "feet"),
  4666. weight: math.unit(200, "lbs"),
  4667. name: "Back",
  4668. image: {
  4669. source: "./media/characters/vulpes/back.svg",
  4670. extra: 573 / 549,
  4671. bottom: 20 / 593
  4672. }
  4673. },
  4674. feet: {
  4675. height: math.unit(1.276, "feet"),
  4676. name: "Feet",
  4677. image: {
  4678. source: "./media/characters/vulpes/feet.svg"
  4679. }
  4680. },
  4681. maw: {
  4682. height: math.unit(1.18, "feet"),
  4683. name: "Maw",
  4684. image: {
  4685. source: "./media/characters/vulpes/maw.svg"
  4686. }
  4687. },
  4688. },
  4689. [
  4690. {
  4691. name: "Micro",
  4692. height: math.unit(2, "inches")
  4693. },
  4694. {
  4695. name: "Normal",
  4696. height: math.unit(6.3, "feet")
  4697. },
  4698. {
  4699. name: "Macro",
  4700. height: math.unit(850, "feet")
  4701. },
  4702. {
  4703. name: "Megamacro",
  4704. height: math.unit(7500, "feet"),
  4705. default: true
  4706. },
  4707. {
  4708. name: "Gigamacro",
  4709. height: math.unit(570000, "miles")
  4710. }
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4715. {
  4716. front: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(210, "lbs"),
  4719. name: "Front",
  4720. image: {
  4721. source: "./media/characters/rain-fallen/front.svg"
  4722. }
  4723. },
  4724. side: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(210, "lbs"),
  4727. name: "Side",
  4728. image: {
  4729. source: "./media/characters/rain-fallen/side.svg"
  4730. }
  4731. },
  4732. back: {
  4733. height: math.unit(6, "feet"),
  4734. weight: math.unit(210, "lbs"),
  4735. name: "Back",
  4736. image: {
  4737. source: "./media/characters/rain-fallen/back.svg"
  4738. }
  4739. },
  4740. feral: {
  4741. height: math.unit(9, "feet"),
  4742. weight: math.unit(700, "lbs"),
  4743. name: "Feral",
  4744. image: {
  4745. source: "./media/characters/rain-fallen/feral.svg"
  4746. }
  4747. },
  4748. },
  4749. [
  4750. {
  4751. name: "Meddling with Mortals",
  4752. height: math.unit(8 + 8/12, "feet")
  4753. },
  4754. {
  4755. name: "Normal",
  4756. height: math.unit(5, "meter")
  4757. },
  4758. {
  4759. name: "Macro",
  4760. height: math.unit(150, "meter"),
  4761. default: true
  4762. },
  4763. {
  4764. name: "Megamacro",
  4765. height: math.unit(278e6, "meter")
  4766. },
  4767. {
  4768. name: "Gigamacro",
  4769. height: math.unit(2e9, "meter")
  4770. },
  4771. {
  4772. name: "Teramacro",
  4773. height: math.unit(8e12, "meter")
  4774. },
  4775. {
  4776. name: "Devourer",
  4777. height: math.unit(14, "zettameters")
  4778. },
  4779. {
  4780. name: "Scarlet King",
  4781. height: math.unit(18, "yottameters")
  4782. },
  4783. {
  4784. name: "Void",
  4785. height: math.unit(1e88, "yottameters")
  4786. }
  4787. ]
  4788. ))
  4789. characterMakers.push(() => makeCharacter(
  4790. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4791. {
  4792. standing: {
  4793. height: math.unit(6, "feet"),
  4794. weight: math.unit(180, "lbs"),
  4795. name: "Standing",
  4796. image: {
  4797. source: "./media/characters/zaakira/standing.svg",
  4798. extra: 1599/1504,
  4799. bottom: 39/1638
  4800. }
  4801. },
  4802. laying: {
  4803. height: math.unit(3, "feet"),
  4804. weight: math.unit(180, "lbs"),
  4805. name: "Laying",
  4806. image: {
  4807. source: "./media/characters/zaakira/laying.svg"
  4808. }
  4809. },
  4810. },
  4811. [
  4812. {
  4813. name: "Normal",
  4814. height: math.unit(12, "feet")
  4815. },
  4816. {
  4817. name: "Macro",
  4818. height: math.unit(279, "feet"),
  4819. default: true
  4820. }
  4821. ]
  4822. ))
  4823. characterMakers.push(() => makeCharacter(
  4824. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4825. {
  4826. femSfw: {
  4827. height: math.unit(8, "feet"),
  4828. weight: math.unit(350, "lb"),
  4829. name: "Fem",
  4830. image: {
  4831. source: "./media/characters/sigvald/fem-sfw.svg",
  4832. extra: 182 / 164,
  4833. bottom: 8.7 / 190.5
  4834. }
  4835. },
  4836. femNsfw: {
  4837. height: math.unit(8, "feet"),
  4838. weight: math.unit(350, "lb"),
  4839. name: "Fem (NSFW)",
  4840. image: {
  4841. source: "./media/characters/sigvald/fem-nsfw.svg",
  4842. extra: 182 / 164,
  4843. bottom: 8.7 / 190.5
  4844. }
  4845. },
  4846. maleNsfw: {
  4847. height: math.unit(8, "feet"),
  4848. weight: math.unit(350, "lb"),
  4849. name: "Male (NSFW)",
  4850. image: {
  4851. source: "./media/characters/sigvald/male-nsfw.svg",
  4852. extra: 182 / 164,
  4853. bottom: 8.7 / 190.5
  4854. }
  4855. },
  4856. hermNsfw: {
  4857. height: math.unit(8, "feet"),
  4858. weight: math.unit(350, "lb"),
  4859. name: "Herm (NSFW)",
  4860. image: {
  4861. source: "./media/characters/sigvald/herm-nsfw.svg",
  4862. extra: 182 / 164,
  4863. bottom: 8.7 / 190.5
  4864. }
  4865. },
  4866. dick: {
  4867. height: math.unit(2.36, "feet"),
  4868. name: "Dick",
  4869. image: {
  4870. source: "./media/characters/sigvald/dick.svg"
  4871. }
  4872. },
  4873. eye: {
  4874. height: math.unit(0.31, "feet"),
  4875. name: "Eye",
  4876. image: {
  4877. source: "./media/characters/sigvald/eye.svg"
  4878. }
  4879. },
  4880. mouth: {
  4881. height: math.unit(0.92, "feet"),
  4882. name: "Mouth",
  4883. image: {
  4884. source: "./media/characters/sigvald/mouth.svg"
  4885. }
  4886. },
  4887. paws: {
  4888. height: math.unit(2.2, "feet"),
  4889. name: "Paws",
  4890. image: {
  4891. source: "./media/characters/sigvald/paws.svg"
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Normal",
  4898. height: math.unit(8, "feet")
  4899. },
  4900. {
  4901. name: "Large",
  4902. height: math.unit(12, "feet")
  4903. },
  4904. {
  4905. name: "Larger",
  4906. height: math.unit(20, "feet")
  4907. },
  4908. {
  4909. name: "Macro",
  4910. height: math.unit(150, "feet")
  4911. },
  4912. {
  4913. name: "Macro+",
  4914. height: math.unit(200, "feet"),
  4915. default: true
  4916. },
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4921. {
  4922. side: {
  4923. height: math.unit(12, "feet"),
  4924. weight: math.unit(2000, "kg"),
  4925. name: "Side",
  4926. image: {
  4927. source: "./media/characters/scott/side.svg",
  4928. extra: 754 / 724,
  4929. bottom: 0.069
  4930. }
  4931. },
  4932. upright: {
  4933. height: math.unit(12, "feet"),
  4934. weight: math.unit(2000, "kg"),
  4935. name: "Upright",
  4936. image: {
  4937. source: "./media/characters/scott/upright.svg",
  4938. extra: 3881 / 3722,
  4939. bottom: 0.05
  4940. }
  4941. },
  4942. },
  4943. [
  4944. {
  4945. name: "Normal",
  4946. height: math.unit(12, "feet"),
  4947. default: true
  4948. },
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4953. {
  4954. side: {
  4955. height: math.unit(8, "meters"),
  4956. weight: math.unit(84755, "lbs"),
  4957. name: "Side",
  4958. image: {
  4959. source: "./media/characters/tobias/side.svg",
  4960. extra: 1474 / 1096,
  4961. bottom: 38.9 / 1513.1235
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(8, "meters"),
  4969. default: true
  4970. },
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4975. {
  4976. front: {
  4977. height: math.unit(5.5, "feet"),
  4978. weight: math.unit(400, "lbs"),
  4979. name: "Front",
  4980. image: {
  4981. source: "./media/characters/kieran/front.svg",
  4982. extra: 2694 / 2364,
  4983. bottom: 217 / 2908
  4984. }
  4985. },
  4986. side: {
  4987. height: math.unit(5.5, "feet"),
  4988. weight: math.unit(400, "lbs"),
  4989. name: "Side",
  4990. image: {
  4991. source: "./media/characters/kieran/side.svg",
  4992. extra: 875 / 777,
  4993. bottom: 84.6 / 959
  4994. }
  4995. },
  4996. },
  4997. [
  4998. {
  4999. name: "Normal",
  5000. height: math.unit(5.5, "feet"),
  5001. default: true
  5002. },
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5007. {
  5008. side: {
  5009. height: math.unit(2, "meters"),
  5010. weight: math.unit(70, "kg"),
  5011. name: "Side",
  5012. image: {
  5013. source: "./media/characters/sanya/side.svg",
  5014. bottom: 0.02,
  5015. extra: 1.02
  5016. }
  5017. },
  5018. },
  5019. [
  5020. {
  5021. name: "Small",
  5022. height: math.unit(2, "meters")
  5023. },
  5024. {
  5025. name: "Normal",
  5026. height: math.unit(3, "meters")
  5027. },
  5028. {
  5029. name: "Macro",
  5030. height: math.unit(16, "meters"),
  5031. default: true
  5032. },
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5037. {
  5038. front: {
  5039. height: math.unit(2, "meters"),
  5040. weight: math.unit(120, "kg"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/miranda/front.svg",
  5044. extra: 195 / 185,
  5045. bottom: 10.9 / 206.5
  5046. }
  5047. },
  5048. back: {
  5049. height: math.unit(2, "meters"),
  5050. weight: math.unit(120, "kg"),
  5051. name: "Back",
  5052. image: {
  5053. source: "./media/characters/miranda/back.svg",
  5054. extra: 201 / 193,
  5055. bottom: 2.3 / 203.7
  5056. }
  5057. },
  5058. },
  5059. [
  5060. {
  5061. name: "Normal",
  5062. height: math.unit(10, "feet"),
  5063. default: true
  5064. }
  5065. ]
  5066. ))
  5067. characterMakers.push(() => makeCharacter(
  5068. { name: "James", species: ["deer"], tags: ["anthro"] },
  5069. {
  5070. side: {
  5071. height: math.unit(2, "meters"),
  5072. weight: math.unit(100, "kg"),
  5073. name: "Front",
  5074. image: {
  5075. source: "./media/characters/james/front.svg",
  5076. extra: 10 / 8.5
  5077. }
  5078. },
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(8.5, "feet"),
  5084. default: true
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5090. {
  5091. side: {
  5092. height: math.unit(9.5, "feet"),
  5093. weight: math.unit(2500, "lbs"),
  5094. name: "Side",
  5095. image: {
  5096. source: "./media/characters/heather/side.svg"
  5097. }
  5098. },
  5099. },
  5100. [
  5101. {
  5102. name: "Normal",
  5103. height: math.unit(9.5, "feet"),
  5104. default: true
  5105. }
  5106. ]
  5107. ))
  5108. characterMakers.push(() => makeCharacter(
  5109. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5110. {
  5111. side: {
  5112. height: math.unit(6.5, "feet"),
  5113. weight: math.unit(400, "lbs"),
  5114. name: "Side",
  5115. image: {
  5116. source: "./media/characters/lukas/side.svg",
  5117. extra: 7.25 / 6.5
  5118. }
  5119. },
  5120. },
  5121. [
  5122. {
  5123. name: "Normal",
  5124. height: math.unit(6.5, "feet"),
  5125. default: true
  5126. }
  5127. ]
  5128. ))
  5129. characterMakers.push(() => makeCharacter(
  5130. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5131. {
  5132. side: {
  5133. height: math.unit(5, "feet"),
  5134. weight: math.unit(3000, "lbs"),
  5135. name: "Side",
  5136. image: {
  5137. source: "./media/characters/louise/side.svg"
  5138. }
  5139. },
  5140. },
  5141. [
  5142. {
  5143. name: "Normal",
  5144. height: math.unit(5, "feet"),
  5145. default: true
  5146. }
  5147. ]
  5148. ))
  5149. characterMakers.push(() => makeCharacter(
  5150. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5151. {
  5152. side: {
  5153. height: math.unit(6, "feet"),
  5154. weight: math.unit(150, "lbs"),
  5155. name: "Side",
  5156. image: {
  5157. source: "./media/characters/ramona/side.svg"
  5158. }
  5159. },
  5160. },
  5161. [
  5162. {
  5163. name: "Normal",
  5164. height: math.unit(5.3, "meters"),
  5165. default: true
  5166. },
  5167. {
  5168. name: "Macro",
  5169. height: math.unit(20, "stories")
  5170. },
  5171. {
  5172. name: "Macro+",
  5173. height: math.unit(50, "stories")
  5174. },
  5175. ]
  5176. ))
  5177. characterMakers.push(() => makeCharacter(
  5178. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5179. {
  5180. standing: {
  5181. height: math.unit(5.75, "feet"),
  5182. weight: math.unit(160, "lbs"),
  5183. name: "Standing",
  5184. image: {
  5185. source: "./media/characters/deerpuff/standing.svg",
  5186. extra: 682 / 624
  5187. }
  5188. },
  5189. sitting: {
  5190. height: math.unit(5.75 / 1.79, "feet"),
  5191. weight: math.unit(160, "lbs"),
  5192. name: "Sitting",
  5193. image: {
  5194. source: "./media/characters/deerpuff/sitting.svg",
  5195. bottom: 44 / 400,
  5196. extra: 1
  5197. }
  5198. },
  5199. taurLaying: {
  5200. height: math.unit(6, "feet"),
  5201. weight: math.unit(400, "lbs"),
  5202. name: "Taur (Laying)",
  5203. image: {
  5204. source: "./media/characters/deerpuff/taur-laying.svg"
  5205. }
  5206. },
  5207. },
  5208. [
  5209. {
  5210. name: "Puffball",
  5211. height: math.unit(6, "inches")
  5212. },
  5213. {
  5214. name: "Normalpuff",
  5215. height: math.unit(5.75, "feet")
  5216. },
  5217. {
  5218. name: "Macropuff",
  5219. height: math.unit(1500, "feet"),
  5220. default: true
  5221. },
  5222. {
  5223. name: "Megapuff",
  5224. height: math.unit(500, "miles")
  5225. },
  5226. {
  5227. name: "Gigapuff",
  5228. height: math.unit(250000, "miles")
  5229. },
  5230. {
  5231. name: "Omegapuff",
  5232. height: math.unit(1000, "lightyears")
  5233. },
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5238. {
  5239. stomping: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(170, "lbs"),
  5242. name: "Stomping",
  5243. image: {
  5244. source: "./media/characters/vivian/stomping.svg"
  5245. }
  5246. },
  5247. sitting: {
  5248. height: math.unit(6 / 1.75, "feet"),
  5249. weight: math.unit(170, "lbs"),
  5250. name: "Sitting",
  5251. image: {
  5252. source: "./media/characters/vivian/sitting.svg",
  5253. bottom: 1 / 6.4,
  5254. extra: 1,
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(7, "feet"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Macro",
  5266. height: math.unit(10, "stories")
  5267. },
  5268. {
  5269. name: "Macro+",
  5270. height: math.unit(30, "stories")
  5271. },
  5272. {
  5273. name: "Megamacro",
  5274. height: math.unit(10, "miles")
  5275. },
  5276. {
  5277. name: "Megamacro+",
  5278. height: math.unit(2750000, "meters")
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(160, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/prince/front.svg",
  5291. extra: 3400 / 3000
  5292. }
  5293. },
  5294. jumping: {
  5295. height: math.unit(6, "feet"),
  5296. weight: math.unit(160, "lbs"),
  5297. name: "Jumping",
  5298. image: {
  5299. source: "./media/characters/prince/jump.svg",
  5300. extra: 2555 / 2134
  5301. }
  5302. },
  5303. },
  5304. [
  5305. {
  5306. name: "Normal",
  5307. height: math.unit(7.75, "feet"),
  5308. default: true
  5309. },
  5310. {
  5311. name: "Not cute",
  5312. height: math.unit(17, "feet")
  5313. },
  5314. {
  5315. name: "I said NOT",
  5316. height: math.unit(91, "feet")
  5317. },
  5318. {
  5319. name: "Please stop",
  5320. height: math.unit(560, "feet")
  5321. },
  5322. {
  5323. name: "What have you done",
  5324. height: math.unit(2200, "feet")
  5325. },
  5326. {
  5327. name: "Deer God",
  5328. height: math.unit(3.6, "miles")
  5329. },
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5334. {
  5335. standing: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(300, "lbs"),
  5338. name: "Standing",
  5339. image: {
  5340. source: "./media/characters/psymon/standing.svg",
  5341. extra: 1888 / 1810,
  5342. bottom: 0.05
  5343. }
  5344. },
  5345. slithering: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(300, "lbs"),
  5348. name: "Slithering",
  5349. image: {
  5350. source: "./media/characters/psymon/slithering.svg",
  5351. extra: 1330 / 1224
  5352. }
  5353. },
  5354. slitheringAlt: {
  5355. height: math.unit(6, "feet"),
  5356. weight: math.unit(300, "lbs"),
  5357. name: "Slithering (Alt)",
  5358. image: {
  5359. source: "./media/characters/psymon/slithering-alt.svg",
  5360. extra: 1330 / 1224
  5361. }
  5362. },
  5363. },
  5364. [
  5365. {
  5366. name: "Normal",
  5367. height: math.unit(11.25, "feet"),
  5368. default: true
  5369. },
  5370. {
  5371. name: "Large",
  5372. height: math.unit(27, "feet")
  5373. },
  5374. {
  5375. name: "Giant",
  5376. height: math.unit(87, "feet")
  5377. },
  5378. {
  5379. name: "Macro",
  5380. height: math.unit(365, "feet")
  5381. },
  5382. {
  5383. name: "Megamacro",
  5384. height: math.unit(3, "miles")
  5385. },
  5386. {
  5387. name: "World Serpent",
  5388. height: math.unit(8000, "miles")
  5389. },
  5390. ]
  5391. ))
  5392. characterMakers.push(() => makeCharacter(
  5393. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5394. {
  5395. front: {
  5396. height: math.unit(6, "feet"),
  5397. weight: math.unit(180, "lbs"),
  5398. name: "Front",
  5399. image: {
  5400. source: "./media/characters/daimos/front.svg",
  5401. extra: 4160 / 3897,
  5402. bottom: 0.021
  5403. }
  5404. }
  5405. },
  5406. [
  5407. {
  5408. name: "Normal",
  5409. height: math.unit(8, "feet"),
  5410. default: true
  5411. },
  5412. {
  5413. name: "Big Dog",
  5414. height: math.unit(22, "feet")
  5415. },
  5416. {
  5417. name: "Macro",
  5418. height: math.unit(127, "feet")
  5419. },
  5420. {
  5421. name: "Megamacro",
  5422. height: math.unit(3600, "feet")
  5423. },
  5424. ]
  5425. ))
  5426. characterMakers.push(() => makeCharacter(
  5427. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5428. {
  5429. side: {
  5430. height: math.unit(6, "feet"),
  5431. weight: math.unit(180, "lbs"),
  5432. name: "Side",
  5433. image: {
  5434. source: "./media/characters/blake/side.svg",
  5435. extra: 1212 / 1120,
  5436. bottom: 0.05
  5437. }
  5438. },
  5439. crouched: {
  5440. height: math.unit(6 * 0.57, "feet"),
  5441. weight: math.unit(180, "lbs"),
  5442. name: "Crouched",
  5443. image: {
  5444. source: "./media/characters/blake/crouched.svg",
  5445. extra: 840 / 587,
  5446. bottom: 0.04
  5447. }
  5448. },
  5449. bent: {
  5450. height: math.unit(6 * 0.75, "feet"),
  5451. weight: math.unit(180, "lbs"),
  5452. name: "Bent",
  5453. image: {
  5454. source: "./media/characters/blake/bent.svg",
  5455. extra: 592 / 544,
  5456. bottom: 0.035
  5457. }
  5458. },
  5459. },
  5460. [
  5461. {
  5462. name: "Normal",
  5463. height: math.unit(8 + 1 / 6, "feet"),
  5464. default: true
  5465. },
  5466. {
  5467. name: "Big Backside",
  5468. height: math.unit(37, "feet")
  5469. },
  5470. {
  5471. name: "Subway Shredder",
  5472. height: math.unit(72, "feet")
  5473. },
  5474. {
  5475. name: "City Carver",
  5476. height: math.unit(1675, "feet")
  5477. },
  5478. {
  5479. name: "Tectonic Tweaker",
  5480. height: math.unit(2300, "miles")
  5481. },
  5482. ]
  5483. ))
  5484. characterMakers.push(() => makeCharacter(
  5485. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5486. {
  5487. front: {
  5488. height: math.unit(6, "feet"),
  5489. weight: math.unit(180, "lbs"),
  5490. name: "Front",
  5491. image: {
  5492. source: "./media/characters/guisetto/front.svg",
  5493. extra: 856 / 817,
  5494. bottom: 0.06
  5495. }
  5496. },
  5497. airborne: {
  5498. height: math.unit(6, "feet"),
  5499. weight: math.unit(180, "lbs"),
  5500. name: "Airborne",
  5501. image: {
  5502. source: "./media/characters/guisetto/airborne.svg",
  5503. extra: 584 / 525
  5504. }
  5505. },
  5506. },
  5507. [
  5508. {
  5509. name: "Normal",
  5510. height: math.unit(10 + 11 / 12, "feet"),
  5511. default: true
  5512. },
  5513. {
  5514. name: "Large",
  5515. height: math.unit(35, "feet")
  5516. },
  5517. {
  5518. name: "Macro",
  5519. height: math.unit(475, "feet")
  5520. },
  5521. ]
  5522. ))
  5523. characterMakers.push(() => makeCharacter(
  5524. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5525. {
  5526. front: {
  5527. height: math.unit(6, "feet"),
  5528. weight: math.unit(180, "lbs"),
  5529. name: "Front",
  5530. image: {
  5531. source: "./media/characters/luxor/front.svg",
  5532. extra: 2940 / 2152
  5533. }
  5534. },
  5535. back: {
  5536. height: math.unit(6, "feet"),
  5537. weight: math.unit(180, "lbs"),
  5538. name: "Back",
  5539. image: {
  5540. source: "./media/characters/luxor/back.svg",
  5541. extra: 1083 / 960
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Normal",
  5548. height: math.unit(5 + 5 / 6, "feet"),
  5549. default: true
  5550. },
  5551. {
  5552. name: "Lamp",
  5553. height: math.unit(50, "feet")
  5554. },
  5555. {
  5556. name: "Lämp",
  5557. height: math.unit(300, "feet")
  5558. },
  5559. {
  5560. name: "The sun is a lamp",
  5561. height: math.unit(250000, "miles")
  5562. },
  5563. ]
  5564. ))
  5565. characterMakers.push(() => makeCharacter(
  5566. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5567. {
  5568. front: {
  5569. height: math.unit(6, "feet"),
  5570. weight: math.unit(50, "lbs"),
  5571. name: "Front",
  5572. image: {
  5573. source: "./media/characters/huoyan/front.svg"
  5574. }
  5575. },
  5576. side: {
  5577. height: math.unit(6, "feet"),
  5578. weight: math.unit(180, "lbs"),
  5579. name: "Side",
  5580. image: {
  5581. source: "./media/characters/huoyan/side.svg"
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Chef",
  5588. height: math.unit(9, "feet")
  5589. },
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(65, "feet"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Macro",
  5597. height: math.unit(780, "feet")
  5598. },
  5599. {
  5600. name: "Flaming Mountain",
  5601. height: math.unit(4.8, "miles")
  5602. },
  5603. {
  5604. name: "Celestial",
  5605. height: math.unit(765000, "miles")
  5606. },
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(5 + 3 / 4, "feet"),
  5614. weight: math.unit(120, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/tails/front.svg"
  5618. }
  5619. }
  5620. },
  5621. [
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(5 + 3 / 4, "feet"),
  5625. default: true
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5631. {
  5632. front: {
  5633. height: math.unit(4, "feet"),
  5634. weight: math.unit(50, "lbs"),
  5635. name: "Front",
  5636. image: {
  5637. source: "./media/characters/rainy/front.svg"
  5638. }
  5639. }
  5640. },
  5641. [
  5642. {
  5643. name: "Macro",
  5644. height: math.unit(800, "feet"),
  5645. default: true
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5651. {
  5652. front: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(150, "lbs"),
  5655. name: "Front",
  5656. image: {
  5657. source: "./media/characters/rainier/front.svg"
  5658. }
  5659. }
  5660. },
  5661. [
  5662. {
  5663. name: "Micro",
  5664. height: math.unit(2, "mm"),
  5665. default: true
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(8 + 4/12, "feet"),
  5674. name: "Front",
  5675. image: {
  5676. source: "./media/characters/andy-renard/front.svg",
  5677. extra: 1839/1726,
  5678. bottom: 134/1973
  5679. }
  5680. },
  5681. back: {
  5682. height: math.unit(8 + 4/12, "feet"),
  5683. name: "Back",
  5684. image: {
  5685. source: "./media/characters/andy-renard/back.svg",
  5686. extra: 1838/1710,
  5687. bottom: 105/1943
  5688. }
  5689. },
  5690. },
  5691. [
  5692. {
  5693. name: "Tall",
  5694. height: math.unit(8 + 4/12, "feet")
  5695. },
  5696. {
  5697. name: "Mini Macro",
  5698. height: math.unit(15, "feet"),
  5699. default: true
  5700. },
  5701. {
  5702. name: "Macro",
  5703. height: math.unit(100, "feet")
  5704. },
  5705. {
  5706. name: "Mega Macro",
  5707. height: math.unit(1000, "feet")
  5708. },
  5709. {
  5710. name: "Giga Macro",
  5711. height: math.unit(10, "miles")
  5712. },
  5713. {
  5714. name: "God Macro",
  5715. height: math.unit(1, "multiverse")
  5716. },
  5717. ]
  5718. ))
  5719. characterMakers.push(() => makeCharacter(
  5720. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5721. {
  5722. front: {
  5723. height: math.unit(6, "feet"),
  5724. weight: math.unit(210, "lbs"),
  5725. name: "Front",
  5726. image: {
  5727. source: "./media/characters/cimmaron/front-sfw.svg",
  5728. extra: 701 / 676,
  5729. bottom: 0.046
  5730. }
  5731. },
  5732. back: {
  5733. height: math.unit(6, "feet"),
  5734. weight: math.unit(210, "lbs"),
  5735. name: "Back",
  5736. image: {
  5737. source: "./media/characters/cimmaron/back-sfw.svg",
  5738. extra: 701 / 676,
  5739. bottom: 0.046
  5740. }
  5741. },
  5742. frontNsfw: {
  5743. height: math.unit(6, "feet"),
  5744. weight: math.unit(210, "lbs"),
  5745. name: "Front (NSFW)",
  5746. image: {
  5747. source: "./media/characters/cimmaron/front-nsfw.svg",
  5748. extra: 701 / 676,
  5749. bottom: 0.046
  5750. }
  5751. },
  5752. backNsfw: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(210, "lbs"),
  5755. name: "Back (NSFW)",
  5756. image: {
  5757. source: "./media/characters/cimmaron/back-nsfw.svg",
  5758. extra: 701 / 676,
  5759. bottom: 0.046
  5760. }
  5761. },
  5762. dick: {
  5763. height: math.unit(1.714, "feet"),
  5764. name: "Dick",
  5765. image: {
  5766. source: "./media/characters/cimmaron/dick.svg"
  5767. }
  5768. },
  5769. },
  5770. [
  5771. {
  5772. name: "Normal",
  5773. height: math.unit(6, "feet"),
  5774. default: true
  5775. },
  5776. {
  5777. name: "Macro Mayor",
  5778. height: math.unit(350, "meters")
  5779. },
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5784. {
  5785. front: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(200, "lbs"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/akari/front.svg",
  5791. extra: 962 / 901,
  5792. bottom: 0.04
  5793. }
  5794. }
  5795. },
  5796. [
  5797. {
  5798. name: "Micro",
  5799. height: math.unit(5, "inches"),
  5800. default: true
  5801. },
  5802. {
  5803. name: "Normal",
  5804. height: math.unit(7, "feet")
  5805. },
  5806. ]
  5807. ))
  5808. characterMakers.push(() => makeCharacter(
  5809. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5810. {
  5811. front: {
  5812. height: math.unit(6, "feet"),
  5813. weight: math.unit(140, "lbs"),
  5814. name: "Front",
  5815. image: {
  5816. source: "./media/characters/cynosura/front.svg",
  5817. extra: 896 / 847
  5818. }
  5819. },
  5820. back: {
  5821. height: math.unit(6, "feet"),
  5822. weight: math.unit(140, "lbs"),
  5823. name: "Back",
  5824. image: {
  5825. source: "./media/characters/cynosura/back.svg",
  5826. extra: 1365 / 1250
  5827. }
  5828. },
  5829. },
  5830. [
  5831. {
  5832. name: "Micro",
  5833. height: math.unit(4, "inches")
  5834. },
  5835. {
  5836. name: "Normal",
  5837. height: math.unit(5.75, "feet"),
  5838. default: true
  5839. },
  5840. {
  5841. name: "Tall",
  5842. height: math.unit(10, "feet")
  5843. },
  5844. {
  5845. name: "Big",
  5846. height: math.unit(20, "feet")
  5847. },
  5848. {
  5849. name: "Macro",
  5850. height: math.unit(50, "feet")
  5851. },
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(13 + 2/12, "feet"),
  5859. weight: math.unit(800, "kg"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/gin/front.svg",
  5863. extra: 1312/1191,
  5864. bottom: 45/1357
  5865. }
  5866. },
  5867. mouth: {
  5868. height: math.unit(2.39 * 1.8, "feet"),
  5869. name: "Mouth",
  5870. image: {
  5871. source: "./media/characters/gin/mouth.svg"
  5872. }
  5873. },
  5874. hand: {
  5875. height: math.unit(1.57 * 2.19, "feet"),
  5876. name: "Hand",
  5877. image: {
  5878. source: "./media/characters/gin/hand.svg"
  5879. }
  5880. },
  5881. foot: {
  5882. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5883. name: "Foot",
  5884. image: {
  5885. source: "./media/characters/gin/foot.svg"
  5886. }
  5887. },
  5888. sole: {
  5889. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5890. name: "Sole",
  5891. image: {
  5892. source: "./media/characters/gin/sole.svg"
  5893. }
  5894. },
  5895. },
  5896. [
  5897. {
  5898. name: "Very Small",
  5899. height: math.unit(13 + 2 / 12, "feet")
  5900. },
  5901. {
  5902. name: "Micro",
  5903. height: math.unit(600, "miles")
  5904. },
  5905. {
  5906. name: "Regular",
  5907. height: math.unit(20, "earths"),
  5908. default: true
  5909. },
  5910. {
  5911. name: "Macro",
  5912. height: math.unit(2.2, "solarradii")
  5913. },
  5914. {
  5915. name: "Teramacro",
  5916. height: math.unit(1.2, "galaxies")
  5917. },
  5918. {
  5919. name: "Omegamacro",
  5920. height: math.unit(200, "universes")
  5921. },
  5922. ]
  5923. ))
  5924. characterMakers.push(() => makeCharacter(
  5925. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5926. {
  5927. front: {
  5928. height: math.unit(6 + 1 / 6, "feet"),
  5929. weight: math.unit(178, "lbs"),
  5930. name: "Front",
  5931. image: {
  5932. source: "./media/characters/guy/front.svg"
  5933. }
  5934. }
  5935. },
  5936. [
  5937. {
  5938. name: "Normal",
  5939. height: math.unit(6 + 1 / 6, "feet"),
  5940. default: true
  5941. },
  5942. {
  5943. name: "Large",
  5944. height: math.unit(25 + 7 / 12, "feet")
  5945. },
  5946. {
  5947. name: "Macro",
  5948. height: math.unit(60 + 9 / 12, "feet")
  5949. },
  5950. {
  5951. name: "Macro+",
  5952. height: math.unit(246, "feet")
  5953. },
  5954. {
  5955. name: "Macro++",
  5956. height: math.unit(878, "feet")
  5957. }
  5958. ]
  5959. ))
  5960. characterMakers.push(() => makeCharacter(
  5961. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5962. {
  5963. front: {
  5964. height: math.unit(9, "feet"),
  5965. weight: math.unit(800, "lbs"),
  5966. name: "Front",
  5967. image: {
  5968. source: "./media/characters/tiberius/front.svg",
  5969. extra: 2295 / 2071
  5970. }
  5971. },
  5972. back: {
  5973. height: math.unit(9, "feet"),
  5974. weight: math.unit(800, "lbs"),
  5975. name: "Back",
  5976. image: {
  5977. source: "./media/characters/tiberius/back.svg",
  5978. extra: 2373 / 2160
  5979. }
  5980. },
  5981. },
  5982. [
  5983. {
  5984. name: "Normal",
  5985. height: math.unit(9, "feet"),
  5986. default: true
  5987. }
  5988. ]
  5989. ))
  5990. characterMakers.push(() => makeCharacter(
  5991. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5992. {
  5993. front: {
  5994. height: math.unit(6, "feet"),
  5995. weight: math.unit(600, "lbs"),
  5996. name: "Front",
  5997. image: {
  5998. source: "./media/characters/surgo/front.svg",
  5999. extra: 3591 / 2227
  6000. }
  6001. },
  6002. back: {
  6003. height: math.unit(6, "feet"),
  6004. weight: math.unit(600, "lbs"),
  6005. name: "Back",
  6006. image: {
  6007. source: "./media/characters/surgo/back.svg",
  6008. extra: 3557 / 2228
  6009. }
  6010. },
  6011. laying: {
  6012. height: math.unit(6 * 0.85, "feet"),
  6013. weight: math.unit(600, "lbs"),
  6014. name: "Laying",
  6015. image: {
  6016. source: "./media/characters/surgo/laying.svg"
  6017. }
  6018. },
  6019. },
  6020. [
  6021. {
  6022. name: "Normal",
  6023. height: math.unit(6, "feet"),
  6024. default: true
  6025. }
  6026. ]
  6027. ))
  6028. characterMakers.push(() => makeCharacter(
  6029. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6030. {
  6031. side: {
  6032. height: math.unit(6, "feet"),
  6033. weight: math.unit(150, "lbs"),
  6034. name: "Side",
  6035. image: {
  6036. source: "./media/characters/cibus/side.svg",
  6037. extra: 800 / 400
  6038. }
  6039. },
  6040. },
  6041. [
  6042. {
  6043. name: "Normal",
  6044. height: math.unit(6, "feet"),
  6045. default: true
  6046. }
  6047. ]
  6048. ))
  6049. characterMakers.push(() => makeCharacter(
  6050. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6051. {
  6052. front: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(240, "lbs"),
  6055. name: "Front",
  6056. image: {
  6057. source: "./media/characters/nibbles/front.svg"
  6058. }
  6059. },
  6060. side: {
  6061. height: math.unit(6, "feet"),
  6062. weight: math.unit(240, "lbs"),
  6063. name: "Side",
  6064. image: {
  6065. source: "./media/characters/nibbles/side.svg"
  6066. }
  6067. },
  6068. },
  6069. [
  6070. {
  6071. name: "Normal",
  6072. height: math.unit(9, "feet"),
  6073. default: true
  6074. }
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6079. {
  6080. side: {
  6081. height: math.unit(5 + 1 / 6, "feet"),
  6082. weight: math.unit(130, "lbs"),
  6083. name: "Side",
  6084. image: {
  6085. source: "./media/characters/rikky/side.svg",
  6086. extra: 851 / 801
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(5 + 1 / 6, "feet")
  6094. },
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(152, "feet"),
  6098. default: true
  6099. },
  6100. {
  6101. name: "Megamacro",
  6102. height: math.unit(7, "miles")
  6103. }
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6108. {
  6109. side: {
  6110. height: math.unit(370, "cm"),
  6111. weight: math.unit(350, "lbs"),
  6112. name: "Side",
  6113. image: {
  6114. source: "./media/characters/malfressa/side.svg"
  6115. }
  6116. },
  6117. walking: {
  6118. height: math.unit(370, "cm"),
  6119. weight: math.unit(350, "lbs"),
  6120. name: "Walking",
  6121. image: {
  6122. source: "./media/characters/malfressa/walking.svg"
  6123. }
  6124. },
  6125. feral: {
  6126. height: math.unit(2500, "cm"),
  6127. weight: math.unit(100000, "lbs"),
  6128. name: "Feral",
  6129. image: {
  6130. source: "./media/characters/malfressa/feral.svg",
  6131. extra: 2108 / 837,
  6132. bottom: 0.02
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Normal",
  6139. height: math.unit(370, "cm")
  6140. },
  6141. {
  6142. name: "Macro",
  6143. height: math.unit(300, "meters"),
  6144. default: true
  6145. }
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6150. {
  6151. front: {
  6152. height: math.unit(6, "feet"),
  6153. weight: math.unit(60, "kg"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/jaro/front.svg"
  6157. }
  6158. },
  6159. back: {
  6160. height: math.unit(6, "feet"),
  6161. weight: math.unit(60, "kg"),
  6162. name: "Back",
  6163. image: {
  6164. source: "./media/characters/jaro/back.svg"
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Micro",
  6171. height: math.unit(7, "inches")
  6172. },
  6173. {
  6174. name: "Normal",
  6175. height: math.unit(5.5, "feet"),
  6176. default: true
  6177. },
  6178. {
  6179. name: "Minimacro",
  6180. height: math.unit(20, "feet")
  6181. },
  6182. {
  6183. name: "Macro",
  6184. height: math.unit(200, "meters")
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(195, "lb"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/rogue/front.svg"
  6197. }
  6198. },
  6199. },
  6200. [
  6201. {
  6202. name: "Macro",
  6203. height: math.unit(90, "feet"),
  6204. default: true
  6205. },
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(5 + 8 / 12, "feet"),
  6213. weight: math.unit(140, "lb"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/piper/front.svg",
  6217. extra: 3948/3655,
  6218. bottom: 0/3948
  6219. }
  6220. },
  6221. },
  6222. [
  6223. {
  6224. name: "Micro",
  6225. height: math.unit(2, "inches")
  6226. },
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(5 + 8 / 12, "feet")
  6230. },
  6231. {
  6232. name: "Macro",
  6233. height: math.unit(250, "feet"),
  6234. default: true
  6235. },
  6236. {
  6237. name: "Megamacro",
  6238. height: math.unit(7, "miles")
  6239. },
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(220, "lb"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/gemini/front.svg"
  6251. }
  6252. },
  6253. back: {
  6254. height: math.unit(6, "feet"),
  6255. weight: math.unit(220, "lb"),
  6256. name: "Back",
  6257. image: {
  6258. source: "./media/characters/gemini/back.svg"
  6259. }
  6260. },
  6261. kneeling: {
  6262. height: math.unit(6 / 1.5, "feet"),
  6263. weight: math.unit(220, "lb"),
  6264. name: "Kneeling",
  6265. image: {
  6266. source: "./media/characters/gemini/kneeling.svg",
  6267. bottom: 0.02
  6268. }
  6269. },
  6270. },
  6271. [
  6272. {
  6273. name: "Macro",
  6274. height: math.unit(300, "meters"),
  6275. default: true
  6276. },
  6277. {
  6278. name: "Megamacro",
  6279. height: math.unit(6900, "meters")
  6280. },
  6281. ]
  6282. ))
  6283. characterMakers.push(() => makeCharacter(
  6284. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6285. {
  6286. anthro: {
  6287. height: math.unit(2.35, "meters"),
  6288. weight: math.unit(73, "kg"),
  6289. name: "Anthro",
  6290. image: {
  6291. source: "./media/characters/alicia/anthro.svg",
  6292. extra: 2571 / 2385,
  6293. bottom: 75 / 2648
  6294. }
  6295. },
  6296. paw: {
  6297. height: math.unit(1.32, "feet"),
  6298. name: "Paw",
  6299. image: {
  6300. source: "./media/characters/alicia/paw.svg"
  6301. }
  6302. },
  6303. feral: {
  6304. height: math.unit(1.69, "meters"),
  6305. weight: math.unit(73, "kg"),
  6306. name: "Feral",
  6307. image: {
  6308. source: "./media/characters/alicia/feral.svg",
  6309. extra: 2123 / 1715,
  6310. bottom: 222 / 2349
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(2.35, "meters")
  6318. },
  6319. {
  6320. name: "Macro",
  6321. height: math.unit(60, "meters"),
  6322. default: true
  6323. },
  6324. {
  6325. name: "Megamacro",
  6326. height: math.unit(10000, "kilometers")
  6327. },
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6332. {
  6333. front: {
  6334. height: math.unit(7, "feet"),
  6335. weight: math.unit(250, "lbs"),
  6336. name: "Front",
  6337. image: {
  6338. source: "./media/characters/archy/front.svg"
  6339. }
  6340. }
  6341. },
  6342. [
  6343. {
  6344. name: "Micro",
  6345. height: math.unit(1, "inch")
  6346. },
  6347. {
  6348. name: "Shorty",
  6349. height: math.unit(5, "feet")
  6350. },
  6351. {
  6352. name: "Normal",
  6353. height: math.unit(7, "feet")
  6354. },
  6355. {
  6356. name: "Macro",
  6357. height: math.unit(600, "meters"),
  6358. default: true
  6359. },
  6360. {
  6361. name: "Megamacro",
  6362. height: math.unit(1, "mile")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6368. {
  6369. front: {
  6370. height: math.unit(1.65, "meters"),
  6371. weight: math.unit(74, "kg"),
  6372. name: "Front",
  6373. image: {
  6374. source: "./media/characters/berri/front.svg",
  6375. extra: 857 / 837,
  6376. bottom: 18 / 877
  6377. }
  6378. },
  6379. bum: {
  6380. height: math.unit(1.46, "feet"),
  6381. name: "Bum",
  6382. image: {
  6383. source: "./media/characters/berri/bum.svg"
  6384. }
  6385. },
  6386. mouth: {
  6387. height: math.unit(0.44, "feet"),
  6388. name: "Mouth",
  6389. image: {
  6390. source: "./media/characters/berri/mouth.svg"
  6391. }
  6392. },
  6393. paw: {
  6394. height: math.unit(0.826, "feet"),
  6395. name: "Paw",
  6396. image: {
  6397. source: "./media/characters/berri/paw.svg"
  6398. }
  6399. },
  6400. },
  6401. [
  6402. {
  6403. name: "Normal",
  6404. height: math.unit(1.65, "meters")
  6405. },
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(60, "m"),
  6409. default: true
  6410. },
  6411. {
  6412. name: "Megamacro",
  6413. height: math.unit(9.213, "km")
  6414. },
  6415. {
  6416. name: "Planet Eater",
  6417. height: math.unit(489, "megameters")
  6418. },
  6419. {
  6420. name: "Teramacro",
  6421. height: math.unit(2471635000000, "meters")
  6422. },
  6423. {
  6424. name: "Examacro",
  6425. height: math.unit(8.0624e+26, "meters")
  6426. }
  6427. ]
  6428. ))
  6429. characterMakers.push(() => makeCharacter(
  6430. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6431. {
  6432. front: {
  6433. height: math.unit(1.72, "meters"),
  6434. weight: math.unit(68, "kg"),
  6435. name: "Front",
  6436. image: {
  6437. source: "./media/characters/lexi/front.svg"
  6438. }
  6439. }
  6440. },
  6441. [
  6442. {
  6443. name: "Very Smol",
  6444. height: math.unit(10, "mm")
  6445. },
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(6.8, "cm"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Normal",
  6453. height: math.unit(1.72, "m")
  6454. }
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6459. {
  6460. front: {
  6461. height: math.unit(1.69, "meters"),
  6462. weight: math.unit(68, "kg"),
  6463. name: "Front",
  6464. image: {
  6465. source: "./media/characters/martin/front.svg",
  6466. extra: 596 / 581
  6467. }
  6468. }
  6469. },
  6470. [
  6471. {
  6472. name: "Micro",
  6473. height: math.unit(6.85, "cm"),
  6474. default: true
  6475. },
  6476. {
  6477. name: "Normal",
  6478. height: math.unit(1.69, "m")
  6479. }
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(1.69, "meters"),
  6487. weight: math.unit(68, "kg"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/juno/front.svg"
  6491. }
  6492. }
  6493. },
  6494. [
  6495. {
  6496. name: "Micro",
  6497. height: math.unit(7, "cm")
  6498. },
  6499. {
  6500. name: "Normal",
  6501. height: math.unit(1.89, "m")
  6502. },
  6503. {
  6504. name: "Macro",
  6505. height: math.unit(353, "meters"),
  6506. default: true
  6507. }
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(1.93, "meters"),
  6515. weight: math.unit(83, "kg"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/samantha/front.svg"
  6519. }
  6520. },
  6521. frontClothed: {
  6522. height: math.unit(1.93, "meters"),
  6523. weight: math.unit(83, "kg"),
  6524. name: "Front (Clothed)",
  6525. image: {
  6526. source: "./media/characters/samantha/front-clothed.svg"
  6527. }
  6528. },
  6529. back: {
  6530. height: math.unit(1.93, "meters"),
  6531. weight: math.unit(83, "kg"),
  6532. name: "Back",
  6533. image: {
  6534. source: "./media/characters/samantha/back.svg"
  6535. }
  6536. },
  6537. },
  6538. [
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(1.93, "m")
  6542. },
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(74, "meters"),
  6546. default: true
  6547. },
  6548. {
  6549. name: "Macro+",
  6550. height: math.unit(223, "meters"),
  6551. },
  6552. {
  6553. name: "Megamacro",
  6554. height: math.unit(8381, "meters"),
  6555. },
  6556. {
  6557. name: "Megamacro+",
  6558. height: math.unit(12000, "kilometers")
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(1.92, "meters"),
  6567. weight: math.unit(80, "kg"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/dr-clay/front.svg"
  6571. }
  6572. },
  6573. frontClothed: {
  6574. height: math.unit(1.92, "meters"),
  6575. weight: math.unit(80, "kg"),
  6576. name: "Front (Clothed)",
  6577. image: {
  6578. source: "./media/characters/dr-clay/front-clothed.svg"
  6579. }
  6580. }
  6581. },
  6582. [
  6583. {
  6584. name: "Normal",
  6585. height: math.unit(1.92, "m")
  6586. },
  6587. {
  6588. name: "Macro",
  6589. height: math.unit(214, "meters"),
  6590. default: true
  6591. },
  6592. {
  6593. name: "Macro+",
  6594. height: math.unit(12.237, "meters"),
  6595. },
  6596. {
  6597. name: "Megamacro",
  6598. height: math.unit(557, "megameters"),
  6599. },
  6600. {
  6601. name: "Unimaginable",
  6602. height: math.unit(120e9, "lightyears")
  6603. },
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6608. {
  6609. front: {
  6610. height: math.unit(2, "meters"),
  6611. weight: math.unit(80, "kg"),
  6612. name: "Front",
  6613. image: {
  6614. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6615. }
  6616. }
  6617. },
  6618. [
  6619. {
  6620. name: "Teramacro",
  6621. height: math.unit(500000, "lightyears"),
  6622. default: true
  6623. },
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6628. {
  6629. crux: {
  6630. height: math.unit(2, "meters"),
  6631. weight: math.unit(150, "kg"),
  6632. name: "Crux",
  6633. image: {
  6634. source: "./media/characters/vemus/crux.svg",
  6635. extra: 1074/936,
  6636. bottom: 23/1097
  6637. }
  6638. },
  6639. skunkTanuki: {
  6640. height: math.unit(2, "meters"),
  6641. weight: math.unit(150, "kg"),
  6642. name: "Skunk-Tanuki",
  6643. image: {
  6644. source: "./media/characters/vemus/skunk-tanuki.svg",
  6645. extra: 926/893,
  6646. bottom: 20/946
  6647. }
  6648. },
  6649. },
  6650. [
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(3.75, "meters"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Big",
  6658. height: math.unit(8, "meters")
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(100, "meters")
  6663. },
  6664. {
  6665. name: "Macro+",
  6666. height: math.unit(1500, "meters")
  6667. },
  6668. {
  6669. name: "Stellar",
  6670. height: math.unit(14e8, "meters")
  6671. },
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(2, "meters"),
  6679. weight: math.unit(70, "kg"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/beherit/front.svg",
  6683. extra: 1408 / 1242
  6684. }
  6685. }
  6686. },
  6687. [
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(6, "feet")
  6691. },
  6692. {
  6693. name: "Lorg",
  6694. height: math.unit(25, "feet"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Lorger",
  6699. height: math.unit(75, "feet")
  6700. },
  6701. {
  6702. name: "Macro",
  6703. height: math.unit(200, "meters")
  6704. },
  6705. ]
  6706. ))
  6707. characterMakers.push(() => makeCharacter(
  6708. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6709. {
  6710. front: {
  6711. height: math.unit(2, "meters"),
  6712. weight: math.unit(150, "kg"),
  6713. name: "Front",
  6714. image: {
  6715. source: "./media/characters/everett/front.svg",
  6716. extra: 2038 / 1737,
  6717. bottom: 0.03
  6718. }
  6719. },
  6720. paw: {
  6721. height: math.unit(2 / 3.6, "meters"),
  6722. name: "Paw",
  6723. image: {
  6724. source: "./media/characters/everett/paw.svg"
  6725. }
  6726. },
  6727. },
  6728. [
  6729. {
  6730. name: "Normal",
  6731. height: math.unit(15, "feet"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Lorg",
  6736. height: math.unit(70, "feet"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Lorger",
  6741. height: math.unit(250, "feet")
  6742. },
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(500, "meters")
  6746. },
  6747. ]
  6748. ))
  6749. characterMakers.push(() => makeCharacter(
  6750. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6751. {
  6752. front: {
  6753. height: math.unit(2, "meters"),
  6754. weight: math.unit(86, "kg"),
  6755. name: "Front",
  6756. image: {
  6757. source: "./media/characters/rose/front.svg",
  6758. extra: 1785/1636,
  6759. bottom: 30/1815
  6760. }
  6761. },
  6762. frontSporty: {
  6763. height: math.unit(2, "meters"),
  6764. weight: math.unit(86, "kg"),
  6765. name: "Front (Sporty)",
  6766. image: {
  6767. source: "./media/characters/rose/front-sporty.svg",
  6768. extra: 350/335,
  6769. bottom: 10/360
  6770. }
  6771. },
  6772. frontAlt: {
  6773. height: math.unit(1.6, "meters"),
  6774. weight: math.unit(86, "kg"),
  6775. name: "Front (Alt)",
  6776. image: {
  6777. source: "./media/characters/rose/front-alt.svg",
  6778. extra: 299/283,
  6779. bottom: 3/302
  6780. }
  6781. },
  6782. plush: {
  6783. height: math.unit(2, "meters"),
  6784. weight: math.unit(86/3, "kg"),
  6785. name: "Plush",
  6786. image: {
  6787. source: "./media/characters/rose/plush.svg",
  6788. extra: 361/337,
  6789. bottom: 11/372
  6790. }
  6791. },
  6792. },
  6793. [
  6794. {
  6795. name: "True Micro",
  6796. height: math.unit(9, "cm")
  6797. },
  6798. {
  6799. name: "Micro",
  6800. height: math.unit(16, "cm")
  6801. },
  6802. {
  6803. name: "Normal",
  6804. height: math.unit(1.85, "meters"),
  6805. default: true
  6806. },
  6807. {
  6808. name: "Mini-Macro",
  6809. height: math.unit(5, "meters")
  6810. },
  6811. {
  6812. name: "Macro",
  6813. height: math.unit(15, "meters")
  6814. },
  6815. {
  6816. name: "True Macro",
  6817. height: math.unit(40, "meters")
  6818. },
  6819. {
  6820. name: "City Scale",
  6821. height: math.unit(1, "km")
  6822. },
  6823. ]
  6824. ))
  6825. characterMakers.push(() => makeCharacter(
  6826. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6827. {
  6828. front: {
  6829. height: math.unit(2, "meters"),
  6830. weight: math.unit(350, "lbs"),
  6831. name: "Front",
  6832. image: {
  6833. source: "./media/characters/regal/front.svg"
  6834. }
  6835. },
  6836. back: {
  6837. height: math.unit(2, "meters"),
  6838. weight: math.unit(350, "lbs"),
  6839. name: "Back",
  6840. image: {
  6841. source: "./media/characters/regal/back.svg"
  6842. }
  6843. },
  6844. },
  6845. [
  6846. {
  6847. name: "Macro",
  6848. height: math.unit(350, "feet"),
  6849. default: true
  6850. }
  6851. ]
  6852. ))
  6853. characterMakers.push(() => makeCharacter(
  6854. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6855. {
  6856. front: {
  6857. height: math.unit(4 + 11 / 12, "feet"),
  6858. weight: math.unit(100, "lbs"),
  6859. name: "Front",
  6860. image: {
  6861. source: "./media/characters/opal/front.svg"
  6862. }
  6863. },
  6864. frontAlt: {
  6865. height: math.unit(4 + 11 / 12, "feet"),
  6866. weight: math.unit(100, "lbs"),
  6867. name: "Front (Alt)",
  6868. image: {
  6869. source: "./media/characters/opal/front-alt.svg"
  6870. }
  6871. },
  6872. },
  6873. [
  6874. {
  6875. name: "Small",
  6876. height: math.unit(4 + 11 / 12, "feet")
  6877. },
  6878. {
  6879. name: "Normal",
  6880. height: math.unit(20, "feet"),
  6881. default: true
  6882. },
  6883. {
  6884. name: "Macro",
  6885. height: math.unit(120, "feet")
  6886. },
  6887. {
  6888. name: "Megamacro",
  6889. height: math.unit(80, "miles")
  6890. },
  6891. {
  6892. name: "True Size",
  6893. height: math.unit(100000, "lightyears")
  6894. },
  6895. ]
  6896. ))
  6897. characterMakers.push(() => makeCharacter(
  6898. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6899. {
  6900. front: {
  6901. height: math.unit(6, "feet"),
  6902. weight: math.unit(200, "lbs"),
  6903. name: "Front",
  6904. image: {
  6905. source: "./media/characters/vector-wuff/front.svg"
  6906. }
  6907. }
  6908. },
  6909. [
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(2.8, "meters")
  6913. },
  6914. {
  6915. name: "Macro",
  6916. height: math.unit(450, "meters"),
  6917. default: true
  6918. },
  6919. {
  6920. name: "Megamacro",
  6921. height: math.unit(15, "kilometers")
  6922. }
  6923. ]
  6924. ))
  6925. characterMakers.push(() => makeCharacter(
  6926. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6927. {
  6928. front: {
  6929. height: math.unit(6, "feet"),
  6930. weight: math.unit(256, "lbs"),
  6931. name: "Front",
  6932. image: {
  6933. source: "./media/characters/dannik/front.svg"
  6934. }
  6935. }
  6936. },
  6937. [
  6938. {
  6939. name: "Macro",
  6940. height: math.unit(69.57, "meters"),
  6941. default: true
  6942. },
  6943. ]
  6944. ))
  6945. characterMakers.push(() => makeCharacter(
  6946. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6947. {
  6948. front: {
  6949. height: math.unit(6, "feet"),
  6950. weight: math.unit(120, "lbs"),
  6951. name: "Front",
  6952. image: {
  6953. source: "./media/characters/azura-saharah/front.svg"
  6954. }
  6955. },
  6956. back: {
  6957. height: math.unit(6, "feet"),
  6958. weight: math.unit(120, "lbs"),
  6959. name: "Back",
  6960. image: {
  6961. source: "./media/characters/azura-saharah/back.svg"
  6962. }
  6963. },
  6964. },
  6965. [
  6966. {
  6967. name: "Macro",
  6968. height: math.unit(100, "feet"),
  6969. default: true
  6970. },
  6971. ]
  6972. ))
  6973. characterMakers.push(() => makeCharacter(
  6974. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6975. {
  6976. side: {
  6977. height: math.unit(5 + 4 / 12, "feet"),
  6978. weight: math.unit(163, "lbs"),
  6979. name: "Side",
  6980. image: {
  6981. source: "./media/characters/kennedy/side.svg"
  6982. }
  6983. }
  6984. },
  6985. [
  6986. {
  6987. name: "Standard Doggo",
  6988. height: math.unit(5 + 4 / 12, "feet")
  6989. },
  6990. {
  6991. name: "Big Doggo",
  6992. height: math.unit(25 + 3 / 12, "feet"),
  6993. default: true
  6994. },
  6995. ]
  6996. ))
  6997. characterMakers.push(() => makeCharacter(
  6998. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6999. {
  7000. front: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(90, "lbs"),
  7003. name: "Front",
  7004. image: {
  7005. source: "./media/characters/odi-lunar/front.svg"
  7006. }
  7007. }
  7008. },
  7009. [
  7010. {
  7011. name: "Micro",
  7012. height: math.unit(3, "inches"),
  7013. default: true
  7014. },
  7015. {
  7016. name: "Normal",
  7017. height: math.unit(5.5, "feet")
  7018. }
  7019. ]
  7020. ))
  7021. characterMakers.push(() => makeCharacter(
  7022. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7023. {
  7024. back: {
  7025. height: math.unit(6, "feet"),
  7026. weight: math.unit(220, "lbs"),
  7027. name: "Back",
  7028. image: {
  7029. source: "./media/characters/mandake/back.svg"
  7030. }
  7031. }
  7032. },
  7033. [
  7034. {
  7035. name: "Normal",
  7036. height: math.unit(7, "feet"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Macro",
  7041. height: math.unit(78, "feet")
  7042. },
  7043. {
  7044. name: "Macro+",
  7045. height: math.unit(300, "meters")
  7046. },
  7047. {
  7048. name: "Macro++",
  7049. height: math.unit(2400, "feet")
  7050. },
  7051. {
  7052. name: "Megamacro",
  7053. height: math.unit(5167, "meters")
  7054. },
  7055. {
  7056. name: "Gigamacro",
  7057. height: math.unit(41769, "miles")
  7058. },
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(120, "lbs"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/yozey/front.svg"
  7070. }
  7071. },
  7072. frontAlt: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(120, "lbs"),
  7075. name: "Front (Alt)",
  7076. image: {
  7077. source: "./media/characters/yozey/front-alt.svg"
  7078. }
  7079. },
  7080. side: {
  7081. height: math.unit(6, "feet"),
  7082. weight: math.unit(120, "lbs"),
  7083. name: "Side",
  7084. image: {
  7085. source: "./media/characters/yozey/side.svg"
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Micro",
  7092. height: math.unit(3, "inches"),
  7093. default: true
  7094. },
  7095. {
  7096. name: "Normal",
  7097. height: math.unit(6, "feet")
  7098. }
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(103, "lbs"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/valeska-voss/front.svg"
  7110. }
  7111. }
  7112. },
  7113. [
  7114. {
  7115. name: "Mini-Sized Sub",
  7116. height: math.unit(3.1, "inches")
  7117. },
  7118. {
  7119. name: "Mid-Sized Sub",
  7120. height: math.unit(6.2, "inches")
  7121. },
  7122. {
  7123. name: "Full-Sized Sub",
  7124. height: math.unit(9.3, "inches")
  7125. },
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(5 + 2 / 12, "foot"),
  7129. default: true
  7130. },
  7131. ]
  7132. ))
  7133. characterMakers.push(() => makeCharacter(
  7134. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7135. {
  7136. front: {
  7137. height: math.unit(6, "feet"),
  7138. weight: math.unit(160, "lbs"),
  7139. name: "Front",
  7140. image: {
  7141. source: "./media/characters/gene-zeta/front.svg",
  7142. extra: 3006 / 2826,
  7143. bottom: 182 / 3188
  7144. }
  7145. }
  7146. },
  7147. [
  7148. {
  7149. name: "Micro",
  7150. height: math.unit(6, "inches")
  7151. },
  7152. {
  7153. name: "Normal",
  7154. height: math.unit(5 + 11 / 12, "foot"),
  7155. default: true
  7156. },
  7157. {
  7158. name: "Macro",
  7159. height: math.unit(140, "feet")
  7160. },
  7161. {
  7162. name: "Supercharged",
  7163. height: math.unit(2500, "feet")
  7164. },
  7165. ]
  7166. ))
  7167. characterMakers.push(() => makeCharacter(
  7168. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7169. {
  7170. front: {
  7171. height: math.unit(6, "feet"),
  7172. weight: math.unit(350, "lbs"),
  7173. name: "Front",
  7174. image: {
  7175. source: "./media/characters/razinox/front.svg",
  7176. extra: 1686 / 1548,
  7177. bottom: 28.2 / 1868
  7178. }
  7179. },
  7180. back: {
  7181. height: math.unit(6, "feet"),
  7182. weight: math.unit(350, "lbs"),
  7183. name: "Back",
  7184. image: {
  7185. source: "./media/characters/razinox/back.svg",
  7186. extra: 1660 / 1590,
  7187. bottom: 15 / 1665
  7188. }
  7189. },
  7190. },
  7191. [
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(10 + 8 / 12, "foot")
  7195. },
  7196. {
  7197. name: "Minimacro",
  7198. height: math.unit(15, "foot")
  7199. },
  7200. {
  7201. name: "Macro",
  7202. height: math.unit(60, "foot"),
  7203. default: true
  7204. },
  7205. {
  7206. name: "Megamacro",
  7207. height: math.unit(5, "miles")
  7208. },
  7209. {
  7210. name: "Gigamacro",
  7211. height: math.unit(6000, "miles")
  7212. },
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7217. {
  7218. front: {
  7219. height: math.unit(6, "feet"),
  7220. weight: math.unit(150, "lbs"),
  7221. name: "Front",
  7222. image: {
  7223. source: "./media/characters/cobalt/front.svg"
  7224. }
  7225. }
  7226. },
  7227. [
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(8 + 1 / 12, "foot")
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(111, "foot"),
  7235. default: true
  7236. },
  7237. {
  7238. name: "Supracosmic",
  7239. height: math.unit(1e42, "feet")
  7240. },
  7241. ]
  7242. ))
  7243. characterMakers.push(() => makeCharacter(
  7244. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7245. {
  7246. front: {
  7247. height: math.unit(6, "feet"),
  7248. weight: math.unit(140, "lbs"),
  7249. name: "Front",
  7250. image: {
  7251. source: "./media/characters/amanda/front.svg"
  7252. }
  7253. }
  7254. },
  7255. [
  7256. {
  7257. name: "Micro",
  7258. height: math.unit(5, "inches"),
  7259. default: true
  7260. },
  7261. ]
  7262. ))
  7263. characterMakers.push(() => makeCharacter(
  7264. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7265. {
  7266. front: {
  7267. height: math.unit(2.75, "meters"),
  7268. weight: math.unit(1200, "lb"),
  7269. name: "Front",
  7270. image: {
  7271. source: "./media/characters/teal/front.svg",
  7272. extra: 2463 / 2320,
  7273. bottom: 166 / 2629
  7274. }
  7275. },
  7276. back: {
  7277. height: math.unit(2.75, "meters"),
  7278. weight: math.unit(1200, "lb"),
  7279. name: "Back",
  7280. image: {
  7281. source: "./media/characters/teal/back.svg",
  7282. extra: 2580 / 2489,
  7283. bottom: 151 / 2731
  7284. }
  7285. },
  7286. sitting: {
  7287. height: math.unit(1.9, "meters"),
  7288. weight: math.unit(1200, "lb"),
  7289. name: "Sitting",
  7290. image: {
  7291. source: "./media/characters/teal/sitting.svg",
  7292. extra: 623 / 590,
  7293. bottom: 121 / 744
  7294. }
  7295. },
  7296. standing: {
  7297. height: math.unit(2.75, "meters"),
  7298. weight: math.unit(1200, "lb"),
  7299. name: "Standing",
  7300. image: {
  7301. source: "./media/characters/teal/standing.svg",
  7302. extra: 923 / 893,
  7303. bottom: 60 / 983
  7304. }
  7305. },
  7306. stretching: {
  7307. height: math.unit(3.65, "meters"),
  7308. weight: math.unit(1200, "lb"),
  7309. name: "Stretching",
  7310. image: {
  7311. source: "./media/characters/teal/stretching.svg",
  7312. extra: 1276 / 1244,
  7313. bottom: 0 / 1276
  7314. }
  7315. },
  7316. legged: {
  7317. height: math.unit(1.3, "meters"),
  7318. weight: math.unit(100, "lb"),
  7319. name: "Legged",
  7320. image: {
  7321. source: "./media/characters/teal/legged.svg",
  7322. extra: 462 / 437,
  7323. bottom: 24 / 486
  7324. }
  7325. },
  7326. naga: {
  7327. height: math.unit(5.4, "meters"),
  7328. weight: math.unit(4000, "lb"),
  7329. name: "Naga",
  7330. image: {
  7331. source: "./media/characters/teal/naga.svg",
  7332. extra: 1902 / 1858,
  7333. bottom: 0 / 1902
  7334. }
  7335. },
  7336. hand: {
  7337. height: math.unit(0.52, "meters"),
  7338. name: "Hand",
  7339. image: {
  7340. source: "./media/characters/teal/hand.svg"
  7341. }
  7342. },
  7343. maw: {
  7344. height: math.unit(0.43, "meters"),
  7345. name: "Maw",
  7346. image: {
  7347. source: "./media/characters/teal/maw.svg"
  7348. }
  7349. },
  7350. slit: {
  7351. height: math.unit(0.25, "meters"),
  7352. name: "Slit",
  7353. image: {
  7354. source: "./media/characters/teal/slit.svg"
  7355. }
  7356. },
  7357. },
  7358. [
  7359. {
  7360. name: "Normal",
  7361. height: math.unit(2.75, "meters"),
  7362. default: true
  7363. },
  7364. {
  7365. name: "Macro",
  7366. height: math.unit(300, "feet")
  7367. },
  7368. {
  7369. name: "Macro+",
  7370. height: math.unit(2000, "feet")
  7371. },
  7372. ]
  7373. ))
  7374. characterMakers.push(() => makeCharacter(
  7375. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7376. {
  7377. frontCat: {
  7378. height: math.unit(6, "feet"),
  7379. weight: math.unit(180, "lbs"),
  7380. name: "Front (Cat)",
  7381. image: {
  7382. source: "./media/characters/ravin-amulet/front-cat.svg"
  7383. }
  7384. },
  7385. frontCatAlt: {
  7386. height: math.unit(6, "feet"),
  7387. weight: math.unit(180, "lbs"),
  7388. name: "Front (Alt, Cat)",
  7389. image: {
  7390. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7391. }
  7392. },
  7393. frontWerewolf: {
  7394. height: math.unit(6 * 1.2, "feet"),
  7395. weight: math.unit(225, "lbs"),
  7396. name: "Front (Werewolf)",
  7397. image: {
  7398. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7399. }
  7400. },
  7401. backWerewolf: {
  7402. height: math.unit(6 * 1.2, "feet"),
  7403. weight: math.unit(225, "lbs"),
  7404. name: "Back (Werewolf)",
  7405. image: {
  7406. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7407. }
  7408. },
  7409. },
  7410. [
  7411. {
  7412. name: "Nano",
  7413. height: math.unit(1, "micrometer")
  7414. },
  7415. {
  7416. name: "Micro",
  7417. height: math.unit(1, "inch")
  7418. },
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(6, "feet"),
  7422. default: true
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(60, "feet")
  7427. }
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7432. {
  7433. front: {
  7434. height: math.unit(6, "feet"),
  7435. weight: math.unit(165, "lbs"),
  7436. name: "Front",
  7437. image: {
  7438. source: "./media/characters/fluoresce/front.svg"
  7439. }
  7440. }
  7441. },
  7442. [
  7443. {
  7444. name: "Micro",
  7445. height: math.unit(6, "cm")
  7446. },
  7447. {
  7448. name: "Normal",
  7449. height: math.unit(5 + 7 / 12, "feet"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Macro",
  7454. height: math.unit(56, "feet")
  7455. },
  7456. {
  7457. name: "Megamacro",
  7458. height: math.unit(1.9, "miles")
  7459. },
  7460. ]
  7461. ))
  7462. characterMakers.push(() => makeCharacter(
  7463. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7464. {
  7465. front: {
  7466. height: math.unit(9 + 6 / 12, "feet"),
  7467. weight: math.unit(523, "lbs"),
  7468. name: "Side",
  7469. image: {
  7470. source: "./media/characters/aurora/side.svg"
  7471. }
  7472. }
  7473. },
  7474. [
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(9 + 6 / 12, "feet")
  7478. },
  7479. {
  7480. name: "Macro",
  7481. height: math.unit(96, "feet"),
  7482. default: true
  7483. },
  7484. {
  7485. name: "Macro+",
  7486. height: math.unit(243, "feet")
  7487. },
  7488. ]
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7492. {
  7493. front: {
  7494. height: math.unit(194, "cm"),
  7495. weight: math.unit(90, "kg"),
  7496. name: "Front",
  7497. image: {
  7498. source: "./media/characters/ranek/front.svg"
  7499. }
  7500. },
  7501. side: {
  7502. height: math.unit(194, "cm"),
  7503. weight: math.unit(90, "kg"),
  7504. name: "Side",
  7505. image: {
  7506. source: "./media/characters/ranek/side.svg"
  7507. }
  7508. },
  7509. back: {
  7510. height: math.unit(194, "cm"),
  7511. weight: math.unit(90, "kg"),
  7512. name: "Back",
  7513. image: {
  7514. source: "./media/characters/ranek/back.svg"
  7515. }
  7516. },
  7517. feral: {
  7518. height: math.unit(30, "cm"),
  7519. weight: math.unit(1.6, "lbs"),
  7520. name: "Feral",
  7521. image: {
  7522. source: "./media/characters/ranek/feral.svg"
  7523. }
  7524. },
  7525. },
  7526. [
  7527. {
  7528. name: "Normal",
  7529. height: math.unit(194, "cm"),
  7530. default: true
  7531. },
  7532. {
  7533. name: "Macro",
  7534. height: math.unit(100, "meters")
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(5 + 6 / 12, "feet"),
  7543. weight: math.unit(153, "lbs"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/andrew-cooper/front.svg"
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Nano",
  7553. height: math.unit(1, "mm")
  7554. },
  7555. {
  7556. name: "Micro",
  7557. height: math.unit(2, "inches")
  7558. },
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(5 + 6 / 12, "feet"),
  7562. default: true
  7563. }
  7564. ]
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7568. {
  7569. front: {
  7570. height: math.unit(6, "feet"),
  7571. weight: math.unit(180, "lbs"),
  7572. name: "Front",
  7573. image: {
  7574. source: "./media/characters/akane-sato/front.svg",
  7575. extra: 1219 / 1140
  7576. }
  7577. },
  7578. back: {
  7579. height: math.unit(6, "feet"),
  7580. weight: math.unit(180, "lbs"),
  7581. name: "Back",
  7582. image: {
  7583. source: "./media/characters/akane-sato/back.svg",
  7584. extra: 1219 / 1170
  7585. }
  7586. },
  7587. },
  7588. [
  7589. {
  7590. name: "Normal",
  7591. height: math.unit(2.5, "meters")
  7592. },
  7593. {
  7594. name: "Macro",
  7595. height: math.unit(250, "meters"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Megamacro",
  7600. height: math.unit(25, "km")
  7601. },
  7602. ]
  7603. ))
  7604. characterMakers.push(() => makeCharacter(
  7605. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7606. {
  7607. front: {
  7608. height: math.unit(6, "feet"),
  7609. weight: math.unit(65, "kg"),
  7610. name: "Front",
  7611. image: {
  7612. source: "./media/characters/rook/front.svg",
  7613. extra: 960 / 950
  7614. }
  7615. }
  7616. },
  7617. [
  7618. {
  7619. name: "Normal",
  7620. height: math.unit(8.8, "feet")
  7621. },
  7622. {
  7623. name: "Macro",
  7624. height: math.unit(88, "feet"),
  7625. default: true
  7626. },
  7627. {
  7628. name: "Megamacro",
  7629. height: math.unit(8, "miles")
  7630. },
  7631. ]
  7632. ))
  7633. characterMakers.push(() => makeCharacter(
  7634. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7635. {
  7636. front: {
  7637. height: math.unit(12 + 2 / 12, "feet"),
  7638. weight: math.unit(808, "lbs"),
  7639. name: "Front",
  7640. image: {
  7641. source: "./media/characters/prodigy/front.svg"
  7642. }
  7643. }
  7644. },
  7645. [
  7646. {
  7647. name: "Normal",
  7648. height: math.unit(12 + 2 / 12, "feet"),
  7649. default: true
  7650. },
  7651. {
  7652. name: "Macro",
  7653. height: math.unit(143, "feet")
  7654. },
  7655. {
  7656. name: "Macro+",
  7657. height: math.unit(400, "feet")
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(225, "lbs"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/daniel/front.svg"
  7670. }
  7671. },
  7672. leaning: {
  7673. height: math.unit(6, "feet"),
  7674. weight: math.unit(225, "lbs"),
  7675. name: "Leaning",
  7676. image: {
  7677. source: "./media/characters/daniel/leaning.svg"
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(1000, "feet"),
  7685. default: true
  7686. },
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(88, "lbs"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/chiros/front.svg",
  7698. extra: 306 / 226
  7699. }
  7700. },
  7701. side: {
  7702. height: math.unit(6, "feet"),
  7703. weight: math.unit(88, "lbs"),
  7704. name: "Side",
  7705. image: {
  7706. source: "./media/characters/chiros/side.svg",
  7707. extra: 306 / 226
  7708. }
  7709. },
  7710. },
  7711. [
  7712. {
  7713. name: "Normal",
  7714. height: math.unit(6, "cm"),
  7715. default: true
  7716. },
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7721. {
  7722. front: {
  7723. height: math.unit(6, "feet"),
  7724. weight: math.unit(100, "lbs"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/selka/front.svg",
  7728. extra: 947 / 887
  7729. }
  7730. }
  7731. },
  7732. [
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(5, "cm"),
  7736. default: true
  7737. },
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7742. {
  7743. front: {
  7744. height: math.unit(8 + 3 / 12, "feet"),
  7745. weight: math.unit(424, "lbs"),
  7746. name: "Front",
  7747. image: {
  7748. source: "./media/characters/verin/front.svg",
  7749. extra: 1845 / 1550
  7750. }
  7751. },
  7752. frontArmored: {
  7753. height: math.unit(8 + 3 / 12, "feet"),
  7754. weight: math.unit(424, "lbs"),
  7755. name: "Front (Armored)",
  7756. image: {
  7757. source: "./media/characters/verin/front-armor.svg",
  7758. extra: 1845 / 1550,
  7759. bottom: 0.01
  7760. }
  7761. },
  7762. back: {
  7763. height: math.unit(8 + 3 / 12, "feet"),
  7764. weight: math.unit(424, "lbs"),
  7765. name: "Back",
  7766. image: {
  7767. source: "./media/characters/verin/back.svg",
  7768. bottom: 0.1,
  7769. extra: 1
  7770. }
  7771. },
  7772. foot: {
  7773. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7774. name: "Foot",
  7775. image: {
  7776. source: "./media/characters/verin/foot.svg"
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(8 + 3 / 12, "feet")
  7784. },
  7785. {
  7786. name: "Minimacro",
  7787. height: math.unit(21, "feet"),
  7788. default: true
  7789. },
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(626, "feet")
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(2.718, "meters"),
  7801. weight: math.unit(150, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/sovrim-terraquian/front.svg"
  7805. }
  7806. },
  7807. back: {
  7808. height: math.unit(2.718, "meters"),
  7809. weight: math.unit(150, "lbs"),
  7810. name: "Back",
  7811. image: {
  7812. source: "./media/characters/sovrim-terraquian/back.svg"
  7813. }
  7814. }
  7815. },
  7816. [
  7817. {
  7818. name: "Micro",
  7819. height: math.unit(2, "inches")
  7820. },
  7821. {
  7822. name: "Small",
  7823. height: math.unit(1, "meter")
  7824. },
  7825. {
  7826. name: "Normal",
  7827. height: math.unit(Math.E, "meters"),
  7828. default: true
  7829. },
  7830. {
  7831. name: "Macro",
  7832. height: math.unit(20, "meters")
  7833. },
  7834. {
  7835. name: "Macro+",
  7836. height: math.unit(400, "meters")
  7837. },
  7838. ]
  7839. ))
  7840. characterMakers.push(() => makeCharacter(
  7841. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7842. {
  7843. front: {
  7844. height: math.unit(7, "feet"),
  7845. weight: math.unit(489, "lbs"),
  7846. name: "Front",
  7847. image: {
  7848. source: "./media/characters/reece-silvermane/front.svg",
  7849. bottom: 0.02,
  7850. extra: 1
  7851. }
  7852. },
  7853. },
  7854. [
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(1.5, "miles"),
  7858. default: true
  7859. },
  7860. ]
  7861. ))
  7862. characterMakers.push(() => makeCharacter(
  7863. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7864. {
  7865. front: {
  7866. height: math.unit(6, "feet"),
  7867. weight: math.unit(78, "kg"),
  7868. name: "Front",
  7869. image: {
  7870. source: "./media/characters/kane/front.svg",
  7871. extra: 978 / 899
  7872. }
  7873. },
  7874. },
  7875. [
  7876. {
  7877. name: "Normal",
  7878. height: math.unit(2.1, "m"),
  7879. },
  7880. {
  7881. name: "Macro",
  7882. height: math.unit(1, "km"),
  7883. default: true
  7884. },
  7885. ]
  7886. ))
  7887. characterMakers.push(() => makeCharacter(
  7888. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7889. {
  7890. front: {
  7891. height: math.unit(6, "feet"),
  7892. weight: math.unit(200, "kg"),
  7893. name: "Front",
  7894. image: {
  7895. source: "./media/characters/tegon/front.svg",
  7896. bottom: 0.01,
  7897. extra: 1
  7898. }
  7899. },
  7900. },
  7901. [
  7902. {
  7903. name: "Micro",
  7904. height: math.unit(1, "inch")
  7905. },
  7906. {
  7907. name: "Normal",
  7908. height: math.unit(6 + 3 / 12, "feet"),
  7909. default: true
  7910. },
  7911. {
  7912. name: "Macro",
  7913. height: math.unit(300, "feet")
  7914. },
  7915. {
  7916. name: "Megamacro",
  7917. height: math.unit(69, "miles")
  7918. },
  7919. ]
  7920. ))
  7921. characterMakers.push(() => makeCharacter(
  7922. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7923. {
  7924. side: {
  7925. height: math.unit(6, "feet"),
  7926. weight: math.unit(2304, "lbs"),
  7927. name: "Side",
  7928. image: {
  7929. source: "./media/characters/arcturax/side.svg",
  7930. extra: 790 / 376,
  7931. bottom: 0.01
  7932. }
  7933. },
  7934. },
  7935. [
  7936. {
  7937. name: "Micro",
  7938. height: math.unit(2, "inch")
  7939. },
  7940. {
  7941. name: "Normal",
  7942. height: math.unit(6, "feet")
  7943. },
  7944. {
  7945. name: "Macro",
  7946. height: math.unit(39, "feet"),
  7947. default: true
  7948. },
  7949. {
  7950. name: "Megamacro",
  7951. height: math.unit(7, "miles")
  7952. },
  7953. ]
  7954. ))
  7955. characterMakers.push(() => makeCharacter(
  7956. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7957. {
  7958. front: {
  7959. height: math.unit(6, "feet"),
  7960. weight: math.unit(50, "lbs"),
  7961. name: "Front",
  7962. image: {
  7963. source: "./media/characters/sentri/front.svg",
  7964. extra: 1750 / 1570,
  7965. bottom: 0.025
  7966. }
  7967. },
  7968. frontAlt: {
  7969. height: math.unit(6, "feet"),
  7970. weight: math.unit(50, "lbs"),
  7971. name: "Front (Alt)",
  7972. image: {
  7973. source: "./media/characters/sentri/front-alt.svg",
  7974. extra: 1750 / 1570,
  7975. bottom: 0.025
  7976. }
  7977. },
  7978. },
  7979. [
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(15, "feet"),
  7983. default: true
  7984. },
  7985. {
  7986. name: "Macro",
  7987. height: math.unit(2500, "feet")
  7988. }
  7989. ]
  7990. ))
  7991. characterMakers.push(() => makeCharacter(
  7992. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7993. {
  7994. front: {
  7995. height: math.unit(5 + 8 / 12, "feet"),
  7996. weight: math.unit(130, "lbs"),
  7997. name: "Front",
  7998. image: {
  7999. source: "./media/characters/corvin/front.svg",
  8000. extra: 1803 / 1629
  8001. }
  8002. },
  8003. frontShirt: {
  8004. height: math.unit(5 + 8 / 12, "feet"),
  8005. weight: math.unit(130, "lbs"),
  8006. name: "Front (Shirt)",
  8007. image: {
  8008. source: "./media/characters/corvin/front-shirt.svg",
  8009. extra: 1803 / 1629
  8010. }
  8011. },
  8012. frontPoncho: {
  8013. height: math.unit(5 + 8 / 12, "feet"),
  8014. weight: math.unit(130, "lbs"),
  8015. name: "Front (Poncho)",
  8016. image: {
  8017. source: "./media/characters/corvin/front-poncho.svg",
  8018. extra: 1803 / 1629
  8019. }
  8020. },
  8021. side: {
  8022. height: math.unit(5 + 8 / 12, "feet"),
  8023. weight: math.unit(130, "lbs"),
  8024. name: "Side",
  8025. image: {
  8026. source: "./media/characters/corvin/side.svg",
  8027. extra: 1012 / 945
  8028. }
  8029. },
  8030. back: {
  8031. height: math.unit(5 + 8 / 12, "feet"),
  8032. weight: math.unit(130, "lbs"),
  8033. name: "Back",
  8034. image: {
  8035. source: "./media/characters/corvin/back.svg",
  8036. extra: 1803 / 1629
  8037. }
  8038. },
  8039. },
  8040. [
  8041. {
  8042. name: "Micro",
  8043. height: math.unit(3, "inches")
  8044. },
  8045. {
  8046. name: "Normal",
  8047. height: math.unit(5 + 8 / 12, "feet")
  8048. },
  8049. {
  8050. name: "Macro",
  8051. height: math.unit(300, "feet"),
  8052. default: true
  8053. },
  8054. {
  8055. name: "Megamacro",
  8056. height: math.unit(500, "miles")
  8057. }
  8058. ]
  8059. ))
  8060. characterMakers.push(() => makeCharacter(
  8061. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8062. {
  8063. front: {
  8064. height: math.unit(6, "feet"),
  8065. weight: math.unit(135, "lbs"),
  8066. name: "Front",
  8067. image: {
  8068. source: "./media/characters/q/front.svg",
  8069. extra: 854 / 752,
  8070. bottom: 0.005
  8071. }
  8072. },
  8073. back: {
  8074. height: math.unit(6, "feet"),
  8075. weight: math.unit(130, "lbs"),
  8076. name: "Back",
  8077. image: {
  8078. source: "./media/characters/q/back.svg",
  8079. extra: 854 / 752
  8080. }
  8081. },
  8082. },
  8083. [
  8084. {
  8085. name: "Macro",
  8086. height: math.unit(90, "feet"),
  8087. default: true
  8088. },
  8089. {
  8090. name: "Extra Macro",
  8091. height: math.unit(300, "feet"),
  8092. },
  8093. {
  8094. name: "BIG WALF",
  8095. height: math.unit(750, "feet"),
  8096. },
  8097. ]
  8098. ))
  8099. characterMakers.push(() => makeCharacter(
  8100. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8101. {
  8102. front: {
  8103. height: math.unit(6, "feet"),
  8104. weight: math.unit(150, "lbs"),
  8105. name: "Front",
  8106. image: {
  8107. source: "./media/characters/carley/front.svg",
  8108. extra: 3927 / 3540,
  8109. bottom: 29.2 / 735
  8110. }
  8111. }
  8112. },
  8113. [
  8114. {
  8115. name: "Normal",
  8116. height: math.unit(6 + 3 / 12, "feet")
  8117. },
  8118. {
  8119. name: "Macro",
  8120. height: math.unit(185, "feet"),
  8121. default: true
  8122. },
  8123. {
  8124. name: "Megamacro",
  8125. height: math.unit(8, "miles"),
  8126. },
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8131. {
  8132. front: {
  8133. height: math.unit(3, "feet"),
  8134. weight: math.unit(28, "lbs"),
  8135. name: "Front",
  8136. image: {
  8137. source: "./media/characters/citrine/front.svg"
  8138. }
  8139. }
  8140. },
  8141. [
  8142. {
  8143. name: "Normal",
  8144. height: math.unit(3, "feet"),
  8145. default: true
  8146. }
  8147. ]
  8148. ))
  8149. characterMakers.push(() => makeCharacter(
  8150. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8151. {
  8152. front: {
  8153. height: math.unit(14, "feet"),
  8154. weight: math.unit(1450, "kg"),
  8155. capacity: math.unit(15, "people"),
  8156. name: "Front",
  8157. image: {
  8158. source: "./media/characters/aura-starwind/front.svg",
  8159. extra: 1455 / 1335
  8160. }
  8161. },
  8162. side: {
  8163. height: math.unit(14, "feet"),
  8164. weight: math.unit(1450, "kg"),
  8165. capacity: math.unit(15, "people"),
  8166. name: "Side",
  8167. image: {
  8168. source: "./media/characters/aura-starwind/side.svg",
  8169. extra: 1654 / 1497
  8170. }
  8171. },
  8172. taur: {
  8173. height: math.unit(18, "feet"),
  8174. weight: math.unit(5500, "kg"),
  8175. capacity: math.unit(50, "people"),
  8176. name: "Taur",
  8177. image: {
  8178. source: "./media/characters/aura-starwind/taur.svg",
  8179. extra: 1760 / 1650
  8180. }
  8181. },
  8182. feral: {
  8183. height: math.unit(46, "feet"),
  8184. weight: math.unit(25000, "kg"),
  8185. capacity: math.unit(120, "people"),
  8186. name: "Feral",
  8187. image: {
  8188. source: "./media/characters/aura-starwind/feral.svg"
  8189. }
  8190. },
  8191. },
  8192. [
  8193. {
  8194. name: "Normal",
  8195. height: math.unit(14, "feet"),
  8196. default: true
  8197. },
  8198. {
  8199. name: "Macro",
  8200. height: math.unit(50, "meters")
  8201. },
  8202. {
  8203. name: "Megamacro",
  8204. height: math.unit(5000, "meters")
  8205. },
  8206. {
  8207. name: "Gigamacro",
  8208. height: math.unit(100000, "kilometers")
  8209. },
  8210. ]
  8211. ))
  8212. characterMakers.push(() => makeCharacter(
  8213. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8214. {
  8215. front: {
  8216. height: math.unit(2 + 7 / 12, "feet"),
  8217. weight: math.unit(32, "lbs"),
  8218. name: "Front",
  8219. image: {
  8220. source: "./media/characters/rivet/front.svg",
  8221. extra: 1716 / 1658,
  8222. bottom: 0.03
  8223. }
  8224. },
  8225. foot: {
  8226. height: math.unit(0.551, "feet"),
  8227. name: "Rivet's Foot",
  8228. image: {
  8229. source: "./media/characters/rivet/foot.svg"
  8230. },
  8231. rename: true
  8232. }
  8233. },
  8234. [
  8235. {
  8236. name: "Micro",
  8237. height: math.unit(1.5, "inches"),
  8238. },
  8239. {
  8240. name: "Normal",
  8241. height: math.unit(2 + 7 / 12, "feet"),
  8242. default: true
  8243. },
  8244. {
  8245. name: "Macro",
  8246. height: math.unit(85, "feet")
  8247. },
  8248. {
  8249. name: "Megamacro",
  8250. height: math.unit(2.2, "km")
  8251. }
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8256. {
  8257. front: {
  8258. height: math.unit(5 + 9 / 12, "feet"),
  8259. weight: math.unit(150, "lbs"),
  8260. name: "Front",
  8261. image: {
  8262. source: "./media/characters/coffee/front.svg",
  8263. extra: 3666 / 3032,
  8264. bottom: 0.04
  8265. }
  8266. },
  8267. foot: {
  8268. height: math.unit(1.29, "feet"),
  8269. name: "Foot",
  8270. image: {
  8271. source: "./media/characters/coffee/foot.svg"
  8272. }
  8273. },
  8274. },
  8275. [
  8276. {
  8277. name: "Micro",
  8278. height: math.unit(2, "inches"),
  8279. },
  8280. {
  8281. name: "Normal",
  8282. height: math.unit(5 + 9 / 12, "feet"),
  8283. default: true
  8284. },
  8285. {
  8286. name: "Macro",
  8287. height: math.unit(800, "feet")
  8288. },
  8289. {
  8290. name: "Megamacro",
  8291. height: math.unit(25, "miles")
  8292. }
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8297. {
  8298. front: {
  8299. height: math.unit(6, "feet"),
  8300. weight: math.unit(200, "lbs"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/chari-gal/front.svg",
  8304. extra: 1568 / 1385,
  8305. bottom: 0.047
  8306. }
  8307. },
  8308. gigantamax: {
  8309. height: math.unit(6 * 16, "feet"),
  8310. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8311. name: "Gigantamax",
  8312. image: {
  8313. source: "./media/characters/chari-gal/gigantamax.svg",
  8314. extra: 1124 / 888,
  8315. bottom: 0.03
  8316. }
  8317. },
  8318. },
  8319. [
  8320. {
  8321. name: "Normal",
  8322. height: math.unit(5 + 7 / 12, "feet")
  8323. },
  8324. {
  8325. name: "Macro",
  8326. height: math.unit(200, "feet"),
  8327. default: true
  8328. }
  8329. ]
  8330. ))
  8331. characterMakers.push(() => makeCharacter(
  8332. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8333. {
  8334. front: {
  8335. height: math.unit(6, "feet"),
  8336. weight: math.unit(150, "lbs"),
  8337. name: "Front",
  8338. image: {
  8339. source: "./media/characters/nova/front.svg",
  8340. extra: 5000 / 4722,
  8341. bottom: 0.02
  8342. }
  8343. }
  8344. },
  8345. [
  8346. {
  8347. name: "Micro-",
  8348. height: math.unit(0.8, "inches")
  8349. },
  8350. {
  8351. name: "Micro",
  8352. height: math.unit(2, "inches"),
  8353. default: true
  8354. },
  8355. ]
  8356. ))
  8357. characterMakers.push(() => makeCharacter(
  8358. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8359. {
  8360. front: {
  8361. height: math.unit(3 + 1 / 12, "feet"),
  8362. weight: math.unit(21.7, "lbs"),
  8363. name: "Front",
  8364. image: {
  8365. source: "./media/characters/argent/front.svg",
  8366. extra: 1471 / 1331,
  8367. bottom: 100.8 / 1575.5
  8368. }
  8369. }
  8370. },
  8371. [
  8372. {
  8373. name: "Micro",
  8374. height: math.unit(2, "inches")
  8375. },
  8376. {
  8377. name: "Normal",
  8378. height: math.unit(3 + 1 / 12, "feet"),
  8379. default: true
  8380. },
  8381. {
  8382. name: "Macro",
  8383. height: math.unit(120, "feet")
  8384. },
  8385. ]
  8386. ))
  8387. characterMakers.push(() => makeCharacter(
  8388. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8389. {
  8390. lamp: {
  8391. height: math.unit(7 * 1559 / 989, "feet"),
  8392. name: "Magic Lamp",
  8393. image: {
  8394. source: "./media/characters/mira-al-cul/lamp.svg",
  8395. extra: 1617 / 1559
  8396. }
  8397. },
  8398. front: {
  8399. height: math.unit(7, "feet"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/mira-al-cul/front.svg",
  8403. extra: 1044 / 990
  8404. }
  8405. },
  8406. },
  8407. [
  8408. {
  8409. name: "Heavily Restricted",
  8410. height: math.unit(7 * 1559 / 989, "feet")
  8411. },
  8412. {
  8413. name: "Freshly Freed",
  8414. height: math.unit(50 * 1559 / 989, "feet")
  8415. },
  8416. {
  8417. name: "World Encompassing",
  8418. height: math.unit(10000 * 1559 / 989, "miles")
  8419. },
  8420. {
  8421. name: "Galactic",
  8422. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8423. },
  8424. {
  8425. name: "Palmed Universe",
  8426. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8427. default: true
  8428. },
  8429. {
  8430. name: "Multiversal Matriarch",
  8431. height: math.unit(8.87e10, "yottameters")
  8432. },
  8433. {
  8434. name: "Void Mother",
  8435. height: math.unit(3.14e110, "yottaparsecs")
  8436. },
  8437. {
  8438. name: "Toying with Transcendence",
  8439. height: math.unit(1e307, "meters")
  8440. },
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8445. {
  8446. front: {
  8447. height: math.unit(17 + 1 / 12, "feet"),
  8448. weight: math.unit(476.2 * 5, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/kuro-shi-uchū/front.svg",
  8452. extra: 2329 / 1835,
  8453. bottom: 0.02
  8454. }
  8455. },
  8456. },
  8457. [
  8458. {
  8459. name: "Micro",
  8460. height: math.unit(2, "inches")
  8461. },
  8462. {
  8463. name: "Normal",
  8464. height: math.unit(12, "meters")
  8465. },
  8466. {
  8467. name: "Planetary",
  8468. height: math.unit(0.00929, "AU"),
  8469. default: true
  8470. },
  8471. {
  8472. name: "Universal",
  8473. height: math.unit(20, "gigaparsecs")
  8474. },
  8475. ]
  8476. ))
  8477. characterMakers.push(() => makeCharacter(
  8478. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8479. {
  8480. front: {
  8481. height: math.unit(5 + 2 / 12, "feet"),
  8482. weight: math.unit(120, "lbs"),
  8483. name: "Front",
  8484. image: {
  8485. source: "./media/characters/katherine/front.svg",
  8486. extra: 2075 / 1969
  8487. }
  8488. },
  8489. dress: {
  8490. height: math.unit(5 + 2 / 12, "feet"),
  8491. weight: math.unit(120, "lbs"),
  8492. name: "Dress",
  8493. image: {
  8494. source: "./media/characters/katherine/dress.svg",
  8495. extra: 2258 / 2064
  8496. }
  8497. },
  8498. },
  8499. [
  8500. {
  8501. name: "Micro",
  8502. height: math.unit(1, "inches"),
  8503. default: true
  8504. },
  8505. {
  8506. name: "Normal",
  8507. height: math.unit(5 + 2 / 12, "feet")
  8508. },
  8509. {
  8510. name: "Macro",
  8511. height: math.unit(100, "meters")
  8512. },
  8513. {
  8514. name: "Megamacro",
  8515. height: math.unit(80, "miles")
  8516. },
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8521. {
  8522. front: {
  8523. height: math.unit(7 + 8 / 12, "feet"),
  8524. weight: math.unit(250, "lbs"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/yevis/front.svg",
  8528. extra: 1938 / 1755
  8529. }
  8530. }
  8531. },
  8532. [
  8533. {
  8534. name: "Mortal",
  8535. height: math.unit(7 + 8 / 12, "feet")
  8536. },
  8537. {
  8538. name: "Battle",
  8539. height: math.unit(25 + 11 / 12, "feet")
  8540. },
  8541. {
  8542. name: "Wrath",
  8543. height: math.unit(1654 + 11 / 12, "feet")
  8544. },
  8545. {
  8546. name: "Planet Destroyer",
  8547. height: math.unit(12000, "miles")
  8548. },
  8549. {
  8550. name: "Galaxy Conqueror",
  8551. height: math.unit(1.45, "zettameters"),
  8552. default: true
  8553. },
  8554. {
  8555. name: "Universal War",
  8556. height: math.unit(184, "gigaparsecs")
  8557. },
  8558. {
  8559. name: "Eternity War",
  8560. height: math.unit(1.98e55, "yottaparsecs")
  8561. },
  8562. ]
  8563. ))
  8564. characterMakers.push(() => makeCharacter(
  8565. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8566. {
  8567. front: {
  8568. height: math.unit(5 + 8 / 12, "feet"),
  8569. weight: math.unit(63, "kg"),
  8570. name: "Front",
  8571. image: {
  8572. source: "./media/characters/xavier/front.svg",
  8573. extra: 944 / 883
  8574. }
  8575. },
  8576. frontStretch: {
  8577. height: math.unit(5 + 8 / 12, "feet"),
  8578. weight: math.unit(63, "kg"),
  8579. name: "Stretching",
  8580. image: {
  8581. source: "./media/characters/xavier/front-stretch.svg",
  8582. extra: 962 / 820
  8583. }
  8584. },
  8585. },
  8586. [
  8587. {
  8588. name: "Normal",
  8589. height: math.unit(5 + 8 / 12, "feet")
  8590. },
  8591. {
  8592. name: "Macro",
  8593. height: math.unit(100, "meters"),
  8594. default: true
  8595. },
  8596. {
  8597. name: "McLargeHuge",
  8598. height: math.unit(10, "miles")
  8599. },
  8600. ]
  8601. ))
  8602. characterMakers.push(() => makeCharacter(
  8603. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8604. {
  8605. front: {
  8606. height: math.unit(5 + 5 / 12, "feet"),
  8607. weight: math.unit(150, "lb"),
  8608. name: "Front",
  8609. image: {
  8610. source: "./media/characters/joshii/front.svg",
  8611. extra: 765 / 653,
  8612. bottom: 51 / 816
  8613. }
  8614. },
  8615. foot: {
  8616. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8617. name: "Foot",
  8618. image: {
  8619. source: "./media/characters/joshii/foot.svg"
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Micro",
  8626. height: math.unit(2, "inches"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "Normal",
  8631. height: math.unit(5 + 5 / 12, "feet")
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(785, "feet")
  8636. },
  8637. {
  8638. name: "Megamacro",
  8639. height: math.unit(24.5, "miles")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(6, "feet"),
  8648. weight: math.unit(150, "lb"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/goddess-elizabeth/front.svg",
  8652. extra: 1800 / 1525,
  8653. bottom: 0.005
  8654. }
  8655. },
  8656. foot: {
  8657. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8658. name: "Foot",
  8659. image: {
  8660. source: "./media/characters/goddess-elizabeth/foot.svg"
  8661. }
  8662. },
  8663. mouth: {
  8664. height: math.unit(6, "feet"),
  8665. name: "Mouth",
  8666. image: {
  8667. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8668. }
  8669. },
  8670. },
  8671. [
  8672. {
  8673. name: "Micro",
  8674. height: math.unit(12, "feet")
  8675. },
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(80, "miles"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Macro",
  8683. height: math.unit(15000, "parsecs")
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(5 + 9 / 12, "feet"),
  8692. weight: math.unit(144, "lb"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/kara/front.svg"
  8696. }
  8697. },
  8698. feet: {
  8699. height: math.unit(6 / 6.765, "feet"),
  8700. name: "Kara's Feet",
  8701. rename: true,
  8702. image: {
  8703. source: "./media/characters/kara/feet.svg"
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(5 + 9 / 12, "feet")
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(174, "feet"),
  8715. default: true
  8716. },
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8721. {
  8722. front: {
  8723. height: math.unit(18, "feet"),
  8724. weight: math.unit(4050, "lb"),
  8725. name: "Front",
  8726. image: {
  8727. source: "./media/characters/tyrone/front.svg",
  8728. extra: 2405 / 2270,
  8729. bottom: 182 / 2587
  8730. }
  8731. },
  8732. },
  8733. [
  8734. {
  8735. name: "Normal",
  8736. height: math.unit(18, "feet"),
  8737. default: true
  8738. },
  8739. {
  8740. name: "Macro",
  8741. height: math.unit(300, "feet")
  8742. },
  8743. {
  8744. name: "Megamacro",
  8745. height: math.unit(15, "km")
  8746. },
  8747. {
  8748. name: "Gigamacro",
  8749. height: math.unit(500, "km")
  8750. },
  8751. {
  8752. name: "Teramacro",
  8753. height: math.unit(0.5, "gigameters")
  8754. },
  8755. {
  8756. name: "Omnimacro",
  8757. height: math.unit(1e252, "yottauniverse")
  8758. },
  8759. ]
  8760. ))
  8761. characterMakers.push(() => makeCharacter(
  8762. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8763. {
  8764. front: {
  8765. height: math.unit(7 + 8 / 12, "feet"),
  8766. weight: math.unit(120, "lb"),
  8767. name: "Front",
  8768. image: {
  8769. source: "./media/characters/danny/front.svg",
  8770. extra: 1490 / 1350
  8771. }
  8772. },
  8773. back: {
  8774. height: math.unit(7 + 8 / 12, "feet"),
  8775. weight: math.unit(120, "lb"),
  8776. name: "Back",
  8777. image: {
  8778. source: "./media/characters/danny/back.svg",
  8779. extra: 1490 / 1350
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(7 + 8 / 12, "feet"),
  8787. default: true
  8788. },
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(3.5, "inches"),
  8796. weight: math.unit(19, "grams"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/mallow/front.svg",
  8800. extra: 471 / 431
  8801. }
  8802. },
  8803. back: {
  8804. height: math.unit(3.5, "inches"),
  8805. weight: math.unit(19, "grams"),
  8806. name: "Back",
  8807. image: {
  8808. source: "./media/characters/mallow/back.svg",
  8809. extra: 471 / 431
  8810. }
  8811. },
  8812. },
  8813. [
  8814. {
  8815. name: "Normal",
  8816. height: math.unit(3.5, "inches"),
  8817. default: true
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(9, "feet"),
  8826. weight: math.unit(230, "kg"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/starry-aqua/front.svg"
  8830. }
  8831. },
  8832. back: {
  8833. height: math.unit(9, "feet"),
  8834. weight: math.unit(230, "kg"),
  8835. name: "Back",
  8836. image: {
  8837. source: "./media/characters/starry-aqua/back.svg"
  8838. }
  8839. },
  8840. hand: {
  8841. height: math.unit(9 * 0.1168, "feet"),
  8842. name: "Hand",
  8843. image: {
  8844. source: "./media/characters/starry-aqua/hand.svg"
  8845. }
  8846. },
  8847. foot: {
  8848. height: math.unit(9 * 0.18, "feet"),
  8849. name: "Foot",
  8850. image: {
  8851. source: "./media/characters/starry-aqua/foot.svg"
  8852. }
  8853. }
  8854. },
  8855. [
  8856. {
  8857. name: "Micro",
  8858. height: math.unit(3, "inches")
  8859. },
  8860. {
  8861. name: "Normal",
  8862. height: math.unit(9, "feet")
  8863. },
  8864. {
  8865. name: "Macro",
  8866. height: math.unit(300, "feet"),
  8867. default: true
  8868. },
  8869. {
  8870. name: "Megamacro",
  8871. height: math.unit(3200, "feet")
  8872. }
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(6, "feet"),
  8880. weight: math.unit(230, "lb"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/luka/front.svg",
  8884. extra: 1,
  8885. bottom: 0.025
  8886. }
  8887. },
  8888. },
  8889. [
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(12 + 8 / 12, "feet"),
  8893. default: true
  8894. },
  8895. {
  8896. name: "Minimacro",
  8897. height: math.unit(20, "feet")
  8898. },
  8899. {
  8900. name: "Macro",
  8901. height: math.unit(250, "feet")
  8902. },
  8903. {
  8904. name: "Megamacro",
  8905. height: math.unit(5, "miles")
  8906. },
  8907. {
  8908. name: "Gigamacro",
  8909. height: math.unit(8000, "miles")
  8910. },
  8911. ]
  8912. ))
  8913. characterMakers.push(() => makeCharacter(
  8914. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8915. {
  8916. front: {
  8917. height: math.unit(6, "feet"),
  8918. weight: math.unit(150, "lb"),
  8919. name: "Front",
  8920. image: {
  8921. source: "./media/characters/natalie-nightring/front.svg",
  8922. extra: 1,
  8923. bottom: 0.06
  8924. }
  8925. },
  8926. },
  8927. [
  8928. {
  8929. name: "Uh Oh",
  8930. height: math.unit(0.1, "mm")
  8931. },
  8932. {
  8933. name: "Small",
  8934. height: math.unit(3, "inches")
  8935. },
  8936. {
  8937. name: "Human Scale",
  8938. height: math.unit(6, "feet")
  8939. },
  8940. {
  8941. name: "Librarian",
  8942. height: math.unit(50, "feet"),
  8943. default: true
  8944. },
  8945. {
  8946. name: "Immense",
  8947. height: math.unit(200, "miles")
  8948. },
  8949. ]
  8950. ))
  8951. characterMakers.push(() => makeCharacter(
  8952. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8953. {
  8954. front: {
  8955. height: math.unit(6, "feet"),
  8956. weight: math.unit(180, "lbs"),
  8957. name: "Front",
  8958. image: {
  8959. source: "./media/characters/danni-rosie/front.svg",
  8960. extra: 1260 / 1128,
  8961. bottom: 0.022
  8962. }
  8963. },
  8964. },
  8965. [
  8966. {
  8967. name: "Micro",
  8968. height: math.unit(2, "inches"),
  8969. default: true
  8970. },
  8971. ]
  8972. ))
  8973. characterMakers.push(() => makeCharacter(
  8974. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8975. {
  8976. front: {
  8977. height: math.unit(5 + 9 / 12, "feet"),
  8978. weight: math.unit(220, "lb"),
  8979. name: "Front",
  8980. image: {
  8981. source: "./media/characters/samantha-kruse/front.svg",
  8982. extra: (985 / 935),
  8983. bottom: 0.03
  8984. }
  8985. },
  8986. frontUndressed: {
  8987. height: math.unit(5 + 9 / 12, "feet"),
  8988. weight: math.unit(220, "lb"),
  8989. name: "Front (Undressed)",
  8990. image: {
  8991. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8992. extra: (973 / 923),
  8993. bottom: 0.025
  8994. }
  8995. },
  8996. fat: {
  8997. height: math.unit(5 + 9 / 12, "feet"),
  8998. weight: math.unit(900, "lb"),
  8999. name: "Front (Fat)",
  9000. image: {
  9001. source: "./media/characters/samantha-kruse/fat.svg",
  9002. extra: 2688 / 2561
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Normal",
  9009. height: math.unit(5 + 9 / 12, "feet"),
  9010. default: true
  9011. }
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9016. {
  9017. back: {
  9018. height: math.unit(5 + 4 / 12, "feet"),
  9019. weight: math.unit(4963, "lb"),
  9020. name: "Back",
  9021. image: {
  9022. source: "./media/characters/amelia-rosie/back.svg",
  9023. extra: 1113 / 963,
  9024. bottom: 0.01
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Level 0",
  9031. height: math.unit(5 + 4 / 12, "feet")
  9032. },
  9033. {
  9034. name: "Level 1",
  9035. height: math.unit(164597, "feet"),
  9036. default: true
  9037. },
  9038. {
  9039. name: "Level 2",
  9040. height: math.unit(956243, "miles")
  9041. },
  9042. {
  9043. name: "Level 3",
  9044. height: math.unit(29421709423, "miles")
  9045. },
  9046. {
  9047. name: "Level 4",
  9048. height: math.unit(154, "lightyears")
  9049. },
  9050. {
  9051. name: "Level 5",
  9052. height: math.unit(4738272, "lightyears")
  9053. },
  9054. {
  9055. name: "Level 6",
  9056. height: math.unit(145787152896, "lightyears")
  9057. },
  9058. ]
  9059. ))
  9060. characterMakers.push(() => makeCharacter(
  9061. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9062. {
  9063. front: {
  9064. height: math.unit(5 + 11 / 12, "feet"),
  9065. weight: math.unit(65, "kg"),
  9066. name: "Front",
  9067. image: {
  9068. source: "./media/characters/rook-kitara/front.svg",
  9069. extra: 1347 / 1274,
  9070. bottom: 0.005
  9071. }
  9072. },
  9073. },
  9074. [
  9075. {
  9076. name: "Totally Unfair",
  9077. height: math.unit(1.8, "mm")
  9078. },
  9079. {
  9080. name: "Lap Rookie",
  9081. height: math.unit(1.4, "feet")
  9082. },
  9083. {
  9084. name: "Normal",
  9085. height: math.unit(5 + 11 / 12, "feet"),
  9086. default: true
  9087. },
  9088. {
  9089. name: "How Did This Happen",
  9090. height: math.unit(80, "miles")
  9091. }
  9092. ]
  9093. ))
  9094. characterMakers.push(() => makeCharacter(
  9095. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9096. {
  9097. front: {
  9098. height: math.unit(7, "feet"),
  9099. weight: math.unit(300, "lb"),
  9100. name: "Front",
  9101. image: {
  9102. source: "./media/characters/pisces/front.svg",
  9103. extra: 2255 / 2115,
  9104. bottom: 0.03
  9105. }
  9106. },
  9107. back: {
  9108. height: math.unit(7, "feet"),
  9109. weight: math.unit(300, "lb"),
  9110. name: "Back",
  9111. image: {
  9112. source: "./media/characters/pisces/back.svg",
  9113. extra: 2146 / 2055,
  9114. bottom: 0.04
  9115. }
  9116. },
  9117. },
  9118. [
  9119. {
  9120. name: "Normal",
  9121. height: math.unit(7, "feet"),
  9122. default: true
  9123. },
  9124. {
  9125. name: "Swimming Pool",
  9126. height: math.unit(12.2, "meters")
  9127. },
  9128. {
  9129. name: "Olympic Swimming Pool",
  9130. height: math.unit(56.3, "meters")
  9131. },
  9132. {
  9133. name: "Lake Superior",
  9134. height: math.unit(93900, "meters")
  9135. },
  9136. {
  9137. name: "Mediterranean Sea",
  9138. height: math.unit(644457, "meters")
  9139. },
  9140. {
  9141. name: "World's Oceans",
  9142. height: math.unit(4567491, "meters")
  9143. },
  9144. ]
  9145. ))
  9146. characterMakers.push(() => makeCharacter(
  9147. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9148. {
  9149. front: {
  9150. height: math.unit(2.3, "meters"),
  9151. weight: math.unit(120, "kg"),
  9152. name: "Front",
  9153. image: {
  9154. source: "./media/characters/zelas/front.svg"
  9155. }
  9156. },
  9157. side: {
  9158. height: math.unit(2.3, "meters"),
  9159. weight: math.unit(120, "kg"),
  9160. name: "Side",
  9161. image: {
  9162. source: "./media/characters/zelas/side.svg"
  9163. }
  9164. },
  9165. back: {
  9166. height: math.unit(2.3, "meters"),
  9167. weight: math.unit(120, "kg"),
  9168. name: "Back",
  9169. image: {
  9170. source: "./media/characters/zelas/back.svg"
  9171. }
  9172. },
  9173. foot: {
  9174. height: math.unit(1.116, "feet"),
  9175. name: "Foot",
  9176. image: {
  9177. source: "./media/characters/zelas/foot.svg"
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(2.3, "meters")
  9185. },
  9186. {
  9187. name: "Macro",
  9188. height: math.unit(30, "meters"),
  9189. default: true
  9190. },
  9191. ]
  9192. ))
  9193. characterMakers.push(() => makeCharacter(
  9194. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9195. {
  9196. front: {
  9197. height: math.unit(1, "inch"),
  9198. weight: math.unit(0.21, "grams"),
  9199. name: "Front",
  9200. image: {
  9201. source: "./media/characters/talbot/front.svg",
  9202. extra: 594 / 544
  9203. }
  9204. },
  9205. },
  9206. [
  9207. {
  9208. name: "Micro",
  9209. height: math.unit(1, "inch"),
  9210. default: true
  9211. },
  9212. ]
  9213. ))
  9214. characterMakers.push(() => makeCharacter(
  9215. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9216. {
  9217. front: {
  9218. height: math.unit(3 + 3 / 12, "feet"),
  9219. weight: math.unit(51.8, "lb"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/fliss/front.svg",
  9223. extra: 840 / 640
  9224. }
  9225. },
  9226. },
  9227. [
  9228. {
  9229. name: "Teeny Tiny",
  9230. height: math.unit(1, "mm")
  9231. },
  9232. {
  9233. name: "Small",
  9234. height: math.unit(1, "inch"),
  9235. default: true
  9236. },
  9237. {
  9238. name: "Standard Sylveon",
  9239. height: math.unit(3 + 3 / 12, "feet")
  9240. },
  9241. {
  9242. name: "Large Nuisance",
  9243. height: math.unit(33, "feet")
  9244. },
  9245. {
  9246. name: "City Filler",
  9247. height: math.unit(3000, "feet")
  9248. },
  9249. {
  9250. name: "New Horizon",
  9251. height: math.unit(6000, "miles")
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9257. {
  9258. front: {
  9259. height: math.unit(5, "cm"),
  9260. weight: math.unit(1.94, "g"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/fleta/front.svg",
  9264. extra: 835 / 803
  9265. }
  9266. },
  9267. back: {
  9268. height: math.unit(5, "cm"),
  9269. weight: math.unit(1.94, "g"),
  9270. name: "Back",
  9271. image: {
  9272. source: "./media/characters/fleta/back.svg",
  9273. extra: 835 / 803
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Micro",
  9280. height: math.unit(5, "cm"),
  9281. default: true
  9282. },
  9283. ]
  9284. ))
  9285. characterMakers.push(() => makeCharacter(
  9286. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9287. {
  9288. front: {
  9289. height: math.unit(6, "feet"),
  9290. weight: math.unit(225, "lb"),
  9291. name: "Front",
  9292. image: {
  9293. source: "./media/characters/dominic/front.svg",
  9294. extra: 1770 / 1620,
  9295. bottom: 0.025
  9296. }
  9297. },
  9298. back: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(225, "lb"),
  9301. name: "Back",
  9302. image: {
  9303. source: "./media/characters/dominic/back.svg",
  9304. extra: 1745 / 1620,
  9305. bottom: 0.065
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Nano",
  9312. height: math.unit(0.1, "mm")
  9313. },
  9314. {
  9315. name: "Micro-",
  9316. height: math.unit(1, "mm")
  9317. },
  9318. {
  9319. name: "Micro",
  9320. height: math.unit(4, "inches")
  9321. },
  9322. {
  9323. name: "Normal",
  9324. height: math.unit(6 + 4 / 12, "feet"),
  9325. default: true
  9326. },
  9327. {
  9328. name: "Macro",
  9329. height: math.unit(115, "feet")
  9330. },
  9331. {
  9332. name: "Macro+",
  9333. height: math.unit(955, "feet")
  9334. },
  9335. {
  9336. name: "Megamacro",
  9337. height: math.unit(8990, "feet")
  9338. },
  9339. {
  9340. name: "Gigmacro",
  9341. height: math.unit(9310, "miles")
  9342. },
  9343. {
  9344. name: "Teramacro",
  9345. height: math.unit(1567005010, "miles")
  9346. },
  9347. {
  9348. name: "Examacro",
  9349. height: math.unit(1425, "parsecs")
  9350. },
  9351. ]
  9352. ))
  9353. characterMakers.push(() => makeCharacter(
  9354. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9355. {
  9356. front: {
  9357. height: math.unit(400, "feet"),
  9358. weight: math.unit(44444444, "lb"),
  9359. name: "Front",
  9360. image: {
  9361. source: "./media/characters/major-colonel/front.svg"
  9362. }
  9363. },
  9364. back: {
  9365. height: math.unit(400, "feet"),
  9366. weight: math.unit(44444444, "lb"),
  9367. name: "Back",
  9368. image: {
  9369. source: "./media/characters/major-colonel/back.svg"
  9370. }
  9371. },
  9372. },
  9373. [
  9374. {
  9375. name: "Macro",
  9376. height: math.unit(400, "feet"),
  9377. default: true
  9378. },
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9383. {
  9384. catFront: {
  9385. height: math.unit(6, "feet"),
  9386. weight: math.unit(120, "lb"),
  9387. name: "Front (Cat Side)",
  9388. image: {
  9389. source: "./media/characters/axel-lycan/cat-front.svg",
  9390. extra: 430 / 402,
  9391. bottom: 43 / 472.35
  9392. }
  9393. },
  9394. catBack: {
  9395. height: math.unit(6, "feet"),
  9396. weight: math.unit(120, "lb"),
  9397. name: "Back (Cat Side)",
  9398. image: {
  9399. source: "./media/characters/axel-lycan/cat-back.svg",
  9400. extra: 447 / 419,
  9401. bottom: 23.3 / 469
  9402. }
  9403. },
  9404. wolfFront: {
  9405. height: math.unit(6, "feet"),
  9406. weight: math.unit(120, "lb"),
  9407. name: "Front (Wolf Side)",
  9408. image: {
  9409. source: "./media/characters/axel-lycan/wolf-front.svg",
  9410. extra: 485 / 456,
  9411. bottom: 19 / 504
  9412. }
  9413. },
  9414. wolfBack: {
  9415. height: math.unit(6, "feet"),
  9416. weight: math.unit(120, "lb"),
  9417. name: "Back (Wolf Side)",
  9418. image: {
  9419. source: "./media/characters/axel-lycan/wolf-back.svg",
  9420. extra: 475 / 438,
  9421. bottom: 39.2 / 514
  9422. }
  9423. },
  9424. },
  9425. [
  9426. {
  9427. name: "Macro",
  9428. height: math.unit(1, "km"),
  9429. default: true
  9430. },
  9431. ]
  9432. ))
  9433. characterMakers.push(() => makeCharacter(
  9434. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9435. {
  9436. front: {
  9437. height: math.unit(5 + 9 / 12, "feet"),
  9438. weight: math.unit(175, "lb"),
  9439. name: "Front",
  9440. image: {
  9441. source: "./media/characters/vanrel-hyena/front.svg",
  9442. extra: 1086 / 1010,
  9443. bottom: 0.04
  9444. }
  9445. },
  9446. },
  9447. [
  9448. {
  9449. name: "Normal",
  9450. height: math.unit(5 + 9 / 12, "feet"),
  9451. default: true
  9452. },
  9453. ]
  9454. ))
  9455. characterMakers.push(() => makeCharacter(
  9456. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9457. {
  9458. front: {
  9459. height: math.unit(6, "feet"),
  9460. weight: math.unit(103, "lb"),
  9461. name: "Front",
  9462. image: {
  9463. source: "./media/characters/abbott-absol/front.svg",
  9464. extra: 2010 / 1842
  9465. }
  9466. },
  9467. },
  9468. [
  9469. {
  9470. name: "Megamicro",
  9471. height: math.unit(0.1, "mm")
  9472. },
  9473. {
  9474. name: "Micro",
  9475. height: math.unit(1, "inch")
  9476. },
  9477. {
  9478. name: "Normal",
  9479. height: math.unit(6, "feet"),
  9480. default: true
  9481. },
  9482. ]
  9483. ))
  9484. characterMakers.push(() => makeCharacter(
  9485. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9486. {
  9487. front: {
  9488. height: math.unit(6, "feet"),
  9489. weight: math.unit(264, "lb"),
  9490. name: "Front",
  9491. image: {
  9492. source: "./media/characters/hector/front.svg",
  9493. extra: 2280 / 2130,
  9494. bottom: 0.07
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Normal",
  9501. height: math.unit(12.25, "foot"),
  9502. default: true
  9503. },
  9504. {
  9505. name: "Macro",
  9506. height: math.unit(160, "feet")
  9507. },
  9508. ]
  9509. ))
  9510. characterMakers.push(() => makeCharacter(
  9511. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9512. {
  9513. front: {
  9514. height: math.unit(6, "feet"),
  9515. weight: math.unit(150, "lb"),
  9516. name: "Front",
  9517. image: {
  9518. source: "./media/characters/sal/front.svg",
  9519. extra: 1846 / 1699,
  9520. bottom: 0.04
  9521. }
  9522. },
  9523. },
  9524. [
  9525. {
  9526. name: "Megamacro",
  9527. height: math.unit(10, "miles"),
  9528. default: true
  9529. },
  9530. ]
  9531. ))
  9532. characterMakers.push(() => makeCharacter(
  9533. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9534. {
  9535. front: {
  9536. height: math.unit(3, "meters"),
  9537. weight: math.unit(450, "kg"),
  9538. name: "front",
  9539. image: {
  9540. source: "./media/characters/ranger/front.svg",
  9541. extra: 2401 / 2243,
  9542. bottom: 0.05
  9543. }
  9544. },
  9545. },
  9546. [
  9547. {
  9548. name: "Normal",
  9549. height: math.unit(3, "meters"),
  9550. default: true
  9551. },
  9552. ]
  9553. ))
  9554. characterMakers.push(() => makeCharacter(
  9555. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9556. {
  9557. front: {
  9558. height: math.unit(14, "feet"),
  9559. weight: math.unit(800, "kg"),
  9560. name: "Front",
  9561. image: {
  9562. source: "./media/characters/theresa/front.svg",
  9563. extra: 3575 / 3346,
  9564. bottom: 0.03
  9565. }
  9566. },
  9567. },
  9568. [
  9569. {
  9570. name: "Normal",
  9571. height: math.unit(14, "feet"),
  9572. default: true
  9573. },
  9574. ]
  9575. ))
  9576. characterMakers.push(() => makeCharacter(
  9577. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9578. {
  9579. front: {
  9580. height: math.unit(6, "feet"),
  9581. weight: math.unit(3, "kg"),
  9582. name: "Front",
  9583. image: {
  9584. source: "./media/characters/ine/front.svg",
  9585. extra: 678 / 539,
  9586. bottom: 0.023
  9587. }
  9588. },
  9589. },
  9590. [
  9591. {
  9592. name: "Normal",
  9593. height: math.unit(2.265, "feet"),
  9594. default: true
  9595. },
  9596. ]
  9597. ))
  9598. characterMakers.push(() => makeCharacter(
  9599. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9600. {
  9601. front: {
  9602. height: math.unit(5, "feet"),
  9603. weight: math.unit(30, "kg"),
  9604. name: "Front",
  9605. image: {
  9606. source: "./media/characters/vial/front.svg",
  9607. extra: 1365 / 1277,
  9608. bottom: 0.04
  9609. }
  9610. },
  9611. },
  9612. [
  9613. {
  9614. name: "Normal",
  9615. height: math.unit(5, "feet"),
  9616. default: true
  9617. },
  9618. ]
  9619. ))
  9620. characterMakers.push(() => makeCharacter(
  9621. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9622. {
  9623. side: {
  9624. height: math.unit(3.4, "meters"),
  9625. weight: math.unit(1000, "lb"),
  9626. name: "Side",
  9627. image: {
  9628. source: "./media/characters/rovoska/side.svg",
  9629. extra: 4403 / 1515
  9630. }
  9631. },
  9632. },
  9633. [
  9634. {
  9635. name: "Normal",
  9636. height: math.unit(3.4, "meters"),
  9637. default: true
  9638. },
  9639. ]
  9640. ))
  9641. characterMakers.push(() => makeCharacter(
  9642. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9643. {
  9644. front: {
  9645. height: math.unit(8, "feet"),
  9646. weight: math.unit(315, "lb"),
  9647. name: "Front",
  9648. image: {
  9649. source: "./media/characters/gunner-rotthbauer/front.svg"
  9650. }
  9651. },
  9652. back: {
  9653. height: math.unit(8, "feet"),
  9654. weight: math.unit(315, "lb"),
  9655. name: "Back",
  9656. image: {
  9657. source: "./media/characters/gunner-rotthbauer/back.svg"
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Micro",
  9664. height: math.unit(3.5, "inches")
  9665. },
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(8, "feet"),
  9669. default: true
  9670. },
  9671. {
  9672. name: "Macro",
  9673. height: math.unit(250, "feet")
  9674. },
  9675. {
  9676. name: "Megamacro",
  9677. height: math.unit(1, "AU")
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(5 + 5 / 12, "feet"),
  9686. weight: math.unit(140, "lb"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/allatia/front.svg",
  9690. extra: 1227 / 1180,
  9691. bottom: 0.027
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(5 + 5 / 12, "feet")
  9699. },
  9700. {
  9701. name: "Macro",
  9702. height: math.unit(250, "feet"),
  9703. default: true
  9704. },
  9705. {
  9706. name: "Megamacro",
  9707. height: math.unit(8, "miles")
  9708. }
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9713. {
  9714. front: {
  9715. height: math.unit(6, "feet"),
  9716. weight: math.unit(120, "lb"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/tene/front.svg",
  9720. extra: 1728 / 1578,
  9721. bottom: 0.022
  9722. }
  9723. },
  9724. stomping: {
  9725. height: math.unit(2.025, "meters"),
  9726. weight: math.unit(120, "lb"),
  9727. name: "Stomping",
  9728. image: {
  9729. source: "./media/characters/tene/stomping.svg",
  9730. extra: 938 / 873,
  9731. bottom: 0.01
  9732. }
  9733. },
  9734. sitting: {
  9735. height: math.unit(1, "meter"),
  9736. weight: math.unit(120, "lb"),
  9737. name: "Sitting",
  9738. image: {
  9739. source: "./media/characters/tene/sitting.svg",
  9740. extra: 437 / 415,
  9741. bottom: 0.1
  9742. }
  9743. },
  9744. feral: {
  9745. height: math.unit(3.9, "feet"),
  9746. weight: math.unit(250, "lb"),
  9747. name: "Feral",
  9748. image: {
  9749. source: "./media/characters/tene/feral.svg",
  9750. extra: 717 / 458,
  9751. bottom: 0.179
  9752. }
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Normal",
  9758. height: math.unit(6, "feet")
  9759. },
  9760. {
  9761. name: "Macro",
  9762. height: math.unit(300, "feet"),
  9763. default: true
  9764. },
  9765. {
  9766. name: "Megamacro",
  9767. height: math.unit(5, "miles")
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9773. {
  9774. side: {
  9775. height: math.unit(6, "feet"),
  9776. name: "Side",
  9777. image: {
  9778. source: "./media/characters/evander/side.svg",
  9779. extra: 877 / 477
  9780. }
  9781. },
  9782. },
  9783. [
  9784. {
  9785. name: "Normal",
  9786. height: math.unit(0.83, "meters"),
  9787. default: true
  9788. },
  9789. ]
  9790. ))
  9791. characterMakers.push(() => makeCharacter(
  9792. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9793. {
  9794. front: {
  9795. height: math.unit(12, "feet"),
  9796. weight: math.unit(1000, "lb"),
  9797. name: "Front",
  9798. image: {
  9799. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9800. extra: 1762 / 1611
  9801. }
  9802. },
  9803. back: {
  9804. height: math.unit(12, "feet"),
  9805. weight: math.unit(1000, "lb"),
  9806. name: "Back",
  9807. image: {
  9808. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9809. extra: 1762 / 1611
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(12, "feet"),
  9817. default: true
  9818. },
  9819. {
  9820. name: "Kaiju",
  9821. height: math.unit(150, "feet")
  9822. },
  9823. ]
  9824. ))
  9825. characterMakers.push(() => makeCharacter(
  9826. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9827. {
  9828. front: {
  9829. height: math.unit(6, "feet"),
  9830. weight: math.unit(150, "lb"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/zero-alurus/front.svg"
  9834. }
  9835. },
  9836. back: {
  9837. height: math.unit(6, "feet"),
  9838. weight: math.unit(150, "lb"),
  9839. name: "Back",
  9840. image: {
  9841. source: "./media/characters/zero-alurus/back.svg"
  9842. }
  9843. },
  9844. },
  9845. [
  9846. {
  9847. name: "Normal",
  9848. height: math.unit(5 + 10 / 12, "feet")
  9849. },
  9850. {
  9851. name: "Macro",
  9852. height: math.unit(60, "feet"),
  9853. default: true
  9854. },
  9855. {
  9856. name: "Macro+",
  9857. height: math.unit(450, "feet")
  9858. },
  9859. ]
  9860. ))
  9861. characterMakers.push(() => makeCharacter(
  9862. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9863. {
  9864. front: {
  9865. height: math.unit(6, "feet"),
  9866. weight: math.unit(200, "lb"),
  9867. name: "Front",
  9868. image: {
  9869. source: "./media/characters/mega-shi/front.svg",
  9870. extra: 1279 / 1250,
  9871. bottom: 0.02
  9872. }
  9873. },
  9874. back: {
  9875. height: math.unit(6, "feet"),
  9876. weight: math.unit(200, "lb"),
  9877. name: "Back",
  9878. image: {
  9879. source: "./media/characters/mega-shi/back.svg",
  9880. extra: 1279 / 1250,
  9881. bottom: 0.02
  9882. }
  9883. },
  9884. },
  9885. [
  9886. {
  9887. name: "Micro",
  9888. height: math.unit(16 + 6 / 12, "feet")
  9889. },
  9890. {
  9891. name: "Third Dimension",
  9892. height: math.unit(40, "meters")
  9893. },
  9894. {
  9895. name: "Normal",
  9896. height: math.unit(660, "feet"),
  9897. default: true
  9898. },
  9899. {
  9900. name: "Megamacro",
  9901. height: math.unit(10, "miles")
  9902. },
  9903. {
  9904. name: "Planetary Launch",
  9905. height: math.unit(500, "miles")
  9906. },
  9907. {
  9908. name: "Interstellar",
  9909. height: math.unit(1e9, "miles")
  9910. },
  9911. {
  9912. name: "Leaving the Universe",
  9913. height: math.unit(1, "gigaparsec")
  9914. },
  9915. {
  9916. name: "Travelling Universes",
  9917. height: math.unit(30e15, "parsecs")
  9918. },
  9919. ]
  9920. ))
  9921. characterMakers.push(() => makeCharacter(
  9922. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9923. {
  9924. front: {
  9925. height: math.unit(6, "feet"),
  9926. weight: math.unit(150, "lb"),
  9927. name: "Front",
  9928. image: {
  9929. source: "./media/characters/odyssey/front.svg",
  9930. extra: 1782 / 1582,
  9931. bottom: 0.01
  9932. }
  9933. },
  9934. side: {
  9935. height: math.unit(5.7, "feet"),
  9936. weight: math.unit(140, "lb"),
  9937. name: "Side",
  9938. image: {
  9939. source: "./media/characters/odyssey/side.svg",
  9940. extra: 6462 / 5700
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(5 + 4 / 12, "feet")
  9948. },
  9949. {
  9950. name: "Macro",
  9951. height: math.unit(1, "km")
  9952. },
  9953. {
  9954. name: "Megamacro",
  9955. height: math.unit(3000, "km")
  9956. },
  9957. {
  9958. name: "Gigamacro",
  9959. height: math.unit(1, "AU"),
  9960. default: true
  9961. },
  9962. {
  9963. name: "Omniversal",
  9964. height: math.unit(100e14, "lightyears")
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9970. {
  9971. front: {
  9972. height: math.unit(6, "feet"),
  9973. weight: math.unit(300, "lb"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/mekuto/front.svg",
  9977. extra: 921 / 832,
  9978. bottom: 0.03
  9979. }
  9980. },
  9981. hand: {
  9982. height: math.unit(6 / 10.24, "feet"),
  9983. name: "Hand",
  9984. image: {
  9985. source: "./media/characters/mekuto/hand.svg"
  9986. }
  9987. },
  9988. foot: {
  9989. height: math.unit(6 / 5.05, "feet"),
  9990. name: "Foot",
  9991. image: {
  9992. source: "./media/characters/mekuto/foot.svg"
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Minimicro",
  9999. height: math.unit(0.2, "inches")
  10000. },
  10001. {
  10002. name: "Micro",
  10003. height: math.unit(1.5, "inches")
  10004. },
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(5 + 11 / 12, "feet"),
  10008. default: true
  10009. },
  10010. {
  10011. name: "Minimacro",
  10012. height: math.unit(17 + 9 / 12, "feet")
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(177.5, "feet")
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(152, "miles")
  10021. },
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10026. {
  10027. front: {
  10028. height: math.unit(6.5, "inches"),
  10029. weight: math.unit(13, "oz"),
  10030. name: "Front",
  10031. image: {
  10032. source: "./media/characters/dafydd-tomos/front.svg",
  10033. extra: 2990 / 2603,
  10034. bottom: 0.03
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Micro",
  10041. height: math.unit(6.5, "inches"),
  10042. default: true
  10043. },
  10044. ]
  10045. ))
  10046. characterMakers.push(() => makeCharacter(
  10047. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10048. {
  10049. front: {
  10050. height: math.unit(6, "feet"),
  10051. weight: math.unit(150, "lb"),
  10052. name: "Front",
  10053. image: {
  10054. source: "./media/characters/splinter/front.svg",
  10055. extra: 2990 / 2882,
  10056. bottom: 0.04
  10057. }
  10058. },
  10059. back: {
  10060. height: math.unit(6, "feet"),
  10061. weight: math.unit(150, "lb"),
  10062. name: "Back",
  10063. image: {
  10064. source: "./media/characters/splinter/back.svg",
  10065. extra: 2990 / 2882,
  10066. bottom: 0.04
  10067. }
  10068. },
  10069. },
  10070. [
  10071. {
  10072. name: "Normal",
  10073. height: math.unit(6, "feet")
  10074. },
  10075. {
  10076. name: "Macro",
  10077. height: math.unit(230, "meters"),
  10078. default: true
  10079. },
  10080. ]
  10081. ))
  10082. characterMakers.push(() => makeCharacter(
  10083. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10084. {
  10085. front: {
  10086. height: math.unit(4 + 10 / 12, "feet"),
  10087. weight: math.unit(480, "lb"),
  10088. name: "Front",
  10089. image: {
  10090. source: "./media/characters/snow-gabumon/front.svg",
  10091. extra: 1140 / 963,
  10092. bottom: 0.058
  10093. }
  10094. },
  10095. back: {
  10096. height: math.unit(4 + 10 / 12, "feet"),
  10097. weight: math.unit(480, "lb"),
  10098. name: "Back",
  10099. image: {
  10100. source: "./media/characters/snow-gabumon/back.svg",
  10101. extra: 1115 / 962,
  10102. bottom: 0.041
  10103. }
  10104. },
  10105. frontUndresed: {
  10106. height: math.unit(4 + 10 / 12, "feet"),
  10107. weight: math.unit(480, "lb"),
  10108. name: "Front (Undressed)",
  10109. image: {
  10110. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10111. extra: 1061 / 960,
  10112. bottom: 0.045
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Micro",
  10119. height: math.unit(1, "inch")
  10120. },
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(4 + 10 / 12, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(200, "feet")
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(120, "miles")
  10133. },
  10134. {
  10135. name: "Gigamacro",
  10136. height: math.unit(9800, "miles")
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10142. {
  10143. front: {
  10144. height: math.unit(1.7, "meters"),
  10145. weight: math.unit(140, "lb"),
  10146. name: "Front",
  10147. image: {
  10148. source: "./media/characters/moody/front.svg",
  10149. extra: 3226 / 3007,
  10150. bottom: 0.087
  10151. }
  10152. },
  10153. },
  10154. [
  10155. {
  10156. name: "Micro",
  10157. height: math.unit(1, "mm")
  10158. },
  10159. {
  10160. name: "Normal",
  10161. height: math.unit(1.7, "meters"),
  10162. default: true
  10163. },
  10164. {
  10165. name: "Macro",
  10166. height: math.unit(80, "meters")
  10167. },
  10168. {
  10169. name: "Macro+",
  10170. height: math.unit(500, "meters")
  10171. },
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10176. {
  10177. front: {
  10178. height: math.unit(6, "feet"),
  10179. weight: math.unit(150, "lb"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/zyas/front.svg",
  10183. extra: 1180 / 1120,
  10184. bottom: 0.045
  10185. }
  10186. },
  10187. },
  10188. [
  10189. {
  10190. name: "Normal",
  10191. height: math.unit(10, "feet"),
  10192. default: true
  10193. },
  10194. {
  10195. name: "Macro",
  10196. height: math.unit(500, "feet")
  10197. },
  10198. {
  10199. name: "Megamacro",
  10200. height: math.unit(5, "miles")
  10201. },
  10202. {
  10203. name: "Teramacro",
  10204. height: math.unit(150000, "miles")
  10205. },
  10206. ]
  10207. ))
  10208. characterMakers.push(() => makeCharacter(
  10209. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10210. {
  10211. front: {
  10212. height: math.unit(6, "feet"),
  10213. weight: math.unit(150, "lb"),
  10214. name: "Front",
  10215. image: {
  10216. source: "./media/characters/cuon/front.svg",
  10217. extra: 1390 / 1320,
  10218. bottom: 0.008
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Micro",
  10225. height: math.unit(3, "inches")
  10226. },
  10227. {
  10228. name: "Normal",
  10229. height: math.unit(18 + 9 / 12, "feet"),
  10230. default: true
  10231. },
  10232. {
  10233. name: "Macro",
  10234. height: math.unit(360, "feet")
  10235. },
  10236. {
  10237. name: "Megamacro",
  10238. height: math.unit(360, "miles")
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(2.4, "meters"),
  10247. weight: math.unit(70, "kg"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/nyanuxk/front.svg",
  10251. extra: 1172 / 1084,
  10252. bottom: 0.065
  10253. }
  10254. },
  10255. side: {
  10256. height: math.unit(2.4, "meters"),
  10257. weight: math.unit(70, "kg"),
  10258. name: "Side",
  10259. image: {
  10260. source: "./media/characters/nyanuxk/side.svg",
  10261. extra: 1190 / 1132,
  10262. bottom: 0.007
  10263. }
  10264. },
  10265. back: {
  10266. height: math.unit(2.4, "meters"),
  10267. weight: math.unit(70, "kg"),
  10268. name: "Back",
  10269. image: {
  10270. source: "./media/characters/nyanuxk/back.svg",
  10271. extra: 1200 / 1141,
  10272. bottom: 0.015
  10273. }
  10274. },
  10275. foot: {
  10276. height: math.unit(0.52, "meters"),
  10277. name: "Foot",
  10278. image: {
  10279. source: "./media/characters/nyanuxk/foot.svg"
  10280. }
  10281. },
  10282. },
  10283. [
  10284. {
  10285. name: "Micro",
  10286. height: math.unit(2, "cm")
  10287. },
  10288. {
  10289. name: "Normal",
  10290. height: math.unit(2.4, "meters"),
  10291. default: true
  10292. },
  10293. {
  10294. name: "Smaller Macro",
  10295. height: math.unit(120, "meters")
  10296. },
  10297. {
  10298. name: "Bigger Macro",
  10299. height: math.unit(1.2, "km")
  10300. },
  10301. {
  10302. name: "Megamacro",
  10303. height: math.unit(15, "kilometers")
  10304. },
  10305. {
  10306. name: "Gigamacro",
  10307. height: math.unit(2000, "km")
  10308. },
  10309. {
  10310. name: "Teramacro",
  10311. height: math.unit(500000, "km")
  10312. },
  10313. ]
  10314. ))
  10315. characterMakers.push(() => makeCharacter(
  10316. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10317. {
  10318. side: {
  10319. height: math.unit(6, "feet"),
  10320. name: "Side",
  10321. image: {
  10322. source: "./media/characters/ailbhe/side.svg",
  10323. extra: 757 / 464,
  10324. bottom: 0.041
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(1.07, "meters"),
  10332. default: true
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(120, "kg"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/zevulfius/front.svg",
  10345. extra: 965 / 903
  10346. }
  10347. },
  10348. side: {
  10349. height: math.unit(6, "feet"),
  10350. weight: math.unit(120, "kg"),
  10351. name: "Side",
  10352. image: {
  10353. source: "./media/characters/zevulfius/side.svg",
  10354. extra: 939 / 900
  10355. }
  10356. },
  10357. back: {
  10358. height: math.unit(6, "feet"),
  10359. weight: math.unit(120, "kg"),
  10360. name: "Back",
  10361. image: {
  10362. source: "./media/characters/zevulfius/back.svg",
  10363. extra: 918 / 854,
  10364. bottom: 0.005
  10365. }
  10366. },
  10367. foot: {
  10368. height: math.unit(6 / 3.72, "feet"),
  10369. name: "Foot",
  10370. image: {
  10371. source: "./media/characters/zevulfius/foot.svg"
  10372. }
  10373. },
  10374. },
  10375. [
  10376. {
  10377. name: "Macro",
  10378. height: math.unit(750, "meters")
  10379. },
  10380. {
  10381. name: "Megamacro",
  10382. height: math.unit(20, "km"),
  10383. default: true
  10384. },
  10385. {
  10386. name: "Gigamacro",
  10387. height: math.unit(2000, "km")
  10388. },
  10389. {
  10390. name: "Teramacro",
  10391. height: math.unit(250000, "km")
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10397. {
  10398. front: {
  10399. height: math.unit(100, "feet"),
  10400. weight: math.unit(350, "kg"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/rikes/front.svg",
  10404. extra: 1565 / 1483,
  10405. bottom: 0.017
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Macro",
  10412. height: math.unit(100, "feet"),
  10413. default: true
  10414. },
  10415. ]
  10416. ))
  10417. characterMakers.push(() => makeCharacter(
  10418. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10419. {
  10420. anthro: {
  10421. height: math.unit(8, "feet"),
  10422. weight: math.unit(120, "kg"),
  10423. name: "Anthro",
  10424. image: {
  10425. source: "./media/characters/adam-silver-mane/anthro.svg",
  10426. extra: 5743 / 5339,
  10427. bottom: 0.07
  10428. }
  10429. },
  10430. taur: {
  10431. height: math.unit(16, "feet"),
  10432. weight: math.unit(1500, "kg"),
  10433. name: "Taur",
  10434. image: {
  10435. source: "./media/characters/adam-silver-mane/taur.svg",
  10436. extra: 1713 / 1571,
  10437. bottom: 0.01
  10438. }
  10439. },
  10440. },
  10441. [
  10442. {
  10443. name: "Normal",
  10444. height: math.unit(8, "feet")
  10445. },
  10446. {
  10447. name: "Minimacro",
  10448. height: math.unit(80, "feet")
  10449. },
  10450. {
  10451. name: "Macro",
  10452. height: math.unit(800, "feet"),
  10453. default: true
  10454. },
  10455. {
  10456. name: "Megamacro",
  10457. height: math.unit(8000, "feet")
  10458. },
  10459. {
  10460. name: "Gigamacro",
  10461. height: math.unit(800, "miles")
  10462. },
  10463. {
  10464. name: "Teramacro",
  10465. height: math.unit(80000, "miles")
  10466. },
  10467. {
  10468. name: "Celestial",
  10469. height: math.unit(8e6, "miles")
  10470. },
  10471. {
  10472. name: "Star Dragon",
  10473. height: math.unit(800000, "parsecs")
  10474. },
  10475. {
  10476. name: "Godly",
  10477. height: math.unit(800, "teraparsecs")
  10478. },
  10479. ]
  10480. ))
  10481. characterMakers.push(() => makeCharacter(
  10482. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10483. {
  10484. front: {
  10485. height: math.unit(6, "feet"),
  10486. weight: math.unit(150, "lb"),
  10487. name: "Front",
  10488. image: {
  10489. source: "./media/characters/ky'owin/front.svg",
  10490. extra: 3888 / 3068,
  10491. bottom: 0.015
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(6 + 8 / 12, "feet")
  10499. },
  10500. {
  10501. name: "Large",
  10502. height: math.unit(68, "feet")
  10503. },
  10504. {
  10505. name: "Macro",
  10506. height: math.unit(132, "feet")
  10507. },
  10508. {
  10509. name: "Macro+",
  10510. height: math.unit(340, "feet")
  10511. },
  10512. {
  10513. name: "Macro++",
  10514. height: math.unit(680, "feet"),
  10515. default: true
  10516. },
  10517. {
  10518. name: "Megamacro",
  10519. height: math.unit(1, "mile")
  10520. },
  10521. {
  10522. name: "Megamacro+",
  10523. height: math.unit(10, "miles")
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10529. {
  10530. front: {
  10531. height: math.unit(4, "feet"),
  10532. weight: math.unit(50, "lb"),
  10533. name: "Front",
  10534. image: {
  10535. source: "./media/characters/mal/front.svg",
  10536. extra: 785 / 724,
  10537. bottom: 0.07
  10538. }
  10539. },
  10540. },
  10541. [
  10542. {
  10543. name: "Micro",
  10544. height: math.unit(4, "inches")
  10545. },
  10546. {
  10547. name: "Normal",
  10548. height: math.unit(4, "feet"),
  10549. default: true
  10550. },
  10551. {
  10552. name: "Macro",
  10553. height: math.unit(200, "feet")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(150, "lb"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/jordan-deware/front.svg",
  10566. extra: 1191 / 1012
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Nano",
  10573. height: math.unit(0.01, "mm")
  10574. },
  10575. {
  10576. name: "Minimicro",
  10577. height: math.unit(1, "mm")
  10578. },
  10579. {
  10580. name: "Micro",
  10581. height: math.unit(0.5, "inches")
  10582. },
  10583. {
  10584. name: "Normal",
  10585. height: math.unit(4, "feet"),
  10586. default: true
  10587. },
  10588. {
  10589. name: "Minimacro",
  10590. height: math.unit(40, "meters")
  10591. },
  10592. {
  10593. name: "Small Macro",
  10594. height: math.unit(400, "meters")
  10595. },
  10596. {
  10597. name: "Macro",
  10598. height: math.unit(4, "miles")
  10599. },
  10600. {
  10601. name: "Megamacro",
  10602. height: math.unit(40, "miles")
  10603. },
  10604. {
  10605. name: "Megamacro+",
  10606. height: math.unit(400, "miles")
  10607. },
  10608. {
  10609. name: "Gigamacro",
  10610. height: math.unit(400000, "miles")
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10616. {
  10617. side: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(150, "lb"),
  10620. name: "Side",
  10621. image: {
  10622. source: "./media/characters/kimiko/side.svg",
  10623. extra: 600 / 358
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Normal",
  10630. height: math.unit(15, "feet"),
  10631. default: true
  10632. },
  10633. {
  10634. name: "Macro",
  10635. height: math.unit(220, "feet")
  10636. },
  10637. {
  10638. name: "Macro+",
  10639. height: math.unit(1450, "feet")
  10640. },
  10641. {
  10642. name: "Megamacro",
  10643. height: math.unit(11500, "feet")
  10644. },
  10645. {
  10646. name: "Gigamacro",
  10647. height: math.unit(9500, "miles")
  10648. },
  10649. {
  10650. name: "Teramacro",
  10651. height: math.unit(2208005005, "miles")
  10652. },
  10653. {
  10654. name: "Examacro",
  10655. height: math.unit(2750, "parsecs")
  10656. },
  10657. {
  10658. name: "Zettamacro",
  10659. height: math.unit(101500, "parsecs")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10665. {
  10666. front: {
  10667. height: math.unit(6, "feet"),
  10668. weight: math.unit(70, "kg"),
  10669. name: "Front",
  10670. image: {
  10671. source: "./media/characters/andrew-sleepy/front.svg"
  10672. }
  10673. },
  10674. side: {
  10675. height: math.unit(6, "feet"),
  10676. weight: math.unit(70, "kg"),
  10677. name: "Side",
  10678. image: {
  10679. source: "./media/characters/andrew-sleepy/side.svg"
  10680. }
  10681. },
  10682. },
  10683. [
  10684. {
  10685. name: "Micro",
  10686. height: math.unit(1, "mm"),
  10687. default: true
  10688. },
  10689. ]
  10690. ))
  10691. characterMakers.push(() => makeCharacter(
  10692. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10693. {
  10694. front: {
  10695. height: math.unit(6, "feet"),
  10696. weight: math.unit(150, "lb"),
  10697. name: "Front",
  10698. image: {
  10699. source: "./media/characters/judio/front.svg",
  10700. extra: 1258 / 1110
  10701. }
  10702. },
  10703. },
  10704. [
  10705. {
  10706. name: "Normal",
  10707. height: math.unit(5 + 6 / 12, "feet")
  10708. },
  10709. {
  10710. name: "Macro",
  10711. height: math.unit(1000, "feet"),
  10712. default: true
  10713. },
  10714. {
  10715. name: "Megamacro",
  10716. height: math.unit(10, "miles")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10722. {
  10723. front: {
  10724. height: math.unit(6, "feet"),
  10725. weight: math.unit(68, "kg"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/nomaxice/front.svg",
  10729. extra: 1498 / 1073,
  10730. bottom: 0.075
  10731. }
  10732. },
  10733. foot: {
  10734. height: math.unit(1.1, "feet"),
  10735. name: "Foot",
  10736. image: {
  10737. source: "./media/characters/nomaxice/foot.svg"
  10738. }
  10739. },
  10740. },
  10741. [
  10742. {
  10743. name: "Micro",
  10744. height: math.unit(8, "cm")
  10745. },
  10746. {
  10747. name: "Norm",
  10748. height: math.unit(1.82, "m")
  10749. },
  10750. {
  10751. name: "Norm+",
  10752. height: math.unit(8.8, "feet")
  10753. },
  10754. {
  10755. name: "Big",
  10756. height: math.unit(8, "meters"),
  10757. default: true
  10758. },
  10759. {
  10760. name: "Macro",
  10761. height: math.unit(18, "meters")
  10762. },
  10763. {
  10764. name: "Macro+",
  10765. height: math.unit(88, "meters")
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(12, "feet"),
  10774. weight: math.unit(1.5, "tons"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/dydros/front.svg",
  10778. extra: 863 / 800,
  10779. bottom: 0.015
  10780. }
  10781. },
  10782. back: {
  10783. height: math.unit(12, "feet"),
  10784. weight: math.unit(1.5, "tons"),
  10785. name: "Back",
  10786. image: {
  10787. source: "./media/characters/dydros/back.svg",
  10788. extra: 900 / 843,
  10789. bottom: 0.005
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(12, "feet"),
  10797. default: true
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10803. {
  10804. front: {
  10805. height: math.unit(6, "feet"),
  10806. weight: math.unit(100, "kg"),
  10807. name: "Front",
  10808. image: {
  10809. source: "./media/characters/riggi/front.svg",
  10810. extra: 5787 / 5303
  10811. }
  10812. },
  10813. hyper: {
  10814. height: math.unit(6 * 5 / 3, "feet"),
  10815. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10816. name: "Hyper",
  10817. image: {
  10818. source: "./media/characters/riggi/hyper.svg",
  10819. extra: 3595 / 3485
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Small Macro",
  10826. height: math.unit(50, "feet")
  10827. },
  10828. {
  10829. name: "Default",
  10830. height: math.unit(200, "feet"),
  10831. default: true
  10832. },
  10833. {
  10834. name: "Loom",
  10835. height: math.unit(10000, "feet")
  10836. },
  10837. {
  10838. name: "Cruising Altitude",
  10839. height: math.unit(30000, "feet")
  10840. },
  10841. {
  10842. name: "Megamacro",
  10843. height: math.unit(100, "miles")
  10844. },
  10845. {
  10846. name: "Continent Sized",
  10847. height: math.unit(2800, "miles")
  10848. },
  10849. {
  10850. name: "Earth Sized",
  10851. height: math.unit(8000, "miles")
  10852. },
  10853. ]
  10854. ))
  10855. characterMakers.push(() => makeCharacter(
  10856. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10857. {
  10858. front: {
  10859. height: math.unit(6, "feet"),
  10860. weight: math.unit(250, "lb"),
  10861. name: "Front",
  10862. image: {
  10863. source: "./media/characters/alexi/front.svg",
  10864. extra: 3483 / 3291,
  10865. bottom: 0.04
  10866. }
  10867. },
  10868. back: {
  10869. height: math.unit(6, "feet"),
  10870. weight: math.unit(250, "lb"),
  10871. name: "Back",
  10872. image: {
  10873. source: "./media/characters/alexi/back.svg",
  10874. extra: 3533 / 3356,
  10875. bottom: 0.021
  10876. }
  10877. },
  10878. frontTransforming: {
  10879. height: math.unit(8.58, "feet"),
  10880. weight: math.unit(1300, "lb"),
  10881. name: "Transforming",
  10882. image: {
  10883. source: "./media/characters/alexi/front-transforming.svg",
  10884. extra: 437 / 409,
  10885. bottom: 19 / 458.66
  10886. }
  10887. },
  10888. frontTransformed: {
  10889. height: math.unit(12.5, "feet"),
  10890. weight: math.unit(4000, "lb"),
  10891. name: "Transformed",
  10892. image: {
  10893. source: "./media/characters/alexi/front-transformed.svg",
  10894. extra: 639 / 614,
  10895. bottom: 30.55 / 671
  10896. }
  10897. },
  10898. },
  10899. [
  10900. {
  10901. name: "Normal",
  10902. height: math.unit(14, "feet"),
  10903. default: true
  10904. },
  10905. {
  10906. name: "Minimacro",
  10907. height: math.unit(30, "meters")
  10908. },
  10909. {
  10910. name: "Macro",
  10911. height: math.unit(500, "meters")
  10912. },
  10913. {
  10914. name: "Megamacro",
  10915. height: math.unit(9000, "km")
  10916. },
  10917. {
  10918. name: "Teramacro",
  10919. height: math.unit(384000, "km")
  10920. },
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10925. {
  10926. front: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(150, "lb"),
  10929. name: "Front",
  10930. image: {
  10931. source: "./media/characters/kayroo/front.svg",
  10932. extra: 1153 / 1038,
  10933. bottom: 0.06
  10934. }
  10935. },
  10936. foot: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(150, "lb"),
  10939. name: "Foot",
  10940. image: {
  10941. source: "./media/characters/kayroo/foot.svg"
  10942. }
  10943. },
  10944. },
  10945. [
  10946. {
  10947. name: "Normal",
  10948. height: math.unit(8, "feet"),
  10949. default: true
  10950. },
  10951. {
  10952. name: "Minimacro",
  10953. height: math.unit(250, "feet")
  10954. },
  10955. {
  10956. name: "Macro",
  10957. height: math.unit(2800, "feet")
  10958. },
  10959. {
  10960. name: "Megamacro",
  10961. height: math.unit(5200, "feet")
  10962. },
  10963. {
  10964. name: "Gigamacro",
  10965. height: math.unit(27000, "feet")
  10966. },
  10967. {
  10968. name: "Omega",
  10969. height: math.unit(45000, "feet")
  10970. },
  10971. ]
  10972. ))
  10973. characterMakers.push(() => makeCharacter(
  10974. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10975. {
  10976. front: {
  10977. height: math.unit(18, "feet"),
  10978. weight: math.unit(5800, "lb"),
  10979. name: "Front",
  10980. image: {
  10981. source: "./media/characters/rhys/front.svg",
  10982. extra: 3386 / 3090,
  10983. bottom: 0.07
  10984. }
  10985. },
  10986. },
  10987. [
  10988. {
  10989. name: "Normal",
  10990. height: math.unit(18, "feet"),
  10991. default: true
  10992. },
  10993. {
  10994. name: "Working Size",
  10995. height: math.unit(200, "feet")
  10996. },
  10997. {
  10998. name: "Demolition Size",
  10999. height: math.unit(2000, "feet")
  11000. },
  11001. {
  11002. name: "Maximum Licensed Size",
  11003. height: math.unit(5, "miles")
  11004. },
  11005. {
  11006. name: "Maximum Observed Size",
  11007. height: math.unit(10, "yottameters")
  11008. },
  11009. ]
  11010. ))
  11011. characterMakers.push(() => makeCharacter(
  11012. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11013. {
  11014. front: {
  11015. height: math.unit(6, "feet"),
  11016. weight: math.unit(250, "lb"),
  11017. name: "Front",
  11018. image: {
  11019. source: "./media/characters/toto/front.svg",
  11020. extra: 527 / 479,
  11021. bottom: 0.05
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Micro",
  11028. height: math.unit(3, "feet")
  11029. },
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(10, "feet")
  11033. },
  11034. {
  11035. name: "Macro",
  11036. height: math.unit(150, "feet"),
  11037. default: true
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(1200, "feet")
  11042. },
  11043. ]
  11044. ))
  11045. characterMakers.push(() => makeCharacter(
  11046. { name: "King", species: ["lion"], tags: ["anthro"] },
  11047. {
  11048. back: {
  11049. height: math.unit(6, "feet"),
  11050. weight: math.unit(150, "lb"),
  11051. name: "Back",
  11052. image: {
  11053. source: "./media/characters/king/back.svg"
  11054. }
  11055. },
  11056. },
  11057. [
  11058. {
  11059. name: "Micro",
  11060. height: math.unit(2, "inches")
  11061. },
  11062. {
  11063. name: "Normal",
  11064. height: math.unit(8, "feet")
  11065. },
  11066. {
  11067. name: "Macro",
  11068. height: math.unit(200, "feet"),
  11069. default: true
  11070. },
  11071. {
  11072. name: "Megamacro",
  11073. height: math.unit(50, "miles")
  11074. },
  11075. ]
  11076. ))
  11077. characterMakers.push(() => makeCharacter(
  11078. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11079. {
  11080. anthro: {
  11081. height: math.unit(6 + 5 / 12, "feet"),
  11082. weight: math.unit(280, "lb"),
  11083. name: "Anthro",
  11084. image: {
  11085. source: "./media/characters/cordite/anthro.svg",
  11086. extra: 1986 / 1905,
  11087. bottom: 0.025
  11088. }
  11089. },
  11090. feral: {
  11091. height: math.unit(2, "feet"),
  11092. weight: math.unit(90, "lb"),
  11093. name: "Feral",
  11094. image: {
  11095. source: "./media/characters/cordite/feral.svg",
  11096. extra: 1260 / 755,
  11097. bottom: 0.05
  11098. }
  11099. },
  11100. },
  11101. [
  11102. {
  11103. name: "Normal",
  11104. height: math.unit(6 + 5 / 12, "feet"),
  11105. default: true
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11111. {
  11112. front: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(150, "lb"),
  11115. name: "Front",
  11116. image: {
  11117. source: "./media/characters/pianostrong/front.svg",
  11118. extra: 6577 / 6254,
  11119. bottom: 0.02
  11120. }
  11121. },
  11122. side: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(150, "lb"),
  11125. name: "Side",
  11126. image: {
  11127. source: "./media/characters/pianostrong/side.svg",
  11128. extra: 6106 / 5730
  11129. }
  11130. },
  11131. back: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(150, "lb"),
  11134. name: "Back",
  11135. image: {
  11136. source: "./media/characters/pianostrong/back.svg",
  11137. extra: 6085 / 5733,
  11138. bottom: 0.01
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Macro",
  11145. height: math.unit(100, "feet")
  11146. },
  11147. {
  11148. name: "Macro+",
  11149. height: math.unit(300, "feet"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Macro++",
  11154. height: math.unit(1000, "feet")
  11155. },
  11156. ]
  11157. ))
  11158. characterMakers.push(() => makeCharacter(
  11159. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11160. {
  11161. front: {
  11162. height: math.unit(6, "feet"),
  11163. weight: math.unit(150, "lb"),
  11164. name: "Front",
  11165. image: {
  11166. source: "./media/characters/kona/front.svg",
  11167. extra: 2960 / 2629,
  11168. bottom: 0.005
  11169. }
  11170. },
  11171. },
  11172. [
  11173. {
  11174. name: "Normal",
  11175. height: math.unit(11 + 8 / 12, "feet")
  11176. },
  11177. {
  11178. name: "Macro",
  11179. height: math.unit(850, "feet"),
  11180. default: true
  11181. },
  11182. {
  11183. name: "Macro+",
  11184. height: math.unit(1.5, "km"),
  11185. default: true
  11186. },
  11187. {
  11188. name: "Megamacro",
  11189. height: math.unit(80, "miles")
  11190. },
  11191. {
  11192. name: "Gigamacro",
  11193. height: math.unit(3500, "miles")
  11194. },
  11195. ]
  11196. ))
  11197. characterMakers.push(() => makeCharacter(
  11198. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11199. {
  11200. side: {
  11201. height: math.unit(1.9, "meters"),
  11202. weight: math.unit(326, "kg"),
  11203. name: "Side",
  11204. image: {
  11205. source: "./media/characters/levi/side.svg",
  11206. extra: 1704 / 1334,
  11207. bottom: 0.02
  11208. }
  11209. },
  11210. },
  11211. [
  11212. {
  11213. name: "Normal",
  11214. height: math.unit(1.9, "meters"),
  11215. default: true
  11216. },
  11217. {
  11218. name: "Macro",
  11219. height: math.unit(20, "meters")
  11220. },
  11221. {
  11222. name: "Macro+",
  11223. height: math.unit(200, "meters")
  11224. },
  11225. {
  11226. name: "Megamacro",
  11227. height: math.unit(2, "km")
  11228. },
  11229. {
  11230. name: "Megamacro+",
  11231. height: math.unit(20, "km")
  11232. },
  11233. {
  11234. name: "Gigamacro",
  11235. height: math.unit(2500, "km")
  11236. },
  11237. {
  11238. name: "Gigamacro+",
  11239. height: math.unit(120000, "km")
  11240. },
  11241. {
  11242. name: "Teramacro",
  11243. height: math.unit(7.77e6, "km")
  11244. },
  11245. ]
  11246. ))
  11247. characterMakers.push(() => makeCharacter(
  11248. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11249. {
  11250. front: {
  11251. height: math.unit(6 + 4/12, "feet"),
  11252. weight: math.unit(190, "lb"),
  11253. name: "Front",
  11254. image: {
  11255. source: "./media/characters/bmc/front.svg",
  11256. extra: 1626/1472,
  11257. bottom: 79/1705
  11258. }
  11259. },
  11260. back: {
  11261. height: math.unit(6 + 4/12, "feet"),
  11262. weight: math.unit(190, "lb"),
  11263. name: "Back",
  11264. image: {
  11265. source: "./media/characters/bmc/back.svg",
  11266. extra: 1640/1479,
  11267. bottom: 45/1685
  11268. }
  11269. },
  11270. frontArmor: {
  11271. height: math.unit(6 + 4/12, "feet"),
  11272. weight: math.unit(190, "lb"),
  11273. name: "Front-armor",
  11274. image: {
  11275. source: "./media/characters/bmc/front-armor.svg",
  11276. extra: 1538/1468,
  11277. bottom: 79/1617
  11278. }
  11279. },
  11280. },
  11281. [
  11282. {
  11283. name: "Human-sized",
  11284. height: math.unit(6 + 4 / 12, "feet")
  11285. },
  11286. {
  11287. name: "Interactive Size",
  11288. height: math.unit(25, "feet")
  11289. },
  11290. {
  11291. name: "Small",
  11292. height: math.unit(250, "feet")
  11293. },
  11294. {
  11295. name: "Normal",
  11296. height: math.unit(1250, "feet"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Good Day",
  11301. height: math.unit(88, "miles")
  11302. },
  11303. {
  11304. name: "Largest Measured Size",
  11305. height: math.unit(105.960, "galaxies")
  11306. },
  11307. ]
  11308. ))
  11309. characterMakers.push(() => makeCharacter(
  11310. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11311. {
  11312. front: {
  11313. height: math.unit(20, "feet"),
  11314. weight: math.unit(2016, "kg"),
  11315. name: "Front",
  11316. image: {
  11317. source: "./media/characters/sven-the-kaiju/front.svg",
  11318. extra: 1277/1250,
  11319. bottom: 35/1312
  11320. }
  11321. },
  11322. mouth: {
  11323. height: math.unit(1.85, "feet"),
  11324. name: "Mouth",
  11325. image: {
  11326. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11327. }
  11328. },
  11329. },
  11330. [
  11331. {
  11332. name: "Fairy",
  11333. height: math.unit(6, "inches")
  11334. },
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(20, "feet"),
  11338. default: true
  11339. },
  11340. {
  11341. name: "Rampage",
  11342. height: math.unit(200, "feet")
  11343. },
  11344. {
  11345. name: "Archfey Forest Guardian",
  11346. height: math.unit(1, "mile")
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11352. {
  11353. front: {
  11354. height: math.unit(4, "meters"),
  11355. weight: math.unit(2, "tons"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/marik/front.svg",
  11359. extra: 1057 / 1003,
  11360. bottom: 0.08
  11361. }
  11362. },
  11363. },
  11364. [
  11365. {
  11366. name: "Normal",
  11367. height: math.unit(4, "meters"),
  11368. default: true
  11369. },
  11370. {
  11371. name: "Macro",
  11372. height: math.unit(20, "meters")
  11373. },
  11374. {
  11375. name: "Megamacro",
  11376. height: math.unit(50, "km")
  11377. },
  11378. {
  11379. name: "Gigamacro",
  11380. height: math.unit(100, "km")
  11381. },
  11382. {
  11383. name: "Alpha Macro",
  11384. height: math.unit(7.88e7, "yottameters")
  11385. },
  11386. ]
  11387. ))
  11388. characterMakers.push(() => makeCharacter(
  11389. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11390. {
  11391. front: {
  11392. height: math.unit(6, "feet"),
  11393. weight: math.unit(110, "lb"),
  11394. name: "Front",
  11395. image: {
  11396. source: "./media/characters/mel/front.svg",
  11397. extra: 736 / 617,
  11398. bottom: 0.017
  11399. }
  11400. },
  11401. },
  11402. [
  11403. {
  11404. name: "Pico",
  11405. height: math.unit(3, "pm")
  11406. },
  11407. {
  11408. name: "Nano",
  11409. height: math.unit(3, "nm")
  11410. },
  11411. {
  11412. name: "Micro",
  11413. height: math.unit(0.3, "mm"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Micro+",
  11418. height: math.unit(3, "mm")
  11419. },
  11420. {
  11421. name: "Normal",
  11422. height: math.unit(5 + 10.5 / 12, "feet")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11428. {
  11429. kaiju: {
  11430. height: math.unit(1.75, "meters"),
  11431. weight: math.unit(55, "kg"),
  11432. name: "Kaiju",
  11433. image: {
  11434. source: "./media/characters/lykonous/kaiju.svg",
  11435. extra: 1055 / 946,
  11436. bottom: 0.135
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Normal",
  11443. height: math.unit(2.5, "meters"),
  11444. default: true
  11445. },
  11446. {
  11447. name: "Kaiju Dragon",
  11448. height: math.unit(60, "meters")
  11449. },
  11450. {
  11451. name: "Mega Kaiju",
  11452. height: math.unit(120, "km")
  11453. },
  11454. {
  11455. name: "Giga Kaiju",
  11456. height: math.unit(200, "megameters")
  11457. },
  11458. {
  11459. name: "Terra Kaiju",
  11460. height: math.unit(400, "gigameters")
  11461. },
  11462. {
  11463. name: "Kaiju Dragon God",
  11464. height: math.unit(13000, "exaparsecs")
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(6, "feet"),
  11473. weight: math.unit(150, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/blü/front.svg",
  11477. extra: 1883 / 1564,
  11478. bottom: 0.031
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(13, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Big Boi",
  11490. height: math.unit(150, "meters")
  11491. },
  11492. {
  11493. name: "Mini Stomper",
  11494. height: math.unit(300, "meters")
  11495. },
  11496. {
  11497. name: "Macro",
  11498. height: math.unit(1000, "meters")
  11499. },
  11500. {
  11501. name: "Megamacro",
  11502. height: math.unit(11000, "meters")
  11503. },
  11504. {
  11505. name: "Gigamacro",
  11506. height: math.unit(11000, "km")
  11507. },
  11508. {
  11509. name: "Teramacro",
  11510. height: math.unit(420000, "km")
  11511. },
  11512. {
  11513. name: "Examacro",
  11514. height: math.unit(120, "parsecs")
  11515. },
  11516. {
  11517. name: "God Tho",
  11518. height: math.unit(98000000000, "parsecs")
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11524. {
  11525. taurFront: {
  11526. height: math.unit(6, "feet"),
  11527. weight: math.unit(200, "lb"),
  11528. name: "Taur (Front)",
  11529. image: {
  11530. source: "./media/characters/scales/taur-front.svg",
  11531. extra: 1,
  11532. bottom: 0.05
  11533. }
  11534. },
  11535. taurBack: {
  11536. height: math.unit(6, "feet"),
  11537. weight: math.unit(200, "lb"),
  11538. name: "Taur (Back)",
  11539. image: {
  11540. source: "./media/characters/scales/taur-back.svg",
  11541. extra: 1,
  11542. bottom: 0.08
  11543. }
  11544. },
  11545. anthro: {
  11546. height: math.unit(6 * 7 / 12, "feet"),
  11547. weight: math.unit(100, "lb"),
  11548. name: "Anthro",
  11549. image: {
  11550. source: "./media/characters/scales/anthro.svg",
  11551. extra: 1,
  11552. bottom: 0.06
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Normal",
  11559. height: math.unit(12, "feet"),
  11560. default: true
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(6, "feet"),
  11569. weight: math.unit(150, "lb"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/koragos/front.svg",
  11573. extra: 841 / 794,
  11574. bottom: 0.035
  11575. }
  11576. },
  11577. back: {
  11578. height: math.unit(6, "feet"),
  11579. weight: math.unit(150, "lb"),
  11580. name: "Back",
  11581. image: {
  11582. source: "./media/characters/koragos/back.svg",
  11583. extra: 841 / 810,
  11584. bottom: 0.022
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(6 + 11 / 12, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(490, "feet")
  11597. },
  11598. {
  11599. name: "Megamacro",
  11600. height: math.unit(10, "miles")
  11601. },
  11602. {
  11603. name: "Gigamacro",
  11604. height: math.unit(50, "miles")
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11610. {
  11611. front: {
  11612. height: math.unit(6, "feet"),
  11613. weight: math.unit(250, "lb"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/xylrem/front.svg",
  11617. extra: 3323 / 3050,
  11618. bottom: 0.065
  11619. }
  11620. },
  11621. },
  11622. [
  11623. {
  11624. name: "Micro",
  11625. height: math.unit(4, "feet")
  11626. },
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(16, "feet"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Macro",
  11634. height: math.unit(2720, "feet")
  11635. },
  11636. {
  11637. name: "Megamacro",
  11638. height: math.unit(25000, "miles")
  11639. },
  11640. ]
  11641. ))
  11642. characterMakers.push(() => makeCharacter(
  11643. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11644. {
  11645. front: {
  11646. height: math.unit(8, "feet"),
  11647. weight: math.unit(250, "kg"),
  11648. name: "Front",
  11649. image: {
  11650. source: "./media/characters/ikideru/front.svg",
  11651. extra: 930 / 870,
  11652. bottom: 0.087
  11653. }
  11654. },
  11655. back: {
  11656. height: math.unit(8, "feet"),
  11657. weight: math.unit(250, "kg"),
  11658. name: "Back",
  11659. image: {
  11660. source: "./media/characters/ikideru/back.svg",
  11661. extra: 919 / 852,
  11662. bottom: 0.055
  11663. }
  11664. },
  11665. },
  11666. [
  11667. {
  11668. name: "Rare",
  11669. height: math.unit(8, "feet"),
  11670. default: true
  11671. },
  11672. {
  11673. name: "Playful Loom",
  11674. height: math.unit(80, "feet")
  11675. },
  11676. {
  11677. name: "City Leaner",
  11678. height: math.unit(230, "feet")
  11679. },
  11680. {
  11681. name: "Megamacro",
  11682. height: math.unit(2500, "feet")
  11683. },
  11684. {
  11685. name: "Gigamacro",
  11686. height: math.unit(26400, "feet")
  11687. },
  11688. {
  11689. name: "Tectonic Shifter",
  11690. height: math.unit(1.7, "megameters")
  11691. },
  11692. {
  11693. name: "Planet Carer",
  11694. height: math.unit(21, "megameters")
  11695. },
  11696. {
  11697. name: "God",
  11698. height: math.unit(11157.22, "parsecs")
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(6, "feet"),
  11707. weight: math.unit(120, "lb"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/neo/front.svg"
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Micro",
  11717. height: math.unit(2, "inches"),
  11718. default: true
  11719. },
  11720. {
  11721. name: "Human Size",
  11722. height: math.unit(5 + 8 / 12, "feet")
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(13 + 10 / 12, "feet"),
  11731. weight: math.unit(5320, "lb"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/chauncey-chantz/front.svg",
  11735. extra: 1587 / 1435,
  11736. bottom: 0.02
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(13 + 10 / 12, "feet"),
  11744. default: true
  11745. },
  11746. {
  11747. name: "Macro",
  11748. height: math.unit(45, "feet")
  11749. },
  11750. {
  11751. name: "Megamacro",
  11752. height: math.unit(250, "miles")
  11753. },
  11754. {
  11755. name: "Planetary",
  11756. height: math.unit(10000, "miles")
  11757. },
  11758. {
  11759. name: "Galactic",
  11760. height: math.unit(40000, "parsecs")
  11761. },
  11762. {
  11763. name: "Universal",
  11764. height: math.unit(1, "yottameter")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11770. {
  11771. front: {
  11772. height: math.unit(6, "feet"),
  11773. weight: math.unit(150, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/epifox/front.svg",
  11777. extra: 1,
  11778. bottom: 0.075
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Micro",
  11785. height: math.unit(6, "inches")
  11786. },
  11787. {
  11788. name: "Normal",
  11789. height: math.unit(12, "feet"),
  11790. default: true
  11791. },
  11792. {
  11793. name: "Macro",
  11794. height: math.unit(3810, "feet")
  11795. },
  11796. {
  11797. name: "Megamacro",
  11798. height: math.unit(500, "miles")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(1.8796, "m"),
  11807. weight: math.unit(230, "lb"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/colin-t/front.svg",
  11811. extra: 1272 / 1193,
  11812. bottom: 0.07
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Micro",
  11819. height: math.unit(0.571, "meters")
  11820. },
  11821. {
  11822. name: "Normal",
  11823. height: math.unit(1.8796, "meters"),
  11824. default: true
  11825. },
  11826. {
  11827. name: "Tall",
  11828. height: math.unit(4, "meters")
  11829. },
  11830. {
  11831. name: "Macro",
  11832. height: math.unit(67.241, "meters")
  11833. },
  11834. {
  11835. name: "Megamacro",
  11836. height: math.unit(371.856, "meters")
  11837. },
  11838. {
  11839. name: "Planetary",
  11840. height: math.unit(12631.5689, "km")
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(1.85, "meters"),
  11849. weight: math.unit(80, "kg"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/matvei/front.svg",
  11853. extra: 614 / 594,
  11854. bottom: 0.01
  11855. }
  11856. },
  11857. },
  11858. [
  11859. {
  11860. name: "Normal",
  11861. height: math.unit(1.85, "meters"),
  11862. default: true
  11863. },
  11864. ]
  11865. ))
  11866. characterMakers.push(() => makeCharacter(
  11867. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11868. {
  11869. front: {
  11870. height: math.unit(5 + 9 / 12, "feet"),
  11871. weight: math.unit(70, "lb"),
  11872. name: "Front",
  11873. image: {
  11874. source: "./media/characters/quincy/front.svg",
  11875. extra: 3041 / 2751
  11876. }
  11877. },
  11878. back: {
  11879. height: math.unit(5 + 9 / 12, "feet"),
  11880. weight: math.unit(70, "lb"),
  11881. name: "Back",
  11882. image: {
  11883. source: "./media/characters/quincy/back.svg",
  11884. extra: 3041 / 2751
  11885. }
  11886. },
  11887. flying: {
  11888. height: math.unit(5 + 4 / 12, "feet"),
  11889. weight: math.unit(70, "lb"),
  11890. name: "Flying",
  11891. image: {
  11892. source: "./media/characters/quincy/flying.svg",
  11893. extra: 1044 / 930
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Micro",
  11900. height: math.unit(3, "cm")
  11901. },
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(5 + 9 / 12, "feet")
  11905. },
  11906. {
  11907. name: "Macro",
  11908. height: math.unit(200, "meters"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Megamacro",
  11913. height: math.unit(1000, "meters")
  11914. },
  11915. ]
  11916. ))
  11917. characterMakers.push(() => makeCharacter(
  11918. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11919. {
  11920. front: {
  11921. height: math.unit(3 + 11/12, "feet"),
  11922. weight: math.unit(50, "lb"),
  11923. name: "Front",
  11924. image: {
  11925. source: "./media/characters/vanrel/front.svg",
  11926. extra: 1104/949,
  11927. bottom: 52/1156
  11928. }
  11929. },
  11930. back: {
  11931. height: math.unit(3 + 11/12, "feet"),
  11932. weight: math.unit(50, "lb"),
  11933. name: "Back",
  11934. image: {
  11935. source: "./media/characters/vanrel/back.svg",
  11936. extra: 1119/976,
  11937. bottom: 37/1156
  11938. }
  11939. },
  11940. tome: {
  11941. height: math.unit(1.35, "feet"),
  11942. weight: math.unit(10, "lb"),
  11943. name: "Vanrel's Tome",
  11944. rename: true,
  11945. image: {
  11946. source: "./media/characters/vanrel/tome.svg"
  11947. }
  11948. },
  11949. beans: {
  11950. height: math.unit(0.89, "feet"),
  11951. name: "Beans",
  11952. image: {
  11953. source: "./media/characters/vanrel/beans.svg"
  11954. }
  11955. },
  11956. },
  11957. [
  11958. {
  11959. name: "Normal",
  11960. height: math.unit(3 + 11/12, "feet"),
  11961. default: true
  11962. },
  11963. ]
  11964. ))
  11965. characterMakers.push(() => makeCharacter(
  11966. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11967. {
  11968. front: {
  11969. height: math.unit(7 + 5 / 12, "feet"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/kuiper-vanrel/front.svg",
  11973. extra: 1219/1169,
  11974. bottom: 69/1288
  11975. }
  11976. },
  11977. back: {
  11978. height: math.unit(7 + 5 / 12, "feet"),
  11979. name: "Back",
  11980. image: {
  11981. source: "./media/characters/kuiper-vanrel/back.svg",
  11982. extra: 1236/1193,
  11983. bottom: 27/1263
  11984. }
  11985. },
  11986. foot: {
  11987. height: math.unit(0.55, "meters"),
  11988. name: "Foot",
  11989. image: {
  11990. source: "./media/characters/kuiper-vanrel/foot.svg",
  11991. }
  11992. },
  11993. battle: {
  11994. height: math.unit(6.824, "feet"),
  11995. name: "Battle",
  11996. image: {
  11997. source: "./media/characters/kuiper-vanrel/battle.svg",
  11998. extra: 1466 / 1327,
  11999. bottom: 29 / 1492.5
  12000. }
  12001. },
  12002. meerkui: {
  12003. height: math.unit(18, "inches"),
  12004. name: "Meerkui",
  12005. image: {
  12006. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12007. extra: 1354/1289,
  12008. bottom: 69/1423
  12009. }
  12010. },
  12011. },
  12012. [
  12013. {
  12014. name: "Normal",
  12015. height: math.unit(7 + 5 / 12, "feet"),
  12016. default: true
  12017. },
  12018. ]
  12019. ))
  12020. characterMakers.push(() => makeCharacter(
  12021. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12022. {
  12023. front: {
  12024. height: math.unit(8 + 5 / 12, "feet"),
  12025. name: "Front",
  12026. image: {
  12027. source: "./media/characters/keset-vanrel/front.svg",
  12028. extra: 1231/1148,
  12029. bottom: 82/1313
  12030. }
  12031. },
  12032. back: {
  12033. height: math.unit(8 + 5 / 12, "feet"),
  12034. name: "Back",
  12035. image: {
  12036. source: "./media/characters/keset-vanrel/back.svg",
  12037. extra: 1240/1174,
  12038. bottom: 33/1273
  12039. }
  12040. },
  12041. hand: {
  12042. height: math.unit(0.6, "meters"),
  12043. name: "Hand",
  12044. image: {
  12045. source: "./media/characters/keset-vanrel/hand.svg"
  12046. }
  12047. },
  12048. foot: {
  12049. height: math.unit(0.94978, "meters"),
  12050. name: "Foot",
  12051. image: {
  12052. source: "./media/characters/keset-vanrel/foot.svg"
  12053. }
  12054. },
  12055. battle: {
  12056. height: math.unit(7.408, "feet"),
  12057. name: "Battle",
  12058. image: {
  12059. source: "./media/characters/keset-vanrel/battle.svg",
  12060. extra: 1890 / 1386,
  12061. bottom: 73.28 / 1970
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Normal",
  12068. height: math.unit(8 + 5 / 12, "feet"),
  12069. default: true
  12070. },
  12071. ]
  12072. ))
  12073. characterMakers.push(() => makeCharacter(
  12074. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12075. {
  12076. front: {
  12077. height: math.unit(6, "feet"),
  12078. weight: math.unit(150, "lb"),
  12079. name: "Front",
  12080. image: {
  12081. source: "./media/characters/neos/front.svg",
  12082. extra: 1696 / 992,
  12083. bottom: 0.14
  12084. }
  12085. },
  12086. },
  12087. [
  12088. {
  12089. name: "Normal",
  12090. height: math.unit(54, "cm"),
  12091. default: true
  12092. },
  12093. {
  12094. name: "Macro",
  12095. height: math.unit(100, "m")
  12096. },
  12097. {
  12098. name: "Megamacro",
  12099. height: math.unit(10, "km")
  12100. },
  12101. {
  12102. name: "Megamacro+",
  12103. height: math.unit(100, "km")
  12104. },
  12105. {
  12106. name: "Gigamacro",
  12107. height: math.unit(100, "Mm")
  12108. },
  12109. {
  12110. name: "Teramacro",
  12111. height: math.unit(100, "Gm")
  12112. },
  12113. {
  12114. name: "Examacro",
  12115. height: math.unit(100, "Em")
  12116. },
  12117. {
  12118. name: "Godly",
  12119. height: math.unit(10000, "Ym")
  12120. },
  12121. {
  12122. name: "Beyond Godly",
  12123. height: math.unit(25, "multiverses")
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12129. {
  12130. feminine: {
  12131. height: math.unit(5, "feet"),
  12132. weight: math.unit(100, "lb"),
  12133. name: "Feminine",
  12134. image: {
  12135. source: "./media/characters/sammy-mouse/feminine.svg",
  12136. extra: 2526 / 2425,
  12137. bottom: 0.123
  12138. }
  12139. },
  12140. masculine: {
  12141. height: math.unit(5, "feet"),
  12142. weight: math.unit(100, "lb"),
  12143. name: "Masculine",
  12144. image: {
  12145. source: "./media/characters/sammy-mouse/masculine.svg",
  12146. extra: 2526 / 2425,
  12147. bottom: 0.123
  12148. }
  12149. },
  12150. },
  12151. [
  12152. {
  12153. name: "Micro",
  12154. height: math.unit(5, "inches")
  12155. },
  12156. {
  12157. name: "Normal",
  12158. height: math.unit(5, "feet"),
  12159. default: true
  12160. },
  12161. {
  12162. name: "Macro",
  12163. height: math.unit(60, "feet")
  12164. },
  12165. ]
  12166. ))
  12167. characterMakers.push(() => makeCharacter(
  12168. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12169. {
  12170. front: {
  12171. height: math.unit(4, "feet"),
  12172. weight: math.unit(50, "lb"),
  12173. name: "Front",
  12174. image: {
  12175. source: "./media/characters/kole/front.svg",
  12176. extra: 1423 / 1303,
  12177. bottom: 0.025
  12178. }
  12179. },
  12180. back: {
  12181. height: math.unit(4, "feet"),
  12182. weight: math.unit(50, "lb"),
  12183. name: "Back",
  12184. image: {
  12185. source: "./media/characters/kole/back.svg",
  12186. extra: 1426 / 1280,
  12187. bottom: 0.02
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(4, "feet"),
  12195. default: true
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12201. {
  12202. front: {
  12203. height: math.unit(2.5, "feet"),
  12204. weight: math.unit(32, "lb"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/rufran/front.svg",
  12208. extra: 1313/885,
  12209. bottom: 94/1407
  12210. }
  12211. },
  12212. side: {
  12213. height: math.unit(2.5, "feet"),
  12214. weight: math.unit(32, "lb"),
  12215. name: "Side",
  12216. image: {
  12217. source: "./media/characters/rufran/side.svg",
  12218. extra: 1109/852,
  12219. bottom: 118/1227
  12220. }
  12221. },
  12222. back: {
  12223. height: math.unit(2.5, "feet"),
  12224. weight: math.unit(32, "lb"),
  12225. name: "Back",
  12226. image: {
  12227. source: "./media/characters/rufran/back.svg",
  12228. extra: 1280/878,
  12229. bottom: 131/1411
  12230. }
  12231. },
  12232. mouth: {
  12233. height: math.unit(1.13, "feet"),
  12234. name: "Mouth",
  12235. image: {
  12236. source: "./media/characters/rufran/mouth.svg"
  12237. }
  12238. },
  12239. foot: {
  12240. height: math.unit(1.33, "feet"),
  12241. name: "Foot",
  12242. image: {
  12243. source: "./media/characters/rufran/foot.svg"
  12244. }
  12245. },
  12246. koboldFront: {
  12247. height: math.unit(2 + 6 / 12, "feet"),
  12248. weight: math.unit(20, "lb"),
  12249. name: "Front (Kobold)",
  12250. image: {
  12251. source: "./media/characters/rufran/kobold-front.svg",
  12252. extra: 2041 / 1839,
  12253. bottom: 0.055
  12254. }
  12255. },
  12256. koboldBack: {
  12257. height: math.unit(2 + 6 / 12, "feet"),
  12258. weight: math.unit(20, "lb"),
  12259. name: "Back (Kobold)",
  12260. image: {
  12261. source: "./media/characters/rufran/kobold-back.svg",
  12262. extra: 2054 / 1839,
  12263. bottom: 0.01
  12264. }
  12265. },
  12266. koboldHand: {
  12267. height: math.unit(0.2166, "meters"),
  12268. name: "Hand (Kobold)",
  12269. image: {
  12270. source: "./media/characters/rufran/kobold-hand.svg"
  12271. }
  12272. },
  12273. koboldFoot: {
  12274. height: math.unit(0.185, "meters"),
  12275. name: "Foot (Kobold)",
  12276. image: {
  12277. source: "./media/characters/rufran/kobold-foot.svg"
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Micro",
  12284. height: math.unit(1, "inch")
  12285. },
  12286. {
  12287. name: "Normal",
  12288. height: math.unit(2 + 6 / 12, "feet"),
  12289. default: true
  12290. },
  12291. {
  12292. name: "Big",
  12293. height: math.unit(60, "feet")
  12294. },
  12295. {
  12296. name: "Macro",
  12297. height: math.unit(325, "feet")
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12303. {
  12304. front: {
  12305. height: math.unit(0.3, "meters"),
  12306. weight: math.unit(3.5, "kg"),
  12307. name: "Front",
  12308. image: {
  12309. source: "./media/characters/chip/front.svg",
  12310. extra: 748 / 674
  12311. }
  12312. },
  12313. },
  12314. [
  12315. {
  12316. name: "Micro",
  12317. height: math.unit(1, "inch"),
  12318. default: true
  12319. },
  12320. ]
  12321. ))
  12322. characterMakers.push(() => makeCharacter(
  12323. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12324. {
  12325. side: {
  12326. height: math.unit(2.3, "meters"),
  12327. weight: math.unit(3500, "lb"),
  12328. name: "Side",
  12329. image: {
  12330. source: "./media/characters/torvid/side.svg",
  12331. extra: 1972 / 722,
  12332. bottom: 0.035
  12333. }
  12334. },
  12335. },
  12336. [
  12337. {
  12338. name: "Normal",
  12339. height: math.unit(2.3, "meters"),
  12340. default: true
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12346. {
  12347. front: {
  12348. height: math.unit(2, "meters"),
  12349. weight: math.unit(150.5, "kg"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/susan/front.svg",
  12353. extra: 693 / 635,
  12354. bottom: 0.05
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Megamacro",
  12361. height: math.unit(505, "miles"),
  12362. default: true
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12368. {
  12369. front: {
  12370. height: math.unit(6, "feet"),
  12371. weight: math.unit(150, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/raindrops/front.svg",
  12375. extra: 2655 / 2461,
  12376. bottom: 49 / 2705
  12377. }
  12378. },
  12379. back: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(150, "lb"),
  12382. name: "Back",
  12383. image: {
  12384. source: "./media/characters/raindrops/back.svg",
  12385. extra: 2574 / 2400,
  12386. bottom: 65 / 2634
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Micro",
  12393. height: math.unit(6, "inches")
  12394. },
  12395. {
  12396. name: "Normal",
  12397. height: math.unit(6 + 2 / 12, "feet")
  12398. },
  12399. {
  12400. name: "Macro",
  12401. height: math.unit(131, "feet"),
  12402. default: true
  12403. },
  12404. {
  12405. name: "Megamacro",
  12406. height: math.unit(15, "miles")
  12407. },
  12408. {
  12409. name: "Gigamacro",
  12410. height: math.unit(4000, "miles")
  12411. },
  12412. {
  12413. name: "Teramacro",
  12414. height: math.unit(315000, "miles")
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(2.794, "meters"),
  12423. weight: math.unit(325, "kg"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/tezwa/front.svg",
  12427. extra: 2083 / 1906,
  12428. bottom: 0.031
  12429. }
  12430. },
  12431. foot: {
  12432. height: math.unit(0.687, "meters"),
  12433. name: "Foot",
  12434. image: {
  12435. source: "./media/characters/tezwa/foot.svg"
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Normal",
  12442. height: math.unit(9 + 2 / 12, "feet"),
  12443. default: true
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12449. {
  12450. front: {
  12451. height: math.unit(58, "feet"),
  12452. weight: math.unit(89000, "lb"),
  12453. name: "Front",
  12454. image: {
  12455. source: "./media/characters/typhus/front.svg",
  12456. extra: 816 / 800,
  12457. bottom: 0.065
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Macro",
  12464. height: math.unit(58, "feet"),
  12465. default: true
  12466. },
  12467. ]
  12468. ))
  12469. characterMakers.push(() => makeCharacter(
  12470. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12471. {
  12472. front: {
  12473. height: math.unit(12, "feet"),
  12474. weight: math.unit(6, "tonnes"),
  12475. name: "Front",
  12476. image: {
  12477. source: "./media/characters/lyra-von-wulf/front.svg",
  12478. extra: 1,
  12479. bottom: 0.10
  12480. }
  12481. },
  12482. frontMecha: {
  12483. height: math.unit(12, "feet"),
  12484. weight: math.unit(12, "tonnes"),
  12485. name: "Front (Mecha)",
  12486. image: {
  12487. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12488. extra: 1,
  12489. bottom: 0.042
  12490. }
  12491. },
  12492. maw: {
  12493. height: math.unit(2.2, "feet"),
  12494. name: "Maw",
  12495. image: {
  12496. source: "./media/characters/lyra-von-wulf/maw.svg"
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(12, "feet"),
  12504. default: true
  12505. },
  12506. {
  12507. name: "Classic",
  12508. height: math.unit(50, "feet")
  12509. },
  12510. {
  12511. name: "Macro",
  12512. height: math.unit(500, "feet")
  12513. },
  12514. {
  12515. name: "Megamacro",
  12516. height: math.unit(1, "mile")
  12517. },
  12518. {
  12519. name: "Gigamacro",
  12520. height: math.unit(400, "miles")
  12521. },
  12522. {
  12523. name: "Teramacro",
  12524. height: math.unit(22000, "miles")
  12525. },
  12526. {
  12527. name: "Solarmacro",
  12528. height: math.unit(8600000, "miles")
  12529. },
  12530. {
  12531. name: "Galactic",
  12532. height: math.unit(1057000, "lightyears")
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12538. {
  12539. front: {
  12540. height: math.unit(6 + 10 / 12, "feet"),
  12541. weight: math.unit(150, "lb"),
  12542. name: "Front",
  12543. image: {
  12544. source: "./media/characters/dixon/front.svg",
  12545. extra: 3361 / 3209,
  12546. bottom: 0.01
  12547. }
  12548. },
  12549. },
  12550. [
  12551. {
  12552. name: "Normal",
  12553. height: math.unit(6 + 10 / 12, "feet"),
  12554. default: true
  12555. },
  12556. {
  12557. name: "Big",
  12558. height: math.unit(12, "meters")
  12559. },
  12560. {
  12561. name: "Macro",
  12562. height: math.unit(500, "meters")
  12563. },
  12564. {
  12565. name: "Megamacro",
  12566. height: math.unit(2, "km")
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(185, "cm"),
  12575. weight: math.unit(68, "kg"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/kauko/front.svg",
  12579. extra: 1455 / 1421,
  12580. bottom: 0.03
  12581. }
  12582. },
  12583. back: {
  12584. height: math.unit(185, "cm"),
  12585. weight: math.unit(68, "kg"),
  12586. name: "Back",
  12587. image: {
  12588. source: "./media/characters/kauko/back.svg",
  12589. extra: 1455 / 1421,
  12590. bottom: 0.004
  12591. }
  12592. },
  12593. },
  12594. [
  12595. {
  12596. name: "Normal",
  12597. height: math.unit(185, "cm"),
  12598. default: true
  12599. },
  12600. ]
  12601. ))
  12602. characterMakers.push(() => makeCharacter(
  12603. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12604. {
  12605. front: {
  12606. height: math.unit(6, "feet"),
  12607. weight: math.unit(150, "kg"),
  12608. name: "Front",
  12609. image: {
  12610. source: "./media/characters/varg/front.svg",
  12611. extra: 1108 / 1018,
  12612. bottom: 0.0375
  12613. }
  12614. },
  12615. },
  12616. [
  12617. {
  12618. name: "Normal",
  12619. height: math.unit(5, "meters")
  12620. },
  12621. {
  12622. name: "Macro",
  12623. height: math.unit(200, "meters")
  12624. },
  12625. {
  12626. name: "Megamacro",
  12627. height: math.unit(20, "kilometers")
  12628. },
  12629. {
  12630. name: "True Size",
  12631. height: math.unit(211, "km"),
  12632. default: true
  12633. },
  12634. {
  12635. name: "Gigamacro",
  12636. height: math.unit(1000, "km")
  12637. },
  12638. {
  12639. name: "Gigamacro+",
  12640. height: math.unit(8000, "km")
  12641. },
  12642. {
  12643. name: "Teramacro",
  12644. height: math.unit(1000000, "km")
  12645. },
  12646. ]
  12647. ))
  12648. characterMakers.push(() => makeCharacter(
  12649. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12650. {
  12651. front: {
  12652. height: math.unit(7 + 7 / 12, "feet"),
  12653. weight: math.unit(267, "lb"),
  12654. name: "Front",
  12655. image: {
  12656. source: "./media/characters/dayza/front.svg",
  12657. extra: 1262 / 1200,
  12658. bottom: 0.035
  12659. }
  12660. },
  12661. side: {
  12662. height: math.unit(7 + 7 / 12, "feet"),
  12663. weight: math.unit(267, "lb"),
  12664. name: "Side",
  12665. image: {
  12666. source: "./media/characters/dayza/side.svg",
  12667. extra: 1295 / 1245,
  12668. bottom: 0.05
  12669. }
  12670. },
  12671. back: {
  12672. height: math.unit(7 + 7 / 12, "feet"),
  12673. weight: math.unit(267, "lb"),
  12674. name: "Back",
  12675. image: {
  12676. source: "./media/characters/dayza/back.svg",
  12677. extra: 1241 / 1170
  12678. }
  12679. },
  12680. },
  12681. [
  12682. {
  12683. name: "Normal",
  12684. height: math.unit(7 + 7 / 12, "feet"),
  12685. default: true
  12686. },
  12687. {
  12688. name: "Macro",
  12689. height: math.unit(155, "feet")
  12690. },
  12691. ]
  12692. ))
  12693. characterMakers.push(() => makeCharacter(
  12694. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12695. {
  12696. front: {
  12697. height: math.unit(6 + 5 / 12, "feet"),
  12698. weight: math.unit(160, "lb"),
  12699. name: "Front",
  12700. image: {
  12701. source: "./media/characters/xanthos/front.svg",
  12702. extra: 1,
  12703. bottom: 0.04
  12704. }
  12705. },
  12706. back: {
  12707. height: math.unit(6 + 5 / 12, "feet"),
  12708. weight: math.unit(160, "lb"),
  12709. name: "Back",
  12710. image: {
  12711. source: "./media/characters/xanthos/back.svg",
  12712. extra: 1,
  12713. bottom: 0.03
  12714. }
  12715. },
  12716. hand: {
  12717. height: math.unit(0.928, "feet"),
  12718. name: "Hand",
  12719. image: {
  12720. source: "./media/characters/xanthos/hand.svg"
  12721. }
  12722. },
  12723. foot: {
  12724. height: math.unit(1.286, "feet"),
  12725. name: "Foot",
  12726. image: {
  12727. source: "./media/characters/xanthos/foot.svg"
  12728. }
  12729. },
  12730. },
  12731. [
  12732. {
  12733. name: "Normal",
  12734. height: math.unit(6 + 5 / 12, "feet"),
  12735. default: true
  12736. },
  12737. {
  12738. name: "Normal+",
  12739. height: math.unit(6, "meters")
  12740. },
  12741. {
  12742. name: "Macro",
  12743. height: math.unit(40, "feet")
  12744. },
  12745. {
  12746. name: "Macro+",
  12747. height: math.unit(200, "meters")
  12748. },
  12749. {
  12750. name: "Megamacro",
  12751. height: math.unit(20, "km")
  12752. },
  12753. {
  12754. name: "Megamacro+",
  12755. height: math.unit(100, "km")
  12756. },
  12757. {
  12758. name: "Gigamacro",
  12759. height: math.unit(200, "megameters")
  12760. },
  12761. {
  12762. name: "Gigamacro+",
  12763. height: math.unit(1.5, "gigameters")
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12769. {
  12770. front: {
  12771. height: math.unit(6 + 3 / 12, "feet"),
  12772. weight: math.unit(215, "lb"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/grynn/front.svg",
  12776. extra: 4627 / 4209,
  12777. bottom: 0.047
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Micro",
  12784. height: math.unit(6, "inches")
  12785. },
  12786. {
  12787. name: "Normal",
  12788. height: math.unit(6 + 3 / 12, "feet"),
  12789. default: true
  12790. },
  12791. {
  12792. name: "Big",
  12793. height: math.unit(104, "feet")
  12794. },
  12795. {
  12796. name: "Macro",
  12797. height: math.unit(944, "feet")
  12798. },
  12799. {
  12800. name: "Macro+",
  12801. height: math.unit(9480, "feet")
  12802. },
  12803. {
  12804. name: "Megamacro",
  12805. height: math.unit(78752, "feet")
  12806. },
  12807. {
  12808. name: "Megamacro+",
  12809. height: math.unit(630128, "feet")
  12810. },
  12811. {
  12812. name: "Megamacro++",
  12813. height: math.unit(3150695, "feet")
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12819. {
  12820. front: {
  12821. height: math.unit(7 + 5 / 12, "feet"),
  12822. weight: math.unit(450, "lb"),
  12823. name: "Front",
  12824. image: {
  12825. source: "./media/characters/mocha-aura/front.svg",
  12826. extra: 1907 / 1817,
  12827. bottom: 0.04
  12828. }
  12829. },
  12830. back: {
  12831. height: math.unit(7 + 5 / 12, "feet"),
  12832. weight: math.unit(450, "lb"),
  12833. name: "Back",
  12834. image: {
  12835. source: "./media/characters/mocha-aura/back.svg",
  12836. extra: 1900 / 1825,
  12837. bottom: 0.045
  12838. }
  12839. },
  12840. },
  12841. [
  12842. {
  12843. name: "Nano",
  12844. height: math.unit(1, "nm")
  12845. },
  12846. {
  12847. name: "Megamicro",
  12848. height: math.unit(1, "mm")
  12849. },
  12850. {
  12851. name: "Micro",
  12852. height: math.unit(3, "inches")
  12853. },
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(7 + 5 / 12, "feet"),
  12857. default: true
  12858. },
  12859. {
  12860. name: "Macro",
  12861. height: math.unit(30, "feet")
  12862. },
  12863. {
  12864. name: "Megamacro",
  12865. height: math.unit(3500, "feet")
  12866. },
  12867. {
  12868. name: "Teramacro",
  12869. height: math.unit(500000, "miles")
  12870. },
  12871. {
  12872. name: "Petamacro",
  12873. height: math.unit(50000000000000000, "parsecs")
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(6, "feet"),
  12882. weight: math.unit(150, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/ilisha-devya/front.svg",
  12886. extra: 1,
  12887. bottom: 0.175
  12888. }
  12889. },
  12890. back: {
  12891. height: math.unit(6, "feet"),
  12892. weight: math.unit(150, "lb"),
  12893. name: "Back",
  12894. image: {
  12895. source: "./media/characters/ilisha-devya/back.svg",
  12896. extra: 1,
  12897. bottom: 0.015
  12898. }
  12899. },
  12900. },
  12901. [
  12902. {
  12903. name: "Macro",
  12904. height: math.unit(500, "feet"),
  12905. default: true
  12906. },
  12907. {
  12908. name: "Megamacro",
  12909. height: math.unit(10, "miles")
  12910. },
  12911. {
  12912. name: "Gigamacro",
  12913. height: math.unit(100000, "miles")
  12914. },
  12915. {
  12916. name: "Examacro",
  12917. height: math.unit(1e9, "lightyears")
  12918. },
  12919. {
  12920. name: "Omniversal",
  12921. height: math.unit(1e33, "lightyears")
  12922. },
  12923. {
  12924. name: "Beyond Infinite",
  12925. height: math.unit(1e100, "lightyears")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12931. {
  12932. Side: {
  12933. height: math.unit(6, "feet"),
  12934. weight: math.unit(150, "lb"),
  12935. name: "Side",
  12936. image: {
  12937. source: "./media/characters/mira/side.svg",
  12938. extra: 900 / 799,
  12939. bottom: 0.02
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Human Size",
  12946. height: math.unit(6, "feet")
  12947. },
  12948. {
  12949. name: "Macro",
  12950. height: math.unit(100, "feet"),
  12951. default: true
  12952. },
  12953. {
  12954. name: "Megamacro",
  12955. height: math.unit(10, "miles")
  12956. },
  12957. {
  12958. name: "Gigamacro",
  12959. height: math.unit(25000, "miles")
  12960. },
  12961. {
  12962. name: "Teramacro",
  12963. height: math.unit(300, "AU")
  12964. },
  12965. {
  12966. name: "Full Size",
  12967. height: math.unit(4.5e10, "lightyears")
  12968. },
  12969. ]
  12970. ))
  12971. characterMakers.push(() => makeCharacter(
  12972. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12973. {
  12974. front: {
  12975. height: math.unit(6, "feet"),
  12976. weight: math.unit(150, "lb"),
  12977. name: "Front",
  12978. image: {
  12979. source: "./media/characters/holly/front.svg",
  12980. extra: 639 / 606
  12981. }
  12982. },
  12983. back: {
  12984. height: math.unit(6, "feet"),
  12985. weight: math.unit(150, "lb"),
  12986. name: "Back",
  12987. image: {
  12988. source: "./media/characters/holly/back.svg",
  12989. extra: 623 / 598
  12990. }
  12991. },
  12992. frontWorking: {
  12993. height: math.unit(6, "feet"),
  12994. weight: math.unit(150, "lb"),
  12995. name: "Front (Working)",
  12996. image: {
  12997. source: "./media/characters/holly/front-working.svg",
  12998. extra: 607 / 577,
  12999. bottom: 0.048
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Normal",
  13006. height: math.unit(12 + 3 / 12, "feet"),
  13007. default: true
  13008. },
  13009. ]
  13010. ))
  13011. characterMakers.push(() => makeCharacter(
  13012. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13013. {
  13014. front: {
  13015. height: math.unit(6, "feet"),
  13016. weight: math.unit(150, "lb"),
  13017. name: "Front",
  13018. image: {
  13019. source: "./media/characters/porter/front.svg",
  13020. extra: 1,
  13021. bottom: 0.01
  13022. }
  13023. },
  13024. frontRobes: {
  13025. height: math.unit(6, "feet"),
  13026. weight: math.unit(150, "lb"),
  13027. name: "Front (Robes)",
  13028. image: {
  13029. source: "./media/characters/porter/front-robes.svg",
  13030. extra: 1.01,
  13031. bottom: 0.01
  13032. }
  13033. },
  13034. },
  13035. [
  13036. {
  13037. name: "Normal",
  13038. height: math.unit(11 + 9 / 12, "feet"),
  13039. default: true
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13045. {
  13046. legendary: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(150, "lb"),
  13049. name: "Legendary",
  13050. image: {
  13051. source: "./media/characters/lucy/legendary.svg",
  13052. extra: 1355 / 1100,
  13053. bottom: 0.045
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Legendary",
  13060. height: math.unit(86882 * 2, "miles"),
  13061. default: true
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13067. {
  13068. front: {
  13069. height: math.unit(6, "feet"),
  13070. weight: math.unit(150, "lb"),
  13071. name: "Front",
  13072. image: {
  13073. source: "./media/characters/drusilla/front.svg",
  13074. extra: 678 / 635,
  13075. bottom: 0.03
  13076. }
  13077. },
  13078. back: {
  13079. height: math.unit(6, "feet"),
  13080. weight: math.unit(150, "lb"),
  13081. name: "Back",
  13082. image: {
  13083. source: "./media/characters/drusilla/back.svg",
  13084. extra: 678 / 635,
  13085. bottom: 0.005
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Macro",
  13092. height: math.unit(100, "feet")
  13093. },
  13094. {
  13095. name: "Canon Height",
  13096. height: math.unit(2000, "feet"),
  13097. default: true
  13098. },
  13099. ]
  13100. ))
  13101. characterMakers.push(() => makeCharacter(
  13102. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13103. {
  13104. front: {
  13105. height: math.unit(6, "feet"),
  13106. weight: math.unit(180, "lb"),
  13107. name: "Front",
  13108. image: {
  13109. source: "./media/characters/renard-thatch/front.svg",
  13110. extra: 2411 / 2275,
  13111. bottom: 0.01
  13112. }
  13113. },
  13114. frontPosing: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(180, "lb"),
  13117. name: "Front (Posing)",
  13118. image: {
  13119. source: "./media/characters/renard-thatch/front-posing.svg",
  13120. extra: 2381 / 2261,
  13121. bottom: 0.01
  13122. }
  13123. },
  13124. back: {
  13125. height: math.unit(6, "feet"),
  13126. weight: math.unit(180, "lb"),
  13127. name: "Back",
  13128. image: {
  13129. source: "./media/characters/renard-thatch/back.svg",
  13130. extra: 2428 / 2288
  13131. }
  13132. },
  13133. },
  13134. [
  13135. {
  13136. name: "Micro",
  13137. height: math.unit(3, "inches")
  13138. },
  13139. {
  13140. name: "Default",
  13141. height: math.unit(6, "feet"),
  13142. default: true
  13143. },
  13144. {
  13145. name: "Macro",
  13146. height: math.unit(75, "feet")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13152. {
  13153. front: {
  13154. height: math.unit(1450, "feet"),
  13155. weight: math.unit(1.21e6, "tons"),
  13156. name: "Front",
  13157. image: {
  13158. source: "./media/characters/sekvra/front.svg",
  13159. extra: 1,
  13160. bottom: 0.03
  13161. }
  13162. },
  13163. frontClothed: {
  13164. height: math.unit(1450, "feet"),
  13165. weight: math.unit(1.21e6, "tons"),
  13166. name: "Front (Clothed)",
  13167. image: {
  13168. source: "./media/characters/sekvra/front-clothed.svg",
  13169. extra: 1,
  13170. bottom: 0.03
  13171. }
  13172. },
  13173. side: {
  13174. height: math.unit(1450, "feet"),
  13175. weight: math.unit(1.21e6, "tons"),
  13176. name: "Side",
  13177. image: {
  13178. source: "./media/characters/sekvra/side.svg",
  13179. extra: 1,
  13180. bottom: 0.025
  13181. }
  13182. },
  13183. back: {
  13184. height: math.unit(1450, "feet"),
  13185. weight: math.unit(1.21e6, "tons"),
  13186. name: "Back",
  13187. image: {
  13188. source: "./media/characters/sekvra/back.svg",
  13189. extra: 1,
  13190. bottom: 0.005
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Macro",
  13197. height: math.unit(1450, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Megamacro",
  13202. height: math.unit(15000, "feet")
  13203. },
  13204. ]
  13205. ))
  13206. characterMakers.push(() => makeCharacter(
  13207. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13208. {
  13209. front: {
  13210. height: math.unit(6, "feet"),
  13211. weight: math.unit(150, "lb"),
  13212. name: "Front",
  13213. image: {
  13214. source: "./media/characters/carmine/front.svg",
  13215. extra: 1,
  13216. bottom: 0.035
  13217. }
  13218. },
  13219. frontArmor: {
  13220. height: math.unit(6, "feet"),
  13221. weight: math.unit(150, "lb"),
  13222. name: "Front (Armor)",
  13223. image: {
  13224. source: "./media/characters/carmine/front-armor.svg",
  13225. extra: 1,
  13226. bottom: 0.035
  13227. }
  13228. },
  13229. },
  13230. [
  13231. {
  13232. name: "Large",
  13233. height: math.unit(1, "mile")
  13234. },
  13235. {
  13236. name: "Huge",
  13237. height: math.unit(40, "miles"),
  13238. default: true
  13239. },
  13240. {
  13241. name: "Colossal",
  13242. height: math.unit(2500, "miles")
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13248. {
  13249. front: {
  13250. height: math.unit(6, "feet"),
  13251. weight: math.unit(150, "lb"),
  13252. name: "Front",
  13253. image: {
  13254. source: "./media/characters/elyssia/front.svg",
  13255. extra: 2201 / 2035,
  13256. bottom: 0.05
  13257. }
  13258. },
  13259. frontClothed: {
  13260. height: math.unit(6, "feet"),
  13261. weight: math.unit(150, "lb"),
  13262. name: "Front (Clothed)",
  13263. image: {
  13264. source: "./media/characters/elyssia/front-clothed.svg",
  13265. extra: 2201 / 2035,
  13266. bottom: 0.05
  13267. }
  13268. },
  13269. back: {
  13270. height: math.unit(6, "feet"),
  13271. weight: math.unit(150, "lb"),
  13272. name: "Back",
  13273. image: {
  13274. source: "./media/characters/elyssia/back.svg",
  13275. extra: 2201 / 2035,
  13276. bottom: 0.013
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Smaller",
  13283. height: math.unit(150, "feet")
  13284. },
  13285. {
  13286. name: "Standard",
  13287. height: math.unit(1400, "feet"),
  13288. default: true
  13289. },
  13290. {
  13291. name: "Distracted",
  13292. height: math.unit(15000, "feet")
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(7 + 4 / 12, "feet"),
  13301. weight: math.unit(500, "lb"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/geno-maxwell/front.svg",
  13305. extra: 2207 / 2040,
  13306. bottom: 0.015
  13307. }
  13308. },
  13309. },
  13310. [
  13311. {
  13312. name: "Micro",
  13313. height: math.unit(3, "inches")
  13314. },
  13315. {
  13316. name: "Normal",
  13317. height: math.unit(7 + 4 / 12, "feet"),
  13318. default: true
  13319. },
  13320. {
  13321. name: "Macro",
  13322. height: math.unit(220, "feet")
  13323. },
  13324. {
  13325. name: "Megamacro",
  13326. height: math.unit(11, "miles")
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13332. {
  13333. front: {
  13334. height: math.unit(7 + 4 / 12, "feet"),
  13335. weight: math.unit(500, "lb"),
  13336. name: "Front",
  13337. image: {
  13338. source: "./media/characters/regena-maxwell/front.svg",
  13339. extra: 3115 / 2770,
  13340. bottom: 0.02
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(7 + 4 / 12, "feet"),
  13348. default: true
  13349. },
  13350. {
  13351. name: "Macro",
  13352. height: math.unit(220, "feet")
  13353. },
  13354. {
  13355. name: "Megamacro",
  13356. height: math.unit(11, "miles")
  13357. },
  13358. ]
  13359. ))
  13360. characterMakers.push(() => makeCharacter(
  13361. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13362. {
  13363. front: {
  13364. height: math.unit(6, "feet"),
  13365. weight: math.unit(150, "lb"),
  13366. name: "Front",
  13367. image: {
  13368. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13369. extra: 860 / 690,
  13370. bottom: 0.03
  13371. }
  13372. },
  13373. },
  13374. [
  13375. {
  13376. name: "Normal",
  13377. height: math.unit(1.7, "meters"),
  13378. default: true
  13379. },
  13380. ]
  13381. ))
  13382. characterMakers.push(() => makeCharacter(
  13383. { name: "Quilly", species: ["quilava"], 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/quilly/front.svg",
  13391. extra: 890 / 776
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Gigamacro",
  13398. height: math.unit(404090, "miles"),
  13399. default: true
  13400. },
  13401. ]
  13402. ))
  13403. characterMakers.push(() => makeCharacter(
  13404. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13405. {
  13406. front: {
  13407. height: math.unit(7 + 8 / 12, "feet"),
  13408. weight: math.unit(350, "lb"),
  13409. name: "Front",
  13410. image: {
  13411. source: "./media/characters/tempest/front.svg",
  13412. extra: 1175 / 1086,
  13413. bottom: 0.02
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(7 + 8 / 12, "feet"),
  13421. default: true
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13427. {
  13428. side: {
  13429. height: math.unit(4 + 5 / 12, "feet"),
  13430. weight: math.unit(80, "lb"),
  13431. name: "Side",
  13432. image: {
  13433. source: "./media/characters/rodger/side.svg",
  13434. extra: 1235 / 1118
  13435. }
  13436. },
  13437. },
  13438. [
  13439. {
  13440. name: "Micro",
  13441. height: math.unit(1, "inch")
  13442. },
  13443. {
  13444. name: "Normal",
  13445. height: math.unit(4 + 5 / 12, "feet"),
  13446. default: true
  13447. },
  13448. {
  13449. name: "Macro",
  13450. height: math.unit(120, "feet")
  13451. },
  13452. ]
  13453. ))
  13454. characterMakers.push(() => makeCharacter(
  13455. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13456. {
  13457. front: {
  13458. height: math.unit(6, "feet"),
  13459. weight: math.unit(150, "lb"),
  13460. name: "Front",
  13461. image: {
  13462. source: "./media/characters/danyel/front.svg",
  13463. extra: 1185 / 1123,
  13464. bottom: 0.05
  13465. }
  13466. },
  13467. },
  13468. [
  13469. {
  13470. name: "Shrunken",
  13471. height: math.unit(0.5, "mm")
  13472. },
  13473. {
  13474. name: "Micro",
  13475. height: math.unit(1, "mm"),
  13476. default: true
  13477. },
  13478. {
  13479. name: "Upsized",
  13480. height: math.unit(5 + 5 / 12, "feet")
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13486. {
  13487. front: {
  13488. height: math.unit(5 + 6 / 12, "feet"),
  13489. weight: math.unit(200, "lb"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/vivian-bijoux/front.svg",
  13493. extra: 1,
  13494. bottom: 0.072
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Normal",
  13501. height: math.unit(5 + 6 / 12, "feet"),
  13502. default: true
  13503. },
  13504. {
  13505. name: "Bad Dream",
  13506. height: math.unit(500, "feet")
  13507. },
  13508. {
  13509. name: "Nightmare",
  13510. height: math.unit(500, "miles")
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13516. {
  13517. front: {
  13518. height: math.unit(6 + 1 / 12, "feet"),
  13519. weight: math.unit(260, "lb"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/zeta/front.svg",
  13523. extra: 1968 / 1889,
  13524. bottom: 0.06
  13525. }
  13526. },
  13527. back: {
  13528. height: math.unit(6 + 1 / 12, "feet"),
  13529. weight: math.unit(260, "lb"),
  13530. name: "Back",
  13531. image: {
  13532. source: "./media/characters/zeta/back.svg",
  13533. extra: 1944 / 1858,
  13534. bottom: 0.03
  13535. }
  13536. },
  13537. hand: {
  13538. height: math.unit(1.112, "feet"),
  13539. name: "Hand",
  13540. image: {
  13541. source: "./media/characters/zeta/hand.svg"
  13542. }
  13543. },
  13544. foot: {
  13545. height: math.unit(1.48, "feet"),
  13546. name: "Foot",
  13547. image: {
  13548. source: "./media/characters/zeta/foot.svg"
  13549. }
  13550. },
  13551. },
  13552. [
  13553. {
  13554. name: "Micro",
  13555. height: math.unit(6, "inches")
  13556. },
  13557. {
  13558. name: "Normal",
  13559. height: math.unit(6 + 1 / 12, "feet"),
  13560. default: true
  13561. },
  13562. {
  13563. name: "Macro",
  13564. height: math.unit(20, "feet")
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13570. {
  13571. front: {
  13572. height: math.unit(6, "feet"),
  13573. weight: math.unit(150, "lb"),
  13574. name: "Front",
  13575. image: {
  13576. source: "./media/characters/jamie-larsen/front.svg",
  13577. extra: 962 / 933,
  13578. bottom: 0.02
  13579. }
  13580. },
  13581. back: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(150, "lb"),
  13584. name: "Back",
  13585. image: {
  13586. source: "./media/characters/jamie-larsen/back.svg",
  13587. extra: 997 / 946
  13588. }
  13589. },
  13590. },
  13591. [
  13592. {
  13593. name: "Macro",
  13594. height: math.unit(28 + 7 / 12, "feet"),
  13595. default: true
  13596. },
  13597. {
  13598. name: "Macro+",
  13599. height: math.unit(180, "feet")
  13600. },
  13601. {
  13602. name: "Megamacro",
  13603. height: math.unit(10, "miles")
  13604. },
  13605. {
  13606. name: "Gigamacro",
  13607. height: math.unit(200000, "miles")
  13608. },
  13609. ]
  13610. ))
  13611. characterMakers.push(() => makeCharacter(
  13612. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13613. {
  13614. front: {
  13615. height: math.unit(6, "feet"),
  13616. weight: math.unit(120, "lb"),
  13617. name: "Front",
  13618. image: {
  13619. source: "./media/characters/vance/front.svg",
  13620. extra: 1980 / 1890,
  13621. bottom: 0.09
  13622. }
  13623. },
  13624. back: {
  13625. height: math.unit(6, "feet"),
  13626. weight: math.unit(120, "lb"),
  13627. name: "Back",
  13628. image: {
  13629. source: "./media/characters/vance/back.svg",
  13630. extra: 2081 / 1994,
  13631. bottom: 0.014
  13632. }
  13633. },
  13634. hand: {
  13635. height: math.unit(0.88, "feet"),
  13636. name: "Hand",
  13637. image: {
  13638. source: "./media/characters/vance/hand.svg"
  13639. }
  13640. },
  13641. foot: {
  13642. height: math.unit(0.64, "feet"),
  13643. name: "Foot",
  13644. image: {
  13645. source: "./media/characters/vance/foot.svg"
  13646. }
  13647. },
  13648. },
  13649. [
  13650. {
  13651. name: "Small",
  13652. height: math.unit(90, "feet"),
  13653. default: true
  13654. },
  13655. {
  13656. name: "Macro",
  13657. height: math.unit(100, "meters")
  13658. },
  13659. {
  13660. name: "Megamacro",
  13661. height: math.unit(15, "miles")
  13662. },
  13663. ]
  13664. ))
  13665. characterMakers.push(() => makeCharacter(
  13666. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13667. {
  13668. front: {
  13669. height: math.unit(6, "feet"),
  13670. weight: math.unit(180, "lb"),
  13671. name: "Front",
  13672. image: {
  13673. source: "./media/characters/xochitl/front.svg",
  13674. extra: 2297 / 2261,
  13675. bottom: 0.065
  13676. }
  13677. },
  13678. back: {
  13679. height: math.unit(6, "feet"),
  13680. weight: math.unit(180, "lb"),
  13681. name: "Back",
  13682. image: {
  13683. source: "./media/characters/xochitl/back.svg",
  13684. extra: 2386 / 2354,
  13685. bottom: 0.01
  13686. }
  13687. },
  13688. foot: {
  13689. height: math.unit(6 / 5 * 1.15, "feet"),
  13690. weight: math.unit(150, "lb"),
  13691. name: "Foot",
  13692. image: {
  13693. source: "./media/characters/xochitl/foot.svg"
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Macro",
  13700. height: math.unit(80, "feet")
  13701. },
  13702. {
  13703. name: "Macro+",
  13704. height: math.unit(400, "feet"),
  13705. default: true
  13706. },
  13707. {
  13708. name: "Gigamacro",
  13709. height: math.unit(80000, "miles")
  13710. },
  13711. {
  13712. name: "Gigamacro+",
  13713. height: math.unit(400000, "miles")
  13714. },
  13715. {
  13716. name: "Teramacro",
  13717. height: math.unit(300, "AU")
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13723. {
  13724. front: {
  13725. height: math.unit(6, "feet"),
  13726. weight: math.unit(150, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/vincent/front.svg",
  13730. extra: 1130 / 1080,
  13731. bottom: 0.055
  13732. }
  13733. },
  13734. beak: {
  13735. height: math.unit(6 * 0.1, "feet"),
  13736. name: "Beak",
  13737. image: {
  13738. source: "./media/characters/vincent/beak.svg"
  13739. }
  13740. },
  13741. hand: {
  13742. height: math.unit(6 * 0.85, "feet"),
  13743. weight: math.unit(150, "lb"),
  13744. name: "Hand",
  13745. image: {
  13746. source: "./media/characters/vincent/hand.svg"
  13747. }
  13748. },
  13749. foot: {
  13750. height: math.unit(6 * 0.19, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Foot",
  13753. image: {
  13754. source: "./media/characters/vincent/foot.svg"
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Base",
  13761. height: math.unit(6 + 5 / 12, "feet"),
  13762. default: true
  13763. },
  13764. {
  13765. name: "Macro",
  13766. height: math.unit(300, "feet")
  13767. },
  13768. {
  13769. name: "Megamacro",
  13770. height: math.unit(2, "miles")
  13771. },
  13772. {
  13773. name: "Gigamacro",
  13774. height: math.unit(1000, "miles")
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13780. {
  13781. front: {
  13782. height: math.unit(2, "meters"),
  13783. weight: math.unit(500, "kg"),
  13784. name: "Front",
  13785. image: {
  13786. source: "./media/characters/coatl/front.svg",
  13787. extra: 3948 / 3500,
  13788. bottom: 0.082
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Normal",
  13795. height: math.unit(4, "meters")
  13796. },
  13797. {
  13798. name: "Macro",
  13799. height: math.unit(100, "meters"),
  13800. default: true
  13801. },
  13802. {
  13803. name: "Macro+",
  13804. height: math.unit(300, "meters")
  13805. },
  13806. {
  13807. name: "Megamacro",
  13808. height: math.unit(3, "gigameters")
  13809. },
  13810. {
  13811. name: "Megamacro+",
  13812. height: math.unit(300, "terameters")
  13813. },
  13814. {
  13815. name: "Megamacro++",
  13816. height: math.unit(3, "lightyears")
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13822. {
  13823. front: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(50, "kg"),
  13826. name: "front",
  13827. image: {
  13828. source: "./media/characters/shiroryu/front.svg",
  13829. extra: 1990 / 1935
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "Mortal Mingling",
  13836. height: math.unit(3, "meters")
  13837. },
  13838. {
  13839. name: "Kaiju-ish",
  13840. height: math.unit(250, "meters")
  13841. },
  13842. {
  13843. name: "Somewhat Godly",
  13844. height: math.unit(400, "km"),
  13845. default: true
  13846. },
  13847. {
  13848. name: "Planetary",
  13849. height: math.unit(300, "megameters")
  13850. },
  13851. {
  13852. name: "Galaxy-dwarfing",
  13853. height: math.unit(450, "kiloparsecs")
  13854. },
  13855. {
  13856. name: "Universe Eater",
  13857. height: math.unit(150, "gigaparsecs")
  13858. },
  13859. {
  13860. name: "Almost Immeasurable",
  13861. height: math.unit(1.3e266, "yottaparsecs")
  13862. },
  13863. ]
  13864. ))
  13865. characterMakers.push(() => makeCharacter(
  13866. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13867. {
  13868. front: {
  13869. height: math.unit(6, "feet"),
  13870. weight: math.unit(150, "lb"),
  13871. name: "Front",
  13872. image: {
  13873. source: "./media/characters/umeko/front.svg",
  13874. extra: 1,
  13875. bottom: 0.019
  13876. }
  13877. },
  13878. frontArmored: {
  13879. height: math.unit(6, "feet"),
  13880. weight: math.unit(150, "lb"),
  13881. name: "Front (Armored)",
  13882. image: {
  13883. source: "./media/characters/umeko/front-armored.svg",
  13884. extra: 1,
  13885. bottom: 0.021
  13886. }
  13887. },
  13888. },
  13889. [
  13890. {
  13891. name: "Macro",
  13892. height: math.unit(220, "feet"),
  13893. default: true
  13894. },
  13895. {
  13896. name: "Guardian Dragon",
  13897. height: math.unit(50, "miles")
  13898. },
  13899. {
  13900. name: "Cosmic",
  13901. height: math.unit(800000, "miles")
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13907. {
  13908. front: {
  13909. height: math.unit(6, "feet"),
  13910. weight: math.unit(150, "lb"),
  13911. name: "Front",
  13912. image: {
  13913. source: "./media/characters/cassidy/front.svg",
  13914. extra: 1,
  13915. bottom: 0.043
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Canon Height",
  13922. height: math.unit(120, "feet"),
  13923. default: true
  13924. },
  13925. {
  13926. name: "Macro+",
  13927. height: math.unit(400, "feet")
  13928. },
  13929. {
  13930. name: "Macro++",
  13931. height: math.unit(4000, "feet")
  13932. },
  13933. {
  13934. name: "Megamacro",
  13935. height: math.unit(3, "miles")
  13936. },
  13937. ]
  13938. ))
  13939. characterMakers.push(() => makeCharacter(
  13940. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13941. {
  13942. front: {
  13943. height: math.unit(6, "feet"),
  13944. weight: math.unit(150, "lb"),
  13945. name: "Front",
  13946. image: {
  13947. source: "./media/characters/isaac/front.svg",
  13948. extra: 896 / 815,
  13949. bottom: 0.11
  13950. }
  13951. },
  13952. },
  13953. [
  13954. {
  13955. name: "Human Size",
  13956. height: math.unit(8, "feet"),
  13957. default: true
  13958. },
  13959. {
  13960. name: "Macro",
  13961. height: math.unit(400, "feet")
  13962. },
  13963. {
  13964. name: "Megamacro",
  13965. height: math.unit(50, "miles")
  13966. },
  13967. {
  13968. name: "Canon Height",
  13969. height: math.unit(200, "AU")
  13970. },
  13971. ]
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13975. {
  13976. front: {
  13977. height: math.unit(6, "feet"),
  13978. weight: math.unit(72, "kg"),
  13979. name: "Front",
  13980. image: {
  13981. source: "./media/characters/sleekit/front.svg",
  13982. extra: 4693 / 4487,
  13983. bottom: 0.012
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Minimum Height",
  13990. height: math.unit(10, "meters")
  13991. },
  13992. {
  13993. name: "Smaller",
  13994. height: math.unit(25, "meters")
  13995. },
  13996. {
  13997. name: "Larger",
  13998. height: math.unit(38, "meters"),
  13999. default: true
  14000. },
  14001. {
  14002. name: "Maximum height",
  14003. height: math.unit(100, "meters")
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(6, "feet"),
  14012. weight: math.unit(150, "lb"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/nillia/front.svg",
  14016. extra: 2195 / 2037,
  14017. bottom: 0.005
  14018. }
  14019. },
  14020. back: {
  14021. height: math.unit(6, "feet"),
  14022. weight: math.unit(150, "lb"),
  14023. name: "Back",
  14024. image: {
  14025. source: "./media/characters/nillia/back.svg",
  14026. extra: 2195 / 2037,
  14027. bottom: 0.005
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Canon Height",
  14034. height: math.unit(489, "feet"),
  14035. default: true
  14036. }
  14037. ]
  14038. ))
  14039. characterMakers.push(() => makeCharacter(
  14040. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14041. {
  14042. front: {
  14043. height: math.unit(6, "feet"),
  14044. weight: math.unit(150, "lb"),
  14045. name: "Front",
  14046. image: {
  14047. source: "./media/characters/mesmyriza/front.svg",
  14048. extra: 2067 / 1784,
  14049. bottom: 0.035
  14050. }
  14051. },
  14052. foot: {
  14053. height: math.unit(6 / (250 / 35), "feet"),
  14054. name: "Foot",
  14055. image: {
  14056. source: "./media/characters/mesmyriza/foot.svg"
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Macro",
  14063. height: math.unit(457, "meters"),
  14064. default: true
  14065. },
  14066. {
  14067. name: "Megamacro",
  14068. height: math.unit(8, "megameters")
  14069. },
  14070. ]
  14071. ))
  14072. characterMakers.push(() => makeCharacter(
  14073. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14074. {
  14075. front: {
  14076. height: math.unit(6, "feet"),
  14077. weight: math.unit(250, "lb"),
  14078. name: "Front",
  14079. image: {
  14080. source: "./media/characters/saudade/front.svg",
  14081. extra: 1172 / 1139,
  14082. bottom: 0.035
  14083. }
  14084. },
  14085. },
  14086. [
  14087. {
  14088. name: "Micro",
  14089. height: math.unit(3, "inches")
  14090. },
  14091. {
  14092. name: "Normal",
  14093. height: math.unit(6, "feet"),
  14094. default: true
  14095. },
  14096. {
  14097. name: "Macro",
  14098. height: math.unit(50, "feet")
  14099. },
  14100. {
  14101. name: "Megamacro",
  14102. height: math.unit(2800, "feet")
  14103. },
  14104. ]
  14105. ))
  14106. characterMakers.push(() => makeCharacter(
  14107. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14108. {
  14109. front: {
  14110. height: math.unit(5 + 4 / 12, "feet"),
  14111. weight: math.unit(100, "lb"),
  14112. name: "Front",
  14113. image: {
  14114. source: "./media/characters/keireer/front.svg",
  14115. extra: 716 / 666,
  14116. bottom: 0.05
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(5 + 4 / 12, "feet"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(6, "feet"),
  14133. weight: math.unit(90, "kg"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/mirja/front.svg",
  14137. extra: 1789 / 1683,
  14138. bottom: 0.05
  14139. }
  14140. },
  14141. frontDressed: {
  14142. height: math.unit(6, "feet"),
  14143. weight: math.unit(90, "lb"),
  14144. name: "Front (Dressed)",
  14145. image: {
  14146. source: "./media/characters/mirja/front-dressed.svg",
  14147. extra: 1789 / 1683,
  14148. bottom: 0.05
  14149. }
  14150. },
  14151. back: {
  14152. height: math.unit(6, "feet"),
  14153. weight: math.unit(90, "lb"),
  14154. name: "Back",
  14155. image: {
  14156. source: "./media/characters/mirja/back.svg",
  14157. extra: 953 / 917,
  14158. bottom: 0.017
  14159. }
  14160. },
  14161. },
  14162. [
  14163. {
  14164. name: "\"Incognito\"",
  14165. height: math.unit(3, "meters")
  14166. },
  14167. {
  14168. name: "Strolling Size",
  14169. height: math.unit(15, "km")
  14170. },
  14171. {
  14172. name: "Larger Strolling Size",
  14173. height: math.unit(400, "km")
  14174. },
  14175. {
  14176. name: "Preferred Size",
  14177. height: math.unit(5000, "km")
  14178. },
  14179. {
  14180. name: "True Size",
  14181. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14182. default: true
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14188. {
  14189. front: {
  14190. height: math.unit(15, "feet"),
  14191. weight: math.unit(880, "kg"),
  14192. name: "Front",
  14193. image: {
  14194. source: "./media/characters/nightraver/front.svg",
  14195. extra: 2444 / 2160,
  14196. bottom: 0.027
  14197. }
  14198. },
  14199. back: {
  14200. height: math.unit(15, "feet"),
  14201. weight: math.unit(880, "kg"),
  14202. name: "Back",
  14203. image: {
  14204. source: "./media/characters/nightraver/back.svg",
  14205. extra: 2309 / 2180,
  14206. bottom: 0.005
  14207. }
  14208. },
  14209. sole: {
  14210. height: math.unit(2.878, "feet"),
  14211. name: "Sole",
  14212. image: {
  14213. source: "./media/characters/nightraver/sole.svg"
  14214. }
  14215. },
  14216. foot: {
  14217. height: math.unit(2.285, "feet"),
  14218. name: "Foot",
  14219. image: {
  14220. source: "./media/characters/nightraver/foot.svg"
  14221. }
  14222. },
  14223. maw: {
  14224. height: math.unit(2.67, "feet"),
  14225. name: "Maw",
  14226. image: {
  14227. source: "./media/characters/nightraver/maw.svg"
  14228. }
  14229. },
  14230. },
  14231. [
  14232. {
  14233. name: "Micro",
  14234. height: math.unit(1, "cm")
  14235. },
  14236. {
  14237. name: "Normal",
  14238. height: math.unit(15, "feet"),
  14239. default: true
  14240. },
  14241. {
  14242. name: "Macro",
  14243. height: math.unit(300, "feet")
  14244. },
  14245. {
  14246. name: "Megamacro",
  14247. height: math.unit(300, "miles")
  14248. },
  14249. {
  14250. name: "Gigamacro",
  14251. height: math.unit(10000, "miles")
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14257. {
  14258. side: {
  14259. height: math.unit(2, "inches"),
  14260. weight: math.unit(5, "grams"),
  14261. name: "Side",
  14262. image: {
  14263. source: "./media/characters/arc/side.svg"
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Micro",
  14270. height: math.unit(2, "inches"),
  14271. default: true
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14277. {
  14278. front: {
  14279. height: math.unit(1.1938, "meters"),
  14280. weight: math.unit(54, "kg"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/nebula-shahar/front.svg",
  14284. extra: 1642 / 1436,
  14285. bottom: 0.06
  14286. }
  14287. },
  14288. },
  14289. [
  14290. {
  14291. name: "Megamicro",
  14292. height: math.unit(0.3, "mm")
  14293. },
  14294. {
  14295. name: "Micro",
  14296. height: math.unit(3, "cm")
  14297. },
  14298. {
  14299. name: "Normal",
  14300. height: math.unit(138, "cm"),
  14301. default: true
  14302. },
  14303. {
  14304. name: "Macro",
  14305. height: math.unit(30, "m")
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14311. {
  14312. front: {
  14313. height: math.unit(5.24, "feet"),
  14314. weight: math.unit(150, "lb"),
  14315. name: "Front",
  14316. image: {
  14317. source: "./media/characters/shayla/front.svg",
  14318. extra: 1512 / 1414,
  14319. bottom: 0.01
  14320. }
  14321. },
  14322. back: {
  14323. height: math.unit(5.24, "feet"),
  14324. weight: math.unit(150, "lb"),
  14325. name: "Back",
  14326. image: {
  14327. source: "./media/characters/shayla/back.svg",
  14328. extra: 1512 / 1414
  14329. }
  14330. },
  14331. hand: {
  14332. height: math.unit(0.7781496062992126, "feet"),
  14333. name: "Hand",
  14334. image: {
  14335. source: "./media/characters/shayla/hand.svg"
  14336. }
  14337. },
  14338. foot: {
  14339. height: math.unit(1.4206036745406823, "feet"),
  14340. name: "Foot",
  14341. image: {
  14342. source: "./media/characters/shayla/foot.svg"
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Micro",
  14349. height: math.unit(0.32, "feet")
  14350. },
  14351. {
  14352. name: "Normal",
  14353. height: math.unit(5.24, "feet"),
  14354. default: true
  14355. },
  14356. {
  14357. name: "Macro",
  14358. height: math.unit(492.12, "feet")
  14359. },
  14360. {
  14361. name: "Megamacro",
  14362. height: math.unit(186.41, "miles")
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14368. {
  14369. front: {
  14370. height: math.unit(2.2, "m"),
  14371. weight: math.unit(120, "kg"),
  14372. name: "Front",
  14373. image: {
  14374. source: "./media/characters/pia-jr/front.svg",
  14375. extra: 1000 / 970,
  14376. bottom: 0.035
  14377. }
  14378. },
  14379. hand: {
  14380. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14381. name: "Hand",
  14382. image: {
  14383. source: "./media/characters/pia-jr/hand.svg"
  14384. }
  14385. },
  14386. paw: {
  14387. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14388. name: "Paw",
  14389. image: {
  14390. source: "./media/characters/pia-jr/paw.svg"
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Micro",
  14397. height: math.unit(1.2, "cm")
  14398. },
  14399. {
  14400. name: "Normal",
  14401. height: math.unit(2.2, "m"),
  14402. default: true
  14403. },
  14404. {
  14405. name: "Macro",
  14406. height: math.unit(180, "m")
  14407. },
  14408. {
  14409. name: "Megamacro",
  14410. height: math.unit(420, "km")
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14416. {
  14417. front: {
  14418. height: math.unit(2, "m"),
  14419. weight: math.unit(115, "kg"),
  14420. name: "Front",
  14421. image: {
  14422. source: "./media/characters/pia-sr/front.svg",
  14423. extra: 760 / 730,
  14424. bottom: 0.015
  14425. }
  14426. },
  14427. back: {
  14428. height: math.unit(2, "m"),
  14429. weight: math.unit(115, "kg"),
  14430. name: "Back",
  14431. image: {
  14432. source: "./media/characters/pia-sr/back.svg",
  14433. extra: 760 / 730,
  14434. bottom: 0.01
  14435. }
  14436. },
  14437. hand: {
  14438. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14439. name: "Hand",
  14440. image: {
  14441. source: "./media/characters/pia-sr/hand.svg"
  14442. }
  14443. },
  14444. foot: {
  14445. height: math.unit(1.83, "feet"),
  14446. name: "Foot",
  14447. image: {
  14448. source: "./media/characters/pia-sr/foot.svg"
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Micro",
  14455. height: math.unit(88, "mm")
  14456. },
  14457. {
  14458. name: "Normal",
  14459. height: math.unit(2, "m"),
  14460. default: true
  14461. },
  14462. {
  14463. name: "Macro",
  14464. height: math.unit(200, "m")
  14465. },
  14466. {
  14467. name: "Megamacro",
  14468. height: math.unit(420, "km")
  14469. },
  14470. ]
  14471. ))
  14472. characterMakers.push(() => makeCharacter(
  14473. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14474. {
  14475. front: {
  14476. height: math.unit(8 + 2 / 12, "feet"),
  14477. weight: math.unit(300, "lb"),
  14478. name: "Front",
  14479. image: {
  14480. source: "./media/characters/kibibyte/front.svg",
  14481. extra: 2221 / 2098,
  14482. bottom: 0.04
  14483. }
  14484. },
  14485. },
  14486. [
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(8 + 2 / 12, "feet"),
  14490. default: true
  14491. },
  14492. {
  14493. name: "Socialable Macro",
  14494. height: math.unit(50, "feet")
  14495. },
  14496. {
  14497. name: "Macro",
  14498. height: math.unit(300, "feet")
  14499. },
  14500. {
  14501. name: "Megamacro",
  14502. height: math.unit(500, "miles")
  14503. },
  14504. ]
  14505. ))
  14506. characterMakers.push(() => makeCharacter(
  14507. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14508. {
  14509. front: {
  14510. height: math.unit(6, "feet"),
  14511. weight: math.unit(150, "lb"),
  14512. name: "Front",
  14513. image: {
  14514. source: "./media/characters/felix/front.svg",
  14515. extra: 762 / 722,
  14516. bottom: 0.02
  14517. }
  14518. },
  14519. frontClothed: {
  14520. height: math.unit(6, "feet"),
  14521. weight: math.unit(150, "lb"),
  14522. name: "Front (Clothed)",
  14523. image: {
  14524. source: "./media/characters/felix/front-clothed.svg",
  14525. extra: 762 / 722,
  14526. bottom: 0.02
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Normal",
  14533. height: math.unit(6 + 8 / 12, "feet"),
  14534. default: true
  14535. },
  14536. {
  14537. name: "Macro",
  14538. height: math.unit(2600, "feet")
  14539. },
  14540. {
  14541. name: "Megamacro",
  14542. height: math.unit(450, "miles")
  14543. },
  14544. ]
  14545. ))
  14546. characterMakers.push(() => makeCharacter(
  14547. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14548. {
  14549. front: {
  14550. height: math.unit(6 + 1 / 12, "feet"),
  14551. weight: math.unit(250, "lb"),
  14552. name: "Front",
  14553. image: {
  14554. source: "./media/characters/tobo/front.svg",
  14555. extra: 608 / 586,
  14556. bottom: 0.023
  14557. }
  14558. },
  14559. back: {
  14560. height: math.unit(6 + 1 / 12, "feet"),
  14561. weight: math.unit(250, "lb"),
  14562. name: "Back",
  14563. image: {
  14564. source: "./media/characters/tobo/back.svg",
  14565. extra: 608 / 586
  14566. }
  14567. },
  14568. },
  14569. [
  14570. {
  14571. name: "Nano",
  14572. height: math.unit(2, "nm")
  14573. },
  14574. {
  14575. name: "Megamicro",
  14576. height: math.unit(0.1, "mm")
  14577. },
  14578. {
  14579. name: "Micro",
  14580. height: math.unit(1, "inch"),
  14581. default: true
  14582. },
  14583. {
  14584. name: "Human-sized",
  14585. height: math.unit(6 + 1 / 12, "feet")
  14586. },
  14587. {
  14588. name: "Macro",
  14589. height: math.unit(250, "feet")
  14590. },
  14591. {
  14592. name: "Megamacro",
  14593. height: math.unit(75, "miles")
  14594. },
  14595. {
  14596. name: "Texas-sized",
  14597. height: math.unit(750, "miles")
  14598. },
  14599. {
  14600. name: "Teramacro",
  14601. height: math.unit(50000, "miles")
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14607. {
  14608. front: {
  14609. height: math.unit(6, "feet"),
  14610. weight: math.unit(269, "lb"),
  14611. name: "Front",
  14612. image: {
  14613. source: "./media/characters/danny-kapowsky/front.svg",
  14614. extra: 766 / 736,
  14615. bottom: 0.044
  14616. }
  14617. },
  14618. back: {
  14619. height: math.unit(6, "feet"),
  14620. weight: math.unit(269, "lb"),
  14621. name: "Back",
  14622. image: {
  14623. source: "./media/characters/danny-kapowsky/back.svg",
  14624. extra: 797 / 760,
  14625. bottom: 0.025
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Macro",
  14632. height: math.unit(150, "feet"),
  14633. default: true
  14634. },
  14635. {
  14636. name: "Macro+",
  14637. height: math.unit(200, "feet")
  14638. },
  14639. {
  14640. name: "Macro++",
  14641. height: math.unit(300, "feet")
  14642. },
  14643. {
  14644. name: "Macro+++",
  14645. height: math.unit(400, "feet")
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14651. {
  14652. side: {
  14653. height: math.unit(6, "feet"),
  14654. weight: math.unit(170, "lb"),
  14655. name: "Side",
  14656. image: {
  14657. source: "./media/characters/finn/side.svg",
  14658. extra: 1953 / 1807,
  14659. bottom: 0.057
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Megamacro",
  14666. height: math.unit(14445, "feet"),
  14667. default: true
  14668. },
  14669. ]
  14670. ))
  14671. characterMakers.push(() => makeCharacter(
  14672. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14673. {
  14674. front: {
  14675. height: math.unit(5 + 6 / 12, "feet"),
  14676. weight: math.unit(125, "lb"),
  14677. name: "Front",
  14678. image: {
  14679. source: "./media/characters/roy/front.svg",
  14680. extra: 1,
  14681. bottom: 0.11
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Micro",
  14688. height: math.unit(3, "inches"),
  14689. default: true
  14690. },
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(5 + 6 / 12, "feet")
  14694. },
  14695. {
  14696. name: "Lesser Macro",
  14697. height: math.unit(60, "feet")
  14698. },
  14699. {
  14700. name: "Greater Macro",
  14701. height: math.unit(120, "feet")
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14707. {
  14708. front: {
  14709. height: math.unit(6, "feet"),
  14710. weight: math.unit(100, "lb"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/aevsivs/front.svg",
  14714. extra: 1,
  14715. bottom: 0.03
  14716. }
  14717. },
  14718. back: {
  14719. height: math.unit(6, "feet"),
  14720. weight: math.unit(100, "lb"),
  14721. name: "Back",
  14722. image: {
  14723. source: "./media/characters/aevsivs/back.svg"
  14724. }
  14725. },
  14726. },
  14727. [
  14728. {
  14729. name: "Micro",
  14730. height: math.unit(2, "inches"),
  14731. default: true
  14732. },
  14733. {
  14734. name: "Normal",
  14735. height: math.unit(5, "feet")
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14741. {
  14742. front: {
  14743. height: math.unit(5 + 7 / 12, "feet"),
  14744. weight: math.unit(159, "lb"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/hildegard/front.svg",
  14748. extra: 289 / 269,
  14749. bottom: 7.63 / 297.8
  14750. }
  14751. },
  14752. back: {
  14753. height: math.unit(5 + 7 / 12, "feet"),
  14754. weight: math.unit(159, "lb"),
  14755. name: "Back",
  14756. image: {
  14757. source: "./media/characters/hildegard/back.svg",
  14758. extra: 280 / 260,
  14759. bottom: 2.3 / 282
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Normal",
  14766. height: math.unit(5 + 7 / 12, "feet"),
  14767. default: true
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14773. {
  14774. bernard: {
  14775. height: math.unit(2 + 7 / 12, "feet"),
  14776. weight: math.unit(66, "lb"),
  14777. name: "Bernard",
  14778. rename: true,
  14779. image: {
  14780. source: "./media/characters/bernard-wilder/bernard.svg",
  14781. extra: 192 / 128,
  14782. bottom: 0.05
  14783. }
  14784. },
  14785. wilder: {
  14786. height: math.unit(5 + 8 / 12, "feet"),
  14787. weight: math.unit(143, "lb"),
  14788. name: "Wilder",
  14789. rename: true,
  14790. image: {
  14791. source: "./media/characters/bernard-wilder/wilder.svg",
  14792. extra: 361 / 312,
  14793. bottom: 0.02
  14794. }
  14795. },
  14796. },
  14797. [
  14798. {
  14799. name: "Normal",
  14800. height: math.unit(2 + 7 / 12, "feet"),
  14801. default: true
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14807. {
  14808. anthro: {
  14809. height: math.unit(6 + 1 / 12, "feet"),
  14810. weight: math.unit(155, "lb"),
  14811. name: "Anthro",
  14812. image: {
  14813. source: "./media/characters/hearth/anthro.svg",
  14814. extra: 260 / 250,
  14815. bottom: 0.02
  14816. }
  14817. },
  14818. feral: {
  14819. height: math.unit(3.78, "feet"),
  14820. weight: math.unit(35, "kg"),
  14821. name: "Feral",
  14822. image: {
  14823. source: "./media/characters/hearth/feral.svg",
  14824. extra: 153 / 135,
  14825. bottom: 0.03
  14826. }
  14827. },
  14828. },
  14829. [
  14830. {
  14831. name: "Normal",
  14832. height: math.unit(6 + 1 / 12, "feet"),
  14833. default: true
  14834. },
  14835. ]
  14836. ))
  14837. characterMakers.push(() => makeCharacter(
  14838. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14839. {
  14840. front: {
  14841. height: math.unit(6, "feet"),
  14842. weight: math.unit(182, "lb"),
  14843. name: "Front",
  14844. image: {
  14845. source: "./media/characters/ingrid/front.svg",
  14846. extra: 294 / 268,
  14847. bottom: 0.027
  14848. }
  14849. },
  14850. },
  14851. [
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(6, "feet"),
  14855. default: true
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14861. {
  14862. eevee: {
  14863. height: math.unit(2 + 10 / 12, "feet"),
  14864. weight: math.unit(86, "lb"),
  14865. name: "Malgam",
  14866. image: {
  14867. source: "./media/characters/malgam/eevee.svg",
  14868. extra: 218 / 180,
  14869. bottom: 0.2
  14870. }
  14871. },
  14872. sylveon: {
  14873. height: math.unit(4, "feet"),
  14874. weight: math.unit(101, "lb"),
  14875. name: "Future Malgam",
  14876. rename: true,
  14877. image: {
  14878. source: "./media/characters/malgam/sylveon.svg",
  14879. extra: 371 / 325,
  14880. bottom: 0.015
  14881. }
  14882. },
  14883. gigantamax: {
  14884. height: math.unit(50, "feet"),
  14885. name: "Gigantamax Malgam",
  14886. rename: true,
  14887. image: {
  14888. source: "./media/characters/malgam/gigantamax.svg"
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Normal",
  14895. height: math.unit(2 + 10 / 12, "feet"),
  14896. default: true
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(5 + 11 / 12, "feet"),
  14905. weight: math.unit(188, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/fleur/front.svg",
  14909. extra: 309 / 283,
  14910. bottom: 0.007
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(5 + 11 / 12, "feet"),
  14918. default: true
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14924. {
  14925. front: {
  14926. height: math.unit(5 + 4 / 12, "feet"),
  14927. weight: math.unit(122, "lb"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/jude/front.svg",
  14931. extra: 288 / 273,
  14932. bottom: 0.03
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Normal",
  14939. height: math.unit(5 + 4 / 12, "feet"),
  14940. default: true
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14946. {
  14947. front: {
  14948. height: math.unit(5 + 11 / 12, "feet"),
  14949. weight: math.unit(190, "lb"),
  14950. name: "Front",
  14951. image: {
  14952. source: "./media/characters/seara/front.svg",
  14953. extra: 1,
  14954. bottom: 0.05
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(5 + 11 / 12, "feet"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14968. {
  14969. front: {
  14970. height: math.unit(16 + 5 / 12, "feet"),
  14971. weight: math.unit(524, "lb"),
  14972. name: "Front",
  14973. image: {
  14974. source: "./media/characters/caspian/front.svg",
  14975. extra: 1,
  14976. bottom: 0.04
  14977. }
  14978. },
  14979. },
  14980. [
  14981. {
  14982. name: "Normal",
  14983. height: math.unit(16 + 5 / 12, "feet"),
  14984. default: true
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14990. {
  14991. front: {
  14992. height: math.unit(5 + 7 / 12, "feet"),
  14993. weight: math.unit(170, "lb"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/mika/front.svg",
  14997. extra: 1,
  14998. bottom: 0.016
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(5 + 7 / 12, "feet"),
  15006. default: true
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15012. {
  15013. front: {
  15014. height: math.unit(6 + 2 / 12, "feet"),
  15015. weight: math.unit(268, "lb"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/sol/front.svg",
  15019. extra: 247 / 231,
  15020. bottom: 0.05
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Normal",
  15027. height: math.unit(6 + 2 / 12, "feet"),
  15028. default: true
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15034. {
  15035. buizel: {
  15036. height: math.unit(2 + 5 / 12, "feet"),
  15037. weight: math.unit(87, "lb"),
  15038. name: "Buizel",
  15039. image: {
  15040. source: "./media/characters/umiko/buizel.svg",
  15041. extra: 172 / 157,
  15042. bottom: 0.01
  15043. }
  15044. },
  15045. floatzel: {
  15046. height: math.unit(5 + 9 / 12, "feet"),
  15047. weight: math.unit(250, "lb"),
  15048. name: "Floatzel",
  15049. image: {
  15050. source: "./media/characters/umiko/floatzel.svg",
  15051. extra: 262 / 248
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Normal",
  15058. height: math.unit(2 + 5 / 12, "feet"),
  15059. default: true
  15060. },
  15061. ]
  15062. ))
  15063. characterMakers.push(() => makeCharacter(
  15064. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15065. {
  15066. front: {
  15067. height: math.unit(6 + 2 / 12, "feet"),
  15068. weight: math.unit(146, "lb"),
  15069. name: "Front",
  15070. image: {
  15071. source: "./media/characters/iliac/front.svg",
  15072. extra: 389 / 365,
  15073. bottom: 0.035
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Normal",
  15080. height: math.unit(6 + 2 / 12, "feet"),
  15081. default: true
  15082. },
  15083. ]
  15084. ))
  15085. characterMakers.push(() => makeCharacter(
  15086. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15087. {
  15088. front: {
  15089. height: math.unit(6, "feet"),
  15090. weight: math.unit(170, "lb"),
  15091. name: "Front",
  15092. image: {
  15093. source: "./media/characters/topaz/front.svg",
  15094. extra: 317 / 303,
  15095. bottom: 0.055
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Normal",
  15102. height: math.unit(6, "feet"),
  15103. default: true
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15109. {
  15110. front: {
  15111. height: math.unit(5 + 11 / 12, "feet"),
  15112. weight: math.unit(144, "lb"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/gabriel/front.svg",
  15116. extra: 285 / 262,
  15117. bottom: 0.004
  15118. }
  15119. },
  15120. },
  15121. [
  15122. {
  15123. name: "Normal",
  15124. height: math.unit(5 + 11 / 12, "feet"),
  15125. default: true
  15126. },
  15127. ]
  15128. ))
  15129. characterMakers.push(() => makeCharacter(
  15130. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15131. {
  15132. side: {
  15133. height: math.unit(6 + 5 / 12, "feet"),
  15134. weight: math.unit(300, "lb"),
  15135. name: "Side",
  15136. image: {
  15137. source: "./media/characters/tempest-suicune/side.svg",
  15138. extra: 195 / 154,
  15139. bottom: 0.04
  15140. }
  15141. },
  15142. },
  15143. [
  15144. {
  15145. name: "Normal",
  15146. height: math.unit(6 + 5 / 12, "feet"),
  15147. default: true
  15148. },
  15149. ]
  15150. ))
  15151. characterMakers.push(() => makeCharacter(
  15152. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15153. {
  15154. front: {
  15155. height: math.unit(7 + 2 / 12, "feet"),
  15156. weight: math.unit(322, "lb"),
  15157. name: "Front",
  15158. image: {
  15159. source: "./media/characters/vulcan/front.svg",
  15160. extra: 154 / 147,
  15161. bottom: 0.04
  15162. }
  15163. },
  15164. },
  15165. [
  15166. {
  15167. name: "Normal",
  15168. height: math.unit(7 + 2 / 12, "feet"),
  15169. default: true
  15170. },
  15171. ]
  15172. ))
  15173. characterMakers.push(() => makeCharacter(
  15174. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15175. {
  15176. front: {
  15177. height: math.unit(5 + 10 / 12, "feet"),
  15178. weight: math.unit(264, "lb"),
  15179. name: "Front",
  15180. image: {
  15181. source: "./media/characters/gault/front.svg",
  15182. extra: 161 / 140,
  15183. bottom: 0.028
  15184. }
  15185. },
  15186. },
  15187. [
  15188. {
  15189. name: "Normal",
  15190. height: math.unit(5 + 10 / 12, "feet"),
  15191. default: true
  15192. },
  15193. ]
  15194. ))
  15195. characterMakers.push(() => makeCharacter(
  15196. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15197. {
  15198. front: {
  15199. height: math.unit(6, "feet"),
  15200. weight: math.unit(150, "lb"),
  15201. name: "Front",
  15202. image: {
  15203. source: "./media/characters/shard/front.svg",
  15204. extra: 273 / 238,
  15205. bottom: 0.02
  15206. }
  15207. },
  15208. },
  15209. [
  15210. {
  15211. name: "Normal",
  15212. height: math.unit(3 + 6 / 12, "feet"),
  15213. default: true
  15214. },
  15215. ]
  15216. ))
  15217. characterMakers.push(() => makeCharacter(
  15218. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15219. {
  15220. front: {
  15221. height: math.unit(5 + 11 / 12, "feet"),
  15222. weight: math.unit(146, "lb"),
  15223. name: "Front",
  15224. image: {
  15225. source: "./media/characters/ashe/front.svg",
  15226. extra: 400 / 373,
  15227. bottom: 0.01
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Normal",
  15234. height: math.unit(5 + 11 / 12, "feet"),
  15235. default: true
  15236. },
  15237. ]
  15238. ))
  15239. characterMakers.push(() => makeCharacter(
  15240. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15241. {
  15242. front: {
  15243. height: math.unit(5 + 5 / 12, "feet"),
  15244. weight: math.unit(135, "lb"),
  15245. name: "Front",
  15246. image: {
  15247. source: "./media/characters/beatrix/front.svg",
  15248. extra: 392 / 379,
  15249. bottom: 0.01
  15250. }
  15251. },
  15252. },
  15253. [
  15254. {
  15255. name: "Normal",
  15256. height: math.unit(6, "feet"),
  15257. default: true
  15258. },
  15259. ]
  15260. ))
  15261. characterMakers.push(() => makeCharacter(
  15262. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15263. {
  15264. front: {
  15265. height: math.unit(6, "feet"),
  15266. weight: math.unit(150, "lb"),
  15267. name: "Front",
  15268. image: {
  15269. source: "./media/characters/ignatius/front.svg",
  15270. extra: 245 / 222,
  15271. bottom: 0.01
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(5 + 5 / 12, "feet"),
  15279. default: true
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15285. {
  15286. front: {
  15287. height: math.unit(6 + 2 / 12, "feet"),
  15288. weight: math.unit(138, "lb"),
  15289. name: "Front",
  15290. image: {
  15291. source: "./media/characters/mei-li/front.svg",
  15292. extra: 237 / 229,
  15293. bottom: 0.03
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(6 + 2 / 12, "feet"),
  15301. default: true
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15307. {
  15308. front: {
  15309. height: math.unit(2 + 4 / 12, "feet"),
  15310. weight: math.unit(62, "lb"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/puru/front.svg",
  15314. extra: 206 / 149,
  15315. bottom: 0.06
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(2 + 4 / 12, "feet"),
  15323. default: true
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15329. {
  15330. anthro: {
  15331. height: math.unit(5 + 8/12, "feet"),
  15332. weight: math.unit(200, "lb"),
  15333. energyNeed: math.unit(2000, "kcal"),
  15334. name: "Anthro",
  15335. image: {
  15336. source: "./media/characters/kee/anthro.svg",
  15337. extra: 3251/3184,
  15338. bottom: 250/3501
  15339. }
  15340. },
  15341. taur: {
  15342. height: math.unit(11, "feet"),
  15343. weight: math.unit(500, "lb"),
  15344. energyNeed: math.unit(5000, "kcal"),
  15345. name: "Taur",
  15346. image: {
  15347. source: "./media/characters/kee/taur.svg",
  15348. extra: 1362/1320,
  15349. bottom: 83/1445
  15350. }
  15351. },
  15352. },
  15353. [
  15354. {
  15355. name: "Normal",
  15356. height: math.unit(5 + 8/12, "feet"),
  15357. default: true
  15358. },
  15359. {
  15360. name: "Macro",
  15361. height: math.unit(35, "feet")
  15362. },
  15363. ]
  15364. ))
  15365. characterMakers.push(() => makeCharacter(
  15366. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15367. {
  15368. anthro: {
  15369. height: math.unit(7, "feet"),
  15370. weight: math.unit(190, "lb"),
  15371. name: "Anthro",
  15372. image: {
  15373. source: "./media/characters/cobalt-dracha/anthro.svg",
  15374. extra: 231 / 225,
  15375. bottom: 0.04
  15376. }
  15377. },
  15378. feral: {
  15379. height: math.unit(9 + 7 / 12, "feet"),
  15380. weight: math.unit(294, "lb"),
  15381. name: "Feral",
  15382. image: {
  15383. source: "./media/characters/cobalt-dracha/feral.svg",
  15384. extra: 692 / 633,
  15385. bottom: 0.05
  15386. }
  15387. },
  15388. },
  15389. [
  15390. {
  15391. name: "Normal",
  15392. height: math.unit(7, "feet"),
  15393. default: true
  15394. },
  15395. ]
  15396. ))
  15397. characterMakers.push(() => makeCharacter(
  15398. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15399. {
  15400. fallen: {
  15401. height: math.unit(11 + 8 / 12, "feet"),
  15402. weight: math.unit(485, "lb"),
  15403. name: "Java (Fallen)",
  15404. rename: true,
  15405. image: {
  15406. source: "./media/characters/java/fallen.svg",
  15407. extra: 226 / 208,
  15408. bottom: 0.005
  15409. }
  15410. },
  15411. godkin: {
  15412. height: math.unit(10 + 6 / 12, "feet"),
  15413. weight: math.unit(328, "lb"),
  15414. name: "Java (Godkin)",
  15415. rename: true,
  15416. image: {
  15417. source: "./media/characters/java/godkin.svg",
  15418. extra: 270 / 262,
  15419. bottom: 0.02
  15420. }
  15421. },
  15422. },
  15423. [
  15424. {
  15425. name: "Normal",
  15426. height: math.unit(11 + 8 / 12, "feet"),
  15427. default: true
  15428. },
  15429. ]
  15430. ))
  15431. characterMakers.push(() => makeCharacter(
  15432. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15433. {
  15434. front: {
  15435. height: math.unit(7 + 8 / 12, "feet"),
  15436. weight: math.unit(320, "lb"),
  15437. name: "Front",
  15438. image: {
  15439. source: "./media/characters/skoll/front.svg",
  15440. extra: 232 / 220,
  15441. bottom: 0.02
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Normal",
  15448. height: math.unit(7 + 8 / 12, "feet"),
  15449. default: true
  15450. },
  15451. ]
  15452. ))
  15453. characterMakers.push(() => makeCharacter(
  15454. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15455. {
  15456. front: {
  15457. height: math.unit(5 + 9 / 12, "feet"),
  15458. weight: math.unit(170, "lb"),
  15459. name: "Front",
  15460. image: {
  15461. source: "./media/characters/purna/front.svg",
  15462. extra: 239 / 229,
  15463. bottom: 0.01
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(5 + 9 / 12, "feet"),
  15471. default: true
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(5 + 9 / 12, "feet"),
  15480. weight: math.unit(142, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/kuva/front.svg",
  15484. extra: 281 / 271,
  15485. bottom: 0.006
  15486. }
  15487. },
  15488. },
  15489. [
  15490. {
  15491. name: "Normal",
  15492. height: math.unit(5 + 9 / 12, "feet"),
  15493. default: true
  15494. },
  15495. ]
  15496. ))
  15497. characterMakers.push(() => makeCharacter(
  15498. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15499. {
  15500. anthro: {
  15501. height: math.unit(9 + 2 / 12, "feet"),
  15502. weight: math.unit(270, "lb"),
  15503. name: "Anthro",
  15504. image: {
  15505. source: "./media/characters/embra/anthro.svg",
  15506. extra: 200 / 187,
  15507. bottom: 0.02
  15508. }
  15509. },
  15510. feral: {
  15511. height: math.unit(18 + 8 / 12, "feet"),
  15512. weight: math.unit(576, "lb"),
  15513. name: "Feral",
  15514. image: {
  15515. source: "./media/characters/embra/feral.svg",
  15516. extra: 152 / 137,
  15517. bottom: 0.037
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Normal",
  15524. height: math.unit(9 + 2 / 12, "feet"),
  15525. default: true
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15531. {
  15532. anthro: {
  15533. height: math.unit(10 + 9 / 12, "feet"),
  15534. weight: math.unit(224, "lb"),
  15535. name: "Anthro",
  15536. image: {
  15537. source: "./media/characters/grottos/anthro.svg",
  15538. extra: 350 / 332,
  15539. bottom: 0.045
  15540. }
  15541. },
  15542. feral: {
  15543. height: math.unit(20 + 7 / 12, "feet"),
  15544. weight: math.unit(629, "lb"),
  15545. name: "Feral",
  15546. image: {
  15547. source: "./media/characters/grottos/feral.svg",
  15548. extra: 207 / 190,
  15549. bottom: 0.05
  15550. }
  15551. },
  15552. },
  15553. [
  15554. {
  15555. name: "Normal",
  15556. height: math.unit(10 + 9 / 12, "feet"),
  15557. default: true
  15558. },
  15559. ]
  15560. ))
  15561. characterMakers.push(() => makeCharacter(
  15562. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15563. {
  15564. anthro: {
  15565. height: math.unit(9 + 6 / 12, "feet"),
  15566. weight: math.unit(298, "lb"),
  15567. name: "Anthro",
  15568. image: {
  15569. source: "./media/characters/frifna/anthro.svg",
  15570. extra: 282 / 269,
  15571. bottom: 0.015
  15572. }
  15573. },
  15574. feral: {
  15575. height: math.unit(16 + 2 / 12, "feet"),
  15576. weight: math.unit(624, "lb"),
  15577. name: "Feral",
  15578. image: {
  15579. source: "./media/characters/frifna/feral.svg"
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Normal",
  15586. height: math.unit(9 + 6 / 12, "feet"),
  15587. default: true
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(6 + 2 / 12, "feet"),
  15596. weight: math.unit(168, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/elise/front.svg",
  15600. extra: 276 / 271
  15601. }
  15602. },
  15603. },
  15604. [
  15605. {
  15606. name: "Normal",
  15607. height: math.unit(6 + 2 / 12, "feet"),
  15608. default: true
  15609. },
  15610. ]
  15611. ))
  15612. characterMakers.push(() => makeCharacter(
  15613. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15614. {
  15615. front: {
  15616. height: math.unit(5 + 10 / 12, "feet"),
  15617. weight: math.unit(210, "lb"),
  15618. name: "Front",
  15619. image: {
  15620. source: "./media/characters/glade/front.svg",
  15621. extra: 258 / 247,
  15622. bottom: 0.008
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Normal",
  15629. height: math.unit(5 + 10 / 12, "feet"),
  15630. default: true
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15636. {
  15637. front: {
  15638. height: math.unit(5 + 10 / 12, "feet"),
  15639. weight: math.unit(129, "lb"),
  15640. name: "Front",
  15641. image: {
  15642. source: "./media/characters/rina/front.svg",
  15643. extra: 266 / 255,
  15644. bottom: 0.005
  15645. }
  15646. },
  15647. },
  15648. [
  15649. {
  15650. name: "Normal",
  15651. height: math.unit(5 + 10 / 12, "feet"),
  15652. default: true
  15653. },
  15654. ]
  15655. ))
  15656. characterMakers.push(() => makeCharacter(
  15657. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15658. {
  15659. front: {
  15660. height: math.unit(6 + 1 / 12, "feet"),
  15661. weight: math.unit(192, "lb"),
  15662. name: "Front",
  15663. image: {
  15664. source: "./media/characters/veronica/front.svg",
  15665. extra: 319 / 309,
  15666. bottom: 0.005
  15667. }
  15668. },
  15669. },
  15670. [
  15671. {
  15672. name: "Normal",
  15673. height: math.unit(6 + 1 / 12, "feet"),
  15674. default: true
  15675. },
  15676. ]
  15677. ))
  15678. characterMakers.push(() => makeCharacter(
  15679. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15680. {
  15681. front: {
  15682. height: math.unit(9 + 3 / 12, "feet"),
  15683. weight: math.unit(1100, "lb"),
  15684. name: "Front",
  15685. image: {
  15686. source: "./media/characters/braxton/front.svg",
  15687. extra: 1057 / 984,
  15688. bottom: 0.05
  15689. }
  15690. },
  15691. },
  15692. [
  15693. {
  15694. name: "Normal",
  15695. height: math.unit(9 + 3 / 12, "feet")
  15696. },
  15697. {
  15698. name: "Giant",
  15699. height: math.unit(300, "feet"),
  15700. default: true
  15701. },
  15702. {
  15703. name: "Macro",
  15704. height: math.unit(700, "feet")
  15705. },
  15706. {
  15707. name: "Megamacro",
  15708. height: math.unit(6000, "feet")
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(6 + 7 / 12, "feet"),
  15717. weight: math.unit(150, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/blue-feyonics/front.svg",
  15721. extra: 1403 / 1306,
  15722. bottom: 0.047
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(6 + 7 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(1.8, "meters"),
  15739. weight: math.unit(60, "kg"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/maxwell/front.svg",
  15743. extra: 2060 / 1873
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Micro",
  15750. height: math.unit(1, "mm")
  15751. },
  15752. {
  15753. name: "Normal",
  15754. height: math.unit(1.8, "meter"),
  15755. default: true
  15756. },
  15757. {
  15758. name: "Macro",
  15759. height: math.unit(30, "meters")
  15760. },
  15761. {
  15762. name: "Megamacro",
  15763. height: math.unit(10, "km")
  15764. },
  15765. ]
  15766. ))
  15767. characterMakers.push(() => makeCharacter(
  15768. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15769. {
  15770. front: {
  15771. height: math.unit(6, "feet"),
  15772. weight: math.unit(150, "lb"),
  15773. name: "Front",
  15774. image: {
  15775. source: "./media/characters/jack/front.svg",
  15776. extra: 1754 / 1640,
  15777. bottom: 0.01
  15778. }
  15779. },
  15780. },
  15781. [
  15782. {
  15783. name: "Normal",
  15784. height: math.unit(80000, "feet"),
  15785. default: true
  15786. },
  15787. {
  15788. name: "Max size",
  15789. height: math.unit(10, "lightyears")
  15790. },
  15791. ]
  15792. ))
  15793. characterMakers.push(() => makeCharacter(
  15794. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15795. {
  15796. urban: {
  15797. height: math.unit(5, "feet"),
  15798. weight: math.unit(240, "lb"),
  15799. name: "Urban",
  15800. image: {
  15801. source: "./media/characters/cafat/urban.svg",
  15802. extra: 1223/1126,
  15803. bottom: 205/1428
  15804. }
  15805. },
  15806. summer: {
  15807. height: math.unit(5, "feet"),
  15808. weight: math.unit(240, "lb"),
  15809. name: "Summer",
  15810. image: {
  15811. source: "./media/characters/cafat/summer.svg",
  15812. extra: 1223/1126,
  15813. bottom: 205/1428
  15814. }
  15815. },
  15816. winter: {
  15817. height: math.unit(5, "feet"),
  15818. weight: math.unit(240, "lb"),
  15819. name: "Winter",
  15820. image: {
  15821. source: "./media/characters/cafat/winter.svg",
  15822. extra: 1223/1126,
  15823. bottom: 205/1428
  15824. }
  15825. },
  15826. lingerie: {
  15827. height: math.unit(5, "feet"),
  15828. weight: math.unit(240, "lb"),
  15829. name: "Lingerie",
  15830. image: {
  15831. source: "./media/characters/cafat/lingerie.svg",
  15832. extra: 1223/1126,
  15833. bottom: 205/1428
  15834. }
  15835. },
  15836. upright: {
  15837. height: math.unit(6.3, "feet"),
  15838. weight: math.unit(240, "lb"),
  15839. name: "Upright",
  15840. image: {
  15841. source: "./media/characters/cafat/upright.svg",
  15842. bottom: 0.01
  15843. }
  15844. },
  15845. uprightFull: {
  15846. height: math.unit(6.3, "feet"),
  15847. weight: math.unit(240, "lb"),
  15848. name: "Upright (Full)",
  15849. image: {
  15850. source: "./media/characters/cafat/upright-full.svg",
  15851. bottom: 0.01
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Small",
  15858. height: math.unit(5, "feet"),
  15859. default: true
  15860. },
  15861. {
  15862. name: "Large",
  15863. height: math.unit(13, "feet")
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15869. {
  15870. front: {
  15871. height: math.unit(6, "feet"),
  15872. weight: math.unit(150, "lb"),
  15873. name: "Front",
  15874. image: {
  15875. source: "./media/characters/verin-raharra/front.svg",
  15876. extra: 5019 / 4835,
  15877. bottom: 0.023
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(7 + 5 / 12, "feet"),
  15885. default: true
  15886. },
  15887. {
  15888. name: "Upsized",
  15889. height: math.unit(20, "feet")
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(7, "feet"),
  15898. weight: math.unit(230, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/nakata/front.svg",
  15902. extra: 1.005,
  15903. bottom: 0.01
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(7, "feet"),
  15911. default: true
  15912. },
  15913. {
  15914. name: "Big",
  15915. height: math.unit(14, "feet")
  15916. },
  15917. {
  15918. name: "Macro",
  15919. height: math.unit(400, "feet")
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(4.91, "feet"),
  15928. weight: math.unit(100, "lb"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/lily/front.svg",
  15932. extra: 1585 / 1415,
  15933. bottom: 0.02
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Normal",
  15940. height: math.unit(4.91, "feet"),
  15941. default: true
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15947. {
  15948. laying: {
  15949. height: math.unit(4 + 4 / 12, "feet"),
  15950. weight: math.unit(600, "lb"),
  15951. name: "Laying",
  15952. image: {
  15953. source: "./media/characters/sheila/laying.svg",
  15954. extra: 1333 / 1265,
  15955. bottom: 0.16
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(4 + 4 / 12, "feet"),
  15963. default: true
  15964. },
  15965. ]
  15966. ))
  15967. characterMakers.push(() => makeCharacter(
  15968. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15969. {
  15970. front: {
  15971. height: math.unit(6, "feet"),
  15972. weight: math.unit(190, "lb"),
  15973. name: "Front",
  15974. image: {
  15975. source: "./media/characters/sax/front.svg",
  15976. extra: 1187 / 973,
  15977. bottom: 0.042
  15978. }
  15979. },
  15980. },
  15981. [
  15982. {
  15983. name: "Micro",
  15984. height: math.unit(4, "inches"),
  15985. default: true
  15986. },
  15987. ]
  15988. ))
  15989. characterMakers.push(() => makeCharacter(
  15990. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15991. {
  15992. front: {
  15993. height: math.unit(6, "feet"),
  15994. weight: math.unit(150, "lb"),
  15995. name: "Front",
  15996. image: {
  15997. source: "./media/characters/pandora/front.svg",
  15998. extra: 2720 / 2556,
  15999. bottom: 0.015
  16000. }
  16001. },
  16002. back: {
  16003. height: math.unit(6, "feet"),
  16004. weight: math.unit(150, "lb"),
  16005. name: "Back",
  16006. image: {
  16007. source: "./media/characters/pandora/back.svg",
  16008. extra: 2720 / 2556,
  16009. bottom: 0.01
  16010. }
  16011. },
  16012. beans: {
  16013. height: math.unit(6 / 8, "feet"),
  16014. name: "Beans",
  16015. image: {
  16016. source: "./media/characters/pandora/beans.svg"
  16017. }
  16018. },
  16019. collar: {
  16020. height: math.unit(0.31, "feet"),
  16021. name: "Collar",
  16022. image: {
  16023. source: "./media/characters/pandora/collar.svg"
  16024. }
  16025. },
  16026. skirt: {
  16027. height: math.unit(6, "feet"),
  16028. weight: math.unit(150, "lb"),
  16029. name: "Skirt",
  16030. image: {
  16031. source: "./media/characters/pandora/skirt.svg",
  16032. extra: 1622 / 1525,
  16033. bottom: 0.015
  16034. }
  16035. },
  16036. hoodie: {
  16037. height: math.unit(6, "feet"),
  16038. weight: math.unit(150, "lb"),
  16039. name: "Hoodie",
  16040. image: {
  16041. source: "./media/characters/pandora/hoodie.svg",
  16042. extra: 1622 / 1525,
  16043. bottom: 0.015
  16044. }
  16045. },
  16046. casual: {
  16047. height: math.unit(6, "feet"),
  16048. weight: math.unit(150, "lb"),
  16049. name: "Casual",
  16050. image: {
  16051. source: "./media/characters/pandora/casual.svg",
  16052. extra: 1622 / 1525,
  16053. bottom: 0.015
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Normal",
  16060. height: math.unit(6, "feet")
  16061. },
  16062. {
  16063. name: "Big Steppy",
  16064. height: math.unit(1, "km"),
  16065. default: true
  16066. },
  16067. {
  16068. name: "Galactic Steppy",
  16069. height: math.unit(2, "gigameters")
  16070. },
  16071. ]
  16072. ))
  16073. characterMakers.push(() => makeCharacter(
  16074. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16075. {
  16076. side: {
  16077. height: math.unit(10, "feet"),
  16078. weight: math.unit(800, "kg"),
  16079. name: "Side",
  16080. image: {
  16081. source: "./media/characters/venio-darcony/side.svg",
  16082. extra: 1373 / 1003,
  16083. bottom: 0.037
  16084. }
  16085. },
  16086. front: {
  16087. height: math.unit(19, "feet"),
  16088. weight: math.unit(800, "kg"),
  16089. name: "Front",
  16090. image: {
  16091. source: "./media/characters/venio-darcony/front.svg"
  16092. }
  16093. },
  16094. back: {
  16095. height: math.unit(19, "feet"),
  16096. weight: math.unit(800, "kg"),
  16097. name: "Back",
  16098. image: {
  16099. source: "./media/characters/venio-darcony/back.svg"
  16100. }
  16101. },
  16102. sideNsfw: {
  16103. height: math.unit(10, "feet"),
  16104. weight: math.unit(800, "kg"),
  16105. name: "Side (NSFW)",
  16106. image: {
  16107. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16108. extra: 1373 / 1003,
  16109. bottom: 0.037
  16110. }
  16111. },
  16112. frontNsfw: {
  16113. height: math.unit(19, "feet"),
  16114. weight: math.unit(800, "kg"),
  16115. name: "Front (NSFW)",
  16116. image: {
  16117. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16118. }
  16119. },
  16120. backNsfw: {
  16121. height: math.unit(19, "feet"),
  16122. weight: math.unit(800, "kg"),
  16123. name: "Back (NSFW)",
  16124. image: {
  16125. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16126. }
  16127. },
  16128. sideArmored: {
  16129. height: math.unit(10, "feet"),
  16130. weight: math.unit(800, "kg"),
  16131. name: "Side (Armored)",
  16132. image: {
  16133. source: "./media/characters/venio-darcony/side-armored.svg",
  16134. extra: 1373 / 1003,
  16135. bottom: 0.037
  16136. }
  16137. },
  16138. frontArmored: {
  16139. height: math.unit(19, "feet"),
  16140. weight: math.unit(900, "kg"),
  16141. name: "Front (Armored)",
  16142. image: {
  16143. source: "./media/characters/venio-darcony/front-armored.svg"
  16144. }
  16145. },
  16146. backArmored: {
  16147. height: math.unit(19, "feet"),
  16148. weight: math.unit(900, "kg"),
  16149. name: "Back (Armored)",
  16150. image: {
  16151. source: "./media/characters/venio-darcony/back-armored.svg"
  16152. }
  16153. },
  16154. sword: {
  16155. height: math.unit(10, "feet"),
  16156. weight: math.unit(50, "lb"),
  16157. name: "Sword",
  16158. image: {
  16159. source: "./media/characters/venio-darcony/sword.svg"
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(10, "feet")
  16167. },
  16168. {
  16169. name: "Macro",
  16170. height: math.unit(130, "feet"),
  16171. default: true
  16172. },
  16173. {
  16174. name: "Macro+",
  16175. height: math.unit(240, "feet")
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16181. {
  16182. front: {
  16183. height: math.unit(6, "feet"),
  16184. weight: math.unit(150, "lb"),
  16185. name: "Front",
  16186. image: {
  16187. source: "./media/characters/veski/front.svg",
  16188. extra: 1299 / 1225,
  16189. bottom: 0.04
  16190. }
  16191. },
  16192. back: {
  16193. height: math.unit(6, "feet"),
  16194. weight: math.unit(150, "lb"),
  16195. name: "Back",
  16196. image: {
  16197. source: "./media/characters/veski/back.svg",
  16198. extra: 1299 / 1225,
  16199. bottom: 0.008
  16200. }
  16201. },
  16202. maw: {
  16203. height: math.unit(1.5 * 1.21, "feet"),
  16204. name: "Maw",
  16205. image: {
  16206. source: "./media/characters/veski/maw.svg"
  16207. }
  16208. },
  16209. },
  16210. [
  16211. {
  16212. name: "Macro",
  16213. height: math.unit(2, "km"),
  16214. default: true
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16220. {
  16221. front: {
  16222. height: math.unit(5 + 7 / 12, "feet"),
  16223. name: "Front",
  16224. image: {
  16225. source: "./media/characters/isabelle/front.svg",
  16226. extra: 2130 / 1976,
  16227. bottom: 0.05
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Supermicro",
  16234. height: math.unit(10, "micrometers")
  16235. },
  16236. {
  16237. name: "Micro",
  16238. height: math.unit(1, "inch")
  16239. },
  16240. {
  16241. name: "Tiny",
  16242. height: math.unit(5, "inches")
  16243. },
  16244. {
  16245. name: "Standard",
  16246. height: math.unit(5 + 7 / 12, "inches")
  16247. },
  16248. {
  16249. name: "Macro",
  16250. height: math.unit(80, "meters"),
  16251. default: true
  16252. },
  16253. {
  16254. name: "Megamacro",
  16255. height: math.unit(250, "meters")
  16256. },
  16257. {
  16258. name: "Gigamacro",
  16259. height: math.unit(5, "km")
  16260. },
  16261. {
  16262. name: "Cosmic",
  16263. height: math.unit(2.5e6, "miles")
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16269. {
  16270. front: {
  16271. height: math.unit(6, "feet"),
  16272. weight: math.unit(150, "lb"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/hanzo/front.svg",
  16276. extra: 374 / 344,
  16277. bottom: 0.02
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(8, "feet"),
  16285. default: true
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(7, "feet"),
  16294. weight: math.unit(130, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/anna/front.svg",
  16298. extra: 169 / 145,
  16299. bottom: 0.06
  16300. }
  16301. },
  16302. full: {
  16303. height: math.unit(4.96, "feet"),
  16304. weight: math.unit(220, "lb"),
  16305. name: "Full",
  16306. image: {
  16307. source: "./media/characters/anna/full.svg",
  16308. extra: 138 / 114,
  16309. bottom: 0.15
  16310. }
  16311. },
  16312. tongue: {
  16313. height: math.unit(2.53, "feet"),
  16314. name: "Tongue",
  16315. image: {
  16316. source: "./media/characters/anna/tongue.svg"
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(7, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(7, "feet"),
  16333. weight: math.unit(150, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/ian-corvid/front.svg",
  16337. extra: 150 / 142,
  16338. bottom: 0.02
  16339. }
  16340. },
  16341. back: {
  16342. height: math.unit(7, "feet"),
  16343. weight: math.unit(150, "lb"),
  16344. name: "Back",
  16345. image: {
  16346. source: "./media/characters/ian-corvid/back.svg",
  16347. extra: 150 / 143,
  16348. bottom: 0.01
  16349. }
  16350. },
  16351. stomping: {
  16352. height: math.unit(7, "feet"),
  16353. weight: math.unit(150, "lb"),
  16354. name: "Stomping",
  16355. image: {
  16356. source: "./media/characters/ian-corvid/stomping.svg",
  16357. extra: 76 / 72
  16358. }
  16359. },
  16360. sitting: {
  16361. height: math.unit(7 / 1.8, "feet"),
  16362. weight: math.unit(150, "lb"),
  16363. name: "Sitting",
  16364. image: {
  16365. source: "./media/characters/ian-corvid/sitting.svg",
  16366. extra: 1400 / 1269,
  16367. bottom: 0.15
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Tiny Microw",
  16374. height: math.unit(1, "inch")
  16375. },
  16376. {
  16377. name: "Microw",
  16378. height: math.unit(6, "inches")
  16379. },
  16380. {
  16381. name: "Crow",
  16382. height: math.unit(7 + 1 / 12, "feet"),
  16383. default: true
  16384. },
  16385. {
  16386. name: "Macrow",
  16387. height: math.unit(176, "feet")
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(5 + 7 / 12, "feet"),
  16396. weight: math.unit(147, "lb"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/natalie-kellon/front.svg",
  16400. extra: 1214 / 1141,
  16401. bottom: 0.02
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Micro",
  16408. height: math.unit(1 / 16, "inch")
  16409. },
  16410. {
  16411. name: "Tiny",
  16412. height: math.unit(4, "inches")
  16413. },
  16414. {
  16415. name: "Normal",
  16416. height: math.unit(5 + 7 / 12, "feet"),
  16417. default: true
  16418. },
  16419. {
  16420. name: "Amazon",
  16421. height: math.unit(12, "feet")
  16422. },
  16423. {
  16424. name: "Giantess",
  16425. height: math.unit(160, "meters")
  16426. },
  16427. {
  16428. name: "Titaness",
  16429. height: math.unit(800, "meters")
  16430. },
  16431. ]
  16432. ))
  16433. characterMakers.push(() => makeCharacter(
  16434. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16435. {
  16436. front: {
  16437. height: math.unit(6, "feet"),
  16438. weight: math.unit(150, "lb"),
  16439. name: "Front",
  16440. image: {
  16441. source: "./media/characters/alluria/front.svg",
  16442. extra: 806 / 738,
  16443. bottom: 0.01
  16444. }
  16445. },
  16446. side: {
  16447. height: math.unit(6, "feet"),
  16448. weight: math.unit(150, "lb"),
  16449. name: "Side",
  16450. image: {
  16451. source: "./media/characters/alluria/side.svg",
  16452. extra: 800 / 750,
  16453. }
  16454. },
  16455. back: {
  16456. height: math.unit(6, "feet"),
  16457. weight: math.unit(150, "lb"),
  16458. name: "Back",
  16459. image: {
  16460. source: "./media/characters/alluria/back.svg",
  16461. extra: 806 / 738,
  16462. }
  16463. },
  16464. frontMaid: {
  16465. height: math.unit(6, "feet"),
  16466. weight: math.unit(150, "lb"),
  16467. name: "Front (Maid)",
  16468. image: {
  16469. source: "./media/characters/alluria/front-maid.svg",
  16470. extra: 806 / 738,
  16471. bottom: 0.01
  16472. }
  16473. },
  16474. sideMaid: {
  16475. height: math.unit(6, "feet"),
  16476. weight: math.unit(150, "lb"),
  16477. name: "Side (Maid)",
  16478. image: {
  16479. source: "./media/characters/alluria/side-maid.svg",
  16480. extra: 800 / 750,
  16481. bottom: 0.005
  16482. }
  16483. },
  16484. backMaid: {
  16485. height: math.unit(6, "feet"),
  16486. weight: math.unit(150, "lb"),
  16487. name: "Back (Maid)",
  16488. image: {
  16489. source: "./media/characters/alluria/back-maid.svg",
  16490. extra: 806 / 738,
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Micro",
  16497. height: math.unit(6, "inches"),
  16498. default: true
  16499. },
  16500. ]
  16501. ))
  16502. characterMakers.push(() => makeCharacter(
  16503. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16504. {
  16505. front: {
  16506. height: math.unit(6, "feet"),
  16507. weight: math.unit(150, "lb"),
  16508. name: "Front",
  16509. image: {
  16510. source: "./media/characters/kyle/front.svg",
  16511. extra: 1069 / 962,
  16512. bottom: 77.228 / 1727.45
  16513. }
  16514. },
  16515. },
  16516. [
  16517. {
  16518. name: "Macro",
  16519. height: math.unit(150, "feet"),
  16520. default: true
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16526. {
  16527. front: {
  16528. height: math.unit(6, "feet"),
  16529. weight: math.unit(300, "lb"),
  16530. name: "Front",
  16531. image: {
  16532. source: "./media/characters/duncan/front.svg",
  16533. extra: 1650 / 1482,
  16534. bottom: 0.05
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Macro",
  16541. height: math.unit(100, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(5 + 4 / 12, "feet"),
  16551. weight: math.unit(220, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/memory/front.svg",
  16555. extra: 3641 / 3545,
  16556. bottom: 0.03
  16557. }
  16558. },
  16559. back: {
  16560. height: math.unit(5 + 4 / 12, "feet"),
  16561. weight: math.unit(220, "lb"),
  16562. name: "Back",
  16563. image: {
  16564. source: "./media/characters/memory/back.svg",
  16565. extra: 3641 / 3545,
  16566. bottom: 0.025
  16567. }
  16568. },
  16569. frontSkirt: {
  16570. height: math.unit(5 + 4 / 12, "feet"),
  16571. weight: math.unit(220, "lb"),
  16572. name: "Front (Skirt)",
  16573. image: {
  16574. source: "./media/characters/memory/front-skirt.svg",
  16575. extra: 3641 / 3545,
  16576. bottom: 0.03
  16577. }
  16578. },
  16579. frontDress: {
  16580. height: math.unit(5 + 4 / 12, "feet"),
  16581. weight: math.unit(220, "lb"),
  16582. name: "Front (Dress)",
  16583. image: {
  16584. source: "./media/characters/memory/front-dress.svg",
  16585. extra: 3641 / 3545,
  16586. bottom: 0.03
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Micro",
  16593. height: math.unit(6, "inches"),
  16594. default: true
  16595. },
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(5 + 4 / 12, "feet")
  16599. },
  16600. ]
  16601. ))
  16602. characterMakers.push(() => makeCharacter(
  16603. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16604. {
  16605. front: {
  16606. height: math.unit(4 + 11 / 12, "feet"),
  16607. weight: math.unit(100, "lb"),
  16608. name: "Front",
  16609. image: {
  16610. source: "./media/characters/luno/front.svg",
  16611. extra: 1535 / 1487,
  16612. bottom: 0.03
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Micro",
  16619. height: math.unit(3, "inches")
  16620. },
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(4 + 11 / 12, "feet"),
  16624. default: true
  16625. },
  16626. {
  16627. name: "Macro",
  16628. height: math.unit(300, "feet")
  16629. },
  16630. {
  16631. name: "Megamacro",
  16632. height: math.unit(700, "miles")
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16638. {
  16639. front: {
  16640. height: math.unit(6 + 2 / 12, "feet"),
  16641. weight: math.unit(170, "lb"),
  16642. name: "Front",
  16643. image: {
  16644. source: "./media/characters/jamesy/front.svg",
  16645. extra: 440 / 382,
  16646. bottom: 0.005
  16647. }
  16648. },
  16649. },
  16650. [
  16651. {
  16652. name: "Micro",
  16653. height: math.unit(3, "inches")
  16654. },
  16655. {
  16656. name: "Normal",
  16657. height: math.unit(6 + 2 / 12, "feet"),
  16658. default: true
  16659. },
  16660. {
  16661. name: "Macro",
  16662. height: math.unit(300, "feet")
  16663. },
  16664. {
  16665. name: "Megamacro",
  16666. height: math.unit(700, "miles")
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16672. {
  16673. front: {
  16674. height: math.unit(6, "feet"),
  16675. weight: math.unit(160, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/mark/front.svg",
  16679. extra: 3300 / 3100,
  16680. bottom: 136.42 / 3440.47
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Macro",
  16687. height: math.unit(120, "meters")
  16688. },
  16689. {
  16690. name: "Bigger Macro",
  16691. height: math.unit(350, "meters")
  16692. },
  16693. {
  16694. name: "Megamacro",
  16695. height: math.unit(8, "km"),
  16696. default: true
  16697. },
  16698. {
  16699. name: "Continental",
  16700. height: math.unit(4550, "km")
  16701. },
  16702. {
  16703. name: "Planetary",
  16704. height: math.unit(65000, "km")
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16710. {
  16711. front: {
  16712. height: math.unit(6, "feet"),
  16713. weight: math.unit(400, "lb"),
  16714. name: "Front",
  16715. image: {
  16716. source: "./media/characters/mac/front.svg",
  16717. extra: 1048 / 987.7,
  16718. bottom: 60 / 1107.6,
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Macro",
  16725. height: math.unit(500, "feet"),
  16726. default: true
  16727. },
  16728. ]
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16732. {
  16733. front: {
  16734. height: math.unit(5 + 2 / 12, "feet"),
  16735. weight: math.unit(190, "lb"),
  16736. name: "Front",
  16737. image: {
  16738. source: "./media/characters/bari/front.svg",
  16739. extra: 3156 / 2880,
  16740. bottom: 0.03
  16741. }
  16742. },
  16743. back: {
  16744. height: math.unit(5 + 2 / 12, "feet"),
  16745. weight: math.unit(190, "lb"),
  16746. name: "Back",
  16747. image: {
  16748. source: "./media/characters/bari/back.svg",
  16749. extra: 3260 / 2834,
  16750. bottom: 0.025
  16751. }
  16752. },
  16753. frontPlush: {
  16754. height: math.unit(5 + 2 / 12, "feet"),
  16755. weight: math.unit(190, "lb"),
  16756. name: "Front (Plush)",
  16757. image: {
  16758. source: "./media/characters/bari/front-plush.svg",
  16759. extra: 1112 / 1061,
  16760. bottom: 0.002
  16761. }
  16762. },
  16763. },
  16764. [
  16765. {
  16766. name: "Micro",
  16767. height: math.unit(3, "inches")
  16768. },
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(5 + 2 / 12, "feet"),
  16772. default: true
  16773. },
  16774. {
  16775. name: "Macro",
  16776. height: math.unit(20, "feet")
  16777. },
  16778. ]
  16779. ))
  16780. characterMakers.push(() => makeCharacter(
  16781. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16782. {
  16783. front: {
  16784. height: math.unit(6 + 1 / 12, "feet"),
  16785. weight: math.unit(275, "lb"),
  16786. name: "Front",
  16787. image: {
  16788. source: "./media/characters/hunter-misha-raven/front.svg"
  16789. }
  16790. },
  16791. },
  16792. [
  16793. {
  16794. name: "Mortal",
  16795. height: math.unit(6 + 1 / 12, "feet")
  16796. },
  16797. {
  16798. name: "Divine",
  16799. height: math.unit(1.12134e34, "parsecs"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(6 + 3 / 12, "feet"),
  16809. weight: math.unit(220, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/max-calore/front.svg",
  16813. extra: 1700 / 1648,
  16814. bottom: 0.01
  16815. }
  16816. },
  16817. back: {
  16818. height: math.unit(6 + 3 / 12, "feet"),
  16819. weight: math.unit(220, "lb"),
  16820. name: "Back",
  16821. image: {
  16822. source: "./media/characters/max-calore/back.svg",
  16823. extra: 1700 / 1648,
  16824. bottom: 0.01
  16825. }
  16826. },
  16827. },
  16828. [
  16829. {
  16830. name: "Normal",
  16831. height: math.unit(6 + 3 / 12, "feet"),
  16832. default: true
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16838. {
  16839. side: {
  16840. height: math.unit(2 + 8 / 12, "feet"),
  16841. weight: math.unit(99, "lb"),
  16842. name: "Side",
  16843. image: {
  16844. source: "./media/characters/aspen/side.svg",
  16845. extra: 152 / 138,
  16846. bottom: 0.032
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Normal",
  16853. height: math.unit(2 + 8 / 12, "feet"),
  16854. default: true
  16855. },
  16856. ]
  16857. ))
  16858. characterMakers.push(() => makeCharacter(
  16859. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16860. {
  16861. side: {
  16862. height: math.unit(3 + 2 / 12, "feet"),
  16863. weight: math.unit(224, "lb"),
  16864. name: "Side",
  16865. image: {
  16866. source: "./media/characters/sheila-feral-wolf/side.svg",
  16867. extra: 179 / 166,
  16868. bottom: 0.03
  16869. }
  16870. },
  16871. },
  16872. [
  16873. {
  16874. name: "Normal",
  16875. height: math.unit(3 + 2 / 12, "feet"),
  16876. default: true
  16877. },
  16878. ]
  16879. ))
  16880. characterMakers.push(() => makeCharacter(
  16881. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16882. {
  16883. side: {
  16884. height: math.unit(1 + 9 / 12, "feet"),
  16885. weight: math.unit(38, "lb"),
  16886. name: "Side",
  16887. image: {
  16888. source: "./media/characters/michelle/side.svg",
  16889. extra: 147 / 136.7,
  16890. bottom: 0.03
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(1 + 9 / 12, "feet"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16904. {
  16905. front: {
  16906. height: math.unit(1 + 1 / 12, "feet"),
  16907. weight: math.unit(18, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/nino/front.svg"
  16911. }
  16912. },
  16913. },
  16914. [
  16915. {
  16916. name: "Normal",
  16917. height: math.unit(1 + 1 / 12, "feet"),
  16918. default: true
  16919. },
  16920. ]
  16921. ))
  16922. characterMakers.push(() => makeCharacter(
  16923. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16924. {
  16925. front: {
  16926. height: math.unit(1, "feet"),
  16927. weight: math.unit(16, "lb"),
  16928. name: "Front",
  16929. image: {
  16930. source: "./media/characters/viola/front.svg"
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(1, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16944. {
  16945. front: {
  16946. height: math.unit(6 + 5 / 12, "feet"),
  16947. weight: math.unit(580, "lb"),
  16948. name: "Front",
  16949. image: {
  16950. source: "./media/characters/atlas/front.svg",
  16951. extra: 298.5 / 290,
  16952. bottom: 0.015
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(6 + 5 / 12, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16966. {
  16967. side: {
  16968. height: math.unit(1 + 10 / 12, "feet"),
  16969. weight: math.unit(25, "lb"),
  16970. name: "Side",
  16971. image: {
  16972. source: "./media/characters/davy/side.svg",
  16973. extra: 200 / 170,
  16974. bottom: 0.01
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(1 + 10 / 12, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16988. {
  16989. side: {
  16990. height: math.unit(4 + 8 / 12, "feet"),
  16991. weight: math.unit(166, "lb"),
  16992. name: "Side",
  16993. image: {
  16994. source: "./media/characters/fiona/side.svg",
  16995. extra: 232 / 220,
  16996. bottom: 0.03
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(4 + 8 / 12, "feet"),
  17004. default: true
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17010. {
  17011. front: {
  17012. height: math.unit(2, "feet"),
  17013. weight: math.unit(62, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/lyla/front.svg",
  17017. bottom: 0.1
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(2, "feet"),
  17025. default: true
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17031. {
  17032. side: {
  17033. height: math.unit(1.8, "feet"),
  17034. weight: math.unit(44, "lb"),
  17035. name: "Side",
  17036. image: {
  17037. source: "./media/characters/perseus/side.svg",
  17038. bottom: 0.21
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(1.8, "feet"),
  17046. default: true
  17047. },
  17048. ]
  17049. ))
  17050. characterMakers.push(() => makeCharacter(
  17051. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17052. {
  17053. side: {
  17054. height: math.unit(4 + 2 / 12, "feet"),
  17055. weight: math.unit(20, "lb"),
  17056. name: "Side",
  17057. image: {
  17058. source: "./media/characters/remus/side.svg"
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Normal",
  17065. height: math.unit(4 + 2 / 12, "feet"),
  17066. default: true
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17072. {
  17073. front: {
  17074. height: math.unit(4 + 11 / 12, "feet"),
  17075. weight: math.unit(114, "lb"),
  17076. name: "Front",
  17077. image: {
  17078. source: "./media/characters/raf/front.svg",
  17079. bottom: 20.5 / 1863
  17080. }
  17081. },
  17082. side: {
  17083. height: math.unit(4 + 11 / 12, "feet"),
  17084. weight: math.unit(114, "lb"),
  17085. name: "Side",
  17086. image: {
  17087. source: "./media/characters/raf/side.svg",
  17088. bottom: 22 / 1822
  17089. }
  17090. },
  17091. },
  17092. [
  17093. {
  17094. name: "Micro",
  17095. height: math.unit(2, "inches")
  17096. },
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(4 + 11 / 12, "feet"),
  17100. default: true
  17101. },
  17102. {
  17103. name: "Macro",
  17104. height: math.unit(70, "feet")
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(1.5, "meters"),
  17113. weight: math.unit(68, "kg"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/liam-einarr/front.svg",
  17117. extra: 2822 / 2666
  17118. }
  17119. },
  17120. back: {
  17121. height: math.unit(1.5, "meters"),
  17122. weight: math.unit(68, "kg"),
  17123. name: "Back",
  17124. image: {
  17125. source: "./media/characters/liam-einarr/back.svg",
  17126. extra: 2822 / 2666,
  17127. bottom: 0.015
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(1.5, "meters"),
  17135. default: true
  17136. },
  17137. {
  17138. name: "Macro",
  17139. height: math.unit(150, "meters")
  17140. },
  17141. {
  17142. name: "Megamacro",
  17143. height: math.unit(35, "km")
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17149. {
  17150. front: {
  17151. height: math.unit(6, "feet"),
  17152. weight: math.unit(75, "kg"),
  17153. name: "Front",
  17154. image: {
  17155. source: "./media/characters/linda/front.svg",
  17156. extra: 930 / 874,
  17157. bottom: 0.004
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(6, "feet"),
  17165. default: true
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17171. {
  17172. front: {
  17173. height: math.unit(6 + 8 / 12, "feet"),
  17174. weight: math.unit(220, "lb"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/caylex/front.svg",
  17178. extra: 821 / 772,
  17179. bottom: 0.07
  17180. }
  17181. },
  17182. back: {
  17183. height: math.unit(6 + 8 / 12, "feet"),
  17184. weight: math.unit(220, "lb"),
  17185. name: "Back",
  17186. image: {
  17187. source: "./media/characters/caylex/back.svg",
  17188. extra: 821 / 772,
  17189. bottom: 0.022
  17190. }
  17191. },
  17192. hand: {
  17193. height: math.unit(1.25, "feet"),
  17194. name: "Hand",
  17195. image: {
  17196. source: "./media/characters/caylex/hand.svg"
  17197. }
  17198. },
  17199. foot: {
  17200. height: math.unit(1.6, "feet"),
  17201. name: "Foot",
  17202. image: {
  17203. source: "./media/characters/caylex/foot.svg"
  17204. }
  17205. },
  17206. armored: {
  17207. height: math.unit(6 + 8 / 12, "feet"),
  17208. weight: math.unit(250, "lb"),
  17209. name: "Armored",
  17210. image: {
  17211. source: "./media/characters/caylex/armored.svg",
  17212. extra: 1420 / 1310,
  17213. bottom: 0.045
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(6 + 8 / 12, "feet"),
  17221. default: true
  17222. },
  17223. {
  17224. name: "Normal+",
  17225. height: math.unit(12, "feet")
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(7 + 6 / 12, "feet"),
  17234. weight: math.unit(288, "lb"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/alana/front.svg",
  17238. extra: 679 / 653,
  17239. bottom: 22.5 / 701
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(7 + 6 / 12, "feet")
  17247. },
  17248. {
  17249. name: "Large",
  17250. height: math.unit(50, "feet")
  17251. },
  17252. {
  17253. name: "Macro",
  17254. height: math.unit(100, "feet"),
  17255. default: true
  17256. },
  17257. {
  17258. name: "Macro+",
  17259. height: math.unit(200, "feet")
  17260. },
  17261. ]
  17262. ))
  17263. characterMakers.push(() => makeCharacter(
  17264. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17265. {
  17266. front: {
  17267. height: math.unit(6 + 1 / 12, "feet"),
  17268. weight: math.unit(210, "lb"),
  17269. name: "Front",
  17270. image: {
  17271. source: "./media/characters/hasani/front.svg",
  17272. extra: 244 / 232,
  17273. bottom: 0.01
  17274. }
  17275. },
  17276. back: {
  17277. height: math.unit(6 + 1 / 12, "feet"),
  17278. weight: math.unit(210, "lb"),
  17279. name: "Back",
  17280. image: {
  17281. source: "./media/characters/hasani/back.svg",
  17282. extra: 244 / 232,
  17283. bottom: 0.01
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Normal",
  17290. height: math.unit(6 + 1 / 12, "feet")
  17291. },
  17292. {
  17293. name: "Macro",
  17294. height: math.unit(175, "feet"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(1.82, "meters"),
  17304. weight: math.unit(140, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/nita/front.svg",
  17308. extra: 2473 / 2363,
  17309. bottom: 0.01
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Normal",
  17316. height: math.unit(1.82, "m")
  17317. },
  17318. {
  17319. name: "Macro",
  17320. height: math.unit(300, "m")
  17321. },
  17322. {
  17323. name: "Mistake Canon",
  17324. height: math.unit(0.5, "miles"),
  17325. default: true
  17326. },
  17327. {
  17328. name: "Big Mistake",
  17329. height: math.unit(13, "miles")
  17330. },
  17331. {
  17332. name: "Playing God",
  17333. height: math.unit(2450, "miles")
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17339. {
  17340. front: {
  17341. height: math.unit(4, "feet"),
  17342. weight: math.unit(120, "lb"),
  17343. name: "Front",
  17344. image: {
  17345. source: "./media/characters/shiriko/front.svg",
  17346. extra: 970/934,
  17347. bottom: 5/975
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Normal",
  17354. height: math.unit(4, "feet"),
  17355. default: true
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17361. {
  17362. front: {
  17363. height: math.unit(6, "feet"),
  17364. name: "front",
  17365. image: {
  17366. source: "./media/characters/deja/front.svg",
  17367. extra: 926 / 840,
  17368. bottom: 0.07
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Planck Length",
  17375. height: math.unit(1.6e-35, "meters")
  17376. },
  17377. {
  17378. name: "Normal",
  17379. height: math.unit(30.48, "meters"),
  17380. default: true
  17381. },
  17382. {
  17383. name: "Universal",
  17384. height: math.unit(8.8e26, "meters")
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17390. {
  17391. side: {
  17392. height: math.unit(8, "feet"),
  17393. weight: math.unit(6300, "lb"),
  17394. name: "Side",
  17395. image: {
  17396. source: "./media/characters/anima/side.svg",
  17397. bottom: 0.035
  17398. }
  17399. },
  17400. },
  17401. [
  17402. {
  17403. name: "Normal",
  17404. height: math.unit(8, "feet"),
  17405. default: true
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17411. {
  17412. front: {
  17413. height: math.unit(8, "feet"),
  17414. weight: math.unit(350, "lb"),
  17415. name: "Front",
  17416. image: {
  17417. source: "./media/characters/bianca/front.svg",
  17418. extra: 234 / 225,
  17419. bottom: 0.03
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Normal",
  17426. height: math.unit(8, "feet"),
  17427. default: true
  17428. },
  17429. ]
  17430. ))
  17431. characterMakers.push(() => makeCharacter(
  17432. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17433. {
  17434. front: {
  17435. height: math.unit(6, "feet"),
  17436. weight: math.unit(150, "lb"),
  17437. name: "Front",
  17438. image: {
  17439. source: "./media/characters/adinia/front.svg",
  17440. extra: 1845 / 1672,
  17441. bottom: 0.02
  17442. }
  17443. },
  17444. back: {
  17445. height: math.unit(6, "feet"),
  17446. weight: math.unit(150, "lb"),
  17447. name: "Back",
  17448. image: {
  17449. source: "./media/characters/adinia/back.svg",
  17450. extra: 1845 / 1672,
  17451. bottom: 0.002
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(11 + 5 / 12, "feet"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17465. {
  17466. front: {
  17467. height: math.unit(3, "meters"),
  17468. weight: math.unit(200, "kg"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/lykasa/front.svg",
  17472. extra: 1076 / 976,
  17473. bottom: 0.06
  17474. }
  17475. },
  17476. },
  17477. [
  17478. {
  17479. name: "Normal",
  17480. height: math.unit(3, "meters")
  17481. },
  17482. {
  17483. name: "Kaiju",
  17484. height: math.unit(120, "meters"),
  17485. default: true
  17486. },
  17487. {
  17488. name: "Mega Kaiju",
  17489. height: math.unit(240, "km")
  17490. },
  17491. {
  17492. name: "Giga Kaiju",
  17493. height: math.unit(400, "megameters")
  17494. },
  17495. {
  17496. name: "Tera Kaiju",
  17497. height: math.unit(800, "gigameters")
  17498. },
  17499. {
  17500. name: "Kaiju Dragon Goddess",
  17501. height: math.unit(26, "zettaparsecs")
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17507. {
  17508. side: {
  17509. height: math.unit(283 / 124 * 6, "feet"),
  17510. weight: math.unit(35000, "lb"),
  17511. name: "Side",
  17512. image: {
  17513. source: "./media/characters/malfaren/side.svg",
  17514. extra: 2500 / 1010,
  17515. bottom: 0.01
  17516. }
  17517. },
  17518. front: {
  17519. height: math.unit(22.36, "feet"),
  17520. weight: math.unit(35000, "lb"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/malfaren/front.svg",
  17524. extra: 1631 / 1476,
  17525. bottom: 0.01
  17526. }
  17527. },
  17528. maw: {
  17529. height: math.unit(6.9, "feet"),
  17530. name: "Maw",
  17531. image: {
  17532. source: "./media/characters/malfaren/maw.svg"
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Big",
  17539. height: math.unit(283 / 162 * 6, "feet"),
  17540. },
  17541. {
  17542. name: "Bigger",
  17543. height: math.unit(283 / 124 * 6, "feet")
  17544. },
  17545. {
  17546. name: "Massive",
  17547. height: math.unit(283 / 92 * 6, "feet"),
  17548. default: true
  17549. },
  17550. {
  17551. name: "👀💦",
  17552. height: math.unit(283 / 73 * 6, "feet"),
  17553. },
  17554. ]
  17555. ))
  17556. characterMakers.push(() => makeCharacter(
  17557. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17558. {
  17559. front: {
  17560. height: math.unit(1.7, "m"),
  17561. weight: math.unit(70, "kg"),
  17562. name: "Front",
  17563. image: {
  17564. source: "./media/characters/kernel/front.svg",
  17565. extra: 222 / 210,
  17566. bottom: 0.007
  17567. }
  17568. },
  17569. },
  17570. [
  17571. {
  17572. name: "Nano",
  17573. height: math.unit(17, "micrometers")
  17574. },
  17575. {
  17576. name: "Micro",
  17577. height: math.unit(1.7, "mm")
  17578. },
  17579. {
  17580. name: "Small",
  17581. height: math.unit(1.7, "cm")
  17582. },
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(1.7, "m"),
  17586. default: true
  17587. },
  17588. ]
  17589. ))
  17590. characterMakers.push(() => makeCharacter(
  17591. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17592. {
  17593. front: {
  17594. height: math.unit(1.75, "meters"),
  17595. weight: math.unit(65, "kg"),
  17596. name: "Front",
  17597. image: {
  17598. source: "./media/characters/jayne-folest/front.svg",
  17599. extra: 2115 / 2007,
  17600. bottom: 0.02
  17601. }
  17602. },
  17603. back: {
  17604. height: math.unit(1.75, "meters"),
  17605. weight: math.unit(65, "kg"),
  17606. name: "Back",
  17607. image: {
  17608. source: "./media/characters/jayne-folest/back.svg",
  17609. extra: 2115 / 2007,
  17610. bottom: 0.005
  17611. }
  17612. },
  17613. frontClothed: {
  17614. height: math.unit(1.75, "meters"),
  17615. weight: math.unit(65, "kg"),
  17616. name: "Front (Clothed)",
  17617. image: {
  17618. source: "./media/characters/jayne-folest/front-clothed.svg",
  17619. extra: 2115 / 2007,
  17620. bottom: 0.035
  17621. }
  17622. },
  17623. hand: {
  17624. height: math.unit(1 / 1.260, "feet"),
  17625. name: "Hand",
  17626. image: {
  17627. source: "./media/characters/jayne-folest/hand.svg"
  17628. }
  17629. },
  17630. foot: {
  17631. height: math.unit(1 / 0.918, "feet"),
  17632. name: "Foot",
  17633. image: {
  17634. source: "./media/characters/jayne-folest/foot.svg"
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Micro",
  17641. height: math.unit(4, "cm")
  17642. },
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(1.75, "meters")
  17646. },
  17647. {
  17648. name: "Macro",
  17649. height: math.unit(47.5, "meters"),
  17650. default: true
  17651. },
  17652. ]
  17653. ))
  17654. characterMakers.push(() => makeCharacter(
  17655. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17656. {
  17657. front: {
  17658. height: math.unit(180, "cm"),
  17659. weight: math.unit(70, "kg"),
  17660. name: "Front",
  17661. image: {
  17662. source: "./media/characters/algier/front.svg",
  17663. extra: 596 / 572,
  17664. bottom: 0.04
  17665. }
  17666. },
  17667. back: {
  17668. height: math.unit(180, "cm"),
  17669. weight: math.unit(70, "kg"),
  17670. name: "Back",
  17671. image: {
  17672. source: "./media/characters/algier/back.svg",
  17673. extra: 596 / 572,
  17674. bottom: 0.025
  17675. }
  17676. },
  17677. frontdressed: {
  17678. height: math.unit(180, "cm"),
  17679. weight: math.unit(150, "kg"),
  17680. name: "Front-dressed",
  17681. image: {
  17682. source: "./media/characters/algier/front-dressed.svg",
  17683. extra: 596 / 572,
  17684. bottom: 0.038
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Micro",
  17691. height: math.unit(5, "cm")
  17692. },
  17693. {
  17694. name: "Normal",
  17695. height: math.unit(180, "cm"),
  17696. default: true
  17697. },
  17698. {
  17699. name: "Macro",
  17700. height: math.unit(64, "m")
  17701. },
  17702. ]
  17703. ))
  17704. characterMakers.push(() => makeCharacter(
  17705. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17706. {
  17707. upright: {
  17708. height: math.unit(7, "feet"),
  17709. weight: math.unit(300, "lb"),
  17710. name: "Upright",
  17711. image: {
  17712. source: "./media/characters/pretzel/upright.svg",
  17713. extra: 534 / 522,
  17714. bottom: 0.065
  17715. }
  17716. },
  17717. sprawling: {
  17718. height: math.unit(3.75, "feet"),
  17719. weight: math.unit(300, "lb"),
  17720. name: "Sprawling",
  17721. image: {
  17722. source: "./media/characters/pretzel/sprawling.svg",
  17723. extra: 314 / 281,
  17724. bottom: 0.1
  17725. }
  17726. },
  17727. tongue: {
  17728. height: math.unit(2, "feet"),
  17729. name: "Tongue",
  17730. image: {
  17731. source: "./media/characters/pretzel/tongue.svg"
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(7, "feet"),
  17739. default: true
  17740. },
  17741. {
  17742. name: "Oversized",
  17743. height: math.unit(15, "feet")
  17744. },
  17745. {
  17746. name: "Huge",
  17747. height: math.unit(30, "feet")
  17748. },
  17749. {
  17750. name: "Macro",
  17751. height: math.unit(250, "feet")
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17757. {
  17758. sideFront: {
  17759. height: math.unit(5 + 2 / 12, "feet"),
  17760. weight: math.unit(120, "lb"),
  17761. name: "Front Side",
  17762. image: {
  17763. source: "./media/characters/roxi/side-front.svg",
  17764. extra: 2924 / 2717,
  17765. bottom: 0.08
  17766. }
  17767. },
  17768. sideBack: {
  17769. height: math.unit(5 + 2 / 12, "feet"),
  17770. weight: math.unit(120, "lb"),
  17771. name: "Back Side",
  17772. image: {
  17773. source: "./media/characters/roxi/side-back.svg",
  17774. extra: 2904 / 2693,
  17775. bottom: 0.06
  17776. }
  17777. },
  17778. front: {
  17779. height: math.unit(5 + 2 / 12, "feet"),
  17780. weight: math.unit(120, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/roxi/front.svg",
  17784. extra: 2028 / 1907,
  17785. bottom: 0.01
  17786. }
  17787. },
  17788. frontAlt: {
  17789. height: math.unit(5 + 2 / 12, "feet"),
  17790. weight: math.unit(120, "lb"),
  17791. name: "Front (Alt)",
  17792. image: {
  17793. source: "./media/characters/roxi/front-alt.svg",
  17794. extra: 1828 / 1798,
  17795. bottom: 0.01
  17796. }
  17797. },
  17798. sitting: {
  17799. height: math.unit(2.8, "feet"),
  17800. weight: math.unit(120, "lb"),
  17801. name: "Sitting",
  17802. image: {
  17803. source: "./media/characters/roxi/sitting.svg",
  17804. extra: 2660 / 2462,
  17805. bottom: 0.1
  17806. }
  17807. },
  17808. },
  17809. [
  17810. {
  17811. name: "Normal",
  17812. height: math.unit(5 + 2 / 12, "feet"),
  17813. default: true
  17814. },
  17815. ]
  17816. ))
  17817. characterMakers.push(() => makeCharacter(
  17818. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17819. {
  17820. side: {
  17821. height: math.unit(55, "feet"),
  17822. weight: math.unit(153, "tons"),
  17823. name: "Side",
  17824. image: {
  17825. source: "./media/characters/shadow/side.svg",
  17826. extra: 701 / 628,
  17827. bottom: 0.02
  17828. }
  17829. },
  17830. flying: {
  17831. height: math.unit(145, "feet"),
  17832. weight: math.unit(153, "tons"),
  17833. name: "Flying",
  17834. image: {
  17835. source: "./media/characters/shadow/flying.svg"
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(55, "feet"),
  17843. default: true
  17844. },
  17845. ]
  17846. ))
  17847. characterMakers.push(() => makeCharacter(
  17848. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17849. {
  17850. front: {
  17851. height: math.unit(6, "feet"),
  17852. weight: math.unit(200, "lb"),
  17853. name: "Front",
  17854. image: {
  17855. source: "./media/characters/marcie/front.svg",
  17856. extra: 960 / 876,
  17857. bottom: 58 / 1017.87
  17858. }
  17859. },
  17860. },
  17861. [
  17862. {
  17863. name: "Macro",
  17864. height: math.unit(1, "mile"),
  17865. default: true
  17866. },
  17867. ]
  17868. ))
  17869. characterMakers.push(() => makeCharacter(
  17870. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17871. {
  17872. front: {
  17873. height: math.unit(7, "feet"),
  17874. weight: math.unit(200, "lb"),
  17875. name: "Front",
  17876. image: {
  17877. source: "./media/characters/kachina/front.svg",
  17878. extra: 1290.68 / 1119,
  17879. bottom: 36.5 / 1327.18
  17880. }
  17881. },
  17882. },
  17883. [
  17884. {
  17885. name: "Normal",
  17886. height: math.unit(7, "feet"),
  17887. default: true
  17888. },
  17889. ]
  17890. ))
  17891. characterMakers.push(() => makeCharacter(
  17892. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17893. {
  17894. looking: {
  17895. height: math.unit(2, "meters"),
  17896. weight: math.unit(300, "kg"),
  17897. name: "Looking",
  17898. image: {
  17899. source: "./media/characters/kash/looking.svg",
  17900. extra: 474 / 344,
  17901. bottom: 0.03
  17902. }
  17903. },
  17904. side: {
  17905. height: math.unit(2, "meters"),
  17906. weight: math.unit(300, "kg"),
  17907. name: "Side",
  17908. image: {
  17909. source: "./media/characters/kash/side.svg",
  17910. extra: 302 / 251,
  17911. bottom: 0.03
  17912. }
  17913. },
  17914. front: {
  17915. height: math.unit(2, "meters"),
  17916. weight: math.unit(300, "kg"),
  17917. name: "Front",
  17918. image: {
  17919. source: "./media/characters/kash/front.svg",
  17920. extra: 495 / 360,
  17921. bottom: 0.015
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Normal",
  17928. height: math.unit(2, "meters"),
  17929. default: true
  17930. },
  17931. {
  17932. name: "Big",
  17933. height: math.unit(3, "meters")
  17934. },
  17935. {
  17936. name: "Large",
  17937. height: math.unit(5, "meters")
  17938. },
  17939. ]
  17940. ))
  17941. characterMakers.push(() => makeCharacter(
  17942. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17943. {
  17944. feeding: {
  17945. height: math.unit(6.7, "feet"),
  17946. weight: math.unit(350, "lb"),
  17947. name: "Feeding",
  17948. image: {
  17949. source: "./media/characters/lalim/feeding.svg",
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Normal",
  17956. height: math.unit(6.7, "feet"),
  17957. default: true
  17958. },
  17959. ]
  17960. ))
  17961. characterMakers.push(() => makeCharacter(
  17962. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17963. {
  17964. front: {
  17965. height: math.unit(9.5, "feet"),
  17966. weight: math.unit(600, "lb"),
  17967. name: "Front",
  17968. image: {
  17969. source: "./media/characters/de'vout/front.svg",
  17970. extra: 1443 / 1328,
  17971. bottom: 0.025
  17972. }
  17973. },
  17974. back: {
  17975. height: math.unit(9.5, "feet"),
  17976. weight: math.unit(600, "lb"),
  17977. name: "Back",
  17978. image: {
  17979. source: "./media/characters/de'vout/back.svg",
  17980. extra: 1443 / 1328
  17981. }
  17982. },
  17983. frontDressed: {
  17984. height: math.unit(9.5, "feet"),
  17985. weight: math.unit(600, "lb"),
  17986. name: "Front (Dressed",
  17987. image: {
  17988. source: "./media/characters/de'vout/front-dressed.svg",
  17989. extra: 1443 / 1328,
  17990. bottom: 0.025
  17991. }
  17992. },
  17993. backDressed: {
  17994. height: math.unit(9.5, "feet"),
  17995. weight: math.unit(600, "lb"),
  17996. name: "Back (Dressed",
  17997. image: {
  17998. source: "./media/characters/de'vout/back-dressed.svg",
  17999. extra: 1443 / 1328
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Normal",
  18006. height: math.unit(9.5, "feet"),
  18007. default: true
  18008. },
  18009. ]
  18010. ))
  18011. characterMakers.push(() => makeCharacter(
  18012. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18013. {
  18014. front: {
  18015. height: math.unit(8, "feet"),
  18016. weight: math.unit(225, "lb"),
  18017. name: "Front",
  18018. image: {
  18019. source: "./media/characters/talana/front.svg",
  18020. extra: 1410 / 1300,
  18021. bottom: 0.015
  18022. }
  18023. },
  18024. frontDressed: {
  18025. height: math.unit(8, "feet"),
  18026. weight: math.unit(225, "lb"),
  18027. name: "Front (Dressed",
  18028. image: {
  18029. source: "./media/characters/talana/front-dressed.svg",
  18030. extra: 1410 / 1300,
  18031. bottom: 0.015
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(8, "feet"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18045. {
  18046. side: {
  18047. height: math.unit(7.2, "feet"),
  18048. weight: math.unit(150, "lb"),
  18049. name: "Side",
  18050. image: {
  18051. source: "./media/characters/xeauvok/side.svg",
  18052. extra: 1975 / 1523,
  18053. bottom: 0.07
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(7.2, "feet"),
  18061. default: true
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18067. {
  18068. side: {
  18069. height: math.unit(10, "feet"),
  18070. weight: math.unit(900, "kg"),
  18071. name: "Side",
  18072. image: {
  18073. source: "./media/characters/zara/side.svg",
  18074. extra: 504 / 498
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(10, "feet"),
  18082. default: true
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18088. {
  18089. side: {
  18090. height: math.unit(6, "feet"),
  18091. weight: math.unit(150, "lb"),
  18092. name: "Side",
  18093. image: {
  18094. source: "./media/characters/richard-dragon/side.svg",
  18095. extra: 845 / 340,
  18096. bottom: 0.017
  18097. }
  18098. },
  18099. maw: {
  18100. height: math.unit(2.97, "feet"),
  18101. name: "Maw",
  18102. image: {
  18103. source: "./media/characters/richard-dragon/maw.svg"
  18104. }
  18105. },
  18106. },
  18107. [
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18112. {
  18113. front: {
  18114. height: math.unit(4, "feet"),
  18115. weight: math.unit(100, "lb"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/richard-smeargle/front.svg",
  18119. extra: 2952 / 2820,
  18120. bottom: 0.028
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(4, "feet"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Dynamax",
  18132. height: math.unit(20, "meters")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(6, "feet"),
  18141. weight: math.unit(110, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/klay/front.svg",
  18145. extra: 962 / 883,
  18146. bottom: 0.04
  18147. }
  18148. },
  18149. back: {
  18150. height: math.unit(6, "feet"),
  18151. weight: math.unit(110, "lb"),
  18152. name: "Back",
  18153. image: {
  18154. source: "./media/characters/klay/back.svg",
  18155. extra: 962 / 883
  18156. }
  18157. },
  18158. beans: {
  18159. height: math.unit(1.15, "feet"),
  18160. name: "Beans",
  18161. image: {
  18162. source: "./media/characters/klay/beans.svg"
  18163. }
  18164. },
  18165. },
  18166. [
  18167. {
  18168. name: "Micro",
  18169. height: math.unit(6, "inches")
  18170. },
  18171. {
  18172. name: "Mini",
  18173. height: math.unit(3, "feet")
  18174. },
  18175. {
  18176. name: "Normal",
  18177. height: math.unit(6, "feet"),
  18178. default: true
  18179. },
  18180. {
  18181. name: "Big",
  18182. height: math.unit(25, "feet")
  18183. },
  18184. {
  18185. name: "Macro",
  18186. height: math.unit(100, "feet")
  18187. },
  18188. {
  18189. name: "Megamacro",
  18190. height: math.unit(400, "feet")
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18196. {
  18197. front: {
  18198. height: math.unit(6, "feet"),
  18199. weight: math.unit(160, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/marcus/front.svg",
  18203. extra: 734 / 676,
  18204. bottom: 0.03
  18205. }
  18206. },
  18207. },
  18208. [
  18209. {
  18210. name: "Little",
  18211. height: math.unit(6, "feet")
  18212. },
  18213. {
  18214. name: "Normal",
  18215. height: math.unit(110, "feet"),
  18216. default: true
  18217. },
  18218. {
  18219. name: "Macro",
  18220. height: math.unit(250, "feet")
  18221. },
  18222. {
  18223. name: "Megamacro",
  18224. height: math.unit(1000, "feet")
  18225. },
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18230. {
  18231. front: {
  18232. height: math.unit(7, "feet"),
  18233. weight: math.unit(275, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/claude-delroute/front.svg",
  18237. extra: 230 / 214,
  18238. bottom: 0.007
  18239. }
  18240. },
  18241. side: {
  18242. height: math.unit(7, "feet"),
  18243. weight: math.unit(275, "lb"),
  18244. name: "Side",
  18245. image: {
  18246. source: "./media/characters/claude-delroute/side.svg",
  18247. extra: 222 / 214,
  18248. bottom: 0.01
  18249. }
  18250. },
  18251. back: {
  18252. height: math.unit(7, "feet"),
  18253. weight: math.unit(275, "lb"),
  18254. name: "Back",
  18255. image: {
  18256. source: "./media/characters/claude-delroute/back.svg",
  18257. extra: 230 / 214,
  18258. bottom: 0.015
  18259. }
  18260. },
  18261. maw: {
  18262. height: math.unit(0.6407, "meters"),
  18263. name: "Maw",
  18264. image: {
  18265. source: "./media/characters/claude-delroute/maw.svg"
  18266. }
  18267. },
  18268. },
  18269. [
  18270. {
  18271. name: "Normal",
  18272. height: math.unit(7, "feet"),
  18273. default: true
  18274. },
  18275. {
  18276. name: "Lorge",
  18277. height: math.unit(20, "feet")
  18278. },
  18279. ]
  18280. ))
  18281. characterMakers.push(() => makeCharacter(
  18282. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18283. {
  18284. front: {
  18285. height: math.unit(8 + 4 / 12, "feet"),
  18286. weight: math.unit(600, "lb"),
  18287. name: "Front",
  18288. image: {
  18289. source: "./media/characters/dragonien/front.svg",
  18290. extra: 100 / 94,
  18291. bottom: 3.3 / 103.3445
  18292. }
  18293. },
  18294. back: {
  18295. height: math.unit(8 + 4 / 12, "feet"),
  18296. weight: math.unit(600, "lb"),
  18297. name: "Back",
  18298. image: {
  18299. source: "./media/characters/dragonien/back.svg",
  18300. extra: 776 / 746,
  18301. bottom: 6.4 / 782.0616
  18302. }
  18303. },
  18304. foot: {
  18305. height: math.unit(1.54, "feet"),
  18306. name: "Foot",
  18307. image: {
  18308. source: "./media/characters/dragonien/foot.svg",
  18309. }
  18310. },
  18311. },
  18312. [
  18313. {
  18314. name: "Normal",
  18315. height: math.unit(8 + 4 / 12, "feet"),
  18316. default: true
  18317. },
  18318. {
  18319. name: "Macro",
  18320. height: math.unit(200, "feet")
  18321. },
  18322. {
  18323. name: "Megamacro",
  18324. height: math.unit(1, "mile")
  18325. },
  18326. {
  18327. name: "Gigamacro",
  18328. height: math.unit(1000, "miles")
  18329. },
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18334. {
  18335. front: {
  18336. height: math.unit(5 + 2 / 12, "feet"),
  18337. weight: math.unit(110, "lb"),
  18338. name: "Front",
  18339. image: {
  18340. source: "./media/characters/desta/front.svg",
  18341. extra: 767 / 726,
  18342. bottom: 11.7 / 779
  18343. }
  18344. },
  18345. back: {
  18346. height: math.unit(5 + 2 / 12, "feet"),
  18347. weight: math.unit(110, "lb"),
  18348. name: "Back",
  18349. image: {
  18350. source: "./media/characters/desta/back.svg",
  18351. extra: 777 / 728,
  18352. bottom: 6 / 784
  18353. }
  18354. },
  18355. frontAlt: {
  18356. height: math.unit(5 + 2 / 12, "feet"),
  18357. weight: math.unit(110, "lb"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/desta/front-alt.svg",
  18361. extra: 1482 / 1417
  18362. }
  18363. },
  18364. side: {
  18365. height: math.unit(5 + 2 / 12, "feet"),
  18366. weight: math.unit(110, "lb"),
  18367. name: "Side",
  18368. image: {
  18369. source: "./media/characters/desta/side.svg",
  18370. extra: 2579 / 2491,
  18371. bottom: 0.053
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Micro",
  18378. height: math.unit(6, "inches")
  18379. },
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(5 + 2 / 12, "feet"),
  18383. default: true
  18384. },
  18385. {
  18386. name: "Macro",
  18387. height: math.unit(62, "feet")
  18388. },
  18389. {
  18390. name: "Megamacro",
  18391. height: math.unit(1800, "feet")
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(10, "feet"),
  18400. weight: math.unit(700, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/storm-alystar/front.svg",
  18404. extra: 2112 / 1898,
  18405. bottom: 0.034
  18406. }
  18407. },
  18408. },
  18409. [
  18410. {
  18411. name: "Micro",
  18412. height: math.unit(3.5, "inches")
  18413. },
  18414. {
  18415. name: "Normal",
  18416. height: math.unit(10, "feet"),
  18417. default: true
  18418. },
  18419. {
  18420. name: "Macro",
  18421. height: math.unit(400, "feet")
  18422. },
  18423. {
  18424. name: "Deific",
  18425. height: math.unit(60, "miles")
  18426. },
  18427. ]
  18428. ))
  18429. characterMakers.push(() => makeCharacter(
  18430. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18431. {
  18432. front: {
  18433. height: math.unit(2.35, "meters"),
  18434. weight: math.unit(119, "kg"),
  18435. name: "Front",
  18436. image: {
  18437. source: "./media/characters/ilia/front.svg",
  18438. extra: 1285 / 1255,
  18439. bottom: 0.06
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(2.35, "meters")
  18447. },
  18448. {
  18449. name: "Macro",
  18450. height: math.unit(140, "meters"),
  18451. default: true
  18452. },
  18453. {
  18454. name: "Megamacro",
  18455. height: math.unit(100, "miles")
  18456. },
  18457. ]
  18458. ))
  18459. characterMakers.push(() => makeCharacter(
  18460. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18461. {
  18462. front: {
  18463. height: math.unit(6 + 5 / 12, "feet"),
  18464. weight: math.unit(190, "lb"),
  18465. name: "Front",
  18466. image: {
  18467. source: "./media/characters/kingdead/front.svg",
  18468. extra: 1228 / 1177
  18469. }
  18470. },
  18471. },
  18472. [
  18473. {
  18474. name: "Micro",
  18475. height: math.unit(7, "inches")
  18476. },
  18477. {
  18478. name: "Normal",
  18479. height: math.unit(6 + 5 / 12, "feet")
  18480. },
  18481. {
  18482. name: "Macro",
  18483. height: math.unit(150, "feet"),
  18484. default: true
  18485. },
  18486. {
  18487. name: "Megamacro",
  18488. height: math.unit(200, "miles")
  18489. },
  18490. ]
  18491. ))
  18492. characterMakers.push(() => makeCharacter(
  18493. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18494. {
  18495. front: {
  18496. height: math.unit(8, "feet"),
  18497. weight: math.unit(600, "lb"),
  18498. name: "Front",
  18499. image: {
  18500. source: "./media/characters/kyrehx/front.svg",
  18501. extra: 1195 / 1095,
  18502. bottom: 0.034
  18503. }
  18504. },
  18505. },
  18506. [
  18507. {
  18508. name: "Micro",
  18509. height: math.unit(2, "inches")
  18510. },
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(8, "feet"),
  18514. default: true
  18515. },
  18516. {
  18517. name: "Macro",
  18518. height: math.unit(255, "feet")
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18524. {
  18525. front: {
  18526. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18527. weight: math.unit(184, "lb"),
  18528. name: "Front",
  18529. image: {
  18530. source: "./media/characters/xang/front.svg",
  18531. extra: 845 / 755
  18532. }
  18533. },
  18534. },
  18535. [
  18536. {
  18537. name: "Normal",
  18538. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18539. default: true
  18540. },
  18541. {
  18542. name: "Macro",
  18543. height: math.unit(0.935 * 146, "feet")
  18544. },
  18545. {
  18546. name: "Megamacro",
  18547. height: math.unit(0.935 * 3, "miles")
  18548. },
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18553. {
  18554. frontDressed: {
  18555. height: math.unit(5 + 7 / 12, "feet"),
  18556. weight: math.unit(140, "lb"),
  18557. name: "Front (Dressed)",
  18558. image: {
  18559. source: "./media/characters/doc-weardno/front-dressed.svg",
  18560. extra: 263 / 234
  18561. }
  18562. },
  18563. backDressed: {
  18564. height: math.unit(5 + 7 / 12, "feet"),
  18565. weight: math.unit(140, "lb"),
  18566. name: "Back (Dressed)",
  18567. image: {
  18568. source: "./media/characters/doc-weardno/back-dressed.svg",
  18569. extra: 266 / 238
  18570. }
  18571. },
  18572. front: {
  18573. height: math.unit(5 + 7 / 12, "feet"),
  18574. weight: math.unit(140, "lb"),
  18575. name: "Front",
  18576. image: {
  18577. source: "./media/characters/doc-weardno/front.svg",
  18578. extra: 254 / 233
  18579. }
  18580. },
  18581. },
  18582. [
  18583. {
  18584. name: "Micro",
  18585. height: math.unit(3, "inches")
  18586. },
  18587. {
  18588. name: "Normal",
  18589. height: math.unit(5 + 7 / 12, "feet"),
  18590. default: true
  18591. },
  18592. {
  18593. name: "Macro",
  18594. height: math.unit(25, "feet")
  18595. },
  18596. {
  18597. name: "Megamacro",
  18598. height: math.unit(2, "miles")
  18599. },
  18600. ]
  18601. ))
  18602. characterMakers.push(() => makeCharacter(
  18603. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18604. {
  18605. front: {
  18606. height: math.unit(6 + 2 / 12, "feet"),
  18607. weight: math.unit(153, "lb"),
  18608. name: "Front",
  18609. image: {
  18610. source: "./media/characters/seth-whilst/front.svg",
  18611. bottom: 0.07
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Micro",
  18618. height: math.unit(5, "inches")
  18619. },
  18620. {
  18621. name: "Normal",
  18622. height: math.unit(6 + 2 / 12, "feet"),
  18623. default: true
  18624. },
  18625. ]
  18626. ))
  18627. characterMakers.push(() => makeCharacter(
  18628. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18629. {
  18630. front: {
  18631. height: math.unit(3, "inches"),
  18632. weight: math.unit(8, "grams"),
  18633. name: "Front",
  18634. image: {
  18635. source: "./media/characters/pocket-jabari/front.svg",
  18636. extra: 1024 / 974,
  18637. bottom: 0.039
  18638. }
  18639. },
  18640. },
  18641. [
  18642. {
  18643. name: "Minimicro",
  18644. height: math.unit(8, "mm")
  18645. },
  18646. {
  18647. name: "Micro",
  18648. height: math.unit(3, "inches"),
  18649. default: true
  18650. },
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(3, "feet")
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18659. {
  18660. front: {
  18661. height: math.unit(15, "feet"),
  18662. weight: math.unit(3280, "lb"),
  18663. name: "Front",
  18664. image: {
  18665. source: "./media/characters/sapphy/front.svg",
  18666. extra: 671 / 577,
  18667. bottom: 0.085
  18668. }
  18669. },
  18670. back: {
  18671. height: math.unit(15, "feet"),
  18672. weight: math.unit(3280, "lb"),
  18673. name: "Back",
  18674. image: {
  18675. source: "./media/characters/sapphy/back.svg",
  18676. extra: 631 / 607,
  18677. bottom: 0.045
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(15, "feet")
  18685. },
  18686. {
  18687. name: "Casual Macro",
  18688. height: math.unit(120, "feet")
  18689. },
  18690. {
  18691. name: "Macro",
  18692. height: math.unit(2150, "feet"),
  18693. default: true
  18694. },
  18695. {
  18696. name: "Megamacro",
  18697. height: math.unit(8, "miles")
  18698. },
  18699. {
  18700. name: "Galaxy Mom",
  18701. height: math.unit(6, "megalightyears")
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18707. {
  18708. front: {
  18709. height: math.unit(6, "feet"),
  18710. weight: math.unit(170, "lb"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/kiro/front.svg",
  18714. extra: 1064 / 1012,
  18715. bottom: 0.052
  18716. }
  18717. },
  18718. },
  18719. [
  18720. {
  18721. name: "Micro",
  18722. height: math.unit(6, "inches")
  18723. },
  18724. {
  18725. name: "Normal",
  18726. height: math.unit(6, "feet"),
  18727. default: true
  18728. },
  18729. {
  18730. name: "Macro",
  18731. height: math.unit(72, "feet")
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18737. {
  18738. front: {
  18739. height: math.unit(5 + 9 / 12, "feet"),
  18740. weight: math.unit(175, "lb"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/irishfox/front.svg",
  18744. extra: 1912 / 1680,
  18745. bottom: 0.02
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Nano",
  18752. height: math.unit(1, "mm")
  18753. },
  18754. {
  18755. name: "Micro",
  18756. height: math.unit(2, "inches")
  18757. },
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(5 + 9 / 12, "feet"),
  18761. default: true
  18762. },
  18763. {
  18764. name: "Macro",
  18765. height: math.unit(45, "feet")
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(6 + 1 / 12, "feet"),
  18774. weight: math.unit(75, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/aronai-sieyes/front.svg",
  18778. extra: 1556 / 1480,
  18779. bottom: 0.015
  18780. }
  18781. },
  18782. side: {
  18783. height: math.unit(6 + 1 / 12, "feet"),
  18784. weight: math.unit(75, "lb"),
  18785. name: "Side",
  18786. image: {
  18787. source: "./media/characters/aronai-sieyes/side.svg",
  18788. extra: 1433 / 1390,
  18789. bottom: 0.0393
  18790. }
  18791. },
  18792. back: {
  18793. height: math.unit(6 + 1 / 12, "feet"),
  18794. weight: math.unit(75, "lb"),
  18795. name: "Back",
  18796. image: {
  18797. source: "./media/characters/aronai-sieyes/back.svg",
  18798. extra: 1544 / 1494,
  18799. bottom: 0.02
  18800. }
  18801. },
  18802. frontClothed: {
  18803. height: math.unit(6 + 1 / 12, "feet"),
  18804. weight: math.unit(75, "lb"),
  18805. name: "Front (Clothed)",
  18806. image: {
  18807. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18808. extra: 1582 / 1527
  18809. }
  18810. },
  18811. feral: {
  18812. height: math.unit(18, "feet"),
  18813. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18814. name: "Feral",
  18815. image: {
  18816. source: "./media/characters/aronai-sieyes/feral.svg",
  18817. extra: 1530 / 1240,
  18818. bottom: 0.035
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Micro",
  18825. height: math.unit(2, "inches")
  18826. },
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(6 + 1 / 12, "feet"),
  18830. default: true
  18831. }
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(12, "feet"),
  18839. weight: math.unit(410, "kg"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/xuna/front.svg",
  18843. extra: 2184 / 1980
  18844. }
  18845. },
  18846. side: {
  18847. height: math.unit(12, "feet"),
  18848. weight: math.unit(410, "kg"),
  18849. name: "Side",
  18850. image: {
  18851. source: "./media/characters/xuna/side.svg",
  18852. extra: 2184 / 1980
  18853. }
  18854. },
  18855. back: {
  18856. height: math.unit(12, "feet"),
  18857. weight: math.unit(410, "kg"),
  18858. name: "Back",
  18859. image: {
  18860. source: "./media/characters/xuna/back.svg",
  18861. extra: 2184 / 1980
  18862. }
  18863. },
  18864. },
  18865. [
  18866. {
  18867. name: "Nano glow",
  18868. height: math.unit(10, "nm")
  18869. },
  18870. {
  18871. name: "Micro floof",
  18872. height: math.unit(0.3, "m")
  18873. },
  18874. {
  18875. name: "Huggable softy boi",
  18876. height: math.unit(3.6576, "m"),
  18877. default: true
  18878. },
  18879. {
  18880. name: "Admirable floof",
  18881. height: math.unit(80, "meters")
  18882. },
  18883. {
  18884. name: "Gentle macro",
  18885. height: math.unit(300, "meters")
  18886. },
  18887. {
  18888. name: "Very careful floof",
  18889. height: math.unit(3200, "meters")
  18890. },
  18891. {
  18892. name: "The mega floof",
  18893. height: math.unit(36000, "meters")
  18894. },
  18895. {
  18896. name: "Giga-fur-Wicker",
  18897. height: math.unit(4800000, "meters")
  18898. },
  18899. {
  18900. name: "Licky world",
  18901. height: math.unit(20000000, "meters")
  18902. },
  18903. {
  18904. name: "Floofy cyan sun",
  18905. height: math.unit(1500000000, "meters")
  18906. },
  18907. {
  18908. name: "Milky Wicker",
  18909. height: math.unit(1000000000000000000000, "meters")
  18910. },
  18911. {
  18912. name: "The observing Wicker",
  18913. height: math.unit(999999999999999999999999999, "meters")
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18919. {
  18920. front: {
  18921. height: math.unit(5 + 9 / 12, "feet"),
  18922. weight: math.unit(150, "lb"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/arokha-sieyes/front.svg",
  18926. extra: 1425 / 1284,
  18927. bottom: 0.05
  18928. }
  18929. },
  18930. },
  18931. [
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(5 + 9 / 12, "feet")
  18935. },
  18936. {
  18937. name: "Macro",
  18938. height: math.unit(30, "meters"),
  18939. default: true
  18940. },
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18945. {
  18946. front: {
  18947. height: math.unit(6, "feet"),
  18948. weight: math.unit(180, "lb"),
  18949. name: "Front",
  18950. image: {
  18951. source: "./media/characters/arokh-sieyes/front.svg",
  18952. extra: 1830 / 1769,
  18953. bottom: 0.01
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(6, "feet")
  18961. },
  18962. {
  18963. name: "Macro",
  18964. height: math.unit(30, "meters"),
  18965. default: true
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18971. {
  18972. side: {
  18973. height: math.unit(13 + 1 / 12, "feet"),
  18974. weight: math.unit(8.5, "tonnes"),
  18975. name: "Side",
  18976. image: {
  18977. source: "./media/characters/goldeneye/side.svg",
  18978. extra: 1182 / 778,
  18979. bottom: 0.067
  18980. }
  18981. },
  18982. paw: {
  18983. height: math.unit(3.4, "feet"),
  18984. name: "Paw",
  18985. image: {
  18986. source: "./media/characters/goldeneye/paw.svg"
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(13 + 1 / 12, "feet"),
  18994. default: true
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19000. {
  19001. front: {
  19002. height: math.unit(6 + 1 / 12, "feet"),
  19003. weight: math.unit(210, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/leonardo-lycheborne/front.svg",
  19007. extra: 390 / 365,
  19008. bottom: 0.032
  19009. }
  19010. },
  19011. side: {
  19012. height: math.unit(6 + 1 / 12, "feet"),
  19013. weight: math.unit(210, "lb"),
  19014. name: "Side",
  19015. image: {
  19016. source: "./media/characters/leonardo-lycheborne/side.svg",
  19017. extra: 390 / 365,
  19018. bottom: 0.005
  19019. }
  19020. },
  19021. back: {
  19022. height: math.unit(6 + 1 / 12, "feet"),
  19023. weight: math.unit(210, "lb"),
  19024. name: "Back",
  19025. image: {
  19026. source: "./media/characters/leonardo-lycheborne/back.svg",
  19027. extra: 392 / 366,
  19028. bottom: 0.01
  19029. }
  19030. },
  19031. hand: {
  19032. height: math.unit(1.08, "feet"),
  19033. name: "Hand",
  19034. image: {
  19035. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19036. }
  19037. },
  19038. foot: {
  19039. height: math.unit(1.32, "feet"),
  19040. name: "Foot",
  19041. image: {
  19042. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19043. }
  19044. },
  19045. were: {
  19046. height: math.unit(20, "feet"),
  19047. weight: math.unit(7800, "lb"),
  19048. name: "Were",
  19049. image: {
  19050. source: "./media/characters/leonardo-lycheborne/were.svg",
  19051. extra: 308 / 294,
  19052. bottom: 0.048
  19053. }
  19054. },
  19055. feral: {
  19056. height: math.unit(7.5, "feet"),
  19057. weight: math.unit(600, "lb"),
  19058. name: "Feral",
  19059. image: {
  19060. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19061. extra: 210 / 186,
  19062. bottom: 0.108
  19063. }
  19064. },
  19065. taur: {
  19066. height: math.unit(11, "feet"),
  19067. weight: math.unit(3300, "lb"),
  19068. name: "Taur",
  19069. image: {
  19070. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19071. extra: 320 / 303,
  19072. bottom: 0.025
  19073. }
  19074. },
  19075. barghest: {
  19076. height: math.unit(11, "feet"),
  19077. weight: math.unit(1300, "lb"),
  19078. name: "Barghest",
  19079. image: {
  19080. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19081. extra: 323 / 302,
  19082. bottom: 0.027
  19083. }
  19084. },
  19085. dick: {
  19086. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19087. name: "Dick",
  19088. image: {
  19089. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19090. }
  19091. },
  19092. dickWere: {
  19093. height: math.unit((20) / 3.8, "feet"),
  19094. name: "Dick (Were)",
  19095. image: {
  19096. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(6 + 1 / 12, "feet"),
  19104. default: true
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19110. {
  19111. front: {
  19112. height: math.unit(10, "feet"),
  19113. weight: math.unit(350, "lb"),
  19114. name: "Front",
  19115. image: {
  19116. source: "./media/characters/jet/front.svg",
  19117. extra: 2050 / 1980,
  19118. bottom: 0.013
  19119. }
  19120. },
  19121. back: {
  19122. height: math.unit(10, "feet"),
  19123. weight: math.unit(350, "lb"),
  19124. name: "Back",
  19125. image: {
  19126. source: "./media/characters/jet/back.svg",
  19127. extra: 2050 / 1980,
  19128. bottom: 0.013
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Micro",
  19135. height: math.unit(6, "inches")
  19136. },
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(10, "feet"),
  19140. default: true
  19141. },
  19142. {
  19143. name: "Macro",
  19144. height: math.unit(100, "feet")
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19150. {
  19151. front: {
  19152. height: math.unit(15, "feet"),
  19153. weight: math.unit(2800, "lb"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/tanarath/front.svg",
  19157. extra: 2392 / 2220,
  19158. bottom: 0.03
  19159. }
  19160. },
  19161. back: {
  19162. height: math.unit(15, "feet"),
  19163. weight: math.unit(2800, "lb"),
  19164. name: "Back",
  19165. image: {
  19166. source: "./media/characters/tanarath/back.svg",
  19167. extra: 2392 / 2220,
  19168. bottom: 0.03
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(15, "feet"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19182. {
  19183. front: {
  19184. height: math.unit(7 + 1 / 12, "feet"),
  19185. weight: math.unit(175, "lb"),
  19186. name: "Front",
  19187. image: {
  19188. source: "./media/characters/patty-cattybatty/front.svg",
  19189. extra: 908 / 874,
  19190. bottom: 0.025
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Micro",
  19197. height: math.unit(1, "inch")
  19198. },
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(7 + 1 / 12, "feet")
  19202. },
  19203. {
  19204. name: "Mini Macro",
  19205. height: math.unit(155, "feet")
  19206. },
  19207. {
  19208. name: "Macro",
  19209. height: math.unit(1077, "feet")
  19210. },
  19211. {
  19212. name: "Mega Macro",
  19213. height: math.unit(47650, "feet"),
  19214. default: true
  19215. },
  19216. {
  19217. name: "Giga Macro",
  19218. height: math.unit(440, "miles")
  19219. },
  19220. {
  19221. name: "Tera Macro",
  19222. height: math.unit(8700, "miles")
  19223. },
  19224. {
  19225. name: "Planetary Macro",
  19226. height: math.unit(32700, "miles")
  19227. },
  19228. {
  19229. name: "Solar Macro",
  19230. height: math.unit(550000, "miles")
  19231. },
  19232. {
  19233. name: "Celestial Macro",
  19234. height: math.unit(2.5, "AU")
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(4 + 5 / 12, "feet"),
  19243. weight: math.unit(90, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/cappu/front.svg",
  19247. extra: 1247 / 1152,
  19248. bottom: 0.012
  19249. }
  19250. },
  19251. },
  19252. [
  19253. {
  19254. name: "Normal",
  19255. height: math.unit(4 + 5 / 12, "feet"),
  19256. default: true
  19257. },
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19262. {
  19263. frontDressed: {
  19264. height: math.unit(70, "cm"),
  19265. weight: math.unit(6, "kg"),
  19266. name: "Front (Dressed)",
  19267. image: {
  19268. source: "./media/characters/sebi/front-dressed.svg",
  19269. extra: 713.5 / 686.5,
  19270. bottom: 0.003
  19271. }
  19272. },
  19273. front: {
  19274. height: math.unit(70, "cm"),
  19275. weight: math.unit(5, "kg"),
  19276. name: "Front",
  19277. image: {
  19278. source: "./media/characters/sebi/front.svg",
  19279. extra: 713.5 / 686.5,
  19280. bottom: 0.003
  19281. }
  19282. }
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(70, "cm"),
  19288. default: true
  19289. },
  19290. {
  19291. name: "Macro",
  19292. height: math.unit(8, "meters")
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(6, "feet"),
  19301. weight: math.unit(150, "lb"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/typhek/front.svg",
  19305. extra: 1948 / 1929,
  19306. bottom: 0.025
  19307. }
  19308. },
  19309. side: {
  19310. height: math.unit(6, "feet"),
  19311. weight: math.unit(150, "lb"),
  19312. name: "Side",
  19313. image: {
  19314. source: "./media/characters/typhek/side.svg",
  19315. extra: 2034 / 2010,
  19316. bottom: 0.003
  19317. }
  19318. },
  19319. back: {
  19320. height: math.unit(6, "feet"),
  19321. weight: math.unit(150, "lb"),
  19322. name: "Back",
  19323. image: {
  19324. source: "./media/characters/typhek/back.svg",
  19325. extra: 2005 / 1978,
  19326. bottom: 0.004
  19327. }
  19328. },
  19329. palm: {
  19330. height: math.unit(1.2, "feet"),
  19331. name: "Palm",
  19332. image: {
  19333. source: "./media/characters/typhek/palm.svg"
  19334. }
  19335. },
  19336. fist: {
  19337. height: math.unit(1.1, "feet"),
  19338. name: "Fist",
  19339. image: {
  19340. source: "./media/characters/typhek/fist.svg"
  19341. }
  19342. },
  19343. foot: {
  19344. height: math.unit(1.57, "feet"),
  19345. name: "Foot",
  19346. image: {
  19347. source: "./media/characters/typhek/foot.svg"
  19348. }
  19349. },
  19350. sole: {
  19351. height: math.unit(2.05, "feet"),
  19352. name: "Sole",
  19353. image: {
  19354. source: "./media/characters/typhek/sole.svg"
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Macro",
  19361. height: math.unit(40, "stories"),
  19362. default: true
  19363. },
  19364. {
  19365. name: "Megamacro",
  19366. height: math.unit(1, "mile")
  19367. },
  19368. {
  19369. name: "Gigamacro",
  19370. height: math.unit(4000, "solarradii")
  19371. },
  19372. {
  19373. name: "Universal",
  19374. height: math.unit(1.1, "universes")
  19375. }
  19376. ]
  19377. ))
  19378. characterMakers.push(() => makeCharacter(
  19379. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19380. {
  19381. side: {
  19382. height: math.unit(5 + 7 / 12, "feet"),
  19383. weight: math.unit(150, "lb"),
  19384. name: "Side",
  19385. image: {
  19386. source: "./media/characters/kassy/side.svg",
  19387. extra: 1280 / 1225,
  19388. bottom: 0.002
  19389. }
  19390. },
  19391. front: {
  19392. height: math.unit(5 + 7 / 12, "feet"),
  19393. weight: math.unit(150, "lb"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/kassy/front.svg",
  19397. extra: 1280 / 1225,
  19398. bottom: 0.025
  19399. }
  19400. },
  19401. back: {
  19402. height: math.unit(5 + 7 / 12, "feet"),
  19403. weight: math.unit(150, "lb"),
  19404. name: "Back",
  19405. image: {
  19406. source: "./media/characters/kassy/back.svg",
  19407. extra: 1280 / 1225,
  19408. bottom: 0.002
  19409. }
  19410. },
  19411. foot: {
  19412. height: math.unit(1.266, "feet"),
  19413. name: "Foot",
  19414. image: {
  19415. source: "./media/characters/kassy/foot.svg"
  19416. }
  19417. },
  19418. },
  19419. [
  19420. {
  19421. name: "Normal",
  19422. height: math.unit(5 + 7 / 12, "feet")
  19423. },
  19424. {
  19425. name: "Macro",
  19426. height: math.unit(137, "feet"),
  19427. default: true
  19428. },
  19429. {
  19430. name: "Megamacro",
  19431. height: math.unit(1, "mile")
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(6 + 1 / 12, "feet"),
  19440. weight: math.unit(200, "lb"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/neil/front.svg",
  19444. extra: 1326 / 1250,
  19445. bottom: 0.023
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Normal",
  19452. height: math.unit(6 + 1 / 12, "feet"),
  19453. default: true
  19454. },
  19455. {
  19456. name: "Macro",
  19457. height: math.unit(200, "feet")
  19458. },
  19459. ]
  19460. ))
  19461. characterMakers.push(() => makeCharacter(
  19462. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19463. {
  19464. front: {
  19465. height: math.unit(5 + 9 / 12, "feet"),
  19466. weight: math.unit(190, "lb"),
  19467. name: "Front",
  19468. image: {
  19469. source: "./media/characters/atticus/front.svg",
  19470. extra: 2934 / 2785,
  19471. bottom: 0.025
  19472. }
  19473. },
  19474. },
  19475. [
  19476. {
  19477. name: "Normal",
  19478. height: math.unit(5 + 9 / 12, "feet"),
  19479. default: true
  19480. },
  19481. {
  19482. name: "Macro",
  19483. height: math.unit(180, "feet")
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19489. {
  19490. side: {
  19491. height: math.unit(9, "feet"),
  19492. weight: math.unit(650, "lb"),
  19493. name: "Side",
  19494. image: {
  19495. source: "./media/characters/milo/side.svg",
  19496. extra: 2644 / 2310,
  19497. bottom: 0.032
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(9, "feet"),
  19505. default: true
  19506. },
  19507. {
  19508. name: "Macro",
  19509. height: math.unit(300, "feet")
  19510. },
  19511. ]
  19512. ))
  19513. characterMakers.push(() => makeCharacter(
  19514. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19515. {
  19516. side: {
  19517. height: math.unit(8, "meters"),
  19518. weight: math.unit(90000, "kg"),
  19519. name: "Side",
  19520. image: {
  19521. source: "./media/characters/ijzer/side.svg",
  19522. extra: 2756 / 1600,
  19523. bottom: 0.01
  19524. }
  19525. },
  19526. },
  19527. [
  19528. {
  19529. name: "Small",
  19530. height: math.unit(3, "meters")
  19531. },
  19532. {
  19533. name: "Normal",
  19534. height: math.unit(8, "meters"),
  19535. default: true
  19536. },
  19537. {
  19538. name: "Normal+",
  19539. height: math.unit(10, "meters")
  19540. },
  19541. {
  19542. name: "Bigger",
  19543. height: math.unit(24, "meters")
  19544. },
  19545. {
  19546. name: "Huge",
  19547. height: math.unit(80, "meters")
  19548. },
  19549. ]
  19550. ))
  19551. characterMakers.push(() => makeCharacter(
  19552. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19553. {
  19554. front: {
  19555. height: math.unit(6 + 2 / 12, "feet"),
  19556. weight: math.unit(153, "lb"),
  19557. name: "Front",
  19558. image: {
  19559. source: "./media/characters/luca-cervicum/front.svg",
  19560. extra: 370 / 327,
  19561. bottom: 0.015
  19562. }
  19563. },
  19564. back: {
  19565. height: math.unit(6 + 2 / 12, "feet"),
  19566. weight: math.unit(153, "lb"),
  19567. name: "Back",
  19568. image: {
  19569. source: "./media/characters/luca-cervicum/back.svg",
  19570. extra: 367 / 333,
  19571. bottom: 0.005
  19572. }
  19573. },
  19574. frontGear: {
  19575. height: math.unit(6 + 2 / 12, "feet"),
  19576. weight: math.unit(173, "lb"),
  19577. name: "Front (Gear)",
  19578. image: {
  19579. source: "./media/characters/luca-cervicum/front-gear.svg",
  19580. extra: 377 / 333,
  19581. bottom: 0.006
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Normal",
  19588. height: math.unit(6 + 2 / 12, "feet"),
  19589. default: true
  19590. },
  19591. ]
  19592. ))
  19593. characterMakers.push(() => makeCharacter(
  19594. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19595. {
  19596. front: {
  19597. height: math.unit(6 + 1 / 12, "feet"),
  19598. weight: math.unit(304, "lb"),
  19599. name: "Front",
  19600. image: {
  19601. source: "./media/characters/oliver/front.svg",
  19602. extra: 157 / 143,
  19603. bottom: 0.08
  19604. }
  19605. },
  19606. },
  19607. [
  19608. {
  19609. name: "Normal",
  19610. height: math.unit(6 + 1 / 12, "feet"),
  19611. default: true
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19617. {
  19618. front: {
  19619. height: math.unit(5 + 7 / 12, "feet"),
  19620. weight: math.unit(140, "lb"),
  19621. name: "Front",
  19622. image: {
  19623. source: "./media/characters/shane/front.svg",
  19624. extra: 304 / 289,
  19625. bottom: 0.005
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(5 + 7 / 12, "feet"),
  19633. default: true
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19639. {
  19640. front: {
  19641. height: math.unit(5 + 9 / 12, "feet"),
  19642. weight: math.unit(178, "lb"),
  19643. name: "Front",
  19644. image: {
  19645. source: "./media/characters/shin/front.svg",
  19646. extra: 159 / 151,
  19647. bottom: 0.015
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(5 + 9 / 12, "feet"),
  19655. default: true
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19661. {
  19662. front: {
  19663. height: math.unit(5 + 10 / 12, "feet"),
  19664. weight: math.unit(168, "lb"),
  19665. name: "Front",
  19666. image: {
  19667. source: "./media/characters/xerxes/front.svg",
  19668. extra: 282 / 260,
  19669. bottom: 0.045
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(5 + 10 / 12, "feet"),
  19677. default: true
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19683. {
  19684. front: {
  19685. height: math.unit(6 + 7 / 12, "feet"),
  19686. weight: math.unit(208, "lb"),
  19687. name: "Front",
  19688. image: {
  19689. source: "./media/characters/chaska/front.svg",
  19690. extra: 332 / 319,
  19691. bottom: 0.015
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Normal",
  19698. height: math.unit(6 + 7 / 12, "feet"),
  19699. default: true
  19700. },
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19705. {
  19706. front: {
  19707. height: math.unit(5 + 8 / 12, "feet"),
  19708. weight: math.unit(208, "lb"),
  19709. name: "Front",
  19710. image: {
  19711. source: "./media/characters/enuk/front.svg",
  19712. extra: 437 / 406,
  19713. bottom: 0.02
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(5 + 8 / 12, "feet"),
  19721. default: true
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(5 + 10 / 12, "feet"),
  19730. weight: math.unit(252, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/bruun/front.svg",
  19734. extra: 197 / 187,
  19735. bottom: 0.012
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(5 + 10 / 12, "feet"),
  19743. default: true
  19744. },
  19745. ]
  19746. ))
  19747. characterMakers.push(() => makeCharacter(
  19748. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19749. {
  19750. front: {
  19751. height: math.unit(6 + 10 / 12, "feet"),
  19752. weight: math.unit(255, "lb"),
  19753. name: "Front",
  19754. image: {
  19755. source: "./media/characters/alexeev/front.svg",
  19756. extra: 213 / 200,
  19757. bottom: 0.05
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Normal",
  19764. height: math.unit(6 + 10 / 12, "feet"),
  19765. default: true
  19766. },
  19767. ]
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19771. {
  19772. front: {
  19773. height: math.unit(2 + 8 / 12, "feet"),
  19774. weight: math.unit(22, "lb"),
  19775. name: "Front",
  19776. image: {
  19777. source: "./media/characters/evelyn/front.svg",
  19778. extra: 208 / 180
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(2 + 8 / 12, "feet"),
  19786. default: true
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19792. {
  19793. front: {
  19794. height: math.unit(5 + 9 / 12, "feet"),
  19795. weight: math.unit(139, "lb"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/inca/front.svg",
  19799. extra: 294 / 291,
  19800. bottom: 0.03
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(5 + 9 / 12, "feet"),
  19808. default: true
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19814. {
  19815. front: {
  19816. height: math.unit(5 + 1 / 12, "feet"),
  19817. weight: math.unit(84, "lb"),
  19818. name: "Front",
  19819. image: {
  19820. source: "./media/characters/magdalene/front.svg",
  19821. extra: 293 / 273
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(5 + 1 / 12, "feet"),
  19829. default: true
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19835. {
  19836. front: {
  19837. height: math.unit(6 + 3 / 12, "feet"),
  19838. weight: math.unit(185, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/mera/front.svg",
  19842. extra: 291 / 277,
  19843. bottom: 0.03
  19844. }
  19845. },
  19846. },
  19847. [
  19848. {
  19849. name: "Normal",
  19850. height: math.unit(6 + 3 / 12, "feet"),
  19851. default: true
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19857. {
  19858. front: {
  19859. height: math.unit(6 + 7 / 12, "feet"),
  19860. weight: math.unit(160, "lb"),
  19861. name: "Front",
  19862. image: {
  19863. source: "./media/characters/ceres/front.svg",
  19864. extra: 1023 / 950,
  19865. bottom: 0.027
  19866. }
  19867. },
  19868. back: {
  19869. height: math.unit(6 + 7 / 12, "feet"),
  19870. weight: math.unit(160, "lb"),
  19871. name: "Back",
  19872. image: {
  19873. source: "./media/characters/ceres/back.svg",
  19874. extra: 1023 / 950
  19875. }
  19876. },
  19877. },
  19878. [
  19879. {
  19880. name: "Normal",
  19881. height: math.unit(6 + 7 / 12, "feet"),
  19882. default: true
  19883. },
  19884. ]
  19885. ))
  19886. characterMakers.push(() => makeCharacter(
  19887. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19888. {
  19889. front: {
  19890. height: math.unit(5 + 10 / 12, "feet"),
  19891. weight: math.unit(150, "lb"),
  19892. name: "Front",
  19893. image: {
  19894. source: "./media/characters/kris/front.svg",
  19895. extra: 885 / 803,
  19896. bottom: 0.03
  19897. }
  19898. },
  19899. },
  19900. [
  19901. {
  19902. name: "Normal",
  19903. height: math.unit(5 + 10 / 12, "feet"),
  19904. default: true
  19905. },
  19906. ]
  19907. ))
  19908. characterMakers.push(() => makeCharacter(
  19909. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19910. {
  19911. front: {
  19912. height: math.unit(7, "feet"),
  19913. weight: math.unit(120, "kg"),
  19914. name: "Front",
  19915. image: {
  19916. source: "./media/characters/taluthus/front.svg",
  19917. extra: 903 / 833,
  19918. bottom: 0.015
  19919. }
  19920. },
  19921. },
  19922. [
  19923. {
  19924. name: "Normal",
  19925. height: math.unit(7, "feet"),
  19926. default: true
  19927. },
  19928. {
  19929. name: "Macro",
  19930. height: math.unit(300, "feet")
  19931. },
  19932. ]
  19933. ))
  19934. characterMakers.push(() => makeCharacter(
  19935. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19936. {
  19937. front: {
  19938. height: math.unit(5 + 9 / 12, "feet"),
  19939. weight: math.unit(145, "lb"),
  19940. name: "Front",
  19941. image: {
  19942. source: "./media/characters/dawn/front.svg",
  19943. extra: 2094 / 2016,
  19944. bottom: 0.025
  19945. }
  19946. },
  19947. back: {
  19948. height: math.unit(5 + 9 / 12, "feet"),
  19949. weight: math.unit(160, "lb"),
  19950. name: "Back",
  19951. image: {
  19952. source: "./media/characters/dawn/back.svg",
  19953. extra: 2112 / 2080,
  19954. bottom: 0.005
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Normal",
  19961. height: math.unit(6 + 7 / 12, "feet"),
  19962. default: true
  19963. },
  19964. ]
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19968. {
  19969. anthro: {
  19970. height: math.unit(8 + 3 / 12, "feet"),
  19971. weight: math.unit(450, "lb"),
  19972. name: "Anthro",
  19973. image: {
  19974. source: "./media/characters/arador/anthro.svg",
  19975. extra: 1835 / 1718,
  19976. bottom: 0.025
  19977. }
  19978. },
  19979. feral: {
  19980. height: math.unit(4, "feet"),
  19981. weight: math.unit(200, "lb"),
  19982. name: "Feral",
  19983. image: {
  19984. source: "./media/characters/arador/feral.svg",
  19985. extra: 1683 / 1514,
  19986. bottom: 0.07
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Normal",
  19993. height: math.unit(8 + 3 / 12, "feet")
  19994. },
  19995. {
  19996. name: "Macro",
  19997. height: math.unit(82.5, "feet"),
  19998. default: true
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20004. {
  20005. front: {
  20006. height: math.unit(5 + 10 / 12, "feet"),
  20007. weight: math.unit(125, "lb"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/dharsi/front.svg",
  20011. extra: 716 / 630,
  20012. bottom: 0.035
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Nano",
  20019. height: math.unit(100, "nm")
  20020. },
  20021. {
  20022. name: "Micro",
  20023. height: math.unit(2, "inches")
  20024. },
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(5 + 10 / 12, "feet"),
  20028. default: true
  20029. },
  20030. {
  20031. name: "Macro",
  20032. height: math.unit(1000, "feet")
  20033. },
  20034. {
  20035. name: "Megamacro",
  20036. height: math.unit(10, "miles")
  20037. },
  20038. {
  20039. name: "Gigamacro",
  20040. height: math.unit(3000, "miles")
  20041. },
  20042. {
  20043. name: "Teramacro",
  20044. height: math.unit(500000, "miles")
  20045. },
  20046. {
  20047. name: "Teramacro+",
  20048. height: math.unit(30, "galaxies")
  20049. },
  20050. ]
  20051. ))
  20052. characterMakers.push(() => makeCharacter(
  20053. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20054. {
  20055. front: {
  20056. height: math.unit(6, "feet"),
  20057. weight: math.unit(150, "lb"),
  20058. name: "Front",
  20059. image: {
  20060. source: "./media/characters/deathy/front.svg",
  20061. extra: 1552 / 1463,
  20062. bottom: 0.025
  20063. }
  20064. },
  20065. side: {
  20066. height: math.unit(6, "feet"),
  20067. weight: math.unit(150, "lb"),
  20068. name: "Side",
  20069. image: {
  20070. source: "./media/characters/deathy/side.svg",
  20071. extra: 1604 / 1455,
  20072. bottom: 0.025
  20073. }
  20074. },
  20075. back: {
  20076. height: math.unit(6, "feet"),
  20077. weight: math.unit(150, "lb"),
  20078. name: "Back",
  20079. image: {
  20080. source: "./media/characters/deathy/back.svg",
  20081. extra: 1580 / 1463,
  20082. bottom: 0.005
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Micro",
  20089. height: math.unit(5, "millimeters")
  20090. },
  20091. {
  20092. name: "Normal",
  20093. height: math.unit(6 + 5 / 12, "feet"),
  20094. default: true
  20095. },
  20096. ]
  20097. ))
  20098. characterMakers.push(() => makeCharacter(
  20099. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20100. {
  20101. front: {
  20102. height: math.unit(16, "feet"),
  20103. weight: math.unit(4000, "lb"),
  20104. name: "Front",
  20105. image: {
  20106. source: "./media/characters/juniper/front.svg",
  20107. bottom: 0.04
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(16, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20121. {
  20122. front: {
  20123. height: math.unit(6, "feet"),
  20124. weight: math.unit(150, "lb"),
  20125. name: "Front",
  20126. image: {
  20127. source: "./media/characters/hipster/front.svg",
  20128. extra: 1312 / 1209,
  20129. bottom: 0.025
  20130. }
  20131. },
  20132. back: {
  20133. height: math.unit(6, "feet"),
  20134. weight: math.unit(150, "lb"),
  20135. name: "Back",
  20136. image: {
  20137. source: "./media/characters/hipster/back.svg",
  20138. extra: 1281 / 1196,
  20139. bottom: 0.01
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Micro",
  20146. height: math.unit(1, "mm")
  20147. },
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(4, "inches"),
  20151. default: true
  20152. },
  20153. {
  20154. name: "Macro",
  20155. height: math.unit(500, "feet")
  20156. },
  20157. {
  20158. name: "Megamacro",
  20159. height: math.unit(1000, "miles")
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20165. {
  20166. front: {
  20167. height: math.unit(6, "feet"),
  20168. weight: math.unit(150, "lb"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/tendirmuldr/front.svg",
  20172. extra: 1878 / 1772,
  20173. bottom: 0.015
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Megamacro",
  20180. height: math.unit(1500, "miles"),
  20181. default: true
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20187. {
  20188. front: {
  20189. height: math.unit(14, "feet"),
  20190. weight: math.unit(12000, "lb"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/mort/front.svg",
  20194. extra: 365 / 318,
  20195. bottom: 0.01
  20196. }
  20197. },
  20198. side: {
  20199. height: math.unit(14, "feet"),
  20200. weight: math.unit(12000, "lb"),
  20201. name: "Side",
  20202. image: {
  20203. source: "./media/characters/mort/side.svg",
  20204. extra: 365 / 318,
  20205. bottom: 0.052
  20206. },
  20207. default: true
  20208. },
  20209. back: {
  20210. height: math.unit(14, "feet"),
  20211. weight: math.unit(12000, "lb"),
  20212. name: "Back",
  20213. image: {
  20214. source: "./media/characters/mort/back.svg",
  20215. extra: 371 / 332,
  20216. bottom: 0.18
  20217. }
  20218. },
  20219. },
  20220. [
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(14, "feet"),
  20224. default: true
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20230. {
  20231. front: {
  20232. height: math.unit(8, "feet"),
  20233. weight: math.unit(1, "ton"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/lycoa/front.svg",
  20237. extra: 1875 / 1789,
  20238. bottom: 0.022
  20239. }
  20240. },
  20241. back: {
  20242. height: math.unit(8, "feet"),
  20243. weight: math.unit(1, "ton"),
  20244. name: "Back",
  20245. image: {
  20246. source: "./media/characters/lycoa/back.svg",
  20247. extra: 1835 / 1781,
  20248. bottom: 0.03
  20249. }
  20250. },
  20251. head: {
  20252. height: math.unit(2.1, "feet"),
  20253. name: "Head",
  20254. image: {
  20255. source: "./media/characters/lycoa/head.svg"
  20256. }
  20257. },
  20258. tailmaw: {
  20259. height: math.unit(1.9, "feet"),
  20260. name: "Tailmaw",
  20261. image: {
  20262. source: "./media/characters/lycoa/tailmaw.svg"
  20263. }
  20264. },
  20265. tentacles: {
  20266. height: math.unit(2.1, "feet"),
  20267. name: "Tentacles",
  20268. image: {
  20269. source: "./media/characters/lycoa/tentacles.svg"
  20270. }
  20271. },
  20272. dick: {
  20273. height: math.unit(1.73, "feet"),
  20274. name: "Dick",
  20275. image: {
  20276. source: "./media/characters/lycoa/dick.svg"
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(8, "feet"),
  20284. default: true
  20285. },
  20286. {
  20287. name: "Macro",
  20288. height: math.unit(30, "feet")
  20289. },
  20290. ]
  20291. ))
  20292. characterMakers.push(() => makeCharacter(
  20293. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20294. {
  20295. front: {
  20296. height: math.unit(4 + 2 / 12, "feet"),
  20297. weight: math.unit(70, "lb"),
  20298. name: "Front",
  20299. image: {
  20300. source: "./media/characters/naldara/front.svg",
  20301. extra: 841 / 720,
  20302. bottom: 0.04
  20303. }
  20304. },
  20305. naga: {
  20306. height: math.unit(23, "feet"),
  20307. weight: math.unit(15000, "kg"),
  20308. name: "Naga",
  20309. image: {
  20310. source: "./media/characters/naldara/naga.svg",
  20311. extra: 3290 / 2959,
  20312. bottom: 124 / 3432
  20313. }
  20314. },
  20315. },
  20316. [
  20317. {
  20318. name: "Normal",
  20319. height: math.unit(4 + 2 / 12, "feet"),
  20320. default: true
  20321. },
  20322. ]
  20323. ))
  20324. characterMakers.push(() => makeCharacter(
  20325. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20326. {
  20327. front: {
  20328. height: math.unit(13 + 7 / 12, "feet"),
  20329. weight: math.unit(1500, "lb"),
  20330. name: "Front",
  20331. image: {
  20332. source: "./media/characters/briar/front.svg",
  20333. extra: 626 / 596,
  20334. bottom: 0.08
  20335. }
  20336. },
  20337. },
  20338. [
  20339. {
  20340. name: "Normal",
  20341. height: math.unit(13 + 7 / 12, "feet"),
  20342. default: true
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20348. {
  20349. side: {
  20350. height: math.unit(10, "feet"),
  20351. weight: math.unit(500, "lb"),
  20352. name: "Side",
  20353. image: {
  20354. source: "./media/characters/vanguard/side.svg",
  20355. extra: 502 / 425,
  20356. bottom: 0.087
  20357. }
  20358. },
  20359. },
  20360. [
  20361. {
  20362. name: "Normal",
  20363. height: math.unit(10, "feet"),
  20364. default: true
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20370. {
  20371. front: {
  20372. height: math.unit(7.5, "feet"),
  20373. weight: math.unit(2, "lb"),
  20374. name: "Front",
  20375. image: {
  20376. source: "./media/characters/artemis/front.svg",
  20377. extra: 1192 / 1075,
  20378. bottom: 0.07
  20379. }
  20380. },
  20381. frontNsfw: {
  20382. height: math.unit(7.5, "feet"),
  20383. weight: math.unit(2, "lb"),
  20384. name: "Front (NSFW)",
  20385. image: {
  20386. source: "./media/characters/artemis/front-nsfw.svg",
  20387. extra: 1192 / 1075,
  20388. bottom: 0.07
  20389. }
  20390. },
  20391. frontNsfwer: {
  20392. height: math.unit(7.5, "feet"),
  20393. weight: math.unit(2, "lb"),
  20394. name: "Front (NSFW-er)",
  20395. image: {
  20396. source: "./media/characters/artemis/front-nsfwer.svg",
  20397. extra: 1192 / 1075,
  20398. bottom: 0.07
  20399. }
  20400. },
  20401. side: {
  20402. height: math.unit(7.5, "feet"),
  20403. weight: math.unit(2, "lb"),
  20404. name: "Side",
  20405. image: {
  20406. source: "./media/characters/artemis/side.svg",
  20407. extra: 1192 / 1075,
  20408. bottom: 0.07
  20409. }
  20410. },
  20411. sideNsfw: {
  20412. height: math.unit(7.5, "feet"),
  20413. weight: math.unit(2, "lb"),
  20414. name: "Side (NSFW)",
  20415. image: {
  20416. source: "./media/characters/artemis/side-nsfw.svg",
  20417. extra: 1192 / 1075,
  20418. bottom: 0.07
  20419. }
  20420. },
  20421. sideNsfwer: {
  20422. height: math.unit(7.5, "feet"),
  20423. weight: math.unit(2, "lb"),
  20424. name: "Side (NSFW-er)",
  20425. image: {
  20426. source: "./media/characters/artemis/side-nsfwer.svg",
  20427. extra: 1192 / 1075,
  20428. bottom: 0.07
  20429. }
  20430. },
  20431. maw: {
  20432. height: math.unit(1.1, "feet"),
  20433. name: "Maw",
  20434. image: {
  20435. source: "./media/characters/artemis/maw.svg"
  20436. }
  20437. },
  20438. stomach: {
  20439. height: math.unit(0.95, "feet"),
  20440. name: "Stomach",
  20441. image: {
  20442. source: "./media/characters/artemis/stomach.svg"
  20443. }
  20444. },
  20445. dickCanine: {
  20446. height: math.unit(1, "feet"),
  20447. name: "Dick (Canine)",
  20448. image: {
  20449. source: "./media/characters/artemis/dick-canine.svg"
  20450. }
  20451. },
  20452. dickEquine: {
  20453. height: math.unit(0.85, "feet"),
  20454. name: "Dick (Equine)",
  20455. image: {
  20456. source: "./media/characters/artemis/dick-equine.svg"
  20457. }
  20458. },
  20459. dickExotic: {
  20460. height: math.unit(0.85, "feet"),
  20461. name: "Dick (Exotic)",
  20462. image: {
  20463. source: "./media/characters/artemis/dick-exotic.svg"
  20464. }
  20465. },
  20466. },
  20467. [
  20468. {
  20469. name: "Normal",
  20470. height: math.unit(7.5, "feet"),
  20471. default: true
  20472. },
  20473. {
  20474. name: "Enlarged",
  20475. height: math.unit(12, "feet")
  20476. },
  20477. ]
  20478. ))
  20479. characterMakers.push(() => makeCharacter(
  20480. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20481. {
  20482. front: {
  20483. height: math.unit(5 + 3 / 12, "feet"),
  20484. weight: math.unit(160, "lb"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/kira/front.svg",
  20488. extra: 906 / 786,
  20489. bottom: 0.01
  20490. }
  20491. },
  20492. back: {
  20493. height: math.unit(5 + 3 / 12, "feet"),
  20494. weight: math.unit(160, "lb"),
  20495. name: "Back",
  20496. image: {
  20497. source: "./media/characters/kira/back.svg",
  20498. extra: 882 / 757,
  20499. bottom: 0.005
  20500. }
  20501. },
  20502. frontDressed: {
  20503. height: math.unit(5 + 3 / 12, "feet"),
  20504. weight: math.unit(160, "lb"),
  20505. name: "Front (Dressed)",
  20506. image: {
  20507. source: "./media/characters/kira/front-dressed.svg",
  20508. extra: 906 / 786,
  20509. bottom: 0.01
  20510. }
  20511. },
  20512. beans: {
  20513. height: math.unit(0.92, "feet"),
  20514. name: "Beans",
  20515. image: {
  20516. source: "./media/characters/kira/beans.svg"
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(5 + 3 / 12, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(5 + 4 / 12, "feet"),
  20533. weight: math.unit(145, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/scramble/front.svg",
  20537. extra: 763 / 727,
  20538. bottom: 0.05
  20539. }
  20540. },
  20541. back: {
  20542. height: math.unit(5 + 4 / 12, "feet"),
  20543. weight: math.unit(145, "lb"),
  20544. name: "Back",
  20545. image: {
  20546. source: "./media/characters/scramble/back.svg",
  20547. extra: 826 / 737,
  20548. bottom: 0.002
  20549. }
  20550. },
  20551. },
  20552. [
  20553. {
  20554. name: "Normal",
  20555. height: math.unit(5 + 4 / 12, "feet"),
  20556. default: true
  20557. },
  20558. ]
  20559. ))
  20560. characterMakers.push(() => makeCharacter(
  20561. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20562. {
  20563. side: {
  20564. height: math.unit(6 + 2 / 12, "feet"),
  20565. weight: math.unit(190, "lb"),
  20566. name: "Side",
  20567. image: {
  20568. source: "./media/characters/biscuit/side.svg",
  20569. extra: 858 / 791,
  20570. bottom: 0.044
  20571. }
  20572. },
  20573. },
  20574. [
  20575. {
  20576. name: "Normal",
  20577. height: math.unit(6 + 2 / 12, "feet"),
  20578. default: true
  20579. },
  20580. ]
  20581. ))
  20582. characterMakers.push(() => makeCharacter(
  20583. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20584. {
  20585. front: {
  20586. height: math.unit(5 + 2 / 12, "feet"),
  20587. weight: math.unit(120, "lb"),
  20588. name: "Front",
  20589. image: {
  20590. source: "./media/characters/poffin/front.svg",
  20591. extra: 786 / 680,
  20592. bottom: 0.005
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(5 + 2 / 12, "feet"),
  20600. default: true
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20606. {
  20607. front: {
  20608. height: math.unit(6 + 3 / 12, "feet"),
  20609. weight: math.unit(519, "lb"),
  20610. name: "Front",
  20611. image: {
  20612. source: "./media/characters/dhari/front.svg",
  20613. extra: 1048 / 946,
  20614. bottom: 0.015
  20615. }
  20616. },
  20617. back: {
  20618. height: math.unit(6 + 3 / 12, "feet"),
  20619. weight: math.unit(519, "lb"),
  20620. name: "Back",
  20621. image: {
  20622. source: "./media/characters/dhari/back.svg",
  20623. extra: 1048 / 931,
  20624. bottom: 0.005
  20625. }
  20626. },
  20627. frontDressed: {
  20628. height: math.unit(6 + 3 / 12, "feet"),
  20629. weight: math.unit(519, "lb"),
  20630. name: "Front (Dressed)",
  20631. image: {
  20632. source: "./media/characters/dhari/front-dressed.svg",
  20633. extra: 1713 / 1546,
  20634. bottom: 0.02
  20635. }
  20636. },
  20637. backDressed: {
  20638. height: math.unit(6 + 3 / 12, "feet"),
  20639. weight: math.unit(519, "lb"),
  20640. name: "Back (Dressed)",
  20641. image: {
  20642. source: "./media/characters/dhari/back-dressed.svg",
  20643. extra: 1699 / 1537,
  20644. bottom: 0.01
  20645. }
  20646. },
  20647. maw: {
  20648. height: math.unit(0.95, "feet"),
  20649. name: "Maw",
  20650. image: {
  20651. source: "./media/characters/dhari/maw.svg"
  20652. }
  20653. },
  20654. wereFront: {
  20655. height: math.unit(12 + 8 / 12, "feet"),
  20656. weight: math.unit(4000, "lb"),
  20657. name: "Front (Were)",
  20658. image: {
  20659. source: "./media/characters/dhari/were-front.svg",
  20660. extra: 1065 / 969,
  20661. bottom: 0.015
  20662. }
  20663. },
  20664. wereBack: {
  20665. height: math.unit(12 + 8 / 12, "feet"),
  20666. weight: math.unit(4000, "lb"),
  20667. name: "Back (Were)",
  20668. image: {
  20669. source: "./media/characters/dhari/were-back.svg",
  20670. extra: 1065 / 969,
  20671. bottom: 0.012
  20672. }
  20673. },
  20674. wereMaw: {
  20675. height: math.unit(0.625, "meters"),
  20676. name: "Maw (Were)",
  20677. image: {
  20678. source: "./media/characters/dhari/were-maw.svg"
  20679. }
  20680. },
  20681. },
  20682. [
  20683. {
  20684. name: "Normal",
  20685. height: math.unit(6 + 3 / 12, "feet"),
  20686. default: true
  20687. },
  20688. ]
  20689. ))
  20690. characterMakers.push(() => makeCharacter(
  20691. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20692. {
  20693. anthro: {
  20694. height: math.unit(5 + 7 / 12, "feet"),
  20695. weight: math.unit(175, "lb"),
  20696. name: "Anthro",
  20697. image: {
  20698. source: "./media/characters/rena-dyne/anthro.svg",
  20699. extra: 1849 / 1785,
  20700. bottom: 0.005
  20701. }
  20702. },
  20703. taur: {
  20704. height: math.unit(15 + 6 / 12, "feet"),
  20705. weight: math.unit(8000, "lb"),
  20706. name: "Taur",
  20707. image: {
  20708. source: "./media/characters/rena-dyne/taur.svg",
  20709. extra: 2315 / 2234,
  20710. bottom: 0.033
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(5 + 7 / 12, "feet"),
  20718. default: true
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20724. {
  20725. front: {
  20726. height: math.unit(8, "feet"),
  20727. weight: math.unit(600, "lb"),
  20728. name: "Front",
  20729. image: {
  20730. source: "./media/characters/weremeep/front.svg",
  20731. extra: 967 / 862,
  20732. bottom: 0.01
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(8, "feet"),
  20740. default: true
  20741. },
  20742. {
  20743. name: "Lorg",
  20744. height: math.unit(12, "feet")
  20745. },
  20746. {
  20747. name: "Oh Lawd She Comin'",
  20748. height: math.unit(20, "feet")
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20754. {
  20755. front: {
  20756. height: math.unit(4, "feet"),
  20757. weight: math.unit(90, "lb"),
  20758. name: "Front",
  20759. image: {
  20760. source: "./media/characters/reza/front.svg",
  20761. extra: 1183 / 1111,
  20762. bottom: 0.017
  20763. }
  20764. },
  20765. back: {
  20766. height: math.unit(4, "feet"),
  20767. weight: math.unit(90, "lb"),
  20768. name: "Back",
  20769. image: {
  20770. source: "./media/characters/reza/back.svg",
  20771. extra: 1183 / 1111,
  20772. bottom: 0.01
  20773. }
  20774. },
  20775. drake: {
  20776. height: math.unit(30, "feet"),
  20777. weight: math.unit(246960, "lb"),
  20778. name: "Drake",
  20779. image: {
  20780. source: "./media/characters/reza/drake.svg",
  20781. extra: 2350 / 2024,
  20782. bottom: 60.7 / 2403
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(4, "feet"),
  20790. default: true
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20796. {
  20797. side: {
  20798. height: math.unit(15, "feet"),
  20799. weight: math.unit(14, "tons"),
  20800. name: "Side",
  20801. image: {
  20802. source: "./media/characters/athea/side.svg",
  20803. extra: 960 / 540,
  20804. bottom: 0.003
  20805. }
  20806. },
  20807. sitting: {
  20808. height: math.unit(6 * 2.85, "feet"),
  20809. weight: math.unit(14, "tons"),
  20810. name: "Sitting",
  20811. image: {
  20812. source: "./media/characters/athea/sitting.svg",
  20813. extra: 621 / 581,
  20814. bottom: 0.075
  20815. }
  20816. },
  20817. maw: {
  20818. height: math.unit(7.59498031496063, "feet"),
  20819. name: "Maw",
  20820. image: {
  20821. source: "./media/characters/athea/maw.svg"
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Lap Cat",
  20828. height: math.unit(2.5, "feet")
  20829. },
  20830. {
  20831. name: "Minimacro",
  20832. height: math.unit(15, "feet"),
  20833. default: true
  20834. },
  20835. {
  20836. name: "Macro",
  20837. height: math.unit(120, "feet")
  20838. },
  20839. {
  20840. name: "Macro+",
  20841. height: math.unit(640, "feet")
  20842. },
  20843. {
  20844. name: "Colossus",
  20845. height: math.unit(2.2, "miles")
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(8 + 8 / 12, "feet"),
  20854. weight: math.unit(130, "kg"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/seroko/front.svg",
  20858. extra: 1385 / 1280,
  20859. bottom: 0.025
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(8 + 8 / 12, "feet"),
  20864. weight: math.unit(130, "kg"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/seroko/back.svg",
  20868. extra: 1369 / 1238,
  20869. bottom: 0.018
  20870. }
  20871. },
  20872. frontDressed: {
  20873. height: math.unit(8 + 8 / 12, "feet"),
  20874. weight: math.unit(130, "kg"),
  20875. name: "Front (Dressed)",
  20876. image: {
  20877. source: "./media/characters/seroko/front-dressed.svg",
  20878. extra: 1366 / 1275,
  20879. bottom: 0.03
  20880. }
  20881. },
  20882. },
  20883. [
  20884. {
  20885. name: "Normal",
  20886. height: math.unit(8 + 8 / 12, "feet"),
  20887. default: true
  20888. },
  20889. ]
  20890. ))
  20891. characterMakers.push(() => makeCharacter(
  20892. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20893. {
  20894. front: {
  20895. height: math.unit(5.5, "feet"),
  20896. weight: math.unit(160, "lb"),
  20897. name: "Front",
  20898. image: {
  20899. source: "./media/characters/quatzi/front.svg",
  20900. extra: 2346 / 2242,
  20901. bottom: 0.015
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Normal",
  20908. height: math.unit(5.5, "feet"),
  20909. default: true
  20910. },
  20911. {
  20912. name: "Big",
  20913. height: math.unit(7.7, "feet")
  20914. },
  20915. ]
  20916. ))
  20917. characterMakers.push(() => makeCharacter(
  20918. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20919. {
  20920. front: {
  20921. height: math.unit(5 + 11 / 12, "feet"),
  20922. weight: math.unit(180, "lb"),
  20923. name: "Front",
  20924. image: {
  20925. source: "./media/characters/sen/front.svg",
  20926. extra: 1321 / 1254,
  20927. bottom: 0.015
  20928. }
  20929. },
  20930. side: {
  20931. height: math.unit(5 + 11 / 12, "feet"),
  20932. weight: math.unit(180, "lb"),
  20933. name: "Side",
  20934. image: {
  20935. source: "./media/characters/sen/side.svg",
  20936. extra: 1321 / 1254,
  20937. bottom: 0.007
  20938. }
  20939. },
  20940. back: {
  20941. height: math.unit(5 + 11 / 12, "feet"),
  20942. weight: math.unit(180, "lb"),
  20943. name: "Back",
  20944. image: {
  20945. source: "./media/characters/sen/back.svg",
  20946. extra: 1321 / 1254
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Normal",
  20953. height: math.unit(5 + 11 / 12, "feet"),
  20954. default: true
  20955. },
  20956. ]
  20957. ))
  20958. characterMakers.push(() => makeCharacter(
  20959. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20960. {
  20961. front: {
  20962. height: math.unit(166.6, "cm"),
  20963. weight: math.unit(66.6, "kg"),
  20964. name: "Front",
  20965. image: {
  20966. source: "./media/characters/fruity/front.svg",
  20967. extra: 1510 / 1386,
  20968. bottom: 0.04
  20969. }
  20970. },
  20971. back: {
  20972. height: math.unit(166.6, "cm"),
  20973. weight: math.unit(66.6, "lb"),
  20974. name: "Back",
  20975. image: {
  20976. source: "./media/characters/fruity/back.svg",
  20977. extra: 1563 / 1435,
  20978. bottom: 0.005
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(166.6, "cm"),
  20986. default: true
  20987. },
  20988. {
  20989. name: "Demonic",
  20990. height: math.unit(166.6, "feet")
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20996. {
  20997. side: {
  20998. height: math.unit(10, "feet"),
  20999. weight: math.unit(500, "lb"),
  21000. name: "Side",
  21001. image: {
  21002. source: "./media/characters/zost/side.svg",
  21003. extra: 966 / 880,
  21004. bottom: 0.075
  21005. }
  21006. },
  21007. mawFront: {
  21008. height: math.unit(1.08, "meters"),
  21009. name: "Maw (Front)",
  21010. image: {
  21011. source: "./media/characters/zost/maw-front.svg"
  21012. }
  21013. },
  21014. mawSide: {
  21015. height: math.unit(2.66, "feet"),
  21016. name: "Maw (Side)",
  21017. image: {
  21018. source: "./media/characters/zost/maw-side.svg"
  21019. }
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(10, "feet"),
  21026. default: true
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(5 + 4 / 12, "feet"),
  21035. weight: math.unit(120, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/luci/front.svg",
  21039. extra: 1985 / 1884,
  21040. bottom: 0.04
  21041. }
  21042. },
  21043. back: {
  21044. height: math.unit(5 + 4 / 12, "feet"),
  21045. weight: math.unit(120, "lb"),
  21046. name: "Back",
  21047. image: {
  21048. source: "./media/characters/luci/back.svg",
  21049. extra: 1892 / 1791,
  21050. bottom: 0.002
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(5 + 4 / 12, "feet"),
  21058. default: true
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21064. {
  21065. front: {
  21066. height: math.unit(1500, "feet"),
  21067. weight: math.unit(3.8e6, "tons"),
  21068. name: "Front",
  21069. image: {
  21070. source: "./media/characters/2th/front.svg",
  21071. extra: 3489 / 3350,
  21072. bottom: 0.1
  21073. }
  21074. },
  21075. foot: {
  21076. height: math.unit(461, "feet"),
  21077. name: "Foot",
  21078. image: {
  21079. source: "./media/characters/2th/foot.svg"
  21080. }
  21081. },
  21082. },
  21083. [
  21084. {
  21085. name: "\"Micro\"",
  21086. height: math.unit(15 + 7 / 12, "feet")
  21087. },
  21088. {
  21089. name: "Normal",
  21090. height: math.unit(1500, "feet"),
  21091. default: true
  21092. },
  21093. {
  21094. name: "Macro",
  21095. height: math.unit(5000, "feet")
  21096. },
  21097. {
  21098. name: "Megamacro",
  21099. height: math.unit(15, "miles")
  21100. },
  21101. {
  21102. name: "Gigamacro",
  21103. height: math.unit(4000, "miles")
  21104. },
  21105. {
  21106. name: "Galactic",
  21107. height: math.unit(50, "AU")
  21108. },
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21113. {
  21114. front: {
  21115. height: math.unit(5 + 6 / 12, "feet"),
  21116. weight: math.unit(220, "lb"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/amethyst/front.svg",
  21120. extra: 2078 / 2040,
  21121. bottom: 0.045
  21122. }
  21123. },
  21124. back: {
  21125. height: math.unit(5 + 6 / 12, "feet"),
  21126. weight: math.unit(220, "lb"),
  21127. name: "Back",
  21128. image: {
  21129. source: "./media/characters/amethyst/back.svg",
  21130. extra: 2021 / 1989,
  21131. bottom: 0.02
  21132. }
  21133. },
  21134. },
  21135. [
  21136. {
  21137. name: "Normal",
  21138. height: math.unit(5 + 6 / 12, "feet"),
  21139. default: true
  21140. },
  21141. ]
  21142. ))
  21143. characterMakers.push(() => makeCharacter(
  21144. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21145. {
  21146. front: {
  21147. height: math.unit(4 + 11 / 12, "feet"),
  21148. weight: math.unit(120, "lb"),
  21149. name: "Front",
  21150. image: {
  21151. source: "./media/characters/yumi-akiyama/front.svg",
  21152. extra: 1327 / 1235,
  21153. bottom: 0.02
  21154. }
  21155. },
  21156. back: {
  21157. height: math.unit(4 + 11 / 12, "feet"),
  21158. weight: math.unit(120, "lb"),
  21159. name: "Back",
  21160. image: {
  21161. source: "./media/characters/yumi-akiyama/back.svg",
  21162. extra: 1287 / 1245,
  21163. bottom: 0.002
  21164. }
  21165. },
  21166. },
  21167. [
  21168. {
  21169. name: "Galactic",
  21170. height: math.unit(50, "galaxies"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Universal",
  21175. height: math.unit(100, "universes")
  21176. },
  21177. ]
  21178. ))
  21179. characterMakers.push(() => makeCharacter(
  21180. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21181. {
  21182. front: {
  21183. height: math.unit(8, "feet"),
  21184. weight: math.unit(500, "lb"),
  21185. name: "Front",
  21186. image: {
  21187. source: "./media/characters/rifter-yrmori/front.svg",
  21188. extra: 1180 / 1125,
  21189. bottom: 0.02
  21190. }
  21191. },
  21192. back: {
  21193. height: math.unit(8, "feet"),
  21194. weight: math.unit(500, "lb"),
  21195. name: "Back",
  21196. image: {
  21197. source: "./media/characters/rifter-yrmori/back.svg",
  21198. extra: 1190 / 1145,
  21199. bottom: 0.001
  21200. }
  21201. },
  21202. wings: {
  21203. height: math.unit(7.75, "feet"),
  21204. weight: math.unit(500, "lb"),
  21205. name: "Wings",
  21206. image: {
  21207. source: "./media/characters/rifter-yrmori/wings.svg",
  21208. extra: 1357 / 1285
  21209. }
  21210. },
  21211. maw: {
  21212. height: math.unit(0.8, "feet"),
  21213. name: "Maw",
  21214. image: {
  21215. source: "./media/characters/rifter-yrmori/maw.svg"
  21216. }
  21217. },
  21218. mawfront: {
  21219. height: math.unit(1.45, "feet"),
  21220. name: "Maw (Front)",
  21221. image: {
  21222. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(8, "feet"),
  21230. default: true
  21231. },
  21232. {
  21233. name: "Macro",
  21234. height: math.unit(42, "meters")
  21235. },
  21236. ]
  21237. ))
  21238. characterMakers.push(() => makeCharacter(
  21239. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21240. {
  21241. were: {
  21242. height: math.unit(25 + 6 / 12, "feet"),
  21243. weight: math.unit(10000, "lb"),
  21244. name: "Were",
  21245. image: {
  21246. source: "./media/characters/tahajin/were.svg",
  21247. extra: 801 / 770,
  21248. bottom: 0.042
  21249. }
  21250. },
  21251. aquatic: {
  21252. height: math.unit(6 + 4 / 12, "feet"),
  21253. weight: math.unit(160, "lb"),
  21254. name: "Aquatic",
  21255. image: {
  21256. source: "./media/characters/tahajin/aquatic.svg",
  21257. extra: 572 / 542,
  21258. bottom: 0.04
  21259. }
  21260. },
  21261. chow: {
  21262. height: math.unit(8 + 11 / 12, "feet"),
  21263. weight: math.unit(450, "lb"),
  21264. name: "Chow",
  21265. image: {
  21266. source: "./media/characters/tahajin/chow.svg",
  21267. extra: 660 / 640,
  21268. bottom: 0.015
  21269. }
  21270. },
  21271. demiNaga: {
  21272. height: math.unit(6 + 8 / 12, "feet"),
  21273. weight: math.unit(300, "lb"),
  21274. name: "Demi Naga",
  21275. image: {
  21276. source: "./media/characters/tahajin/demi-naga.svg",
  21277. extra: 643 / 615,
  21278. bottom: 0.1
  21279. }
  21280. },
  21281. data: {
  21282. height: math.unit(5, "inches"),
  21283. weight: math.unit(0.1, "lb"),
  21284. name: "Data",
  21285. image: {
  21286. source: "./media/characters/tahajin/data.svg"
  21287. }
  21288. },
  21289. fluu: {
  21290. height: math.unit(5 + 7 / 12, "feet"),
  21291. weight: math.unit(140, "lb"),
  21292. name: "Fluu",
  21293. image: {
  21294. source: "./media/characters/tahajin/fluu.svg",
  21295. extra: 628 / 592,
  21296. bottom: 0.02
  21297. }
  21298. },
  21299. starWarrior: {
  21300. height: math.unit(4 + 5 / 12, "feet"),
  21301. weight: math.unit(50, "lb"),
  21302. name: "Star Warrior",
  21303. image: {
  21304. source: "./media/characters/tahajin/star-warrior.svg"
  21305. }
  21306. },
  21307. },
  21308. [
  21309. {
  21310. name: "Normal",
  21311. height: math.unit(25 + 6 / 12, "feet"),
  21312. default: true
  21313. },
  21314. ]
  21315. ))
  21316. characterMakers.push(() => makeCharacter(
  21317. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21318. {
  21319. front: {
  21320. height: math.unit(8, "feet"),
  21321. weight: math.unit(350, "lb"),
  21322. name: "Front",
  21323. image: {
  21324. source: "./media/characters/gabira/front.svg",
  21325. extra: 608 / 580,
  21326. bottom: 0.03
  21327. }
  21328. },
  21329. back: {
  21330. height: math.unit(8, "feet"),
  21331. weight: math.unit(350, "lb"),
  21332. name: "Back",
  21333. image: {
  21334. source: "./media/characters/gabira/back.svg",
  21335. extra: 608 / 580,
  21336. bottom: 0.03
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(8, "feet"),
  21344. default: true
  21345. },
  21346. ]
  21347. ))
  21348. characterMakers.push(() => makeCharacter(
  21349. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21350. {
  21351. front: {
  21352. height: math.unit(5 + 3 / 12, "feet"),
  21353. weight: math.unit(137, "lb"),
  21354. name: "Front",
  21355. image: {
  21356. source: "./media/characters/sasha-katraine/front.svg",
  21357. bottom: 0.045
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Micro",
  21364. height: math.unit(5, "inches")
  21365. },
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(5 + 3 / 12, "feet"),
  21369. default: true
  21370. },
  21371. ]
  21372. ))
  21373. characterMakers.push(() => makeCharacter(
  21374. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21375. {
  21376. side: {
  21377. height: math.unit(4, "inches"),
  21378. weight: math.unit(200, "grams"),
  21379. name: "Side",
  21380. image: {
  21381. source: "./media/characters/der/side.svg",
  21382. extra: 719 / 400,
  21383. bottom: 30.6 / 749.9187
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Micro",
  21390. height: math.unit(4, "inches"),
  21391. default: true
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21397. {
  21398. side: {
  21399. height: math.unit(30, "meters"),
  21400. weight: math.unit(700, "tonnes"),
  21401. name: "Side",
  21402. image: {
  21403. source: "./media/characters/fixerdragon/side.svg",
  21404. extra: (1293.0514 - 116.03) / 1106.86,
  21405. bottom: 116.03 / 1293.0514
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Planck",
  21412. height: math.unit(1.6e-35, "meters")
  21413. },
  21414. {
  21415. name: "Micro",
  21416. height: math.unit(0.4, "meters")
  21417. },
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(30, "meters"),
  21421. default: true
  21422. },
  21423. {
  21424. name: "Megamacro",
  21425. height: math.unit(1.2, "megameters")
  21426. },
  21427. {
  21428. name: "Teramacro",
  21429. height: math.unit(130, "terameters")
  21430. },
  21431. {
  21432. name: "Yottamacro",
  21433. height: math.unit(6200, "yottameters")
  21434. },
  21435. ]
  21436. ));
  21437. characterMakers.push(() => makeCharacter(
  21438. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21439. {
  21440. front: {
  21441. height: math.unit(8, "feet"),
  21442. weight: math.unit(250, "lb"),
  21443. name: "Front",
  21444. image: {
  21445. source: "./media/characters/kite/front.svg",
  21446. extra: 2796 / 2659,
  21447. bottom: 0.002
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(8, "feet"),
  21455. default: true
  21456. },
  21457. {
  21458. name: "Macro",
  21459. height: math.unit(360, "feet")
  21460. },
  21461. {
  21462. name: "Megamacro",
  21463. height: math.unit(1500, "feet")
  21464. },
  21465. ]
  21466. ))
  21467. characterMakers.push(() => makeCharacter(
  21468. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21469. {
  21470. front: {
  21471. height: math.unit(5 + 10 / 12, "feet"),
  21472. weight: math.unit(150, "lb"),
  21473. name: "Front",
  21474. image: {
  21475. source: "./media/characters/poojawa-vynar/front.svg",
  21476. extra: (1506.1547 - 55) / 1356.6,
  21477. bottom: 55 / 1506.1547
  21478. }
  21479. },
  21480. frontTailless: {
  21481. height: math.unit(5 + 10 / 12, "feet"),
  21482. weight: math.unit(150, "lb"),
  21483. name: "Front (Tailless)",
  21484. image: {
  21485. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21486. extra: (1506.1547 - 55) / 1356.6,
  21487. bottom: 55 / 1506.1547
  21488. }
  21489. },
  21490. },
  21491. [
  21492. {
  21493. name: "Normal",
  21494. height: math.unit(5 + 10 / 12, "feet"),
  21495. default: true
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21501. {
  21502. front: {
  21503. height: math.unit(293, "meters"),
  21504. weight: math.unit(70400, "tons"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/violette/front.svg",
  21508. extra: 1227 / 1180,
  21509. bottom: 0.005
  21510. }
  21511. },
  21512. back: {
  21513. height: math.unit(293, "meters"),
  21514. weight: math.unit(70400, "tons"),
  21515. name: "Back",
  21516. image: {
  21517. source: "./media/characters/violette/back.svg",
  21518. extra: 1227 / 1180,
  21519. bottom: 0.005
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Macro",
  21526. height: math.unit(293, "meters"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21533. {
  21534. front: {
  21535. height: math.unit(1050, "feet"),
  21536. weight: math.unit(200000, "tons"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/alessandra/front.svg",
  21540. extra: 960 / 912,
  21541. bottom: 0.06
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Macro",
  21548. height: math.unit(1050, "feet")
  21549. },
  21550. {
  21551. name: "Macro+",
  21552. height: math.unit(900, "meters"),
  21553. default: true
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21559. {
  21560. front: {
  21561. height: math.unit(5, "feet"),
  21562. weight: math.unit(187, "lb"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/person/front.svg",
  21566. extra: 3087 / 2945,
  21567. bottom: 91 / 3181
  21568. }
  21569. },
  21570. },
  21571. [
  21572. {
  21573. name: "Micro",
  21574. height: math.unit(3, "inches")
  21575. },
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(5, "feet"),
  21579. default: true
  21580. },
  21581. {
  21582. name: "Macro",
  21583. height: math.unit(90, "feet")
  21584. },
  21585. {
  21586. name: "Max Size",
  21587. height: math.unit(280, "feet")
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21593. {
  21594. front: {
  21595. height: math.unit(4.5, "meters"),
  21596. weight: math.unit(3200, "lb"),
  21597. name: "Front",
  21598. image: {
  21599. source: "./media/characters/ty/front.svg",
  21600. extra: 1038 / 960,
  21601. bottom: 31.156 / 1068
  21602. }
  21603. },
  21604. back: {
  21605. height: math.unit(4.5, "meters"),
  21606. weight: math.unit(3200, "lb"),
  21607. name: "Back",
  21608. image: {
  21609. source: "./media/characters/ty/back.svg",
  21610. extra: 1044 / 966,
  21611. bottom: 7.48 / 1049
  21612. }
  21613. },
  21614. },
  21615. [
  21616. {
  21617. name: "Normal",
  21618. height: math.unit(4.5, "meters"),
  21619. default: true
  21620. },
  21621. ]
  21622. ))
  21623. characterMakers.push(() => makeCharacter(
  21624. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21625. {
  21626. front: {
  21627. height: math.unit(5 + 4 / 12, "feet"),
  21628. weight: math.unit(115, "lb"),
  21629. name: "Front",
  21630. image: {
  21631. source: "./media/characters/rocky/front.svg",
  21632. extra: 1012 / 975,
  21633. bottom: 54 / 1066
  21634. }
  21635. },
  21636. },
  21637. [
  21638. {
  21639. name: "Normal",
  21640. height: math.unit(5 + 4 / 12, "feet"),
  21641. default: true
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21647. {
  21648. upright: {
  21649. height: math.unit(6, "meters"),
  21650. weight: math.unit(4000, "kg"),
  21651. name: "Upright",
  21652. image: {
  21653. source: "./media/characters/ruin/upright.svg",
  21654. extra: 668 / 661,
  21655. bottom: 42 / 799.8396
  21656. }
  21657. },
  21658. },
  21659. [
  21660. {
  21661. name: "Normal",
  21662. height: math.unit(6, "meters"),
  21663. default: true
  21664. },
  21665. ]
  21666. ))
  21667. characterMakers.push(() => makeCharacter(
  21668. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21669. {
  21670. front: {
  21671. height: math.unit(5, "feet"),
  21672. weight: math.unit(106, "lb"),
  21673. name: "Front",
  21674. image: {
  21675. source: "./media/characters/robin/front.svg",
  21676. extra: 862 / 799,
  21677. bottom: 42.4 / 914.8856
  21678. }
  21679. },
  21680. },
  21681. [
  21682. {
  21683. name: "Normal",
  21684. height: math.unit(5, "feet"),
  21685. default: true
  21686. },
  21687. ]
  21688. ))
  21689. characterMakers.push(() => makeCharacter(
  21690. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21691. {
  21692. side: {
  21693. height: math.unit(3, "feet"),
  21694. weight: math.unit(225, "lb"),
  21695. name: "Side",
  21696. image: {
  21697. source: "./media/characters/saian/side.svg",
  21698. extra: 566 / 356,
  21699. bottom: 79.7 / 643
  21700. }
  21701. },
  21702. maw: {
  21703. height: math.unit(2.85, "feet"),
  21704. name: "Maw",
  21705. image: {
  21706. source: "./media/characters/saian/maw.svg"
  21707. }
  21708. },
  21709. },
  21710. [
  21711. {
  21712. name: "Normal",
  21713. height: math.unit(3, "feet"),
  21714. default: true
  21715. },
  21716. ]
  21717. ))
  21718. characterMakers.push(() => makeCharacter(
  21719. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21720. {
  21721. side: {
  21722. height: math.unit(8, "feet"),
  21723. weight: math.unit(300, "lb"),
  21724. name: "Side",
  21725. image: {
  21726. source: "./media/characters/equus-silvermane/side.svg",
  21727. extra: 2176 / 2050,
  21728. bottom: 65.7 / 2245
  21729. }
  21730. },
  21731. front: {
  21732. height: math.unit(8, "feet"),
  21733. weight: math.unit(300, "lb"),
  21734. name: "Front",
  21735. image: {
  21736. source: "./media/characters/equus-silvermane/front.svg",
  21737. extra: 4633 / 4400,
  21738. bottom: 71.3 / 4706.915
  21739. }
  21740. },
  21741. sideStepping: {
  21742. height: math.unit(8, "feet"),
  21743. weight: math.unit(300, "lb"),
  21744. name: "Side (Stepping)",
  21745. image: {
  21746. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21747. extra: 1968 / 1860,
  21748. bottom: 16.4 / 1989
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Normal",
  21755. height: math.unit(8, "feet")
  21756. },
  21757. {
  21758. name: "Minimacro",
  21759. height: math.unit(75, "feet"),
  21760. default: true
  21761. },
  21762. {
  21763. name: "Macro",
  21764. height: math.unit(150, "feet")
  21765. },
  21766. {
  21767. name: "Macro+",
  21768. height: math.unit(1000, "feet")
  21769. },
  21770. {
  21771. name: "Megamacro",
  21772. height: math.unit(1, "mile")
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21778. {
  21779. side: {
  21780. height: math.unit(20, "feet"),
  21781. weight: math.unit(30000, "kg"),
  21782. name: "Side",
  21783. image: {
  21784. source: "./media/characters/windar/side.svg",
  21785. extra: 1491 / 1248,
  21786. bottom: 82.56 / 1568
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(20, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21800. {
  21801. side: {
  21802. height: math.unit(15.66, "feet"),
  21803. weight: math.unit(150, "lb"),
  21804. name: "Side",
  21805. image: {
  21806. source: "./media/characters/melody/side.svg",
  21807. extra: 1097 / 944,
  21808. bottom: 11.8 / 1109
  21809. }
  21810. },
  21811. sideOutfit: {
  21812. height: math.unit(15.66, "feet"),
  21813. weight: math.unit(150, "lb"),
  21814. name: "Side (Outfit)",
  21815. image: {
  21816. source: "./media/characters/melody/side-outfit.svg",
  21817. extra: 1097 / 944,
  21818. bottom: 11.8 / 1109
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Normal",
  21825. height: math.unit(15.66, "feet"),
  21826. default: true
  21827. },
  21828. ]
  21829. ))
  21830. characterMakers.push(() => makeCharacter(
  21831. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21832. {
  21833. front: {
  21834. height: math.unit(8, "feet"),
  21835. weight: math.unit(325, "lb"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/windera/front.svg",
  21839. extra: 3180 / 2845,
  21840. bottom: 178 / 3365
  21841. }
  21842. },
  21843. },
  21844. [
  21845. {
  21846. name: "Normal",
  21847. height: math.unit(8, "feet"),
  21848. default: true
  21849. },
  21850. ]
  21851. ))
  21852. characterMakers.push(() => makeCharacter(
  21853. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21854. {
  21855. front: {
  21856. height: math.unit(28.75, "feet"),
  21857. weight: math.unit(2000, "kg"),
  21858. name: "Front",
  21859. image: {
  21860. source: "./media/characters/sonear/front.svg",
  21861. extra: 1041.1 / 964.9,
  21862. bottom: 53.7 / 1096.6
  21863. }
  21864. },
  21865. },
  21866. [
  21867. {
  21868. name: "Normal",
  21869. height: math.unit(28.75, "feet"),
  21870. default: true
  21871. },
  21872. ]
  21873. ))
  21874. characterMakers.push(() => makeCharacter(
  21875. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21876. {
  21877. side: {
  21878. height: math.unit(25.5, "feet"),
  21879. weight: math.unit(23000, "kg"),
  21880. name: "Side",
  21881. image: {
  21882. source: "./media/characters/kanara/side.svg"
  21883. }
  21884. },
  21885. },
  21886. [
  21887. {
  21888. name: "Normal",
  21889. height: math.unit(25.5, "feet"),
  21890. default: true
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21896. {
  21897. side: {
  21898. height: math.unit(10, "feet"),
  21899. weight: math.unit(1000, "kg"),
  21900. name: "Side",
  21901. image: {
  21902. source: "./media/characters/ereus/side.svg",
  21903. extra: 1157 / 959,
  21904. bottom: 153 / 1312.5
  21905. }
  21906. },
  21907. },
  21908. [
  21909. {
  21910. name: "Normal",
  21911. height: math.unit(10, "feet"),
  21912. default: true
  21913. },
  21914. ]
  21915. ))
  21916. characterMakers.push(() => makeCharacter(
  21917. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21918. {
  21919. side: {
  21920. height: math.unit(4.5, "feet"),
  21921. weight: math.unit(500, "lb"),
  21922. name: "Side",
  21923. image: {
  21924. source: "./media/characters/e-ter/side.svg",
  21925. extra: 1550 / 1248,
  21926. bottom: 146 / 1694
  21927. }
  21928. },
  21929. },
  21930. [
  21931. {
  21932. name: "Normal",
  21933. height: math.unit(4.5, "feet"),
  21934. default: true
  21935. },
  21936. ]
  21937. ))
  21938. characterMakers.push(() => makeCharacter(
  21939. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21940. {
  21941. side: {
  21942. height: math.unit(9.7, "feet"),
  21943. weight: math.unit(4000, "kg"),
  21944. name: "Side",
  21945. image: {
  21946. source: "./media/characters/yamie/side.svg"
  21947. }
  21948. },
  21949. },
  21950. [
  21951. {
  21952. name: "Normal",
  21953. height: math.unit(9.7, "feet"),
  21954. default: true
  21955. },
  21956. ]
  21957. ))
  21958. characterMakers.push(() => makeCharacter(
  21959. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21960. {
  21961. front: {
  21962. height: math.unit(50, "feet"),
  21963. weight: math.unit(50000, "kg"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/anders/front.svg",
  21967. extra: 570 / 539,
  21968. bottom: 14.7 / 586.7
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Large",
  21975. height: math.unit(50, "feet")
  21976. },
  21977. {
  21978. name: "Macro",
  21979. height: math.unit(2000, "feet"),
  21980. default: true
  21981. },
  21982. {
  21983. name: "Megamacro",
  21984. height: math.unit(12, "miles")
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21990. {
  21991. front: {
  21992. height: math.unit(7 + 2 / 12, "feet"),
  21993. weight: math.unit(300, "lb"),
  21994. name: "Front",
  21995. image: {
  21996. source: "./media/characters/reban/front.svg",
  21997. extra: 516 / 487,
  21998. bottom: 42.82 / 558.356
  21999. }
  22000. },
  22001. dick: {
  22002. height: math.unit(7 / 5, "feet"),
  22003. name: "Dick",
  22004. image: {
  22005. source: "./media/characters/reban/dick.svg"
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Natural Height",
  22012. height: math.unit(7 + 2 / 12, "feet")
  22013. },
  22014. {
  22015. name: "Macro",
  22016. height: math.unit(500, "feet"),
  22017. default: true
  22018. },
  22019. {
  22020. name: "Canon Height",
  22021. height: math.unit(50, "AU")
  22022. },
  22023. ]
  22024. ))
  22025. characterMakers.push(() => makeCharacter(
  22026. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22027. {
  22028. front: {
  22029. height: math.unit(6, "feet"),
  22030. weight: math.unit(150, "lb"),
  22031. name: "Front",
  22032. image: {
  22033. source: "./media/characters/terrance-keayes/front.svg",
  22034. extra: 1.005,
  22035. bottom: 151 / 1615
  22036. }
  22037. },
  22038. side: {
  22039. height: math.unit(6, "feet"),
  22040. weight: math.unit(150, "lb"),
  22041. name: "Side",
  22042. image: {
  22043. source: "./media/characters/terrance-keayes/side.svg",
  22044. extra: 1.005,
  22045. bottom: 129.4 / 1544
  22046. }
  22047. },
  22048. back: {
  22049. height: math.unit(6, "feet"),
  22050. weight: math.unit(150, "lb"),
  22051. name: "Back",
  22052. image: {
  22053. source: "./media/characters/terrance-keayes/back.svg",
  22054. extra: 1.005,
  22055. bottom: 58.4 / 1557.3
  22056. }
  22057. },
  22058. dick: {
  22059. height: math.unit(6 * 0.208, "feet"),
  22060. name: "Dick",
  22061. image: {
  22062. source: "./media/characters/terrance-keayes/dick.svg"
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Canon Height",
  22069. height: math.unit(35, "miles"),
  22070. default: true
  22071. },
  22072. ]
  22073. ))
  22074. characterMakers.push(() => makeCharacter(
  22075. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22076. {
  22077. front: {
  22078. height: math.unit(6, "feet"),
  22079. weight: math.unit(150, "lb"),
  22080. name: "Front",
  22081. image: {
  22082. source: "./media/characters/ofelia/front.svg",
  22083. extra: 546 / 541,
  22084. bottom: 39 / 583
  22085. }
  22086. },
  22087. back: {
  22088. height: math.unit(6, "feet"),
  22089. weight: math.unit(150, "lb"),
  22090. name: "Back",
  22091. image: {
  22092. source: "./media/characters/ofelia/back.svg",
  22093. extra: 564 / 559.5,
  22094. bottom: 8.69 / 573.02
  22095. }
  22096. },
  22097. maw: {
  22098. height: math.unit(1, "feet"),
  22099. name: "Maw",
  22100. image: {
  22101. source: "./media/characters/ofelia/maw.svg"
  22102. }
  22103. },
  22104. foot: {
  22105. height: math.unit(1.949, "feet"),
  22106. name: "Foot",
  22107. image: {
  22108. source: "./media/characters/ofelia/foot.svg"
  22109. }
  22110. },
  22111. },
  22112. [
  22113. {
  22114. name: "Canon Height",
  22115. height: math.unit(2000, "miles"),
  22116. default: true
  22117. },
  22118. ]
  22119. ))
  22120. characterMakers.push(() => makeCharacter(
  22121. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22122. {
  22123. front: {
  22124. height: math.unit(6, "feet"),
  22125. weight: math.unit(150, "lb"),
  22126. name: "Front",
  22127. image: {
  22128. source: "./media/characters/samuel/front.svg",
  22129. extra: 265 / 258,
  22130. bottom: 2 / 266.1566
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Macro",
  22137. height: math.unit(100, "feet"),
  22138. default: true
  22139. },
  22140. {
  22141. name: "Full Size",
  22142. height: math.unit(1000, "miles")
  22143. },
  22144. ]
  22145. ))
  22146. characterMakers.push(() => makeCharacter(
  22147. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22148. {
  22149. front: {
  22150. height: math.unit(6, "feet"),
  22151. weight: math.unit(300, "lb"),
  22152. name: "Front",
  22153. image: {
  22154. source: "./media/characters/beishir-kiel/front.svg",
  22155. extra: 569 / 547,
  22156. bottom: 41.9 / 609
  22157. }
  22158. },
  22159. maw: {
  22160. height: math.unit(6 * 0.202, "feet"),
  22161. name: "Maw",
  22162. image: {
  22163. source: "./media/characters/beishir-kiel/maw.svg"
  22164. }
  22165. },
  22166. },
  22167. [
  22168. {
  22169. name: "Macro",
  22170. height: math.unit(300, "feet"),
  22171. default: true
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22177. {
  22178. front: {
  22179. height: math.unit(5 + 7/12, "feet"),
  22180. weight: math.unit(120, "lb"),
  22181. name: "Front",
  22182. image: {
  22183. source: "./media/characters/logan-grey/front.svg",
  22184. extra: 1836/1738,
  22185. bottom: 108/1944
  22186. }
  22187. },
  22188. back: {
  22189. height: math.unit(5 + 7/12, "feet"),
  22190. weight: math.unit(120, "lb"),
  22191. name: "Back",
  22192. image: {
  22193. source: "./media/characters/logan-grey/back.svg",
  22194. extra: 1880/1794,
  22195. bottom: 24/1904
  22196. }
  22197. },
  22198. frontSfw: {
  22199. height: math.unit(5 + 7/12, "feet"),
  22200. weight: math.unit(120, "lb"),
  22201. name: "Front (SFW)",
  22202. image: {
  22203. source: "./media/characters/logan-grey/front-sfw.svg",
  22204. extra: 1836/1738,
  22205. bottom: 108/1944
  22206. }
  22207. },
  22208. backSfw: {
  22209. height: math.unit(5 + 7/12, "feet"),
  22210. weight: math.unit(120, "lb"),
  22211. name: "Back (SFW)",
  22212. image: {
  22213. source: "./media/characters/logan-grey/back-sfw.svg",
  22214. extra: 1880/1794,
  22215. bottom: 24/1904
  22216. }
  22217. },
  22218. hands: {
  22219. height: math.unit(0.84, "feet"),
  22220. name: "Hands",
  22221. image: {
  22222. source: "./media/characters/logan-grey/hands.svg"
  22223. }
  22224. },
  22225. paws: {
  22226. height: math.unit(0.72, "feet"),
  22227. name: "Paws",
  22228. image: {
  22229. source: "./media/characters/logan-grey/paws.svg"
  22230. }
  22231. },
  22232. cock: {
  22233. height: math.unit(1.45, "feet"),
  22234. name: "Cock",
  22235. image: {
  22236. source: "./media/characters/logan-grey/cock.svg"
  22237. }
  22238. },
  22239. cockAlt: {
  22240. height: math.unit(1.437, "feet"),
  22241. name: "Cock (alt)",
  22242. image: {
  22243. source: "./media/characters/logan-grey/cock-alt.svg"
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(5 + 8 / 12, "feet")
  22251. },
  22252. {
  22253. name: "The 500 Foot Femboy",
  22254. height: math.unit(500, "feet"),
  22255. default: true
  22256. },
  22257. {
  22258. name: "Megmacro",
  22259. height: math.unit(20, "miles")
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(8 + 2 / 12, "feet"),
  22268. weight: math.unit(275, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/draganta/front.svg",
  22272. extra: 1177 / 1135,
  22273. bottom: 33.46 / 1212.1
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Normal",
  22280. height: math.unit(8 + 6 / 12, "feet"),
  22281. default: true
  22282. },
  22283. {
  22284. name: "Macro",
  22285. height: math.unit(150, "feet")
  22286. },
  22287. {
  22288. name: "Megamacro",
  22289. height: math.unit(1000, "miles")
  22290. },
  22291. ]
  22292. ))
  22293. characterMakers.push(() => makeCharacter(
  22294. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22295. {
  22296. front: {
  22297. height: math.unit(1.72, "m"),
  22298. weight: math.unit(80, "lb"),
  22299. name: "Front",
  22300. image: {
  22301. source: "./media/characters/voski/front.svg",
  22302. extra: 2076.22 / 2022.4,
  22303. bottom: 102.7 / 2177.3866
  22304. }
  22305. },
  22306. frontNsfw: {
  22307. height: math.unit(1.72, "m"),
  22308. weight: math.unit(80, "lb"),
  22309. name: "Front (NSFW)",
  22310. image: {
  22311. source: "./media/characters/voski/front-nsfw.svg",
  22312. extra: 2076.22 / 2022.4,
  22313. bottom: 102.7 / 2177.3866
  22314. }
  22315. },
  22316. back: {
  22317. height: math.unit(1.72, "m"),
  22318. weight: math.unit(80, "lb"),
  22319. name: "Back",
  22320. image: {
  22321. source: "./media/characters/voski/back.svg",
  22322. extra: 2104 / 2051,
  22323. bottom: 10.45 / 2113.63
  22324. }
  22325. },
  22326. },
  22327. [
  22328. {
  22329. name: "Normal",
  22330. height: math.unit(1.72, "m")
  22331. },
  22332. {
  22333. name: "Macro",
  22334. height: math.unit(55, "m"),
  22335. default: true
  22336. },
  22337. {
  22338. name: "Macro+",
  22339. height: math.unit(300, "m")
  22340. },
  22341. {
  22342. name: "Macro++",
  22343. height: math.unit(700, "m")
  22344. },
  22345. {
  22346. name: "Macro+++",
  22347. height: math.unit(4500, "m")
  22348. },
  22349. {
  22350. name: "Macro++++",
  22351. height: math.unit(45, "km")
  22352. },
  22353. {
  22354. name: "Macro+++++",
  22355. height: math.unit(1220, "km")
  22356. },
  22357. ]
  22358. ))
  22359. characterMakers.push(() => makeCharacter(
  22360. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22361. {
  22362. front: {
  22363. height: math.unit(2.3, "m"),
  22364. weight: math.unit(304, "kg"),
  22365. name: "Front",
  22366. image: {
  22367. source: "./media/characters/icowom-lee/front.svg",
  22368. extra: 985 / 955,
  22369. bottom: 25.4 / 1012
  22370. }
  22371. },
  22372. fronttentacles: {
  22373. height: math.unit(2.3, "m"),
  22374. weight: math.unit(304, "kg"),
  22375. name: "Front-tentacles",
  22376. image: {
  22377. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22378. extra: 985 / 955,
  22379. bottom: 25.4 / 1012
  22380. }
  22381. },
  22382. back: {
  22383. height: math.unit(2.3, "m"),
  22384. weight: math.unit(304, "kg"),
  22385. name: "Back",
  22386. image: {
  22387. source: "./media/characters/icowom-lee/back.svg",
  22388. extra: 975 / 954,
  22389. bottom: 9.5 / 985
  22390. }
  22391. },
  22392. backtentacles: {
  22393. height: math.unit(2.3, "m"),
  22394. weight: math.unit(304, "kg"),
  22395. name: "Back-tentacles",
  22396. image: {
  22397. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22398. extra: 975 / 954,
  22399. bottom: 9.5 / 985
  22400. }
  22401. },
  22402. frontDressed: {
  22403. height: math.unit(2.3, "m"),
  22404. weight: math.unit(304, "kg"),
  22405. name: "Front (Dressed)",
  22406. image: {
  22407. source: "./media/characters/icowom-lee/front-dressed.svg",
  22408. extra: 3076 / 2933,
  22409. bottom: 51.4 / 3125.1889
  22410. }
  22411. },
  22412. rump: {
  22413. height: math.unit(0.776, "meters"),
  22414. name: "Rump",
  22415. image: {
  22416. source: "./media/characters/icowom-lee/rump.svg"
  22417. }
  22418. },
  22419. genitals: {
  22420. height: math.unit(0.78, "meters"),
  22421. name: "Genitals",
  22422. image: {
  22423. source: "./media/characters/icowom-lee/genitals.svg"
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(2.3, "meters"),
  22431. default: true
  22432. },
  22433. {
  22434. name: "Macro",
  22435. height: math.unit(94, "meters"),
  22436. default: true
  22437. },
  22438. ]
  22439. ))
  22440. characterMakers.push(() => makeCharacter(
  22441. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22442. {
  22443. front: {
  22444. height: math.unit(22, "meters"),
  22445. weight: math.unit(21000, "kg"),
  22446. name: "Front",
  22447. image: {
  22448. source: "./media/characters/shock-diamond/front.svg",
  22449. extra: 2204 / 2053,
  22450. bottom: 65 / 2239.47
  22451. }
  22452. },
  22453. frontNude: {
  22454. height: math.unit(22, "meters"),
  22455. weight: math.unit(21000, "kg"),
  22456. name: "Front (Nude)",
  22457. image: {
  22458. source: "./media/characters/shock-diamond/front-nude.svg",
  22459. extra: 2514 / 2285,
  22460. bottom: 13 / 2527.56
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "Normal",
  22467. height: math.unit(3, "meters")
  22468. },
  22469. {
  22470. name: "Macro",
  22471. height: math.unit(22, "meters"),
  22472. default: true
  22473. },
  22474. ]
  22475. ))
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22478. {
  22479. front: {
  22480. height: math.unit(5 + 4 / 12, "feet"),
  22481. weight: math.unit(120, "lb"),
  22482. name: "Front",
  22483. image: {
  22484. source: "./media/characters/rory/front.svg",
  22485. extra: 1318/1241,
  22486. bottom: 42/1360
  22487. }
  22488. },
  22489. back: {
  22490. height: math.unit(5 + 4 / 12, "feet"),
  22491. weight: math.unit(120, "lb"),
  22492. name: "Back",
  22493. image: {
  22494. source: "./media/characters/rory/back.svg",
  22495. extra: 1318/1241,
  22496. bottom: 42/1360
  22497. }
  22498. },
  22499. butt: {
  22500. height: math.unit(1.74, "feet"),
  22501. name: "Butt",
  22502. image: {
  22503. source: "./media/characters/rory/butt.svg"
  22504. }
  22505. },
  22506. dick: {
  22507. height: math.unit(1.02, "feet"),
  22508. name: "Dick",
  22509. image: {
  22510. source: "./media/characters/rory/dick.svg"
  22511. }
  22512. },
  22513. paws: {
  22514. height: math.unit(1, "feet"),
  22515. name: "Paws",
  22516. image: {
  22517. source: "./media/characters/rory/paws.svg"
  22518. }
  22519. },
  22520. frontAlt: {
  22521. height: math.unit(5 + 4 / 12, "feet"),
  22522. weight: math.unit(120, "lb"),
  22523. name: "Front (Alt)",
  22524. image: {
  22525. source: "./media/characters/rory/front-alt.svg",
  22526. extra: 589 / 556,
  22527. bottom: 45.7 / 635.76
  22528. }
  22529. },
  22530. frontAltNude: {
  22531. height: math.unit(5 + 4 / 12, "feet"),
  22532. weight: math.unit(120, "lb"),
  22533. name: "Front (Alt, Nude)",
  22534. image: {
  22535. source: "./media/characters/rory/front-alt-nude.svg",
  22536. extra: 589 / 556,
  22537. bottom: 45.7 / 635.76
  22538. }
  22539. },
  22540. side: {
  22541. height: math.unit(5 + 4 / 12, "feet"),
  22542. weight: math.unit(120, "lb"),
  22543. name: "Side",
  22544. image: {
  22545. source: "./media/characters/rory/side.svg",
  22546. extra: 597 / 564,
  22547. bottom: 55 / 653
  22548. }
  22549. },
  22550. backAlt: {
  22551. height: math.unit(5 + 4 / 12, "feet"),
  22552. weight: math.unit(120, "lb"),
  22553. name: "Back (Alt)",
  22554. image: {
  22555. source: "./media/characters/rory/back-alt.svg",
  22556. extra: 620 / 585,
  22557. bottom: 8.86 / 630.43
  22558. }
  22559. },
  22560. dickAlt: {
  22561. height: math.unit(0.86, "feet"),
  22562. name: "Dick (Alt)",
  22563. image: {
  22564. source: "./media/characters/rory/dick-alt.svg"
  22565. }
  22566. },
  22567. },
  22568. [
  22569. {
  22570. name: "Normal",
  22571. height: math.unit(5 + 4 / 12, "feet"),
  22572. default: true
  22573. },
  22574. {
  22575. name: "Macro",
  22576. height: math.unit(100, "feet")
  22577. },
  22578. {
  22579. name: "Macro+",
  22580. height: math.unit(140, "feet")
  22581. },
  22582. {
  22583. name: "Macro++",
  22584. height: math.unit(300, "feet")
  22585. },
  22586. ]
  22587. ))
  22588. characterMakers.push(() => makeCharacter(
  22589. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22590. {
  22591. front: {
  22592. height: math.unit(5 + 9 / 12, "feet"),
  22593. weight: math.unit(190, "lb"),
  22594. name: "Front",
  22595. image: {
  22596. source: "./media/characters/sprisk/front.svg",
  22597. extra: 1225 / 1180,
  22598. bottom: 42.7 / 1266.4
  22599. }
  22600. },
  22601. frontNsfw: {
  22602. height: math.unit(5 + 9 / 12, "feet"),
  22603. weight: math.unit(190, "lb"),
  22604. name: "Front (NSFW)",
  22605. image: {
  22606. source: "./media/characters/sprisk/front-nsfw.svg",
  22607. extra: 1225 / 1180,
  22608. bottom: 42.7 / 1266.4
  22609. }
  22610. },
  22611. back: {
  22612. height: math.unit(5 + 9 / 12, "feet"),
  22613. weight: math.unit(190, "lb"),
  22614. name: "Back",
  22615. image: {
  22616. source: "./media/characters/sprisk/back.svg",
  22617. extra: 1247 / 1200,
  22618. bottom: 5.6 / 1253.04
  22619. }
  22620. },
  22621. },
  22622. [
  22623. {
  22624. name: "Tiny",
  22625. height: math.unit(2, "inches")
  22626. },
  22627. {
  22628. name: "Normal",
  22629. height: math.unit(5 + 9 / 12, "feet"),
  22630. default: true
  22631. },
  22632. {
  22633. name: "Mini Macro",
  22634. height: math.unit(18, "feet")
  22635. },
  22636. {
  22637. name: "Macro",
  22638. height: math.unit(100, "feet")
  22639. },
  22640. {
  22641. name: "MACRO",
  22642. height: math.unit(50, "miles")
  22643. },
  22644. {
  22645. name: "M A C R O",
  22646. height: math.unit(300, "miles")
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22652. {
  22653. side: {
  22654. height: math.unit(15.6, "meters"),
  22655. weight: math.unit(700000, "kg"),
  22656. name: "Side",
  22657. image: {
  22658. source: "./media/characters/bunsen/side.svg",
  22659. extra: 1644 / 358
  22660. }
  22661. },
  22662. foot: {
  22663. height: math.unit(1.611 * 1644 / 358, "meter"),
  22664. name: "Foot",
  22665. image: {
  22666. source: "./media/characters/bunsen/foot.svg"
  22667. }
  22668. },
  22669. },
  22670. [
  22671. {
  22672. name: "Small",
  22673. height: math.unit(10, "feet")
  22674. },
  22675. {
  22676. name: "Normal",
  22677. height: math.unit(15.6, "meters"),
  22678. default: true
  22679. },
  22680. ]
  22681. ))
  22682. characterMakers.push(() => makeCharacter(
  22683. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22684. {
  22685. front: {
  22686. height: math.unit(4 + 11 / 12, "feet"),
  22687. weight: math.unit(140, "lb"),
  22688. name: "Front",
  22689. image: {
  22690. source: "./media/characters/sesh/front.svg",
  22691. extra: 3420 / 3231,
  22692. bottom: 72 / 3949.5
  22693. }
  22694. },
  22695. },
  22696. [
  22697. {
  22698. name: "Normal",
  22699. height: math.unit(4 + 11 / 12, "feet")
  22700. },
  22701. {
  22702. name: "Grown",
  22703. height: math.unit(15, "feet"),
  22704. default: true
  22705. },
  22706. {
  22707. name: "Macro",
  22708. height: math.unit(1500, "feet")
  22709. },
  22710. {
  22711. name: "Megamacro",
  22712. height: math.unit(30, "miles")
  22713. },
  22714. {
  22715. name: "Continental",
  22716. height: math.unit(3000, "miles")
  22717. },
  22718. {
  22719. name: "Gravity Mass",
  22720. height: math.unit(300000, "miles")
  22721. },
  22722. {
  22723. name: "Planet Buster",
  22724. height: math.unit(30000000, "miles")
  22725. },
  22726. {
  22727. name: "Big",
  22728. height: math.unit(3000000000, "miles")
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22734. {
  22735. front: {
  22736. height: math.unit(9, "feet"),
  22737. weight: math.unit(350, "lb"),
  22738. name: "Front",
  22739. image: {
  22740. source: "./media/characters/pepper/front.svg",
  22741. extra: 1448 / 1312,
  22742. bottom: 9.4 / 1457.88
  22743. }
  22744. },
  22745. back: {
  22746. height: math.unit(9, "feet"),
  22747. weight: math.unit(350, "lb"),
  22748. name: "Back",
  22749. image: {
  22750. source: "./media/characters/pepper/back.svg",
  22751. extra: 1423 / 1300,
  22752. bottom: 4.6 / 1429
  22753. }
  22754. },
  22755. maw: {
  22756. height: math.unit(0.932, "feet"),
  22757. name: "Maw",
  22758. image: {
  22759. source: "./media/characters/pepper/maw.svg"
  22760. }
  22761. },
  22762. },
  22763. [
  22764. {
  22765. name: "Normal",
  22766. height: math.unit(9, "feet"),
  22767. default: true
  22768. },
  22769. ]
  22770. ))
  22771. characterMakers.push(() => makeCharacter(
  22772. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22773. {
  22774. front: {
  22775. height: math.unit(6, "feet"),
  22776. weight: math.unit(150, "lb"),
  22777. name: "Front",
  22778. image: {
  22779. source: "./media/characters/maelstrom/front.svg",
  22780. extra: 2100 / 1883,
  22781. bottom: 94 / 2196.7
  22782. }
  22783. },
  22784. },
  22785. [
  22786. {
  22787. name: "Less Kaiju",
  22788. height: math.unit(200, "feet")
  22789. },
  22790. {
  22791. name: "Kaiju",
  22792. height: math.unit(400, "feet"),
  22793. default: true
  22794. },
  22795. {
  22796. name: "Kaiju-er",
  22797. height: math.unit(600, "feet")
  22798. },
  22799. ]
  22800. ))
  22801. characterMakers.push(() => makeCharacter(
  22802. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22803. {
  22804. front: {
  22805. height: math.unit(6 + 5 / 12, "feet"),
  22806. weight: math.unit(180, "lb"),
  22807. name: "Front",
  22808. image: {
  22809. source: "./media/characters/lexir/front.svg",
  22810. extra: 180 / 172,
  22811. bottom: 12 / 192
  22812. }
  22813. },
  22814. back: {
  22815. height: math.unit(6 + 5 / 12, "feet"),
  22816. weight: math.unit(180, "lb"),
  22817. name: "Back",
  22818. image: {
  22819. source: "./media/characters/lexir/back.svg",
  22820. extra: 183.84 / 175.5,
  22821. bottom: 3.1 / 187
  22822. }
  22823. },
  22824. },
  22825. [
  22826. {
  22827. name: "Very Smal",
  22828. height: math.unit(1, "nm")
  22829. },
  22830. {
  22831. name: "Normal",
  22832. height: math.unit(6 + 5 / 12, "feet"),
  22833. default: true
  22834. },
  22835. {
  22836. name: "Macro",
  22837. height: math.unit(1, "mile")
  22838. },
  22839. {
  22840. name: "Megamacro",
  22841. height: math.unit(50, "miles")
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22847. {
  22848. front: {
  22849. height: math.unit(1.5, "meters"),
  22850. weight: math.unit(100, "lb"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/maksio/front.svg",
  22854. extra: 1549 / 1531,
  22855. bottom: 123.7 / 1674.5429
  22856. }
  22857. },
  22858. back: {
  22859. height: math.unit(1.5, "meters"),
  22860. weight: math.unit(100, "lb"),
  22861. name: "Back",
  22862. image: {
  22863. source: "./media/characters/maksio/back.svg",
  22864. extra: 1541 / 1509,
  22865. bottom: 97 / 1639
  22866. }
  22867. },
  22868. hand: {
  22869. height: math.unit(0.621, "feet"),
  22870. name: "Hand",
  22871. image: {
  22872. source: "./media/characters/maksio/hand.svg"
  22873. }
  22874. },
  22875. foot: {
  22876. height: math.unit(1.611, "feet"),
  22877. name: "Foot",
  22878. image: {
  22879. source: "./media/characters/maksio/foot.svg"
  22880. }
  22881. },
  22882. },
  22883. [
  22884. {
  22885. name: "Shrunken",
  22886. height: math.unit(10, "cm")
  22887. },
  22888. {
  22889. name: "Normal",
  22890. height: math.unit(150, "cm"),
  22891. default: true
  22892. },
  22893. ]
  22894. ))
  22895. characterMakers.push(() => makeCharacter(
  22896. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22897. {
  22898. front: {
  22899. height: math.unit(100, "feet"),
  22900. name: "Front",
  22901. image: {
  22902. source: "./media/characters/erza-bear/front.svg",
  22903. extra: 2449 / 2390,
  22904. bottom: 46 / 2494
  22905. }
  22906. },
  22907. back: {
  22908. height: math.unit(100, "feet"),
  22909. name: "Back",
  22910. image: {
  22911. source: "./media/characters/erza-bear/back.svg",
  22912. extra: 2489 / 2430,
  22913. bottom: 85.4 / 2480
  22914. }
  22915. },
  22916. tail: {
  22917. height: math.unit(42, "feet"),
  22918. name: "Tail",
  22919. image: {
  22920. source: "./media/characters/erza-bear/tail.svg"
  22921. }
  22922. },
  22923. tongue: {
  22924. height: math.unit(8, "feet"),
  22925. name: "Tongue",
  22926. image: {
  22927. source: "./media/characters/erza-bear/tongue.svg"
  22928. }
  22929. },
  22930. dick: {
  22931. height: math.unit(10.5, "feet"),
  22932. name: "Dick",
  22933. image: {
  22934. source: "./media/characters/erza-bear/dick.svg"
  22935. }
  22936. },
  22937. dickVertical: {
  22938. height: math.unit(16.9, "feet"),
  22939. name: "Dick (Vertical)",
  22940. image: {
  22941. source: "./media/characters/erza-bear/dick-vertical.svg"
  22942. }
  22943. },
  22944. },
  22945. [
  22946. {
  22947. name: "Macro",
  22948. height: math.unit(100, "feet"),
  22949. default: true
  22950. },
  22951. ]
  22952. ))
  22953. characterMakers.push(() => makeCharacter(
  22954. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22955. {
  22956. front: {
  22957. height: math.unit(172, "cm"),
  22958. weight: math.unit(73, "kg"),
  22959. name: "Front",
  22960. image: {
  22961. source: "./media/characters/violet-flor/front.svg",
  22962. extra: 1530 / 1442,
  22963. bottom: 61.9 / 1588.8
  22964. }
  22965. },
  22966. back: {
  22967. height: math.unit(180, "cm"),
  22968. weight: math.unit(73, "kg"),
  22969. name: "Back",
  22970. image: {
  22971. source: "./media/characters/violet-flor/back.svg",
  22972. extra: 1692 / 1630,
  22973. bottom: 20 / 1712
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(172, "cm"),
  22981. default: true
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22987. {
  22988. front: {
  22989. height: math.unit(6, "feet"),
  22990. weight: math.unit(220, "lb"),
  22991. name: "Front",
  22992. image: {
  22993. source: "./media/characters/lynn-rhea/front.svg",
  22994. extra: 310 / 273
  22995. }
  22996. },
  22997. back: {
  22998. height: math.unit(6, "feet"),
  22999. weight: math.unit(220, "lb"),
  23000. name: "Back",
  23001. image: {
  23002. source: "./media/characters/lynn-rhea/back.svg",
  23003. extra: 310 / 273
  23004. }
  23005. },
  23006. dicks: {
  23007. height: math.unit(0.9, "feet"),
  23008. name: "Dicks",
  23009. image: {
  23010. source: "./media/characters/lynn-rhea/dicks.svg"
  23011. }
  23012. },
  23013. slit: {
  23014. height: math.unit(0.4, "feet"),
  23015. name: "Slit",
  23016. image: {
  23017. source: "./media/characters/lynn-rhea/slit.svg"
  23018. }
  23019. },
  23020. },
  23021. [
  23022. {
  23023. name: "Micro",
  23024. height: math.unit(1, "inch")
  23025. },
  23026. {
  23027. name: "Macro",
  23028. height: math.unit(60, "feet"),
  23029. default: true
  23030. },
  23031. {
  23032. name: "Megamacro",
  23033. height: math.unit(2, "miles")
  23034. },
  23035. {
  23036. name: "Gigamacro",
  23037. height: math.unit(3, "earths")
  23038. },
  23039. {
  23040. name: "Galactic",
  23041. height: math.unit(0.8, "galaxies")
  23042. },
  23043. ]
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23047. {
  23048. front: {
  23049. height: math.unit(1600, "feet"),
  23050. weight: math.unit(85758785169, "kg"),
  23051. name: "Front",
  23052. image: {
  23053. source: "./media/characters/valathos/front.svg",
  23054. extra: 1451 / 1339
  23055. }
  23056. },
  23057. },
  23058. [
  23059. {
  23060. name: "Macro",
  23061. height: math.unit(1600, "feet"),
  23062. default: true
  23063. },
  23064. ]
  23065. ))
  23066. characterMakers.push(() => makeCharacter(
  23067. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23068. {
  23069. front: {
  23070. height: math.unit(7 + 5 / 12, "feet"),
  23071. weight: math.unit(300, "lb"),
  23072. name: "Front",
  23073. image: {
  23074. source: "./media/characters/azula/front.svg",
  23075. extra: 3208 / 2880,
  23076. bottom: 80.2 / 3277
  23077. }
  23078. },
  23079. back: {
  23080. height: math.unit(7 + 5 / 12, "feet"),
  23081. weight: math.unit(300, "lb"),
  23082. name: "Back",
  23083. image: {
  23084. source: "./media/characters/azula/back.svg",
  23085. extra: 3169 / 2822,
  23086. bottom: 150.6 / 3321
  23087. }
  23088. },
  23089. },
  23090. [
  23091. {
  23092. name: "Normal",
  23093. height: math.unit(7 + 5 / 12, "feet"),
  23094. default: true
  23095. },
  23096. {
  23097. name: "Big",
  23098. height: math.unit(20, "feet")
  23099. },
  23100. ]
  23101. ))
  23102. characterMakers.push(() => makeCharacter(
  23103. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23104. {
  23105. front: {
  23106. height: math.unit(5 + 1 / 12, "feet"),
  23107. weight: math.unit(110, "lb"),
  23108. name: "Front",
  23109. image: {
  23110. source: "./media/characters/rupert/front.svg",
  23111. extra: 1549 / 1495,
  23112. bottom: 54.2 / 1604.4
  23113. }
  23114. },
  23115. },
  23116. [
  23117. {
  23118. name: "Normal",
  23119. height: math.unit(5 + 1 / 12, "feet"),
  23120. default: true
  23121. },
  23122. ]
  23123. ))
  23124. characterMakers.push(() => makeCharacter(
  23125. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23126. {
  23127. front: {
  23128. height: math.unit(8 + 4 / 12, "feet"),
  23129. weight: math.unit(350, "lb"),
  23130. name: "Front",
  23131. image: {
  23132. source: "./media/characters/sheera-castellar/front.svg",
  23133. extra: 1957 / 1894,
  23134. bottom: 26.97 / 1975.017
  23135. }
  23136. },
  23137. side: {
  23138. height: math.unit(8 + 4 / 12, "feet"),
  23139. weight: math.unit(350, "lb"),
  23140. name: "Side",
  23141. image: {
  23142. source: "./media/characters/sheera-castellar/side.svg",
  23143. extra: 1957 / 1894
  23144. }
  23145. },
  23146. back: {
  23147. height: math.unit(8 + 4 / 12, "feet"),
  23148. weight: math.unit(350, "lb"),
  23149. name: "Back",
  23150. image: {
  23151. source: "./media/characters/sheera-castellar/back.svg",
  23152. extra: 1957 / 1894
  23153. }
  23154. },
  23155. angled: {
  23156. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23157. weight: math.unit(350, "lb"),
  23158. name: "Angled",
  23159. image: {
  23160. source: "./media/characters/sheera-castellar/angled.svg",
  23161. extra: 1807 / 1707,
  23162. bottom: 68 / 1875
  23163. }
  23164. },
  23165. genitals: {
  23166. height: math.unit(2.2, "feet"),
  23167. name: "Genitals",
  23168. image: {
  23169. source: "./media/characters/sheera-castellar/genitals.svg"
  23170. }
  23171. },
  23172. taur: {
  23173. height: math.unit(10 + 6/12, "feet"),
  23174. name: "Taur",
  23175. image: {
  23176. source: "./media/characters/sheera-castellar/taur.svg",
  23177. extra: 2017/1909,
  23178. bottom: 185/2202
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Normal",
  23185. height: math.unit(8 + 4 / 12, "feet")
  23186. },
  23187. {
  23188. name: "Macro",
  23189. height: math.unit(150, "feet"),
  23190. default: true
  23191. },
  23192. {
  23193. name: "Macro+",
  23194. height: math.unit(800, "feet")
  23195. },
  23196. ]
  23197. ))
  23198. characterMakers.push(() => makeCharacter(
  23199. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23200. {
  23201. front: {
  23202. height: math.unit(6, "feet"),
  23203. weight: math.unit(150, "lb"),
  23204. name: "Front",
  23205. image: {
  23206. source: "./media/characters/jaipur/front.svg",
  23207. extra: 3860 / 3731,
  23208. bottom: 287 / 4140
  23209. }
  23210. },
  23211. back: {
  23212. height: math.unit(6, "feet"),
  23213. weight: math.unit(150, "lb"),
  23214. name: "Back",
  23215. image: {
  23216. source: "./media/characters/jaipur/back.svg",
  23217. extra: 4060 / 3930,
  23218. bottom: 151 / 4200
  23219. }
  23220. },
  23221. },
  23222. [
  23223. {
  23224. name: "Normal",
  23225. height: math.unit(1.85, "meters"),
  23226. default: true
  23227. },
  23228. {
  23229. name: "Macro",
  23230. height: math.unit(150, "meters")
  23231. },
  23232. {
  23233. name: "Macro+",
  23234. height: math.unit(0.5, "miles")
  23235. },
  23236. {
  23237. name: "Macro++",
  23238. height: math.unit(2.5, "miles")
  23239. },
  23240. {
  23241. name: "Macro+++",
  23242. height: math.unit(12, "miles")
  23243. },
  23244. {
  23245. name: "Macro++++",
  23246. height: math.unit(120, "miles")
  23247. },
  23248. {
  23249. name: "Macro+++++",
  23250. height: math.unit(1200, "miles")
  23251. },
  23252. ]
  23253. ))
  23254. characterMakers.push(() => makeCharacter(
  23255. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23256. {
  23257. front: {
  23258. height: math.unit(6, "feet"),
  23259. weight: math.unit(150, "lb"),
  23260. name: "Front",
  23261. image: {
  23262. source: "./media/characters/sheila-wolf/front.svg",
  23263. extra: 1931 / 1808,
  23264. bottom: 29.5 / 1960
  23265. }
  23266. },
  23267. dick: {
  23268. height: math.unit(1.464, "feet"),
  23269. name: "Dick",
  23270. image: {
  23271. source: "./media/characters/sheila-wolf/dick.svg"
  23272. }
  23273. },
  23274. muzzle: {
  23275. height: math.unit(0.513, "feet"),
  23276. name: "Muzzle",
  23277. image: {
  23278. source: "./media/characters/sheila-wolf/muzzle.svg"
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Macro",
  23285. height: math.unit(70, "feet"),
  23286. default: true
  23287. },
  23288. ]
  23289. ))
  23290. characterMakers.push(() => makeCharacter(
  23291. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23292. {
  23293. front: {
  23294. height: math.unit(32, "meters"),
  23295. weight: math.unit(300000, "kg"),
  23296. name: "Front",
  23297. image: {
  23298. source: "./media/characters/almor/front.svg",
  23299. extra: 1408 / 1322,
  23300. bottom: 94.6 / 1506.5
  23301. }
  23302. },
  23303. },
  23304. [
  23305. {
  23306. name: "Macro",
  23307. height: math.unit(32, "meters"),
  23308. default: true
  23309. },
  23310. ]
  23311. ))
  23312. characterMakers.push(() => makeCharacter(
  23313. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23314. {
  23315. front: {
  23316. height: math.unit(7, "feet"),
  23317. weight: math.unit(200, "lb"),
  23318. name: "Front",
  23319. image: {
  23320. source: "./media/characters/silver/front.svg",
  23321. extra: 472.1 / 450.5,
  23322. bottom: 26.5 / 499.424
  23323. }
  23324. },
  23325. },
  23326. [
  23327. {
  23328. name: "Normal",
  23329. height: math.unit(7, "feet"),
  23330. default: true
  23331. },
  23332. {
  23333. name: "Macro",
  23334. height: math.unit(800, "feet")
  23335. },
  23336. {
  23337. name: "Megamacro",
  23338. height: math.unit(250, "miles")
  23339. },
  23340. ]
  23341. ))
  23342. characterMakers.push(() => makeCharacter(
  23343. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23344. {
  23345. front: {
  23346. height: math.unit(6, "feet"),
  23347. weight: math.unit(150, "lb"),
  23348. name: "Front",
  23349. image: {
  23350. source: "./media/characters/pliskin/front.svg",
  23351. extra: 1469 / 1359,
  23352. bottom: 70 / 1540
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Micro",
  23359. height: math.unit(3, "inches")
  23360. },
  23361. {
  23362. name: "Normal",
  23363. height: math.unit(5 + 11 / 12, "feet"),
  23364. default: true
  23365. },
  23366. {
  23367. name: "Macro",
  23368. height: math.unit(120, "feet")
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23374. {
  23375. front: {
  23376. height: math.unit(6, "feet"),
  23377. weight: math.unit(150, "lb"),
  23378. name: "Front",
  23379. image: {
  23380. source: "./media/characters/sammy/front.svg",
  23381. extra: 1193 / 1089,
  23382. bottom: 30.5 / 1226
  23383. }
  23384. },
  23385. },
  23386. [
  23387. {
  23388. name: "Macro",
  23389. height: math.unit(1700, "feet"),
  23390. default: true
  23391. },
  23392. {
  23393. name: "Examacro",
  23394. height: math.unit(2.5e9, "lightyears")
  23395. },
  23396. ]
  23397. ))
  23398. characterMakers.push(() => makeCharacter(
  23399. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23400. {
  23401. front: {
  23402. height: math.unit(21, "meters"),
  23403. weight: math.unit(12, "tonnes"),
  23404. name: "Front",
  23405. image: {
  23406. source: "./media/characters/kuru/front.svg",
  23407. extra: 4301 / 3785,
  23408. bottom: 371.3 / 4691
  23409. }
  23410. },
  23411. },
  23412. [
  23413. {
  23414. name: "Macro",
  23415. height: math.unit(21, "meters"),
  23416. default: true
  23417. },
  23418. ]
  23419. ))
  23420. characterMakers.push(() => makeCharacter(
  23421. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23422. {
  23423. front: {
  23424. height: math.unit(23, "meters"),
  23425. weight: math.unit(12.2, "tonnes"),
  23426. name: "Front",
  23427. image: {
  23428. source: "./media/characters/rakka/front.svg",
  23429. extra: 4670 / 4169,
  23430. bottom: 301 / 4968.7
  23431. }
  23432. },
  23433. },
  23434. [
  23435. {
  23436. name: "Macro",
  23437. height: math.unit(23, "meters"),
  23438. default: true
  23439. },
  23440. ]
  23441. ))
  23442. characterMakers.push(() => makeCharacter(
  23443. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23444. {
  23445. front: {
  23446. height: math.unit(6, "feet"),
  23447. weight: math.unit(150, "lb"),
  23448. name: "Front",
  23449. image: {
  23450. source: "./media/characters/rhys-feline/front.svg",
  23451. extra: 2488 / 2308,
  23452. bottom: 35.67 / 2519.19
  23453. }
  23454. },
  23455. },
  23456. [
  23457. {
  23458. name: "Really Small",
  23459. height: math.unit(1, "nm")
  23460. },
  23461. {
  23462. name: "Micro",
  23463. height: math.unit(4, "inches")
  23464. },
  23465. {
  23466. name: "Normal",
  23467. height: math.unit(4 + 10 / 12, "feet"),
  23468. default: true
  23469. },
  23470. {
  23471. name: "Macro",
  23472. height: math.unit(100, "feet")
  23473. },
  23474. {
  23475. name: "Megamacto",
  23476. height: math.unit(50, "miles")
  23477. },
  23478. ]
  23479. ))
  23480. characterMakers.push(() => makeCharacter(
  23481. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23482. {
  23483. side: {
  23484. height: math.unit(30, "feet"),
  23485. weight: math.unit(35000, "kg"),
  23486. name: "Side",
  23487. image: {
  23488. source: "./media/characters/alydar/side.svg",
  23489. extra: 234 / 222,
  23490. bottom: 6.5 / 241
  23491. }
  23492. },
  23493. front: {
  23494. height: math.unit(30, "feet"),
  23495. weight: math.unit(35000, "kg"),
  23496. name: "Front",
  23497. image: {
  23498. source: "./media/characters/alydar/front.svg",
  23499. extra: 223.37 / 210.2,
  23500. bottom: 22.3 / 246.76
  23501. }
  23502. },
  23503. top: {
  23504. height: math.unit(64.54, "feet"),
  23505. weight: math.unit(35000, "kg"),
  23506. name: "Top",
  23507. image: {
  23508. source: "./media/characters/alydar/top.svg"
  23509. }
  23510. },
  23511. anthro: {
  23512. height: math.unit(30, "feet"),
  23513. weight: math.unit(9000, "kg"),
  23514. name: "Anthro",
  23515. image: {
  23516. source: "./media/characters/alydar/anthro.svg",
  23517. extra: 432 / 421,
  23518. bottom: 7.18 / 440
  23519. }
  23520. },
  23521. maw: {
  23522. height: math.unit(11.693, "feet"),
  23523. name: "Maw",
  23524. image: {
  23525. source: "./media/characters/alydar/maw.svg"
  23526. }
  23527. },
  23528. head: {
  23529. height: math.unit(11.693, "feet"),
  23530. name: "Head",
  23531. image: {
  23532. source: "./media/characters/alydar/head.svg"
  23533. }
  23534. },
  23535. headAlt: {
  23536. height: math.unit(12.861, "feet"),
  23537. name: "Head (Alt)",
  23538. image: {
  23539. source: "./media/characters/alydar/head-alt.svg"
  23540. }
  23541. },
  23542. wing: {
  23543. height: math.unit(20.712, "feet"),
  23544. name: "Wing",
  23545. image: {
  23546. source: "./media/characters/alydar/wing.svg"
  23547. }
  23548. },
  23549. wingFeather: {
  23550. height: math.unit(9.662, "feet"),
  23551. name: "Wing Feather",
  23552. image: {
  23553. source: "./media/characters/alydar/wing-feather.svg"
  23554. }
  23555. },
  23556. countourFeather: {
  23557. height: math.unit(4.154, "feet"),
  23558. name: "Contour Feather",
  23559. image: {
  23560. source: "./media/characters/alydar/contour-feather.svg"
  23561. }
  23562. },
  23563. },
  23564. [
  23565. {
  23566. name: "Diplomatic",
  23567. height: math.unit(13, "feet"),
  23568. default: true
  23569. },
  23570. {
  23571. name: "Small",
  23572. height: math.unit(30, "feet")
  23573. },
  23574. {
  23575. name: "Normal",
  23576. height: math.unit(95, "feet"),
  23577. default: true
  23578. },
  23579. {
  23580. name: "Large",
  23581. height: math.unit(285, "feet")
  23582. },
  23583. {
  23584. name: "Incomprehensible",
  23585. height: math.unit(450, "megameters")
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23591. {
  23592. side: {
  23593. height: math.unit(11, "feet"),
  23594. weight: math.unit(1750, "kg"),
  23595. name: "Side",
  23596. image: {
  23597. source: "./media/characters/selicia/side.svg",
  23598. extra: 440 / 396,
  23599. bottom: 24.8 / 465.979
  23600. }
  23601. },
  23602. maw: {
  23603. height: math.unit(4.665, "feet"),
  23604. name: "Maw",
  23605. image: {
  23606. source: "./media/characters/selicia/maw.svg"
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(11, "feet"),
  23614. default: true
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23620. {
  23621. side: {
  23622. height: math.unit(2 + 6 / 12, "feet"),
  23623. weight: math.unit(30, "lb"),
  23624. name: "Side",
  23625. image: {
  23626. source: "./media/characters/layla/side.svg",
  23627. extra: 244 / 188,
  23628. bottom: 18.2 / 262.1
  23629. }
  23630. },
  23631. back: {
  23632. height: math.unit(2 + 6 / 12, "feet"),
  23633. weight: math.unit(30, "lb"),
  23634. name: "Back",
  23635. image: {
  23636. source: "./media/characters/layla/back.svg",
  23637. extra: 308 / 241.5,
  23638. bottom: 8.9 / 316.8
  23639. }
  23640. },
  23641. cumming: {
  23642. height: math.unit(2 + 6 / 12, "feet"),
  23643. weight: math.unit(30, "lb"),
  23644. name: "Cumming",
  23645. image: {
  23646. source: "./media/characters/layla/cumming.svg",
  23647. extra: 342 / 279,
  23648. bottom: 595 / 938
  23649. }
  23650. },
  23651. dickFlaccid: {
  23652. height: math.unit(2.595, "feet"),
  23653. name: "Flaccid Genitals",
  23654. image: {
  23655. source: "./media/characters/layla/dick-flaccid.svg"
  23656. }
  23657. },
  23658. dickErect: {
  23659. height: math.unit(2.359, "feet"),
  23660. name: "Erect Genitals",
  23661. image: {
  23662. source: "./media/characters/layla/dick-erect.svg"
  23663. }
  23664. },
  23665. dragon: {
  23666. height: math.unit(40, "feet"),
  23667. name: "Dragon",
  23668. image: {
  23669. source: "./media/characters/layla/dragon.svg",
  23670. extra: 610/535,
  23671. bottom: 367/977
  23672. }
  23673. },
  23674. taur: {
  23675. height: math.unit(30, "feet"),
  23676. name: "Taur",
  23677. image: {
  23678. source: "./media/characters/layla/taur.svg",
  23679. extra: 1268/1199,
  23680. bottom: 112/1380
  23681. }
  23682. },
  23683. },
  23684. [
  23685. {
  23686. name: "Micro",
  23687. height: math.unit(1, "inch")
  23688. },
  23689. {
  23690. name: "Small",
  23691. height: math.unit(1, "foot")
  23692. },
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(2 + 6 / 12, "feet"),
  23696. default: true
  23697. },
  23698. {
  23699. name: "Macro",
  23700. height: math.unit(200, "feet")
  23701. },
  23702. {
  23703. name: "Megamacro",
  23704. height: math.unit(1000, "miles")
  23705. },
  23706. {
  23707. name: "Planetary",
  23708. height: math.unit(8000, "miles")
  23709. },
  23710. {
  23711. name: "True Layla",
  23712. height: math.unit(200000 * 7, "multiverses")
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23718. {
  23719. back: {
  23720. height: math.unit(10.5, "feet"),
  23721. weight: math.unit(800, "lb"),
  23722. name: "Back",
  23723. image: {
  23724. source: "./media/characters/knox/back.svg",
  23725. extra: 1486 / 1089,
  23726. bottom: 107 / 1601.4
  23727. }
  23728. },
  23729. side: {
  23730. height: math.unit(10.5, "feet"),
  23731. weight: math.unit(800, "lb"),
  23732. name: "Side",
  23733. image: {
  23734. source: "./media/characters/knox/side.svg",
  23735. extra: 244 / 218,
  23736. bottom: 14 / 260
  23737. }
  23738. },
  23739. },
  23740. [
  23741. {
  23742. name: "Compact",
  23743. height: math.unit(10.5, "feet"),
  23744. default: true
  23745. },
  23746. {
  23747. name: "Dynamax",
  23748. height: math.unit(210, "feet")
  23749. },
  23750. {
  23751. name: "Full Macro",
  23752. height: math.unit(850, "feet")
  23753. },
  23754. ]
  23755. ))
  23756. characterMakers.push(() => makeCharacter(
  23757. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23758. {
  23759. front: {
  23760. height: math.unit(28, "feet"),
  23761. weight: math.unit(10500, "lb"),
  23762. name: "Front",
  23763. image: {
  23764. source: "./media/characters/kayda/front.svg",
  23765. extra: 1536 / 1428,
  23766. bottom: 68.7 / 1603
  23767. }
  23768. },
  23769. back: {
  23770. height: math.unit(28, "feet"),
  23771. weight: math.unit(10500, "lb"),
  23772. name: "Back",
  23773. image: {
  23774. source: "./media/characters/kayda/back.svg",
  23775. extra: 1557 / 1464,
  23776. bottom: 39.5 / 1597.49
  23777. }
  23778. },
  23779. dick: {
  23780. height: math.unit(3.858, "feet"),
  23781. name: "Dick",
  23782. image: {
  23783. source: "./media/characters/kayda/dick.svg"
  23784. }
  23785. },
  23786. },
  23787. [
  23788. {
  23789. name: "Macro",
  23790. height: math.unit(28, "feet"),
  23791. default: true
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23797. {
  23798. front: {
  23799. height: math.unit(10 + 11 / 12, "feet"),
  23800. weight: math.unit(1400, "lb"),
  23801. name: "Front",
  23802. image: {
  23803. source: "./media/characters/brian/front.svg",
  23804. extra: 737 / 692,
  23805. bottom: 55.4 / 785
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Normal",
  23812. height: math.unit(10 + 11 / 12, "feet"),
  23813. default: true
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23819. {
  23820. front: {
  23821. height: math.unit(5 + 8 / 12, "feet"),
  23822. weight: math.unit(140, "lb"),
  23823. name: "Front",
  23824. image: {
  23825. source: "./media/characters/khemri/front.svg",
  23826. extra: 4780 / 4059,
  23827. bottom: 80.1 / 4859.25
  23828. }
  23829. },
  23830. },
  23831. [
  23832. {
  23833. name: "Micro",
  23834. height: math.unit(6, "inches")
  23835. },
  23836. {
  23837. name: "Normal",
  23838. height: math.unit(5 + 8 / 12, "feet"),
  23839. default: true
  23840. },
  23841. ]
  23842. ))
  23843. characterMakers.push(() => makeCharacter(
  23844. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23845. {
  23846. front: {
  23847. height: math.unit(13, "feet"),
  23848. weight: math.unit(1700, "lb"),
  23849. name: "Front",
  23850. image: {
  23851. source: "./media/characters/felix-braveheart/front.svg",
  23852. extra: 1222 / 1157,
  23853. bottom: 53.2 / 1280
  23854. }
  23855. },
  23856. back: {
  23857. height: math.unit(13, "feet"),
  23858. weight: math.unit(1700, "lb"),
  23859. name: "Back",
  23860. image: {
  23861. source: "./media/characters/felix-braveheart/back.svg",
  23862. extra: 1277 / 1203,
  23863. bottom: 50.2 / 1327
  23864. }
  23865. },
  23866. feral: {
  23867. height: math.unit(6, "feet"),
  23868. weight: math.unit(400, "lb"),
  23869. name: "Feral",
  23870. image: {
  23871. source: "./media/characters/felix-braveheart/feral.svg",
  23872. extra: 682 / 625,
  23873. bottom: 6.9 / 688
  23874. }
  23875. },
  23876. },
  23877. [
  23878. {
  23879. name: "Normal",
  23880. height: math.unit(13, "feet"),
  23881. default: true
  23882. },
  23883. ]
  23884. ))
  23885. characterMakers.push(() => makeCharacter(
  23886. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23887. {
  23888. side: {
  23889. height: math.unit(5 + 11 / 12, "feet"),
  23890. weight: math.unit(1400, "lb"),
  23891. name: "Side",
  23892. image: {
  23893. source: "./media/characters/shadow-blade/side.svg",
  23894. extra: 1726 / 1267,
  23895. bottom: 58.4 / 1785
  23896. }
  23897. },
  23898. },
  23899. [
  23900. {
  23901. name: "Normal",
  23902. height: math.unit(5 + 11 / 12, "feet"),
  23903. default: true
  23904. },
  23905. ]
  23906. ))
  23907. characterMakers.push(() => makeCharacter(
  23908. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23909. {
  23910. front: {
  23911. height: math.unit(1 + 6 / 12, "feet"),
  23912. weight: math.unit(25, "lb"),
  23913. name: "Front",
  23914. image: {
  23915. source: "./media/characters/karla-halldor/front.svg",
  23916. extra: 1459 / 1383,
  23917. bottom: 12 / 1472
  23918. }
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Normal",
  23924. height: math.unit(1 + 6 / 12, "feet"),
  23925. default: true
  23926. },
  23927. ]
  23928. ))
  23929. characterMakers.push(() => makeCharacter(
  23930. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23931. {
  23932. front: {
  23933. height: math.unit(6 + 2 / 12, "feet"),
  23934. weight: math.unit(160, "lb"),
  23935. name: "Front",
  23936. image: {
  23937. source: "./media/characters/ariam/front.svg",
  23938. extra: 714 / 617,
  23939. bottom: 23.4 / 737,
  23940. }
  23941. },
  23942. squatting: {
  23943. height: math.unit(4.1, "feet"),
  23944. weight: math.unit(160, "lb"),
  23945. name: "Squatting",
  23946. image: {
  23947. source: "./media/characters/ariam/squatting.svg",
  23948. extra: 2617 / 2112,
  23949. bottom: 61.2 / 2681,
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(6 + 2 / 12, "feet"),
  23957. default: true
  23958. },
  23959. {
  23960. name: "Normal+",
  23961. height: math.unit(4, "meters")
  23962. },
  23963. {
  23964. name: "Macro",
  23965. height: math.unit(50, "meters")
  23966. },
  23967. {
  23968. name: "Macro+",
  23969. height: math.unit(100, "meters")
  23970. },
  23971. {
  23972. name: "Megamacro",
  23973. height: math.unit(20, "km")
  23974. },
  23975. ]
  23976. ))
  23977. characterMakers.push(() => makeCharacter(
  23978. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23979. {
  23980. front: {
  23981. height: math.unit(1.67, "meters"),
  23982. weight: math.unit(140, "lb"),
  23983. name: "Front",
  23984. image: {
  23985. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23986. extra: 438 / 410,
  23987. bottom: 0.75 / 439
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Shrunken",
  23994. height: math.unit(7.6, "cm")
  23995. },
  23996. {
  23997. name: "Human Scale",
  23998. height: math.unit(1.67, "meters")
  23999. },
  24000. {
  24001. name: "Wolxi Scale",
  24002. height: math.unit(36.7, "meters"),
  24003. default: true
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24009. {
  24010. front: {
  24011. height: math.unit(1.73, "meters"),
  24012. weight: math.unit(240, "lb"),
  24013. name: "Front",
  24014. image: {
  24015. source: "./media/characters/izue-two-mothers/front.svg",
  24016. extra: 469 / 437,
  24017. bottom: 1.24 / 470.6
  24018. }
  24019. },
  24020. },
  24021. [
  24022. {
  24023. name: "Shrunken",
  24024. height: math.unit(7.86, "cm")
  24025. },
  24026. {
  24027. name: "Human Scale",
  24028. height: math.unit(1.73, "meters")
  24029. },
  24030. {
  24031. name: "Wolxi Scale",
  24032. height: math.unit(38, "meters"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24039. {
  24040. front: {
  24041. height: math.unit(1.55, "meters"),
  24042. weight: math.unit(120, "lb"),
  24043. name: "Front",
  24044. image: {
  24045. source: "./media/characters/teeku-love-shack/front.svg",
  24046. extra: 387 / 362,
  24047. bottom: 1.51 / 388
  24048. }
  24049. },
  24050. },
  24051. [
  24052. {
  24053. name: "Shrunken",
  24054. height: math.unit(7, "cm")
  24055. },
  24056. {
  24057. name: "Human Scale",
  24058. height: math.unit(1.55, "meters")
  24059. },
  24060. {
  24061. name: "Wolxi Scale",
  24062. height: math.unit(34.1, "meters"),
  24063. default: true
  24064. },
  24065. ]
  24066. ))
  24067. characterMakers.push(() => makeCharacter(
  24068. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24069. {
  24070. front: {
  24071. height: math.unit(1.83, "meters"),
  24072. weight: math.unit(135, "lb"),
  24073. name: "Front",
  24074. image: {
  24075. source: "./media/characters/dejma-the-red/front.svg",
  24076. extra: 480 / 458,
  24077. bottom: 1.8 / 482
  24078. }
  24079. },
  24080. },
  24081. [
  24082. {
  24083. name: "Shrunken",
  24084. height: math.unit(8.3, "cm")
  24085. },
  24086. {
  24087. name: "Human Scale",
  24088. height: math.unit(1.83, "meters")
  24089. },
  24090. {
  24091. name: "Wolxi Scale",
  24092. height: math.unit(40, "meters"),
  24093. default: true
  24094. },
  24095. ]
  24096. ))
  24097. characterMakers.push(() => makeCharacter(
  24098. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24099. {
  24100. front: {
  24101. height: math.unit(1.78, "meters"),
  24102. weight: math.unit(65, "kg"),
  24103. name: "Front",
  24104. image: {
  24105. source: "./media/characters/aki/front.svg",
  24106. extra: 452 / 415
  24107. }
  24108. },
  24109. frontNsfw: {
  24110. height: math.unit(1.78, "meters"),
  24111. weight: math.unit(65, "kg"),
  24112. name: "Front (NSFW)",
  24113. image: {
  24114. source: "./media/characters/aki/front-nsfw.svg",
  24115. extra: 452 / 415
  24116. }
  24117. },
  24118. back: {
  24119. height: math.unit(1.78, "meters"),
  24120. weight: math.unit(65, "kg"),
  24121. name: "Back",
  24122. image: {
  24123. source: "./media/characters/aki/back.svg",
  24124. extra: 452 / 415
  24125. }
  24126. },
  24127. rump: {
  24128. height: math.unit(2.05, "feet"),
  24129. name: "Rump",
  24130. image: {
  24131. source: "./media/characters/aki/rump.svg"
  24132. }
  24133. },
  24134. dick: {
  24135. height: math.unit(0.95, "feet"),
  24136. name: "Dick",
  24137. image: {
  24138. source: "./media/characters/aki/dick.svg"
  24139. }
  24140. },
  24141. },
  24142. [
  24143. {
  24144. name: "Micro",
  24145. height: math.unit(15, "cm")
  24146. },
  24147. {
  24148. name: "Normal",
  24149. height: math.unit(178, "cm"),
  24150. default: true
  24151. },
  24152. {
  24153. name: "Macro",
  24154. height: math.unit(214, "m")
  24155. },
  24156. {
  24157. name: "Macro+",
  24158. height: math.unit(534, "m")
  24159. },
  24160. ]
  24161. ))
  24162. characterMakers.push(() => makeCharacter(
  24163. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24164. {
  24165. front: {
  24166. height: math.unit(5 + 5 / 12, "feet"),
  24167. weight: math.unit(120, "lb"),
  24168. name: "Front",
  24169. image: {
  24170. source: "./media/characters/ari/front.svg",
  24171. extra: 714.5 / 682,
  24172. bottom: 8 / 722.5
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Normal",
  24179. height: math.unit(5 + 5 / 12, "feet")
  24180. },
  24181. {
  24182. name: "Macro",
  24183. height: math.unit(100, "feet"),
  24184. default: true
  24185. },
  24186. {
  24187. name: "Megamacro",
  24188. height: math.unit(100, "miles")
  24189. },
  24190. {
  24191. name: "Gigamacro",
  24192. height: math.unit(80000, "miles")
  24193. },
  24194. ]
  24195. ))
  24196. characterMakers.push(() => makeCharacter(
  24197. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24198. {
  24199. side: {
  24200. height: math.unit(9, "feet"),
  24201. weight: math.unit(400, "kg"),
  24202. name: "Side",
  24203. image: {
  24204. source: "./media/characters/bolt/side.svg",
  24205. extra: 1126 / 896,
  24206. bottom: 60 / 1187.3,
  24207. }
  24208. },
  24209. },
  24210. [
  24211. {
  24212. name: "Micro",
  24213. height: math.unit(5, "inches")
  24214. },
  24215. {
  24216. name: "Normal",
  24217. height: math.unit(9, "feet"),
  24218. default: true
  24219. },
  24220. {
  24221. name: "Macro",
  24222. height: math.unit(700, "feet")
  24223. },
  24224. {
  24225. name: "Max Size",
  24226. height: math.unit(1.52e22, "yottameters")
  24227. },
  24228. ]
  24229. ))
  24230. characterMakers.push(() => makeCharacter(
  24231. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24232. {
  24233. front: {
  24234. height: math.unit(4.53, "meters"),
  24235. weight: math.unit(3, "tons"),
  24236. name: "Front",
  24237. image: {
  24238. source: "./media/characters/draekon-sylviar/front.svg",
  24239. extra: 1228 / 1068,
  24240. bottom: 41 / 1270
  24241. }
  24242. },
  24243. tail: {
  24244. height: math.unit(1.772, "meter"),
  24245. name: "Tail",
  24246. image: {
  24247. source: "./media/characters/draekon-sylviar/tail.svg"
  24248. }
  24249. },
  24250. head: {
  24251. height: math.unit(1.331, "meter"),
  24252. name: "Head",
  24253. image: {
  24254. source: "./media/characters/draekon-sylviar/head.svg"
  24255. }
  24256. },
  24257. hand: {
  24258. height: math.unit(0.564, "meter"),
  24259. name: "Hand",
  24260. image: {
  24261. source: "./media/characters/draekon-sylviar/hand.svg"
  24262. }
  24263. },
  24264. foot: {
  24265. height: math.unit(0.621, "meter"),
  24266. name: "Foot",
  24267. image: {
  24268. source: "./media/characters/draekon-sylviar/foot.svg",
  24269. bottom: 32 / 324
  24270. }
  24271. },
  24272. dick: {
  24273. height: math.unit(61, "cm"),
  24274. name: "Dick",
  24275. image: {
  24276. source: "./media/characters/draekon-sylviar/dick.svg"
  24277. }
  24278. },
  24279. dickseparated: {
  24280. height: math.unit(61, "cm"),
  24281. name: "Dick-separated",
  24282. image: {
  24283. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24284. }
  24285. },
  24286. },
  24287. [
  24288. {
  24289. name: "Small",
  24290. height: math.unit(4.53 / 2, "meters"),
  24291. default: true
  24292. },
  24293. {
  24294. name: "Normal",
  24295. height: math.unit(4.53, "meters"),
  24296. default: true
  24297. },
  24298. {
  24299. name: "Large",
  24300. height: math.unit(4.53 * 2, "meters"),
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(6 + 2 / 12, "feet"),
  24309. weight: math.unit(180, "lb"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/brawler/front.svg",
  24313. extra: 3301 / 3027,
  24314. bottom: 138 / 3439
  24315. }
  24316. },
  24317. },
  24318. [
  24319. {
  24320. name: "Normal",
  24321. height: math.unit(6 + 2 / 12, "feet"),
  24322. default: true
  24323. },
  24324. ]
  24325. ))
  24326. characterMakers.push(() => makeCharacter(
  24327. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24328. {
  24329. front: {
  24330. height: math.unit(11, "feet"),
  24331. weight: math.unit(1000, "lb"),
  24332. name: "Front",
  24333. image: {
  24334. source: "./media/characters/alex/front.svg",
  24335. bottom: 44.5 / 620
  24336. }
  24337. },
  24338. },
  24339. [
  24340. {
  24341. name: "Micro",
  24342. height: math.unit(5, "inches")
  24343. },
  24344. {
  24345. name: "Normal",
  24346. height: math.unit(11, "feet"),
  24347. default: true
  24348. },
  24349. {
  24350. name: "Macro",
  24351. height: math.unit(9.5e9, "feet")
  24352. },
  24353. {
  24354. name: "Max Size",
  24355. height: math.unit(1.4e283, "yottameters")
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24361. {
  24362. female: {
  24363. height: math.unit(29.9, "m"),
  24364. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24365. name: "Female",
  24366. image: {
  24367. source: "./media/characters/zenari/female.svg",
  24368. extra: 3281.6 / 3217,
  24369. bottom: 72.2 / 3353
  24370. }
  24371. },
  24372. male: {
  24373. height: math.unit(27.7, "m"),
  24374. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24375. name: "Male",
  24376. image: {
  24377. source: "./media/characters/zenari/male.svg",
  24378. extra: 3008 / 2991,
  24379. bottom: 54.6 / 3069
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Macro",
  24386. height: math.unit(29.7, "meters"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24393. {
  24394. female: {
  24395. height: math.unit(23.8, "m"),
  24396. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24397. name: "Female",
  24398. image: {
  24399. source: "./media/characters/mactarian/female.svg",
  24400. extra: 2662 / 2569,
  24401. bottom: 73 / 2736
  24402. }
  24403. },
  24404. male: {
  24405. height: math.unit(23.8, "m"),
  24406. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24407. name: "Male",
  24408. image: {
  24409. source: "./media/characters/mactarian/male.svg",
  24410. extra: 2673 / 2600,
  24411. bottom: 76 / 2750
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Macro",
  24418. height: math.unit(23.8, "meters"),
  24419. default: true
  24420. },
  24421. ]
  24422. ))
  24423. characterMakers.push(() => makeCharacter(
  24424. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24425. {
  24426. female: {
  24427. height: math.unit(19.3, "m"),
  24428. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24429. name: "Female",
  24430. image: {
  24431. source: "./media/characters/umok/female.svg",
  24432. extra: 2186 / 2078,
  24433. bottom: 87 / 2277
  24434. }
  24435. },
  24436. male: {
  24437. height: math.unit(19.5, "m"),
  24438. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24439. name: "Male",
  24440. image: {
  24441. source: "./media/characters/umok/male.svg",
  24442. extra: 2233 / 2140,
  24443. bottom: 24.4 / 2258
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Macro",
  24450. height: math.unit(19.3, "meters"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24457. {
  24458. female: {
  24459. height: math.unit(26.15, "m"),
  24460. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24461. name: "Female",
  24462. image: {
  24463. source: "./media/characters/joraxian/female.svg",
  24464. extra: 2912 / 2824,
  24465. bottom: 36 / 2956
  24466. }
  24467. },
  24468. male: {
  24469. height: math.unit(25.4, "m"),
  24470. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24471. name: "Male",
  24472. image: {
  24473. source: "./media/characters/joraxian/male.svg",
  24474. extra: 2877 / 2721,
  24475. bottom: 82 / 2967
  24476. }
  24477. },
  24478. },
  24479. [
  24480. {
  24481. name: "Macro",
  24482. height: math.unit(26.15, "meters"),
  24483. default: true
  24484. },
  24485. ]
  24486. ))
  24487. characterMakers.push(() => makeCharacter(
  24488. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24489. {
  24490. female: {
  24491. height: math.unit(21.6, "m"),
  24492. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24493. name: "Female",
  24494. image: {
  24495. source: "./media/characters/sthara/female.svg",
  24496. extra: 2516 / 2347,
  24497. bottom: 21.5 / 2537
  24498. }
  24499. },
  24500. male: {
  24501. height: math.unit(24, "m"),
  24502. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24503. name: "Male",
  24504. image: {
  24505. source: "./media/characters/sthara/male.svg",
  24506. extra: 2732 / 2607,
  24507. bottom: 23 / 2732
  24508. }
  24509. },
  24510. },
  24511. [
  24512. {
  24513. name: "Macro",
  24514. height: math.unit(21.6, "meters"),
  24515. default: true
  24516. },
  24517. ]
  24518. ))
  24519. characterMakers.push(() => makeCharacter(
  24520. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24521. {
  24522. front: {
  24523. height: math.unit(6 + 4 / 12, "feet"),
  24524. weight: math.unit(175, "lb"),
  24525. name: "Front",
  24526. image: {
  24527. source: "./media/characters/luka-bryzant/front.svg",
  24528. extra: 311 / 289,
  24529. bottom: 4 / 315
  24530. }
  24531. },
  24532. back: {
  24533. height: math.unit(6 + 4 / 12, "feet"),
  24534. weight: math.unit(175, "lb"),
  24535. name: "Back",
  24536. image: {
  24537. source: "./media/characters/luka-bryzant/back.svg",
  24538. extra: 311 / 289,
  24539. bottom: 3.8 / 313.7
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "Micro",
  24546. height: math.unit(10, "inches")
  24547. },
  24548. {
  24549. name: "Normal",
  24550. height: math.unit(6 + 4 / 12, "feet"),
  24551. default: true
  24552. },
  24553. {
  24554. name: "Large",
  24555. height: math.unit(12, "feet")
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24561. {
  24562. front: {
  24563. height: math.unit(5 + 7 / 12, "feet"),
  24564. weight: math.unit(185, "lb"),
  24565. name: "Front",
  24566. image: {
  24567. source: "./media/characters/aman-aquila/front.svg",
  24568. extra: 1013 / 976,
  24569. bottom: 45.6 / 1057
  24570. }
  24571. },
  24572. side: {
  24573. height: math.unit(5 + 7 / 12, "feet"),
  24574. weight: math.unit(185, "lb"),
  24575. name: "Side",
  24576. image: {
  24577. source: "./media/characters/aman-aquila/side.svg",
  24578. extra: 1054 / 1011,
  24579. bottom: 15 / 1070
  24580. }
  24581. },
  24582. back: {
  24583. height: math.unit(5 + 7 / 12, "feet"),
  24584. weight: math.unit(185, "lb"),
  24585. name: "Back",
  24586. image: {
  24587. source: "./media/characters/aman-aquila/back.svg",
  24588. extra: 1026 / 970,
  24589. bottom: 12 / 1039
  24590. }
  24591. },
  24592. head: {
  24593. height: math.unit(1.211, "feet"),
  24594. name: "Head",
  24595. image: {
  24596. source: "./media/characters/aman-aquila/head.svg",
  24597. }
  24598. },
  24599. },
  24600. [
  24601. {
  24602. name: "Minimicro",
  24603. height: math.unit(0.057, "inches")
  24604. },
  24605. {
  24606. name: "Micro",
  24607. height: math.unit(7, "inches")
  24608. },
  24609. {
  24610. name: "Mini",
  24611. height: math.unit(3 + 7 / 12, "feet")
  24612. },
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(5 + 7 / 12, "feet"),
  24616. default: true
  24617. },
  24618. {
  24619. name: "Macro",
  24620. height: math.unit(157 + 7 / 12, "feet")
  24621. },
  24622. {
  24623. name: "Megamacro",
  24624. height: math.unit(1557 + 7 / 12, "feet")
  24625. },
  24626. {
  24627. name: "Gigamacro",
  24628. height: math.unit(15557 + 7 / 12, "feet")
  24629. },
  24630. ]
  24631. ))
  24632. characterMakers.push(() => makeCharacter(
  24633. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24634. {
  24635. front: {
  24636. height: math.unit(3 + 2 / 12, "inches"),
  24637. weight: math.unit(0.3, "ounces"),
  24638. name: "Front",
  24639. image: {
  24640. source: "./media/characters/hiphae/front.svg",
  24641. extra: 1931 / 1683,
  24642. bottom: 24 / 1955
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Normal",
  24649. height: math.unit(3 + 1 / 2, "inches"),
  24650. default: true
  24651. },
  24652. ]
  24653. ))
  24654. characterMakers.push(() => makeCharacter(
  24655. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24656. {
  24657. front: {
  24658. height: math.unit(5 + 10 / 12, "feet"),
  24659. weight: math.unit(165, "lb"),
  24660. name: "Front",
  24661. image: {
  24662. source: "./media/characters/nicky/front.svg",
  24663. extra: 3144 / 2886,
  24664. bottom: 45.6 / 3192
  24665. }
  24666. },
  24667. back: {
  24668. height: math.unit(5 + 10 / 12, "feet"),
  24669. weight: math.unit(165, "lb"),
  24670. name: "Back",
  24671. image: {
  24672. source: "./media/characters/nicky/back.svg",
  24673. extra: 3055 / 2804,
  24674. bottom: 28.4 / 3087
  24675. }
  24676. },
  24677. frontclothed: {
  24678. height: math.unit(5 + 10 / 12, "feet"),
  24679. weight: math.unit(165, "lb"),
  24680. name: "Front-clothed",
  24681. image: {
  24682. source: "./media/characters/nicky/front-clothed.svg",
  24683. extra: 3184.9 / 2926.9,
  24684. bottom: 86.5 / 3239.9
  24685. }
  24686. },
  24687. foot: {
  24688. height: math.unit(1.16, "feet"),
  24689. name: "Foot",
  24690. image: {
  24691. source: "./media/characters/nicky/foot.svg"
  24692. }
  24693. },
  24694. feet: {
  24695. height: math.unit(1.34, "feet"),
  24696. name: "Feet",
  24697. image: {
  24698. source: "./media/characters/nicky/feet.svg"
  24699. }
  24700. },
  24701. maw: {
  24702. height: math.unit(0.9, "feet"),
  24703. name: "Maw",
  24704. image: {
  24705. source: "./media/characters/nicky/maw.svg"
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Normal",
  24712. height: math.unit(5 + 10 / 12, "feet"),
  24713. default: true
  24714. },
  24715. {
  24716. name: "Macro",
  24717. height: math.unit(60, "feet")
  24718. },
  24719. {
  24720. name: "Megamacro",
  24721. height: math.unit(1, "mile")
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24727. {
  24728. side: {
  24729. height: math.unit(10, "feet"),
  24730. weight: math.unit(600, "lb"),
  24731. name: "Side",
  24732. image: {
  24733. source: "./media/characters/blair/side.svg",
  24734. bottom: 16.6 / 475,
  24735. extra: 458 / 431
  24736. }
  24737. },
  24738. },
  24739. [
  24740. {
  24741. name: "Micro",
  24742. height: math.unit(8, "inches")
  24743. },
  24744. {
  24745. name: "Normal",
  24746. height: math.unit(10, "feet"),
  24747. default: true
  24748. },
  24749. {
  24750. name: "Macro",
  24751. height: math.unit(180, "feet")
  24752. },
  24753. ]
  24754. ))
  24755. characterMakers.push(() => makeCharacter(
  24756. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24757. {
  24758. front: {
  24759. height: math.unit(5 + 4 / 12, "feet"),
  24760. weight: math.unit(125, "lb"),
  24761. name: "Front",
  24762. image: {
  24763. source: "./media/characters/fisher/front.svg",
  24764. extra: 444 / 390,
  24765. bottom: 2 / 444.8
  24766. }
  24767. },
  24768. },
  24769. [
  24770. {
  24771. name: "Micro",
  24772. height: math.unit(4, "inches")
  24773. },
  24774. {
  24775. name: "Normal",
  24776. height: math.unit(5 + 4 / 12, "feet"),
  24777. default: true
  24778. },
  24779. {
  24780. name: "Macro",
  24781. height: math.unit(100, "feet")
  24782. },
  24783. ]
  24784. ))
  24785. characterMakers.push(() => makeCharacter(
  24786. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24787. {
  24788. front: {
  24789. height: math.unit(6.71, "feet"),
  24790. weight: math.unit(200, "lb"),
  24791. capacity: math.unit(1000000, "people"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/gliss/front.svg",
  24795. extra: 2347 / 2231,
  24796. bottom: 113 / 2462
  24797. }
  24798. },
  24799. hammerspaceSize: {
  24800. height: math.unit(6.71 * 717, "feet"),
  24801. weight: math.unit(200, "lb"),
  24802. capacity: math.unit(1000000, "people"),
  24803. name: "Hammerspace Size",
  24804. image: {
  24805. source: "./media/characters/gliss/front.svg",
  24806. extra: 2347 / 2231,
  24807. bottom: 113 / 2462
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(6.71, "feet"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24821. {
  24822. side: {
  24823. height: math.unit(1.44, "m"),
  24824. weight: math.unit(80, "kg"),
  24825. name: "Side",
  24826. image: {
  24827. source: "./media/characters/dune-anderson/side.svg",
  24828. bottom: 49 / 1426
  24829. }
  24830. },
  24831. },
  24832. [
  24833. {
  24834. name: "Wolf-sized",
  24835. height: math.unit(1.44, "meters")
  24836. },
  24837. {
  24838. name: "Normal",
  24839. height: math.unit(5.05, "meters"),
  24840. default: true
  24841. },
  24842. {
  24843. name: "Big",
  24844. height: math.unit(14.4, "meters")
  24845. },
  24846. {
  24847. name: "Huge",
  24848. height: math.unit(144, "meters")
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24854. {
  24855. front: {
  24856. height: math.unit(7, "feet"),
  24857. weight: math.unit(425, "lb"),
  24858. name: "Front",
  24859. image: {
  24860. source: "./media/characters/hind/front.svg",
  24861. extra: 2091 / 1860,
  24862. bottom: 129 / 2220
  24863. }
  24864. },
  24865. back: {
  24866. height: math.unit(7, "feet"),
  24867. weight: math.unit(425, "lb"),
  24868. name: "Back",
  24869. image: {
  24870. source: "./media/characters/hind/back.svg",
  24871. extra: 2091 / 1860,
  24872. bottom: 24.6 / 2309
  24873. }
  24874. },
  24875. tail: {
  24876. height: math.unit(2.8, "feet"),
  24877. name: "Tail",
  24878. image: {
  24879. source: "./media/characters/hind/tail.svg"
  24880. }
  24881. },
  24882. head: {
  24883. height: math.unit(2.55, "feet"),
  24884. name: "Head",
  24885. image: {
  24886. source: "./media/characters/hind/head.svg"
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "XS",
  24893. height: math.unit(0.7, "feet")
  24894. },
  24895. {
  24896. name: "Normal",
  24897. height: math.unit(7, "feet"),
  24898. default: true
  24899. },
  24900. {
  24901. name: "XL",
  24902. height: math.unit(70, "feet")
  24903. },
  24904. ]
  24905. ))
  24906. characterMakers.push(() => makeCharacter(
  24907. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24908. {
  24909. front: {
  24910. height: math.unit(2.1, "meters"),
  24911. weight: math.unit(150, "lb"),
  24912. name: "Front",
  24913. image: {
  24914. source: "./media/characters/tharquench-sizestealer/front.svg",
  24915. extra: 1605/1470,
  24916. bottom: 36/1641
  24917. }
  24918. },
  24919. frontAlt: {
  24920. height: math.unit(2.1, "meters"),
  24921. weight: math.unit(150, "lb"),
  24922. name: "Front (Alt)",
  24923. image: {
  24924. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24925. extra: 2318 / 2063,
  24926. bottom: 93.4 / 2410
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Nano",
  24933. height: math.unit(1, "mm")
  24934. },
  24935. {
  24936. name: "Micro",
  24937. height: math.unit(1, "cm")
  24938. },
  24939. {
  24940. name: "Normal",
  24941. height: math.unit(2.1, "meters"),
  24942. default: true
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24948. {
  24949. front: {
  24950. height: math.unit(7 + 5 / 12, "feet"),
  24951. weight: math.unit(357, "lb"),
  24952. name: "Front",
  24953. image: {
  24954. source: "./media/characters/solex-draconov/front.svg",
  24955. extra: 1993 / 1865,
  24956. bottom: 117 / 2111
  24957. }
  24958. },
  24959. },
  24960. [
  24961. {
  24962. name: "Natural Height",
  24963. height: math.unit(7 + 5 / 12, "feet"),
  24964. default: true
  24965. },
  24966. {
  24967. name: "Macro",
  24968. height: math.unit(350, "feet")
  24969. },
  24970. {
  24971. name: "Macro+",
  24972. height: math.unit(1000, "feet")
  24973. },
  24974. {
  24975. name: "Megamacro",
  24976. height: math.unit(20, "km")
  24977. },
  24978. {
  24979. name: "Megamacro+",
  24980. height: math.unit(1000, "km")
  24981. },
  24982. {
  24983. name: "Gigamacro",
  24984. height: math.unit(2.5, "Gm")
  24985. },
  24986. {
  24987. name: "Teramacro",
  24988. height: math.unit(15, "Tm")
  24989. },
  24990. {
  24991. name: "Galactic",
  24992. height: math.unit(30, "Zm")
  24993. },
  24994. {
  24995. name: "Universal",
  24996. height: math.unit(21000, "Ym")
  24997. },
  24998. {
  24999. name: "Omniversal",
  25000. height: math.unit(9.861e50, "Ym")
  25001. },
  25002. {
  25003. name: "Existential",
  25004. height: math.unit(1e300, "meters")
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25010. {
  25011. side: {
  25012. height: math.unit(25, "feet"),
  25013. weight: math.unit(90000, "lb"),
  25014. name: "Side",
  25015. image: {
  25016. source: "./media/characters/mandarax/side.svg",
  25017. extra: 614 / 332,
  25018. bottom: 55 / 630
  25019. }
  25020. },
  25021. head: {
  25022. height: math.unit(11.4, "feet"),
  25023. name: "Head",
  25024. image: {
  25025. source: "./media/characters/mandarax/head.svg"
  25026. }
  25027. },
  25028. belly: {
  25029. height: math.unit(33, "feet"),
  25030. name: "Belly",
  25031. capacity: math.unit(500, "people"),
  25032. image: {
  25033. source: "./media/characters/mandarax/belly.svg"
  25034. }
  25035. },
  25036. dick: {
  25037. height: math.unit(8.46, "feet"),
  25038. name: "Dick",
  25039. image: {
  25040. source: "./media/characters/mandarax/dick.svg"
  25041. }
  25042. },
  25043. top: {
  25044. height: math.unit(28, "meters"),
  25045. name: "Top",
  25046. image: {
  25047. source: "./media/characters/mandarax/top.svg"
  25048. }
  25049. },
  25050. },
  25051. [
  25052. {
  25053. name: "Normal",
  25054. height: math.unit(25, "feet"),
  25055. default: true
  25056. },
  25057. ]
  25058. ))
  25059. characterMakers.push(() => makeCharacter(
  25060. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25061. {
  25062. front: {
  25063. height: math.unit(5, "feet"),
  25064. weight: math.unit(90, "lb"),
  25065. name: "Front",
  25066. image: {
  25067. source: "./media/characters/pixil/front.svg",
  25068. extra: 2000 / 1618,
  25069. bottom: 12.3 / 2011
  25070. }
  25071. },
  25072. },
  25073. [
  25074. {
  25075. name: "Normal",
  25076. height: math.unit(5, "feet"),
  25077. default: true
  25078. },
  25079. {
  25080. name: "Megamacro",
  25081. height: math.unit(10, "miles"),
  25082. },
  25083. ]
  25084. ))
  25085. characterMakers.push(() => makeCharacter(
  25086. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25087. {
  25088. front: {
  25089. height: math.unit(7 + 2 / 12, "feet"),
  25090. weight: math.unit(200, "lb"),
  25091. name: "Front",
  25092. image: {
  25093. source: "./media/characters/angel/front.svg",
  25094. extra: 1830 / 1737,
  25095. bottom: 22.6 / 1854,
  25096. }
  25097. },
  25098. },
  25099. [
  25100. {
  25101. name: "Normal",
  25102. height: math.unit(7 + 2 / 12, "feet"),
  25103. default: true
  25104. },
  25105. {
  25106. name: "Macro",
  25107. height: math.unit(1000, "feet")
  25108. },
  25109. {
  25110. name: "Megamacro",
  25111. height: math.unit(2, "miles")
  25112. },
  25113. {
  25114. name: "Gigamacro",
  25115. height: math.unit(20, "earths")
  25116. },
  25117. ]
  25118. ))
  25119. characterMakers.push(() => makeCharacter(
  25120. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25121. {
  25122. front: {
  25123. height: math.unit(5, "feet"),
  25124. weight: math.unit(180, "lb"),
  25125. name: "Front",
  25126. image: {
  25127. source: "./media/characters/mekana/front.svg",
  25128. extra: 1671 / 1605,
  25129. bottom: 3.5 / 1691
  25130. }
  25131. },
  25132. side: {
  25133. height: math.unit(5, "feet"),
  25134. weight: math.unit(180, "lb"),
  25135. name: "Side",
  25136. image: {
  25137. source: "./media/characters/mekana/side.svg",
  25138. extra: 1671 / 1605,
  25139. bottom: 3.5 / 1691
  25140. }
  25141. },
  25142. back: {
  25143. height: math.unit(5, "feet"),
  25144. weight: math.unit(180, "lb"),
  25145. name: "Back",
  25146. image: {
  25147. source: "./media/characters/mekana/back.svg",
  25148. extra: 1671 / 1605,
  25149. bottom: 3.5 / 1691
  25150. }
  25151. },
  25152. },
  25153. [
  25154. {
  25155. name: "Normal",
  25156. height: math.unit(5, "feet"),
  25157. default: true
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25163. {
  25164. front: {
  25165. height: math.unit(4 + 6 / 12, "feet"),
  25166. weight: math.unit(80, "lb"),
  25167. name: "Front",
  25168. image: {
  25169. source: "./media/characters/pixie/front.svg",
  25170. extra: 1924 / 1825,
  25171. bottom: 22.4 / 1946
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Normal",
  25178. height: math.unit(4 + 6 / 12, "feet"),
  25179. default: true
  25180. },
  25181. {
  25182. name: "Macro",
  25183. height: math.unit(40, "feet")
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25189. {
  25190. front: {
  25191. height: math.unit(2.1, "meters"),
  25192. weight: math.unit(200, "lb"),
  25193. name: "Front",
  25194. image: {
  25195. source: "./media/characters/the-lascivious/front.svg",
  25196. extra: 1 / 0.893,
  25197. bottom: 3.5 / 573.7
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Human Scale",
  25204. height: math.unit(2.1, "meters")
  25205. },
  25206. {
  25207. name: "Wolxi Scale",
  25208. height: math.unit(46.2, "m"),
  25209. default: true
  25210. },
  25211. {
  25212. name: "Boinker of Buildings",
  25213. height: math.unit(10, "km")
  25214. },
  25215. {
  25216. name: "Shagger of Skyscrapers",
  25217. height: math.unit(40, "km")
  25218. },
  25219. {
  25220. name: "Banger of Boroughs",
  25221. height: math.unit(4000, "km")
  25222. },
  25223. {
  25224. name: "Screwer of States",
  25225. height: math.unit(100000, "km")
  25226. },
  25227. {
  25228. name: "Pounder of Planets",
  25229. height: math.unit(2000000, "km")
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(6, "feet"),
  25238. weight: math.unit(150, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/aj/front.svg",
  25242. extra: 2039 / 1562,
  25243. bottom: 40 / 2079
  25244. }
  25245. },
  25246. },
  25247. [
  25248. {
  25249. name: "Normal",
  25250. height: math.unit(11 + 6 / 12, "feet"),
  25251. default: true
  25252. },
  25253. {
  25254. name: "Megamacro",
  25255. height: math.unit(60, "megameters")
  25256. },
  25257. ]
  25258. ))
  25259. characterMakers.push(() => makeCharacter(
  25260. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25261. {
  25262. side: {
  25263. height: math.unit(31 + 8 / 12, "feet"),
  25264. weight: math.unit(75000, "kg"),
  25265. name: "Side",
  25266. image: {
  25267. source: "./media/characters/koros/side.svg",
  25268. extra: 1442 / 1297,
  25269. bottom: 122.7 / 1562
  25270. }
  25271. },
  25272. dicksKingsCrown: {
  25273. height: math.unit(6, "feet"),
  25274. name: "Dicks (King's Crown)",
  25275. image: {
  25276. source: "./media/characters/koros/dicks-kings-crown.svg"
  25277. }
  25278. },
  25279. dicksTailSet: {
  25280. height: math.unit(3, "feet"),
  25281. name: "Dicks (Tail Set)",
  25282. image: {
  25283. source: "./media/characters/koros/dicks-tail-set.svg"
  25284. }
  25285. },
  25286. dickCumming: {
  25287. height: math.unit(7.98, "feet"),
  25288. name: "Dick (Cumming)",
  25289. image: {
  25290. source: "./media/characters/koros/dick-cumming.svg"
  25291. }
  25292. },
  25293. dicksBack: {
  25294. height: math.unit(5.9, "feet"),
  25295. name: "Dicks (Back)",
  25296. image: {
  25297. source: "./media/characters/koros/dicks-back.svg"
  25298. }
  25299. },
  25300. dicksFront: {
  25301. height: math.unit(3.72, "feet"),
  25302. name: "Dicks (Front)",
  25303. image: {
  25304. source: "./media/characters/koros/dicks-front.svg"
  25305. }
  25306. },
  25307. dicksPeeking: {
  25308. height: math.unit(3.0, "feet"),
  25309. name: "Dicks (Peeking)",
  25310. image: {
  25311. source: "./media/characters/koros/dicks-peeking.svg"
  25312. }
  25313. },
  25314. eye: {
  25315. height: math.unit(1.7, "feet"),
  25316. name: "Eye",
  25317. image: {
  25318. source: "./media/characters/koros/eye.svg"
  25319. }
  25320. },
  25321. headFront: {
  25322. height: math.unit(11.69, "feet"),
  25323. name: "Head (Front)",
  25324. image: {
  25325. source: "./media/characters/koros/head-front.svg"
  25326. }
  25327. },
  25328. headSide: {
  25329. height: math.unit(14, "feet"),
  25330. name: "Head (Side)",
  25331. image: {
  25332. source: "./media/characters/koros/head-side.svg"
  25333. }
  25334. },
  25335. leg: {
  25336. height: math.unit(17, "feet"),
  25337. name: "Leg",
  25338. image: {
  25339. source: "./media/characters/koros/leg.svg"
  25340. }
  25341. },
  25342. mawSide: {
  25343. height: math.unit(12.8, "feet"),
  25344. name: "Maw (Side)",
  25345. image: {
  25346. source: "./media/characters/koros/maw-side.svg"
  25347. }
  25348. },
  25349. mawSpitting: {
  25350. height: math.unit(17, "feet"),
  25351. name: "Maw (Spitting)",
  25352. image: {
  25353. source: "./media/characters/koros/maw-spitting.svg"
  25354. }
  25355. },
  25356. slit: {
  25357. height: math.unit(2.8, "feet"),
  25358. name: "Slit",
  25359. image: {
  25360. source: "./media/characters/koros/slit.svg"
  25361. }
  25362. },
  25363. stomach: {
  25364. height: math.unit(6.8, "feet"),
  25365. capacity: math.unit(20, "people"),
  25366. name: "Stomach",
  25367. image: {
  25368. source: "./media/characters/koros/stomach.svg"
  25369. }
  25370. },
  25371. wingspanBottom: {
  25372. height: math.unit(114, "feet"),
  25373. name: "Wingspan (Bottom)",
  25374. image: {
  25375. source: "./media/characters/koros/wingspan-bottom.svg"
  25376. }
  25377. },
  25378. wingspanTop: {
  25379. height: math.unit(104, "feet"),
  25380. name: "Wingspan (Top)",
  25381. image: {
  25382. source: "./media/characters/koros/wingspan-top.svg"
  25383. }
  25384. },
  25385. },
  25386. [
  25387. {
  25388. name: "Normal",
  25389. height: math.unit(31 + 8 / 12, "feet"),
  25390. default: true
  25391. },
  25392. ]
  25393. ))
  25394. characterMakers.push(() => makeCharacter(
  25395. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25396. {
  25397. front: {
  25398. height: math.unit(18 + 5 / 12, "feet"),
  25399. weight: math.unit(3750, "kg"),
  25400. name: "Front",
  25401. image: {
  25402. source: "./media/characters/vexx/front.svg",
  25403. extra: 426 / 396,
  25404. bottom: 31.5 / 458
  25405. }
  25406. },
  25407. maw: {
  25408. height: math.unit(6, "feet"),
  25409. name: "Maw",
  25410. image: {
  25411. source: "./media/characters/vexx/maw.svg"
  25412. }
  25413. },
  25414. },
  25415. [
  25416. {
  25417. name: "Normal",
  25418. height: math.unit(18 + 5 / 12, "feet"),
  25419. default: true
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25425. {
  25426. front: {
  25427. height: math.unit(17 + 6 / 12, "feet"),
  25428. weight: math.unit(150, "lb"),
  25429. name: "Front",
  25430. image: {
  25431. source: "./media/characters/baadra/front.svg",
  25432. extra: 3137 / 2890,
  25433. bottom: 168.4 / 3305
  25434. }
  25435. },
  25436. back: {
  25437. height: math.unit(17 + 6 / 12, "feet"),
  25438. weight: math.unit(150, "lb"),
  25439. name: "Back",
  25440. image: {
  25441. source: "./media/characters/baadra/back.svg",
  25442. extra: 3142 / 2890,
  25443. bottom: 220 / 3371
  25444. }
  25445. },
  25446. head: {
  25447. height: math.unit(5.45, "feet"),
  25448. name: "Head",
  25449. image: {
  25450. source: "./media/characters/baadra/head.svg"
  25451. }
  25452. },
  25453. headAngry: {
  25454. height: math.unit(4.95, "feet"),
  25455. name: "Head (Angry)",
  25456. image: {
  25457. source: "./media/characters/baadra/head-angry.svg"
  25458. }
  25459. },
  25460. headOpen: {
  25461. height: math.unit(6, "feet"),
  25462. name: "Head (Open)",
  25463. image: {
  25464. source: "./media/characters/baadra/head-open.svg"
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Normal",
  25471. height: math.unit(17 + 6 / 12, "feet"),
  25472. default: true
  25473. },
  25474. ]
  25475. ))
  25476. characterMakers.push(() => makeCharacter(
  25477. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25478. {
  25479. front: {
  25480. height: math.unit(7 + 3 / 12, "feet"),
  25481. weight: math.unit(180, "lb"),
  25482. name: "Front",
  25483. image: {
  25484. source: "./media/characters/juri/front.svg",
  25485. extra: 1401 / 1237,
  25486. bottom: 18.5 / 1418
  25487. }
  25488. },
  25489. side: {
  25490. height: math.unit(7 + 3 / 12, "feet"),
  25491. weight: math.unit(180, "lb"),
  25492. name: "Side",
  25493. image: {
  25494. source: "./media/characters/juri/side.svg",
  25495. extra: 1424 / 1242,
  25496. bottom: 18.5 / 1447
  25497. }
  25498. },
  25499. sitting: {
  25500. height: math.unit(6, "feet"),
  25501. weight: math.unit(180, "lb"),
  25502. name: "Sitting",
  25503. image: {
  25504. source: "./media/characters/juri/sitting.svg",
  25505. extra: 1270 / 1143,
  25506. bottom: 100 / 1343
  25507. }
  25508. },
  25509. back: {
  25510. height: math.unit(7 + 3 / 12, "feet"),
  25511. weight: math.unit(180, "lb"),
  25512. name: "Back",
  25513. image: {
  25514. source: "./media/characters/juri/back.svg",
  25515. extra: 1377 / 1240,
  25516. bottom: 23.7 / 1405
  25517. }
  25518. },
  25519. maw: {
  25520. height: math.unit(2.8, "feet"),
  25521. name: "Maw",
  25522. image: {
  25523. source: "./media/characters/juri/maw.svg"
  25524. }
  25525. },
  25526. stomach: {
  25527. height: math.unit(0.89, "feet"),
  25528. capacity: math.unit(4, "liters"),
  25529. name: "Stomach",
  25530. image: {
  25531. source: "./media/characters/juri/stomach.svg"
  25532. }
  25533. },
  25534. },
  25535. [
  25536. {
  25537. name: "Normal",
  25538. height: math.unit(7 + 3 / 12, "feet"),
  25539. default: true
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25545. {
  25546. fox: {
  25547. height: math.unit(5 + 6 / 12, "feet"),
  25548. weight: math.unit(140, "lb"),
  25549. name: "Fox",
  25550. image: {
  25551. source: "./media/characters/maxene-sita/fox.svg",
  25552. extra: 146 / 138,
  25553. bottom: 2.1 / 148.19
  25554. }
  25555. },
  25556. foxLaying: {
  25557. height: math.unit(1.70, "feet"),
  25558. weight: math.unit(140, "lb"),
  25559. name: "Fox (Laying)",
  25560. image: {
  25561. source: "./media/characters/maxene-sita/fox-laying.svg",
  25562. extra: 910 / 572,
  25563. bottom: 71 / 981
  25564. }
  25565. },
  25566. kitsune: {
  25567. height: math.unit(10, "feet"),
  25568. weight: math.unit(800, "lb"),
  25569. name: "Kitsune",
  25570. image: {
  25571. source: "./media/characters/maxene-sita/kitsune.svg",
  25572. extra: 185 / 176,
  25573. bottom: 4.7 / 189.9
  25574. }
  25575. },
  25576. hellhound: {
  25577. height: math.unit(10, "feet"),
  25578. weight: math.unit(700, "lb"),
  25579. name: "Hellhound",
  25580. image: {
  25581. source: "./media/characters/maxene-sita/hellhound.svg",
  25582. extra: 1600 / 1545,
  25583. bottom: 81 / 1681
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(5 + 6 / 12, "feet"),
  25591. default: true
  25592. },
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25597. {
  25598. front: {
  25599. height: math.unit(3 + 4 / 12, "feet"),
  25600. weight: math.unit(70, "lb"),
  25601. name: "Front",
  25602. image: {
  25603. source: "./media/characters/maia/front.svg",
  25604. extra: 227 / 219.5,
  25605. bottom: 40 / 267
  25606. }
  25607. },
  25608. back: {
  25609. height: math.unit(3 + 4 / 12, "feet"),
  25610. weight: math.unit(70, "lb"),
  25611. name: "Back",
  25612. image: {
  25613. source: "./media/characters/maia/back.svg",
  25614. extra: 237 / 225
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(3 + 4 / 12, "feet"),
  25622. default: true
  25623. },
  25624. ]
  25625. ))
  25626. characterMakers.push(() => makeCharacter(
  25627. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25628. {
  25629. front: {
  25630. height: math.unit(5 + 10 / 12, "feet"),
  25631. weight: math.unit(197, "lb"),
  25632. name: "Front",
  25633. image: {
  25634. source: "./media/characters/jabaro/front.svg",
  25635. extra: 225 / 216,
  25636. bottom: 5.06 / 230
  25637. }
  25638. },
  25639. back: {
  25640. height: math.unit(5 + 10 / 12, "feet"),
  25641. weight: math.unit(197, "lb"),
  25642. name: "Back",
  25643. image: {
  25644. source: "./media/characters/jabaro/back.svg",
  25645. extra: 225 / 219,
  25646. bottom: 1.9 / 227
  25647. }
  25648. },
  25649. },
  25650. [
  25651. {
  25652. name: "Normal",
  25653. height: math.unit(5 + 10 / 12, "feet"),
  25654. default: true
  25655. },
  25656. ]
  25657. ))
  25658. characterMakers.push(() => makeCharacter(
  25659. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25660. {
  25661. front: {
  25662. height: math.unit(5 + 8 / 12, "feet"),
  25663. weight: math.unit(139, "lb"),
  25664. name: "Front",
  25665. image: {
  25666. source: "./media/characters/risa/front.svg",
  25667. extra: 270 / 260,
  25668. bottom: 11.2 / 282
  25669. }
  25670. },
  25671. back: {
  25672. height: math.unit(5 + 8 / 12, "feet"),
  25673. weight: math.unit(139, "lb"),
  25674. name: "Back",
  25675. image: {
  25676. source: "./media/characters/risa/back.svg",
  25677. extra: 264 / 255,
  25678. bottom: 4 / 268
  25679. }
  25680. },
  25681. },
  25682. [
  25683. {
  25684. name: "Normal",
  25685. height: math.unit(5 + 8 / 12, "feet"),
  25686. default: true
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(2 + 11 / 12, "feet"),
  25695. weight: math.unit(30, "lb"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/weatley/front.svg",
  25699. bottom: 10.7 / 414,
  25700. extra: 403.5 / 362
  25701. }
  25702. },
  25703. back: {
  25704. height: math.unit(2 + 11 / 12, "feet"),
  25705. weight: math.unit(30, "lb"),
  25706. name: "Back",
  25707. image: {
  25708. source: "./media/characters/weatley/back.svg",
  25709. bottom: 10.7 / 414,
  25710. extra: 403.5 / 362
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Normal",
  25717. height: math.unit(2 + 11 / 12, "feet"),
  25718. default: true
  25719. },
  25720. ]
  25721. ))
  25722. characterMakers.push(() => makeCharacter(
  25723. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25724. {
  25725. front: {
  25726. height: math.unit(5 + 2 / 12, "feet"),
  25727. weight: math.unit(50, "kg"),
  25728. name: "Front",
  25729. image: {
  25730. source: "./media/characters/mercury-crescent/front.svg",
  25731. extra: 1088 / 1033,
  25732. bottom: 18.9 / 1109
  25733. }
  25734. },
  25735. },
  25736. [
  25737. {
  25738. name: "Normal",
  25739. height: math.unit(5 + 2 / 12, "feet"),
  25740. default: true
  25741. },
  25742. ]
  25743. ))
  25744. characterMakers.push(() => makeCharacter(
  25745. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25746. {
  25747. front: {
  25748. height: math.unit(2, "feet"),
  25749. weight: math.unit(15, "kg"),
  25750. name: "Front",
  25751. image: {
  25752. source: "./media/characters/diamond-jones/front.svg",
  25753. extra: 727/723,
  25754. bottom: 46/773
  25755. }
  25756. },
  25757. },
  25758. [
  25759. {
  25760. name: "Normal",
  25761. height: math.unit(2, "feet"),
  25762. default: true
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25768. {
  25769. front: {
  25770. height: math.unit(3, "feet"),
  25771. weight: math.unit(30, "kg"),
  25772. name: "Front",
  25773. image: {
  25774. source: "./media/characters/sweet-bit/front.svg",
  25775. extra: 675 / 567,
  25776. bottom: 27.7 / 703
  25777. }
  25778. },
  25779. },
  25780. [
  25781. {
  25782. name: "Normal",
  25783. height: math.unit(3, "feet"),
  25784. default: true
  25785. },
  25786. ]
  25787. ))
  25788. characterMakers.push(() => makeCharacter(
  25789. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25790. {
  25791. side: {
  25792. height: math.unit(9.178, "feet"),
  25793. weight: math.unit(500, "lb"),
  25794. name: "Side",
  25795. image: {
  25796. source: "./media/characters/umbrazen/side.svg",
  25797. extra: 1730 / 1473,
  25798. bottom: 34.6 / 1765
  25799. }
  25800. },
  25801. },
  25802. [
  25803. {
  25804. name: "Normal",
  25805. height: math.unit(9.178, "feet"),
  25806. default: true
  25807. },
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25812. {
  25813. front: {
  25814. height: math.unit(10, "feet"),
  25815. weight: math.unit(750, "lb"),
  25816. name: "Front",
  25817. image: {
  25818. source: "./media/characters/arlist/front.svg",
  25819. extra: 961 / 778,
  25820. bottom: 6.2 / 986
  25821. }
  25822. },
  25823. },
  25824. [
  25825. {
  25826. name: "Normal",
  25827. height: math.unit(10, "feet"),
  25828. default: true
  25829. },
  25830. ]
  25831. ))
  25832. characterMakers.push(() => makeCharacter(
  25833. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25834. {
  25835. front: {
  25836. height: math.unit(5 + 1 / 12, "feet"),
  25837. weight: math.unit(110, "lb"),
  25838. name: "Front",
  25839. image: {
  25840. source: "./media/characters/aradel/front.svg",
  25841. extra: 324 / 303,
  25842. bottom: 3.6 / 329.4
  25843. }
  25844. },
  25845. },
  25846. [
  25847. {
  25848. name: "Normal",
  25849. height: math.unit(5 + 1 / 12, "feet"),
  25850. default: true
  25851. },
  25852. ]
  25853. ))
  25854. characterMakers.push(() => makeCharacter(
  25855. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25856. {
  25857. front: {
  25858. height: math.unit(3 + 8 / 12, "feet"),
  25859. weight: math.unit(50, "lb"),
  25860. name: "Front",
  25861. image: {
  25862. source: "./media/characters/serryn/front.svg",
  25863. extra: 1792 / 1656,
  25864. bottom: 43.5 / 1840
  25865. }
  25866. },
  25867. },
  25868. [
  25869. {
  25870. name: "Normal",
  25871. height: math.unit(3 + 8 / 12, "feet"),
  25872. default: true
  25873. },
  25874. ]
  25875. ))
  25876. characterMakers.push(() => makeCharacter(
  25877. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25878. {
  25879. front: {
  25880. height: math.unit(7 + 10 / 12, "feet"),
  25881. weight: math.unit(255, "lb"),
  25882. name: "Front",
  25883. image: {
  25884. source: "./media/characters/xavier-thyme/front.svg",
  25885. extra: 3733 / 3642,
  25886. bottom: 131 / 3869
  25887. }
  25888. },
  25889. frontRaven: {
  25890. height: math.unit(7 + 10 / 12, "feet"),
  25891. weight: math.unit(255, "lb"),
  25892. name: "Front (Raven)",
  25893. image: {
  25894. source: "./media/characters/xavier-thyme/front-raven.svg",
  25895. extra: 4385 / 3642,
  25896. bottom: 131 / 4517
  25897. }
  25898. },
  25899. },
  25900. [
  25901. {
  25902. name: "Normal",
  25903. height: math.unit(7 + 10 / 12, "feet"),
  25904. default: true
  25905. },
  25906. ]
  25907. ))
  25908. characterMakers.push(() => makeCharacter(
  25909. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25910. {
  25911. front: {
  25912. height: math.unit(1.6, "m"),
  25913. weight: math.unit(50, "kg"),
  25914. name: "Front",
  25915. image: {
  25916. source: "./media/characters/kiki/front.svg",
  25917. extra: 4682 / 3610,
  25918. bottom: 115 / 4777
  25919. }
  25920. },
  25921. },
  25922. [
  25923. {
  25924. name: "Normal",
  25925. height: math.unit(1.6, "meters"),
  25926. default: true
  25927. },
  25928. ]
  25929. ))
  25930. characterMakers.push(() => makeCharacter(
  25931. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25932. {
  25933. front: {
  25934. height: math.unit(50, "m"),
  25935. weight: math.unit(500, "tonnes"),
  25936. name: "Front",
  25937. image: {
  25938. source: "./media/characters/ryoko/front.svg",
  25939. extra: 4632 / 3926,
  25940. bottom: 193 / 4823
  25941. }
  25942. },
  25943. },
  25944. [
  25945. {
  25946. name: "Normal",
  25947. height: math.unit(50, "meters"),
  25948. default: true
  25949. },
  25950. ]
  25951. ))
  25952. characterMakers.push(() => makeCharacter(
  25953. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25954. {
  25955. front: {
  25956. height: math.unit(30, "m"),
  25957. weight: math.unit(22, "tonnes"),
  25958. name: "Front",
  25959. image: {
  25960. source: "./media/characters/elio/front.svg",
  25961. extra: 4582 / 3720,
  25962. bottom: 236 / 4828
  25963. }
  25964. },
  25965. },
  25966. [
  25967. {
  25968. name: "Normal",
  25969. height: math.unit(30, "meters"),
  25970. default: true
  25971. },
  25972. ]
  25973. ))
  25974. characterMakers.push(() => makeCharacter(
  25975. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25976. {
  25977. front: {
  25978. height: math.unit(6 + 3 / 12, "feet"),
  25979. weight: math.unit(120, "lb"),
  25980. name: "Front",
  25981. image: {
  25982. source: "./media/characters/azura/front.svg",
  25983. extra: 1149 / 1135,
  25984. bottom: 45 / 1194
  25985. }
  25986. },
  25987. frontClothed: {
  25988. height: math.unit(6 + 3 / 12, "feet"),
  25989. weight: math.unit(120, "lb"),
  25990. name: "Front (Clothed)",
  25991. image: {
  25992. source: "./media/characters/azura/front-clothed.svg",
  25993. extra: 1149 / 1135,
  25994. bottom: 45 / 1194
  25995. }
  25996. },
  25997. },
  25998. [
  25999. {
  26000. name: "Normal",
  26001. height: math.unit(6 + 3 / 12, "feet"),
  26002. default: true
  26003. },
  26004. {
  26005. name: "Macro",
  26006. height: math.unit(20 + 6 / 12, "feet")
  26007. },
  26008. {
  26009. name: "Megamacro",
  26010. height: math.unit(12, "miles")
  26011. },
  26012. {
  26013. name: "Gigamacro",
  26014. height: math.unit(10000, "miles")
  26015. },
  26016. {
  26017. name: "Teramacro",
  26018. height: math.unit(900000, "miles")
  26019. },
  26020. ]
  26021. ))
  26022. characterMakers.push(() => makeCharacter(
  26023. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26024. {
  26025. front: {
  26026. height: math.unit(12, "feet"),
  26027. weight: math.unit(1, "ton"),
  26028. capacity: math.unit(660000, "gallons"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/zeus/front.svg",
  26032. extra: 5005 / 4717,
  26033. bottom: 363 / 5388
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(12, "feet")
  26041. },
  26042. {
  26043. name: "Preferred Size",
  26044. height: math.unit(0.5, "miles"),
  26045. default: true
  26046. },
  26047. {
  26048. name: "Giga Horse",
  26049. height: math.unit(300, "miles")
  26050. },
  26051. {
  26052. name: "Riding Planets",
  26053. height: math.unit(30, "megameters")
  26054. },
  26055. {
  26056. name: "Cosmic Giant",
  26057. height: math.unit(3, "zettameters")
  26058. },
  26059. {
  26060. name: "Breeding God",
  26061. height: math.unit(9.92e22, "yottameters")
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26067. {
  26068. side: {
  26069. height: math.unit(9, "feet"),
  26070. weight: math.unit(1500, "kg"),
  26071. name: "Side",
  26072. image: {
  26073. source: "./media/characters/fang/side.svg",
  26074. extra: 924 / 866,
  26075. bottom: 47.5 / 972.3
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Normal",
  26082. height: math.unit(9, "feet"),
  26083. default: true
  26084. },
  26085. {
  26086. name: "Macro",
  26087. height: math.unit(75 + 6 / 12, "feet")
  26088. },
  26089. {
  26090. name: "Teramacro",
  26091. height: math.unit(50000, "miles")
  26092. },
  26093. ]
  26094. ))
  26095. characterMakers.push(() => makeCharacter(
  26096. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26097. {
  26098. front: {
  26099. height: math.unit(10, "feet"),
  26100. weight: math.unit(2, "tons"),
  26101. name: "Front",
  26102. image: {
  26103. source: "./media/characters/rekhit/front.svg",
  26104. extra: 2796 / 2590,
  26105. bottom: 225 / 3022
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(10, "feet"),
  26113. default: true
  26114. },
  26115. {
  26116. name: "Macro",
  26117. height: math.unit(500, "feet")
  26118. },
  26119. ]
  26120. ))
  26121. characterMakers.push(() => makeCharacter(
  26122. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26123. {
  26124. front: {
  26125. height: math.unit(7 + 6.451 / 12, "feet"),
  26126. weight: math.unit(310, "lb"),
  26127. name: "Front",
  26128. image: {
  26129. source: "./media/characters/dahlia-verrick/front.svg",
  26130. extra: 1488 / 1365,
  26131. bottom: 6.2 / 1495
  26132. }
  26133. },
  26134. back: {
  26135. height: math.unit(7 + 6.451 / 12, "feet"),
  26136. weight: math.unit(310, "lb"),
  26137. name: "Back",
  26138. image: {
  26139. source: "./media/characters/dahlia-verrick/back.svg",
  26140. extra: 1472 / 1351,
  26141. bottom: 5.28 / 1477
  26142. }
  26143. },
  26144. frontBusiness: {
  26145. height: math.unit(7 + 6.451 / 12, "feet"),
  26146. weight: math.unit(200, "lb"),
  26147. name: "Front (Business)",
  26148. image: {
  26149. source: "./media/characters/dahlia-verrick/front-business.svg",
  26150. extra: 1478 / 1381,
  26151. bottom: 5.5 / 1484
  26152. }
  26153. },
  26154. frontCasual: {
  26155. height: math.unit(7 + 6.451 / 12, "feet"),
  26156. weight: math.unit(200, "lb"),
  26157. name: "Front (Casual)",
  26158. image: {
  26159. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26160. extra: 1478 / 1381,
  26161. bottom: 5.5 / 1484
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Travel-Sized",
  26168. height: math.unit(7.45, "inches")
  26169. },
  26170. {
  26171. name: "Normal",
  26172. height: math.unit(7 + 6.451 / 12, "feet"),
  26173. default: true
  26174. },
  26175. {
  26176. name: "Hitting the Town",
  26177. height: math.unit(37 + 8 / 12, "feet")
  26178. },
  26179. {
  26180. name: "Stomp in the Suburbs",
  26181. height: math.unit(964 + 9.728 / 12, "feet")
  26182. },
  26183. {
  26184. name: "Sit on the City",
  26185. height: math.unit(61747 + 10.592 / 12, "feet")
  26186. },
  26187. {
  26188. name: "Glomp the Globe",
  26189. height: math.unit(252919327 + 4.832 / 12, "feet")
  26190. },
  26191. ]
  26192. ))
  26193. characterMakers.push(() => makeCharacter(
  26194. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26195. {
  26196. front: {
  26197. height: math.unit(6 + 4 / 12, "feet"),
  26198. weight: math.unit(320, "lb"),
  26199. name: "Front",
  26200. image: {
  26201. source: "./media/characters/balina-mahigan/front.svg",
  26202. extra: 447 / 428,
  26203. bottom: 18 / 466
  26204. }
  26205. },
  26206. back: {
  26207. height: math.unit(6 + 4 / 12, "feet"),
  26208. weight: math.unit(320, "lb"),
  26209. name: "Back",
  26210. image: {
  26211. source: "./media/characters/balina-mahigan/back.svg",
  26212. extra: 445 / 428,
  26213. bottom: 4.07 / 448
  26214. }
  26215. },
  26216. arm: {
  26217. height: math.unit(1.88, "feet"),
  26218. name: "Arm",
  26219. image: {
  26220. source: "./media/characters/balina-mahigan/arm.svg"
  26221. }
  26222. },
  26223. backPort: {
  26224. height: math.unit(0.685, "feet"),
  26225. name: "Back Port",
  26226. image: {
  26227. source: "./media/characters/balina-mahigan/back-port.svg"
  26228. }
  26229. },
  26230. hoofpaw: {
  26231. height: math.unit(1.41, "feet"),
  26232. name: "Hoofpaw",
  26233. image: {
  26234. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26235. }
  26236. },
  26237. leftHandBack: {
  26238. height: math.unit(0.938, "feet"),
  26239. name: "Left Hand (Back)",
  26240. image: {
  26241. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26242. }
  26243. },
  26244. leftHandFront: {
  26245. height: math.unit(0.938, "feet"),
  26246. name: "Left Hand (Front)",
  26247. image: {
  26248. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26249. }
  26250. },
  26251. rightHandBack: {
  26252. height: math.unit(0.95, "feet"),
  26253. name: "Right Hand (Back)",
  26254. image: {
  26255. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26256. }
  26257. },
  26258. rightHandFront: {
  26259. height: math.unit(0.95, "feet"),
  26260. name: "Right Hand (Front)",
  26261. image: {
  26262. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26263. }
  26264. },
  26265. },
  26266. [
  26267. {
  26268. name: "Normal",
  26269. height: math.unit(6 + 4 / 12, "feet"),
  26270. default: true
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(6, "feet"),
  26279. weight: math.unit(320, "lb"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/balina-mejeri/front.svg",
  26283. extra: 517 / 488,
  26284. bottom: 44.2 / 561
  26285. }
  26286. },
  26287. },
  26288. [
  26289. {
  26290. name: "Normal",
  26291. height: math.unit(6 + 4 / 12, "feet")
  26292. },
  26293. {
  26294. name: "Business",
  26295. height: math.unit(155, "feet"),
  26296. default: true
  26297. },
  26298. ]
  26299. ))
  26300. characterMakers.push(() => makeCharacter(
  26301. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26302. {
  26303. kneeling: {
  26304. height: math.unit(6 + 4 / 12, "feet"),
  26305. weight: math.unit(300 * 20, "lb"),
  26306. name: "Kneeling",
  26307. image: {
  26308. source: "./media/characters/balbarian/kneeling.svg",
  26309. extra: 922 / 862,
  26310. bottom: 42.4 / 965
  26311. }
  26312. },
  26313. },
  26314. [
  26315. {
  26316. name: "Normal",
  26317. height: math.unit(6 + 4 / 12, "feet")
  26318. },
  26319. {
  26320. name: "Treasured",
  26321. height: math.unit(18 + 9 / 12, "feet"),
  26322. default: true
  26323. },
  26324. {
  26325. name: "Macro",
  26326. height: math.unit(900, "feet")
  26327. },
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26332. {
  26333. front: {
  26334. height: math.unit(6 + 4 / 12, "feet"),
  26335. weight: math.unit(325, "lb"),
  26336. name: "Front",
  26337. image: {
  26338. source: "./media/characters/balina-amarini/front.svg",
  26339. extra: 415 / 403,
  26340. bottom: 19 / 433.4
  26341. }
  26342. },
  26343. back: {
  26344. height: math.unit(6 + 4 / 12, "feet"),
  26345. weight: math.unit(325, "lb"),
  26346. name: "Back",
  26347. image: {
  26348. source: "./media/characters/balina-amarini/back.svg",
  26349. extra: 415 / 403,
  26350. bottom: 13.5 / 432
  26351. }
  26352. },
  26353. overdrive: {
  26354. height: math.unit(6 + 4 / 12, "feet"),
  26355. weight: math.unit(400, "lb"),
  26356. name: "Overdrive",
  26357. image: {
  26358. source: "./media/characters/balina-amarini/overdrive.svg",
  26359. extra: 269 / 259,
  26360. bottom: 12 / 282
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Boom",
  26367. height: math.unit(9 + 10 / 12, "feet"),
  26368. default: true
  26369. },
  26370. {
  26371. name: "Macro",
  26372. height: math.unit(280, "feet")
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26378. {
  26379. goddess: {
  26380. height: math.unit(600, "feet"),
  26381. weight: math.unit(2000000, "tons"),
  26382. name: "Goddess",
  26383. image: {
  26384. source: "./media/characters/lady-kubwa/goddess.svg",
  26385. extra: 1240.5 / 1223,
  26386. bottom: 22 / 1263
  26387. }
  26388. },
  26389. goddesser: {
  26390. height: math.unit(900, "feet"),
  26391. weight: math.unit(20000000, "lb"),
  26392. name: "Goddess-er",
  26393. image: {
  26394. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26395. extra: 899 / 888,
  26396. bottom: 12.6 / 912
  26397. }
  26398. },
  26399. },
  26400. [
  26401. {
  26402. name: "Macro",
  26403. height: math.unit(600, "feet"),
  26404. default: true
  26405. },
  26406. {
  26407. name: "Megamacro",
  26408. height: math.unit(250, "miles")
  26409. },
  26410. ]
  26411. ))
  26412. characterMakers.push(() => makeCharacter(
  26413. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26414. {
  26415. front: {
  26416. height: math.unit(7 + 7 / 12, "feet"),
  26417. weight: math.unit(250, "lb"),
  26418. name: "Front",
  26419. image: {
  26420. source: "./media/characters/tala-grovehorn/front.svg",
  26421. extra: 2636 / 2525,
  26422. bottom: 147 / 2781
  26423. }
  26424. },
  26425. back: {
  26426. height: math.unit(7 + 7 / 12, "feet"),
  26427. weight: math.unit(250, "lb"),
  26428. name: "Back",
  26429. image: {
  26430. source: "./media/characters/tala-grovehorn/back.svg",
  26431. extra: 2635 / 2539,
  26432. bottom: 100 / 2732.8
  26433. }
  26434. },
  26435. mouth: {
  26436. height: math.unit(1.15, "feet"),
  26437. name: "Mouth",
  26438. image: {
  26439. source: "./media/characters/tala-grovehorn/mouth.svg"
  26440. }
  26441. },
  26442. dick: {
  26443. height: math.unit(2.36, "feet"),
  26444. name: "Dick",
  26445. image: {
  26446. source: "./media/characters/tala-grovehorn/dick.svg"
  26447. }
  26448. },
  26449. slit: {
  26450. height: math.unit(0.61, "feet"),
  26451. name: "Slit",
  26452. image: {
  26453. source: "./media/characters/tala-grovehorn/slit.svg"
  26454. }
  26455. },
  26456. },
  26457. [
  26458. ]
  26459. ))
  26460. characterMakers.push(() => makeCharacter(
  26461. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26462. {
  26463. front: {
  26464. height: math.unit(7 + 7 / 12, "feet"),
  26465. weight: math.unit(225, "lb"),
  26466. name: "Front",
  26467. image: {
  26468. source: "./media/characters/epona/front.svg",
  26469. extra: 2445 / 2290,
  26470. bottom: 251 / 2696
  26471. }
  26472. },
  26473. back: {
  26474. height: math.unit(7 + 7 / 12, "feet"),
  26475. weight: math.unit(225, "lb"),
  26476. name: "Back",
  26477. image: {
  26478. source: "./media/characters/epona/back.svg",
  26479. extra: 2546 / 2408,
  26480. bottom: 44 / 2589
  26481. }
  26482. },
  26483. genitals: {
  26484. height: math.unit(1.5, "feet"),
  26485. name: "Genitals",
  26486. image: {
  26487. source: "./media/characters/epona/genitals.svg"
  26488. }
  26489. },
  26490. },
  26491. [
  26492. {
  26493. name: "Normal",
  26494. height: math.unit(7 + 7 / 12, "feet"),
  26495. default: true
  26496. },
  26497. ]
  26498. ))
  26499. characterMakers.push(() => makeCharacter(
  26500. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26501. {
  26502. front: {
  26503. height: math.unit(7, "feet"),
  26504. weight: math.unit(518, "lb"),
  26505. name: "Front",
  26506. image: {
  26507. source: "./media/characters/avia-bloodbourn/front.svg",
  26508. extra: 1466 / 1350,
  26509. bottom: 65 / 1527
  26510. }
  26511. },
  26512. },
  26513. [
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26518. {
  26519. front: {
  26520. height: math.unit(9.35, "feet"),
  26521. weight: math.unit(600, "lb"),
  26522. name: "Front",
  26523. image: {
  26524. source: "./media/characters/amera/front.svg",
  26525. extra: 891 / 818,
  26526. bottom: 30 / 922.7
  26527. }
  26528. },
  26529. back: {
  26530. height: math.unit(9.35, "feet"),
  26531. weight: math.unit(600, "lb"),
  26532. name: "Back",
  26533. image: {
  26534. source: "./media/characters/amera/back.svg",
  26535. extra: 876 / 824,
  26536. bottom: 6.8 / 884
  26537. }
  26538. },
  26539. dick: {
  26540. height: math.unit(2.14, "feet"),
  26541. name: "Dick",
  26542. image: {
  26543. source: "./media/characters/amera/dick.svg"
  26544. }
  26545. },
  26546. },
  26547. [
  26548. {
  26549. name: "Normal",
  26550. height: math.unit(9.35, "feet"),
  26551. default: true
  26552. },
  26553. ]
  26554. ))
  26555. characterMakers.push(() => makeCharacter(
  26556. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26557. {
  26558. kneeling: {
  26559. height: math.unit(3 + 4 / 12, "feet"),
  26560. weight: math.unit(90, "lb"),
  26561. name: "Kneeling",
  26562. image: {
  26563. source: "./media/characters/rosewen/kneeling.svg",
  26564. extra: 1835 / 1571,
  26565. bottom: 27.7 / 1862
  26566. }
  26567. },
  26568. },
  26569. [
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(3 + 4 / 12, "feet"),
  26573. default: true
  26574. },
  26575. ]
  26576. ))
  26577. characterMakers.push(() => makeCharacter(
  26578. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26579. {
  26580. front: {
  26581. height: math.unit(5 + 10 / 12, "feet"),
  26582. weight: math.unit(200, "lb"),
  26583. name: "Front",
  26584. image: {
  26585. source: "./media/characters/sabah/front.svg",
  26586. extra: 849 / 763,
  26587. bottom: 33.9 / 881
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Normal",
  26594. height: math.unit(5 + 10 / 12, "feet"),
  26595. default: true
  26596. },
  26597. ]
  26598. ))
  26599. characterMakers.push(() => makeCharacter(
  26600. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26601. {
  26602. front: {
  26603. height: math.unit(3 + 5 / 12, "feet"),
  26604. weight: math.unit(40, "kg"),
  26605. name: "Front",
  26606. image: {
  26607. source: "./media/characters/purple-flame/front.svg",
  26608. extra: 1577 / 1412,
  26609. bottom: 97 / 1694
  26610. }
  26611. },
  26612. frontDressed: {
  26613. height: math.unit(3 + 5 / 12, "feet"),
  26614. weight: math.unit(40, "kg"),
  26615. name: "Front (Dressed)",
  26616. image: {
  26617. source: "./media/characters/purple-flame/front-dressed.svg",
  26618. extra: 1577 / 1412,
  26619. bottom: 97 / 1694
  26620. }
  26621. },
  26622. headphones: {
  26623. height: math.unit(0.85, "feet"),
  26624. name: "Headphones",
  26625. image: {
  26626. source: "./media/characters/purple-flame/headphones.svg"
  26627. }
  26628. },
  26629. },
  26630. [
  26631. {
  26632. name: "Really Small",
  26633. height: math.unit(5, "cm")
  26634. },
  26635. {
  26636. name: "Micro",
  26637. height: math.unit(1 + 5 / 12, "feet")
  26638. },
  26639. {
  26640. name: "Normal",
  26641. height: math.unit(3 + 5 / 12, "feet"),
  26642. default: true
  26643. },
  26644. {
  26645. name: "Minimacro",
  26646. height: math.unit(125, "feet")
  26647. },
  26648. {
  26649. name: "Macro",
  26650. height: math.unit(0.5, "miles")
  26651. },
  26652. {
  26653. name: "Megamacro",
  26654. height: math.unit(50, "miles")
  26655. },
  26656. {
  26657. name: "Gigantic",
  26658. height: math.unit(750, "miles")
  26659. },
  26660. {
  26661. name: "Planetary",
  26662. height: math.unit(15000, "miles")
  26663. },
  26664. ]
  26665. ))
  26666. characterMakers.push(() => makeCharacter(
  26667. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26668. {
  26669. front: {
  26670. height: math.unit(14, "feet"),
  26671. weight: math.unit(959, "lb"),
  26672. name: "Front",
  26673. image: {
  26674. source: "./media/characters/arsenal/front.svg",
  26675. extra: 2357 / 2157,
  26676. bottom: 93 / 2458
  26677. }
  26678. },
  26679. },
  26680. [
  26681. {
  26682. name: "Normal",
  26683. height: math.unit(14, "feet"),
  26684. default: true
  26685. },
  26686. ]
  26687. ))
  26688. characterMakers.push(() => makeCharacter(
  26689. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26690. {
  26691. front: {
  26692. height: math.unit(6, "feet"),
  26693. weight: math.unit(150, "lb"),
  26694. name: "Front",
  26695. image: {
  26696. source: "./media/characters/adira/front.svg",
  26697. extra: 1078 / 1029,
  26698. bottom: 87 / 1166
  26699. }
  26700. },
  26701. },
  26702. [
  26703. {
  26704. name: "Micro",
  26705. height: math.unit(4, "inches"),
  26706. default: true
  26707. },
  26708. {
  26709. name: "Macro",
  26710. height: math.unit(50, "feet")
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26716. {
  26717. front: {
  26718. height: math.unit(16, "feet"),
  26719. weight: math.unit(1000, "lb"),
  26720. name: "Front",
  26721. image: {
  26722. source: "./media/characters/grim/front.svg",
  26723. extra: 622 / 614,
  26724. bottom: 18.1 / 642
  26725. }
  26726. },
  26727. back: {
  26728. height: math.unit(16, "feet"),
  26729. weight: math.unit(1000, "lb"),
  26730. name: "Back",
  26731. image: {
  26732. source: "./media/characters/grim/back.svg",
  26733. extra: 610.6 / 602,
  26734. bottom: 40.8 / 652
  26735. }
  26736. },
  26737. hunched: {
  26738. height: math.unit(9.75, "feet"),
  26739. weight: math.unit(1000, "lb"),
  26740. name: "Hunched",
  26741. image: {
  26742. source: "./media/characters/grim/hunched.svg",
  26743. extra: 304 / 297,
  26744. bottom: 35.4 / 394
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Normal",
  26751. height: math.unit(16, "feet"),
  26752. default: true
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26758. {
  26759. front: {
  26760. height: math.unit(2.3, "meters"),
  26761. weight: math.unit(300, "lb"),
  26762. name: "Front",
  26763. image: {
  26764. source: "./media/characters/sinja/front-sfw.svg",
  26765. extra: 1393 / 1294,
  26766. bottom: 70 / 1463
  26767. }
  26768. },
  26769. frontNsfw: {
  26770. height: math.unit(2.3, "meters"),
  26771. weight: math.unit(300, "lb"),
  26772. name: "Front (NSFW)",
  26773. image: {
  26774. source: "./media/characters/sinja/front-nsfw.svg",
  26775. extra: 1393 / 1294,
  26776. bottom: 70 / 1463
  26777. }
  26778. },
  26779. back: {
  26780. height: math.unit(2.3, "meters"),
  26781. weight: math.unit(300, "lb"),
  26782. name: "Back",
  26783. image: {
  26784. source: "./media/characters/sinja/back.svg",
  26785. extra: 1393 / 1294,
  26786. bottom: 70 / 1463
  26787. }
  26788. },
  26789. head: {
  26790. height: math.unit(1.771, "feet"),
  26791. name: "Head",
  26792. image: {
  26793. source: "./media/characters/sinja/head.svg"
  26794. }
  26795. },
  26796. slit: {
  26797. height: math.unit(0.8, "feet"),
  26798. name: "Slit",
  26799. image: {
  26800. source: "./media/characters/sinja/slit.svg"
  26801. }
  26802. },
  26803. },
  26804. [
  26805. {
  26806. name: "Normal",
  26807. height: math.unit(2.3, "meters")
  26808. },
  26809. {
  26810. name: "Macro",
  26811. height: math.unit(91, "meters"),
  26812. default: true
  26813. },
  26814. {
  26815. name: "Megamacro",
  26816. height: math.unit(91440, "meters")
  26817. },
  26818. {
  26819. name: "Gigamacro",
  26820. height: math.unit(60960000, "meters")
  26821. },
  26822. {
  26823. name: "Teramacro",
  26824. height: math.unit(9144000000, "meters")
  26825. },
  26826. ]
  26827. ))
  26828. characterMakers.push(() => makeCharacter(
  26829. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26830. {
  26831. front: {
  26832. height: math.unit(1.7, "meters"),
  26833. weight: math.unit(130, "lb"),
  26834. name: "Front",
  26835. image: {
  26836. source: "./media/characters/kyu/front.svg",
  26837. extra: 415 / 395,
  26838. bottom: 5 / 420
  26839. }
  26840. },
  26841. head: {
  26842. height: math.unit(1.75, "feet"),
  26843. name: "Head",
  26844. image: {
  26845. source: "./media/characters/kyu/head.svg"
  26846. }
  26847. },
  26848. foot: {
  26849. height: math.unit(0.81, "feet"),
  26850. name: "Foot",
  26851. image: {
  26852. source: "./media/characters/kyu/foot.svg"
  26853. }
  26854. },
  26855. },
  26856. [
  26857. {
  26858. name: "Normal",
  26859. height: math.unit(1.7, "meters")
  26860. },
  26861. {
  26862. name: "Macro",
  26863. height: math.unit(131, "feet"),
  26864. default: true
  26865. },
  26866. {
  26867. name: "Megamacro",
  26868. height: math.unit(91440, "meters")
  26869. },
  26870. {
  26871. name: "Gigamacro",
  26872. height: math.unit(60960000, "meters")
  26873. },
  26874. {
  26875. name: "Teramacro",
  26876. height: math.unit(9144000000, "meters")
  26877. },
  26878. ]
  26879. ))
  26880. characterMakers.push(() => makeCharacter(
  26881. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26882. {
  26883. front: {
  26884. height: math.unit(7 + 1 / 12, "feet"),
  26885. weight: math.unit(250, "lb"),
  26886. name: "Front",
  26887. image: {
  26888. source: "./media/characters/joey/front.svg",
  26889. extra: 1791 / 1537,
  26890. bottom: 28 / 1816
  26891. }
  26892. },
  26893. },
  26894. [
  26895. {
  26896. name: "Micro",
  26897. height: math.unit(3, "inches")
  26898. },
  26899. {
  26900. name: "Normal",
  26901. height: math.unit(7 + 1 / 12, "feet"),
  26902. default: true
  26903. },
  26904. ]
  26905. ))
  26906. characterMakers.push(() => makeCharacter(
  26907. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26908. {
  26909. front: {
  26910. height: math.unit(165, "cm"),
  26911. weight: math.unit(140, "lb"),
  26912. name: "Front",
  26913. image: {
  26914. source: "./media/characters/sam-evans/front.svg",
  26915. extra: 3417 / 3230,
  26916. bottom: 41.3 / 3417
  26917. }
  26918. },
  26919. frontSixTails: {
  26920. height: math.unit(165, "cm"),
  26921. weight: math.unit(140, "lb"),
  26922. name: "Front-six-tails",
  26923. image: {
  26924. source: "./media/characters/sam-evans/front-six-tails.svg",
  26925. extra: 3417 / 3230,
  26926. bottom: 41.3 / 3417
  26927. }
  26928. },
  26929. back: {
  26930. height: math.unit(165, "cm"),
  26931. weight: math.unit(140, "lb"),
  26932. name: "Back",
  26933. image: {
  26934. source: "./media/characters/sam-evans/back.svg",
  26935. extra: 3227 / 3032,
  26936. bottom: 6.8 / 3234
  26937. }
  26938. },
  26939. face: {
  26940. height: math.unit(0.68, "feet"),
  26941. name: "Face",
  26942. image: {
  26943. source: "./media/characters/sam-evans/face.svg"
  26944. }
  26945. },
  26946. },
  26947. [
  26948. {
  26949. name: "Normal",
  26950. height: math.unit(165, "cm"),
  26951. default: true
  26952. },
  26953. {
  26954. name: "Macro",
  26955. height: math.unit(100, "meters")
  26956. },
  26957. {
  26958. name: "Macro+",
  26959. height: math.unit(800, "meters")
  26960. },
  26961. {
  26962. name: "Macro++",
  26963. height: math.unit(3, "km")
  26964. },
  26965. {
  26966. name: "Macro+++",
  26967. height: math.unit(30, "km")
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26973. {
  26974. front: {
  26975. height: math.unit(10, "feet"),
  26976. weight: math.unit(750, "lb"),
  26977. name: "Front",
  26978. image: {
  26979. source: "./media/characters/juliet-a/front.svg",
  26980. extra: 1766 / 1720,
  26981. bottom: 43 / 1809
  26982. }
  26983. },
  26984. back: {
  26985. height: math.unit(10, "feet"),
  26986. weight: math.unit(750, "lb"),
  26987. name: "Back",
  26988. image: {
  26989. source: "./media/characters/juliet-a/back.svg",
  26990. extra: 1781 / 1734,
  26991. bottom: 35 / 1810,
  26992. }
  26993. },
  26994. },
  26995. [
  26996. {
  26997. name: "Normal",
  26998. height: math.unit(10, "feet"),
  26999. default: true
  27000. },
  27001. {
  27002. name: "Dragon Form",
  27003. height: math.unit(250, "feet")
  27004. },
  27005. {
  27006. name: "Macro",
  27007. height: math.unit(1000, "feet")
  27008. },
  27009. {
  27010. name: "Megamacro",
  27011. height: math.unit(10000, "feet")
  27012. }
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27017. {
  27018. regular: {
  27019. height: math.unit(7 + 3 / 12, "feet"),
  27020. weight: math.unit(260, "lb"),
  27021. name: "Regular",
  27022. image: {
  27023. source: "./media/characters/wild/regular.svg",
  27024. extra: 97.45 / 92,
  27025. bottom: 6.8 / 104.3
  27026. }
  27027. },
  27028. biggums: {
  27029. height: math.unit(8 + 6 / 12, "feet"),
  27030. weight: math.unit(425, "lb"),
  27031. name: "Biggums",
  27032. image: {
  27033. source: "./media/characters/wild/biggums.svg",
  27034. extra: 97.45 / 92,
  27035. bottom: 7.5 / 132.34
  27036. }
  27037. },
  27038. mawRegular: {
  27039. height: math.unit(1.24, "feet"),
  27040. name: "Maw (Regular)",
  27041. image: {
  27042. source: "./media/characters/wild/maw.svg"
  27043. }
  27044. },
  27045. mawBiggums: {
  27046. height: math.unit(1.47, "feet"),
  27047. name: "Maw (Biggums)",
  27048. image: {
  27049. source: "./media/characters/wild/maw.svg"
  27050. }
  27051. },
  27052. },
  27053. [
  27054. {
  27055. name: "Normal",
  27056. height: math.unit(7 + 3 / 12, "feet"),
  27057. default: true
  27058. },
  27059. ]
  27060. ))
  27061. characterMakers.push(() => makeCharacter(
  27062. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27063. {
  27064. front: {
  27065. height: math.unit(2.5, "meters"),
  27066. weight: math.unit(200, "kg"),
  27067. name: "Front",
  27068. image: {
  27069. source: "./media/characters/vidar/front.svg",
  27070. extra: 2994 / 2795,
  27071. bottom: 56 / 3061
  27072. }
  27073. },
  27074. back: {
  27075. height: math.unit(2.5, "meters"),
  27076. weight: math.unit(200, "kg"),
  27077. name: "Back",
  27078. image: {
  27079. source: "./media/characters/vidar/back.svg",
  27080. extra: 3131 / 2928,
  27081. bottom: 13.5 / 3141.5
  27082. }
  27083. },
  27084. feral: {
  27085. height: math.unit(2.5, "meters"),
  27086. weight: math.unit(2000, "kg"),
  27087. name: "Feral",
  27088. image: {
  27089. source: "./media/characters/vidar/feral.svg",
  27090. extra: 2790 / 1765,
  27091. bottom: 6 / 2796
  27092. }
  27093. },
  27094. },
  27095. [
  27096. {
  27097. name: "Normal",
  27098. height: math.unit(2.5, "meters"),
  27099. default: true
  27100. },
  27101. {
  27102. name: "Macro",
  27103. height: math.unit(100, "meters")
  27104. },
  27105. ]
  27106. ))
  27107. characterMakers.push(() => makeCharacter(
  27108. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27109. {
  27110. front: {
  27111. height: math.unit(5 + 9 / 12, "feet"),
  27112. weight: math.unit(120, "lb"),
  27113. name: "Front",
  27114. image: {
  27115. source: "./media/characters/ash/front.svg",
  27116. extra: 2189 / 1961,
  27117. bottom: 5.2 / 2194
  27118. }
  27119. },
  27120. },
  27121. [
  27122. {
  27123. name: "Normal",
  27124. height: math.unit(5 + 9 / 12, "feet"),
  27125. default: true
  27126. },
  27127. ]
  27128. ))
  27129. characterMakers.push(() => makeCharacter(
  27130. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27131. {
  27132. front: {
  27133. height: math.unit(9, "feet"),
  27134. weight: math.unit(10000, "lb"),
  27135. name: "Front",
  27136. image: {
  27137. source: "./media/characters/gygabite/front.svg",
  27138. bottom: 31.7 / 537.8,
  27139. extra: 505 / 370
  27140. }
  27141. },
  27142. },
  27143. [
  27144. {
  27145. name: "Normal",
  27146. height: math.unit(9, "feet"),
  27147. default: true
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27153. {
  27154. front: {
  27155. height: math.unit(12, "feet"),
  27156. weight: math.unit(35000, "lb"),
  27157. name: "Front",
  27158. image: {
  27159. source: "./media/characters/p0tat0/front.svg",
  27160. extra: 1065 / 921,
  27161. bottom: 55.7 / 1121.25
  27162. }
  27163. },
  27164. },
  27165. [
  27166. {
  27167. name: "Normal",
  27168. height: math.unit(12, "feet"),
  27169. default: true
  27170. },
  27171. ]
  27172. ))
  27173. characterMakers.push(() => makeCharacter(
  27174. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27175. {
  27176. side: {
  27177. height: math.unit(6.5, "feet"),
  27178. weight: math.unit(800, "lb"),
  27179. name: "Side",
  27180. image: {
  27181. source: "./media/characters/dusk/side.svg",
  27182. extra: 615 / 373,
  27183. bottom: 53 / 664
  27184. }
  27185. },
  27186. sitting: {
  27187. height: math.unit(7, "feet"),
  27188. weight: math.unit(800, "lb"),
  27189. name: "Sitting",
  27190. image: {
  27191. source: "./media/characters/dusk/sitting.svg",
  27192. extra: 753 / 425,
  27193. bottom: 33 / 774
  27194. }
  27195. },
  27196. head: {
  27197. height: math.unit(6.1, "feet"),
  27198. name: "Head",
  27199. image: {
  27200. source: "./media/characters/dusk/head.svg"
  27201. }
  27202. },
  27203. },
  27204. [
  27205. {
  27206. name: "Normal",
  27207. height: math.unit(7, "feet"),
  27208. default: true
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27214. {
  27215. front: {
  27216. height: math.unit(15, "feet"),
  27217. weight: math.unit(7000, "lb"),
  27218. name: "Front",
  27219. image: {
  27220. source: "./media/characters/jay-direwolf/front.svg",
  27221. extra: 1810 / 1732,
  27222. bottom: 66 / 1892
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(15, "feet"),
  27230. default: true
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(4 + 9 / 12, "feet"),
  27239. weight: math.unit(130, "lb"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/anchovie/front.svg",
  27243. extra: 382 / 350,
  27244. bottom: 25 / 409
  27245. }
  27246. },
  27247. back: {
  27248. height: math.unit(4 + 9 / 12, "feet"),
  27249. weight: math.unit(130, "lb"),
  27250. name: "Back",
  27251. image: {
  27252. source: "./media/characters/anchovie/back.svg",
  27253. extra: 385 / 352,
  27254. bottom: 16.6 / 402
  27255. }
  27256. },
  27257. frontDressed: {
  27258. height: math.unit(4 + 9 / 12, "feet"),
  27259. weight: math.unit(130, "lb"),
  27260. name: "Front (Dressed)",
  27261. image: {
  27262. source: "./media/characters/anchovie/front-dressed.svg",
  27263. extra: 382 / 350,
  27264. bottom: 25 / 409
  27265. }
  27266. },
  27267. backDressed: {
  27268. height: math.unit(4 + 9 / 12, "feet"),
  27269. weight: math.unit(130, "lb"),
  27270. name: "Back (Dressed)",
  27271. image: {
  27272. source: "./media/characters/anchovie/back-dressed.svg",
  27273. extra: 385 / 352,
  27274. bottom: 16.6 / 402
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Micro",
  27281. height: math.unit(6.4, "inches")
  27282. },
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(4 + 9 / 12, "feet"),
  27286. default: true
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27292. {
  27293. front: {
  27294. height: math.unit(2, "meters"),
  27295. weight: math.unit(180, "lb"),
  27296. name: "Front",
  27297. image: {
  27298. source: "./media/characters/acidrenamon/front.svg",
  27299. extra: 987 / 890,
  27300. bottom: 22.8 / 1009
  27301. }
  27302. },
  27303. back: {
  27304. height: math.unit(2, "meters"),
  27305. weight: math.unit(180, "lb"),
  27306. name: "Back",
  27307. image: {
  27308. source: "./media/characters/acidrenamon/back.svg",
  27309. extra: 983 / 891,
  27310. bottom: 8.4 / 992
  27311. }
  27312. },
  27313. head: {
  27314. height: math.unit(1.92, "feet"),
  27315. name: "Head",
  27316. image: {
  27317. source: "./media/characters/acidrenamon/head.svg"
  27318. }
  27319. },
  27320. rump: {
  27321. height: math.unit(1.72, "feet"),
  27322. name: "Rump",
  27323. image: {
  27324. source: "./media/characters/acidrenamon/rump.svg"
  27325. }
  27326. },
  27327. tail: {
  27328. height: math.unit(4.2, "feet"),
  27329. name: "Tail",
  27330. image: {
  27331. source: "./media/characters/acidrenamon/tail.svg"
  27332. }
  27333. },
  27334. },
  27335. [
  27336. {
  27337. name: "Normal",
  27338. height: math.unit(2, "meters"),
  27339. default: true
  27340. },
  27341. {
  27342. name: "Minimacro",
  27343. height: math.unit(7, "meters")
  27344. },
  27345. {
  27346. name: "Macro",
  27347. height: math.unit(200, "meters")
  27348. },
  27349. {
  27350. name: "Gigamacro",
  27351. height: math.unit(0.2, "earths")
  27352. },
  27353. ]
  27354. ))
  27355. characterMakers.push(() => makeCharacter(
  27356. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27357. {
  27358. front: {
  27359. height: math.unit(6, "feet"),
  27360. weight: math.unit(150, "lb"),
  27361. name: "Front",
  27362. image: {
  27363. source: "./media/characters/kenzie-lee/front.svg",
  27364. extra: 1525 / 1465,
  27365. bottom: 45 / 1570
  27366. }
  27367. },
  27368. side: {
  27369. height: math.unit(6, "feet"),
  27370. weight: math.unit(150, "lb"),
  27371. name: "Side",
  27372. image: {
  27373. source: "./media/characters/kenzie-lee/side.svg",
  27374. extra: 5505 / 5383,
  27375. bottom: 60 / 5573
  27376. }
  27377. },
  27378. paw: {
  27379. height: math.unit(0.57, "feet"),
  27380. name: "Paw",
  27381. image: {
  27382. source: "./media/characters/kenzie-lee/paw.svg"
  27383. }
  27384. },
  27385. },
  27386. [
  27387. {
  27388. name: "Normal",
  27389. height: math.unit(152, "feet"),
  27390. default: true
  27391. },
  27392. {
  27393. name: "Megamacro",
  27394. height: math.unit(7, "miles")
  27395. },
  27396. {
  27397. name: "Gigamacro",
  27398. height: math.unit(8000, "miles")
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27404. {
  27405. side: {
  27406. height: math.unit(6, "feet"),
  27407. weight: math.unit(150, "lb"),
  27408. name: "Side",
  27409. image: {
  27410. source: "./media/characters/withers/side.svg",
  27411. extra: 1830 / 1728,
  27412. bottom: 96 / 1927
  27413. }
  27414. },
  27415. front: {
  27416. height: math.unit(6, "feet"),
  27417. weight: math.unit(150, "lb"),
  27418. name: "Front",
  27419. image: {
  27420. source: "./media/characters/withers/front.svg",
  27421. extra: 1514 / 1438,
  27422. bottom: 118 / 1632
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Macro",
  27429. height: math.unit(168, "feet"),
  27430. default: true
  27431. },
  27432. {
  27433. name: "Megamacro",
  27434. height: math.unit(15, "miles")
  27435. }
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(6 + 7 / 12, "feet"),
  27443. weight: math.unit(250, "lb"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/nemoskii/front.svg",
  27447. extra: 2270 / 1734,
  27448. bottom: 86 / 2354
  27449. }
  27450. },
  27451. back: {
  27452. height: math.unit(6 + 7 / 12, "feet"),
  27453. weight: math.unit(250, "lb"),
  27454. name: "Back",
  27455. image: {
  27456. source: "./media/characters/nemoskii/back.svg",
  27457. extra: 1845 / 1788,
  27458. bottom: 10.5 / 1852
  27459. }
  27460. },
  27461. head: {
  27462. height: math.unit(1.31, "feet"),
  27463. name: "Head",
  27464. image: {
  27465. source: "./media/characters/nemoskii/head.svg"
  27466. }
  27467. },
  27468. },
  27469. [
  27470. {
  27471. name: "Micro",
  27472. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27473. },
  27474. {
  27475. name: "Normal",
  27476. height: math.unit(6 + 7 / 12, "feet"),
  27477. default: true
  27478. },
  27479. {
  27480. name: "Macro",
  27481. height: math.unit((6 + 7 / 12) * 150, "feet")
  27482. },
  27483. {
  27484. name: "Macro+",
  27485. height: math.unit((6 + 7 / 12) * 500, "feet")
  27486. },
  27487. {
  27488. name: "Megamacro",
  27489. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27490. },
  27491. ]
  27492. ))
  27493. characterMakers.push(() => makeCharacter(
  27494. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27495. {
  27496. front: {
  27497. height: math.unit(1, "mile"),
  27498. weight: math.unit(265261.9, "lb"),
  27499. name: "Front",
  27500. image: {
  27501. source: "./media/characters/shui/front.svg",
  27502. extra: 1633 / 1564,
  27503. bottom: 91.5 / 1726
  27504. }
  27505. },
  27506. },
  27507. [
  27508. {
  27509. name: "Macro",
  27510. height: math.unit(1, "mile"),
  27511. default: true
  27512. },
  27513. ]
  27514. ))
  27515. characterMakers.push(() => makeCharacter(
  27516. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27517. {
  27518. front: {
  27519. height: math.unit(12 + 6 / 12, "feet"),
  27520. weight: math.unit(1342, "lb"),
  27521. name: "Front",
  27522. image: {
  27523. source: "./media/characters/arokh-takakura/front.svg",
  27524. extra: 1089 / 1043,
  27525. bottom: 77.4 / 1176.7
  27526. }
  27527. },
  27528. back: {
  27529. height: math.unit(12 + 6 / 12, "feet"),
  27530. weight: math.unit(1342, "lb"),
  27531. name: "Back",
  27532. image: {
  27533. source: "./media/characters/arokh-takakura/back.svg",
  27534. extra: 1046 / 1019,
  27535. bottom: 102 / 1150
  27536. }
  27537. },
  27538. },
  27539. [
  27540. {
  27541. name: "Big",
  27542. height: math.unit(12 + 6 / 12, "feet"),
  27543. default: true
  27544. },
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27549. {
  27550. front: {
  27551. height: math.unit(5 + 6 / 12, "feet"),
  27552. weight: math.unit(150, "lb"),
  27553. name: "Front",
  27554. image: {
  27555. source: "./media/characters/theo/front.svg",
  27556. extra: 1184 / 1131,
  27557. bottom: 7.4 / 1191
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Micro",
  27564. height: math.unit(5, "inches")
  27565. },
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(5 + 6 / 12, "feet"),
  27569. default: true
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27575. {
  27576. front: {
  27577. height: math.unit(5 + 9 / 12, "feet"),
  27578. weight: math.unit(130, "lb"),
  27579. name: "Front",
  27580. image: {
  27581. source: "./media/characters/cecelia-swift/front.svg",
  27582. extra: 502 / 484,
  27583. bottom: 23 / 523
  27584. }
  27585. },
  27586. back: {
  27587. height: math.unit(5 + 9 / 12, "feet"),
  27588. weight: math.unit(130, "lb"),
  27589. name: "Back",
  27590. image: {
  27591. source: "./media/characters/cecelia-swift/back.svg",
  27592. extra: 499 / 485,
  27593. bottom: 12 / 511
  27594. }
  27595. },
  27596. head: {
  27597. height: math.unit(0.90, "feet"),
  27598. name: "Head",
  27599. image: {
  27600. source: "./media/characters/cecelia-swift/head.svg"
  27601. }
  27602. },
  27603. rump: {
  27604. height: math.unit(1.75, "feet"),
  27605. name: "Rump",
  27606. image: {
  27607. source: "./media/characters/cecelia-swift/rump.svg"
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Normal",
  27614. height: math.unit(5 + 9 / 12, "feet"),
  27615. default: true
  27616. },
  27617. {
  27618. name: "Big",
  27619. height: math.unit(50, "feet")
  27620. },
  27621. {
  27622. name: "Macro",
  27623. height: math.unit(100, "feet")
  27624. },
  27625. {
  27626. name: "Macro+",
  27627. height: math.unit(500, "feet")
  27628. },
  27629. {
  27630. name: "Macro++",
  27631. height: math.unit(1000, "feet")
  27632. },
  27633. ]
  27634. ))
  27635. characterMakers.push(() => makeCharacter(
  27636. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27637. {
  27638. front: {
  27639. height: math.unit(6, "feet"),
  27640. weight: math.unit(150, "lb"),
  27641. name: "Front",
  27642. image: {
  27643. source: "./media/characters/kaunan/front.svg",
  27644. extra: 2890 / 2523,
  27645. bottom: 49 / 2939
  27646. }
  27647. },
  27648. },
  27649. [
  27650. {
  27651. name: "Macro",
  27652. height: math.unit(150, "feet"),
  27653. default: true
  27654. },
  27655. ]
  27656. ))
  27657. characterMakers.push(() => makeCharacter(
  27658. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27659. {
  27660. front: {
  27661. height: math.unit(175, "cm"),
  27662. weight: math.unit(60, "kg"),
  27663. name: "Front",
  27664. image: {
  27665. source: "./media/characters/fei/front.svg",
  27666. extra: 1873/1723,
  27667. bottom: 53/1926
  27668. }
  27669. },
  27670. },
  27671. [
  27672. {
  27673. name: "Mortal",
  27674. height: math.unit(175, "cm")
  27675. },
  27676. {
  27677. name: "Normal",
  27678. height: math.unit(3500, "m"),
  27679. default: true
  27680. },
  27681. {
  27682. name: "Stroll",
  27683. height: math.unit(17.5, "km")
  27684. },
  27685. {
  27686. name: "Showoff",
  27687. height: math.unit(175, "km")
  27688. },
  27689. ]
  27690. ))
  27691. characterMakers.push(() => makeCharacter(
  27692. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27693. {
  27694. front: {
  27695. height: math.unit(7, "feet"),
  27696. weight: math.unit(1000, "kg"),
  27697. name: "Front",
  27698. image: {
  27699. source: "./media/characters/edrax/front.svg",
  27700. extra: 2838 / 2550,
  27701. bottom: 130 / 2968
  27702. }
  27703. },
  27704. },
  27705. [
  27706. {
  27707. name: "Small",
  27708. height: math.unit(7, "feet")
  27709. },
  27710. {
  27711. name: "Normal",
  27712. height: math.unit(1500, "meters")
  27713. },
  27714. {
  27715. name: "Mega",
  27716. height: math.unit(12000000, "km"),
  27717. default: true
  27718. },
  27719. {
  27720. name: "Megamacro",
  27721. height: math.unit(10600000, "lightyears")
  27722. },
  27723. {
  27724. name: "Hypermacro",
  27725. height: math.unit(256, "yottameters")
  27726. },
  27727. ]
  27728. ))
  27729. characterMakers.push(() => makeCharacter(
  27730. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27731. {
  27732. front: {
  27733. height: math.unit(10, "feet"),
  27734. weight: math.unit(750, "lb"),
  27735. name: "Front",
  27736. image: {
  27737. source: "./media/characters/clove/front.svg",
  27738. extra: 2031 / 1860,
  27739. bottom: 47.8 / 2080
  27740. }
  27741. },
  27742. back: {
  27743. height: math.unit(10, "feet"),
  27744. weight: math.unit(750, "lb"),
  27745. name: "Back",
  27746. image: {
  27747. source: "./media/characters/clove/back.svg",
  27748. extra: 2025 / 1859,
  27749. bottom: 46 / 2071
  27750. }
  27751. },
  27752. },
  27753. [
  27754. {
  27755. name: "Normal",
  27756. height: math.unit(10, "feet"),
  27757. default: true
  27758. },
  27759. ]
  27760. ))
  27761. characterMakers.push(() => makeCharacter(
  27762. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27763. {
  27764. front: {
  27765. height: math.unit(4, "feet"),
  27766. weight: math.unit(50, "lb"),
  27767. name: "Front",
  27768. image: {
  27769. source: "./media/characters/alex-rabbit/front.svg",
  27770. extra: 507 / 458,
  27771. bottom: 18.5 / 527
  27772. }
  27773. },
  27774. back: {
  27775. height: math.unit(4, "feet"),
  27776. weight: math.unit(50, "lb"),
  27777. name: "Back",
  27778. image: {
  27779. source: "./media/characters/alex-rabbit/back.svg",
  27780. extra: 502 / 460,
  27781. bottom: 18.9 / 521
  27782. }
  27783. },
  27784. },
  27785. [
  27786. {
  27787. name: "Normal",
  27788. height: math.unit(4, "feet"),
  27789. default: true
  27790. },
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27795. {
  27796. front: {
  27797. height: math.unit(1 + 3 / 12, "feet"),
  27798. weight: math.unit(80, "lb"),
  27799. name: "Front",
  27800. image: {
  27801. source: "./media/characters/zander-rose/front.svg",
  27802. extra: 916 / 797,
  27803. bottom: 17 / 933
  27804. }
  27805. },
  27806. back: {
  27807. height: math.unit(1 + 3 / 12, "feet"),
  27808. weight: math.unit(80, "lb"),
  27809. name: "Back",
  27810. image: {
  27811. source: "./media/characters/zander-rose/back.svg",
  27812. extra: 903 / 779,
  27813. bottom: 31 / 934
  27814. }
  27815. },
  27816. },
  27817. [
  27818. {
  27819. name: "Normal",
  27820. height: math.unit(1 + 3 / 12, "feet"),
  27821. default: true
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27827. {
  27828. anthro: {
  27829. height: math.unit(6, "feet"),
  27830. weight: math.unit(150, "lb"),
  27831. name: "Anthro",
  27832. image: {
  27833. source: "./media/characters/razz/anthro.svg",
  27834. extra: 1437 / 1343,
  27835. bottom: 48 / 1485
  27836. }
  27837. },
  27838. feral: {
  27839. height: math.unit(6, "feet"),
  27840. weight: math.unit(150, "lb"),
  27841. name: "Feral",
  27842. image: {
  27843. source: "./media/characters/razz/feral.svg",
  27844. extra: 2569 / 1385,
  27845. bottom: 95 / 2664
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Normal",
  27852. height: math.unit(6, "feet"),
  27853. default: true
  27854. },
  27855. ]
  27856. ))
  27857. characterMakers.push(() => makeCharacter(
  27858. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27859. {
  27860. front: {
  27861. height: math.unit(9 + 4 / 12, "feet"),
  27862. weight: math.unit(500, "lb"),
  27863. name: "Front",
  27864. image: {
  27865. source: "./media/characters/morrigan/front.svg",
  27866. extra: 2707 / 2579,
  27867. bottom: 156 / 2863
  27868. }
  27869. },
  27870. },
  27871. [
  27872. {
  27873. name: "Normal",
  27874. height: math.unit(9 + 4 / 12, "feet"),
  27875. default: true
  27876. },
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(5, "stories"),
  27884. weight: math.unit(4000, "lb"),
  27885. name: "Front",
  27886. image: {
  27887. source: "./media/characters/jenene/front.svg",
  27888. extra: 1780 / 1710,
  27889. bottom: 57 / 1837
  27890. }
  27891. },
  27892. },
  27893. [
  27894. {
  27895. name: "Normal",
  27896. height: math.unit(5, "stories"),
  27897. default: true
  27898. },
  27899. ]
  27900. ))
  27901. characterMakers.push(() => makeCharacter(
  27902. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27903. {
  27904. taurSfw: {
  27905. height: math.unit(10, "meters"),
  27906. weight: math.unit(17500, "kg"),
  27907. name: "Taur",
  27908. image: {
  27909. source: "./media/characters/faey/taur-sfw.svg",
  27910. extra: 1200 / 968,
  27911. bottom: 41 / 1241
  27912. }
  27913. },
  27914. chestmaw: {
  27915. height: math.unit(2.01, "meters"),
  27916. name: "Chestmaw",
  27917. image: {
  27918. source: "./media/characters/faey/chestmaw.svg"
  27919. }
  27920. },
  27921. foot: {
  27922. height: math.unit(2.43, "meters"),
  27923. name: "Foot",
  27924. image: {
  27925. source: "./media/characters/faey/foot.svg"
  27926. }
  27927. },
  27928. jaws: {
  27929. height: math.unit(1.66, "meters"),
  27930. name: "Jaws",
  27931. image: {
  27932. source: "./media/characters/faey/jaws.svg"
  27933. }
  27934. },
  27935. tongues: {
  27936. height: math.unit(2.01, "meters"),
  27937. name: "Tongues",
  27938. image: {
  27939. source: "./media/characters/faey/tongues.svg"
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Small",
  27946. height: math.unit(10, "meters"),
  27947. default: true
  27948. },
  27949. {
  27950. name: "Big",
  27951. height: math.unit(500000, "km")
  27952. },
  27953. ]
  27954. ))
  27955. characterMakers.push(() => makeCharacter(
  27956. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27957. {
  27958. front: {
  27959. height: math.unit(7, "feet"),
  27960. weight: math.unit(275, "lb"),
  27961. name: "Front",
  27962. image: {
  27963. source: "./media/characters/roku/front.svg",
  27964. extra: 903 / 878,
  27965. bottom: 37 / 940
  27966. }
  27967. },
  27968. },
  27969. [
  27970. {
  27971. name: "Normal",
  27972. height: math.unit(7, "feet"),
  27973. default: true
  27974. },
  27975. {
  27976. name: "Macro",
  27977. height: math.unit(500, "feet")
  27978. },
  27979. {
  27980. name: "Megamacro",
  27981. height: math.unit(200, "miles")
  27982. },
  27983. ]
  27984. ))
  27985. characterMakers.push(() => makeCharacter(
  27986. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27987. {
  27988. front: {
  27989. height: math.unit(6 + 2 / 12, "feet"),
  27990. weight: math.unit(150, "lb"),
  27991. name: "Front",
  27992. image: {
  27993. source: "./media/characters/lira/front.svg",
  27994. extra: 1727 / 1605,
  27995. bottom: 26 / 1753
  27996. }
  27997. },
  27998. back: {
  27999. height: math.unit(6 + 2 / 12, "feet"),
  28000. weight: math.unit(150, "lb"),
  28001. name: "Back",
  28002. image: {
  28003. source: "./media/characters/lira/back.svg",
  28004. extra: 1713/1621,
  28005. bottom: 20/1733
  28006. }
  28007. },
  28008. hand: {
  28009. height: math.unit(0.75, "feet"),
  28010. name: "Hand",
  28011. image: {
  28012. source: "./media/characters/lira/hand.svg"
  28013. }
  28014. },
  28015. maw: {
  28016. height: math.unit(0.65, "feet"),
  28017. name: "Maw",
  28018. image: {
  28019. source: "./media/characters/lira/maw.svg"
  28020. }
  28021. },
  28022. pawDigi: {
  28023. height: math.unit(1.6, "feet"),
  28024. name: "Paw Digi",
  28025. image: {
  28026. source: "./media/characters/lira/paw-digi.svg"
  28027. }
  28028. },
  28029. pawPlanti: {
  28030. height: math.unit(1.4, "feet"),
  28031. name: "Paw Planti",
  28032. image: {
  28033. source: "./media/characters/lira/paw-planti.svg"
  28034. }
  28035. },
  28036. },
  28037. [
  28038. {
  28039. name: "Normal",
  28040. height: math.unit(6 + 2 / 12, "feet"),
  28041. default: true
  28042. },
  28043. {
  28044. name: "Macro",
  28045. height: math.unit(100, "feet")
  28046. },
  28047. {
  28048. name: "Macro²",
  28049. height: math.unit(1600, "feet")
  28050. },
  28051. {
  28052. name: "Planetary",
  28053. height: math.unit(20, "earths")
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(6, "feet"),
  28062. weight: math.unit(150, "lb"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/hadjet/front.svg",
  28066. extra: 1480 / 1346,
  28067. bottom: 26 / 1506
  28068. }
  28069. },
  28070. frontNsfw: {
  28071. height: math.unit(6, "feet"),
  28072. weight: math.unit(150, "lb"),
  28073. name: "Front (NSFW)",
  28074. image: {
  28075. source: "./media/characters/hadjet/front-nsfw.svg",
  28076. extra: 1440 / 1358,
  28077. bottom: 52 / 1492
  28078. }
  28079. },
  28080. },
  28081. [
  28082. {
  28083. name: "Macro",
  28084. height: math.unit(10, "stories"),
  28085. default: true
  28086. },
  28087. {
  28088. name: "Megamacro",
  28089. height: math.unit(1.5, "miles")
  28090. },
  28091. {
  28092. name: "Megamacro+",
  28093. height: math.unit(5, "miles")
  28094. },
  28095. ]
  28096. ))
  28097. characterMakers.push(() => makeCharacter(
  28098. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28099. {
  28100. side: {
  28101. height: math.unit(106, "feet"),
  28102. weight: math.unit(500, "tonnes"),
  28103. name: "Side",
  28104. image: {
  28105. source: "./media/characters/kodran/side.svg",
  28106. extra: 553 / 480,
  28107. bottom: 33 / 586
  28108. }
  28109. },
  28110. front: {
  28111. height: math.unit(132, "feet"),
  28112. weight: math.unit(500, "tonnes"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/kodran/front.svg",
  28116. extra: 667 / 643,
  28117. bottom: 42 / 709
  28118. }
  28119. },
  28120. flying: {
  28121. height: math.unit(350, "feet"),
  28122. weight: math.unit(500, "tonnes"),
  28123. name: "Flying",
  28124. image: {
  28125. source: "./media/characters/kodran/flying.svg"
  28126. }
  28127. },
  28128. foot: {
  28129. height: math.unit(33, "feet"),
  28130. name: "Foot",
  28131. image: {
  28132. source: "./media/characters/kodran/foot.svg"
  28133. }
  28134. },
  28135. footFront: {
  28136. height: math.unit(19, "feet"),
  28137. name: "Foot (Front)",
  28138. image: {
  28139. source: "./media/characters/kodran/foot-front.svg",
  28140. extra: 261 / 261,
  28141. bottom: 91 / 352
  28142. }
  28143. },
  28144. headFront: {
  28145. height: math.unit(53, "feet"),
  28146. name: "Head (Front)",
  28147. image: {
  28148. source: "./media/characters/kodran/head-front.svg"
  28149. }
  28150. },
  28151. headSide: {
  28152. height: math.unit(65, "feet"),
  28153. name: "Head (Side)",
  28154. image: {
  28155. source: "./media/characters/kodran/head-side.svg"
  28156. }
  28157. },
  28158. throat: {
  28159. height: math.unit(79, "feet"),
  28160. name: "Throat",
  28161. image: {
  28162. source: "./media/characters/kodran/throat.svg"
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Large",
  28169. height: math.unit(106, "feet"),
  28170. default: true
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28176. {
  28177. side: {
  28178. height: math.unit(11, "feet"),
  28179. weight: math.unit(150, "lb"),
  28180. name: "Side",
  28181. image: {
  28182. source: "./media/characters/pyxaron/side.svg",
  28183. extra: 305 / 195,
  28184. bottom: 17 / 322
  28185. }
  28186. },
  28187. },
  28188. [
  28189. {
  28190. name: "Normal",
  28191. height: math.unit(11, "feet"),
  28192. default: true
  28193. },
  28194. ]
  28195. ))
  28196. characterMakers.push(() => makeCharacter(
  28197. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28198. {
  28199. front: {
  28200. height: math.unit(6, "feet"),
  28201. weight: math.unit(150, "lb"),
  28202. name: "Front",
  28203. image: {
  28204. source: "./media/characters/meep/front.svg",
  28205. extra: 88 / 80,
  28206. bottom: 6 / 94
  28207. }
  28208. },
  28209. },
  28210. [
  28211. {
  28212. name: "Fun Sized",
  28213. height: math.unit(2, "inches"),
  28214. default: true
  28215. },
  28216. {
  28217. name: "Friend Sized",
  28218. height: math.unit(8, "inches")
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(15, "feet"),
  28227. weight: math.unit(2500, "lb"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/holly-rabbit/front.svg",
  28231. extra: 1433 / 1233,
  28232. bottom: 125 / 1558
  28233. }
  28234. },
  28235. dick: {
  28236. height: math.unit(4.6, "feet"),
  28237. name: "Dick",
  28238. image: {
  28239. source: "./media/characters/holly-rabbit/dick.svg"
  28240. }
  28241. },
  28242. },
  28243. [
  28244. {
  28245. name: "Normal",
  28246. height: math.unit(15, "feet"),
  28247. default: true
  28248. },
  28249. {
  28250. name: "Macro",
  28251. height: math.unit(250, "feet")
  28252. },
  28253. {
  28254. name: "Macro+",
  28255. height: math.unit(2500, "feet")
  28256. },
  28257. ]
  28258. ))
  28259. characterMakers.push(() => makeCharacter(
  28260. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28261. {
  28262. front: {
  28263. height: math.unit(3.02, "meters"),
  28264. weight: math.unit(500, "kg"),
  28265. name: "Front",
  28266. image: {
  28267. source: "./media/characters/drena/front.svg",
  28268. extra: 282 / 243,
  28269. bottom: 8 / 290
  28270. }
  28271. },
  28272. side: {
  28273. height: math.unit(3.02, "meters"),
  28274. weight: math.unit(500, "kg"),
  28275. name: "Side",
  28276. image: {
  28277. source: "./media/characters/drena/side.svg",
  28278. extra: 280 / 245,
  28279. bottom: 10 / 290
  28280. }
  28281. },
  28282. back: {
  28283. height: math.unit(3.02, "meters"),
  28284. weight: math.unit(500, "kg"),
  28285. name: "Back",
  28286. image: {
  28287. source: "./media/characters/drena/back.svg",
  28288. extra: 278 / 243,
  28289. bottom: 2 / 280
  28290. }
  28291. },
  28292. foot: {
  28293. height: math.unit(0.75, "meters"),
  28294. name: "Foot",
  28295. image: {
  28296. source: "./media/characters/drena/foot.svg"
  28297. }
  28298. },
  28299. maw: {
  28300. height: math.unit(0.82, "meters"),
  28301. name: "Maw",
  28302. image: {
  28303. source: "./media/characters/drena/maw.svg"
  28304. }
  28305. },
  28306. rump: {
  28307. height: math.unit(0.93, "meters"),
  28308. name: "Rump",
  28309. image: {
  28310. source: "./media/characters/drena/rump.svg"
  28311. }
  28312. },
  28313. },
  28314. [
  28315. {
  28316. name: "Normal",
  28317. height: math.unit(3.02, "meters"),
  28318. default: true
  28319. },
  28320. ]
  28321. ))
  28322. characterMakers.push(() => makeCharacter(
  28323. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28324. {
  28325. front: {
  28326. height: math.unit(6 + 4 / 12, "feet"),
  28327. weight: math.unit(250, "lb"),
  28328. name: "Front",
  28329. image: {
  28330. source: "./media/characters/remmyzilla/front.svg",
  28331. extra: 4033 / 3588,
  28332. bottom: 123 / 4156
  28333. }
  28334. },
  28335. back: {
  28336. height: math.unit(6 + 4 / 12, "feet"),
  28337. weight: math.unit(250, "lb"),
  28338. name: "Back",
  28339. image: {
  28340. source: "./media/characters/remmyzilla/back.svg",
  28341. extra: 2687 / 2555,
  28342. bottom: 48 / 2735
  28343. }
  28344. },
  28345. paw: {
  28346. height: math.unit(1.73, "feet"),
  28347. name: "Paw",
  28348. image: {
  28349. source: "./media/characters/remmyzilla/paw.svg"
  28350. }
  28351. },
  28352. maw: {
  28353. height: math.unit(1.73, "feet"),
  28354. name: "Maw",
  28355. image: {
  28356. source: "./media/characters/remmyzilla/maw.svg"
  28357. }
  28358. },
  28359. },
  28360. [
  28361. {
  28362. name: "Normal",
  28363. height: math.unit(6 + 4 / 12, "feet")
  28364. },
  28365. {
  28366. name: "Minimacro",
  28367. height: math.unit(12 + 8 / 12, "feet")
  28368. },
  28369. {
  28370. name: "Normal",
  28371. height: math.unit(640, "feet"),
  28372. default: true
  28373. },
  28374. {
  28375. name: "Megamacro",
  28376. height: math.unit(6400, "feet")
  28377. },
  28378. {
  28379. name: "Gigamacro",
  28380. height: math.unit(64000, "miles")
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(2.5, "meters"),
  28389. weight: math.unit(300, "lb"),
  28390. name: "Front",
  28391. image: {
  28392. source: "./media/characters/lawrence/front.svg",
  28393. extra: 357 / 335,
  28394. bottom: 30 / 387
  28395. }
  28396. },
  28397. back: {
  28398. height: math.unit(2.5, "meters"),
  28399. weight: math.unit(300, "lb"),
  28400. name: "Back",
  28401. image: {
  28402. source: "./media/characters/lawrence/back.svg",
  28403. extra: 357 / 338,
  28404. bottom: 16 / 373
  28405. }
  28406. },
  28407. head: {
  28408. height: math.unit(0.9, "meter"),
  28409. name: "Head",
  28410. image: {
  28411. source: "./media/characters/lawrence/head.svg"
  28412. }
  28413. },
  28414. maw: {
  28415. height: math.unit(0.7, "meter"),
  28416. name: "Maw",
  28417. image: {
  28418. source: "./media/characters/lawrence/maw.svg"
  28419. }
  28420. },
  28421. footBottom: {
  28422. height: math.unit(0.5, "meter"),
  28423. name: "Foot (Bottom)",
  28424. image: {
  28425. source: "./media/characters/lawrence/foot-bottom.svg"
  28426. }
  28427. },
  28428. footTop: {
  28429. height: math.unit(0.5, "meter"),
  28430. name: "Foot (Top)",
  28431. image: {
  28432. source: "./media/characters/lawrence/foot-top.svg"
  28433. }
  28434. },
  28435. },
  28436. [
  28437. {
  28438. name: "Normal",
  28439. height: math.unit(2.5, "meters"),
  28440. default: true
  28441. },
  28442. {
  28443. name: "Macro",
  28444. height: math.unit(95, "meters")
  28445. },
  28446. {
  28447. name: "Megamacro",
  28448. height: math.unit(150, "km")
  28449. },
  28450. ]
  28451. ))
  28452. characterMakers.push(() => makeCharacter(
  28453. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28454. {
  28455. front: {
  28456. height: math.unit(4.2, "meters"),
  28457. name: "Front",
  28458. image: {
  28459. source: "./media/characters/sydney/front.svg",
  28460. extra: 1323 / 1277,
  28461. bottom: 111 / 1434
  28462. }
  28463. },
  28464. },
  28465. [
  28466. {
  28467. name: "Normal",
  28468. height: math.unit(4.2, "meters"),
  28469. default: true
  28470. },
  28471. ]
  28472. ))
  28473. characterMakers.push(() => makeCharacter(
  28474. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28475. {
  28476. back: {
  28477. height: math.unit(201, "feet"),
  28478. name: "Back",
  28479. image: {
  28480. source: "./media/characters/jessica/back.svg",
  28481. extra: 273 / 259,
  28482. bottom: 7 / 280
  28483. }
  28484. },
  28485. },
  28486. [
  28487. {
  28488. name: "Normal",
  28489. height: math.unit(201, "feet"),
  28490. default: true
  28491. },
  28492. {
  28493. name: "Megamacro",
  28494. height: math.unit(8, "miles")
  28495. },
  28496. ]
  28497. ))
  28498. characterMakers.push(() => makeCharacter(
  28499. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28500. {
  28501. side: {
  28502. height: math.unit(320, "cm"),
  28503. name: "Side",
  28504. image: {
  28505. source: "./media/characters/victoria/side.svg",
  28506. extra: 778 / 346,
  28507. bottom: 56 / 834
  28508. }
  28509. },
  28510. maw: {
  28511. height: math.unit(5.9, "feet"),
  28512. name: "Maw",
  28513. image: {
  28514. source: "./media/characters/victoria/maw.svg"
  28515. }
  28516. },
  28517. },
  28518. [
  28519. {
  28520. name: "Normal",
  28521. height: math.unit(320, "cm"),
  28522. default: true
  28523. },
  28524. ]
  28525. ))
  28526. characterMakers.push(() => makeCharacter(
  28527. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28528. {
  28529. front: {
  28530. height: math.unit(5 + 6 / 12, "feet"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/cat/front.svg",
  28534. extra: 1449/1295,
  28535. bottom: 34/1483
  28536. }
  28537. },
  28538. back: {
  28539. height: math.unit(5 + 6 / 12, "feet"),
  28540. name: "Back",
  28541. image: {
  28542. source: "./media/characters/cat/back.svg",
  28543. extra: 1466/1301,
  28544. bottom: 19/1485
  28545. }
  28546. },
  28547. taur: {
  28548. height: math.unit(7, "feet"),
  28549. name: "Taur",
  28550. image: {
  28551. source: "./media/characters/cat/taur.svg",
  28552. extra: 1389/1233,
  28553. bottom: 83/1472
  28554. }
  28555. },
  28556. lucarioFront: {
  28557. height: math.unit(4, "feet"),
  28558. name: "Lucario (Front)",
  28559. image: {
  28560. source: "./media/characters/cat/lucario-front.svg",
  28561. extra: 1149/1019,
  28562. bottom: 84/1233
  28563. }
  28564. },
  28565. lucarioBack: {
  28566. height: math.unit(4, "feet"),
  28567. name: "Lucario (Back)",
  28568. image: {
  28569. source: "./media/characters/cat/lucario-back.svg",
  28570. extra: 1190/1059,
  28571. bottom: 33/1223
  28572. }
  28573. },
  28574. megaLucario: {
  28575. height: math.unit(4, "feet"),
  28576. name: "Mega Lucario",
  28577. image: {
  28578. source: "./media/characters/cat/mega-lucario.svg",
  28579. extra: 1515 / 1319,
  28580. bottom: 63 / 1578
  28581. }
  28582. },
  28583. nickit: {
  28584. height: math.unit(2, "feet"),
  28585. name: "Nickit",
  28586. image: {
  28587. source: "./media/characters/cat/nickit.svg",
  28588. extra: 1980 / 1585,
  28589. bottom: 102 / 2082
  28590. }
  28591. },
  28592. lopunnyFront: {
  28593. height: math.unit(5, "feet"),
  28594. name: "Lopunny (Front)",
  28595. image: {
  28596. source: "./media/characters/cat/lopunny-front.svg",
  28597. extra: 1782 / 1469,
  28598. bottom: 38 / 1820
  28599. }
  28600. },
  28601. lopunnyBack: {
  28602. height: math.unit(5, "feet"),
  28603. name: "Lopunny (Back)",
  28604. image: {
  28605. source: "./media/characters/cat/lopunny-back.svg",
  28606. extra: 1660 / 1490,
  28607. bottom: 25 / 1685
  28608. }
  28609. },
  28610. },
  28611. [
  28612. {
  28613. name: "Really small",
  28614. height: math.unit(1, "nm")
  28615. },
  28616. {
  28617. name: "Micro",
  28618. height: math.unit(5, "inches")
  28619. },
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(5 + 6 / 12, "feet"),
  28623. default: true
  28624. },
  28625. {
  28626. name: "Macro",
  28627. height: math.unit(50, "feet")
  28628. },
  28629. {
  28630. name: "Macro+",
  28631. height: math.unit(150, "feet")
  28632. },
  28633. {
  28634. name: "Megamacro",
  28635. height: math.unit(100, "miles")
  28636. },
  28637. ]
  28638. ))
  28639. characterMakers.push(() => makeCharacter(
  28640. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28641. {
  28642. front: {
  28643. height: math.unit(63.4, "meters"),
  28644. weight: math.unit(3.28349e+6, "kilograms"),
  28645. name: "Front",
  28646. image: {
  28647. source: "./media/characters/kirina-violet/front.svg",
  28648. extra: 2812 / 2725,
  28649. bottom: 0 / 2812
  28650. }
  28651. },
  28652. back: {
  28653. height: math.unit(63.4, "meters"),
  28654. weight: math.unit(3.28349e+6, "kilograms"),
  28655. name: "Back",
  28656. image: {
  28657. source: "./media/characters/kirina-violet/back.svg",
  28658. extra: 2812 / 2725,
  28659. bottom: 0 / 2812
  28660. }
  28661. },
  28662. mouth: {
  28663. height: math.unit(4.35, "meters"),
  28664. name: "Mouth",
  28665. image: {
  28666. source: "./media/characters/kirina-violet/mouth.svg"
  28667. }
  28668. },
  28669. paw: {
  28670. height: math.unit(5.6, "meters"),
  28671. name: "Paw",
  28672. image: {
  28673. source: "./media/characters/kirina-violet/paw.svg"
  28674. }
  28675. },
  28676. tail: {
  28677. height: math.unit(18, "meters"),
  28678. name: "Tail",
  28679. image: {
  28680. source: "./media/characters/kirina-violet/tail.svg"
  28681. }
  28682. },
  28683. },
  28684. [
  28685. {
  28686. name: "Macro",
  28687. height: math.unit(63.4, "meters"),
  28688. default: true
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28694. {
  28695. front: {
  28696. height: math.unit(75, "feet"),
  28697. name: "Front",
  28698. image: {
  28699. source: "./media/characters/cat-gigachu/front.svg",
  28700. extra: 1239/1027,
  28701. bottom: 32/1271
  28702. }
  28703. },
  28704. back: {
  28705. height: math.unit(75, "feet"),
  28706. name: "Back",
  28707. image: {
  28708. source: "./media/characters/cat-gigachu/back.svg",
  28709. extra: 1229/1030,
  28710. bottom: 9/1238
  28711. }
  28712. },
  28713. },
  28714. [
  28715. {
  28716. name: "Dynamax",
  28717. height: math.unit(75, "feet"),
  28718. default: true
  28719. },
  28720. ]
  28721. ))
  28722. characterMakers.push(() => makeCharacter(
  28723. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28724. {
  28725. front: {
  28726. height: math.unit(6, "feet"),
  28727. weight: math.unit(150, "lb"),
  28728. name: "Front",
  28729. image: {
  28730. source: "./media/characters/sfaiyan/front.svg",
  28731. extra: 999 / 978,
  28732. bottom: 5 / 1004
  28733. }
  28734. },
  28735. },
  28736. [
  28737. {
  28738. name: "Normal",
  28739. height: math.unit(1.82, "meters")
  28740. },
  28741. {
  28742. name: "Giant",
  28743. height: math.unit(2.27, "km"),
  28744. default: true
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28750. {
  28751. front: {
  28752. height: math.unit(179, "cm"),
  28753. weight: math.unit(100, "kg"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/raunehkeli/front.svg",
  28757. extra: 1934 / 1926,
  28758. bottom: 0 / 1934
  28759. }
  28760. },
  28761. },
  28762. [
  28763. {
  28764. name: "Normal",
  28765. height: math.unit(179, "cm")
  28766. },
  28767. {
  28768. name: "Maximum",
  28769. height: math.unit(575, "meters"),
  28770. default: true
  28771. },
  28772. ]
  28773. ))
  28774. characterMakers.push(() => makeCharacter(
  28775. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28776. {
  28777. front: {
  28778. height: math.unit(6, "feet"),
  28779. weight: math.unit(150, "lb"),
  28780. name: "Front",
  28781. image: {
  28782. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28783. extra: 2625 / 2518,
  28784. bottom: 60 / 2685
  28785. }
  28786. },
  28787. },
  28788. [
  28789. {
  28790. name: "Normal",
  28791. height: math.unit(6 + 2 / 12, "feet")
  28792. },
  28793. {
  28794. name: "Macro",
  28795. height: math.unit(1180, "feet"),
  28796. default: true
  28797. },
  28798. ]
  28799. ))
  28800. characterMakers.push(() => makeCharacter(
  28801. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28802. {
  28803. front: {
  28804. height: math.unit(5 + 6 / 12, "feet"),
  28805. weight: math.unit(108, "lb"),
  28806. name: "Front",
  28807. image: {
  28808. source: "./media/characters/lilith-zott/front.svg",
  28809. extra: 2510 / 2238,
  28810. bottom: 100 / 2610
  28811. }
  28812. },
  28813. frontDressed: {
  28814. height: math.unit(5 + 6 / 12, "feet"),
  28815. weight: math.unit(108, "lb"),
  28816. name: "Front (Dressed)",
  28817. image: {
  28818. source: "./media/characters/lilith-zott/front-dressed.svg",
  28819. extra: 2510 / 2238,
  28820. bottom: 100 / 2610
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Normal",
  28827. height: math.unit(5 + 6 / 12, "feet")
  28828. },
  28829. {
  28830. name: "Macro",
  28831. height: math.unit(1030, "feet"),
  28832. default: true
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28838. {
  28839. front: {
  28840. height: math.unit(6, "feet"),
  28841. weight: math.unit(150, "lb"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28845. extra: 2567 / 2435,
  28846. bottom: 39 / 2606
  28847. }
  28848. },
  28849. frontSuper: {
  28850. height: math.unit(6, "feet"),
  28851. name: "Front (Super)",
  28852. image: {
  28853. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28854. extra: 2567 / 2435,
  28855. bottom: 39 / 2606
  28856. }
  28857. },
  28858. },
  28859. [
  28860. {
  28861. name: "Normal",
  28862. height: math.unit(5 + 10 / 12, "feet")
  28863. },
  28864. {
  28865. name: "Macro",
  28866. height: math.unit(1100, "feet"),
  28867. default: true
  28868. },
  28869. ]
  28870. ))
  28871. characterMakers.push(() => makeCharacter(
  28872. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28873. {
  28874. front: {
  28875. height: math.unit(100, "miles"),
  28876. name: "Front",
  28877. image: {
  28878. source: "./media/characters/sona/front.svg",
  28879. extra: 2433 / 2201,
  28880. bottom: 53 / 2486
  28881. }
  28882. },
  28883. foot: {
  28884. height: math.unit(16.1, "miles"),
  28885. name: "Foot",
  28886. image: {
  28887. source: "./media/characters/sona/foot.svg"
  28888. }
  28889. },
  28890. },
  28891. [
  28892. {
  28893. name: "Macro",
  28894. height: math.unit(100, "miles"),
  28895. default: true
  28896. },
  28897. ]
  28898. ))
  28899. characterMakers.push(() => makeCharacter(
  28900. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28901. {
  28902. front: {
  28903. height: math.unit(6, "feet"),
  28904. weight: math.unit(150, "lb"),
  28905. name: "Front",
  28906. image: {
  28907. source: "./media/characters/bailey/front.svg",
  28908. extra: 1778 / 1724,
  28909. bottom: 30 / 1808
  28910. }
  28911. },
  28912. },
  28913. [
  28914. {
  28915. name: "Micro",
  28916. height: math.unit(4, "inches")
  28917. },
  28918. {
  28919. name: "Normal",
  28920. height: math.unit(5 + 5 / 12, "feet"),
  28921. default: true
  28922. },
  28923. {
  28924. name: "Macro",
  28925. height: math.unit(250, "feet")
  28926. },
  28927. {
  28928. name: "Megamacro",
  28929. height: math.unit(100, "miles")
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(5 + 2 / 12, "feet"),
  28938. weight: math.unit(120, "lb"),
  28939. name: "Front",
  28940. image: {
  28941. source: "./media/characters/snaps/front.svg",
  28942. extra: 2370 / 2177,
  28943. bottom: 48 / 2418
  28944. }
  28945. },
  28946. back: {
  28947. height: math.unit(5 + 2 / 12, "feet"),
  28948. weight: math.unit(120, "lb"),
  28949. name: "Back",
  28950. image: {
  28951. source: "./media/characters/snaps/back.svg",
  28952. extra: 2408 / 2258,
  28953. bottom: 15 / 2423
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Micro",
  28960. height: math.unit(9, "inches")
  28961. },
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(5 + 2 / 12, "feet"),
  28965. default: true
  28966. },
  28967. {
  28968. name: "Mini Macro",
  28969. height: math.unit(10, "feet")
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(1.8, "meters"),
  28978. weight: math.unit(85, "kg"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/azteck/front.svg",
  28982. extra: 2815 / 2625,
  28983. bottom: 89 / 2904
  28984. }
  28985. },
  28986. back: {
  28987. height: math.unit(1.8, "meters"),
  28988. weight: math.unit(85, "kg"),
  28989. name: "Back",
  28990. image: {
  28991. source: "./media/characters/azteck/back.svg",
  28992. extra: 2856 / 2648,
  28993. bottom: 85 / 2941
  28994. }
  28995. },
  28996. frontDressed: {
  28997. height: math.unit(1.8, "meters"),
  28998. weight: math.unit(85, "kg"),
  28999. name: "Front (Dressed)",
  29000. image: {
  29001. source: "./media/characters/azteck/front-dressed.svg",
  29002. extra: 2147 / 2003,
  29003. bottom: 68 / 2215
  29004. }
  29005. },
  29006. head: {
  29007. height: math.unit(0.47, "meters"),
  29008. weight: math.unit(85, "kg"),
  29009. name: "Head",
  29010. image: {
  29011. source: "./media/characters/azteck/head.svg"
  29012. }
  29013. },
  29014. },
  29015. [
  29016. {
  29017. name: "Bite sized",
  29018. height: math.unit(16, "cm")
  29019. },
  29020. {
  29021. name: "Normal",
  29022. height: math.unit(1.8, "meters"),
  29023. default: true
  29024. },
  29025. ]
  29026. ))
  29027. characterMakers.push(() => makeCharacter(
  29028. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29029. {
  29030. front: {
  29031. height: math.unit(6, "feet"),
  29032. weight: math.unit(150, "lb"),
  29033. name: "Front",
  29034. image: {
  29035. source: "./media/characters/pidge/front.svg",
  29036. extra: 620 / 588,
  29037. bottom: 9 / 629
  29038. }
  29039. },
  29040. back: {
  29041. height: math.unit(6, "feet"),
  29042. weight: math.unit(150, "lb"),
  29043. name: "Back",
  29044. image: {
  29045. source: "./media/characters/pidge/back.svg",
  29046. extra: 620 / 588,
  29047. bottom: 9 / 629
  29048. }
  29049. },
  29050. },
  29051. [
  29052. {
  29053. name: "Macro",
  29054. height: math.unit(1, "mile"),
  29055. default: true
  29056. },
  29057. ]
  29058. ))
  29059. characterMakers.push(() => makeCharacter(
  29060. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29061. {
  29062. front: {
  29063. height: math.unit(6, "feet"),
  29064. weight: math.unit(150, "lb"),
  29065. name: "Front",
  29066. image: {
  29067. source: "./media/characters/en/front.svg",
  29068. extra: 1697 / 1563,
  29069. bottom: 103 / 1800
  29070. }
  29071. },
  29072. back: {
  29073. height: math.unit(6, "feet"),
  29074. weight: math.unit(150, "lb"),
  29075. name: "Back",
  29076. image: {
  29077. source: "./media/characters/en/back.svg",
  29078. extra: 1700 / 1570,
  29079. bottom: 51 / 1751
  29080. }
  29081. },
  29082. frontDressed: {
  29083. height: math.unit(6, "feet"),
  29084. weight: math.unit(150, "lb"),
  29085. name: "Front (Dressed)",
  29086. image: {
  29087. source: "./media/characters/en/front-dressed.svg",
  29088. extra: 1697 / 1563,
  29089. bottom: 103 / 1800
  29090. }
  29091. },
  29092. backDressed: {
  29093. height: math.unit(6, "feet"),
  29094. weight: math.unit(150, "lb"),
  29095. name: "Back (Dressed)",
  29096. image: {
  29097. source: "./media/characters/en/back-dressed.svg",
  29098. extra: 1700 / 1570,
  29099. bottom: 51 / 1751
  29100. }
  29101. },
  29102. },
  29103. [
  29104. {
  29105. name: "Macro",
  29106. height: math.unit(210, "feet"),
  29107. default: true
  29108. },
  29109. ]
  29110. ))
  29111. characterMakers.push(() => makeCharacter(
  29112. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29113. {
  29114. front: {
  29115. height: math.unit(6, "feet"),
  29116. weight: math.unit(150, "lb"),
  29117. name: "Front",
  29118. image: {
  29119. source: "./media/characters/haze-orris/front.svg",
  29120. extra: 3975 / 3525,
  29121. bottom: 137 / 4112
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Micro",
  29128. height: math.unit(150, "mm"),
  29129. default: true
  29130. },
  29131. ]
  29132. ))
  29133. characterMakers.push(() => makeCharacter(
  29134. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29135. {
  29136. front: {
  29137. height: math.unit(6, "feet"),
  29138. weight: math.unit(150, "lb"),
  29139. name: "Front",
  29140. image: {
  29141. source: "./media/characters/casselene-yaro/front.svg",
  29142. extra: 4721 / 4541,
  29143. bottom: 82 / 4803
  29144. }
  29145. },
  29146. back: {
  29147. height: math.unit(6, "feet"),
  29148. weight: math.unit(150, "lb"),
  29149. name: "Back",
  29150. image: {
  29151. source: "./media/characters/casselene-yaro/back.svg",
  29152. extra: 4569 / 4377,
  29153. bottom: 69 / 4638
  29154. }
  29155. },
  29156. frontDressed: {
  29157. height: math.unit(6, "feet"),
  29158. weight: math.unit(150, "lb"),
  29159. name: "Front-dressed",
  29160. image: {
  29161. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29162. extra: 4721 / 4541,
  29163. bottom: 82 / 4803
  29164. }
  29165. },
  29166. },
  29167. [
  29168. {
  29169. name: "Macro",
  29170. height: math.unit(190, "feet"),
  29171. default: true
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(6, "feet"),
  29180. weight: math.unit(150, "lb"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/myra-rue-delore/front.svg",
  29184. extra: 1340 / 1308,
  29185. bottom: 67 / 1407
  29186. }
  29187. },
  29188. back: {
  29189. height: math.unit(6, "feet"),
  29190. weight: math.unit(150, "lb"),
  29191. name: "Back",
  29192. image: {
  29193. source: "./media/characters/myra-rue-delore/back.svg",
  29194. extra: 1341 / 1310,
  29195. bottom: 40 / 1381
  29196. }
  29197. },
  29198. frontDressed: {
  29199. height: math.unit(6, "feet"),
  29200. weight: math.unit(150, "lb"),
  29201. name: "Front (Dressed)",
  29202. image: {
  29203. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29204. extra: 1340 / 1308,
  29205. bottom: 67 / 1407
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "Macro",
  29212. height: math.unit(150, "feet"),
  29213. default: true
  29214. },
  29215. ]
  29216. ))
  29217. characterMakers.push(() => makeCharacter(
  29218. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29219. {
  29220. front: {
  29221. height: math.unit(10, "feet"),
  29222. weight: math.unit(15015, "lb"),
  29223. name: "Front",
  29224. image: {
  29225. source: "./media/characters/fem!plat/front.svg",
  29226. extra: 2799 / 2604,
  29227. bottom: 149 / 2948
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(10, "feet"),
  29235. default: true
  29236. },
  29237. {
  29238. name: "Macro",
  29239. height: math.unit(100, "feet")
  29240. },
  29241. {
  29242. name: "Megamacro",
  29243. height: math.unit(1000, "feet")
  29244. },
  29245. ]
  29246. ))
  29247. characterMakers.push(() => makeCharacter(
  29248. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29249. {
  29250. front: {
  29251. height: math.unit(15 + 5 / 12, "feet"),
  29252. weight: math.unit(4600, "lb"),
  29253. name: "Front",
  29254. image: {
  29255. source: "./media/characters/neapolitan-ananassa/front.svg",
  29256. extra: 2903 / 2736,
  29257. bottom: 0 / 2903
  29258. }
  29259. },
  29260. side: {
  29261. height: math.unit(15 + 5 / 12, "feet"),
  29262. weight: math.unit(4600, "lb"),
  29263. name: "Side",
  29264. image: {
  29265. source: "./media/characters/neapolitan-ananassa/side.svg",
  29266. extra: 2925 / 2719,
  29267. bottom: 0 / 2925
  29268. }
  29269. },
  29270. back: {
  29271. height: math.unit(15 + 5 / 12, "feet"),
  29272. weight: math.unit(4600, "lb"),
  29273. name: "Back",
  29274. image: {
  29275. source: "./media/characters/neapolitan-ananassa/back.svg",
  29276. extra: 2903 / 2736,
  29277. bottom: 0 / 2903
  29278. }
  29279. },
  29280. },
  29281. [
  29282. {
  29283. name: "Normal",
  29284. height: math.unit(15 + 5 / 12, "feet"),
  29285. default: true
  29286. },
  29287. {
  29288. name: "Post-Millenium",
  29289. height: math.unit(35 + 5 / 12, "feet")
  29290. },
  29291. {
  29292. name: "Post-Era",
  29293. height: math.unit(450 + 5 / 12, "feet")
  29294. },
  29295. ]
  29296. ))
  29297. characterMakers.push(() => makeCharacter(
  29298. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29299. {
  29300. front: {
  29301. height: math.unit(300, "meters"),
  29302. weight: math.unit(125000, "tonnes"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/pazuzu/front.svg",
  29306. extra: 877 / 794,
  29307. bottom: 47 / 924
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Macro",
  29314. height: math.unit(300, "meters"),
  29315. default: true
  29316. },
  29317. ]
  29318. ))
  29319. characterMakers.push(() => makeCharacter(
  29320. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29321. {
  29322. side: {
  29323. height: math.unit(10 + 7 / 12, "feet"),
  29324. weight: math.unit(2.5, "tons"),
  29325. name: "Side",
  29326. image: {
  29327. source: "./media/characters/aasha/side.svg",
  29328. extra: 1345 / 1245,
  29329. bottom: 111 / 1456
  29330. }
  29331. },
  29332. back: {
  29333. height: math.unit(10 + 7 / 12, "feet"),
  29334. weight: math.unit(2.5, "tons"),
  29335. name: "Back",
  29336. image: {
  29337. source: "./media/characters/aasha/back.svg",
  29338. extra: 1133 / 1057,
  29339. bottom: 257 / 1390
  29340. }
  29341. },
  29342. },
  29343. [
  29344. {
  29345. name: "Normal",
  29346. height: math.unit(10 + 7 / 12, "feet"),
  29347. default: true
  29348. },
  29349. ]
  29350. ))
  29351. characterMakers.push(() => makeCharacter(
  29352. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29353. {
  29354. front: {
  29355. height: math.unit(6 + 3 / 12, "feet"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/nevan/front.svg",
  29359. extra: 704 / 704,
  29360. bottom: 28 / 732
  29361. }
  29362. },
  29363. back: {
  29364. height: math.unit(6 + 3 / 12, "feet"),
  29365. name: "Back",
  29366. image: {
  29367. source: "./media/characters/nevan/back.svg",
  29368. extra: 714 / 714,
  29369. bottom: 21 / 735
  29370. }
  29371. },
  29372. frontFlaccid: {
  29373. height: math.unit(6 + 3 / 12, "feet"),
  29374. name: "Front (Flaccid)",
  29375. image: {
  29376. source: "./media/characters/nevan/front-flaccid.svg",
  29377. extra: 704 / 704,
  29378. bottom: 28 / 732
  29379. }
  29380. },
  29381. frontErect: {
  29382. height: math.unit(6 + 3 / 12, "feet"),
  29383. name: "Front (Erect)",
  29384. image: {
  29385. source: "./media/characters/nevan/front-erect.svg",
  29386. extra: 704 / 704,
  29387. bottom: 28 / 732
  29388. }
  29389. },
  29390. backFlaccid: {
  29391. height: math.unit(6 + 3 / 12, "feet"),
  29392. name: "Back (Flaccid)",
  29393. image: {
  29394. source: "./media/characters/nevan/back-flaccid.svg",
  29395. extra: 714 / 714,
  29396. bottom: 21 / 735
  29397. }
  29398. },
  29399. },
  29400. [
  29401. {
  29402. name: "Normal",
  29403. height: math.unit(6 + 3 / 12, "feet"),
  29404. default: true
  29405. },
  29406. ]
  29407. ))
  29408. characterMakers.push(() => makeCharacter(
  29409. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29410. {
  29411. front: {
  29412. height: math.unit(4, "feet"),
  29413. name: "Front",
  29414. image: {
  29415. source: "./media/characters/arhan/front.svg",
  29416. extra: 3368 / 3133,
  29417. bottom: 0 / 3368
  29418. }
  29419. },
  29420. side: {
  29421. height: math.unit(4, "feet"),
  29422. name: "Side",
  29423. image: {
  29424. source: "./media/characters/arhan/side.svg",
  29425. extra: 3347 / 3105,
  29426. bottom: 0 / 3347
  29427. }
  29428. },
  29429. tongue: {
  29430. height: math.unit(1.42, "feet"),
  29431. name: "Tongue",
  29432. image: {
  29433. source: "./media/characters/arhan/tongue.svg"
  29434. }
  29435. },
  29436. head: {
  29437. height: math.unit(0.85, "feet"),
  29438. name: "Head",
  29439. image: {
  29440. source: "./media/characters/arhan/head.svg"
  29441. }
  29442. },
  29443. },
  29444. [
  29445. {
  29446. name: "Normal",
  29447. height: math.unit(4, "feet"),
  29448. default: true
  29449. },
  29450. ]
  29451. ))
  29452. characterMakers.push(() => makeCharacter(
  29453. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29454. {
  29455. front: {
  29456. height: math.unit(5 + 7.5 / 12, "feet"),
  29457. weight: math.unit(120, "lb"),
  29458. name: "Front",
  29459. image: {
  29460. source: "./media/characters/digi-duncan/front.svg",
  29461. extra: 330 / 326,
  29462. bottom: 16 / 346
  29463. }
  29464. },
  29465. side: {
  29466. height: math.unit(5 + 7.5 / 12, "feet"),
  29467. weight: math.unit(120, "lb"),
  29468. name: "Side",
  29469. image: {
  29470. source: "./media/characters/digi-duncan/side.svg",
  29471. extra: 341 / 337,
  29472. bottom: 1 / 342
  29473. }
  29474. },
  29475. back: {
  29476. height: math.unit(5 + 7.5 / 12, "feet"),
  29477. weight: math.unit(120, "lb"),
  29478. name: "Back",
  29479. image: {
  29480. source: "./media/characters/digi-duncan/back.svg",
  29481. extra: 330 / 326,
  29482. bottom: 12 / 342
  29483. }
  29484. },
  29485. },
  29486. [
  29487. {
  29488. name: "Speck",
  29489. height: math.unit(0.25, "mm")
  29490. },
  29491. {
  29492. name: "Micro",
  29493. height: math.unit(5, "mm")
  29494. },
  29495. {
  29496. name: "Tiny",
  29497. height: math.unit(0.5, "inches"),
  29498. default: true
  29499. },
  29500. {
  29501. name: "Human",
  29502. height: math.unit(5 + 7.5 / 12, "feet")
  29503. },
  29504. {
  29505. name: "Minigiant",
  29506. height: math.unit(8 + 5.25, "feet")
  29507. },
  29508. {
  29509. name: "Giant",
  29510. height: math.unit(2000, "feet")
  29511. },
  29512. {
  29513. name: "Mega",
  29514. height: math.unit(371.1, "miles")
  29515. },
  29516. ]
  29517. ))
  29518. characterMakers.push(() => makeCharacter(
  29519. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29520. {
  29521. front: {
  29522. height: math.unit(2, "meters"),
  29523. weight: math.unit(350, "kg"),
  29524. name: "Front",
  29525. image: {
  29526. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29527. extra: 898 / 838,
  29528. bottom: 9 / 907
  29529. }
  29530. },
  29531. },
  29532. [
  29533. {
  29534. name: "Micro",
  29535. height: math.unit(8, "meters")
  29536. },
  29537. {
  29538. name: "Normal",
  29539. height: math.unit(50, "meters"),
  29540. default: true
  29541. },
  29542. {
  29543. name: "Macro",
  29544. height: math.unit(500, "meters")
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29550. {
  29551. front: {
  29552. height: math.unit(6 + 6 / 12, "feet"),
  29553. name: "Front",
  29554. image: {
  29555. source: "./media/characters/khardesh/front.svg",
  29556. extra: 888 / 797,
  29557. bottom: 25 / 913
  29558. }
  29559. },
  29560. },
  29561. [
  29562. {
  29563. name: "Normal",
  29564. height: math.unit(6 + 6 / 12, "feet"),
  29565. default: true
  29566. },
  29567. {
  29568. name: "Normal+",
  29569. height: math.unit(4, "meters")
  29570. },
  29571. {
  29572. name: "Macro",
  29573. height: math.unit(50, "meters")
  29574. },
  29575. {
  29576. name: "Macro+",
  29577. height: math.unit(100, "meters")
  29578. },
  29579. {
  29580. name: "Megamacro",
  29581. height: math.unit(20, "km")
  29582. },
  29583. ]
  29584. ))
  29585. characterMakers.push(() => makeCharacter(
  29586. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29587. {
  29588. front: {
  29589. height: math.unit(6, "feet"),
  29590. weight: math.unit(150, "lb"),
  29591. name: "Front",
  29592. image: {
  29593. source: "./media/characters/kosho/front.svg",
  29594. extra: 1847 / 1847,
  29595. bottom: 86 / 1933
  29596. }
  29597. },
  29598. },
  29599. [
  29600. {
  29601. name: "Second-stage micro",
  29602. height: math.unit(0.5, "inches")
  29603. },
  29604. {
  29605. name: "First-stage micro",
  29606. height: math.unit(6, "inches")
  29607. },
  29608. {
  29609. name: "Normal",
  29610. height: math.unit(6, "feet"),
  29611. default: true
  29612. },
  29613. {
  29614. name: "First-stage macro",
  29615. height: math.unit(72, "feet")
  29616. },
  29617. {
  29618. name: "Second-stage macro",
  29619. height: math.unit(864, "feet")
  29620. },
  29621. ]
  29622. ))
  29623. characterMakers.push(() => makeCharacter(
  29624. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29625. {
  29626. normal: {
  29627. height: math.unit(4 + 6 / 12, "feet"),
  29628. name: "Normal",
  29629. image: {
  29630. source: "./media/characters/hydra/normal.svg",
  29631. extra: 2833 / 2634,
  29632. bottom: 68 / 2901
  29633. }
  29634. },
  29635. smol: {
  29636. height: math.unit(0.705, "inches"),
  29637. name: "Smol",
  29638. image: {
  29639. source: "./media/characters/hydra/smol.svg",
  29640. extra: 2715 / 2540,
  29641. bottom: 0 / 2715
  29642. }
  29643. },
  29644. },
  29645. [
  29646. {
  29647. name: "Normal",
  29648. height: math.unit(4 + 6 / 12, "feet"),
  29649. default: true
  29650. }
  29651. ]
  29652. ))
  29653. characterMakers.push(() => makeCharacter(
  29654. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29655. {
  29656. front: {
  29657. height: math.unit(0.6, "cm"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/daz/front.svg",
  29661. extra: 1682 / 1164,
  29662. bottom: 42 / 1724
  29663. }
  29664. },
  29665. },
  29666. [
  29667. {
  29668. name: "Normal",
  29669. height: math.unit(0.6, "cm"),
  29670. default: true
  29671. },
  29672. ]
  29673. ))
  29674. characterMakers.push(() => makeCharacter(
  29675. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29676. {
  29677. front: {
  29678. height: math.unit(6, "feet"),
  29679. weight: math.unit(235, "lb"),
  29680. name: "Front",
  29681. image: {
  29682. source: "./media/characters/theo-pangolin/front.svg",
  29683. extra: 1996 / 1969,
  29684. bottom: 115 / 2111
  29685. }
  29686. },
  29687. back: {
  29688. height: math.unit(6, "feet"),
  29689. weight: math.unit(235, "lb"),
  29690. name: "Back",
  29691. image: {
  29692. source: "./media/characters/theo-pangolin/back.svg",
  29693. extra: 1979 / 1979,
  29694. bottom: 40 / 2019
  29695. }
  29696. },
  29697. feral: {
  29698. height: math.unit(2, "feet"),
  29699. weight: math.unit(30, "lb"),
  29700. name: "Feral",
  29701. image: {
  29702. source: "./media/characters/theo-pangolin/feral.svg",
  29703. extra: 803 / 791,
  29704. bottom: 181 / 984
  29705. }
  29706. },
  29707. footFive: {
  29708. height: math.unit(1.43, "feet"),
  29709. name: "Foot (Five Toes)",
  29710. image: {
  29711. source: "./media/characters/theo-pangolin/foot-five.svg"
  29712. }
  29713. },
  29714. footFour: {
  29715. height: math.unit(1.43, "feet"),
  29716. name: "Foot (Four Toes)",
  29717. image: {
  29718. source: "./media/characters/theo-pangolin/foot-four.svg"
  29719. }
  29720. },
  29721. handFour: {
  29722. height: math.unit(0.81, "feet"),
  29723. name: "Hand (Four Fingers)",
  29724. image: {
  29725. source: "./media/characters/theo-pangolin/hand-four.svg"
  29726. }
  29727. },
  29728. handThree: {
  29729. height: math.unit(0.81, "feet"),
  29730. name: "Hand (Three Fingers)",
  29731. image: {
  29732. source: "./media/characters/theo-pangolin/hand-three.svg"
  29733. }
  29734. },
  29735. headFront: {
  29736. height: math.unit(1.37, "feet"),
  29737. name: "Head (Front)",
  29738. image: {
  29739. source: "./media/characters/theo-pangolin/head-front.svg"
  29740. }
  29741. },
  29742. headSide: {
  29743. height: math.unit(1.43, "feet"),
  29744. name: "Head (Side)",
  29745. image: {
  29746. source: "./media/characters/theo-pangolin/head-side.svg"
  29747. }
  29748. },
  29749. tongue: {
  29750. height: math.unit(2.29, "feet"),
  29751. name: "Tongue",
  29752. image: {
  29753. source: "./media/characters/theo-pangolin/tongue.svg"
  29754. }
  29755. },
  29756. },
  29757. [
  29758. {
  29759. name: "Normal",
  29760. height: math.unit(6, "feet")
  29761. },
  29762. {
  29763. name: "Macro",
  29764. height: math.unit(400, "feet"),
  29765. default: true
  29766. },
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29771. {
  29772. front: {
  29773. height: math.unit(6, "inches"),
  29774. weight: math.unit(0.036, "kg"),
  29775. name: "Front",
  29776. image: {
  29777. source: "./media/characters/renée/front.svg",
  29778. extra: 900 / 886,
  29779. bottom: 8 / 908
  29780. }
  29781. },
  29782. },
  29783. [
  29784. {
  29785. name: "Nano",
  29786. height: math.unit(1, "nm")
  29787. },
  29788. {
  29789. name: "Micro",
  29790. height: math.unit(1, "mm")
  29791. },
  29792. {
  29793. name: "Normal",
  29794. height: math.unit(6, "inches")
  29795. },
  29796. {
  29797. name: "Macro",
  29798. height: math.unit(2000, "feet"),
  29799. default: true
  29800. },
  29801. {
  29802. name: "Megamacro",
  29803. height: math.unit(2, "km")
  29804. },
  29805. {
  29806. name: "Gigamacro",
  29807. height: math.unit(2000, "km")
  29808. },
  29809. {
  29810. name: "Teramacro",
  29811. height: math.unit(250000, "km")
  29812. },
  29813. ]
  29814. ))
  29815. characterMakers.push(() => makeCharacter(
  29816. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29817. {
  29818. front: {
  29819. height: math.unit(4, "meters"),
  29820. weight: math.unit(150, "kg"),
  29821. name: "Front",
  29822. image: {
  29823. source: "./media/characters/caledvwlch/front.svg",
  29824. extra: 1760 / 1551,
  29825. bottom: 28 / 1788
  29826. }
  29827. },
  29828. side: {
  29829. height: math.unit(4, "meters"),
  29830. weight: math.unit(150, "kg"),
  29831. name: "Side",
  29832. image: {
  29833. source: "./media/characters/caledvwlch/side.svg",
  29834. extra: 1605 / 1536,
  29835. bottom: 31 / 1636
  29836. }
  29837. },
  29838. back: {
  29839. height: math.unit(4, "meters"),
  29840. weight: math.unit(150, "kg"),
  29841. name: "Back",
  29842. image: {
  29843. source: "./media/characters/caledvwlch/back.svg",
  29844. extra: 1635 / 1565,
  29845. bottom: 27 / 1662
  29846. }
  29847. },
  29848. },
  29849. [
  29850. {
  29851. name: "\"Incognito\"",
  29852. height: math.unit(4, "meters")
  29853. },
  29854. {
  29855. name: "Small rampage",
  29856. height: math.unit(600, "meters")
  29857. },
  29858. {
  29859. name: "Mega",
  29860. height: math.unit(30, "km")
  29861. },
  29862. {
  29863. name: "Home-size",
  29864. height: math.unit(50, "km"),
  29865. default: true
  29866. },
  29867. {
  29868. name: "Giga",
  29869. height: math.unit(300, "km")
  29870. },
  29871. {
  29872. name: "Lounging",
  29873. height: math.unit(11000, "km")
  29874. },
  29875. {
  29876. name: "Planet snacking",
  29877. height: math.unit(2000000, "km")
  29878. },
  29879. ]
  29880. ))
  29881. characterMakers.push(() => makeCharacter(
  29882. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29883. {
  29884. front: {
  29885. height: math.unit(6, "feet"),
  29886. weight: math.unit(215, "lb"),
  29887. name: "Front",
  29888. image: {
  29889. source: "./media/characters/sapphire-svell/front.svg",
  29890. extra: 495 / 455,
  29891. bottom: 20 / 515
  29892. }
  29893. },
  29894. back: {
  29895. height: math.unit(6, "feet"),
  29896. weight: math.unit(216, "lb"),
  29897. name: "Back",
  29898. image: {
  29899. source: "./media/characters/sapphire-svell/back.svg",
  29900. extra: 497 / 477,
  29901. bottom: 7 / 504
  29902. }
  29903. },
  29904. maw: {
  29905. height: math.unit(1.57, "feet"),
  29906. name: "Maw",
  29907. image: {
  29908. source: "./media/characters/sapphire-svell/maw.svg"
  29909. }
  29910. },
  29911. foot: {
  29912. height: math.unit(1.07, "feet"),
  29913. name: "Foot",
  29914. image: {
  29915. source: "./media/characters/sapphire-svell/foot.svg"
  29916. }
  29917. },
  29918. toering: {
  29919. height: math.unit(1.7, "inch"),
  29920. name: "Toering",
  29921. image: {
  29922. source: "./media/characters/sapphire-svell/toering.svg"
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Normal",
  29929. height: math.unit(300, "feet"),
  29930. default: true
  29931. },
  29932. {
  29933. name: "Augmented",
  29934. height: math.unit(1250, "feet")
  29935. },
  29936. {
  29937. name: "Unleashed",
  29938. height: math.unit(3000, "feet")
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29944. {
  29945. side: {
  29946. height: math.unit(2 + 3 / 12, "feet"),
  29947. weight: math.unit(110, "lb"),
  29948. name: "Side",
  29949. image: {
  29950. source: "./media/characters/glitch-flux/side.svg",
  29951. extra: 997 / 805,
  29952. bottom: 20 / 1017
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Normal",
  29959. height: math.unit(2 + 3 / 12, "feet"),
  29960. default: true
  29961. },
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29966. {
  29967. front: {
  29968. height: math.unit(4, "meters"),
  29969. name: "Front",
  29970. image: {
  29971. source: "./media/characters/mid/front.svg",
  29972. extra: 507 / 476,
  29973. bottom: 17 / 524
  29974. }
  29975. },
  29976. back: {
  29977. height: math.unit(4, "meters"),
  29978. name: "Back",
  29979. image: {
  29980. source: "./media/characters/mid/back.svg",
  29981. extra: 519 / 487,
  29982. bottom: 7 / 526
  29983. }
  29984. },
  29985. stuck: {
  29986. height: math.unit(2.2, "meters"),
  29987. name: "Stuck",
  29988. image: {
  29989. source: "./media/characters/mid/stuck.svg",
  29990. extra: 1951 / 1869,
  29991. bottom: 88 / 2039
  29992. }
  29993. }
  29994. },
  29995. [
  29996. {
  29997. name: "Normal",
  29998. height: math.unit(4, "meters"),
  29999. default: true
  30000. },
  30001. {
  30002. name: "Big",
  30003. height: math.unit(10, "meters")
  30004. },
  30005. {
  30006. name: "Macro",
  30007. height: math.unit(800, "meters")
  30008. },
  30009. {
  30010. name: "Megamacro",
  30011. height: math.unit(100, "km")
  30012. },
  30013. {
  30014. name: "Overgrown",
  30015. height: math.unit(1, "parsec")
  30016. },
  30017. ]
  30018. ))
  30019. characterMakers.push(() => makeCharacter(
  30020. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30021. {
  30022. front: {
  30023. height: math.unit(2.5, "meters"),
  30024. weight: math.unit(225, "kg"),
  30025. name: "Front",
  30026. image: {
  30027. source: "./media/characters/iris/front.svg",
  30028. extra: 3348 / 3251,
  30029. bottom: 205 / 3553
  30030. }
  30031. },
  30032. maw: {
  30033. height: math.unit(0.56, "meter"),
  30034. name: "Maw",
  30035. image: {
  30036. source: "./media/characters/iris/maw.svg"
  30037. }
  30038. },
  30039. },
  30040. [
  30041. {
  30042. name: "Mewter cat",
  30043. height: math.unit(1.2, "meters")
  30044. },
  30045. {
  30046. name: "Minimacro",
  30047. height: math.unit(2.5, "meters"),
  30048. default: true
  30049. },
  30050. {
  30051. name: "Macro",
  30052. height: math.unit(180, "meters")
  30053. },
  30054. {
  30055. name: "Megamacro",
  30056. height: math.unit(2746, "meters")
  30057. },
  30058. ]
  30059. ))
  30060. characterMakers.push(() => makeCharacter(
  30061. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30062. {
  30063. front: {
  30064. height: math.unit(6, "feet"),
  30065. weight: math.unit(135, "lb"),
  30066. name: "Front",
  30067. image: {
  30068. source: "./media/characters/axel/front.svg",
  30069. extra: 908 / 908,
  30070. bottom: 58 / 966
  30071. }
  30072. },
  30073. side: {
  30074. height: math.unit(6, "feet"),
  30075. weight: math.unit(135, "lb"),
  30076. name: "Side",
  30077. image: {
  30078. source: "./media/characters/axel/side.svg",
  30079. extra: 958 / 958,
  30080. bottom: 11 / 969
  30081. }
  30082. },
  30083. back: {
  30084. height: math.unit(6, "feet"),
  30085. weight: math.unit(135, "lb"),
  30086. name: "Back",
  30087. image: {
  30088. source: "./media/characters/axel/back.svg",
  30089. extra: 887 / 887,
  30090. bottom: 34 / 921
  30091. }
  30092. },
  30093. head: {
  30094. height: math.unit(1.07, "feet"),
  30095. name: "Head",
  30096. image: {
  30097. source: "./media/characters/axel/head.svg"
  30098. }
  30099. },
  30100. beak: {
  30101. height: math.unit(1.4, "feet"),
  30102. name: "Beak",
  30103. image: {
  30104. source: "./media/characters/axel/beak.svg"
  30105. }
  30106. },
  30107. beakSide: {
  30108. height: math.unit(1.4, "feet"),
  30109. name: "Beak Side",
  30110. image: {
  30111. source: "./media/characters/axel/beak-side.svg"
  30112. }
  30113. },
  30114. sheath: {
  30115. height: math.unit(0.5, "feet"),
  30116. name: "Sheath",
  30117. image: {
  30118. source: "./media/characters/axel/sheath.svg"
  30119. }
  30120. },
  30121. dick: {
  30122. height: math.unit(0.98, "feet"),
  30123. name: "Dick",
  30124. image: {
  30125. source: "./media/characters/axel/dick.svg"
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Macro",
  30132. height: math.unit(68, "meters"),
  30133. default: true
  30134. },
  30135. ]
  30136. ))
  30137. characterMakers.push(() => makeCharacter(
  30138. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30139. {
  30140. front: {
  30141. height: math.unit(3.5, "meters"),
  30142. weight: math.unit(1200, "kg"),
  30143. name: "Front",
  30144. image: {
  30145. source: "./media/characters/joanna/front.svg",
  30146. extra: 1596 / 1488,
  30147. bottom: 29 / 1625
  30148. }
  30149. },
  30150. back: {
  30151. height: math.unit(3.5, "meters"),
  30152. weight: math.unit(1200, "kg"),
  30153. name: "Back",
  30154. image: {
  30155. source: "./media/characters/joanna/back.svg",
  30156. extra: 1594 / 1495,
  30157. bottom: 26 / 1620
  30158. }
  30159. },
  30160. frontShorts: {
  30161. height: math.unit(3.5, "meters"),
  30162. weight: math.unit(1200, "kg"),
  30163. name: "Front (Shorts)",
  30164. image: {
  30165. source: "./media/characters/joanna/front-shorts.svg",
  30166. extra: 1596 / 1488,
  30167. bottom: 29 / 1625
  30168. }
  30169. },
  30170. frontBiker: {
  30171. height: math.unit(3.5, "meters"),
  30172. weight: math.unit(1200, "kg"),
  30173. name: "Front (Biker)",
  30174. image: {
  30175. source: "./media/characters/joanna/front-biker.svg",
  30176. extra: 1596 / 1488,
  30177. bottom: 29 / 1625
  30178. }
  30179. },
  30180. backBiker: {
  30181. height: math.unit(3.5, "meters"),
  30182. weight: math.unit(1200, "kg"),
  30183. name: "Back (Biker)",
  30184. image: {
  30185. source: "./media/characters/joanna/back-biker.svg",
  30186. extra: 1594 / 1495,
  30187. bottom: 88 / 1682
  30188. }
  30189. },
  30190. bikeLeft: {
  30191. height: math.unit(2.4, "meters"),
  30192. weight: math.unit(1600, "kg"),
  30193. name: "Bike (Left)",
  30194. image: {
  30195. source: "./media/characters/joanna/bike-left.svg",
  30196. extra: 720 / 720,
  30197. bottom: 8 / 728
  30198. }
  30199. },
  30200. bikeRight: {
  30201. height: math.unit(2.4, "meters"),
  30202. weight: math.unit(1600, "kg"),
  30203. name: "Bike (Right)",
  30204. image: {
  30205. source: "./media/characters/joanna/bike-right.svg",
  30206. extra: 720 / 720,
  30207. bottom: 8 / 728
  30208. }
  30209. },
  30210. },
  30211. [
  30212. {
  30213. name: "Incognito",
  30214. height: math.unit(3.5, "meters")
  30215. },
  30216. {
  30217. name: "Casual Big",
  30218. height: math.unit(200, "meters")
  30219. },
  30220. {
  30221. name: "Macro",
  30222. height: math.unit(600, "meters")
  30223. },
  30224. {
  30225. name: "Original",
  30226. height: math.unit(20, "km"),
  30227. default: true
  30228. },
  30229. {
  30230. name: "Giga",
  30231. height: math.unit(400, "km")
  30232. },
  30233. {
  30234. name: "Lounging",
  30235. height: math.unit(1500, "km")
  30236. },
  30237. {
  30238. name: "Planetary",
  30239. height: math.unit(200000, "km")
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30245. {
  30246. front: {
  30247. height: math.unit(6, "feet"),
  30248. weight: math.unit(150, "lb"),
  30249. name: "Front",
  30250. image: {
  30251. source: "./media/characters/hugo-sigil/front.svg",
  30252. extra: 522 / 500,
  30253. bottom: 2 / 524
  30254. }
  30255. },
  30256. back: {
  30257. height: math.unit(6, "feet"),
  30258. weight: math.unit(150, "lb"),
  30259. name: "Back",
  30260. image: {
  30261. source: "./media/characters/hugo-sigil/back.svg",
  30262. extra: 519 / 495,
  30263. bottom: 5 / 524
  30264. }
  30265. },
  30266. maw: {
  30267. height: math.unit(1.4, "feet"),
  30268. weight: math.unit(150, "lb"),
  30269. name: "Maw",
  30270. image: {
  30271. source: "./media/characters/hugo-sigil/maw.svg"
  30272. }
  30273. },
  30274. feet: {
  30275. height: math.unit(1.56, "feet"),
  30276. weight: math.unit(150, "lb"),
  30277. name: "Feet",
  30278. image: {
  30279. source: "./media/characters/hugo-sigil/feet.svg",
  30280. extra: 177 / 177,
  30281. bottom: 12 / 189
  30282. }
  30283. },
  30284. },
  30285. [
  30286. {
  30287. name: "Normal",
  30288. height: math.unit(6, "feet")
  30289. },
  30290. {
  30291. name: "Macro",
  30292. height: math.unit(200, "feet"),
  30293. default: true
  30294. },
  30295. ]
  30296. ))
  30297. characterMakers.push(() => makeCharacter(
  30298. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30299. {
  30300. front: {
  30301. height: math.unit(6, "feet"),
  30302. weight: math.unit(150, "lb"),
  30303. name: "Front",
  30304. image: {
  30305. source: "./media/characters/peri/front.svg",
  30306. extra: 2354 / 2233,
  30307. bottom: 49 / 2403
  30308. }
  30309. },
  30310. },
  30311. [
  30312. {
  30313. name: "Really Small",
  30314. height: math.unit(1, "nm")
  30315. },
  30316. {
  30317. name: "Micro",
  30318. height: math.unit(4, "inches")
  30319. },
  30320. {
  30321. name: "Normal",
  30322. height: math.unit(7, "inches"),
  30323. default: true
  30324. },
  30325. {
  30326. name: "Macro",
  30327. height: math.unit(400, "feet")
  30328. },
  30329. {
  30330. name: "Megamacro",
  30331. height: math.unit(100, "miles")
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30337. {
  30338. frontSlim: {
  30339. height: math.unit(7, "feet"),
  30340. name: "Front (Slim)",
  30341. image: {
  30342. source: "./media/characters/issilora/front-slim.svg",
  30343. extra: 529 / 449,
  30344. bottom: 53 / 582
  30345. }
  30346. },
  30347. sideSlim: {
  30348. height: math.unit(7, "feet"),
  30349. name: "Side (Slim)",
  30350. image: {
  30351. source: "./media/characters/issilora/side-slim.svg",
  30352. extra: 570 / 480,
  30353. bottom: 30 / 600
  30354. }
  30355. },
  30356. backSlim: {
  30357. height: math.unit(7, "feet"),
  30358. name: "Back (Slim)",
  30359. image: {
  30360. source: "./media/characters/issilora/back-slim.svg",
  30361. extra: 537 / 455,
  30362. bottom: 46 / 583
  30363. }
  30364. },
  30365. frontBuff: {
  30366. height: math.unit(7, "feet"),
  30367. name: "Front (Buff)",
  30368. image: {
  30369. source: "./media/characters/issilora/front-buff.svg",
  30370. extra: 2310 / 2035,
  30371. bottom: 335 / 2645
  30372. }
  30373. },
  30374. head: {
  30375. height: math.unit(1.94, "feet"),
  30376. name: "Head",
  30377. image: {
  30378. source: "./media/characters/issilora/head.svg"
  30379. }
  30380. },
  30381. },
  30382. [
  30383. {
  30384. name: "Minimum",
  30385. height: math.unit(7, "feet")
  30386. },
  30387. {
  30388. name: "Comfortable",
  30389. height: math.unit(17, "feet")
  30390. },
  30391. {
  30392. name: "Fun Size",
  30393. height: math.unit(47, "feet")
  30394. },
  30395. {
  30396. name: "Natural Macro",
  30397. height: math.unit(137, "feet"),
  30398. default: true
  30399. },
  30400. {
  30401. name: "Maximum Kaiju",
  30402. height: math.unit(397, "feet")
  30403. },
  30404. ]
  30405. ))
  30406. characterMakers.push(() => makeCharacter(
  30407. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30408. {
  30409. front: {
  30410. height: math.unit(50 + 9/12, "feet"),
  30411. weight: math.unit(32.8, "tons"),
  30412. name: "Front",
  30413. image: {
  30414. source: "./media/characters/irb'iiritaahn/front.svg",
  30415. extra: 1878/1826,
  30416. bottom: 326/2204
  30417. }
  30418. },
  30419. back: {
  30420. height: math.unit(50 + 9/12, "feet"),
  30421. weight: math.unit(32.8, "tons"),
  30422. name: "Back",
  30423. image: {
  30424. source: "./media/characters/irb'iiritaahn/back.svg",
  30425. extra: 2052/2018,
  30426. bottom: 152/2204
  30427. }
  30428. },
  30429. head: {
  30430. height: math.unit(12.86, "feet"),
  30431. name: "Head",
  30432. image: {
  30433. source: "./media/characters/irb'iiritaahn/head.svg"
  30434. }
  30435. },
  30436. maw: {
  30437. height: math.unit(9.66, "feet"),
  30438. name: "Maw",
  30439. image: {
  30440. source: "./media/characters/irb'iiritaahn/maw.svg"
  30441. }
  30442. },
  30443. frontDick: {
  30444. height: math.unit(8.78461, "feet"),
  30445. name: "Front Dick",
  30446. image: {
  30447. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30448. }
  30449. },
  30450. rearDick: {
  30451. height: math.unit(8.78461, "feet"),
  30452. name: "Rear Dick",
  30453. image: {
  30454. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30455. }
  30456. },
  30457. rearDickUnfolded: {
  30458. height: math.unit(8.78, "feet"),
  30459. name: "Rear Dick (Unfolded)",
  30460. image: {
  30461. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30462. }
  30463. },
  30464. wings: {
  30465. height: math.unit(43, "feet"),
  30466. name: "Wings",
  30467. image: {
  30468. source: "./media/characters/irb'iiritaahn/wings.svg"
  30469. }
  30470. },
  30471. },
  30472. [
  30473. {
  30474. name: "Macro",
  30475. height: math.unit(50 + 9/12, "feet"),
  30476. default: true
  30477. },
  30478. ]
  30479. ))
  30480. characterMakers.push(() => makeCharacter(
  30481. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30482. {
  30483. front: {
  30484. height: math.unit(205, "cm"),
  30485. weight: math.unit(102, "kg"),
  30486. name: "Front",
  30487. image: {
  30488. source: "./media/characters/irbisgreif/front.svg",
  30489. extra: 785/706,
  30490. bottom: 13/798
  30491. }
  30492. },
  30493. back: {
  30494. height: math.unit(205, "cm"),
  30495. weight: math.unit(102, "kg"),
  30496. name: "Back",
  30497. image: {
  30498. source: "./media/characters/irbisgreif/back.svg",
  30499. extra: 713/701,
  30500. bottom: 26/739
  30501. }
  30502. },
  30503. frontDressed: {
  30504. height: math.unit(216, "cm"),
  30505. weight: math.unit(102, "kg"),
  30506. name: "Front-dressed",
  30507. image: {
  30508. source: "./media/characters/irbisgreif/front-dressed.svg",
  30509. extra: 902/776,
  30510. bottom: 14/916
  30511. }
  30512. },
  30513. sideDressed: {
  30514. height: math.unit(195, "cm"),
  30515. weight: math.unit(102, "kg"),
  30516. name: "Side-dressed",
  30517. image: {
  30518. source: "./media/characters/irbisgreif/side-dressed.svg",
  30519. extra: 788/688,
  30520. bottom: 21/809
  30521. }
  30522. },
  30523. backDressed: {
  30524. height: math.unit(216, "cm"),
  30525. weight: math.unit(102, "kg"),
  30526. name: "Back-dressed",
  30527. image: {
  30528. source: "./media/characters/irbisgreif/back-dressed.svg",
  30529. extra: 901/783,
  30530. bottom: 10/911
  30531. }
  30532. },
  30533. dick: {
  30534. height: math.unit(0.49, "feet"),
  30535. name: "Dick",
  30536. image: {
  30537. source: "./media/characters/irbisgreif/dick.svg"
  30538. }
  30539. },
  30540. wingTop: {
  30541. height: math.unit(1.93 , "feet"),
  30542. name: "Wing-top",
  30543. image: {
  30544. source: "./media/characters/irbisgreif/wing-top.svg"
  30545. }
  30546. },
  30547. wingBottom: {
  30548. height: math.unit(1.93 , "feet"),
  30549. name: "Wing-bottom",
  30550. image: {
  30551. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30552. }
  30553. },
  30554. },
  30555. [
  30556. {
  30557. name: "Normal",
  30558. height: math.unit(216, "cm"),
  30559. default: true
  30560. },
  30561. ]
  30562. ))
  30563. characterMakers.push(() => makeCharacter(
  30564. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30565. {
  30566. front: {
  30567. height: math.unit(6, "feet"),
  30568. weight: math.unit(150, "lb"),
  30569. name: "Front",
  30570. image: {
  30571. source: "./media/characters/pride/front.svg",
  30572. extra: 1299/1230,
  30573. bottom: 18/1317
  30574. }
  30575. },
  30576. },
  30577. [
  30578. {
  30579. name: "Normal",
  30580. height: math.unit(7, "feet")
  30581. },
  30582. {
  30583. name: "Mini-macro",
  30584. height: math.unit(11, "feet")
  30585. },
  30586. {
  30587. name: "Macro",
  30588. height: math.unit(15, "meters"),
  30589. default: true
  30590. },
  30591. {
  30592. name: "Macro+",
  30593. height: math.unit(40, "meters")
  30594. },
  30595. ]
  30596. ))
  30597. characterMakers.push(() => makeCharacter(
  30598. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30599. {
  30600. front: {
  30601. height: math.unit(4 + 2 / 12, "feet"),
  30602. weight: math.unit(95, "lb"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/vaelophis-nyx/front.svg",
  30606. extra: 2532/2330,
  30607. bottom: 0/2532
  30608. }
  30609. },
  30610. back: {
  30611. height: math.unit(4 + 2 / 12, "feet"),
  30612. weight: math.unit(95, "lb"),
  30613. name: "Back",
  30614. image: {
  30615. source: "./media/characters/vaelophis-nyx/back.svg",
  30616. extra: 2484/2361,
  30617. bottom: 0/2484
  30618. }
  30619. },
  30620. feralSide: {
  30621. height: math.unit(2 + 1/12, "feet"),
  30622. weight: math.unit(20, "lb"),
  30623. name: "Feral (Side)",
  30624. image: {
  30625. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30626. extra: 1721/1581,
  30627. bottom: 70/1791
  30628. }
  30629. },
  30630. feralLazing: {
  30631. height: math.unit(1.08, "feet"),
  30632. weight: math.unit(20, "lb"),
  30633. name: "Feral (Lazing)",
  30634. image: {
  30635. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30636. extra: 822/822,
  30637. bottom: 248/1070
  30638. }
  30639. },
  30640. ear: {
  30641. height: math.unit(0.416, "feet"),
  30642. name: "Ear",
  30643. image: {
  30644. source: "./media/characters/vaelophis-nyx/ear.svg"
  30645. }
  30646. },
  30647. eye: {
  30648. height: math.unit(0.0748, "feet"),
  30649. name: "Eye",
  30650. image: {
  30651. source: "./media/characters/vaelophis-nyx/eye.svg"
  30652. }
  30653. },
  30654. mouth: {
  30655. height: math.unit(0.378, "feet"),
  30656. name: "Mouth",
  30657. image: {
  30658. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30659. }
  30660. },
  30661. spade: {
  30662. height: math.unit(0.55, "feet"),
  30663. name: "Spade",
  30664. image: {
  30665. source: "./media/characters/vaelophis-nyx/spade.svg"
  30666. }
  30667. },
  30668. },
  30669. [
  30670. {
  30671. name: "Normal",
  30672. height: math.unit(4 + 2/12, "feet"),
  30673. default: true
  30674. },
  30675. ]
  30676. ))
  30677. characterMakers.push(() => makeCharacter(
  30678. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30679. {
  30680. front: {
  30681. height: math.unit(7, "feet"),
  30682. weight: math.unit(231, "lb"),
  30683. name: "Front",
  30684. image: {
  30685. source: "./media/characters/flux/front.svg",
  30686. extra: 919/871,
  30687. bottom: 0/919
  30688. }
  30689. },
  30690. back: {
  30691. height: math.unit(7, "feet"),
  30692. weight: math.unit(231, "lb"),
  30693. name: "Back",
  30694. image: {
  30695. source: "./media/characters/flux/back.svg",
  30696. extra: 1040/992,
  30697. bottom: 0/1040
  30698. }
  30699. },
  30700. frontDressed: {
  30701. height: math.unit(7, "feet"),
  30702. weight: math.unit(231, "lb"),
  30703. name: "Front (Dressed)",
  30704. image: {
  30705. source: "./media/characters/flux/front-dressed.svg",
  30706. extra: 919/871,
  30707. bottom: 0/919
  30708. }
  30709. },
  30710. feralSide: {
  30711. height: math.unit(5, "feet"),
  30712. weight: math.unit(150, "lb"),
  30713. name: "Feral (Side)",
  30714. image: {
  30715. source: "./media/characters/flux/feral-side.svg",
  30716. extra: 598/528,
  30717. bottom: 28/626
  30718. }
  30719. },
  30720. head: {
  30721. height: math.unit(1.585, "feet"),
  30722. name: "Head",
  30723. image: {
  30724. source: "./media/characters/flux/head.svg"
  30725. }
  30726. },
  30727. headSide: {
  30728. height: math.unit(1.74, "feet"),
  30729. name: "Head (Side)",
  30730. image: {
  30731. source: "./media/characters/flux/head-side.svg"
  30732. }
  30733. },
  30734. headSideFire: {
  30735. height: math.unit(1.76, "feet"),
  30736. name: "Head (Side, Fire)",
  30737. image: {
  30738. source: "./media/characters/flux/head-side-fire.svg"
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Normal",
  30745. height: math.unit(7, "feet"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30752. {
  30753. front: {
  30754. height: math.unit(9, "feet"),
  30755. weight: math.unit(1012, "lb"),
  30756. name: "Front",
  30757. image: {
  30758. source: "./media/characters/ulfra-lupae/front.svg",
  30759. extra: 1083/1011,
  30760. bottom: 67/1150
  30761. }
  30762. },
  30763. },
  30764. [
  30765. {
  30766. name: "Micro",
  30767. height: math.unit(6, "inches")
  30768. },
  30769. {
  30770. name: "Socializing",
  30771. height: math.unit(6 + 5/12, "feet")
  30772. },
  30773. {
  30774. name: "Normal",
  30775. height: math.unit(9, "feet"),
  30776. default: true
  30777. },
  30778. {
  30779. name: "Macro",
  30780. height: math.unit(150, "feet")
  30781. },
  30782. ]
  30783. ))
  30784. characterMakers.push(() => makeCharacter(
  30785. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30786. {
  30787. front: {
  30788. height: math.unit(5 + 2/12, "feet"),
  30789. weight: math.unit(120, "lb"),
  30790. name: "Front",
  30791. image: {
  30792. source: "./media/characters/timber/front.svg",
  30793. extra: 2814/2705,
  30794. bottom: 181/2995
  30795. }
  30796. },
  30797. },
  30798. [
  30799. {
  30800. name: "Normal",
  30801. height: math.unit(5 + 2/12, "feet"),
  30802. default: true
  30803. },
  30804. ]
  30805. ))
  30806. characterMakers.push(() => makeCharacter(
  30807. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30808. {
  30809. front: {
  30810. height: math.unit(5 + 7/12, "feet"),
  30811. weight: math.unit(220, "lb"),
  30812. name: "Front",
  30813. image: {
  30814. source: "./media/characters/nicki/front.svg",
  30815. extra: 453/419,
  30816. bottom: 7/460
  30817. }
  30818. },
  30819. frontAlt: {
  30820. height: math.unit(5 + 7/12, "feet"),
  30821. weight: math.unit(220, "lb"),
  30822. name: "Front-alt",
  30823. image: {
  30824. source: "./media/characters/nicki/front-alt.svg",
  30825. extra: 435/411,
  30826. bottom: 12/447
  30827. }
  30828. },
  30829. back: {
  30830. height: math.unit(5 + 7/12, "feet"),
  30831. weight: math.unit(220, "lb"),
  30832. name: "Back",
  30833. image: {
  30834. source: "./media/characters/nicki/back.svg",
  30835. extra: 440/413,
  30836. bottom: 19/459
  30837. }
  30838. },
  30839. taur: {
  30840. height: math.unit(7 + 6/12, "feet"),
  30841. weight: math.unit(700, "lb"),
  30842. name: "Taur",
  30843. image: {
  30844. source: "./media/characters/nicki/taur.svg",
  30845. extra: 975/773,
  30846. bottom: 0/975
  30847. }
  30848. },
  30849. frontNsfw: {
  30850. height: math.unit(5 + 7/12, "feet"),
  30851. weight: math.unit(220, "lb"),
  30852. name: "Front (NSFW)",
  30853. image: {
  30854. source: "./media/characters/nicki/front-nsfw.svg",
  30855. extra: 453/419,
  30856. bottom: 7/460
  30857. }
  30858. },
  30859. frontNsfwAlt: {
  30860. height: math.unit(5 + 7/12, "feet"),
  30861. weight: math.unit(220, "lb"),
  30862. name: "Front (Alt, NSFW)",
  30863. image: {
  30864. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30865. extra: 435/411,
  30866. bottom: 12/447
  30867. }
  30868. },
  30869. backNsfw: {
  30870. height: math.unit(5 + 7/12, "feet"),
  30871. weight: math.unit(220, "lb"),
  30872. name: "Back (NSFW)",
  30873. image: {
  30874. source: "./media/characters/nicki/back-nsfw.svg",
  30875. extra: 440/413,
  30876. bottom: 19/459
  30877. }
  30878. },
  30879. head: {
  30880. height: math.unit(2.1, "feet"),
  30881. name: "Head",
  30882. image: {
  30883. source: "./media/characters/nicki/head.svg"
  30884. }
  30885. },
  30886. paw: {
  30887. height: math.unit(1.88, "feet"),
  30888. name: "Paw",
  30889. image: {
  30890. source: "./media/characters/nicki/paw.svg"
  30891. }
  30892. },
  30893. },
  30894. [
  30895. {
  30896. name: "Normal",
  30897. height: math.unit(5 + 7/12, "feet"),
  30898. default: true
  30899. },
  30900. ]
  30901. ))
  30902. characterMakers.push(() => makeCharacter(
  30903. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30904. {
  30905. front: {
  30906. height: math.unit(7 + 10/12, "feet"),
  30907. weight: math.unit(3.5, "tons"),
  30908. name: "Front",
  30909. image: {
  30910. source: "./media/characters/lee/front.svg",
  30911. extra: 1773/1615,
  30912. bottom: 86/1859
  30913. }
  30914. },
  30915. hand: {
  30916. height: math.unit(1.78, "feet"),
  30917. name: "Hand",
  30918. image: {
  30919. source: "./media/characters/lee/hand.svg"
  30920. }
  30921. },
  30922. maw: {
  30923. height: math.unit(1.18, "feet"),
  30924. name: "Maw",
  30925. image: {
  30926. source: "./media/characters/lee/maw.svg"
  30927. }
  30928. },
  30929. },
  30930. [
  30931. {
  30932. name: "Normal",
  30933. height: math.unit(7 + 10/12, "feet"),
  30934. default: true
  30935. },
  30936. ]
  30937. ))
  30938. characterMakers.push(() => makeCharacter(
  30939. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30940. {
  30941. front: {
  30942. height: math.unit(9, "feet"),
  30943. name: "Front",
  30944. image: {
  30945. source: "./media/characters/guti/front.svg",
  30946. extra: 4551/4355,
  30947. bottom: 123/4674
  30948. }
  30949. },
  30950. tongue: {
  30951. height: math.unit(1, "feet"),
  30952. name: "Tongue",
  30953. image: {
  30954. source: "./media/characters/guti/tongue.svg"
  30955. }
  30956. },
  30957. paw: {
  30958. height: math.unit(1.18, "feet"),
  30959. name: "Paw",
  30960. image: {
  30961. source: "./media/characters/guti/paw.svg"
  30962. }
  30963. },
  30964. },
  30965. [
  30966. {
  30967. name: "Normal",
  30968. height: math.unit(9, "feet"),
  30969. default: true
  30970. },
  30971. ]
  30972. ))
  30973. characterMakers.push(() => makeCharacter(
  30974. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30975. {
  30976. side: {
  30977. height: math.unit(5, "meters"),
  30978. name: "Side",
  30979. image: {
  30980. source: "./media/characters/vesper/side.svg",
  30981. extra: 1605/1518,
  30982. bottom: 0/1605
  30983. }
  30984. },
  30985. },
  30986. [
  30987. {
  30988. name: "Small",
  30989. height: math.unit(5, "meters")
  30990. },
  30991. {
  30992. name: "Sage",
  30993. height: math.unit(100, "meters"),
  30994. default: true
  30995. },
  30996. {
  30997. name: "Fun Size",
  30998. height: math.unit(600, "meters")
  30999. },
  31000. {
  31001. name: "Goddess",
  31002. height: math.unit(20000, "km")
  31003. },
  31004. {
  31005. name: "Maximum",
  31006. height: math.unit(5, "galaxies")
  31007. },
  31008. ]
  31009. ))
  31010. characterMakers.push(() => makeCharacter(
  31011. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31012. {
  31013. front: {
  31014. height: math.unit(6 + 3/12, "feet"),
  31015. weight: math.unit(190, "lb"),
  31016. name: "Front",
  31017. image: {
  31018. source: "./media/characters/gawain/front.svg",
  31019. extra: 2222/2139,
  31020. bottom: 90/2312
  31021. }
  31022. },
  31023. back: {
  31024. height: math.unit(6 + 3/12, "feet"),
  31025. weight: math.unit(190, "lb"),
  31026. name: "Back",
  31027. image: {
  31028. source: "./media/characters/gawain/back.svg",
  31029. extra: 2199/2111,
  31030. bottom: 73/2272
  31031. }
  31032. },
  31033. },
  31034. [
  31035. {
  31036. name: "Normal",
  31037. height: math.unit(6 + 3/12, "feet"),
  31038. default: true
  31039. },
  31040. ]
  31041. ))
  31042. characterMakers.push(() => makeCharacter(
  31043. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31044. {
  31045. side: {
  31046. height: math.unit(3.5, "meters"),
  31047. weight: math.unit(16000, "lb"),
  31048. name: "Side",
  31049. image: {
  31050. source: "./media/characters/dascalti/side.svg",
  31051. extra: 392/273,
  31052. bottom: 47/439
  31053. }
  31054. },
  31055. breath: {
  31056. height: math.unit(7.4, "feet"),
  31057. name: "Breath",
  31058. image: {
  31059. source: "./media/characters/dascalti/breath.svg"
  31060. }
  31061. },
  31062. fed: {
  31063. height: math.unit(3.6, "meters"),
  31064. weight: math.unit(16000, "lb"),
  31065. name: "Fed",
  31066. image: {
  31067. source: "./media/characters/dascalti/fed.svg",
  31068. extra: 1419/820,
  31069. bottom: 95/1514
  31070. }
  31071. },
  31072. },
  31073. [
  31074. {
  31075. name: "Normal",
  31076. height: math.unit(3.5, "meters"),
  31077. default: true
  31078. },
  31079. ]
  31080. ))
  31081. characterMakers.push(() => makeCharacter(
  31082. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31083. {
  31084. front: {
  31085. height: math.unit(3 + 5/12, "feet"),
  31086. name: "Front",
  31087. image: {
  31088. source: "./media/characters/mauve/front.svg",
  31089. extra: 1126/1033,
  31090. bottom: 65/1191
  31091. }
  31092. },
  31093. side: {
  31094. height: math.unit(3 + 5/12, "feet"),
  31095. name: "Side",
  31096. image: {
  31097. source: "./media/characters/mauve/side.svg",
  31098. extra: 1089/1001,
  31099. bottom: 29/1118
  31100. }
  31101. },
  31102. back: {
  31103. height: math.unit(3 + 5/12, "feet"),
  31104. name: "Back",
  31105. image: {
  31106. source: "./media/characters/mauve/back.svg",
  31107. extra: 1173/1053,
  31108. bottom: 109/1282
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(3 + 5/12, "feet"),
  31116. default: true
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31122. {
  31123. front: {
  31124. height: math.unit(6 + 3/12, "feet"),
  31125. weight: math.unit(430, "lb"),
  31126. name: "Front",
  31127. image: {
  31128. source: "./media/characters/carlos/front.svg",
  31129. extra: 1964/1913,
  31130. bottom: 70/2034
  31131. }
  31132. },
  31133. },
  31134. [
  31135. {
  31136. name: "Normal",
  31137. height: math.unit(6 + 3/12, "feet"),
  31138. default: true
  31139. },
  31140. ]
  31141. ))
  31142. characterMakers.push(() => makeCharacter(
  31143. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31144. {
  31145. back: {
  31146. height: math.unit(5 + 10/12, "feet"),
  31147. weight: math.unit(200, "lb"),
  31148. name: "Back",
  31149. image: {
  31150. source: "./media/characters/jax/back.svg",
  31151. extra: 764/739,
  31152. bottom: 25/789
  31153. }
  31154. },
  31155. },
  31156. [
  31157. {
  31158. name: "Normal",
  31159. height: math.unit(5 + 10/12, "feet"),
  31160. default: true
  31161. },
  31162. ]
  31163. ))
  31164. characterMakers.push(() => makeCharacter(
  31165. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31166. {
  31167. front: {
  31168. height: math.unit(8, "feet"),
  31169. weight: math.unit(250, "lb"),
  31170. name: "Front",
  31171. image: {
  31172. source: "./media/characters/eikthynir/front.svg",
  31173. extra: 1332/1166,
  31174. bottom: 82/1414
  31175. }
  31176. },
  31177. back: {
  31178. height: math.unit(8, "feet"),
  31179. weight: math.unit(250, "lb"),
  31180. name: "Back",
  31181. image: {
  31182. source: "./media/characters/eikthynir/back.svg",
  31183. extra: 1342/1190,
  31184. bottom: 19/1361
  31185. }
  31186. },
  31187. dick: {
  31188. height: math.unit(2.35, "feet"),
  31189. name: "Dick",
  31190. image: {
  31191. source: "./media/characters/eikthynir/dick.svg"
  31192. }
  31193. },
  31194. },
  31195. [
  31196. {
  31197. name: "Normal",
  31198. height: math.unit(8, "feet"),
  31199. default: true
  31200. },
  31201. ]
  31202. ))
  31203. characterMakers.push(() => makeCharacter(
  31204. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31205. {
  31206. front: {
  31207. height: math.unit(99, "meters"),
  31208. weight: math.unit(13000, "tons"),
  31209. name: "Front",
  31210. image: {
  31211. source: "./media/characters/zlmos/front.svg",
  31212. extra: 2202/1992,
  31213. bottom: 315/2517
  31214. }
  31215. },
  31216. },
  31217. [
  31218. {
  31219. name: "Macro",
  31220. height: math.unit(99, "meters"),
  31221. default: true
  31222. },
  31223. ]
  31224. ))
  31225. characterMakers.push(() => makeCharacter(
  31226. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31227. {
  31228. front: {
  31229. height: math.unit(6 + 5/12, "feet"),
  31230. name: "Front",
  31231. image: {
  31232. source: "./media/characters/purri/front.svg",
  31233. extra: 1698/1610,
  31234. bottom: 32/1730
  31235. }
  31236. },
  31237. frontAlt: {
  31238. height: math.unit(6 + 5/12, "feet"),
  31239. name: "Front (Alt)",
  31240. image: {
  31241. source: "./media/characters/purri/front-alt.svg",
  31242. extra: 450/420,
  31243. bottom: 26/476
  31244. }
  31245. },
  31246. boots: {
  31247. height: math.unit(5.5, "feet"),
  31248. name: "Boots",
  31249. image: {
  31250. source: "./media/characters/purri/boots.svg",
  31251. extra: 905/853,
  31252. bottom: 18/923
  31253. }
  31254. },
  31255. lying: {
  31256. height: math.unit(2, "feet"),
  31257. name: "Lying",
  31258. image: {
  31259. source: "./media/characters/purri/lying.svg",
  31260. extra: 940/843,
  31261. bottom: 146/1086
  31262. }
  31263. },
  31264. devious: {
  31265. height: math.unit(1.77, "feet"),
  31266. name: "Devious",
  31267. image: {
  31268. source: "./media/characters/purri/devious.svg",
  31269. extra: 1440/1155,
  31270. bottom: 147/1587
  31271. }
  31272. },
  31273. bean: {
  31274. height: math.unit(1.94, "feet"),
  31275. name: "Bean",
  31276. image: {
  31277. source: "./media/characters/purri/bean.svg"
  31278. }
  31279. },
  31280. },
  31281. [
  31282. {
  31283. name: "Micro",
  31284. height: math.unit(1, "mm")
  31285. },
  31286. {
  31287. name: "Normal",
  31288. height: math.unit(6 + 5/12, "feet"),
  31289. default: true
  31290. },
  31291. {
  31292. name: "Macro :3c",
  31293. height: math.unit(2, "miles")
  31294. },
  31295. ]
  31296. ))
  31297. characterMakers.push(() => makeCharacter(
  31298. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31299. {
  31300. front: {
  31301. height: math.unit(6 + 2/12, "feet"),
  31302. weight: math.unit(250, "lb"),
  31303. name: "Front",
  31304. image: {
  31305. source: "./media/characters/moonlight/front.svg",
  31306. extra: 1044/908,
  31307. bottom: 56/1100
  31308. }
  31309. },
  31310. feral: {
  31311. height: math.unit(3 + 1/12, "feet"),
  31312. weight: math.unit(50, "kg"),
  31313. name: "Feral",
  31314. image: {
  31315. source: "./media/characters/moonlight/feral.svg",
  31316. extra: 3705/2791,
  31317. bottom: 145/3850
  31318. }
  31319. },
  31320. paw: {
  31321. height: math.unit(1, "feet"),
  31322. name: "Paw",
  31323. image: {
  31324. source: "./media/characters/moonlight/paw.svg"
  31325. }
  31326. },
  31327. paws: {
  31328. height: math.unit(0.98, "feet"),
  31329. name: "Paws",
  31330. image: {
  31331. source: "./media/characters/moonlight/paws.svg",
  31332. extra: 939/939,
  31333. bottom: 50/989
  31334. }
  31335. },
  31336. mouth: {
  31337. height: math.unit(0.48, "feet"),
  31338. name: "Mouth",
  31339. image: {
  31340. source: "./media/characters/moonlight/mouth.svg"
  31341. }
  31342. },
  31343. dick: {
  31344. height: math.unit(1.46, "feet"),
  31345. name: "Dick",
  31346. image: {
  31347. source: "./media/characters/moonlight/dick.svg"
  31348. }
  31349. },
  31350. },
  31351. [
  31352. {
  31353. name: "Normal",
  31354. height: math.unit(6 + 2/12, "feet"),
  31355. default: true
  31356. },
  31357. {
  31358. name: "Macro",
  31359. height: math.unit(300, "feet")
  31360. },
  31361. {
  31362. name: "Macro+",
  31363. height: math.unit(1, "mile")
  31364. },
  31365. {
  31366. name: "Mt. Moon",
  31367. height: math.unit(5, "miles")
  31368. },
  31369. {
  31370. name: "Megamacro",
  31371. height: math.unit(15, "miles")
  31372. },
  31373. ]
  31374. ))
  31375. characterMakers.push(() => makeCharacter(
  31376. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31377. {
  31378. back: {
  31379. height: math.unit(6, "feet"),
  31380. weight: math.unit(150, "lb"),
  31381. name: "Back",
  31382. image: {
  31383. source: "./media/characters/sylen/back.svg",
  31384. extra: 1335/1273,
  31385. bottom: 107/1442
  31386. }
  31387. },
  31388. },
  31389. [
  31390. {
  31391. name: "Normal",
  31392. height: math.unit(5 + 5/12, "feet")
  31393. },
  31394. {
  31395. name: "Megamacro",
  31396. height: math.unit(3, "miles"),
  31397. default: true
  31398. },
  31399. ]
  31400. ))
  31401. characterMakers.push(() => makeCharacter(
  31402. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31403. {
  31404. front: {
  31405. height: math.unit(6, "feet"),
  31406. weight: math.unit(190, "lb"),
  31407. name: "Front",
  31408. image: {
  31409. source: "./media/characters/huttser/front.svg",
  31410. extra: 1152/1058,
  31411. bottom: 23/1175
  31412. }
  31413. },
  31414. side: {
  31415. height: math.unit(6, "feet"),
  31416. weight: math.unit(190, "lb"),
  31417. name: "Side",
  31418. image: {
  31419. source: "./media/characters/huttser/side.svg",
  31420. extra: 1174/1065,
  31421. bottom: 18/1192
  31422. }
  31423. },
  31424. back: {
  31425. height: math.unit(6, "feet"),
  31426. weight: math.unit(190, "lb"),
  31427. name: "Back",
  31428. image: {
  31429. source: "./media/characters/huttser/back.svg",
  31430. extra: 1158/1056,
  31431. bottom: 12/1170
  31432. }
  31433. },
  31434. },
  31435. [
  31436. ]
  31437. ))
  31438. characterMakers.push(() => makeCharacter(
  31439. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31440. {
  31441. side: {
  31442. height: math.unit(12 + 9/12, "feet"),
  31443. weight: math.unit(15000, "lb"),
  31444. name: "Side",
  31445. image: {
  31446. source: "./media/characters/faan/side.svg",
  31447. extra: 2747/2697,
  31448. bottom: 0/2747
  31449. }
  31450. },
  31451. front: {
  31452. height: math.unit(12 + 9/12, "feet"),
  31453. weight: math.unit(15000, "lb"),
  31454. name: "Front",
  31455. image: {
  31456. source: "./media/characters/faan/front.svg",
  31457. extra: 607/571,
  31458. bottom: 24/631
  31459. }
  31460. },
  31461. head: {
  31462. height: math.unit(2.85, "feet"),
  31463. name: "Head",
  31464. image: {
  31465. source: "./media/characters/faan/head.svg"
  31466. }
  31467. },
  31468. headAlt: {
  31469. height: math.unit(3.13, "feet"),
  31470. name: "Head-alt",
  31471. image: {
  31472. source: "./media/characters/faan/head-alt.svg"
  31473. }
  31474. },
  31475. },
  31476. [
  31477. {
  31478. name: "Normal",
  31479. height: math.unit(12 + 9/12, "feet"),
  31480. default: true
  31481. },
  31482. ]
  31483. ))
  31484. characterMakers.push(() => makeCharacter(
  31485. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31486. {
  31487. front: {
  31488. height: math.unit(6, "feet"),
  31489. weight: math.unit(300, "lb"),
  31490. name: "Front",
  31491. image: {
  31492. source: "./media/characters/tanio/front.svg",
  31493. extra: 711/673,
  31494. bottom: 25/736
  31495. }
  31496. },
  31497. },
  31498. [
  31499. {
  31500. name: "Normal",
  31501. height: math.unit(6, "feet"),
  31502. default: true
  31503. },
  31504. ]
  31505. ))
  31506. characterMakers.push(() => makeCharacter(
  31507. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31508. {
  31509. front: {
  31510. height: math.unit(3, "inches"),
  31511. name: "Front",
  31512. image: {
  31513. source: "./media/characters/noboru/front.svg",
  31514. extra: 1039/932,
  31515. bottom: 18/1057
  31516. }
  31517. },
  31518. },
  31519. [
  31520. {
  31521. name: "Micro",
  31522. height: math.unit(3, "inches"),
  31523. default: true
  31524. },
  31525. ]
  31526. ))
  31527. characterMakers.push(() => makeCharacter(
  31528. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31529. {
  31530. front: {
  31531. height: math.unit(1.85, "meters"),
  31532. weight: math.unit(80, "kg"),
  31533. name: "Front",
  31534. image: {
  31535. source: "./media/characters/daniel-barrett/front.svg",
  31536. extra: 355/337,
  31537. bottom: 9/364
  31538. }
  31539. },
  31540. },
  31541. [
  31542. {
  31543. name: "Pico",
  31544. height: math.unit(0.0433, "mm")
  31545. },
  31546. {
  31547. name: "Nano",
  31548. height: math.unit(1.5, "mm")
  31549. },
  31550. {
  31551. name: "Micro",
  31552. height: math.unit(5.3, "cm"),
  31553. default: true
  31554. },
  31555. {
  31556. name: "Normal",
  31557. height: math.unit(1.85, "meters")
  31558. },
  31559. {
  31560. name: "Macro",
  31561. height: math.unit(64.7, "meters")
  31562. },
  31563. {
  31564. name: "Megamacro",
  31565. height: math.unit(2.26, "km")
  31566. },
  31567. {
  31568. name: "Gigamacro",
  31569. height: math.unit(79, "km")
  31570. },
  31571. {
  31572. name: "Teramacro",
  31573. height: math.unit(2765, "km")
  31574. },
  31575. {
  31576. name: "Petamacro",
  31577. height: math.unit(96678, "km")
  31578. },
  31579. ]
  31580. ))
  31581. characterMakers.push(() => makeCharacter(
  31582. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31583. {
  31584. front: {
  31585. height: math.unit(30, "meters"),
  31586. weight: math.unit(400, "tons"),
  31587. name: "Front",
  31588. image: {
  31589. source: "./media/characters/zeel/front.svg",
  31590. extra: 2599/2599,
  31591. bottom: 226/2825
  31592. }
  31593. },
  31594. },
  31595. [
  31596. {
  31597. name: "Macro",
  31598. height: math.unit(30, "meters"),
  31599. default: true
  31600. },
  31601. ]
  31602. ))
  31603. characterMakers.push(() => makeCharacter(
  31604. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31605. {
  31606. front: {
  31607. height: math.unit(6 + 7/12, "feet"),
  31608. weight: math.unit(210, "lb"),
  31609. name: "Front",
  31610. image: {
  31611. source: "./media/characters/tarn/front.svg",
  31612. extra: 3517/3220,
  31613. bottom: 91/3608
  31614. }
  31615. },
  31616. back: {
  31617. height: math.unit(6 + 7/12, "feet"),
  31618. weight: math.unit(210, "lb"),
  31619. name: "Back",
  31620. image: {
  31621. source: "./media/characters/tarn/back.svg",
  31622. extra: 3566/3241,
  31623. bottom: 34/3600
  31624. }
  31625. },
  31626. dick: {
  31627. height: math.unit(1.65, "feet"),
  31628. name: "Dick",
  31629. image: {
  31630. source: "./media/characters/tarn/dick.svg"
  31631. }
  31632. },
  31633. paw: {
  31634. height: math.unit(1.80, "feet"),
  31635. name: "Paw",
  31636. image: {
  31637. source: "./media/characters/tarn/paw.svg"
  31638. }
  31639. },
  31640. tongue: {
  31641. height: math.unit(0.97, "feet"),
  31642. name: "Tongue",
  31643. image: {
  31644. source: "./media/characters/tarn/tongue.svg"
  31645. }
  31646. },
  31647. },
  31648. [
  31649. {
  31650. name: "Micro",
  31651. height: math.unit(4, "inches")
  31652. },
  31653. {
  31654. name: "Normal",
  31655. height: math.unit(6 + 7/12, "feet"),
  31656. default: true
  31657. },
  31658. {
  31659. name: "Macro",
  31660. height: math.unit(300, "feet")
  31661. },
  31662. ]
  31663. ))
  31664. characterMakers.push(() => makeCharacter(
  31665. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31666. {
  31667. front: {
  31668. height: math.unit(5 + 7/12, "feet"),
  31669. weight: math.unit(80, "kg"),
  31670. name: "Front",
  31671. image: {
  31672. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31673. extra: 3023/2865,
  31674. bottom: 33/3056
  31675. }
  31676. },
  31677. back: {
  31678. height: math.unit(5 + 7/12, "feet"),
  31679. weight: math.unit(80, "kg"),
  31680. name: "Back",
  31681. image: {
  31682. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31683. extra: 3020/2886,
  31684. bottom: 30/3050
  31685. }
  31686. },
  31687. dick: {
  31688. height: math.unit(0.98, "feet"),
  31689. name: "Dick",
  31690. image: {
  31691. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31692. }
  31693. },
  31694. anatomy: {
  31695. height: math.unit(2.86, "feet"),
  31696. name: "Anatomy",
  31697. image: {
  31698. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31699. }
  31700. },
  31701. },
  31702. [
  31703. {
  31704. name: "Really Small",
  31705. height: math.unit(2, "inches")
  31706. },
  31707. {
  31708. name: "Micro",
  31709. height: math.unit(5.583, "inches")
  31710. },
  31711. {
  31712. name: "Normal",
  31713. height: math.unit(5 + 7/12, "feet"),
  31714. default: true
  31715. },
  31716. {
  31717. name: "Macro",
  31718. height: math.unit(67, "feet")
  31719. },
  31720. {
  31721. name: "Megamacro",
  31722. height: math.unit(134, "feet")
  31723. },
  31724. ]
  31725. ))
  31726. characterMakers.push(() => makeCharacter(
  31727. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31728. {
  31729. front: {
  31730. height: math.unit(9, "feet"),
  31731. weight: math.unit(120, "lb"),
  31732. name: "Front",
  31733. image: {
  31734. source: "./media/characters/sally/front.svg",
  31735. extra: 1506/1349,
  31736. bottom: 66/1572
  31737. }
  31738. },
  31739. },
  31740. [
  31741. {
  31742. name: "Normal",
  31743. height: math.unit(9, "feet"),
  31744. default: true
  31745. },
  31746. ]
  31747. ))
  31748. characterMakers.push(() => makeCharacter(
  31749. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31750. {
  31751. front: {
  31752. height: math.unit(8, "feet"),
  31753. weight: math.unit(900, "lb"),
  31754. name: "Front",
  31755. image: {
  31756. source: "./media/characters/owen/front.svg",
  31757. extra: 1761/1657,
  31758. bottom: 74/1835
  31759. }
  31760. },
  31761. side: {
  31762. height: math.unit(8, "feet"),
  31763. weight: math.unit(900, "lb"),
  31764. name: "Side",
  31765. image: {
  31766. source: "./media/characters/owen/side.svg",
  31767. extra: 1797/1734,
  31768. bottom: 30/1827
  31769. }
  31770. },
  31771. back: {
  31772. height: math.unit(8, "feet"),
  31773. weight: math.unit(900, "lb"),
  31774. name: "Back",
  31775. image: {
  31776. source: "./media/characters/owen/back.svg",
  31777. extra: 1796/1706,
  31778. bottom: 59/1855
  31779. }
  31780. },
  31781. maw: {
  31782. height: math.unit(1.76, "feet"),
  31783. name: "Maw",
  31784. image: {
  31785. source: "./media/characters/owen/maw.svg"
  31786. }
  31787. },
  31788. },
  31789. [
  31790. {
  31791. name: "Normal",
  31792. height: math.unit(8, "feet"),
  31793. default: true
  31794. },
  31795. ]
  31796. ))
  31797. characterMakers.push(() => makeCharacter(
  31798. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31799. {
  31800. front: {
  31801. height: math.unit(4, "feet"),
  31802. weight: math.unit(400, "lb"),
  31803. name: "Front",
  31804. image: {
  31805. source: "./media/characters/ryth/front.svg",
  31806. extra: 1920/1748,
  31807. bottom: 42/1962
  31808. }
  31809. },
  31810. back: {
  31811. height: math.unit(4, "feet"),
  31812. weight: math.unit(400, "lb"),
  31813. name: "Back",
  31814. image: {
  31815. source: "./media/characters/ryth/back.svg",
  31816. extra: 1897/1690,
  31817. bottom: 89/1986
  31818. }
  31819. },
  31820. mouth: {
  31821. height: math.unit(1.39, "feet"),
  31822. name: "Mouth",
  31823. image: {
  31824. source: "./media/characters/ryth/mouth.svg"
  31825. }
  31826. },
  31827. tailmaw: {
  31828. height: math.unit(1.23, "feet"),
  31829. name: "Tailmaw",
  31830. image: {
  31831. source: "./media/characters/ryth/tailmaw.svg"
  31832. }
  31833. },
  31834. goia: {
  31835. height: math.unit(12, "feet"),
  31836. weight: math.unit(10800, "lb"),
  31837. name: "Goia",
  31838. image: {
  31839. source: "./media/characters/ryth/goia.svg",
  31840. extra: 3450/3198,
  31841. bottom: 61/3511
  31842. }
  31843. },
  31844. },
  31845. [
  31846. {
  31847. name: "Normal",
  31848. height: math.unit(4, "feet"),
  31849. default: true
  31850. },
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31855. {
  31856. front: {
  31857. height: math.unit(7, "feet"),
  31858. weight: math.unit(180, "lb"),
  31859. name: "Front",
  31860. image: {
  31861. source: "./media/characters/necrolance/front.svg",
  31862. extra: 1062/947,
  31863. bottom: 41/1103
  31864. }
  31865. },
  31866. back: {
  31867. height: math.unit(7, "feet"),
  31868. weight: math.unit(180, "lb"),
  31869. name: "Back",
  31870. image: {
  31871. source: "./media/characters/necrolance/back.svg",
  31872. extra: 1045/984,
  31873. bottom: 14/1059
  31874. }
  31875. },
  31876. wing: {
  31877. height: math.unit(2.67, "feet"),
  31878. name: "Wing",
  31879. image: {
  31880. source: "./media/characters/necrolance/wing.svg"
  31881. }
  31882. },
  31883. },
  31884. [
  31885. {
  31886. name: "Normal",
  31887. height: math.unit(7, "feet"),
  31888. default: true
  31889. },
  31890. ]
  31891. ))
  31892. characterMakers.push(() => makeCharacter(
  31893. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31894. {
  31895. front: {
  31896. height: math.unit(76, "meters"),
  31897. weight: math.unit(30000, "tons"),
  31898. name: "Front",
  31899. image: {
  31900. source: "./media/characters/tyler/front.svg",
  31901. extra: 1640/1640,
  31902. bottom: 114/1754
  31903. }
  31904. },
  31905. },
  31906. [
  31907. {
  31908. name: "Macro",
  31909. height: math.unit(76, "meters"),
  31910. default: true
  31911. },
  31912. ]
  31913. ))
  31914. characterMakers.push(() => makeCharacter(
  31915. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31916. {
  31917. front: {
  31918. height: math.unit(4 + 11/12, "feet"),
  31919. weight: math.unit(132, "lb"),
  31920. name: "Front",
  31921. image: {
  31922. source: "./media/characters/icey/front.svg",
  31923. extra: 2750/2550,
  31924. bottom: 33/2783
  31925. }
  31926. },
  31927. back: {
  31928. height: math.unit(4 + 11/12, "feet"),
  31929. weight: math.unit(132, "lb"),
  31930. name: "Back",
  31931. image: {
  31932. source: "./media/characters/icey/back.svg",
  31933. extra: 2624/2481,
  31934. bottom: 35/2659
  31935. }
  31936. },
  31937. },
  31938. [
  31939. {
  31940. name: "Normal",
  31941. height: math.unit(4 + 11/12, "feet"),
  31942. default: true
  31943. },
  31944. ]
  31945. ))
  31946. characterMakers.push(() => makeCharacter(
  31947. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31948. {
  31949. front: {
  31950. height: math.unit(100, "feet"),
  31951. weight: math.unit(0, "lb"),
  31952. name: "Front",
  31953. image: {
  31954. source: "./media/characters/smile/front.svg",
  31955. extra: 2983/2912,
  31956. bottom: 162/3145
  31957. }
  31958. },
  31959. back: {
  31960. height: math.unit(100, "feet"),
  31961. weight: math.unit(0, "lb"),
  31962. name: "Back",
  31963. image: {
  31964. source: "./media/characters/smile/back.svg",
  31965. extra: 3143/3031,
  31966. bottom: 91/3234
  31967. }
  31968. },
  31969. head: {
  31970. height: math.unit(26.3, "feet"),
  31971. weight: math.unit(0, "lb"),
  31972. name: "Head",
  31973. image: {
  31974. source: "./media/characters/smile/head.svg"
  31975. }
  31976. },
  31977. collar: {
  31978. height: math.unit(5.3, "feet"),
  31979. weight: math.unit(0, "lb"),
  31980. name: "Collar",
  31981. image: {
  31982. source: "./media/characters/smile/collar.svg"
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Macro",
  31989. height: math.unit(100, "feet"),
  31990. default: true
  31991. },
  31992. ]
  31993. ))
  31994. characterMakers.push(() => makeCharacter(
  31995. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31996. {
  31997. dragon: {
  31998. height: math.unit(26, "feet"),
  31999. weight: math.unit(36, "tons"),
  32000. name: "Dragon",
  32001. image: {
  32002. source: "./media/characters/arimphae/dragon.svg",
  32003. extra: 1574/983,
  32004. bottom: 357/1931
  32005. }
  32006. },
  32007. drake: {
  32008. height: math.unit(9, "feet"),
  32009. weight: math.unit(1.5, "tons"),
  32010. name: "Drake",
  32011. image: {
  32012. source: "./media/characters/arimphae/drake.svg",
  32013. extra: 1120/925,
  32014. bottom: 435/1555
  32015. }
  32016. },
  32017. },
  32018. [
  32019. {
  32020. name: "Small",
  32021. height: math.unit(26*5/9, "feet")
  32022. },
  32023. {
  32024. name: "Normal",
  32025. height: math.unit(26, "feet"),
  32026. default: true
  32027. },
  32028. ]
  32029. ))
  32030. characterMakers.push(() => makeCharacter(
  32031. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32032. {
  32033. front: {
  32034. height: math.unit(8 + 9/12, "feet"),
  32035. name: "Front",
  32036. image: {
  32037. source: "./media/characters/xander/front.svg",
  32038. extra: 848/673,
  32039. bottom: 62/910
  32040. }
  32041. },
  32042. },
  32043. [
  32044. {
  32045. name: "Normal",
  32046. height: math.unit(8 + 9/12, "feet"),
  32047. default: true
  32048. },
  32049. {
  32050. name: "Gaze Grabber",
  32051. height: math.unit(13 + 8/12, "feet")
  32052. },
  32053. {
  32054. name: "Jaw Dropper",
  32055. height: math.unit(27, "feet")
  32056. },
  32057. {
  32058. name: "Show Stopper",
  32059. height: math.unit(136, "feet")
  32060. },
  32061. {
  32062. name: "Superstar",
  32063. height: math.unit(1.9e6, "miles")
  32064. },
  32065. ]
  32066. ))
  32067. characterMakers.push(() => makeCharacter(
  32068. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32069. {
  32070. side: {
  32071. height: math.unit(2100, "feet"),
  32072. name: "Side",
  32073. image: {
  32074. source: "./media/characters/osiris/side.svg",
  32075. extra: 1105/939,
  32076. bottom: 167/1272
  32077. }
  32078. },
  32079. },
  32080. [
  32081. {
  32082. name: "Macro",
  32083. height: math.unit(2100, "feet"),
  32084. default: true
  32085. },
  32086. ]
  32087. ))
  32088. characterMakers.push(() => makeCharacter(
  32089. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32090. {
  32091. front: {
  32092. height: math.unit(6 + 8/12, "feet"),
  32093. weight: math.unit(225, "lb"),
  32094. name: "Front",
  32095. image: {
  32096. source: "./media/characters/rhys-londe/front.svg",
  32097. extra: 2258/2141,
  32098. bottom: 188/2446
  32099. }
  32100. },
  32101. back: {
  32102. height: math.unit(6 + 8/12, "feet"),
  32103. weight: math.unit(225, "lb"),
  32104. name: "Back",
  32105. image: {
  32106. source: "./media/characters/rhys-londe/back.svg",
  32107. extra: 2237/2137,
  32108. bottom: 63/2300
  32109. }
  32110. },
  32111. frontNsfw: {
  32112. height: math.unit(6 + 8/12, "feet"),
  32113. weight: math.unit(225, "lb"),
  32114. name: "Front (NSFW)",
  32115. image: {
  32116. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32117. extra: 2258/2141,
  32118. bottom: 188/2446
  32119. }
  32120. },
  32121. backNsfw: {
  32122. height: math.unit(6 + 8/12, "feet"),
  32123. weight: math.unit(225, "lb"),
  32124. name: "Back (NSFW)",
  32125. image: {
  32126. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32127. extra: 2237/2137,
  32128. bottom: 63/2300
  32129. }
  32130. },
  32131. dick: {
  32132. height: math.unit(30, "inches"),
  32133. name: "Dick",
  32134. image: {
  32135. source: "./media/characters/rhys-londe/dick.svg"
  32136. }
  32137. },
  32138. maw: {
  32139. height: math.unit(1.6, "feet"),
  32140. name: "Maw",
  32141. image: {
  32142. source: "./media/characters/rhys-londe/maw.svg"
  32143. }
  32144. },
  32145. },
  32146. [
  32147. {
  32148. name: "Normal",
  32149. height: math.unit(6 + 8/12, "feet"),
  32150. default: true
  32151. },
  32152. ]
  32153. ))
  32154. characterMakers.push(() => makeCharacter(
  32155. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32156. {
  32157. front: {
  32158. height: math.unit(3 + 10/12, "feet"),
  32159. weight: math.unit(90, "lb"),
  32160. name: "Front",
  32161. image: {
  32162. source: "./media/characters/taivas-ensim/front.svg",
  32163. extra: 1327/1216,
  32164. bottom: 96/1423
  32165. }
  32166. },
  32167. back: {
  32168. height: math.unit(3 + 10/12, "feet"),
  32169. weight: math.unit(90, "lb"),
  32170. name: "Back",
  32171. image: {
  32172. source: "./media/characters/taivas-ensim/back.svg",
  32173. extra: 1355/1247,
  32174. bottom: 11/1366
  32175. }
  32176. },
  32177. frontNsfw: {
  32178. height: math.unit(3 + 10/12, "feet"),
  32179. weight: math.unit(90, "lb"),
  32180. name: "Front (NSFW)",
  32181. image: {
  32182. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32183. extra: 1327/1216,
  32184. bottom: 96/1423
  32185. }
  32186. },
  32187. backNsfw: {
  32188. height: math.unit(3 + 10/12, "feet"),
  32189. weight: math.unit(90, "lb"),
  32190. name: "Back (NSFW)",
  32191. image: {
  32192. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32193. extra: 1355/1247,
  32194. bottom: 11/1366
  32195. }
  32196. },
  32197. },
  32198. [
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(3 + 10/12, "feet"),
  32202. default: true
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32208. {
  32209. front: {
  32210. height: math.unit(9 + 6/12, "feet"),
  32211. weight: math.unit(940, "lb"),
  32212. name: "Front",
  32213. image: {
  32214. source: "./media/characters/byliss/front.svg",
  32215. extra: 1327/1290,
  32216. bottom: 82/1409
  32217. }
  32218. },
  32219. back: {
  32220. height: math.unit(9 + 6/12, "feet"),
  32221. weight: math.unit(940, "lb"),
  32222. name: "Back",
  32223. image: {
  32224. source: "./media/characters/byliss/back.svg",
  32225. extra: 1376/1349,
  32226. bottom: 9/1385
  32227. }
  32228. },
  32229. frontNsfw: {
  32230. height: math.unit(9 + 6/12, "feet"),
  32231. weight: math.unit(940, "lb"),
  32232. name: "Front (NSFW)",
  32233. image: {
  32234. source: "./media/characters/byliss/front-nsfw.svg",
  32235. extra: 1327/1290,
  32236. bottom: 82/1409
  32237. }
  32238. },
  32239. backNsfw: {
  32240. height: math.unit(9 + 6/12, "feet"),
  32241. weight: math.unit(940, "lb"),
  32242. name: "Back (NSFW)",
  32243. image: {
  32244. source: "./media/characters/byliss/back-nsfw.svg",
  32245. extra: 1376/1349,
  32246. bottom: 9/1385
  32247. }
  32248. },
  32249. },
  32250. [
  32251. {
  32252. name: "Normal",
  32253. height: math.unit(9 + 6/12, "feet"),
  32254. default: true
  32255. },
  32256. ]
  32257. ))
  32258. characterMakers.push(() => makeCharacter(
  32259. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32260. {
  32261. front: {
  32262. height: math.unit(5 + 2/12, "feet"),
  32263. weight: math.unit(200, "lb"),
  32264. name: "Front",
  32265. image: {
  32266. source: "./media/characters/noraly/front.svg",
  32267. extra: 4985/4773,
  32268. bottom: 150/5135
  32269. }
  32270. },
  32271. full: {
  32272. height: math.unit(5 + 2/12, "feet"),
  32273. weight: math.unit(164, "lb"),
  32274. name: "Full",
  32275. image: {
  32276. source: "./media/characters/noraly/full.svg",
  32277. extra: 1114/1059,
  32278. bottom: 35/1149
  32279. }
  32280. },
  32281. fuller: {
  32282. height: math.unit(5 + 2/12, "feet"),
  32283. weight: math.unit(230, "lb"),
  32284. name: "Fuller",
  32285. image: {
  32286. source: "./media/characters/noraly/fuller.svg",
  32287. extra: 1114/1059,
  32288. bottom: 35/1149
  32289. }
  32290. },
  32291. fullest: {
  32292. height: math.unit(5 + 2/12, "feet"),
  32293. weight: math.unit(300, "lb"),
  32294. name: "Fullest",
  32295. image: {
  32296. source: "./media/characters/noraly/fullest.svg",
  32297. extra: 1114/1059,
  32298. bottom: 35/1149
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Normal",
  32305. height: math.unit(5 + 2/12, "feet"),
  32306. default: true
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32312. {
  32313. front: {
  32314. height: math.unit(5 + 2/12, "feet"),
  32315. weight: math.unit(210, "lb"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/pera/front.svg",
  32319. extra: 1560/1531,
  32320. bottom: 165/1725
  32321. }
  32322. },
  32323. back: {
  32324. height: math.unit(5 + 2/12, "feet"),
  32325. weight: math.unit(210, "lb"),
  32326. name: "Back",
  32327. image: {
  32328. source: "./media/characters/pera/back.svg",
  32329. extra: 1523/1493,
  32330. bottom: 152/1675
  32331. }
  32332. },
  32333. dick: {
  32334. height: math.unit(2.4, "feet"),
  32335. name: "Dick",
  32336. image: {
  32337. source: "./media/characters/pera/dick.svg"
  32338. }
  32339. },
  32340. },
  32341. [
  32342. {
  32343. name: "Normal",
  32344. height: math.unit(5 + 2/12, "feet"),
  32345. default: true
  32346. },
  32347. ]
  32348. ))
  32349. characterMakers.push(() => makeCharacter(
  32350. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32351. {
  32352. front: {
  32353. height: math.unit(12, "feet"),
  32354. weight: math.unit(3200, "lb"),
  32355. name: "Front",
  32356. image: {
  32357. source: "./media/characters/julian/front.svg",
  32358. extra: 2962/2701,
  32359. bottom: 184/3146
  32360. }
  32361. },
  32362. maw: {
  32363. height: math.unit(5.35, "feet"),
  32364. name: "Maw",
  32365. image: {
  32366. source: "./media/characters/julian/maw.svg"
  32367. }
  32368. },
  32369. paw: {
  32370. height: math.unit(3.07, "feet"),
  32371. name: "Paw",
  32372. image: {
  32373. source: "./media/characters/julian/paw.svg"
  32374. }
  32375. },
  32376. },
  32377. [
  32378. {
  32379. name: "Default",
  32380. height: math.unit(12, "feet"),
  32381. default: true
  32382. },
  32383. {
  32384. name: "Big",
  32385. height: math.unit(50, "feet")
  32386. },
  32387. {
  32388. name: "Really Big",
  32389. height: math.unit(1, "mile")
  32390. },
  32391. {
  32392. name: "Extremely Big",
  32393. height: math.unit(100, "miles")
  32394. },
  32395. {
  32396. name: "Planet Hugger",
  32397. height: math.unit(200, "megameters")
  32398. },
  32399. {
  32400. name: "Unreasonably Big",
  32401. height: math.unit(1e300, "meters")
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32407. {
  32408. solgooleo: {
  32409. height: math.unit(4, "meters"),
  32410. weight: math.unit(6000*1.5, "kg"),
  32411. volume: math.unit(6000, "liters"),
  32412. name: "Solgooleo",
  32413. image: {
  32414. source: "./media/characters/pi/solgooleo.svg",
  32415. extra: 388/331,
  32416. bottom: 29/417
  32417. }
  32418. },
  32419. },
  32420. [
  32421. {
  32422. name: "Normal",
  32423. height: math.unit(4, "meters"),
  32424. default: true
  32425. },
  32426. ]
  32427. ))
  32428. characterMakers.push(() => makeCharacter(
  32429. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32430. {
  32431. front: {
  32432. height: math.unit(8 + 2/12, "feet"),
  32433. weight: math.unit(4, "tons"),
  32434. name: "Front",
  32435. image: {
  32436. source: "./media/characters/shaun/front.svg",
  32437. extra: 1550/1505,
  32438. bottom: 353/1903
  32439. }
  32440. },
  32441. },
  32442. [
  32443. {
  32444. name: "Lorg",
  32445. height: math.unit(8 + 2/12, "feet"),
  32446. default: true
  32447. },
  32448. ]
  32449. ))
  32450. characterMakers.push(() => makeCharacter(
  32451. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32452. {
  32453. front: {
  32454. height: math.unit(7, "feet"),
  32455. name: "Front",
  32456. image: {
  32457. source: "./media/characters/sini/front.svg",
  32458. extra: 726/678,
  32459. bottom: 35/761
  32460. }
  32461. },
  32462. back: {
  32463. height: math.unit(7, "feet"),
  32464. name: "Back",
  32465. image: {
  32466. source: "./media/characters/sini/back.svg",
  32467. extra: 743/701,
  32468. bottom: 12/755
  32469. }
  32470. },
  32471. mawAnthro: {
  32472. height: math.unit(2.14, "feet"),
  32473. name: "Maw (Anthro)",
  32474. image: {
  32475. source: "./media/characters/sini/maw-anthro.svg"
  32476. }
  32477. },
  32478. dick: {
  32479. height: math.unit(1.45, "feet"),
  32480. name: "Dick (Anthro)",
  32481. image: {
  32482. source: "./media/characters/sini/dick-anthro.svg"
  32483. }
  32484. },
  32485. feral: {
  32486. height: math.unit(16, "feet"),
  32487. name: "Feral",
  32488. image: {
  32489. source: "./media/characters/sini/feral.svg",
  32490. extra: 814/605,
  32491. bottom: 11/825
  32492. }
  32493. },
  32494. mawFeral: {
  32495. height: math.unit(5.66, "feet"),
  32496. name: "Maw-feral",
  32497. image: {
  32498. source: "./media/characters/sini/maw-feral.svg"
  32499. }
  32500. },
  32501. footFeral: {
  32502. height: math.unit(5.17, "feet"),
  32503. name: "Foot-feral",
  32504. image: {
  32505. source: "./media/characters/sini/foot-feral.svg"
  32506. }
  32507. },
  32508. },
  32509. [
  32510. {
  32511. name: "Normal",
  32512. height: math.unit(7, "feet"),
  32513. default: true
  32514. },
  32515. ]
  32516. ))
  32517. characterMakers.push(() => makeCharacter(
  32518. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32519. {
  32520. side: {
  32521. height: math.unit(13, "meters"),
  32522. weight: math.unit(9072, "kg"),
  32523. name: "Side",
  32524. image: {
  32525. source: "./media/characters/raylldo/side.svg",
  32526. extra: 403/344,
  32527. bottom: 42/445
  32528. }
  32529. },
  32530. leaping: {
  32531. height: math.unit(12.3, "meters"),
  32532. weight: math.unit(9072, "kg"),
  32533. name: "Leaping",
  32534. image: {
  32535. source: "./media/characters/raylldo/leaping.svg",
  32536. extra: 470/249,
  32537. bottom: 13/483
  32538. }
  32539. },
  32540. flying: {
  32541. height: math.unit(18, "meters"),
  32542. weight: math.unit(9072, "kg"),
  32543. name: "Flying",
  32544. image: {
  32545. source: "./media/characters/raylldo/flying.svg"
  32546. }
  32547. },
  32548. head: {
  32549. height: math.unit(5.85, "meters"),
  32550. name: "Head",
  32551. image: {
  32552. source: "./media/characters/raylldo/head.svg"
  32553. }
  32554. },
  32555. maw: {
  32556. height: math.unit(5.32, "meters"),
  32557. name: "Maw",
  32558. image: {
  32559. source: "./media/characters/raylldo/maw.svg"
  32560. }
  32561. },
  32562. eye: {
  32563. height: math.unit(0.54, "meters"),
  32564. name: "Eye",
  32565. image: {
  32566. source: "./media/characters/raylldo/eye.svg"
  32567. }
  32568. },
  32569. },
  32570. [
  32571. {
  32572. name: "Normal",
  32573. height: math.unit(13, "meters"),
  32574. default: true
  32575. },
  32576. ]
  32577. ))
  32578. characterMakers.push(() => makeCharacter(
  32579. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32580. {
  32581. anthroFront: {
  32582. height: math.unit(9, "feet"),
  32583. weight: math.unit(600, "lb"),
  32584. name: "Anthro (Front)",
  32585. image: {
  32586. source: "./media/characters/glint/anthro-front.svg",
  32587. extra: 1097/1018,
  32588. bottom: 28/1125
  32589. }
  32590. },
  32591. anthroBack: {
  32592. height: math.unit(9, "feet"),
  32593. weight: math.unit(600, "lb"),
  32594. name: "Anthro (Back)",
  32595. image: {
  32596. source: "./media/characters/glint/anthro-back.svg",
  32597. extra: 1154/997,
  32598. bottom: 36/1190
  32599. }
  32600. },
  32601. feral: {
  32602. height: math.unit(11, "feet"),
  32603. weight: math.unit(50000, "lb"),
  32604. name: "Feral",
  32605. image: {
  32606. source: "./media/characters/glint/feral.svg",
  32607. extra: 3035/1585,
  32608. bottom: 1169/4204
  32609. }
  32610. },
  32611. dickAnthro: {
  32612. height: math.unit(0.7, "meters"),
  32613. name: "Dick (Anthro)",
  32614. image: {
  32615. source: "./media/characters/glint/dick-anthro.svg"
  32616. }
  32617. },
  32618. dickFeral: {
  32619. height: math.unit(2.65, "meters"),
  32620. name: "Dick (Feral)",
  32621. image: {
  32622. source: "./media/characters/glint/dick-feral.svg"
  32623. }
  32624. },
  32625. slitHidden: {
  32626. height: math.unit(5.85, "meters"),
  32627. name: "Slit (Hidden)",
  32628. image: {
  32629. source: "./media/characters/glint/slit-hidden.svg"
  32630. }
  32631. },
  32632. slitErect: {
  32633. height: math.unit(5.85, "meters"),
  32634. name: "Slit (Erect)",
  32635. image: {
  32636. source: "./media/characters/glint/slit-erect.svg"
  32637. }
  32638. },
  32639. mawAnthro: {
  32640. height: math.unit(0.63, "meters"),
  32641. name: "Maw (Anthro)",
  32642. image: {
  32643. source: "./media/characters/glint/maw.svg"
  32644. }
  32645. },
  32646. mawFeral: {
  32647. height: math.unit(2.89, "meters"),
  32648. name: "Maw (Feral)",
  32649. image: {
  32650. source: "./media/characters/glint/maw.svg"
  32651. }
  32652. },
  32653. },
  32654. [
  32655. {
  32656. name: "Normal",
  32657. height: math.unit(9, "feet"),
  32658. default: true
  32659. },
  32660. ]
  32661. ))
  32662. characterMakers.push(() => makeCharacter(
  32663. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32664. {
  32665. side: {
  32666. height: math.unit(15, "feet"),
  32667. weight: math.unit(5000, "kg"),
  32668. name: "Side",
  32669. image: {
  32670. source: "./media/characters/kairne/side.svg",
  32671. extra: 979/811,
  32672. bottom: 13/992
  32673. }
  32674. },
  32675. front: {
  32676. height: math.unit(15, "feet"),
  32677. weight: math.unit(5000, "kg"),
  32678. name: "Front",
  32679. image: {
  32680. source: "./media/characters/kairne/front.svg",
  32681. extra: 908/814,
  32682. bottom: 26/934
  32683. }
  32684. },
  32685. sideNsfw: {
  32686. height: math.unit(15, "feet"),
  32687. weight: math.unit(5000, "kg"),
  32688. name: "Side (NSFW)",
  32689. image: {
  32690. source: "./media/characters/kairne/side-nsfw.svg",
  32691. extra: 979/811,
  32692. bottom: 13/992
  32693. }
  32694. },
  32695. frontNsfw: {
  32696. height: math.unit(15, "feet"),
  32697. weight: math.unit(5000, "kg"),
  32698. name: "Front (NSFW)",
  32699. image: {
  32700. source: "./media/characters/kairne/front-nsfw.svg",
  32701. extra: 908/814,
  32702. bottom: 26/934
  32703. }
  32704. },
  32705. dickCaged: {
  32706. height: math.unit(0.65, "meters"),
  32707. name: "Dick-caged",
  32708. image: {
  32709. source: "./media/characters/kairne/dick-caged.svg"
  32710. }
  32711. },
  32712. dick: {
  32713. height: math.unit(0.79, "meters"),
  32714. name: "Dick",
  32715. image: {
  32716. source: "./media/characters/kairne/dick.svg"
  32717. }
  32718. },
  32719. genitals: {
  32720. height: math.unit(1.29, "meters"),
  32721. name: "Genitals",
  32722. image: {
  32723. source: "./media/characters/kairne/genitals.svg"
  32724. }
  32725. },
  32726. maw: {
  32727. height: math.unit(1.73, "meters"),
  32728. name: "Maw",
  32729. image: {
  32730. source: "./media/characters/kairne/maw.svg"
  32731. }
  32732. },
  32733. },
  32734. [
  32735. {
  32736. name: "Normal",
  32737. height: math.unit(15, "feet"),
  32738. default: true
  32739. },
  32740. ]
  32741. ))
  32742. characterMakers.push(() => makeCharacter(
  32743. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32744. {
  32745. front: {
  32746. height: math.unit(5 + 8/12, "feet"),
  32747. weight: math.unit(139, "lb"),
  32748. name: "Front",
  32749. image: {
  32750. source: "./media/characters/biscuit-jackal/front.svg",
  32751. extra: 2106/1961,
  32752. bottom: 58/2164
  32753. }
  32754. },
  32755. back: {
  32756. height: math.unit(5 + 8/12, "feet"),
  32757. weight: math.unit(139, "lb"),
  32758. name: "Back",
  32759. image: {
  32760. source: "./media/characters/biscuit-jackal/back.svg",
  32761. extra: 2132/1976,
  32762. bottom: 57/2189
  32763. }
  32764. },
  32765. werejackal: {
  32766. height: math.unit(6 + 3/12, "feet"),
  32767. weight: math.unit(188, "lb"),
  32768. name: "Werejackal",
  32769. image: {
  32770. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32771. extra: 2373/2178,
  32772. bottom: 53/2426
  32773. }
  32774. },
  32775. },
  32776. [
  32777. {
  32778. name: "Normal",
  32779. height: math.unit(5 + 8/12, "feet"),
  32780. default: true
  32781. },
  32782. ]
  32783. ))
  32784. characterMakers.push(() => makeCharacter(
  32785. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32786. {
  32787. front: {
  32788. height: math.unit(140, "cm"),
  32789. weight: math.unit(45, "kg"),
  32790. name: "Front",
  32791. image: {
  32792. source: "./media/characters/tayra-white/front.svg",
  32793. extra: 2229/2192,
  32794. bottom: 75/2304
  32795. }
  32796. },
  32797. },
  32798. [
  32799. {
  32800. name: "Normal",
  32801. height: math.unit(140, "cm"),
  32802. default: true
  32803. },
  32804. ]
  32805. ))
  32806. characterMakers.push(() => makeCharacter(
  32807. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32808. {
  32809. front: {
  32810. height: math.unit(4 + 5/12, "feet"),
  32811. name: "Front",
  32812. image: {
  32813. source: "./media/characters/scoop/front.svg",
  32814. extra: 1257/1136,
  32815. bottom: 69/1326
  32816. }
  32817. },
  32818. back: {
  32819. height: math.unit(4 + 5/12, "feet"),
  32820. name: "Back",
  32821. image: {
  32822. source: "./media/characters/scoop/back.svg",
  32823. extra: 1321/1152,
  32824. bottom: 32/1353
  32825. }
  32826. },
  32827. maw: {
  32828. height: math.unit(0.68, "feet"),
  32829. name: "Maw",
  32830. image: {
  32831. source: "./media/characters/scoop/maw.svg"
  32832. }
  32833. },
  32834. },
  32835. [
  32836. {
  32837. name: "Really Small",
  32838. height: math.unit(1, "mm")
  32839. },
  32840. {
  32841. name: "Micro",
  32842. height: math.unit(1, "inch")
  32843. },
  32844. {
  32845. name: "Normal",
  32846. height: math.unit(4 + 5/12, "feet"),
  32847. default: true
  32848. },
  32849. {
  32850. name: "Macro",
  32851. height: math.unit(200, "feet")
  32852. },
  32853. {
  32854. name: "Megamacro",
  32855. height: math.unit(3240, "feet")
  32856. },
  32857. {
  32858. name: "Teramacro",
  32859. height: math.unit(2500, "miles")
  32860. },
  32861. ]
  32862. ))
  32863. characterMakers.push(() => makeCharacter(
  32864. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32865. {
  32866. front: {
  32867. height: math.unit(15 + 7/12, "feet"),
  32868. name: "Front",
  32869. image: {
  32870. source: "./media/characters/saphinara/front.svg",
  32871. extra: 604/546,
  32872. bottom: 19/623
  32873. }
  32874. },
  32875. side: {
  32876. height: math.unit(15 + 7/12, "feet"),
  32877. name: "Side",
  32878. image: {
  32879. source: "./media/characters/saphinara/side.svg",
  32880. extra: 605/547,
  32881. bottom: 6/611
  32882. }
  32883. },
  32884. back: {
  32885. height: math.unit(15 + 7/12, "feet"),
  32886. name: "Back",
  32887. image: {
  32888. source: "./media/characters/saphinara/back.svg",
  32889. extra: 591/531,
  32890. bottom: 13/604
  32891. }
  32892. },
  32893. frontTail: {
  32894. height: math.unit(15 + 7/12, "feet"),
  32895. name: "Front (Full Tail)",
  32896. image: {
  32897. source: "./media/characters/saphinara/front-tail.svg",
  32898. extra: 748/547,
  32899. bottom: 66/814
  32900. }
  32901. },
  32902. },
  32903. [
  32904. {
  32905. name: "Normal",
  32906. height: math.unit(15 + 7/12, "feet"),
  32907. default: true
  32908. },
  32909. {
  32910. name: "Angry",
  32911. height: math.unit(30 + 6/12, "feet")
  32912. },
  32913. {
  32914. name: "Enraged",
  32915. height: math.unit(102 + 1/12, "feet")
  32916. },
  32917. ]
  32918. ))
  32919. characterMakers.push(() => makeCharacter(
  32920. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32921. {
  32922. front: {
  32923. height: math.unit(6 + 8/12, "feet"),
  32924. weight: math.unit(300, "lb"),
  32925. name: "Front",
  32926. image: {
  32927. source: "./media/characters/jrain/front.svg",
  32928. extra: 3039/2865,
  32929. bottom: 399/3438
  32930. }
  32931. },
  32932. back: {
  32933. height: math.unit(6 + 8/12, "feet"),
  32934. weight: math.unit(300, "lb"),
  32935. name: "Back",
  32936. image: {
  32937. source: "./media/characters/jrain/back.svg",
  32938. extra: 3089/2938,
  32939. bottom: 172/3261
  32940. }
  32941. },
  32942. head: {
  32943. height: math.unit(2.14, "feet"),
  32944. name: "Head",
  32945. image: {
  32946. source: "./media/characters/jrain/head.svg"
  32947. }
  32948. },
  32949. maw: {
  32950. height: math.unit(1.77, "feet"),
  32951. name: "Maw",
  32952. image: {
  32953. source: "./media/characters/jrain/maw.svg"
  32954. }
  32955. },
  32956. leftHand: {
  32957. height: math.unit(1.1, "feet"),
  32958. name: "Left Hand",
  32959. image: {
  32960. source: "./media/characters/jrain/left-hand.svg"
  32961. }
  32962. },
  32963. rightHand: {
  32964. height: math.unit(1.1, "feet"),
  32965. name: "Right Hand",
  32966. image: {
  32967. source: "./media/characters/jrain/right-hand.svg"
  32968. }
  32969. },
  32970. eye: {
  32971. height: math.unit(0.35, "feet"),
  32972. name: "Eye",
  32973. image: {
  32974. source: "./media/characters/jrain/eye.svg"
  32975. }
  32976. },
  32977. },
  32978. [
  32979. {
  32980. name: "Normal",
  32981. height: math.unit(6 + 8/12, "feet"),
  32982. default: true
  32983. },
  32984. {
  32985. name: "Casually Large",
  32986. height: math.unit(25, "feet")
  32987. },
  32988. {
  32989. name: "Giant",
  32990. height: math.unit(100, "feet")
  32991. },
  32992. {
  32993. name: "Kaiju",
  32994. height: math.unit(300, "feet")
  32995. },
  32996. ]
  32997. ))
  32998. characterMakers.push(() => makeCharacter(
  32999. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33000. {
  33001. dragon: {
  33002. height: math.unit(5, "meters"),
  33003. name: "Dragon",
  33004. image: {
  33005. source: "./media/characters/sabrina/dragon.svg",
  33006. extra: 3670 / 2365,
  33007. bottom: 333 / 4003
  33008. }
  33009. },
  33010. gryphon: {
  33011. height: math.unit(3, "meters"),
  33012. name: "Gryphon",
  33013. image: {
  33014. source: "./media/characters/sabrina/gryphon.svg",
  33015. extra: 1576 / 945,
  33016. bottom: 71 / 1647
  33017. }
  33018. },
  33019. snake: {
  33020. height: math.unit(12, "meters"),
  33021. name: "Snake",
  33022. image: {
  33023. source: "./media/characters/sabrina/snake.svg",
  33024. extra: 1758 / 1320,
  33025. bottom: 186 / 1944
  33026. }
  33027. },
  33028. collar: {
  33029. height: math.unit(1.86, "meters"),
  33030. name: "Collar",
  33031. image: {
  33032. source: "./media/characters/sabrina/collar.svg"
  33033. }
  33034. },
  33035. eye: {
  33036. height: math.unit(0.53, "meters"),
  33037. name: "Eye",
  33038. image: {
  33039. source: "./media/characters/sabrina/eye.svg"
  33040. }
  33041. },
  33042. foot: {
  33043. height: math.unit(1.86, "meters"),
  33044. name: "Foot",
  33045. image: {
  33046. source: "./media/characters/sabrina/foot.svg"
  33047. }
  33048. },
  33049. hand: {
  33050. height: math.unit(1.32, "meters"),
  33051. name: "Hand",
  33052. image: {
  33053. source: "./media/characters/sabrina/hand.svg"
  33054. }
  33055. },
  33056. head: {
  33057. height: math.unit(2.44, "meters"),
  33058. name: "Head",
  33059. image: {
  33060. source: "./media/characters/sabrina/head.svg"
  33061. }
  33062. },
  33063. headAngry: {
  33064. height: math.unit(2.44, "meters"),
  33065. name: "Head (Angry))",
  33066. image: {
  33067. source: "./media/characters/sabrina/head-angry.svg"
  33068. }
  33069. },
  33070. maw: {
  33071. height: math.unit(1.65, "meters"),
  33072. name: "Maw",
  33073. image: {
  33074. source: "./media/characters/sabrina/maw.svg"
  33075. }
  33076. },
  33077. spikes: {
  33078. height: math.unit(1.69, "meters"),
  33079. name: "Spikes",
  33080. image: {
  33081. source: "./media/characters/sabrina/spikes.svg"
  33082. }
  33083. },
  33084. stomach: {
  33085. height: math.unit(1.15, "meters"),
  33086. name: "Stomach",
  33087. image: {
  33088. source: "./media/characters/sabrina/stomach.svg"
  33089. }
  33090. },
  33091. tongue: {
  33092. height: math.unit(1.27, "meters"),
  33093. name: "Tongue",
  33094. image: {
  33095. source: "./media/characters/sabrina/tongue.svg"
  33096. }
  33097. },
  33098. wingDorsal: {
  33099. height: math.unit(4.85, "meters"),
  33100. name: "Wing (Dorsal)",
  33101. image: {
  33102. source: "./media/characters/sabrina/wing-dorsal.svg"
  33103. }
  33104. },
  33105. wingVentral: {
  33106. height: math.unit(4.85, "meters"),
  33107. name: "Wing (Ventral)",
  33108. image: {
  33109. source: "./media/characters/sabrina/wing-ventral.svg"
  33110. }
  33111. },
  33112. },
  33113. [
  33114. {
  33115. name: "Normal",
  33116. height: math.unit(5, "meters"),
  33117. default: true
  33118. },
  33119. ]
  33120. ))
  33121. characterMakers.push(() => makeCharacter(
  33122. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33123. {
  33124. frontMaid: {
  33125. height: math.unit(5 + 5/12, "feet"),
  33126. weight: math.unit(130, "lb"),
  33127. name: "Front (Maid)",
  33128. image: {
  33129. source: "./media/characters/midnight-tales/front-maid.svg",
  33130. extra: 489/454,
  33131. bottom: 61/550
  33132. }
  33133. },
  33134. frontFormal: {
  33135. height: math.unit(5 + 5/12, "feet"),
  33136. weight: math.unit(130, "lb"),
  33137. name: "Front (Formal)",
  33138. image: {
  33139. source: "./media/characters/midnight-tales/front-formal.svg",
  33140. extra: 489/454,
  33141. bottom: 61/550
  33142. }
  33143. },
  33144. back: {
  33145. height: math.unit(5 + 5/12, "feet"),
  33146. weight: math.unit(130, "lb"),
  33147. name: "Back",
  33148. image: {
  33149. source: "./media/characters/midnight-tales/back.svg",
  33150. extra: 498/456,
  33151. bottom: 33/531
  33152. }
  33153. },
  33154. frontBeast: {
  33155. height: math.unit(40, "feet"),
  33156. weight: math.unit(64000, "lb"),
  33157. name: "Front (Beast)",
  33158. image: {
  33159. source: "./media/characters/midnight-tales/front-beast.svg",
  33160. extra: 927/860,
  33161. bottom: 53/980
  33162. }
  33163. },
  33164. backBeast: {
  33165. height: math.unit(40, "feet"),
  33166. weight: math.unit(64000, "lb"),
  33167. name: "Back (Beast)",
  33168. image: {
  33169. source: "./media/characters/midnight-tales/back-beast.svg",
  33170. extra: 929/855,
  33171. bottom: 16/945
  33172. }
  33173. },
  33174. footBeast: {
  33175. height: math.unit(6.7, "feet"),
  33176. name: "Foot (Beast)",
  33177. image: {
  33178. source: "./media/characters/midnight-tales/foot-beast.svg"
  33179. }
  33180. },
  33181. headBeast: {
  33182. height: math.unit(8, "feet"),
  33183. name: "Head (Beast)",
  33184. image: {
  33185. source: "./media/characters/midnight-tales/head-beast.svg"
  33186. }
  33187. },
  33188. },
  33189. [
  33190. {
  33191. name: "Normal",
  33192. height: math.unit(5 + 5 / 12, "feet"),
  33193. default: true
  33194. },
  33195. {
  33196. name: "Macro",
  33197. height: math.unit(25, "feet")
  33198. },
  33199. ]
  33200. ))
  33201. characterMakers.push(() => makeCharacter(
  33202. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33203. {
  33204. front: {
  33205. height: math.unit(5 + 10/12, "feet"),
  33206. name: "Front",
  33207. image: {
  33208. source: "./media/characters/argon/front.svg",
  33209. extra: 2009/1935,
  33210. bottom: 118/2127
  33211. }
  33212. },
  33213. back: {
  33214. height: math.unit(5 + 10/12, "feet"),
  33215. name: "Back",
  33216. image: {
  33217. source: "./media/characters/argon/back.svg",
  33218. extra: 2047/1992,
  33219. bottom: 20/2067
  33220. }
  33221. },
  33222. frontDressed: {
  33223. height: math.unit(5 + 10/12, "feet"),
  33224. name: "Front (Dressed)",
  33225. image: {
  33226. source: "./media/characters/argon/front-dressed.svg",
  33227. extra: 2009/1935,
  33228. bottom: 118/2127
  33229. }
  33230. },
  33231. },
  33232. [
  33233. {
  33234. name: "Normal",
  33235. height: math.unit(5 + 10/12, "feet"),
  33236. default: true
  33237. },
  33238. ]
  33239. ))
  33240. characterMakers.push(() => makeCharacter(
  33241. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33242. {
  33243. front: {
  33244. height: math.unit(8 + 6/12, "feet"),
  33245. weight: math.unit(1150, "lb"),
  33246. name: "Front",
  33247. image: {
  33248. source: "./media/characters/kichi/front.svg",
  33249. extra: 1267/1164,
  33250. bottom: 61/1328
  33251. }
  33252. },
  33253. back: {
  33254. height: math.unit(8 + 6/12, "feet"),
  33255. weight: math.unit(1150, "lb"),
  33256. name: "Back",
  33257. image: {
  33258. source: "./media/characters/kichi/back.svg",
  33259. extra: 1273/1166,
  33260. bottom: 33/1306
  33261. }
  33262. },
  33263. },
  33264. [
  33265. {
  33266. name: "Normal",
  33267. height: math.unit(8 + 6/12, "feet"),
  33268. default: true
  33269. },
  33270. ]
  33271. ))
  33272. characterMakers.push(() => makeCharacter(
  33273. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33274. {
  33275. front: {
  33276. height: math.unit(6, "feet"),
  33277. weight: math.unit(210, "lb"),
  33278. name: "Front",
  33279. image: {
  33280. source: "./media/characters/manetel-greyscale/front.svg",
  33281. extra: 350/312,
  33282. bottom: 8/358
  33283. }
  33284. },
  33285. },
  33286. [
  33287. {
  33288. name: "Micro",
  33289. height: math.unit(2, "inches")
  33290. },
  33291. {
  33292. name: "Normal",
  33293. height: math.unit(6, "feet"),
  33294. default: true
  33295. },
  33296. {
  33297. name: "Minimacro",
  33298. height: math.unit(17, "feet")
  33299. },
  33300. {
  33301. name: "Macro",
  33302. height: math.unit(117, "feet")
  33303. },
  33304. ]
  33305. ))
  33306. characterMakers.push(() => makeCharacter(
  33307. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33308. {
  33309. side: {
  33310. height: math.unit(5 + 1/12, "feet"),
  33311. weight: math.unit(418, "lb"),
  33312. name: "Side",
  33313. image: {
  33314. source: "./media/characters/softpurr/side.svg",
  33315. extra: 1993/1945,
  33316. bottom: 134/2127
  33317. }
  33318. },
  33319. front: {
  33320. height: math.unit(5 + 1/12, "feet"),
  33321. weight: math.unit(418, "lb"),
  33322. name: "Front",
  33323. image: {
  33324. source: "./media/characters/softpurr/front.svg",
  33325. extra: 1950/1856,
  33326. bottom: 174/2124
  33327. }
  33328. },
  33329. paw: {
  33330. height: math.unit(1, "feet"),
  33331. name: "Paw",
  33332. image: {
  33333. source: "./media/characters/softpurr/paw.svg"
  33334. }
  33335. },
  33336. },
  33337. [
  33338. {
  33339. name: "Normal",
  33340. height: math.unit(5 + 1/12, "feet"),
  33341. default: true
  33342. },
  33343. ]
  33344. ))
  33345. characterMakers.push(() => makeCharacter(
  33346. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33347. {
  33348. front: {
  33349. height: math.unit(260, "meters"),
  33350. name: "Front",
  33351. image: {
  33352. source: "./media/characters/anahita/front.svg",
  33353. extra: 665/635,
  33354. bottom: 89/754
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Macro",
  33361. height: math.unit(260, "meters"),
  33362. default: true
  33363. },
  33364. ]
  33365. ))
  33366. characterMakers.push(() => makeCharacter(
  33367. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33368. {
  33369. front: {
  33370. height: math.unit(4 + 10/12, "feet"),
  33371. weight: math.unit(160, "lb"),
  33372. name: "Front",
  33373. image: {
  33374. source: "./media/characters/chip-mouse/front.svg",
  33375. extra: 3528/3408,
  33376. bottom: 0/3528
  33377. }
  33378. },
  33379. frontNsfw: {
  33380. height: math.unit(4 + 10/12, "feet"),
  33381. weight: math.unit(160, "lb"),
  33382. name: "Front (NSFW)",
  33383. image: {
  33384. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33385. extra: 3528/3408,
  33386. bottom: 0/3528
  33387. }
  33388. },
  33389. },
  33390. [
  33391. {
  33392. name: "Normal",
  33393. height: math.unit(4 + 10/12, "feet"),
  33394. default: true
  33395. },
  33396. ]
  33397. ))
  33398. characterMakers.push(() => makeCharacter(
  33399. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33400. {
  33401. side: {
  33402. height: math.unit(10, "feet"),
  33403. weight: math.unit(14000, "lb"),
  33404. name: "Side",
  33405. image: {
  33406. source: "./media/characters/kremm/side.svg",
  33407. extra: 1390/1053,
  33408. bottom: 90/1480
  33409. }
  33410. },
  33411. gut: {
  33412. height: math.unit(5.8, "feet"),
  33413. name: "Gut",
  33414. image: {
  33415. source: "./media/characters/kremm/gut.svg"
  33416. }
  33417. },
  33418. ass: {
  33419. height: math.unit(6.1, "feet"),
  33420. name: "Ass",
  33421. image: {
  33422. source: "./media/characters/kremm/ass.svg"
  33423. }
  33424. },
  33425. jaws: {
  33426. height: math.unit(2.2, "feet"),
  33427. name: "Jaws",
  33428. image: {
  33429. source: "./media/characters/kremm/jaws.svg"
  33430. }
  33431. },
  33432. dick: {
  33433. height: math.unit(4.26, "feet"),
  33434. name: "Dick",
  33435. image: {
  33436. source: "./media/characters/kremm/dick.svg"
  33437. }
  33438. },
  33439. },
  33440. [
  33441. {
  33442. name: "Normal",
  33443. height: math.unit(10, "feet"),
  33444. default: true
  33445. },
  33446. ]
  33447. ))
  33448. characterMakers.push(() => makeCharacter(
  33449. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33450. {
  33451. front: {
  33452. height: math.unit(30, "stories"),
  33453. name: "Front",
  33454. image: {
  33455. source: "./media/characters/kai/front.svg",
  33456. extra: 1892/1718,
  33457. bottom: 162/2054
  33458. }
  33459. },
  33460. },
  33461. [
  33462. {
  33463. name: "Macro",
  33464. height: math.unit(30, "stories"),
  33465. default: true
  33466. },
  33467. ]
  33468. ))
  33469. characterMakers.push(() => makeCharacter(
  33470. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33471. {
  33472. front: {
  33473. height: math.unit(6 + 4/12, "feet"),
  33474. weight: math.unit(145, "lb"),
  33475. name: "Front",
  33476. image: {
  33477. source: "./media/characters/sykes/front.svg",
  33478. extra: 1321 / 1187,
  33479. bottom: 66 / 1387
  33480. }
  33481. },
  33482. back: {
  33483. height: math.unit(6 + 4/12, "feet"),
  33484. weight: math.unit(145, "lb"),
  33485. name: "Back",
  33486. image: {
  33487. source: "./media/characters/sykes/back.svg",
  33488. extra: 1326/1181,
  33489. bottom: 31/1357
  33490. }
  33491. },
  33492. handBack: {
  33493. height: math.unit(0.9, "feet"),
  33494. name: "Hand (Back)",
  33495. image: {
  33496. source: "./media/characters/sykes/hand-back.svg"
  33497. }
  33498. },
  33499. handFront: {
  33500. height: math.unit(0.839, "feet"),
  33501. name: "Hand (Front)",
  33502. image: {
  33503. source: "./media/characters/sykes/hand-front.svg"
  33504. }
  33505. },
  33506. leftFoot: {
  33507. height: math.unit(1.2, "feet"),
  33508. name: "Foot (Left)",
  33509. image: {
  33510. source: "./media/characters/sykes/foot-left.svg"
  33511. }
  33512. },
  33513. rightFoot: {
  33514. height: math.unit(1.2, "feet"),
  33515. name: "Foot (Right)",
  33516. image: {
  33517. source: "./media/characters/sykes/foot-right.svg"
  33518. }
  33519. },
  33520. maw: {
  33521. height: math.unit(1.93, "feet"),
  33522. name: "Maw",
  33523. image: {
  33524. source: "./media/characters/sykes/maw.svg"
  33525. }
  33526. },
  33527. teeth: {
  33528. height: math.unit(0.51, "feet"),
  33529. name: "Teeth",
  33530. image: {
  33531. source: "./media/characters/sykes/teeth.svg"
  33532. }
  33533. },
  33534. tongue: {
  33535. height: math.unit(2.13, "feet"),
  33536. name: "Tongue",
  33537. image: {
  33538. source: "./media/characters/sykes/tongue.svg"
  33539. }
  33540. },
  33541. uvula: {
  33542. height: math.unit(0.16, "feet"),
  33543. name: "Uvula",
  33544. image: {
  33545. source: "./media/characters/sykes/uvula.svg"
  33546. }
  33547. },
  33548. collar: {
  33549. height: math.unit(0.287, "feet"),
  33550. name: "Collar",
  33551. image: {
  33552. source: "./media/characters/sykes/collar.svg"
  33553. }
  33554. },
  33555. },
  33556. [
  33557. {
  33558. name: "Shrunken",
  33559. height: math.unit(5, "inches")
  33560. },
  33561. {
  33562. name: "Normal",
  33563. height: math.unit(6 + 4 / 12, "feet"),
  33564. default: true
  33565. },
  33566. {
  33567. name: "Big",
  33568. height: math.unit(15, "feet")
  33569. },
  33570. ]
  33571. ))
  33572. characterMakers.push(() => makeCharacter(
  33573. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33574. {
  33575. front: {
  33576. height: math.unit(5 + 8/12, "feet"),
  33577. weight: math.unit(190, "lb"),
  33578. name: "Front",
  33579. image: {
  33580. source: "./media/characters/oven-otter/front.svg",
  33581. extra: 1809/1740,
  33582. bottom: 181/1990
  33583. }
  33584. },
  33585. back: {
  33586. height: math.unit(5 + 8/12, "feet"),
  33587. weight: math.unit(190, "lb"),
  33588. name: "Back",
  33589. image: {
  33590. source: "./media/characters/oven-otter/back.svg",
  33591. extra: 1709/1635,
  33592. bottom: 118/1827
  33593. }
  33594. },
  33595. hand: {
  33596. height: math.unit(1.07, "feet"),
  33597. name: "Hand",
  33598. image: {
  33599. source: "./media/characters/oven-otter/hand.svg"
  33600. }
  33601. },
  33602. beans: {
  33603. height: math.unit(1.74, "feet"),
  33604. name: "Beans",
  33605. image: {
  33606. source: "./media/characters/oven-otter/beans.svg"
  33607. }
  33608. },
  33609. },
  33610. [
  33611. {
  33612. name: "Micro",
  33613. height: math.unit(0.5, "inches")
  33614. },
  33615. {
  33616. name: "Normal",
  33617. height: math.unit(5 + 8/12, "feet"),
  33618. default: true
  33619. },
  33620. {
  33621. name: "Macro",
  33622. height: math.unit(250, "feet")
  33623. },
  33624. {
  33625. name: "Really High",
  33626. height: math.unit(420, "feet")
  33627. },
  33628. ]
  33629. ))
  33630. characterMakers.push(() => makeCharacter(
  33631. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33632. {
  33633. front: {
  33634. height: math.unit(5, "meters"),
  33635. weight: math.unit(292000000000000, "kg"),
  33636. name: "Front",
  33637. image: {
  33638. source: "./media/characters/devourer/front.svg",
  33639. extra: 1800/1733,
  33640. bottom: 211/2011
  33641. }
  33642. },
  33643. maw: {
  33644. height: math.unit(1.1, "meter"),
  33645. name: "Maw",
  33646. image: {
  33647. source: "./media/characters/devourer/maw.svg"
  33648. }
  33649. },
  33650. },
  33651. [
  33652. {
  33653. name: "Small",
  33654. height: math.unit(3, "meters")
  33655. },
  33656. {
  33657. name: "Large",
  33658. height: math.unit(5, "meters"),
  33659. default: true
  33660. },
  33661. ]
  33662. ))
  33663. characterMakers.push(() => makeCharacter(
  33664. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33665. {
  33666. front: {
  33667. height: math.unit(6, "feet"),
  33668. weight: math.unit(400, "lb"),
  33669. name: "Front",
  33670. image: {
  33671. source: "./media/characters/ellarby/front.svg",
  33672. extra: 1909/1763,
  33673. bottom: 80/1989
  33674. }
  33675. },
  33676. back: {
  33677. height: math.unit(6, "feet"),
  33678. weight: math.unit(400, "lb"),
  33679. name: "Back",
  33680. image: {
  33681. source: "./media/characters/ellarby/back.svg",
  33682. extra: 1914/1784,
  33683. bottom: 172/2086
  33684. }
  33685. },
  33686. },
  33687. [
  33688. {
  33689. name: "Mischief",
  33690. height: math.unit(18, "inches")
  33691. },
  33692. {
  33693. name: "Trouble",
  33694. height: math.unit(12, "feet")
  33695. },
  33696. {
  33697. name: "Havoc",
  33698. height: math.unit(200, "feet"),
  33699. default: true
  33700. },
  33701. {
  33702. name: "Pandemonium",
  33703. height: math.unit(1, "mile")
  33704. },
  33705. {
  33706. name: "Catastrophe",
  33707. height: math.unit(100, "miles")
  33708. },
  33709. ]
  33710. ))
  33711. characterMakers.push(() => makeCharacter(
  33712. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33713. {
  33714. front: {
  33715. height: math.unit(4.7, "meters"),
  33716. weight: math.unit(6500, "kg"),
  33717. name: "Front",
  33718. image: {
  33719. source: "./media/characters/vex/front.svg",
  33720. extra: 1288/1140,
  33721. bottom: 100/1388
  33722. }
  33723. },
  33724. },
  33725. [
  33726. {
  33727. name: "Normal",
  33728. height: math.unit(4.7, "meters"),
  33729. default: true
  33730. },
  33731. ]
  33732. ))
  33733. characterMakers.push(() => makeCharacter(
  33734. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33735. {
  33736. normal: {
  33737. height: math.unit(6, "feet"),
  33738. weight: math.unit(350, "lb"),
  33739. name: "Normal",
  33740. image: {
  33741. source: "./media/characters/teshy/normal.svg",
  33742. extra: 1795/1735,
  33743. bottom: 16/1811
  33744. }
  33745. },
  33746. monsterFront: {
  33747. height: math.unit(12, "feet"),
  33748. weight: math.unit(4700, "lb"),
  33749. name: "Monster (Front)",
  33750. image: {
  33751. source: "./media/characters/teshy/monster-front.svg",
  33752. extra: 2042/2034,
  33753. bottom: 128/2170
  33754. }
  33755. },
  33756. monsterSide: {
  33757. height: math.unit(12, "feet"),
  33758. weight: math.unit(4700, "lb"),
  33759. name: "Monster (Side)",
  33760. image: {
  33761. source: "./media/characters/teshy/monster-side.svg",
  33762. extra: 2067/2056,
  33763. bottom: 70/2137
  33764. }
  33765. },
  33766. monsterBack: {
  33767. height: math.unit(12, "feet"),
  33768. weight: math.unit(4700, "lb"),
  33769. name: "Monster (Back)",
  33770. image: {
  33771. source: "./media/characters/teshy/monster-back.svg",
  33772. extra: 1921/1914,
  33773. bottom: 171/2092
  33774. }
  33775. },
  33776. },
  33777. [
  33778. {
  33779. name: "Normal",
  33780. height: math.unit(6, "feet"),
  33781. default: true
  33782. },
  33783. ]
  33784. ))
  33785. characterMakers.push(() => makeCharacter(
  33786. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33787. {
  33788. front: {
  33789. height: math.unit(6, "feet"),
  33790. name: "Front",
  33791. image: {
  33792. source: "./media/characters/ramey/front.svg",
  33793. extra: 790/787,
  33794. bottom: 27/817
  33795. }
  33796. },
  33797. },
  33798. [
  33799. {
  33800. name: "Normal",
  33801. height: math.unit(6, "feet"),
  33802. default: true
  33803. },
  33804. ]
  33805. ))
  33806. characterMakers.push(() => makeCharacter(
  33807. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33808. {
  33809. front: {
  33810. height: math.unit(5 + 5/12, "feet"),
  33811. weight: math.unit(120, "lb"),
  33812. name: "Front",
  33813. image: {
  33814. source: "./media/characters/phirae/front.svg",
  33815. extra: 2491/2436,
  33816. bottom: 38/2529
  33817. }
  33818. },
  33819. },
  33820. [
  33821. {
  33822. name: "Normal",
  33823. height: math.unit(5 + 5/12, "feet"),
  33824. default: true
  33825. },
  33826. ]
  33827. ))
  33828. characterMakers.push(() => makeCharacter(
  33829. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33830. {
  33831. front: {
  33832. height: math.unit(6, "feet"),
  33833. weight: math.unit(150, "lb"),
  33834. name: "Front",
  33835. image: {
  33836. source: "./media/characters/stagglas/front.svg",
  33837. extra: 962/882,
  33838. bottom: 53/1015
  33839. }
  33840. },
  33841. },
  33842. [
  33843. {
  33844. name: "Normal",
  33845. height: math.unit(5 + 3/12, "feet"),
  33846. default: true
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33852. {
  33853. front: {
  33854. height: math.unit(5 + 4/12, "feet"),
  33855. weight: math.unit(145, "lb"),
  33856. name: "Front",
  33857. image: {
  33858. source: "./media/characters/starra/front.svg",
  33859. extra: 1790/1691,
  33860. bottom: 91/1881
  33861. }
  33862. },
  33863. },
  33864. [
  33865. {
  33866. name: "Normal",
  33867. height: math.unit(5 + 4/12, "feet"),
  33868. default: true
  33869. },
  33870. ]
  33871. ))
  33872. characterMakers.push(() => makeCharacter(
  33873. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33874. {
  33875. front: {
  33876. height: math.unit(2.2, "meters"),
  33877. name: "Front",
  33878. image: {
  33879. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33880. extra: 1194/1005,
  33881. bottom: 25/1219
  33882. }
  33883. },
  33884. },
  33885. [
  33886. {
  33887. name: "Normal",
  33888. height: math.unit(2.2, "meters"),
  33889. default: true
  33890. },
  33891. ]
  33892. ))
  33893. characterMakers.push(() => makeCharacter(
  33894. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33895. {
  33896. side: {
  33897. height: math.unit(8 + 2/12, "feet"),
  33898. weight: math.unit(1240, "lb"),
  33899. name: "Side",
  33900. image: {
  33901. source: "./media/characters/mika-valentine/side.svg",
  33902. extra: 2670/2501,
  33903. bottom: 250/2920
  33904. }
  33905. },
  33906. },
  33907. [
  33908. {
  33909. name: "Normal",
  33910. height: math.unit(8 + 2/12, "feet"),
  33911. default: true
  33912. },
  33913. ]
  33914. ))
  33915. characterMakers.push(() => makeCharacter(
  33916. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33917. {
  33918. front: {
  33919. height: math.unit(7 + 2/12, "feet"),
  33920. name: "Front",
  33921. image: {
  33922. source: "./media/characters/xoltol/front.svg",
  33923. extra: 2212/2124,
  33924. bottom: 84/2296
  33925. }
  33926. },
  33927. side: {
  33928. height: math.unit(7 + 2/12, "feet"),
  33929. name: "Side",
  33930. image: {
  33931. source: "./media/characters/xoltol/side.svg",
  33932. extra: 2273/2197,
  33933. bottom: 26/2299
  33934. }
  33935. },
  33936. hand: {
  33937. height: math.unit(2.5, "feet"),
  33938. name: "Hand",
  33939. image: {
  33940. source: "./media/characters/xoltol/hand.svg"
  33941. }
  33942. },
  33943. },
  33944. [
  33945. {
  33946. name: "Small-ish",
  33947. height: math.unit(5 + 11/12, "feet")
  33948. },
  33949. {
  33950. name: "Normal",
  33951. height: math.unit(7 + 2/12, "feet")
  33952. },
  33953. {
  33954. name: "\"Macro\"",
  33955. height: math.unit(14 + 9/12, "feet"),
  33956. default: true
  33957. },
  33958. {
  33959. name: "Alternate Height",
  33960. height: math.unit(20, "feet")
  33961. },
  33962. {
  33963. name: "Actually Macro",
  33964. height: math.unit(100, "feet")
  33965. },
  33966. ]
  33967. ))
  33968. characterMakers.push(() => makeCharacter(
  33969. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33970. {
  33971. front: {
  33972. height: math.unit(5 + 2/12, "feet"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/kotetsu-redwood/front.svg",
  33976. extra: 1053/942,
  33977. bottom: 60/1113
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Normal",
  33984. height: math.unit(5 + 2/12, "feet"),
  33985. default: true
  33986. },
  33987. ]
  33988. ))
  33989. characterMakers.push(() => makeCharacter(
  33990. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33991. {
  33992. front: {
  33993. height: math.unit(2.4, "meters"),
  33994. weight: math.unit(125, "kg"),
  33995. name: "Front",
  33996. image: {
  33997. source: "./media/characters/lilith/front.svg",
  33998. extra: 1590/1513,
  33999. bottom: 203/1793
  34000. }
  34001. },
  34002. },
  34003. [
  34004. {
  34005. name: "Humanoid",
  34006. height: math.unit(2.4, "meters")
  34007. },
  34008. {
  34009. name: "Normal",
  34010. height: math.unit(6, "meters"),
  34011. default: true
  34012. },
  34013. {
  34014. name: "Largest",
  34015. height: math.unit(55, "meters")
  34016. },
  34017. ]
  34018. ))
  34019. characterMakers.push(() => makeCharacter(
  34020. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34021. {
  34022. front: {
  34023. height: math.unit(8 + 4/12, "feet"),
  34024. weight: math.unit(535, "lb"),
  34025. name: "Front",
  34026. image: {
  34027. source: "./media/characters/beh'kah-bolger/front.svg",
  34028. extra: 1660/1603,
  34029. bottom: 37/1697
  34030. }
  34031. },
  34032. },
  34033. [
  34034. {
  34035. name: "Normal",
  34036. height: math.unit(8 + 4/12, "feet"),
  34037. default: true
  34038. },
  34039. {
  34040. name: "Kaiju",
  34041. height: math.unit(250, "feet")
  34042. },
  34043. {
  34044. name: "Still Growing",
  34045. height: math.unit(10, "miles")
  34046. },
  34047. {
  34048. name: "Continental",
  34049. height: math.unit(5000, "miles")
  34050. },
  34051. {
  34052. name: "Final Form",
  34053. height: math.unit(2500000, "miles")
  34054. },
  34055. ]
  34056. ))
  34057. characterMakers.push(() => makeCharacter(
  34058. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34059. {
  34060. front: {
  34061. height: math.unit(7 + 2/12, "feet"),
  34062. weight: math.unit(230, "kg"),
  34063. name: "Front",
  34064. image: {
  34065. source: "./media/characters/tatyana-milewska/front.svg",
  34066. extra: 1199/1150,
  34067. bottom: 86/1285
  34068. }
  34069. },
  34070. },
  34071. [
  34072. {
  34073. name: "Normal",
  34074. height: math.unit(7 + 2/12, "feet"),
  34075. default: true
  34076. },
  34077. {
  34078. name: "Big",
  34079. height: math.unit(12, "feet")
  34080. },
  34081. {
  34082. name: "Minimacro",
  34083. height: math.unit(20, "feet")
  34084. },
  34085. {
  34086. name: "Macro",
  34087. height: math.unit(120, "feet")
  34088. },
  34089. ]
  34090. ))
  34091. characterMakers.push(() => makeCharacter(
  34092. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34093. {
  34094. front: {
  34095. height: math.unit(7 + 8/12, "feet"),
  34096. weight: math.unit(152, "kg"),
  34097. name: "Front",
  34098. image: {
  34099. source: "./media/characters/helen-arri/front.svg",
  34100. extra: 440/423,
  34101. bottom: 14/454
  34102. }
  34103. },
  34104. back: {
  34105. height: math.unit(7 + 8/12, "feet"),
  34106. weight: math.unit(152, "kg"),
  34107. name: "Back",
  34108. image: {
  34109. source: "./media/characters/helen-arri/back.svg",
  34110. extra: 443/426,
  34111. bottom: 8/451
  34112. }
  34113. },
  34114. },
  34115. [
  34116. {
  34117. name: "Normal",
  34118. height: math.unit(7 + 8/12, "feet"),
  34119. default: true
  34120. },
  34121. {
  34122. name: "Big",
  34123. height: math.unit(14, "feet")
  34124. },
  34125. {
  34126. name: "Minimacro",
  34127. height: math.unit(24, "feet")
  34128. },
  34129. {
  34130. name: "Macro",
  34131. height: math.unit(140, "feet")
  34132. },
  34133. ]
  34134. ))
  34135. characterMakers.push(() => makeCharacter(
  34136. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34137. {
  34138. front: {
  34139. height: math.unit(6, "meters"),
  34140. name: "Front",
  34141. image: {
  34142. source: "./media/characters/ehanu-rehu/front.svg",
  34143. extra: 1800/1800,
  34144. bottom: 59/1859
  34145. }
  34146. },
  34147. },
  34148. [
  34149. {
  34150. name: "Normal",
  34151. height: math.unit(6, "meters"),
  34152. default: true
  34153. },
  34154. ]
  34155. ))
  34156. characterMakers.push(() => makeCharacter(
  34157. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34158. {
  34159. front: {
  34160. height: math.unit(7 + 3/12, "feet"),
  34161. name: "Front",
  34162. image: {
  34163. source: "./media/characters/renholder/front.svg",
  34164. extra: 3096/2960,
  34165. bottom: 250/3346
  34166. }
  34167. },
  34168. },
  34169. [
  34170. {
  34171. name: "Normal Bat",
  34172. height: math.unit(7 + 3/12, "feet"),
  34173. default: true
  34174. },
  34175. {
  34176. name: "Slightly Tall Bat",
  34177. height: math.unit(100, "feet")
  34178. },
  34179. {
  34180. name: "Big Bat",
  34181. height: math.unit(1000, "feet")
  34182. },
  34183. {
  34184. name: "City-Sized Bat",
  34185. height: math.unit(200000, "feet")
  34186. },
  34187. {
  34188. name: "Bigger Bat",
  34189. height: math.unit(10000, "miles")
  34190. },
  34191. {
  34192. name: "Solar Sized Bat",
  34193. height: math.unit(100, "AU")
  34194. },
  34195. {
  34196. name: "Galactic Bat",
  34197. height: math.unit(200000, "lightyears")
  34198. },
  34199. {
  34200. name: "Universally Known Bat",
  34201. height: math.unit(1, "universe")
  34202. },
  34203. ]
  34204. ))
  34205. characterMakers.push(() => makeCharacter(
  34206. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34207. {
  34208. front: {
  34209. height: math.unit(6 + 11/12, "feet"),
  34210. weight: math.unit(250, "lb"),
  34211. name: "Front",
  34212. image: {
  34213. source: "./media/characters/cookiecat/front.svg",
  34214. extra: 893/827,
  34215. bottom: 14/907
  34216. }
  34217. },
  34218. },
  34219. [
  34220. {
  34221. name: "Micro",
  34222. height: math.unit(3, "inches")
  34223. },
  34224. {
  34225. name: "Normal",
  34226. height: math.unit(6 + 11/12, "feet"),
  34227. default: true
  34228. },
  34229. {
  34230. name: "Macro",
  34231. height: math.unit(100, "feet")
  34232. },
  34233. {
  34234. name: "Macro+",
  34235. height: math.unit(404, "feet")
  34236. },
  34237. {
  34238. name: "Megamacro",
  34239. height: math.unit(165, "miles")
  34240. },
  34241. {
  34242. name: "Planetary",
  34243. height: math.unit(4600, "miles")
  34244. },
  34245. ]
  34246. ))
  34247. characterMakers.push(() => makeCharacter(
  34248. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34249. {
  34250. front: {
  34251. height: math.unit(10 + 3/12, "feet"),
  34252. weight: math.unit(1500, "lb"),
  34253. name: "Front",
  34254. image: {
  34255. source: "./media/characters/tux-kusanagi/front.svg",
  34256. extra: 944/840,
  34257. bottom: 39/983
  34258. }
  34259. },
  34260. back: {
  34261. height: math.unit(10 + 3/12, "feet"),
  34262. weight: math.unit(1500, "lb"),
  34263. name: "Back",
  34264. image: {
  34265. source: "./media/characters/tux-kusanagi/back.svg",
  34266. extra: 941/842,
  34267. bottom: 28/969
  34268. }
  34269. },
  34270. rump: {
  34271. height: math.unit(5.25, "feet"),
  34272. name: "Rump",
  34273. image: {
  34274. source: "./media/characters/tux-kusanagi/rump.svg"
  34275. }
  34276. },
  34277. beak: {
  34278. height: math.unit(1.54, "feet"),
  34279. name: "Beak",
  34280. image: {
  34281. source: "./media/characters/tux-kusanagi/beak.svg"
  34282. }
  34283. },
  34284. },
  34285. [
  34286. {
  34287. name: "Normal",
  34288. height: math.unit(10 + 3/12, "feet"),
  34289. default: true
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34295. {
  34296. front: {
  34297. height: math.unit(58, "feet"),
  34298. weight: math.unit(200, "tons"),
  34299. name: "Front",
  34300. image: {
  34301. source: "./media/characters/uzarmazari/front.svg",
  34302. extra: 1575/1455,
  34303. bottom: 152/1727
  34304. }
  34305. },
  34306. back: {
  34307. height: math.unit(58, "feet"),
  34308. weight: math.unit(200, "tons"),
  34309. name: "Back",
  34310. image: {
  34311. source: "./media/characters/uzarmazari/back.svg",
  34312. extra: 1585/1510,
  34313. bottom: 157/1742
  34314. }
  34315. },
  34316. head: {
  34317. height: math.unit(26, "feet"),
  34318. name: "Head",
  34319. image: {
  34320. source: "./media/characters/uzarmazari/head.svg"
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(58, "feet"),
  34328. default: true
  34329. },
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34334. {
  34335. side: {
  34336. height: math.unit(15, "feet"),
  34337. name: "Side",
  34338. image: {
  34339. source: "./media/characters/akitu/side.svg",
  34340. extra: 1421/1321,
  34341. bottom: 157/1578
  34342. }
  34343. },
  34344. front: {
  34345. height: math.unit(15, "feet"),
  34346. name: "Front",
  34347. image: {
  34348. source: "./media/characters/akitu/front.svg",
  34349. extra: 1435/1326,
  34350. bottom: 232/1667
  34351. }
  34352. },
  34353. },
  34354. [
  34355. {
  34356. name: "Normal",
  34357. height: math.unit(15, "feet"),
  34358. default: true
  34359. },
  34360. ]
  34361. ))
  34362. characterMakers.push(() => makeCharacter(
  34363. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34364. {
  34365. front: {
  34366. height: math.unit(10 + 8/12, "feet"),
  34367. name: "Front",
  34368. image: {
  34369. source: "./media/characters/azalie-croixland/front.svg",
  34370. extra: 1972/1856,
  34371. bottom: 31/2003
  34372. }
  34373. },
  34374. },
  34375. [
  34376. {
  34377. name: "Original Height",
  34378. height: math.unit(5 + 4/12, "feet")
  34379. },
  34380. {
  34381. name: "Normal Height",
  34382. height: math.unit(10 + 8/12, "feet"),
  34383. default: true
  34384. },
  34385. ]
  34386. ))
  34387. characterMakers.push(() => makeCharacter(
  34388. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34389. {
  34390. side: {
  34391. height: math.unit(7 + 1/12, "feet"),
  34392. weight: math.unit(245, "lb"),
  34393. name: "Side",
  34394. image: {
  34395. source: "./media/characters/kavus-kazian/side.svg",
  34396. extra: 349/342,
  34397. bottom: 15/364
  34398. }
  34399. },
  34400. },
  34401. [
  34402. {
  34403. name: "Normal",
  34404. height: math.unit(7 + 1/12, "feet"),
  34405. default: true
  34406. },
  34407. ]
  34408. ))
  34409. characterMakers.push(() => makeCharacter(
  34410. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34411. {
  34412. normal: {
  34413. height: math.unit(5 + 11/12, "feet"),
  34414. name: "Normal",
  34415. image: {
  34416. source: "./media/characters/moonlight-rose/normal.svg",
  34417. extra: 1979/1835,
  34418. bottom: 14/1993
  34419. }
  34420. },
  34421. demon: {
  34422. height: math.unit(5, "km"),
  34423. name: "Demon",
  34424. image: {
  34425. source: "./media/characters/moonlight-rose/demon.svg",
  34426. extra: 986/916,
  34427. bottom: 28/1014
  34428. }
  34429. },
  34430. },
  34431. [
  34432. {
  34433. name: "\"Natural\" height",
  34434. height: math.unit(5 + 11/12, "feet")
  34435. },
  34436. {
  34437. name: "Comfortable Size",
  34438. height: math.unit(40, "meters")
  34439. },
  34440. {
  34441. name: "Common Size",
  34442. height: math.unit(50, "km"),
  34443. default: true
  34444. },
  34445. {
  34446. name: "Demonic",
  34447. height: math.unit(1.24415e+21, "meters")
  34448. },
  34449. ]
  34450. ))
  34451. characterMakers.push(() => makeCharacter(
  34452. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34453. {
  34454. front: {
  34455. height: math.unit(16, "feet"),
  34456. weight: math.unit(610, "kg"),
  34457. name: "Front",
  34458. image: {
  34459. source: "./media/characters/huckle/front.svg",
  34460. extra: 1731/1625,
  34461. bottom: 33/1764
  34462. }
  34463. },
  34464. back: {
  34465. height: math.unit(16, "feet"),
  34466. weight: math.unit(610, "kg"),
  34467. name: "Back",
  34468. image: {
  34469. source: "./media/characters/huckle/back.svg",
  34470. extra: 1738/1651,
  34471. bottom: 37/1775
  34472. }
  34473. },
  34474. laughing: {
  34475. height: math.unit(3.75, "feet"),
  34476. name: "Laughing",
  34477. image: {
  34478. source: "./media/characters/huckle/laughing.svg"
  34479. }
  34480. },
  34481. angry: {
  34482. height: math.unit(4.15, "feet"),
  34483. name: "Angry",
  34484. image: {
  34485. source: "./media/characters/huckle/angry.svg"
  34486. }
  34487. },
  34488. },
  34489. [
  34490. {
  34491. name: "Normal",
  34492. height: math.unit(16, "feet"),
  34493. default: true
  34494. },
  34495. {
  34496. name: "Mini Macro",
  34497. height: math.unit(463, "feet")
  34498. },
  34499. {
  34500. name: "Macro",
  34501. height: math.unit(1680, "meters")
  34502. },
  34503. {
  34504. name: "Mega Macro",
  34505. height: math.unit(175, "km")
  34506. },
  34507. {
  34508. name: "Terra Macro",
  34509. height: math.unit(32, "gigameters")
  34510. },
  34511. {
  34512. name: "Multiverse+",
  34513. height: math.unit(2.56e23, "yottameters")
  34514. },
  34515. ]
  34516. ))
  34517. characterMakers.push(() => makeCharacter(
  34518. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34519. {
  34520. front: {
  34521. height: math.unit(6 + 9/12, "feet"),
  34522. weight: math.unit(280, "lb"),
  34523. name: "Front",
  34524. image: {
  34525. source: "./media/characters/candy/front.svg",
  34526. extra: 234/217,
  34527. bottom: 11/245
  34528. }
  34529. },
  34530. },
  34531. [
  34532. {
  34533. name: "Really Small",
  34534. height: math.unit(0.1, "nm")
  34535. },
  34536. {
  34537. name: "Micro",
  34538. height: math.unit(2, "inches")
  34539. },
  34540. {
  34541. name: "Normal",
  34542. height: math.unit(6 + 9/12, "feet"),
  34543. default: true
  34544. },
  34545. {
  34546. name: "Small Macro",
  34547. height: math.unit(69, "feet")
  34548. },
  34549. {
  34550. name: "Macro",
  34551. height: math.unit(160, "feet")
  34552. },
  34553. {
  34554. name: "Megamacro",
  34555. height: math.unit(22000, "miles")
  34556. },
  34557. {
  34558. name: "Gigamacro",
  34559. height: math.unit(50000, "miles")
  34560. },
  34561. ]
  34562. ))
  34563. characterMakers.push(() => makeCharacter(
  34564. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34565. {
  34566. front: {
  34567. height: math.unit(4, "feet"),
  34568. weight: math.unit(90, "lb"),
  34569. name: "Front",
  34570. image: {
  34571. source: "./media/characters/joey-mcdonald/front.svg",
  34572. extra: 1059/852,
  34573. bottom: 33/1092
  34574. }
  34575. },
  34576. back: {
  34577. height: math.unit(4, "feet"),
  34578. weight: math.unit(90, "lb"),
  34579. name: "Back",
  34580. image: {
  34581. source: "./media/characters/joey-mcdonald/back.svg",
  34582. extra: 1077/879,
  34583. bottom: 5/1082
  34584. }
  34585. },
  34586. frontKobold: {
  34587. height: math.unit(4, "feet"),
  34588. weight: math.unit(100, "lb"),
  34589. name: "Front-kobold",
  34590. image: {
  34591. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34592. extra: 1480/1367,
  34593. bottom: 0/1480
  34594. }
  34595. },
  34596. backKobold: {
  34597. height: math.unit(4, "feet"),
  34598. weight: math.unit(100, "lb"),
  34599. name: "Back-kobold",
  34600. image: {
  34601. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34602. extra: 1449/1361,
  34603. bottom: 0/1449
  34604. }
  34605. },
  34606. },
  34607. [
  34608. {
  34609. name: "Normal",
  34610. height: math.unit(4, "feet"),
  34611. default: true
  34612. },
  34613. ]
  34614. ))
  34615. characterMakers.push(() => makeCharacter(
  34616. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34617. {
  34618. front: {
  34619. height: math.unit(12 + 6/12, "feet"),
  34620. name: "Front",
  34621. image: {
  34622. source: "./media/characters/kass-lockheed/front.svg",
  34623. extra: 354/343,
  34624. bottom: 9/363
  34625. }
  34626. },
  34627. back: {
  34628. height: math.unit(12 + 6/12, "feet"),
  34629. name: "Back",
  34630. image: {
  34631. source: "./media/characters/kass-lockheed/back.svg",
  34632. extra: 364/352,
  34633. bottom: 3/367
  34634. }
  34635. },
  34636. dick: {
  34637. height: math.unit(3.12, "feet"),
  34638. name: "Dick",
  34639. image: {
  34640. source: "./media/characters/kass-lockheed/dick.svg"
  34641. }
  34642. },
  34643. head: {
  34644. height: math.unit(2.6, "feet"),
  34645. name: "Head",
  34646. image: {
  34647. source: "./media/characters/kass-lockheed/head.svg"
  34648. }
  34649. },
  34650. bleh: {
  34651. height: math.unit(2.85, "feet"),
  34652. name: "Bleh",
  34653. image: {
  34654. source: "./media/characters/kass-lockheed/bleh.svg"
  34655. }
  34656. },
  34657. smug: {
  34658. height: math.unit(2.85, "feet"),
  34659. name: "Smug",
  34660. image: {
  34661. source: "./media/characters/kass-lockheed/smug.svg"
  34662. }
  34663. },
  34664. },
  34665. [
  34666. {
  34667. name: "Normal",
  34668. height: math.unit(12 + 6/12, "feet"),
  34669. default: true
  34670. },
  34671. ]
  34672. ))
  34673. characterMakers.push(() => makeCharacter(
  34674. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34675. {
  34676. front: {
  34677. height: math.unit(6 + 2/12, "feet"),
  34678. name: "Front",
  34679. image: {
  34680. source: "./media/characters/taylor/front.svg",
  34681. extra: 639/495,
  34682. bottom: 12/651
  34683. }
  34684. },
  34685. },
  34686. [
  34687. {
  34688. name: "Normal",
  34689. height: math.unit(6 + 2/12, "feet"),
  34690. default: true
  34691. },
  34692. {
  34693. name: "Big",
  34694. height: math.unit(15, "feet")
  34695. },
  34696. {
  34697. name: "Lorg",
  34698. height: math.unit(80, "feet")
  34699. },
  34700. {
  34701. name: "Too Lorg",
  34702. height: math.unit(120, "feet")
  34703. },
  34704. ]
  34705. ))
  34706. characterMakers.push(() => makeCharacter(
  34707. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34708. {
  34709. front: {
  34710. height: math.unit(15, "feet"),
  34711. name: "Front",
  34712. image: {
  34713. source: "./media/characters/kaizer/front.svg",
  34714. extra: 1612/1436,
  34715. bottom: 43/1655
  34716. }
  34717. },
  34718. },
  34719. [
  34720. {
  34721. name: "Normal",
  34722. height: math.unit(15, "feet"),
  34723. default: true
  34724. },
  34725. ]
  34726. ))
  34727. characterMakers.push(() => makeCharacter(
  34728. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34729. {
  34730. front: {
  34731. height: math.unit(2, "feet"),
  34732. weight: math.unit(30, "lb"),
  34733. name: "Front",
  34734. image: {
  34735. source: "./media/characters/sandy/front.svg",
  34736. extra: 1439/1307,
  34737. bottom: 194/1633
  34738. }
  34739. },
  34740. },
  34741. [
  34742. {
  34743. name: "Normal",
  34744. height: math.unit(2, "feet"),
  34745. default: true
  34746. },
  34747. ]
  34748. ))
  34749. characterMakers.push(() => makeCharacter(
  34750. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34751. {
  34752. front: {
  34753. height: math.unit(3, "feet"),
  34754. name: "Front",
  34755. image: {
  34756. source: "./media/characters/mellvi/front.svg",
  34757. extra: 1831/1630,
  34758. bottom: 58/1889
  34759. }
  34760. },
  34761. },
  34762. [
  34763. {
  34764. name: "Normal",
  34765. height: math.unit(3, "feet"),
  34766. default: true
  34767. },
  34768. ]
  34769. ))
  34770. characterMakers.push(() => makeCharacter(
  34771. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34772. {
  34773. front: {
  34774. height: math.unit(5 + 11/12, "feet"),
  34775. weight: math.unit(200, "lb"),
  34776. name: "Front",
  34777. image: {
  34778. source: "./media/characters/shirou/front.svg",
  34779. extra: 2491/2383,
  34780. bottom: 189/2680
  34781. }
  34782. },
  34783. back: {
  34784. height: math.unit(5 + 11/12, "feet"),
  34785. weight: math.unit(200, "lb"),
  34786. name: "Back",
  34787. image: {
  34788. source: "./media/characters/shirou/back.svg",
  34789. extra: 2554/2450,
  34790. bottom: 76/2630
  34791. }
  34792. },
  34793. },
  34794. [
  34795. {
  34796. name: "Normal",
  34797. height: math.unit(5 + 11/12, "feet"),
  34798. default: true
  34799. },
  34800. ]
  34801. ))
  34802. characterMakers.push(() => makeCharacter(
  34803. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34804. {
  34805. front: {
  34806. height: math.unit(6 + 3/12, "feet"),
  34807. weight: math.unit(177, "lb"),
  34808. name: "Front",
  34809. image: {
  34810. source: "./media/characters/noryu/front.svg",
  34811. extra: 973/885,
  34812. bottom: 10/983
  34813. }
  34814. },
  34815. },
  34816. [
  34817. {
  34818. name: "Normal",
  34819. height: math.unit(6 + 3/12, "feet"),
  34820. default: true
  34821. },
  34822. ]
  34823. ))
  34824. characterMakers.push(() => makeCharacter(
  34825. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34826. {
  34827. front: {
  34828. height: math.unit(5 + 6/12, "feet"),
  34829. weight: math.unit(170, "lb"),
  34830. name: "Front",
  34831. image: {
  34832. source: "./media/characters/mevolas-rubenido/front.svg",
  34833. extra: 2109/1901,
  34834. bottom: 96/2205
  34835. }
  34836. },
  34837. },
  34838. [
  34839. {
  34840. name: "Normal",
  34841. height: math.unit(5 + 6/12, "feet"),
  34842. default: true
  34843. },
  34844. ]
  34845. ))
  34846. characterMakers.push(() => makeCharacter(
  34847. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34848. {
  34849. front: {
  34850. height: math.unit(100, "feet"),
  34851. name: "Front",
  34852. image: {
  34853. source: "./media/characters/dee/front.svg",
  34854. extra: 2153/2036,
  34855. bottom: 59/2212
  34856. }
  34857. },
  34858. back: {
  34859. height: math.unit(100, "feet"),
  34860. name: "Back",
  34861. image: {
  34862. source: "./media/characters/dee/back.svg",
  34863. extra: 2183/2058,
  34864. bottom: 75/2258
  34865. }
  34866. },
  34867. foot: {
  34868. height: math.unit(19.43, "feet"),
  34869. name: "Foot",
  34870. image: {
  34871. source: "./media/characters/dee/foot.svg"
  34872. }
  34873. },
  34874. hoof: {
  34875. height: math.unit(20.6, "feet"),
  34876. name: "Hoof",
  34877. image: {
  34878. source: "./media/characters/dee/hoof.svg"
  34879. }
  34880. },
  34881. },
  34882. [
  34883. {
  34884. name: "Macro",
  34885. height: math.unit(100, "feet"),
  34886. default: true
  34887. },
  34888. ]
  34889. ))
  34890. characterMakers.push(() => makeCharacter(
  34891. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34892. {
  34893. front: {
  34894. height: math.unit(5 + 6/12, "feet"),
  34895. name: "Front",
  34896. image: {
  34897. source: "./media/characters/teh/front.svg",
  34898. extra: 1002/847,
  34899. bottom: 62/1064
  34900. }
  34901. },
  34902. },
  34903. [
  34904. {
  34905. name: "Normal",
  34906. height: math.unit(5 + 6/12, "feet"),
  34907. default: true
  34908. },
  34909. ]
  34910. ))
  34911. characterMakers.push(() => makeCharacter(
  34912. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34913. {
  34914. side: {
  34915. height: math.unit(6 + 1/12, "feet"),
  34916. weight: math.unit(204, "lb"),
  34917. name: "Side",
  34918. image: {
  34919. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34920. extra: 974/775,
  34921. bottom: 169/1143
  34922. }
  34923. },
  34924. sitting: {
  34925. height: math.unit(6 + 2/12, "feet"),
  34926. weight: math.unit(204, "lb"),
  34927. name: "Sitting",
  34928. image: {
  34929. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34930. extra: 1175/964,
  34931. bottom: 378/1553
  34932. }
  34933. },
  34934. },
  34935. [
  34936. {
  34937. name: "Normal",
  34938. height: math.unit(6 + 1/12, "feet"),
  34939. default: true
  34940. },
  34941. ]
  34942. ))
  34943. characterMakers.push(() => makeCharacter(
  34944. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34945. {
  34946. front: {
  34947. height: math.unit(6, "inches"),
  34948. name: "Front",
  34949. image: {
  34950. source: "./media/characters/tululi/front.svg",
  34951. extra: 1997/1876,
  34952. bottom: 20/2017
  34953. }
  34954. },
  34955. },
  34956. [
  34957. {
  34958. name: "Normal",
  34959. height: math.unit(6, "inches"),
  34960. default: true
  34961. },
  34962. ]
  34963. ))
  34964. characterMakers.push(() => makeCharacter(
  34965. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34966. {
  34967. front: {
  34968. height: math.unit(4 + 1/12, "feet"),
  34969. name: "Front",
  34970. image: {
  34971. source: "./media/characters/star/front.svg",
  34972. extra: 1493/1189,
  34973. bottom: 48/1541
  34974. }
  34975. },
  34976. },
  34977. [
  34978. {
  34979. name: "Normal",
  34980. height: math.unit(4 + 1/12, "feet"),
  34981. default: true
  34982. },
  34983. ]
  34984. ))
  34985. characterMakers.push(() => makeCharacter(
  34986. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34987. {
  34988. front: {
  34989. height: math.unit(6 + 3/12, "feet"),
  34990. name: "Front",
  34991. image: {
  34992. source: "./media/characters/comet/front.svg",
  34993. extra: 1681/1462,
  34994. bottom: 26/1707
  34995. }
  34996. },
  34997. },
  34998. [
  34999. {
  35000. name: "Normal",
  35001. height: math.unit(6 + 3/12, "feet"),
  35002. default: true
  35003. },
  35004. ]
  35005. ))
  35006. characterMakers.push(() => makeCharacter(
  35007. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35008. {
  35009. front: {
  35010. height: math.unit(950, "feet"),
  35011. name: "Front",
  35012. image: {
  35013. source: "./media/characters/vortex/front.svg",
  35014. extra: 1497/1434,
  35015. bottom: 56/1553
  35016. }
  35017. },
  35018. maw: {
  35019. height: math.unit(285, "feet"),
  35020. name: "Maw",
  35021. image: {
  35022. source: "./media/characters/vortex/maw.svg"
  35023. }
  35024. },
  35025. },
  35026. [
  35027. {
  35028. name: "Macro",
  35029. height: math.unit(950, "feet"),
  35030. default: true
  35031. },
  35032. ]
  35033. ))
  35034. characterMakers.push(() => makeCharacter(
  35035. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35036. {
  35037. front: {
  35038. height: math.unit(600, "feet"),
  35039. weight: math.unit(0.02, "grams"),
  35040. name: "Front",
  35041. image: {
  35042. source: "./media/characters/doodle/front.svg",
  35043. extra: 1578/1413,
  35044. bottom: 37/1615
  35045. }
  35046. },
  35047. },
  35048. [
  35049. {
  35050. name: "Macro",
  35051. height: math.unit(600, "feet"),
  35052. default: true
  35053. },
  35054. ]
  35055. ))
  35056. characterMakers.push(() => makeCharacter(
  35057. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35058. {
  35059. front: {
  35060. height: math.unit(6 + 6/12, "feet"),
  35061. name: "Front",
  35062. image: {
  35063. source: "./media/characters/jai/front.svg",
  35064. extra: 1645/1534,
  35065. bottom: 115/1760
  35066. }
  35067. },
  35068. },
  35069. [
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(6 + 6/12, "feet"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(6 + 8/12, "feet"),
  35082. name: "Front",
  35083. image: {
  35084. source: "./media/characters/pixel/front.svg",
  35085. extra: 1900/1735,
  35086. bottom: 63/1963
  35087. }
  35088. },
  35089. },
  35090. [
  35091. {
  35092. name: "Normal",
  35093. height: math.unit(6 + 8/12, "feet"),
  35094. default: true
  35095. },
  35096. ]
  35097. ))
  35098. characterMakers.push(() => makeCharacter(
  35099. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35100. {
  35101. front: {
  35102. height: math.unit(4 + 11/12, "feet"),
  35103. weight: math.unit(111, "lb"),
  35104. name: "Front",
  35105. image: {
  35106. source: "./media/characters/rhett/front.svg",
  35107. extra: 1682/1586,
  35108. bottom: 92/1774
  35109. }
  35110. },
  35111. },
  35112. [
  35113. {
  35114. name: "Mini",
  35115. height: math.unit(1 + 1/12, "feet")
  35116. },
  35117. {
  35118. name: "Normal",
  35119. height: math.unit(4 + 11/12, "feet"),
  35120. default: true
  35121. },
  35122. ]
  35123. ))
  35124. characterMakers.push(() => makeCharacter(
  35125. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35126. {
  35127. front: {
  35128. height: math.unit(3 + 3/12, "feet"),
  35129. name: "Front",
  35130. image: {
  35131. source: "./media/characters/penny/front.svg",
  35132. extra: 1406/1311,
  35133. bottom: 26/1432
  35134. }
  35135. },
  35136. },
  35137. [
  35138. {
  35139. name: "Normal",
  35140. height: math.unit(3 + 3/12, "feet"),
  35141. default: true
  35142. },
  35143. ]
  35144. ))
  35145. characterMakers.push(() => makeCharacter(
  35146. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35147. {
  35148. front: {
  35149. height: math.unit(4 + 11/12, "feet"),
  35150. name: "Front",
  35151. image: {
  35152. source: "./media/characters/monty/front.svg",
  35153. extra: 1479/1209,
  35154. bottom: 0/1479
  35155. }
  35156. },
  35157. },
  35158. [
  35159. {
  35160. name: "Normal",
  35161. height: math.unit(4 + 11/12, "feet"),
  35162. default: true
  35163. },
  35164. ]
  35165. ))
  35166. characterMakers.push(() => makeCharacter(
  35167. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35168. {
  35169. front: {
  35170. height: math.unit(8 + 4/12, "feet"),
  35171. name: "Front",
  35172. image: {
  35173. source: "./media/characters/sterling/front.svg",
  35174. extra: 1420/1236,
  35175. bottom: 27/1447
  35176. }
  35177. },
  35178. },
  35179. [
  35180. {
  35181. name: "Normal",
  35182. height: math.unit(8 + 4/12, "feet"),
  35183. default: true
  35184. },
  35185. ]
  35186. ))
  35187. characterMakers.push(() => makeCharacter(
  35188. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35189. {
  35190. front: {
  35191. height: math.unit(15, "feet"),
  35192. name: "Front",
  35193. image: {
  35194. source: "./media/characters/marble/front.svg",
  35195. extra: 973/937,
  35196. bottom: 32/1005
  35197. }
  35198. },
  35199. },
  35200. [
  35201. {
  35202. name: "Normal",
  35203. height: math.unit(15, "feet"),
  35204. default: true
  35205. },
  35206. ]
  35207. ))
  35208. characterMakers.push(() => makeCharacter(
  35209. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35210. {
  35211. front: {
  35212. height: math.unit(3, "inches"),
  35213. name: "Front",
  35214. image: {
  35215. source: "./media/characters/powder/front.svg",
  35216. extra: 1504/1334,
  35217. bottom: 518/2022
  35218. }
  35219. },
  35220. },
  35221. [
  35222. {
  35223. name: "Normal",
  35224. height: math.unit(3, "inches"),
  35225. default: true
  35226. },
  35227. ]
  35228. ))
  35229. characterMakers.push(() => makeCharacter(
  35230. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35231. {
  35232. front: {
  35233. height: math.unit(4 + 5/12, "feet"),
  35234. name: "Front",
  35235. image: {
  35236. source: "./media/characters/joey-raccoon/front.svg",
  35237. extra: 1273/1197,
  35238. bottom: 0/1273
  35239. }
  35240. },
  35241. },
  35242. [
  35243. {
  35244. name: "Normal",
  35245. height: math.unit(4 + 5/12, "feet"),
  35246. default: true
  35247. },
  35248. ]
  35249. ))
  35250. characterMakers.push(() => makeCharacter(
  35251. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35252. {
  35253. front: {
  35254. height: math.unit(8 + 4/12, "feet"),
  35255. name: "Front",
  35256. image: {
  35257. source: "./media/characters/vick/front.svg",
  35258. extra: 2187/2118,
  35259. bottom: 47/2234
  35260. }
  35261. },
  35262. },
  35263. [
  35264. {
  35265. name: "Normal",
  35266. height: math.unit(8 + 4/12, "feet"),
  35267. default: true
  35268. },
  35269. ]
  35270. ))
  35271. characterMakers.push(() => makeCharacter(
  35272. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35273. {
  35274. front: {
  35275. height: math.unit(5 + 5/12, "feet"),
  35276. name: "Front",
  35277. image: {
  35278. source: "./media/characters/mitsy/front.svg",
  35279. extra: 1842/1695,
  35280. bottom: 0/1842
  35281. }
  35282. },
  35283. },
  35284. [
  35285. {
  35286. name: "Normal",
  35287. height: math.unit(5 + 5/12, "feet"),
  35288. default: true
  35289. },
  35290. ]
  35291. ))
  35292. characterMakers.push(() => makeCharacter(
  35293. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35294. {
  35295. front: {
  35296. height: math.unit(6 + 3/12, "feet"),
  35297. name: "Front",
  35298. image: {
  35299. source: "./media/characters/silvy/front.svg",
  35300. extra: 1995/1836,
  35301. bottom: 225/2220
  35302. }
  35303. },
  35304. },
  35305. [
  35306. {
  35307. name: "Normal",
  35308. height: math.unit(6 + 3/12, "feet"),
  35309. default: true
  35310. },
  35311. ]
  35312. ))
  35313. characterMakers.push(() => makeCharacter(
  35314. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35315. {
  35316. front: {
  35317. height: math.unit(3 + 8/12, "feet"),
  35318. name: "Front",
  35319. image: {
  35320. source: "./media/characters/rodney/front.svg",
  35321. extra: 1956/1747,
  35322. bottom: 31/1987
  35323. }
  35324. },
  35325. frontDressed: {
  35326. height: math.unit(2.9, "feet"),
  35327. name: "Front (Dressed)",
  35328. image: {
  35329. source: "./media/characters/rodney/front-dressed.svg",
  35330. extra: 1382/1241,
  35331. bottom: 385/1767
  35332. }
  35333. },
  35334. },
  35335. [
  35336. {
  35337. name: "Normal",
  35338. height: math.unit(3 + 8/12, "feet"),
  35339. default: true
  35340. },
  35341. ]
  35342. ))
  35343. characterMakers.push(() => makeCharacter(
  35344. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35345. {
  35346. front: {
  35347. height: math.unit(5 + 9/12, "feet"),
  35348. weight: math.unit(194, "lbs"),
  35349. name: "Front",
  35350. image: {
  35351. source: "./media/characters/zakail-sudekai/front.svg",
  35352. extra: 2696/2533,
  35353. bottom: 248/2944
  35354. }
  35355. },
  35356. maw: {
  35357. height: math.unit(1.35, "feet"),
  35358. name: "Maw",
  35359. image: {
  35360. source: "./media/characters/zakail-sudekai/maw.svg"
  35361. }
  35362. },
  35363. },
  35364. [
  35365. {
  35366. name: "Normal",
  35367. height: math.unit(5 + 9/12, "feet"),
  35368. default: true
  35369. },
  35370. ]
  35371. ))
  35372. characterMakers.push(() => makeCharacter(
  35373. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35374. {
  35375. front: {
  35376. height: math.unit(8 + 4/12, "feet"),
  35377. weight: math.unit(1200, "lb"),
  35378. name: "Front",
  35379. image: {
  35380. source: "./media/characters/eleanor/front.svg",
  35381. extra: 1226/1192,
  35382. bottom: 52/1278
  35383. }
  35384. },
  35385. back: {
  35386. height: math.unit(8 + 4/12, "feet"),
  35387. weight: math.unit(1200, "lb"),
  35388. name: "Back",
  35389. image: {
  35390. source: "./media/characters/eleanor/back.svg",
  35391. extra: 1242/1184,
  35392. bottom: 60/1302
  35393. }
  35394. },
  35395. head: {
  35396. height: math.unit(2.62, "feet"),
  35397. name: "Head",
  35398. image: {
  35399. source: "./media/characters/eleanor/head.svg"
  35400. }
  35401. },
  35402. },
  35403. [
  35404. {
  35405. name: "Normal",
  35406. height: math.unit(8 + 4/12, "feet"),
  35407. default: true
  35408. },
  35409. ]
  35410. ))
  35411. characterMakers.push(() => makeCharacter(
  35412. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35413. {
  35414. front: {
  35415. height: math.unit(8 + 4/12, "feet"),
  35416. weight: math.unit(750, "lb"),
  35417. name: "Front",
  35418. image: {
  35419. source: "./media/characters/tanya/front.svg",
  35420. extra: 1749/1615,
  35421. bottom: 33/1782
  35422. }
  35423. },
  35424. },
  35425. [
  35426. {
  35427. name: "Normal",
  35428. height: math.unit(8 + 4/12, "feet"),
  35429. default: true
  35430. },
  35431. ]
  35432. ))
  35433. characterMakers.push(() => makeCharacter(
  35434. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35435. {
  35436. front: {
  35437. height: math.unit(5, "feet"),
  35438. weight: math.unit(225, "lb"),
  35439. name: "Front",
  35440. image: {
  35441. source: "./media/characters/cindy/front.svg",
  35442. extra: 1320/1250,
  35443. bottom: 42/1362
  35444. }
  35445. },
  35446. frontDressed: {
  35447. height: math.unit(5, "feet"),
  35448. weight: math.unit(225, "lb"),
  35449. name: "Front (Dressed)",
  35450. image: {
  35451. source: "./media/characters/cindy/front-dressed.svg",
  35452. extra: 1320/1250,
  35453. bottom: 42/1362
  35454. }
  35455. },
  35456. back: {
  35457. height: math.unit(5, "feet"),
  35458. weight: math.unit(225, "lb"),
  35459. name: "Back",
  35460. image: {
  35461. source: "./media/characters/cindy/back.svg",
  35462. extra: 1384/1346,
  35463. bottom: 14/1398
  35464. }
  35465. },
  35466. },
  35467. [
  35468. {
  35469. name: "Normal",
  35470. height: math.unit(5, "feet"),
  35471. default: true
  35472. },
  35473. ]
  35474. ))
  35475. characterMakers.push(() => makeCharacter(
  35476. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35477. {
  35478. front: {
  35479. height: math.unit(6 + 9/12, "feet"),
  35480. weight: math.unit(440, "lb"),
  35481. name: "Front",
  35482. image: {
  35483. source: "./media/characters/wilbur-owen/front.svg",
  35484. extra: 1575/1448,
  35485. bottom: 72/1647
  35486. }
  35487. },
  35488. back: {
  35489. height: math.unit(6 + 9/12, "feet"),
  35490. weight: math.unit(440, "lb"),
  35491. name: "Back",
  35492. image: {
  35493. source: "./media/characters/wilbur-owen/back.svg",
  35494. extra: 1578/1445,
  35495. bottom: 36/1614
  35496. }
  35497. },
  35498. },
  35499. [
  35500. {
  35501. name: "Normal",
  35502. height: math.unit(6 + 9/12, "feet"),
  35503. default: true
  35504. },
  35505. ]
  35506. ))
  35507. characterMakers.push(() => makeCharacter(
  35508. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35509. {
  35510. front: {
  35511. height: math.unit(6 + 5/12, "feet"),
  35512. weight: math.unit(650, "lb"),
  35513. name: "Front",
  35514. image: {
  35515. source: "./media/characters/keegan/front.svg",
  35516. extra: 2387/2198,
  35517. bottom: 33/2420
  35518. }
  35519. },
  35520. side: {
  35521. height: math.unit(6 + 5/12, "feet"),
  35522. weight: math.unit(650, "lb"),
  35523. name: "Side",
  35524. image: {
  35525. source: "./media/characters/keegan/side.svg",
  35526. extra: 2390/2202,
  35527. bottom: 47/2437
  35528. }
  35529. },
  35530. back: {
  35531. height: math.unit(6 + 5/12, "feet"),
  35532. weight: math.unit(650, "lb"),
  35533. name: "Back",
  35534. image: {
  35535. source: "./media/characters/keegan/back.svg",
  35536. extra: 2418/2268,
  35537. bottom: 15/2433
  35538. }
  35539. },
  35540. frontSfw: {
  35541. height: math.unit(6 + 5/12, "feet"),
  35542. weight: math.unit(650, "lb"),
  35543. name: "Front (SFW)",
  35544. image: {
  35545. source: "./media/characters/keegan/front-sfw.svg",
  35546. extra: 2387/2198,
  35547. bottom: 33/2420
  35548. }
  35549. },
  35550. beans: {
  35551. height: math.unit(1.85, "feet"),
  35552. name: "Beans",
  35553. image: {
  35554. source: "./media/characters/keegan/beans.svg"
  35555. }
  35556. },
  35557. },
  35558. [
  35559. {
  35560. name: "Normal",
  35561. height: math.unit(6 + 5/12, "feet"),
  35562. default: true
  35563. },
  35564. ]
  35565. ))
  35566. characterMakers.push(() => makeCharacter(
  35567. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35568. {
  35569. front: {
  35570. height: math.unit(9, "feet"),
  35571. name: "Front",
  35572. image: {
  35573. source: "./media/characters/colton/front.svg",
  35574. extra: 1589/1326,
  35575. bottom: 139/1728
  35576. }
  35577. },
  35578. },
  35579. [
  35580. {
  35581. name: "Normal",
  35582. height: math.unit(9, "feet"),
  35583. default: true
  35584. },
  35585. ]
  35586. ))
  35587. characterMakers.push(() => makeCharacter(
  35588. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35589. {
  35590. front: {
  35591. height: math.unit(2 + 9/12, "feet"),
  35592. name: "Front",
  35593. image: {
  35594. source: "./media/characters/bora/front.svg",
  35595. extra: 1265/1250,
  35596. bottom: 24/1289
  35597. }
  35598. },
  35599. },
  35600. [
  35601. {
  35602. name: "Normal",
  35603. height: math.unit(2 + 9/12, "feet"),
  35604. default: true
  35605. },
  35606. ]
  35607. ))
  35608. characterMakers.push(() => makeCharacter(
  35609. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35610. {
  35611. front: {
  35612. height: math.unit(8, "feet"),
  35613. name: "Front",
  35614. image: {
  35615. source: "./media/characters/myu-myu/front.svg",
  35616. extra: 1949/1857,
  35617. bottom: 90/2039
  35618. }
  35619. },
  35620. },
  35621. [
  35622. {
  35623. name: "Normal",
  35624. height: math.unit(8, "feet"),
  35625. default: true
  35626. },
  35627. {
  35628. name: "Big",
  35629. height: math.unit(15, "feet")
  35630. },
  35631. {
  35632. name: "BIG",
  35633. height: math.unit(25, "feet")
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35639. {
  35640. side: {
  35641. height: math.unit(7 + 5/12, "feet"),
  35642. weight: math.unit(2800, "lb"),
  35643. name: "Side",
  35644. image: {
  35645. source: "./media/characters/haloren/side.svg",
  35646. extra: 1793/409,
  35647. bottom: 59/1852
  35648. }
  35649. },
  35650. frontPaw: {
  35651. height: math.unit(2.36, "feet"),
  35652. name: "Front paw",
  35653. image: {
  35654. source: "./media/characters/haloren/front-paw.svg"
  35655. }
  35656. },
  35657. hindPaw: {
  35658. height: math.unit(3.18, "feet"),
  35659. name: "Hind paw",
  35660. image: {
  35661. source: "./media/characters/haloren/hind-paw.svg"
  35662. }
  35663. },
  35664. maw: {
  35665. height: math.unit(5.05, "feet"),
  35666. name: "Maw",
  35667. image: {
  35668. source: "./media/characters/haloren/maw.svg"
  35669. }
  35670. },
  35671. dick: {
  35672. height: math.unit(2.90, "feet"),
  35673. name: "Dick",
  35674. image: {
  35675. source: "./media/characters/haloren/dick.svg"
  35676. }
  35677. },
  35678. },
  35679. [
  35680. {
  35681. name: "Normal",
  35682. height: math.unit(7 + 5/12, "feet"),
  35683. default: true
  35684. },
  35685. {
  35686. name: "Enhanced",
  35687. height: math.unit(14 + 3/12, "feet")
  35688. },
  35689. ]
  35690. ))
  35691. characterMakers.push(() => makeCharacter(
  35692. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35693. {
  35694. front: {
  35695. height: math.unit(171, "cm"),
  35696. name: "Front",
  35697. image: {
  35698. source: "./media/characters/kimmy/front.svg",
  35699. extra: 1491/1435,
  35700. bottom: 53/1544
  35701. }
  35702. },
  35703. },
  35704. [
  35705. {
  35706. name: "Small",
  35707. height: math.unit(9, "cm")
  35708. },
  35709. {
  35710. name: "Normal",
  35711. height: math.unit(171, "cm"),
  35712. default: true
  35713. },
  35714. ]
  35715. ))
  35716. characterMakers.push(() => makeCharacter(
  35717. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35718. {
  35719. front: {
  35720. height: math.unit(8, "feet"),
  35721. weight: math.unit(300, "lb"),
  35722. name: "Front",
  35723. image: {
  35724. source: "./media/characters/galeboomer/front.svg",
  35725. extra: 4651/4415,
  35726. bottom: 162/4813
  35727. }
  35728. },
  35729. back: {
  35730. height: math.unit(8, "feet"),
  35731. weight: math.unit(300, "lb"),
  35732. name: "Back",
  35733. image: {
  35734. source: "./media/characters/galeboomer/back.svg",
  35735. extra: 4544/4314,
  35736. bottom: 16/4560
  35737. }
  35738. },
  35739. frontAlt: {
  35740. height: math.unit(8, "feet"),
  35741. weight: math.unit(300, "lb"),
  35742. name: "Front (Alt)",
  35743. image: {
  35744. source: "./media/characters/galeboomer/front-alt.svg",
  35745. extra: 4458/4228,
  35746. bottom: 68/4526
  35747. }
  35748. },
  35749. maw: {
  35750. height: math.unit(1.2, "feet"),
  35751. name: "Maw",
  35752. image: {
  35753. source: "./media/characters/galeboomer/maw.svg"
  35754. }
  35755. },
  35756. },
  35757. [
  35758. {
  35759. name: "Normal",
  35760. height: math.unit(8, "feet"),
  35761. default: true
  35762. },
  35763. ]
  35764. ))
  35765. characterMakers.push(() => makeCharacter(
  35766. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35767. {
  35768. front: {
  35769. height: math.unit(5 + 9/12, "feet"),
  35770. weight: math.unit(120, "lb"),
  35771. name: "Front",
  35772. image: {
  35773. source: "./media/characters/chyr/front.svg",
  35774. extra: 1323/1254,
  35775. bottom: 63/1386
  35776. }
  35777. },
  35778. back: {
  35779. height: math.unit(5 + 9/12, "feet"),
  35780. weight: math.unit(120, "lb"),
  35781. name: "Back",
  35782. image: {
  35783. source: "./media/characters/chyr/back.svg",
  35784. extra: 1323/1252,
  35785. bottom: 48/1371
  35786. }
  35787. },
  35788. },
  35789. [
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(5 + 9/12, "feet"),
  35793. default: true
  35794. },
  35795. ]
  35796. ))
  35797. characterMakers.push(() => makeCharacter(
  35798. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35799. {
  35800. front: {
  35801. height: math.unit(7, "feet"),
  35802. weight: math.unit(310, "lb"),
  35803. name: "Front",
  35804. image: {
  35805. source: "./media/characters/solarus/front.svg",
  35806. extra: 2415/2021,
  35807. bottom: 103/2518
  35808. }
  35809. },
  35810. back: {
  35811. height: math.unit(7, "feet"),
  35812. weight: math.unit(310, "lb"),
  35813. name: "Back",
  35814. image: {
  35815. source: "./media/characters/solarus/back.svg",
  35816. extra: 2463/2089,
  35817. bottom: 79/2542
  35818. }
  35819. },
  35820. },
  35821. [
  35822. {
  35823. name: "Normal",
  35824. height: math.unit(7, "feet"),
  35825. default: true
  35826. },
  35827. ]
  35828. ))
  35829. characterMakers.push(() => makeCharacter(
  35830. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35831. {
  35832. front: {
  35833. height: math.unit(16, "feet"),
  35834. name: "Front",
  35835. image: {
  35836. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35837. extra: 1844/1780,
  35838. bottom: 58/1902
  35839. }
  35840. },
  35841. winterCoat: {
  35842. height: math.unit(16, "feet"),
  35843. name: "Winter Coat",
  35844. image: {
  35845. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35846. extra: 1807/1775,
  35847. bottom: 69/1876
  35848. }
  35849. },
  35850. },
  35851. [
  35852. {
  35853. name: "Normal",
  35854. height: math.unit(16, "feet"),
  35855. default: true
  35856. },
  35857. {
  35858. name: "Chicago Size",
  35859. height: math.unit(560, "feet")
  35860. },
  35861. ]
  35862. ))
  35863. characterMakers.push(() => makeCharacter(
  35864. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35865. {
  35866. front: {
  35867. height: math.unit(11 + 6/12, "feet"),
  35868. weight: math.unit(1366, "lb"),
  35869. name: "Front",
  35870. image: {
  35871. source: "./media/characters/lexor/front.svg",
  35872. extra: 1560/1481,
  35873. bottom: 211/1771
  35874. }
  35875. },
  35876. back: {
  35877. height: math.unit(11 + 6/12, "feet"),
  35878. weight: math.unit(1366, "lb"),
  35879. name: "Back",
  35880. image: {
  35881. source: "./media/characters/lexor/back.svg",
  35882. extra: 1614/1533,
  35883. bottom: 76/1690
  35884. }
  35885. },
  35886. maw: {
  35887. height: math.unit(3, "feet"),
  35888. name: "Maw",
  35889. image: {
  35890. source: "./media/characters/lexor/maw.svg"
  35891. }
  35892. },
  35893. dick: {
  35894. height: math.unit(2.59, "feet"),
  35895. name: "Dick",
  35896. image: {
  35897. source: "./media/characters/lexor/dick.svg"
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Normal",
  35904. height: math.unit(11 + 6/12, "feet"),
  35905. default: true
  35906. },
  35907. ]
  35908. ))
  35909. characterMakers.push(() => makeCharacter(
  35910. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35911. {
  35912. front: {
  35913. height: math.unit(5 + 8/12, "feet"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/magnum/front.svg",
  35917. extra: 942/855,
  35918. bottom: 26/968
  35919. }
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(5 + 8/12, "feet"),
  35926. default: true
  35927. },
  35928. ]
  35929. ))
  35930. characterMakers.push(() => makeCharacter(
  35931. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35932. {
  35933. front: {
  35934. height: math.unit(18 + 4/12, "feet"),
  35935. weight: math.unit(1500, "kg"),
  35936. name: "Front",
  35937. image: {
  35938. source: "./media/characters/solas-sharpsman/front.svg",
  35939. extra: 1698/1589,
  35940. bottom: 0/1698
  35941. }
  35942. },
  35943. },
  35944. [
  35945. {
  35946. name: "Normal",
  35947. height: math.unit(18 + 4/12, "feet"),
  35948. default: true
  35949. },
  35950. ]
  35951. ))
  35952. characterMakers.push(() => makeCharacter(
  35953. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35954. {
  35955. front: {
  35956. height: math.unit(5 + 5/12, "feet"),
  35957. weight: math.unit(180, "lb"),
  35958. name: "Front",
  35959. image: {
  35960. source: "./media/characters/october/front.svg",
  35961. extra: 1800/1650,
  35962. bottom: 0/1800
  35963. }
  35964. },
  35965. frontNsfw: {
  35966. height: math.unit(5 + 5/12, "feet"),
  35967. weight: math.unit(180, "lb"),
  35968. name: "Front (NSFW)",
  35969. image: {
  35970. source: "./media/characters/october/front-nsfw.svg",
  35971. extra: 1392/1307,
  35972. bottom: 42/1434
  35973. }
  35974. },
  35975. },
  35976. [
  35977. {
  35978. name: "Normal",
  35979. height: math.unit(5 + 5/12, "feet"),
  35980. default: true
  35981. },
  35982. ]
  35983. ))
  35984. characterMakers.push(() => makeCharacter(
  35985. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35986. {
  35987. front: {
  35988. height: math.unit(8 + 6/12, "feet"),
  35989. name: "Front",
  35990. image: {
  35991. source: "./media/characters/essynkardi/front.svg",
  35992. extra: 1914/1846,
  35993. bottom: 22/1936
  35994. }
  35995. },
  35996. },
  35997. [
  35998. {
  35999. name: "Normal",
  36000. height: math.unit(8 + 6/12, "feet"),
  36001. default: true
  36002. },
  36003. ]
  36004. ))
  36005. characterMakers.push(() => makeCharacter(
  36006. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36007. {
  36008. front: {
  36009. height: math.unit(6 + 6/12, "feet"),
  36010. weight: math.unit(7, "lb"),
  36011. name: "Front",
  36012. image: {
  36013. source: "./media/characters/icky/front.svg",
  36014. extra: 813/782,
  36015. bottom: 66/879
  36016. }
  36017. },
  36018. back: {
  36019. height: math.unit(6 + 6/12, "feet"),
  36020. weight: math.unit(7, "lb"),
  36021. name: "Back",
  36022. image: {
  36023. source: "./media/characters/icky/back.svg",
  36024. extra: 754/735,
  36025. bottom: 56/810
  36026. }
  36027. },
  36028. },
  36029. [
  36030. {
  36031. name: "Normal",
  36032. height: math.unit(6 + 6/12, "feet"),
  36033. default: true
  36034. },
  36035. ]
  36036. ))
  36037. characterMakers.push(() => makeCharacter(
  36038. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36039. {
  36040. front: {
  36041. height: math.unit(15, "feet"),
  36042. name: "Front",
  36043. image: {
  36044. source: "./media/characters/rojas/front.svg",
  36045. extra: 1462/1408,
  36046. bottom: 95/1557
  36047. }
  36048. },
  36049. back: {
  36050. height: math.unit(15, "feet"),
  36051. name: "Back",
  36052. image: {
  36053. source: "./media/characters/rojas/back.svg",
  36054. extra: 1023/954,
  36055. bottom: 28/1051
  36056. }
  36057. },
  36058. },
  36059. [
  36060. {
  36061. name: "Normal",
  36062. height: math.unit(15, "feet"),
  36063. default: true
  36064. },
  36065. ]
  36066. ))
  36067. characterMakers.push(() => makeCharacter(
  36068. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36069. {
  36070. frontHuman: {
  36071. height: math.unit(5 + 7/12, "feet"),
  36072. name: "Front (Human)",
  36073. image: {
  36074. source: "./media/characters/alek-dryagan/front-human.svg",
  36075. extra: 1687/1667,
  36076. bottom: 69/1756
  36077. }
  36078. },
  36079. backHuman: {
  36080. height: math.unit(5 + 7/12, "feet"),
  36081. name: "Back (Human)",
  36082. image: {
  36083. source: "./media/characters/alek-dryagan/back-human.svg",
  36084. extra: 1670/1649,
  36085. bottom: 65/1735
  36086. }
  36087. },
  36088. frontDemi: {
  36089. height: math.unit(65, "feet"),
  36090. name: "Front (Demi)",
  36091. image: {
  36092. source: "./media/characters/alek-dryagan/front-demi.svg",
  36093. extra: 1669/1642,
  36094. bottom: 49/1718
  36095. }
  36096. },
  36097. backDemi: {
  36098. height: math.unit(65, "feet"),
  36099. name: "Back (Demi)",
  36100. image: {
  36101. source: "./media/characters/alek-dryagan/back-demi.svg",
  36102. extra: 1658/1637,
  36103. bottom: 40/1698
  36104. }
  36105. },
  36106. mawHuman: {
  36107. height: math.unit(0.3, "feet"),
  36108. name: "Maw (Human)",
  36109. image: {
  36110. source: "./media/characters/alek-dryagan/maw-human.svg"
  36111. }
  36112. },
  36113. mawDemi: {
  36114. height: math.unit(3.8, "feet"),
  36115. name: "Maw (Demi)",
  36116. image: {
  36117. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36118. }
  36119. },
  36120. },
  36121. [
  36122. {
  36123. name: "Normal",
  36124. height: math.unit(5 + 7/12, "feet"),
  36125. default: true
  36126. },
  36127. ]
  36128. ))
  36129. characterMakers.push(() => makeCharacter(
  36130. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36131. {
  36132. frontHuman: {
  36133. height: math.unit(5 + 2/12, "feet"),
  36134. name: "Front (Human)",
  36135. image: {
  36136. source: "./media/characters/gen/front-human.svg",
  36137. extra: 1627/1538,
  36138. bottom: 71/1698
  36139. }
  36140. },
  36141. backHuman: {
  36142. height: math.unit(5 + 2/12, "feet"),
  36143. name: "Back (Human)",
  36144. image: {
  36145. source: "./media/characters/gen/back-human.svg",
  36146. extra: 1638/1548,
  36147. bottom: 69/1707
  36148. }
  36149. },
  36150. frontDemi: {
  36151. height: math.unit(5 + 2/12, "feet"),
  36152. name: "Front (Demi)",
  36153. image: {
  36154. source: "./media/characters/gen/front-demi.svg",
  36155. extra: 1627/1538,
  36156. bottom: 71/1698
  36157. }
  36158. },
  36159. backDemi: {
  36160. height: math.unit(5 + 2/12, "feet"),
  36161. name: "Back (Demi)",
  36162. image: {
  36163. source: "./media/characters/gen/back-demi.svg",
  36164. extra: 1638/1548,
  36165. bottom: 69/1707
  36166. }
  36167. },
  36168. },
  36169. [
  36170. {
  36171. name: "Normal",
  36172. height: math.unit(5 + 2/12, "feet"),
  36173. default: true
  36174. },
  36175. ]
  36176. ))
  36177. characterMakers.push(() => makeCharacter(
  36178. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36179. {
  36180. frontImp: {
  36181. height: math.unit(1 + 11/12, "feet"),
  36182. name: "Front (Imp)",
  36183. image: {
  36184. source: "./media/characters/max-kobold/front-imp.svg",
  36185. extra: 1238/1134,
  36186. bottom: 81/1319
  36187. }
  36188. },
  36189. backImp: {
  36190. height: math.unit(1 + 11/12, "feet"),
  36191. name: "Back (Imp)",
  36192. image: {
  36193. source: "./media/characters/max-kobold/back-imp.svg",
  36194. extra: 1334/1175,
  36195. bottom: 34/1368
  36196. }
  36197. },
  36198. frontDemi: {
  36199. height: math.unit(5 + 9/12, "feet"),
  36200. name: "Front (Demi)",
  36201. image: {
  36202. source: "./media/characters/max-kobold/front-demi.svg",
  36203. extra: 1715/1685,
  36204. bottom: 54/1769
  36205. }
  36206. },
  36207. backDemi: {
  36208. height: math.unit(5 + 9/12, "feet"),
  36209. name: "Back (Demi)",
  36210. image: {
  36211. source: "./media/characters/max-kobold/back-demi.svg",
  36212. extra: 1752/1729,
  36213. bottom: 41/1793
  36214. }
  36215. },
  36216. handImp: {
  36217. height: math.unit(0.45, "feet"),
  36218. name: "Hand (Imp)",
  36219. image: {
  36220. source: "./media/characters/max-kobold/hand.svg"
  36221. }
  36222. },
  36223. pawImp: {
  36224. height: math.unit(0.46, "feet"),
  36225. name: "Paw (Imp)",
  36226. image: {
  36227. source: "./media/characters/max-kobold/paw.svg"
  36228. }
  36229. },
  36230. handDemi: {
  36231. height: math.unit(0.80, "feet"),
  36232. name: "Hand (Demi)",
  36233. image: {
  36234. source: "./media/characters/max-kobold/hand.svg"
  36235. }
  36236. },
  36237. pawDemi: {
  36238. height: math.unit(1.1, "feet"),
  36239. name: "Paw (Demi)",
  36240. image: {
  36241. source: "./media/characters/max-kobold/paw.svg"
  36242. }
  36243. },
  36244. headImp: {
  36245. height: math.unit(1.33, "feet"),
  36246. name: "Head (Imp)",
  36247. image: {
  36248. source: "./media/characters/max-kobold/head-imp.svg"
  36249. }
  36250. },
  36251. mawImp: {
  36252. height: math.unit(0.75, "feet"),
  36253. name: "Maw (Imp)",
  36254. image: {
  36255. source: "./media/characters/max-kobold/maw-imp.svg"
  36256. }
  36257. },
  36258. mawDemi: {
  36259. height: math.unit(0.42, "feet"),
  36260. name: "Maw (Demi)",
  36261. image: {
  36262. source: "./media/characters/max-kobold/maw-demi.svg"
  36263. }
  36264. },
  36265. },
  36266. [
  36267. {
  36268. name: "Normal",
  36269. height: math.unit(1 + 11/12, "feet"),
  36270. default: true
  36271. },
  36272. ]
  36273. ))
  36274. characterMakers.push(() => makeCharacter(
  36275. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36276. {
  36277. front: {
  36278. height: math.unit(7 + 5/12, "feet"),
  36279. name: "Front",
  36280. image: {
  36281. source: "./media/characters/carbon/front.svg",
  36282. extra: 1754/1689,
  36283. bottom: 65/1819
  36284. }
  36285. },
  36286. back: {
  36287. height: math.unit(7 + 5/12, "feet"),
  36288. name: "Back",
  36289. image: {
  36290. source: "./media/characters/carbon/back.svg",
  36291. extra: 1762/1695,
  36292. bottom: 24/1786
  36293. }
  36294. },
  36295. frontGigantamax: {
  36296. height: math.unit(150, "feet"),
  36297. name: "Front (Gigantamax)",
  36298. image: {
  36299. source: "./media/characters/carbon/front-gigantamax.svg",
  36300. extra: 1826/1669,
  36301. bottom: 59/1885
  36302. }
  36303. },
  36304. backGigantamax: {
  36305. height: math.unit(150, "feet"),
  36306. name: "Back (Gigantamax)",
  36307. image: {
  36308. source: "./media/characters/carbon/back-gigantamax.svg",
  36309. extra: 1796/1653,
  36310. bottom: 53/1849
  36311. }
  36312. },
  36313. maw: {
  36314. height: math.unit(0.48, "feet"),
  36315. name: "Maw",
  36316. image: {
  36317. source: "./media/characters/carbon/maw.svg"
  36318. }
  36319. },
  36320. mawGigantamax: {
  36321. height: math.unit(7.5, "feet"),
  36322. name: "Maw (Gigantamax)",
  36323. image: {
  36324. source: "./media/characters/carbon/maw-gigantamax.svg"
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Normal",
  36331. height: math.unit(7 + 5/12, "feet"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36338. {
  36339. front: {
  36340. height: math.unit(6, "feet"),
  36341. name: "Front",
  36342. image: {
  36343. source: "./media/characters/maverick/front.svg",
  36344. extra: 1672/1661,
  36345. bottom: 85/1757
  36346. }
  36347. },
  36348. back: {
  36349. height: math.unit(6, "feet"),
  36350. name: "Back",
  36351. image: {
  36352. source: "./media/characters/maverick/back.svg",
  36353. extra: 1642/1631,
  36354. bottom: 38/1680
  36355. }
  36356. },
  36357. },
  36358. [
  36359. {
  36360. name: "Normal",
  36361. height: math.unit(6, "feet"),
  36362. default: true
  36363. },
  36364. ]
  36365. ))
  36366. characterMakers.push(() => makeCharacter(
  36367. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36368. {
  36369. front: {
  36370. height: math.unit(15, "feet"),
  36371. weight: math.unit(615, "lb"),
  36372. name: "Front",
  36373. image: {
  36374. source: "./media/characters/grockle/front.svg",
  36375. extra: 1535/1427,
  36376. bottom: 56/1591
  36377. }
  36378. },
  36379. },
  36380. [
  36381. {
  36382. name: "Normal",
  36383. height: math.unit(15, "feet"),
  36384. default: true
  36385. },
  36386. {
  36387. name: "Large",
  36388. height: math.unit(150, "feet")
  36389. },
  36390. {
  36391. name: "Macro",
  36392. height: math.unit(1876, "feet")
  36393. },
  36394. {
  36395. name: "Mega Macro",
  36396. height: math.unit(121940, "feet")
  36397. },
  36398. {
  36399. name: "Giga Macro",
  36400. height: math.unit(750, "km")
  36401. },
  36402. {
  36403. name: "Tera Macro",
  36404. height: math.unit(750000, "km")
  36405. },
  36406. {
  36407. name: "Galactic",
  36408. height: math.unit(1.4e5, "km")
  36409. },
  36410. {
  36411. name: "Godlike",
  36412. height: math.unit(9.8e280, "galaxies")
  36413. },
  36414. ]
  36415. ))
  36416. characterMakers.push(() => makeCharacter(
  36417. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36418. {
  36419. front: {
  36420. height: math.unit(11, "meters"),
  36421. weight: math.unit(20, "tonnes"),
  36422. name: "Front",
  36423. image: {
  36424. source: "./media/characters/alistair/front.svg",
  36425. extra: 1265/1009,
  36426. bottom: 93/1358
  36427. }
  36428. },
  36429. },
  36430. [
  36431. {
  36432. name: "Normal",
  36433. height: math.unit(11, "meters"),
  36434. default: true
  36435. },
  36436. ]
  36437. ))
  36438. characterMakers.push(() => makeCharacter(
  36439. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36440. {
  36441. front: {
  36442. height: math.unit(5 + 8/12, "feet"),
  36443. name: "Front",
  36444. image: {
  36445. source: "./media/characters/haruka/front.svg",
  36446. extra: 2012/1952,
  36447. bottom: 0/2012
  36448. }
  36449. },
  36450. },
  36451. [
  36452. {
  36453. name: "Normal",
  36454. height: math.unit(5 + 8/12, "feet"),
  36455. default: true
  36456. },
  36457. ]
  36458. ))
  36459. characterMakers.push(() => makeCharacter(
  36460. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36461. {
  36462. back: {
  36463. height: math.unit(9, "feet"),
  36464. name: "Back",
  36465. image: {
  36466. source: "./media/characters/vivian-sylveon/back.svg",
  36467. extra: 1853/1714,
  36468. bottom: 0/1853
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Normal",
  36475. height: math.unit(9, "feet"),
  36476. default: true
  36477. },
  36478. {
  36479. name: "Macro",
  36480. height: math.unit(500, "feet")
  36481. },
  36482. {
  36483. name: "Megamacro",
  36484. height: math.unit(600, "miles")
  36485. },
  36486. {
  36487. name: "Gigamacro",
  36488. height: math.unit(30000, "miles")
  36489. },
  36490. ]
  36491. ))
  36492. characterMakers.push(() => makeCharacter(
  36493. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36494. {
  36495. anthro: {
  36496. height: math.unit(5 + 10/12, "feet"),
  36497. weight: math.unit(100, "lb"),
  36498. name: "Anthro",
  36499. image: {
  36500. source: "./media/characters/daiki/anthro.svg",
  36501. extra: 1115/1027,
  36502. bottom: 69/1184
  36503. }
  36504. },
  36505. feral: {
  36506. height: math.unit(200, "feet"),
  36507. name: "Feral",
  36508. image: {
  36509. source: "./media/characters/daiki/feral.svg",
  36510. extra: 1256/313,
  36511. bottom: 39/1295
  36512. }
  36513. },
  36514. feralHead: {
  36515. height: math.unit(171, "feet"),
  36516. name: "Feral Head",
  36517. image: {
  36518. source: "./media/characters/daiki/feral-head.svg"
  36519. }
  36520. },
  36521. manaDragon: {
  36522. height: math.unit(170, "meters"),
  36523. name: "Mana-dragon",
  36524. image: {
  36525. source: "./media/characters/daiki/mana-dragon.svg",
  36526. extra: 763/420,
  36527. bottom: 97/860
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Normal",
  36534. height: math.unit(5 + 10/12, "feet"),
  36535. default: true
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36541. {
  36542. fullyEquippedFront: {
  36543. height: math.unit(3 + 1/12, "feet"),
  36544. weight: math.unit(24, "lb"),
  36545. name: "Fully Equipped (Front)",
  36546. image: {
  36547. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36548. extra: 687/605,
  36549. bottom: 18/705
  36550. }
  36551. },
  36552. fullyEquippedBack: {
  36553. height: math.unit(3 + 1/12, "feet"),
  36554. weight: math.unit(24, "lb"),
  36555. name: "Fully Equipped (Back)",
  36556. image: {
  36557. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36558. extra: 689/590,
  36559. bottom: 18/707
  36560. }
  36561. },
  36562. dailyWear: {
  36563. height: math.unit(3 + 1/12, "feet"),
  36564. weight: math.unit(24, "lb"),
  36565. name: "Daily Wear",
  36566. image: {
  36567. source: "./media/characters/tea-spot/daily-wear.svg",
  36568. extra: 701/620,
  36569. bottom: 21/722
  36570. }
  36571. },
  36572. maidWork: {
  36573. height: math.unit(3 + 1/12, "feet"),
  36574. weight: math.unit(24, "lb"),
  36575. name: "Maid Work",
  36576. image: {
  36577. source: "./media/characters/tea-spot/maid-work.svg",
  36578. extra: 693/609,
  36579. bottom: 15/708
  36580. }
  36581. },
  36582. },
  36583. [
  36584. {
  36585. name: "Normal",
  36586. height: math.unit(3 + 1/12, "feet"),
  36587. default: true
  36588. },
  36589. ]
  36590. ))
  36591. characterMakers.push(() => makeCharacter(
  36592. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36593. {
  36594. front: {
  36595. height: math.unit(175, "cm"),
  36596. weight: math.unit(75, "kg"),
  36597. name: "Front",
  36598. image: {
  36599. source: "./media/characters/chee/front.svg",
  36600. extra: 1796/1740,
  36601. bottom: 40/1836
  36602. }
  36603. },
  36604. },
  36605. [
  36606. {
  36607. name: "Micro-Micro",
  36608. height: math.unit(1, "nm")
  36609. },
  36610. {
  36611. name: "Micro-erst",
  36612. height: math.unit(1, "micrometer")
  36613. },
  36614. {
  36615. name: "Micro-er",
  36616. height: math.unit(1, "cm")
  36617. },
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(175, "cm"),
  36621. default: true
  36622. },
  36623. {
  36624. name: "Macro",
  36625. height: math.unit(100, "m")
  36626. },
  36627. {
  36628. name: "Macro-er",
  36629. height: math.unit(1, "km")
  36630. },
  36631. {
  36632. name: "Macro-erst",
  36633. height: math.unit(10, "km")
  36634. },
  36635. {
  36636. name: "Macro-Macro",
  36637. height: math.unit(100, "km")
  36638. },
  36639. ]
  36640. ))
  36641. characterMakers.push(() => makeCharacter(
  36642. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36643. {
  36644. front: {
  36645. height: math.unit(11 + 9/12, "feet"),
  36646. weight: math.unit(935, "lb"),
  36647. name: "Front",
  36648. image: {
  36649. source: "./media/characters/kingsley/front.svg",
  36650. extra: 1803/1674,
  36651. bottom: 127/1930
  36652. }
  36653. },
  36654. frontNude: {
  36655. height: math.unit(11 + 9/12, "feet"),
  36656. weight: math.unit(935, "lb"),
  36657. name: "Front (Nude)",
  36658. image: {
  36659. source: "./media/characters/kingsley/front-nude.svg",
  36660. extra: 1803/1674,
  36661. bottom: 127/1930
  36662. }
  36663. },
  36664. },
  36665. [
  36666. {
  36667. name: "Normal",
  36668. height: math.unit(11 + 9/12, "feet"),
  36669. default: true
  36670. },
  36671. ]
  36672. ))
  36673. characterMakers.push(() => makeCharacter(
  36674. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36675. {
  36676. side: {
  36677. height: math.unit(9, "feet"),
  36678. name: "Side",
  36679. image: {
  36680. source: "./media/characters/rymel/side.svg",
  36681. extra: 792/469,
  36682. bottom: 121/913
  36683. }
  36684. },
  36685. maw: {
  36686. height: math.unit(2.4, "meters"),
  36687. name: "Maw",
  36688. image: {
  36689. source: "./media/characters/rymel/maw.svg"
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "House Drake",
  36696. height: math.unit(2, "feet")
  36697. },
  36698. {
  36699. name: "Reduced",
  36700. height: math.unit(4.5, "feet")
  36701. },
  36702. {
  36703. name: "Normal",
  36704. height: math.unit(9, "feet"),
  36705. default: true
  36706. },
  36707. ]
  36708. ))
  36709. characterMakers.push(() => makeCharacter(
  36710. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36711. {
  36712. front: {
  36713. height: math.unit(1.74, "meters"),
  36714. weight: math.unit(55, "kg"),
  36715. name: "Front",
  36716. image: {
  36717. source: "./media/characters/rubus/front.svg",
  36718. extra: 1894/1742,
  36719. bottom: 44/1938
  36720. }
  36721. },
  36722. },
  36723. [
  36724. {
  36725. name: "Normal",
  36726. height: math.unit(1.74, "meters"),
  36727. default: true
  36728. },
  36729. ]
  36730. ))
  36731. characterMakers.push(() => makeCharacter(
  36732. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36733. {
  36734. front: {
  36735. height: math.unit(5 + 2/12, "feet"),
  36736. weight: math.unit(112, "lb"),
  36737. name: "Front",
  36738. image: {
  36739. source: "./media/characters/cassie-kingston/front.svg",
  36740. extra: 1438/1390,
  36741. bottom: 47/1485
  36742. }
  36743. },
  36744. },
  36745. [
  36746. {
  36747. name: "Normal",
  36748. height: math.unit(5 + 2/12, "feet"),
  36749. default: true
  36750. },
  36751. {
  36752. name: "Macro",
  36753. height: math.unit(128, "feet")
  36754. },
  36755. {
  36756. name: "Megamacro",
  36757. height: math.unit(2.56, "miles")
  36758. },
  36759. ]
  36760. ))
  36761. characterMakers.push(() => makeCharacter(
  36762. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36763. {
  36764. front: {
  36765. height: math.unit(7, "feet"),
  36766. name: "Front",
  36767. image: {
  36768. source: "./media/characters/fox/front.svg",
  36769. extra: 1798/1703,
  36770. bottom: 55/1853
  36771. }
  36772. },
  36773. back: {
  36774. height: math.unit(7, "feet"),
  36775. name: "Back",
  36776. image: {
  36777. source: "./media/characters/fox/back.svg",
  36778. extra: 1748/1649,
  36779. bottom: 32/1780
  36780. }
  36781. },
  36782. head: {
  36783. height: math.unit(1.95, "feet"),
  36784. name: "Head",
  36785. image: {
  36786. source: "./media/characters/fox/head.svg"
  36787. }
  36788. },
  36789. dick: {
  36790. height: math.unit(1.33, "feet"),
  36791. name: "Dick",
  36792. image: {
  36793. source: "./media/characters/fox/dick.svg"
  36794. }
  36795. },
  36796. foot: {
  36797. height: math.unit(1, "feet"),
  36798. name: "Foot",
  36799. image: {
  36800. source: "./media/characters/fox/foot.svg"
  36801. }
  36802. },
  36803. paw: {
  36804. height: math.unit(0.92, "feet"),
  36805. name: "Paw",
  36806. image: {
  36807. source: "./media/characters/fox/paw.svg"
  36808. }
  36809. },
  36810. },
  36811. [
  36812. {
  36813. name: "Small",
  36814. height: math.unit(3, "inches")
  36815. },
  36816. {
  36817. name: "\"Realistic\"",
  36818. height: math.unit(7, "feet")
  36819. },
  36820. {
  36821. name: "Normal",
  36822. height: math.unit(150, "feet"),
  36823. default: true
  36824. },
  36825. {
  36826. name: "BIG",
  36827. height: math.unit(1200, "feet")
  36828. },
  36829. {
  36830. name: "👀",
  36831. height: math.unit(5, "miles")
  36832. },
  36833. {
  36834. name: "👀👀👀",
  36835. height: math.unit(64, "miles")
  36836. },
  36837. ]
  36838. ))
  36839. characterMakers.push(() => makeCharacter(
  36840. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36841. {
  36842. front: {
  36843. height: math.unit(625, "feet"),
  36844. name: "Front",
  36845. image: {
  36846. source: "./media/characters/asonja-rossa/front.svg",
  36847. extra: 1833/1686,
  36848. bottom: 24/1857
  36849. }
  36850. },
  36851. back: {
  36852. height: math.unit(625, "feet"),
  36853. name: "Back",
  36854. image: {
  36855. source: "./media/characters/asonja-rossa/back.svg",
  36856. extra: 1852/1753,
  36857. bottom: 26/1878
  36858. }
  36859. },
  36860. },
  36861. [
  36862. {
  36863. name: "Macro",
  36864. height: math.unit(625, "feet"),
  36865. default: true
  36866. },
  36867. ]
  36868. ))
  36869. characterMakers.push(() => makeCharacter(
  36870. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36871. {
  36872. side: {
  36873. height: math.unit(8, "feet"),
  36874. name: "Side",
  36875. image: {
  36876. source: "./media/characters/rezukii/side.svg",
  36877. extra: 979/542,
  36878. bottom: 87/1066
  36879. }
  36880. },
  36881. sitting: {
  36882. height: math.unit(14.6, "feet"),
  36883. name: "Sitting",
  36884. image: {
  36885. source: "./media/characters/rezukii/sitting.svg",
  36886. extra: 1023/813,
  36887. bottom: 45/1068
  36888. }
  36889. },
  36890. },
  36891. [
  36892. {
  36893. name: "Tiny",
  36894. height: math.unit(2, "feet")
  36895. },
  36896. {
  36897. name: "Smol",
  36898. height: math.unit(4, "feet")
  36899. },
  36900. {
  36901. name: "Normal",
  36902. height: math.unit(8, "feet"),
  36903. default: true
  36904. },
  36905. {
  36906. name: "Big",
  36907. height: math.unit(12, "feet")
  36908. },
  36909. {
  36910. name: "Macro",
  36911. height: math.unit(30, "feet")
  36912. },
  36913. ]
  36914. ))
  36915. characterMakers.push(() => makeCharacter(
  36916. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36917. {
  36918. front: {
  36919. height: math.unit(14, "feet"),
  36920. weight: math.unit(9.5, "tonnes"),
  36921. name: "Front",
  36922. image: {
  36923. source: "./media/characters/dawnheart/front.svg",
  36924. extra: 2792/2675,
  36925. bottom: 64/2856
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(14, "feet"),
  36933. default: true
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36939. {
  36940. front: {
  36941. height: math.unit(1.7, "m"),
  36942. name: "Front",
  36943. image: {
  36944. source: "./media/characters/gladi/front.svg",
  36945. extra: 1460/1362,
  36946. bottom: 19/1479
  36947. }
  36948. },
  36949. back: {
  36950. height: math.unit(1.7, "m"),
  36951. name: "Back",
  36952. image: {
  36953. source: "./media/characters/gladi/back.svg",
  36954. extra: 1459/1357,
  36955. bottom: 12/1471
  36956. }
  36957. },
  36958. feral: {
  36959. height: math.unit(2.05, "m"),
  36960. name: "Feral",
  36961. image: {
  36962. source: "./media/characters/gladi/feral.svg",
  36963. extra: 821/557,
  36964. bottom: 91/912
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Shortest",
  36971. height: math.unit(70, "cm")
  36972. },
  36973. {
  36974. name: "Normal",
  36975. height: math.unit(1.7, "m")
  36976. },
  36977. {
  36978. name: "Macro",
  36979. height: math.unit(10, "m"),
  36980. default: true
  36981. },
  36982. {
  36983. name: "Tallest",
  36984. height: math.unit(200, "m")
  36985. },
  36986. ]
  36987. ))
  36988. characterMakers.push(() => makeCharacter(
  36989. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36990. {
  36991. front: {
  36992. height: math.unit(5 + 7/12, "feet"),
  36993. weight: math.unit(2, "tons"),
  36994. name: "Front",
  36995. image: {
  36996. source: "./media/characters/erdno/front.svg",
  36997. extra: 1234/1129,
  36998. bottom: 35/1269
  36999. }
  37000. },
  37001. angled: {
  37002. height: math.unit(5 + 7/12, "feet"),
  37003. weight: math.unit(2, "tons"),
  37004. name: "Angled",
  37005. image: {
  37006. source: "./media/characters/erdno/angled.svg",
  37007. extra: 1185/1139,
  37008. bottom: 36/1221
  37009. }
  37010. },
  37011. side: {
  37012. height: math.unit(5 + 7/12, "feet"),
  37013. weight: math.unit(2, "tons"),
  37014. name: "Side",
  37015. image: {
  37016. source: "./media/characters/erdno/side.svg",
  37017. extra: 1191/1144,
  37018. bottom: 40/1231
  37019. }
  37020. },
  37021. back: {
  37022. height: math.unit(5 + 7/12, "feet"),
  37023. weight: math.unit(2, "tons"),
  37024. name: "Back",
  37025. image: {
  37026. source: "./media/characters/erdno/back.svg",
  37027. extra: 1202/1146,
  37028. bottom: 17/1219
  37029. }
  37030. },
  37031. frontNsfw: {
  37032. height: math.unit(5 + 7/12, "feet"),
  37033. weight: math.unit(2, "tons"),
  37034. name: "Front (NSFW)",
  37035. image: {
  37036. source: "./media/characters/erdno/front-nsfw.svg",
  37037. extra: 1234/1129,
  37038. bottom: 35/1269
  37039. }
  37040. },
  37041. angledNsfw: {
  37042. height: math.unit(5 + 7/12, "feet"),
  37043. weight: math.unit(2, "tons"),
  37044. name: "Angled (NSFW)",
  37045. image: {
  37046. source: "./media/characters/erdno/angled-nsfw.svg",
  37047. extra: 1185/1139,
  37048. bottom: 36/1221
  37049. }
  37050. },
  37051. sideNsfw: {
  37052. height: math.unit(5 + 7/12, "feet"),
  37053. weight: math.unit(2, "tons"),
  37054. name: "Side (NSFW)",
  37055. image: {
  37056. source: "./media/characters/erdno/side-nsfw.svg",
  37057. extra: 1191/1144,
  37058. bottom: 40/1231
  37059. }
  37060. },
  37061. backNsfw: {
  37062. height: math.unit(5 + 7/12, "feet"),
  37063. weight: math.unit(2, "tons"),
  37064. name: "Back (NSFW)",
  37065. image: {
  37066. source: "./media/characters/erdno/back-nsfw.svg",
  37067. extra: 1202/1146,
  37068. bottom: 17/1219
  37069. }
  37070. },
  37071. frontHyper: {
  37072. height: math.unit(5 + 7/12, "feet"),
  37073. weight: math.unit(2, "tons"),
  37074. name: "Front (Hyper)",
  37075. image: {
  37076. source: "./media/characters/erdno/front-hyper.svg",
  37077. extra: 1298/1136,
  37078. bottom: 35/1333
  37079. }
  37080. },
  37081. },
  37082. [
  37083. {
  37084. name: "Normal",
  37085. height: math.unit(5 + 7/12, "feet"),
  37086. default: true
  37087. },
  37088. {
  37089. name: "Big",
  37090. height: math.unit(5.7, "meters")
  37091. },
  37092. {
  37093. name: "Macro",
  37094. height: math.unit(5.7, "kilometers")
  37095. },
  37096. {
  37097. name: "Megamacro",
  37098. height: math.unit(5.7, "earths")
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(5 + 10/12, "feet"),
  37107. weight: math.unit(150, "lb"),
  37108. name: "Front",
  37109. image: {
  37110. source: "./media/characters/jamie/front.svg",
  37111. extra: 1908/1768,
  37112. bottom: 19/1927
  37113. }
  37114. },
  37115. },
  37116. [
  37117. {
  37118. name: "Minimum",
  37119. height: math.unit(2, "cm")
  37120. },
  37121. {
  37122. name: "Micro",
  37123. height: math.unit(3, "inches")
  37124. },
  37125. {
  37126. name: "Normal",
  37127. height: math.unit(5 + 10/12, "feet"),
  37128. default: true
  37129. },
  37130. {
  37131. name: "Macro",
  37132. height: math.unit(150, "feet")
  37133. },
  37134. {
  37135. name: "Megamacro",
  37136. height: math.unit(10000, "m")
  37137. },
  37138. ]
  37139. ))
  37140. characterMakers.push(() => makeCharacter(
  37141. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37142. {
  37143. front: {
  37144. height: math.unit(2, "meters"),
  37145. weight: math.unit(100, "kg"),
  37146. name: "Front",
  37147. image: {
  37148. source: "./media/characters/shiron/front.svg",
  37149. extra: 2103/1985,
  37150. bottom: 98/2201
  37151. }
  37152. },
  37153. back: {
  37154. height: math.unit(2, "meters"),
  37155. weight: math.unit(100, "kg"),
  37156. name: "Back",
  37157. image: {
  37158. source: "./media/characters/shiron/back.svg",
  37159. extra: 2110/2015,
  37160. bottom: 89/2199
  37161. }
  37162. },
  37163. hand: {
  37164. height: math.unit(0.96, "feet"),
  37165. name: "Hand",
  37166. image: {
  37167. source: "./media/characters/shiron/hand.svg"
  37168. }
  37169. },
  37170. foot: {
  37171. height: math.unit(1.464, "feet"),
  37172. name: "Foot",
  37173. image: {
  37174. source: "./media/characters/shiron/foot.svg"
  37175. }
  37176. },
  37177. },
  37178. [
  37179. {
  37180. name: "Normal",
  37181. height: math.unit(2, "meters")
  37182. },
  37183. {
  37184. name: "Macro",
  37185. height: math.unit(500, "meters"),
  37186. default: true
  37187. },
  37188. {
  37189. name: "Megamacro",
  37190. height: math.unit(20, "km")
  37191. },
  37192. ]
  37193. ))
  37194. characterMakers.push(() => makeCharacter(
  37195. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37196. {
  37197. front: {
  37198. height: math.unit(6, "feet"),
  37199. name: "Front",
  37200. image: {
  37201. source: "./media/characters/sam/front.svg",
  37202. extra: 849/826,
  37203. bottom: 19/868
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(6, "feet"),
  37211. default: true
  37212. },
  37213. ]
  37214. ))
  37215. characterMakers.push(() => makeCharacter(
  37216. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37217. {
  37218. front: {
  37219. height: math.unit(8 + 4/12, "feet"),
  37220. weight: math.unit(122, "kg"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/namori-kurogawa/front.svg",
  37224. extra: 1894/1576,
  37225. bottom: 34/1928
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(8 + 4/12, "feet"),
  37233. default: true
  37234. },
  37235. ]
  37236. ))
  37237. characterMakers.push(() => makeCharacter(
  37238. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37239. {
  37240. front: {
  37241. height: math.unit(9, "feet"),
  37242. weight: math.unit(621, "lb"),
  37243. name: "Front",
  37244. image: {
  37245. source: "./media/characters/unmru/front.svg",
  37246. extra: 1853/1747,
  37247. bottom: 73/1926
  37248. }
  37249. },
  37250. side: {
  37251. height: math.unit(9, "feet"),
  37252. weight: math.unit(621, "lb"),
  37253. name: "Side",
  37254. image: {
  37255. source: "./media/characters/unmru/side.svg",
  37256. extra: 1781/1671,
  37257. bottom: 127/1908
  37258. }
  37259. },
  37260. back: {
  37261. height: math.unit(9, "feet"),
  37262. weight: math.unit(621, "lb"),
  37263. name: "Back",
  37264. image: {
  37265. source: "./media/characters/unmru/back.svg",
  37266. extra: 1894/1765,
  37267. bottom: 75/1969
  37268. }
  37269. },
  37270. dick: {
  37271. height: math.unit(3, "feet"),
  37272. weight: math.unit(35, "lb"),
  37273. name: "Dick",
  37274. image: {
  37275. source: "./media/characters/unmru/dick.svg"
  37276. }
  37277. },
  37278. },
  37279. [
  37280. {
  37281. name: "Normal",
  37282. height: math.unit(9, "feet")
  37283. },
  37284. {
  37285. name: "Natural",
  37286. height: math.unit(27, "feet"),
  37287. default: true
  37288. },
  37289. {
  37290. name: "Giant",
  37291. height: math.unit(90, "feet")
  37292. },
  37293. {
  37294. name: "Kaiju",
  37295. height: math.unit(270, "feet")
  37296. },
  37297. {
  37298. name: "Macro",
  37299. height: math.unit(900, "feet")
  37300. },
  37301. {
  37302. name: "Macro+",
  37303. height: math.unit(2700, "feet")
  37304. },
  37305. {
  37306. name: "Megamacro",
  37307. height: math.unit(9000, "feet")
  37308. },
  37309. {
  37310. name: "City-Crushing",
  37311. height: math.unit(27000, "feet")
  37312. },
  37313. {
  37314. name: "Mountain-Mashing",
  37315. height: math.unit(90000, "feet")
  37316. },
  37317. {
  37318. name: "Earth-Eclipsing",
  37319. height: math.unit(2.7e8, "feet")
  37320. },
  37321. {
  37322. name: "Sol-Swallowing",
  37323. height: math.unit(9e10, "feet")
  37324. },
  37325. {
  37326. name: "Majoris-Munching",
  37327. height: math.unit(2.7e13, "feet")
  37328. },
  37329. ]
  37330. ))
  37331. characterMakers.push(() => makeCharacter(
  37332. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37333. {
  37334. front: {
  37335. height: math.unit(1, "inch"),
  37336. name: "Front",
  37337. image: {
  37338. source: "./media/characters/squeaks-mouse/front.svg",
  37339. extra: 352/308,
  37340. bottom: 25/377
  37341. }
  37342. },
  37343. },
  37344. [
  37345. {
  37346. name: "Micro",
  37347. height: math.unit(1, "inch"),
  37348. default: true
  37349. },
  37350. ]
  37351. ))
  37352. characterMakers.push(() => makeCharacter(
  37353. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37354. {
  37355. side: {
  37356. height: math.unit(35, "feet"),
  37357. name: "Side",
  37358. image: {
  37359. source: "./media/characters/sayko/side.svg",
  37360. extra: 1697/1021,
  37361. bottom: 82/1779
  37362. }
  37363. },
  37364. head: {
  37365. height: math.unit(16, "feet"),
  37366. name: "Head",
  37367. image: {
  37368. source: "./media/characters/sayko/head.svg"
  37369. }
  37370. },
  37371. forepaw: {
  37372. height: math.unit(7.85, "feet"),
  37373. name: "Forepaw",
  37374. image: {
  37375. source: "./media/characters/sayko/forepaw.svg"
  37376. }
  37377. },
  37378. hindpaw: {
  37379. height: math.unit(8.8, "feet"),
  37380. name: "Hindpaw",
  37381. image: {
  37382. source: "./media/characters/sayko/hindpaw.svg"
  37383. }
  37384. },
  37385. },
  37386. [
  37387. {
  37388. name: "Normal",
  37389. height: math.unit(35, "feet"),
  37390. default: true
  37391. },
  37392. {
  37393. name: "Colossus",
  37394. height: math.unit(100, "meters")
  37395. },
  37396. {
  37397. name: "\"Small\" Deity",
  37398. height: math.unit(1, "km")
  37399. },
  37400. {
  37401. name: "\"Large\" Deity",
  37402. height: math.unit(15, "km")
  37403. },
  37404. ]
  37405. ))
  37406. characterMakers.push(() => makeCharacter(
  37407. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37408. {
  37409. front: {
  37410. height: math.unit(6, "feet"),
  37411. weight: math.unit(250, "lb"),
  37412. name: "Front",
  37413. image: {
  37414. source: "./media/characters/mukiro/front.svg",
  37415. extra: 1368/1310,
  37416. bottom: 34/1402
  37417. }
  37418. },
  37419. },
  37420. [
  37421. {
  37422. name: "Normal",
  37423. height: math.unit(6, "feet"),
  37424. default: true
  37425. },
  37426. ]
  37427. ))
  37428. characterMakers.push(() => makeCharacter(
  37429. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37430. {
  37431. front: {
  37432. height: math.unit(12 + 4/12, "feet"),
  37433. name: "Front",
  37434. image: {
  37435. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37436. extra: 1346/1311,
  37437. bottom: 65/1411
  37438. }
  37439. },
  37440. },
  37441. [
  37442. {
  37443. name: "Base",
  37444. height: math.unit(12 + 4/12, "feet"),
  37445. default: true
  37446. },
  37447. {
  37448. name: "Macro",
  37449. height: math.unit(150, "feet")
  37450. },
  37451. {
  37452. name: "Mega",
  37453. height: math.unit(2, "miles")
  37454. },
  37455. {
  37456. name: "Demi God",
  37457. height: math.unit(4, "AU")
  37458. },
  37459. {
  37460. name: "God Size",
  37461. height: math.unit(1, "universe")
  37462. },
  37463. ]
  37464. ))
  37465. characterMakers.push(() => makeCharacter(
  37466. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37467. {
  37468. front: {
  37469. height: math.unit(3 + 3/12, "feet"),
  37470. weight: math.unit(88, "lb"),
  37471. name: "Front",
  37472. image: {
  37473. source: "./media/characters/trey/front.svg",
  37474. extra: 1815/1509,
  37475. bottom: 60/1875
  37476. }
  37477. },
  37478. },
  37479. [
  37480. {
  37481. name: "Normal",
  37482. height: math.unit(3 + 3/12, "feet"),
  37483. default: true
  37484. },
  37485. ]
  37486. ))
  37487. characterMakers.push(() => makeCharacter(
  37488. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37489. {
  37490. front: {
  37491. height: math.unit(4, "meters"),
  37492. name: "Front",
  37493. image: {
  37494. source: "./media/characters/adelonda/front.svg",
  37495. extra: 1077/982,
  37496. bottom: 39/1116
  37497. }
  37498. },
  37499. back: {
  37500. height: math.unit(4, "meters"),
  37501. name: "Back",
  37502. image: {
  37503. source: "./media/characters/adelonda/back.svg",
  37504. extra: 1105/1003,
  37505. bottom: 25/1130
  37506. }
  37507. },
  37508. },
  37509. [
  37510. {
  37511. name: "Normal",
  37512. height: math.unit(4, "meters"),
  37513. default: true
  37514. },
  37515. ]
  37516. ))
  37517. characterMakers.push(() => makeCharacter(
  37518. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37519. {
  37520. front: {
  37521. height: math.unit(8 + 4/12, "feet"),
  37522. weight: math.unit(670, "lb"),
  37523. name: "Front",
  37524. image: {
  37525. source: "./media/characters/acadiel/front.svg",
  37526. extra: 1901/1595,
  37527. bottom: 142/2043
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Normal",
  37534. height: math.unit(8 + 4/12, "feet"),
  37535. default: true
  37536. },
  37537. {
  37538. name: "Macro",
  37539. height: math.unit(200, "feet")
  37540. },
  37541. ]
  37542. ))
  37543. characterMakers.push(() => makeCharacter(
  37544. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37545. {
  37546. front: {
  37547. height: math.unit(6 + 2/12, "feet"),
  37548. weight: math.unit(185, "lb"),
  37549. name: "Front",
  37550. image: {
  37551. source: "./media/characters/kayne-ein/front.svg",
  37552. extra: 1780/1560,
  37553. bottom: 81/1861
  37554. }
  37555. },
  37556. },
  37557. [
  37558. {
  37559. name: "Normal",
  37560. height: math.unit(6 + 2/12, "feet"),
  37561. default: true
  37562. },
  37563. {
  37564. name: "Transformation Stage",
  37565. height: math.unit(15, "feet")
  37566. },
  37567. {
  37568. name: "Macro",
  37569. height: math.unit(150, "feet")
  37570. },
  37571. {
  37572. name: "Earth's Shadow",
  37573. height: math.unit(6200, "miles")
  37574. },
  37575. {
  37576. name: "Universal Demon",
  37577. height: math.unit(28e9, "parsecs")
  37578. },
  37579. {
  37580. name: "Multiverse God",
  37581. height: math.unit(3, "multiverses")
  37582. },
  37583. ]
  37584. ))
  37585. characterMakers.push(() => makeCharacter(
  37586. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37587. {
  37588. front: {
  37589. height: math.unit(5 + 5/12, "feet"),
  37590. name: "Front",
  37591. image: {
  37592. source: "./media/characters/fawn/front.svg",
  37593. extra: 1873/1731,
  37594. bottom: 95/1968
  37595. }
  37596. },
  37597. back: {
  37598. height: math.unit(5 + 5/12, "feet"),
  37599. name: "Back",
  37600. image: {
  37601. source: "./media/characters/fawn/back.svg",
  37602. extra: 1813/1700,
  37603. bottom: 14/1827
  37604. }
  37605. },
  37606. hoof: {
  37607. height: math.unit(1.45, "feet"),
  37608. name: "Hoof",
  37609. image: {
  37610. source: "./media/characters/fawn/hoof.svg"
  37611. }
  37612. },
  37613. },
  37614. [
  37615. {
  37616. name: "Normal",
  37617. height: math.unit(5 + 5/12, "feet"),
  37618. default: true
  37619. },
  37620. ]
  37621. ))
  37622. characterMakers.push(() => makeCharacter(
  37623. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37624. {
  37625. front: {
  37626. height: math.unit(2 + 5/12, "feet"),
  37627. name: "Front",
  37628. image: {
  37629. source: "./media/characters/orion/front.svg",
  37630. extra: 1366/1304,
  37631. bottom: 43/1409
  37632. }
  37633. },
  37634. paw: {
  37635. height: math.unit(0.52, "feet"),
  37636. name: "Paw",
  37637. image: {
  37638. source: "./media/characters/orion/paw.svg"
  37639. }
  37640. },
  37641. },
  37642. [
  37643. {
  37644. name: "Normal",
  37645. height: math.unit(2 + 5/12, "feet"),
  37646. default: true
  37647. },
  37648. ]
  37649. ))
  37650. characterMakers.push(() => makeCharacter(
  37651. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37652. {
  37653. front: {
  37654. height: math.unit(5 + 10/12, "feet"),
  37655. name: "Front",
  37656. image: {
  37657. source: "./media/characters/vera/front.svg",
  37658. extra: 1680/1575,
  37659. bottom: 49/1729
  37660. }
  37661. },
  37662. back: {
  37663. height: math.unit(5 + 10/12, "feet"),
  37664. name: "Back",
  37665. image: {
  37666. source: "./media/characters/vera/back.svg",
  37667. extra: 1700/1588,
  37668. bottom: 18/1718
  37669. }
  37670. },
  37671. arcanine: {
  37672. height: math.unit(6 + 8/12, "feet"),
  37673. name: "Arcanine",
  37674. image: {
  37675. source: "./media/characters/vera/arcanine.svg",
  37676. extra: 1590/1511,
  37677. bottom: 71/1661
  37678. }
  37679. },
  37680. maw: {
  37681. height: math.unit(0.82, "feet"),
  37682. name: "Maw",
  37683. image: {
  37684. source: "./media/characters/vera/maw.svg"
  37685. }
  37686. },
  37687. mawArcanine: {
  37688. height: math.unit(0.97, "feet"),
  37689. name: "Maw (Arcanine)",
  37690. image: {
  37691. source: "./media/characters/vera/maw-arcanine.svg"
  37692. }
  37693. },
  37694. paw: {
  37695. height: math.unit(0.75, "feet"),
  37696. name: "Paw",
  37697. image: {
  37698. source: "./media/characters/vera/paw.svg"
  37699. }
  37700. },
  37701. pawprint: {
  37702. height: math.unit(0.52, "feet"),
  37703. name: "Pawprint",
  37704. image: {
  37705. source: "./media/characters/vera/pawprint.svg"
  37706. }
  37707. },
  37708. },
  37709. [
  37710. {
  37711. name: "Normal",
  37712. height: math.unit(5 + 10/12, "feet"),
  37713. default: true
  37714. },
  37715. {
  37716. name: "Macro",
  37717. height: math.unit(75, "feet")
  37718. },
  37719. ]
  37720. ))
  37721. characterMakers.push(() => makeCharacter(
  37722. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37723. {
  37724. front: {
  37725. height: math.unit(4, "feet"),
  37726. weight: math.unit(40, "lb"),
  37727. name: "Front",
  37728. image: {
  37729. source: "./media/characters/orvan-rabbit/front.svg",
  37730. extra: 1896/1642,
  37731. bottom: 29/1925
  37732. }
  37733. },
  37734. },
  37735. [
  37736. {
  37737. name: "Normal",
  37738. height: math.unit(4, "feet"),
  37739. default: true
  37740. },
  37741. ]
  37742. ))
  37743. characterMakers.push(() => makeCharacter(
  37744. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37745. {
  37746. front: {
  37747. height: math.unit(6, "feet"),
  37748. weight: math.unit(168, "lb"),
  37749. name: "Front",
  37750. image: {
  37751. source: "./media/characters/lisa/front.svg",
  37752. extra: 2065/1867,
  37753. bottom: 46/2111
  37754. }
  37755. },
  37756. back: {
  37757. height: math.unit(6, "feet"),
  37758. weight: math.unit(168, "lb"),
  37759. name: "Back",
  37760. image: {
  37761. source: "./media/characters/lisa/back.svg",
  37762. extra: 1982/1838,
  37763. bottom: 29/2011
  37764. }
  37765. },
  37766. maw: {
  37767. height: math.unit(0.81, "feet"),
  37768. name: "Maw",
  37769. image: {
  37770. source: "./media/characters/lisa/maw.svg"
  37771. }
  37772. },
  37773. paw: {
  37774. height: math.unit(0.9, "feet"),
  37775. name: "Paw",
  37776. image: {
  37777. source: "./media/characters/lisa/paw.svg"
  37778. }
  37779. },
  37780. caribousune: {
  37781. height: math.unit(7 + 2/12, "feet"),
  37782. weight: math.unit(268, "lb"),
  37783. name: "Caribousune",
  37784. image: {
  37785. source: "./media/characters/lisa/caribousune.svg",
  37786. extra: 1843/1633,
  37787. bottom: 29/1872
  37788. }
  37789. },
  37790. frontCaribousune: {
  37791. height: math.unit(7 + 2/12, "feet"),
  37792. weight: math.unit(268, "lb"),
  37793. name: "Front (Caribousune)",
  37794. image: {
  37795. source: "./media/characters/lisa/front-caribousune.svg",
  37796. extra: 1818/1638,
  37797. bottom: 52/1870
  37798. }
  37799. },
  37800. sideCaribousune: {
  37801. height: math.unit(7 + 2/12, "feet"),
  37802. weight: math.unit(268, "lb"),
  37803. name: "Side (Caribousune)",
  37804. image: {
  37805. source: "./media/characters/lisa/side-caribousune.svg",
  37806. extra: 1851/1635,
  37807. bottom: 16/1867
  37808. }
  37809. },
  37810. backCaribousune: {
  37811. height: math.unit(7 + 2/12, "feet"),
  37812. weight: math.unit(268, "lb"),
  37813. name: "Back (Caribousune)",
  37814. image: {
  37815. source: "./media/characters/lisa/back-caribousune.svg",
  37816. extra: 1801/1604,
  37817. bottom: 44/1845
  37818. }
  37819. },
  37820. caribou: {
  37821. height: math.unit(7 + 2/12, "feet"),
  37822. weight: math.unit(268, "lb"),
  37823. name: "Caribou",
  37824. image: {
  37825. source: "./media/characters/lisa/caribou.svg",
  37826. extra: 1843/1633,
  37827. bottom: 29/1872
  37828. }
  37829. },
  37830. frontCaribou: {
  37831. height: math.unit(7 + 2/12, "feet"),
  37832. weight: math.unit(268, "lb"),
  37833. name: "Front (Caribou)",
  37834. image: {
  37835. source: "./media/characters/lisa/front-caribou.svg",
  37836. extra: 1818/1638,
  37837. bottom: 52/1870
  37838. }
  37839. },
  37840. sideCaribou: {
  37841. height: math.unit(7 + 2/12, "feet"),
  37842. weight: math.unit(268, "lb"),
  37843. name: "Side (Caribou)",
  37844. image: {
  37845. source: "./media/characters/lisa/side-caribou.svg",
  37846. extra: 1851/1635,
  37847. bottom: 16/1867
  37848. }
  37849. },
  37850. backCaribou: {
  37851. height: math.unit(7 + 2/12, "feet"),
  37852. weight: math.unit(268, "lb"),
  37853. name: "Back (Caribou)",
  37854. image: {
  37855. source: "./media/characters/lisa/back-caribou.svg",
  37856. extra: 1801/1604,
  37857. bottom: 44/1845
  37858. }
  37859. },
  37860. mawCaribou: {
  37861. height: math.unit(1.45, "feet"),
  37862. name: "Maw (Caribou)",
  37863. image: {
  37864. source: "./media/characters/lisa/maw-caribou.svg"
  37865. }
  37866. },
  37867. mawCaribousune: {
  37868. height: math.unit(1.45, "feet"),
  37869. name: "Maw (Caribousune)",
  37870. image: {
  37871. source: "./media/characters/lisa/maw-caribousune.svg"
  37872. }
  37873. },
  37874. pawCaribousune: {
  37875. height: math.unit(1.61, "feet"),
  37876. name: "Paw (Caribou)",
  37877. image: {
  37878. source: "./media/characters/lisa/paw-caribousune.svg"
  37879. }
  37880. },
  37881. },
  37882. [
  37883. {
  37884. name: "Normal",
  37885. height: math.unit(6, "feet")
  37886. },
  37887. {
  37888. name: "God Size",
  37889. height: math.unit(72, "feet"),
  37890. default: true
  37891. },
  37892. {
  37893. name: "Towering",
  37894. height: math.unit(288, "feet")
  37895. },
  37896. {
  37897. name: "City Size",
  37898. height: math.unit(48384, "feet")
  37899. },
  37900. {
  37901. name: "Continental",
  37902. height: math.unit(4200, "miles")
  37903. },
  37904. {
  37905. name: "Planet Eater",
  37906. height: math.unit(42, "earths")
  37907. },
  37908. {
  37909. name: "Star Swallower",
  37910. height: math.unit(42, "solarradii")
  37911. },
  37912. {
  37913. name: "System Swallower",
  37914. height: math.unit(84000, "AU")
  37915. },
  37916. {
  37917. name: "Galaxy Gobbler",
  37918. height: math.unit(42, "galaxies")
  37919. },
  37920. {
  37921. name: "Universe Devourer",
  37922. height: math.unit(42, "universes")
  37923. },
  37924. {
  37925. name: "Multiverse Muncher",
  37926. height: math.unit(42, "multiverses")
  37927. },
  37928. ]
  37929. ))
  37930. characterMakers.push(() => makeCharacter(
  37931. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37932. {
  37933. front: {
  37934. height: math.unit(36, "feet"),
  37935. name: "Front",
  37936. image: {
  37937. source: "./media/characters/shadow-rat/front.svg",
  37938. extra: 1845/1758,
  37939. bottom: 83/1928
  37940. }
  37941. },
  37942. },
  37943. [
  37944. {
  37945. name: "Macro",
  37946. height: math.unit(36, "feet"),
  37947. default: true
  37948. },
  37949. ]
  37950. ))
  37951. characterMakers.push(() => makeCharacter(
  37952. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37953. {
  37954. side: {
  37955. height: math.unit(8, "feet"),
  37956. weight: math.unit(2630, "lb"),
  37957. name: "Side",
  37958. image: {
  37959. source: "./media/characters/torallia/side.svg",
  37960. extra: 2164/2021,
  37961. bottom: 371/2535
  37962. }
  37963. },
  37964. },
  37965. [
  37966. {
  37967. name: "Mortal Interaction",
  37968. height: math.unit(8, "feet")
  37969. },
  37970. {
  37971. name: "Natural",
  37972. height: math.unit(24, "feet"),
  37973. default: true
  37974. },
  37975. {
  37976. name: "Giant",
  37977. height: math.unit(80, "feet")
  37978. },
  37979. {
  37980. name: "Kaiju",
  37981. height: math.unit(240, "feet")
  37982. },
  37983. {
  37984. name: "Macro",
  37985. height: math.unit(800, "feet")
  37986. },
  37987. {
  37988. name: "Macro+",
  37989. height: math.unit(2400, "feet")
  37990. },
  37991. {
  37992. name: "Macro++",
  37993. height: math.unit(8000, "feet")
  37994. },
  37995. {
  37996. name: "City-Crushing",
  37997. height: math.unit(24000, "feet")
  37998. },
  37999. {
  38000. name: "Mountain-Mashing",
  38001. height: math.unit(80000, "feet")
  38002. },
  38003. {
  38004. name: "District Demolisher",
  38005. height: math.unit(240000, "feet")
  38006. },
  38007. {
  38008. name: "Tri-County Terror",
  38009. height: math.unit(800000, "feet")
  38010. },
  38011. {
  38012. name: "State Smasher",
  38013. height: math.unit(2.4e6, "feet")
  38014. },
  38015. {
  38016. name: "Nation Nemesis",
  38017. height: math.unit(8e6, "feet")
  38018. },
  38019. {
  38020. name: "Continent Cracker",
  38021. height: math.unit(2.4e7, "feet")
  38022. },
  38023. {
  38024. name: "Planet-Pillaging",
  38025. height: math.unit(8e7, "feet")
  38026. },
  38027. {
  38028. name: "Earth-Eclipsing",
  38029. height: math.unit(2.4e8, "feet")
  38030. },
  38031. {
  38032. name: "Jovian-Jostling",
  38033. height: math.unit(8e8, "feet")
  38034. },
  38035. {
  38036. name: "Gas Giant Gulper",
  38037. height: math.unit(2.4e9, "feet")
  38038. },
  38039. {
  38040. name: "Astral Annihilator",
  38041. height: math.unit(8e9, "feet")
  38042. },
  38043. {
  38044. name: "Celestial Conqueror",
  38045. height: math.unit(2.4e10, "feet")
  38046. },
  38047. {
  38048. name: "Sol-Swallowing",
  38049. height: math.unit(8e10, "feet")
  38050. },
  38051. {
  38052. name: "Hunter of the Heavens",
  38053. height: math.unit(2.4e13, "feet")
  38054. },
  38055. ]
  38056. ))
  38057. characterMakers.push(() => makeCharacter(
  38058. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38059. {
  38060. front: {
  38061. height: math.unit(6 + 8/12, "feet"),
  38062. name: "Front",
  38063. image: {
  38064. source: "./media/characters/rebecca-pawlson/front.svg",
  38065. extra: 1737/1596,
  38066. bottom: 107/1844
  38067. }
  38068. },
  38069. back: {
  38070. height: math.unit(6 + 8/12, "feet"),
  38071. name: "Back",
  38072. image: {
  38073. source: "./media/characters/rebecca-pawlson/back.svg",
  38074. extra: 1702/1523,
  38075. bottom: 86/1788
  38076. }
  38077. },
  38078. },
  38079. [
  38080. {
  38081. name: "Normal",
  38082. height: math.unit(6 + 8/12, "feet")
  38083. },
  38084. {
  38085. name: "Mini Macro",
  38086. height: math.unit(10, "feet"),
  38087. default: true
  38088. },
  38089. {
  38090. name: "Macro",
  38091. height: math.unit(100, "feet")
  38092. },
  38093. {
  38094. name: "Mega Macro",
  38095. height: math.unit(2500, "feet")
  38096. },
  38097. {
  38098. name: "Giga Macro",
  38099. height: math.unit(50, "miles")
  38100. },
  38101. ]
  38102. ))
  38103. characterMakers.push(() => makeCharacter(
  38104. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38105. {
  38106. front: {
  38107. height: math.unit(7 + 6/12, "feet"),
  38108. weight: math.unit(600, "lb"),
  38109. name: "Front",
  38110. image: {
  38111. source: "./media/characters/moxie-nova/front.svg",
  38112. extra: 1734/1652,
  38113. bottom: 41/1775
  38114. }
  38115. },
  38116. },
  38117. [
  38118. {
  38119. name: "Normal",
  38120. height: math.unit(7 + 6/12, "feet"),
  38121. default: true
  38122. },
  38123. ]
  38124. ))
  38125. characterMakers.push(() => makeCharacter(
  38126. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38127. {
  38128. goat: {
  38129. height: math.unit(4, "feet"),
  38130. weight: math.unit(180, "lb"),
  38131. name: "Goat",
  38132. image: {
  38133. source: "./media/characters/tiffany/goat.svg",
  38134. extra: 1845/1595,
  38135. bottom: 106/1951
  38136. }
  38137. },
  38138. front: {
  38139. height: math.unit(5, "feet"),
  38140. weight: math.unit(150, "lb"),
  38141. name: "Foxcoon",
  38142. image: {
  38143. source: "./media/characters/tiffany/foxcoon.svg",
  38144. extra: 1941/1845,
  38145. bottom: 58/1999
  38146. }
  38147. },
  38148. },
  38149. [
  38150. {
  38151. name: "Normal",
  38152. height: math.unit(5, "feet"),
  38153. default: true
  38154. },
  38155. ]
  38156. ))
  38157. characterMakers.push(() => makeCharacter(
  38158. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38159. {
  38160. front: {
  38161. height: math.unit(8, "feet"),
  38162. weight: math.unit(300, "lb"),
  38163. name: "Front",
  38164. image: {
  38165. source: "./media/characters/raxinath/front.svg",
  38166. extra: 1407/1309,
  38167. bottom: 39/1446
  38168. }
  38169. },
  38170. back: {
  38171. height: math.unit(8, "feet"),
  38172. weight: math.unit(300, "lb"),
  38173. name: "Back",
  38174. image: {
  38175. source: "./media/characters/raxinath/back.svg",
  38176. extra: 1405/1315,
  38177. bottom: 9/1414
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "Speck",
  38184. height: math.unit(0.5, "nm")
  38185. },
  38186. {
  38187. name: "Micro",
  38188. height: math.unit(3, "inches")
  38189. },
  38190. {
  38191. name: "Kobold",
  38192. height: math.unit(3, "feet")
  38193. },
  38194. {
  38195. name: "Normal",
  38196. height: math.unit(8, "feet"),
  38197. default: true
  38198. },
  38199. {
  38200. name: "Giant",
  38201. height: math.unit(50, "feet")
  38202. },
  38203. {
  38204. name: "Macro",
  38205. height: math.unit(1000, "feet")
  38206. },
  38207. {
  38208. name: "Megamacro",
  38209. height: math.unit(1, "mile")
  38210. },
  38211. ]
  38212. ))
  38213. characterMakers.push(() => makeCharacter(
  38214. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38215. {
  38216. front: {
  38217. height: math.unit(10, "feet"),
  38218. weight: math.unit(1442, "lb"),
  38219. name: "Front",
  38220. image: {
  38221. source: "./media/characters/mal-dragon/front.svg",
  38222. extra: 1515/1444,
  38223. bottom: 113/1628
  38224. }
  38225. },
  38226. back: {
  38227. height: math.unit(10, "feet"),
  38228. weight: math.unit(1442, "lb"),
  38229. name: "Back",
  38230. image: {
  38231. source: "./media/characters/mal-dragon/back.svg",
  38232. extra: 1527/1434,
  38233. bottom: 25/1552
  38234. }
  38235. },
  38236. },
  38237. [
  38238. {
  38239. name: "Mortal Interaction",
  38240. height: math.unit(10, "feet"),
  38241. default: true
  38242. },
  38243. {
  38244. name: "Large",
  38245. height: math.unit(30, "feet")
  38246. },
  38247. {
  38248. name: "Kaiju",
  38249. height: math.unit(300, "feet")
  38250. },
  38251. {
  38252. name: "Megamacro",
  38253. height: math.unit(10000, "feet")
  38254. },
  38255. {
  38256. name: "Continent Cracker",
  38257. height: math.unit(30000000, "feet")
  38258. },
  38259. {
  38260. name: "Sol-Swallowing",
  38261. height: math.unit(1e11, "feet")
  38262. },
  38263. {
  38264. name: "Light Universal",
  38265. height: math.unit(5, "universes")
  38266. },
  38267. {
  38268. name: "Universe Atoms",
  38269. height: math.unit(1.829e9, "universes")
  38270. },
  38271. {
  38272. name: "Light Multiversal",
  38273. height: math.unit(5, "multiverses")
  38274. },
  38275. {
  38276. name: "Multiverse Atoms",
  38277. height: math.unit(1.829e9, "multiverses")
  38278. },
  38279. {
  38280. name: "Fabric of Time",
  38281. height: math.unit(1e262, "multiverses")
  38282. },
  38283. ]
  38284. ))
  38285. characterMakers.push(() => makeCharacter(
  38286. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38287. {
  38288. front: {
  38289. height: math.unit(9, "feet"),
  38290. weight: math.unit(1050, "lb"),
  38291. name: "Front",
  38292. image: {
  38293. source: "./media/characters/tabitha/front.svg",
  38294. extra: 2083/1994,
  38295. bottom: 68/2151
  38296. }
  38297. },
  38298. },
  38299. [
  38300. {
  38301. name: "Baseline",
  38302. height: math.unit(9, "feet"),
  38303. default: true
  38304. },
  38305. {
  38306. name: "Giant",
  38307. height: math.unit(90, "feet")
  38308. },
  38309. {
  38310. name: "Macro",
  38311. height: math.unit(900, "feet")
  38312. },
  38313. {
  38314. name: "Megamacro",
  38315. height: math.unit(9000, "feet")
  38316. },
  38317. {
  38318. name: "City-Crushing",
  38319. height: math.unit(27000, "feet")
  38320. },
  38321. {
  38322. name: "Mountain-Mashing",
  38323. height: math.unit(90000, "feet")
  38324. },
  38325. {
  38326. name: "Nation Nemesis",
  38327. height: math.unit(9e6, "feet")
  38328. },
  38329. {
  38330. name: "Continent Cracker",
  38331. height: math.unit(27e6, "feet")
  38332. },
  38333. {
  38334. name: "Earth-Eclipsing",
  38335. height: math.unit(2.7e8, "feet")
  38336. },
  38337. {
  38338. name: "Gas Giant Gulper",
  38339. height: math.unit(2.7e9, "feet")
  38340. },
  38341. {
  38342. name: "Sol-Swallowing",
  38343. height: math.unit(9e10, "feet")
  38344. },
  38345. {
  38346. name: "Galaxy Gulper",
  38347. height: math.unit(9, "galaxies")
  38348. },
  38349. {
  38350. name: "Cosmos Churner",
  38351. height: math.unit(9, "universes")
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38357. {
  38358. front: {
  38359. height: math.unit(160, "cm"),
  38360. weight: math.unit(55, "kg"),
  38361. name: "Front",
  38362. image: {
  38363. source: "./media/characters/tow/front.svg",
  38364. extra: 1751/1722,
  38365. bottom: 74/1825
  38366. }
  38367. },
  38368. },
  38369. [
  38370. {
  38371. name: "Norm",
  38372. height: math.unit(160, "cm")
  38373. },
  38374. {
  38375. name: "Casual",
  38376. height: math.unit(3200, "m"),
  38377. default: true
  38378. },
  38379. {
  38380. name: "Show-Off",
  38381. height: math.unit(160, "km")
  38382. },
  38383. ]
  38384. ))
  38385. characterMakers.push(() => makeCharacter(
  38386. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38387. {
  38388. front: {
  38389. height: math.unit(7 + 11/12, "feet"),
  38390. weight: math.unit(342.8, "lb"),
  38391. name: "Front",
  38392. image: {
  38393. source: "./media/characters/vivian-orca-dragon/front.svg",
  38394. extra: 1890/1865,
  38395. bottom: 28/1918
  38396. }
  38397. },
  38398. },
  38399. [
  38400. {
  38401. name: "Micro",
  38402. height: math.unit(5, "inches")
  38403. },
  38404. {
  38405. name: "Normal",
  38406. height: math.unit(7 + 11/12, "feet"),
  38407. default: true
  38408. },
  38409. {
  38410. name: "Macro",
  38411. height: math.unit(395 + 7/12, "feet")
  38412. },
  38413. ]
  38414. ))
  38415. characterMakers.push(() => makeCharacter(
  38416. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38417. {
  38418. side: {
  38419. height: math.unit(10, "feet"),
  38420. weight: math.unit(1442, "lb"),
  38421. name: "Side",
  38422. image: {
  38423. source: "./media/characters/lotherakon/side.svg",
  38424. extra: 1604/1497,
  38425. bottom: 89/1693
  38426. }
  38427. },
  38428. },
  38429. [
  38430. {
  38431. name: "Mortal Interaction",
  38432. height: math.unit(10, "feet")
  38433. },
  38434. {
  38435. name: "Large",
  38436. height: math.unit(30, "feet"),
  38437. default: true
  38438. },
  38439. {
  38440. name: "Giant",
  38441. height: math.unit(100, "feet")
  38442. },
  38443. {
  38444. name: "Kaiju",
  38445. height: math.unit(300, "feet")
  38446. },
  38447. {
  38448. name: "Macro",
  38449. height: math.unit(1000, "feet")
  38450. },
  38451. {
  38452. name: "Macro+",
  38453. height: math.unit(3000, "feet")
  38454. },
  38455. {
  38456. name: "Megamacro",
  38457. height: math.unit(10000, "feet")
  38458. },
  38459. {
  38460. name: "City-Crushing",
  38461. height: math.unit(30000, "feet")
  38462. },
  38463. {
  38464. name: "Continent Cracker",
  38465. height: math.unit(30e6, "feet")
  38466. },
  38467. {
  38468. name: "Earth Eclipsing",
  38469. height: math.unit(3e8, "feet")
  38470. },
  38471. {
  38472. name: "Gas Giant Gulper",
  38473. height: math.unit(3e9, "feet")
  38474. },
  38475. {
  38476. name: "Sol-Swallowing",
  38477. height: math.unit(1e11, "feet")
  38478. },
  38479. {
  38480. name: "System Swallower",
  38481. height: math.unit(3e14, "feet")
  38482. },
  38483. {
  38484. name: "Galaxy Gulper",
  38485. height: math.unit(10, "galaxies")
  38486. },
  38487. {
  38488. name: "Light Universal",
  38489. height: math.unit(5, "universes")
  38490. },
  38491. {
  38492. name: "Universe Palm",
  38493. height: math.unit(20, "universes")
  38494. },
  38495. {
  38496. name: "Light Multiversal",
  38497. height: math.unit(5, "multiverses")
  38498. },
  38499. {
  38500. name: "Multiverse Palm",
  38501. height: math.unit(20, "multiverses")
  38502. },
  38503. {
  38504. name: "Inferno Incarnate",
  38505. height: math.unit(1e7, "multiverses")
  38506. },
  38507. ]
  38508. ))
  38509. characterMakers.push(() => makeCharacter(
  38510. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38511. {
  38512. front: {
  38513. height: math.unit(8, "feet"),
  38514. weight: math.unit(1200, "lb"),
  38515. name: "Front",
  38516. image: {
  38517. source: "./media/characters/malithee/front.svg",
  38518. extra: 1675/1640,
  38519. bottom: 162/1837
  38520. }
  38521. },
  38522. },
  38523. [
  38524. {
  38525. name: "Mortal Interaction",
  38526. height: math.unit(8, "feet"),
  38527. default: true
  38528. },
  38529. {
  38530. name: "Large",
  38531. height: math.unit(24, "feet")
  38532. },
  38533. {
  38534. name: "Kaiju",
  38535. height: math.unit(240, "feet")
  38536. },
  38537. {
  38538. name: "Megamacro",
  38539. height: math.unit(8000, "feet")
  38540. },
  38541. {
  38542. name: "Continent Cracker",
  38543. height: math.unit(24e6, "feet")
  38544. },
  38545. {
  38546. name: "Earth-Eclipsing",
  38547. height: math.unit(2.4e8, "feet")
  38548. },
  38549. {
  38550. name: "Sol-Swallowing",
  38551. height: math.unit(8e10, "feet")
  38552. },
  38553. {
  38554. name: "Galaxy Gulper",
  38555. height: math.unit(8, "galaxies")
  38556. },
  38557. {
  38558. name: "Light Universal",
  38559. height: math.unit(4, "universes")
  38560. },
  38561. {
  38562. name: "Universe Atoms",
  38563. height: math.unit(1.829e9, "universes")
  38564. },
  38565. {
  38566. name: "Light Multiversal",
  38567. height: math.unit(4, "multiverses")
  38568. },
  38569. {
  38570. name: "Multiverse Atoms",
  38571. height: math.unit(1.829e9, "multiverses")
  38572. },
  38573. {
  38574. name: "Nigh-Omnipresence",
  38575. height: math.unit(8e261, "multiverses")
  38576. },
  38577. ]
  38578. ))
  38579. characterMakers.push(() => makeCharacter(
  38580. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38581. {
  38582. front: {
  38583. height: math.unit(10, "feet"),
  38584. weight: math.unit(1500, "lb"),
  38585. name: "Front",
  38586. image: {
  38587. source: "./media/characters/miles-thestia/front.svg",
  38588. extra: 1812/1727,
  38589. bottom: 86/1898
  38590. }
  38591. },
  38592. back: {
  38593. height: math.unit(10, "feet"),
  38594. weight: math.unit(1500, "lb"),
  38595. name: "Back",
  38596. image: {
  38597. source: "./media/characters/miles-thestia/back.svg",
  38598. extra: 1799/1690,
  38599. bottom: 47/1846
  38600. }
  38601. },
  38602. frontNsfw: {
  38603. height: math.unit(10, "feet"),
  38604. weight: math.unit(1500, "lb"),
  38605. name: "Front (NSFW)",
  38606. image: {
  38607. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38608. extra: 1812/1727,
  38609. bottom: 86/1898
  38610. }
  38611. },
  38612. },
  38613. [
  38614. {
  38615. name: "Mini-Macro",
  38616. height: math.unit(10, "feet"),
  38617. default: true
  38618. },
  38619. ]
  38620. ))
  38621. characterMakers.push(() => makeCharacter(
  38622. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38623. {
  38624. front: {
  38625. height: math.unit(25, "feet"),
  38626. name: "Front",
  38627. image: {
  38628. source: "./media/characters/titan-s-wulf/front.svg",
  38629. extra: 1560/1484,
  38630. bottom: 76/1636
  38631. }
  38632. },
  38633. },
  38634. [
  38635. {
  38636. name: "Smallest",
  38637. height: math.unit(25, "feet"),
  38638. default: true
  38639. },
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(200, "feet")
  38643. },
  38644. {
  38645. name: "Macro",
  38646. height: math.unit(200000, "feet")
  38647. },
  38648. {
  38649. name: "Multiversal Original",
  38650. height: math.unit(10000, "multiverses")
  38651. },
  38652. ]
  38653. ))
  38654. characterMakers.push(() => makeCharacter(
  38655. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38656. {
  38657. front: {
  38658. height: math.unit(8, "feet"),
  38659. weight: math.unit(553, "lb"),
  38660. name: "Front",
  38661. image: {
  38662. source: "./media/characters/tawendeh/front.svg",
  38663. extra: 2365/2268,
  38664. bottom: 83/2448
  38665. }
  38666. },
  38667. frontClothed: {
  38668. height: math.unit(8, "feet"),
  38669. weight: math.unit(553, "lb"),
  38670. name: "Front (Clothed)",
  38671. image: {
  38672. source: "./media/characters/tawendeh/front-clothed.svg",
  38673. extra: 2365/2268,
  38674. bottom: 83/2448
  38675. }
  38676. },
  38677. back: {
  38678. height: math.unit(8, "feet"),
  38679. weight: math.unit(553, "lb"),
  38680. name: "Back",
  38681. image: {
  38682. source: "./media/characters/tawendeh/back.svg",
  38683. extra: 2397/2294,
  38684. bottom: 42/2439
  38685. }
  38686. },
  38687. },
  38688. [
  38689. {
  38690. name: "Mortal Interaction",
  38691. height: math.unit(8, "feet"),
  38692. default: true
  38693. },
  38694. {
  38695. name: "Giant",
  38696. height: math.unit(80, "feet")
  38697. },
  38698. {
  38699. name: "Macro",
  38700. height: math.unit(800, "feet")
  38701. },
  38702. {
  38703. name: "Megamacro",
  38704. height: math.unit(8000, "feet")
  38705. },
  38706. {
  38707. name: "City-Crushing",
  38708. height: math.unit(24000, "feet")
  38709. },
  38710. {
  38711. name: "Mountain-Mashing",
  38712. height: math.unit(80000, "feet")
  38713. },
  38714. {
  38715. name: "Nation Nemesis",
  38716. height: math.unit(8e6, "feet")
  38717. },
  38718. {
  38719. name: "Continent Cracker",
  38720. height: math.unit(24e6, "feet")
  38721. },
  38722. {
  38723. name: "Earth-Eclipsing",
  38724. height: math.unit(2.4e8, "feet")
  38725. },
  38726. {
  38727. name: "Gas Giant Gulper",
  38728. height: math.unit(2.4e9, "feet")
  38729. },
  38730. {
  38731. name: "Sol-Swallowing",
  38732. height: math.unit(8e10, "feet")
  38733. },
  38734. {
  38735. name: "Galaxy Gulper",
  38736. height: math.unit(8, "galaxies")
  38737. },
  38738. {
  38739. name: "Cosmos Churner",
  38740. height: math.unit(8, "universes")
  38741. },
  38742. {
  38743. name: "Omnipotent Otter",
  38744. height: math.unit(80, "universes")
  38745. },
  38746. ]
  38747. ))
  38748. characterMakers.push(() => makeCharacter(
  38749. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38750. {
  38751. front: {
  38752. height: math.unit(2.6, "meters"),
  38753. weight: math.unit(900, "kg"),
  38754. name: "Front",
  38755. image: {
  38756. source: "./media/characters/neesha/front.svg",
  38757. extra: 1803/1653,
  38758. bottom: 128/1931
  38759. }
  38760. },
  38761. },
  38762. [
  38763. {
  38764. name: "Normal",
  38765. height: math.unit(2.6, "meters"),
  38766. default: true
  38767. },
  38768. {
  38769. name: "Macro",
  38770. height: math.unit(50, "meters")
  38771. },
  38772. ]
  38773. ))
  38774. characterMakers.push(() => makeCharacter(
  38775. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38776. {
  38777. front: {
  38778. height: math.unit(5, "feet"),
  38779. weight: math.unit(185, "lb"),
  38780. name: "Front",
  38781. image: {
  38782. source: "./media/characters/kyera/front.svg",
  38783. extra: 1875/1790,
  38784. bottom: 96/1971
  38785. }
  38786. },
  38787. },
  38788. [
  38789. {
  38790. name: "Normal",
  38791. height: math.unit(5, "feet"),
  38792. default: true
  38793. },
  38794. ]
  38795. ))
  38796. characterMakers.push(() => makeCharacter(
  38797. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38798. {
  38799. front: {
  38800. height: math.unit(7 + 6/12, "feet"),
  38801. weight: math.unit(540, "lb"),
  38802. name: "Front",
  38803. image: {
  38804. source: "./media/characters/yuko/front.svg",
  38805. extra: 1282/1222,
  38806. bottom: 101/1383
  38807. }
  38808. },
  38809. frontClothed: {
  38810. height: math.unit(7 + 6/12, "feet"),
  38811. weight: math.unit(540, "lb"),
  38812. name: "Front (Clothed)",
  38813. image: {
  38814. source: "./media/characters/yuko/front-clothed.svg",
  38815. extra: 1282/1222,
  38816. bottom: 101/1383
  38817. }
  38818. },
  38819. },
  38820. [
  38821. {
  38822. name: "Normal",
  38823. height: math.unit(7 + 6/12, "feet"),
  38824. default: true
  38825. },
  38826. {
  38827. name: "Macro",
  38828. height: math.unit(26 + 9/12, "feet")
  38829. },
  38830. {
  38831. name: "Megamacro",
  38832. height: math.unit(300, "feet")
  38833. },
  38834. {
  38835. name: "Gigamacro",
  38836. height: math.unit(5000, "feet")
  38837. },
  38838. {
  38839. name: "Planetary",
  38840. height: math.unit(10000, "miles")
  38841. },
  38842. ]
  38843. ))
  38844. characterMakers.push(() => makeCharacter(
  38845. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38846. {
  38847. front: {
  38848. height: math.unit(8 + 2/12, "feet"),
  38849. weight: math.unit(600, "lb"),
  38850. name: "Front",
  38851. image: {
  38852. source: "./media/characters/deam-nitrel/front.svg",
  38853. extra: 1308/1234,
  38854. bottom: 125/1433
  38855. }
  38856. },
  38857. },
  38858. [
  38859. {
  38860. name: "Normal",
  38861. height: math.unit(8 + 2/12, "feet"),
  38862. default: true
  38863. },
  38864. ]
  38865. ))
  38866. characterMakers.push(() => makeCharacter(
  38867. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38868. {
  38869. front: {
  38870. height: math.unit(6.1, "feet"),
  38871. weight: math.unit(180, "lb"),
  38872. name: "Front",
  38873. image: {
  38874. source: "./media/characters/skyress/front.svg",
  38875. extra: 1045/915,
  38876. bottom: 28/1073
  38877. }
  38878. },
  38879. maw: {
  38880. height: math.unit(1, "feet"),
  38881. name: "Maw",
  38882. image: {
  38883. source: "./media/characters/skyress/maw.svg"
  38884. }
  38885. },
  38886. },
  38887. [
  38888. {
  38889. name: "Normal",
  38890. height: math.unit(6.1, "feet"),
  38891. default: true
  38892. },
  38893. {
  38894. name: "Macro",
  38895. height: math.unit(200, "feet")
  38896. },
  38897. ]
  38898. ))
  38899. characterMakers.push(() => makeCharacter(
  38900. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38901. {
  38902. front: {
  38903. height: math.unit(4 + 2/12, "feet"),
  38904. weight: math.unit(40, "kg"),
  38905. name: "Front",
  38906. image: {
  38907. source: "./media/characters/amethyst-jones/front.svg",
  38908. extra: 1220/1150,
  38909. bottom: 101/1321
  38910. }
  38911. },
  38912. },
  38913. [
  38914. {
  38915. name: "Normal",
  38916. height: math.unit(4 + 2/12, "feet"),
  38917. default: true
  38918. },
  38919. ]
  38920. ))
  38921. characterMakers.push(() => makeCharacter(
  38922. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38923. {
  38924. front: {
  38925. height: math.unit(1.7, "m"),
  38926. weight: math.unit(135, "lb"),
  38927. name: "Front",
  38928. image: {
  38929. source: "./media/characters/jade/front.svg",
  38930. extra: 1818/1767,
  38931. bottom: 32/1850
  38932. }
  38933. },
  38934. back: {
  38935. height: math.unit(1.7, "m"),
  38936. weight: math.unit(135, "lb"),
  38937. name: "Back",
  38938. image: {
  38939. source: "./media/characters/jade/back.svg",
  38940. extra: 1869/1809,
  38941. bottom: 35/1904
  38942. }
  38943. },
  38944. hand: {
  38945. height: math.unit(0.24, "m"),
  38946. name: "Hand",
  38947. image: {
  38948. source: "./media/characters/jade/hand.svg"
  38949. }
  38950. },
  38951. foot: {
  38952. height: math.unit(0.263, "m"),
  38953. name: "Foot",
  38954. image: {
  38955. source: "./media/characters/jade/foot.svg"
  38956. }
  38957. },
  38958. dick: {
  38959. height: math.unit(0.47, "m"),
  38960. name: "Dick",
  38961. image: {
  38962. source: "./media/characters/jade/dick.svg"
  38963. }
  38964. },
  38965. },
  38966. [
  38967. {
  38968. name: "Micro",
  38969. height: math.unit(22, "cm")
  38970. },
  38971. {
  38972. name: "Normal",
  38973. height: math.unit(1.7, "m"),
  38974. default: true
  38975. },
  38976. {
  38977. name: "Macro",
  38978. height: math.unit(152, "m")
  38979. },
  38980. ]
  38981. ))
  38982. characterMakers.push(() => makeCharacter(
  38983. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38984. {
  38985. front: {
  38986. height: math.unit(100, "miles"),
  38987. weight: math.unit(20000, "tons"),
  38988. name: "Front",
  38989. image: {
  38990. source: "./media/characters/cookie/front.svg",
  38991. extra: 1125/1070,
  38992. bottom: 30/1155
  38993. }
  38994. },
  38995. },
  38996. [
  38997. {
  38998. name: "Big",
  38999. height: math.unit(50, "feet")
  39000. },
  39001. {
  39002. name: "Macro",
  39003. height: math.unit(100, "miles"),
  39004. default: true
  39005. },
  39006. {
  39007. name: "Megamacro",
  39008. height: math.unit(90000, "miles")
  39009. },
  39010. ]
  39011. ))
  39012. characterMakers.push(() => makeCharacter(
  39013. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39014. {
  39015. front: {
  39016. height: math.unit(6, "feet"),
  39017. weight: math.unit(145, "lb"),
  39018. name: "Front",
  39019. image: {
  39020. source: "./media/characters/farzian/front.svg",
  39021. extra: 1902/1693,
  39022. bottom: 108/2010
  39023. }
  39024. },
  39025. },
  39026. [
  39027. {
  39028. name: "Macro",
  39029. height: math.unit(500, "feet"),
  39030. default: true
  39031. },
  39032. ]
  39033. ))
  39034. characterMakers.push(() => makeCharacter(
  39035. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39036. {
  39037. front: {
  39038. height: math.unit(3 + 6/12, "feet"),
  39039. weight: math.unit(50, "lb"),
  39040. name: "Front",
  39041. image: {
  39042. source: "./media/characters/kimberly-tilson/front.svg",
  39043. extra: 1400/1322,
  39044. bottom: 36/1436
  39045. }
  39046. },
  39047. back: {
  39048. height: math.unit(3 + 6/12, "feet"),
  39049. weight: math.unit(50, "lb"),
  39050. name: "Back",
  39051. image: {
  39052. source: "./media/characters/kimberly-tilson/back.svg",
  39053. extra: 1370/1307,
  39054. bottom: 20/1390
  39055. }
  39056. },
  39057. },
  39058. [
  39059. {
  39060. name: "Normal",
  39061. height: math.unit(3 + 6/12, "feet"),
  39062. default: true
  39063. },
  39064. ]
  39065. ))
  39066. characterMakers.push(() => makeCharacter(
  39067. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39068. {
  39069. front: {
  39070. height: math.unit(1148, "feet"),
  39071. weight: math.unit(34057, "lb"),
  39072. name: "Front",
  39073. image: {
  39074. source: "./media/characters/harthos/front.svg",
  39075. extra: 1391/1339,
  39076. bottom: 13/1404
  39077. }
  39078. },
  39079. },
  39080. [
  39081. {
  39082. name: "Macro",
  39083. height: math.unit(1148, "feet"),
  39084. default: true
  39085. },
  39086. ]
  39087. ))
  39088. characterMakers.push(() => makeCharacter(
  39089. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39090. {
  39091. front: {
  39092. height: math.unit(15, "feet"),
  39093. name: "Front",
  39094. image: {
  39095. source: "./media/characters/hypatia/front.svg",
  39096. extra: 1653/1591,
  39097. bottom: 79/1732
  39098. }
  39099. },
  39100. },
  39101. [
  39102. {
  39103. name: "Normal",
  39104. height: math.unit(15, "feet")
  39105. },
  39106. {
  39107. name: "Small",
  39108. height: math.unit(300, "feet")
  39109. },
  39110. {
  39111. name: "Macro",
  39112. height: math.unit(2500, "feet"),
  39113. default: true
  39114. },
  39115. {
  39116. name: "Mega Macro",
  39117. height: math.unit(1500, "miles")
  39118. },
  39119. {
  39120. name: "Giga Macro",
  39121. height: math.unit(1.5e6, "miles")
  39122. },
  39123. ]
  39124. ))
  39125. characterMakers.push(() => makeCharacter(
  39126. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39127. {
  39128. front: {
  39129. height: math.unit(6, "feet"),
  39130. weight: math.unit(200, "lb"),
  39131. name: "Front",
  39132. image: {
  39133. source: "./media/characters/wulver/front.svg",
  39134. extra: 1724/1632,
  39135. bottom: 130/1854
  39136. }
  39137. },
  39138. frontNsfw: {
  39139. height: math.unit(6, "feet"),
  39140. weight: math.unit(200, "lb"),
  39141. name: "Front (NSFW)",
  39142. image: {
  39143. source: "./media/characters/wulver/front-nsfw.svg",
  39144. extra: 1724/1632,
  39145. bottom: 130/1854
  39146. }
  39147. },
  39148. },
  39149. [
  39150. {
  39151. name: "Human-Sized",
  39152. height: math.unit(6, "feet")
  39153. },
  39154. {
  39155. name: "Normal",
  39156. height: math.unit(4, "meters"),
  39157. default: true
  39158. },
  39159. {
  39160. name: "Large",
  39161. height: math.unit(6, "m")
  39162. },
  39163. ]
  39164. ))
  39165. characterMakers.push(() => makeCharacter(
  39166. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39167. {
  39168. front: {
  39169. height: math.unit(7, "feet"),
  39170. name: "Front",
  39171. image: {
  39172. source: "./media/characters/maru/front.svg",
  39173. extra: 1595/1570,
  39174. bottom: 0/1595
  39175. }
  39176. },
  39177. },
  39178. [
  39179. {
  39180. name: "Normal",
  39181. height: math.unit(7, "feet"),
  39182. default: true
  39183. },
  39184. {
  39185. name: "Macro",
  39186. height: math.unit(700, "feet")
  39187. },
  39188. {
  39189. name: "Mega Macro",
  39190. height: math.unit(25, "miles")
  39191. },
  39192. ]
  39193. ))
  39194. characterMakers.push(() => makeCharacter(
  39195. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39196. {
  39197. front: {
  39198. height: math.unit(6, "feet"),
  39199. weight: math.unit(170, "lb"),
  39200. name: "Front",
  39201. image: {
  39202. source: "./media/characters/xenon/front.svg",
  39203. extra: 1376/1305,
  39204. bottom: 56/1432
  39205. }
  39206. },
  39207. back: {
  39208. height: math.unit(6, "feet"),
  39209. weight: math.unit(170, "lb"),
  39210. name: "Back",
  39211. image: {
  39212. source: "./media/characters/xenon/back.svg",
  39213. extra: 1328/1259,
  39214. bottom: 95/1423
  39215. }
  39216. },
  39217. maw: {
  39218. height: math.unit(0.52, "feet"),
  39219. name: "Maw",
  39220. image: {
  39221. source: "./media/characters/xenon/maw.svg"
  39222. }
  39223. },
  39224. hand: {
  39225. height: math.unit(0.82, "feet"),
  39226. name: "Hand",
  39227. image: {
  39228. source: "./media/characters/xenon/hand.svg"
  39229. }
  39230. },
  39231. foot: {
  39232. height: math.unit(1.13, "feet"),
  39233. name: "Foot",
  39234. image: {
  39235. source: "./media/characters/xenon/foot.svg"
  39236. }
  39237. },
  39238. },
  39239. [
  39240. {
  39241. name: "Micro",
  39242. height: math.unit(0.8, "inches")
  39243. },
  39244. {
  39245. name: "Normal",
  39246. height: math.unit(6, "feet")
  39247. },
  39248. {
  39249. name: "Macro",
  39250. height: math.unit(50, "feet"),
  39251. default: true
  39252. },
  39253. {
  39254. name: "Macro+",
  39255. height: math.unit(250, "feet")
  39256. },
  39257. {
  39258. name: "Megamacro",
  39259. height: math.unit(1500, "feet")
  39260. },
  39261. ]
  39262. ))
  39263. characterMakers.push(() => makeCharacter(
  39264. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39265. {
  39266. front: {
  39267. height: math.unit(7 + 5/12, "feet"),
  39268. name: "Front",
  39269. image: {
  39270. source: "./media/characters/zane/front.svg",
  39271. extra: 1260/1203,
  39272. bottom: 94/1354
  39273. }
  39274. },
  39275. back: {
  39276. height: math.unit(5.05, "feet"),
  39277. name: "Back",
  39278. image: {
  39279. source: "./media/characters/zane/back.svg",
  39280. extra: 893/829,
  39281. bottom: 30/923
  39282. }
  39283. },
  39284. werewolf: {
  39285. height: math.unit(11, "feet"),
  39286. name: "Werewolf",
  39287. image: {
  39288. source: "./media/characters/zane/werewolf.svg",
  39289. extra: 1383/1323,
  39290. bottom: 89/1472
  39291. }
  39292. },
  39293. foot: {
  39294. height: math.unit(1.46, "feet"),
  39295. name: "Foot",
  39296. image: {
  39297. source: "./media/characters/zane/foot.svg"
  39298. }
  39299. },
  39300. footFront: {
  39301. height: math.unit(0.784, "feet"),
  39302. name: "Foot (Front)",
  39303. image: {
  39304. source: "./media/characters/zane/foot-front.svg"
  39305. }
  39306. },
  39307. dick: {
  39308. height: math.unit(1.95, "feet"),
  39309. name: "Dick",
  39310. image: {
  39311. source: "./media/characters/zane/dick.svg"
  39312. }
  39313. },
  39314. dickWerewolf: {
  39315. height: math.unit(3.77, "feet"),
  39316. name: "Dick (Werewolf)",
  39317. image: {
  39318. source: "./media/characters/zane/dick.svg"
  39319. }
  39320. },
  39321. },
  39322. [
  39323. {
  39324. name: "Normal",
  39325. height: math.unit(7 + 5/12, "feet"),
  39326. default: true
  39327. },
  39328. ]
  39329. ))
  39330. characterMakers.push(() => makeCharacter(
  39331. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39332. {
  39333. front: {
  39334. height: math.unit(6 + 2/12, "feet"),
  39335. weight: math.unit(284, "lb"),
  39336. name: "Front",
  39337. image: {
  39338. source: "./media/characters/benni-desparque/front.svg",
  39339. extra: 1353/1126,
  39340. bottom: 69/1422
  39341. }
  39342. },
  39343. },
  39344. [
  39345. {
  39346. name: "Civilian",
  39347. height: math.unit(6 + 2/12, "feet")
  39348. },
  39349. {
  39350. name: "Normal",
  39351. height: math.unit(98, "feet"),
  39352. default: true
  39353. },
  39354. {
  39355. name: "Kaiju Fighter",
  39356. height: math.unit(268, "feet")
  39357. },
  39358. ]
  39359. ))
  39360. characterMakers.push(() => makeCharacter(
  39361. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39362. {
  39363. front: {
  39364. height: math.unit(5, "feet"),
  39365. weight: math.unit(105, "lb"),
  39366. name: "Front",
  39367. image: {
  39368. source: "./media/characters/maxine/front.svg",
  39369. extra: 1386/1250,
  39370. bottom: 71/1457
  39371. }
  39372. },
  39373. },
  39374. [
  39375. {
  39376. name: "Normal",
  39377. height: math.unit(5, "feet"),
  39378. default: true
  39379. },
  39380. ]
  39381. ))
  39382. characterMakers.push(() => makeCharacter(
  39383. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39384. {
  39385. front: {
  39386. height: math.unit(11 + 7/12, "feet"),
  39387. weight: math.unit(9576, "lb"),
  39388. name: "Front",
  39389. image: {
  39390. source: "./media/characters/scaly/front.svg",
  39391. extra: 888/867,
  39392. bottom: 36/924
  39393. }
  39394. },
  39395. },
  39396. [
  39397. {
  39398. name: "Normal",
  39399. height: math.unit(11 + 7/12, "feet"),
  39400. default: true
  39401. },
  39402. ]
  39403. ))
  39404. characterMakers.push(() => makeCharacter(
  39405. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39406. {
  39407. front: {
  39408. height: math.unit(9, "inches"),
  39409. name: "Front",
  39410. image: {
  39411. source: "./media/characters/saelria/front.svg",
  39412. extra: 662/621,
  39413. bottom: 12/674
  39414. }
  39415. },
  39416. },
  39417. [
  39418. {
  39419. name: "Tiny",
  39420. height: math.unit(9, "inches"),
  39421. default: true
  39422. },
  39423. ]
  39424. ))
  39425. characterMakers.push(() => makeCharacter(
  39426. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39427. {
  39428. front: {
  39429. height: math.unit(80, "meters"),
  39430. weight: math.unit(7000, "tonnes"),
  39431. name: "Front",
  39432. image: {
  39433. source: "./media/characters/tef/front.svg",
  39434. extra: 2036/1991,
  39435. bottom: 54/2090
  39436. }
  39437. },
  39438. back: {
  39439. height: math.unit(80, "meters"),
  39440. weight: math.unit(7000, "tonnes"),
  39441. name: "Back",
  39442. image: {
  39443. source: "./media/characters/tef/back.svg",
  39444. extra: 2036/1991,
  39445. bottom: 54/2090
  39446. }
  39447. },
  39448. },
  39449. [
  39450. {
  39451. name: "Macro",
  39452. height: math.unit(80, "meters"),
  39453. default: true
  39454. },
  39455. ]
  39456. ))
  39457. characterMakers.push(() => makeCharacter(
  39458. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39459. {
  39460. front: {
  39461. height: math.unit(13, "feet"),
  39462. weight: math.unit(6, "tons"),
  39463. name: "Front",
  39464. image: {
  39465. source: "./media/characters/rover/front.svg",
  39466. extra: 1233/1156,
  39467. bottom: 50/1283
  39468. }
  39469. },
  39470. back: {
  39471. height: math.unit(13, "feet"),
  39472. weight: math.unit(6, "tons"),
  39473. name: "Back",
  39474. image: {
  39475. source: "./media/characters/rover/back.svg",
  39476. extra: 1327/1258,
  39477. bottom: 39/1366
  39478. }
  39479. },
  39480. },
  39481. [
  39482. {
  39483. name: "Normal",
  39484. height: math.unit(13, "feet"),
  39485. default: true
  39486. },
  39487. {
  39488. name: "Macro",
  39489. height: math.unit(1300, "feet")
  39490. },
  39491. {
  39492. name: "Megamacro",
  39493. height: math.unit(1300, "miles")
  39494. },
  39495. {
  39496. name: "Gigamacro",
  39497. height: math.unit(1300000, "miles")
  39498. },
  39499. ]
  39500. ))
  39501. characterMakers.push(() => makeCharacter(
  39502. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39503. {
  39504. front: {
  39505. height: math.unit(6, "feet"),
  39506. weight: math.unit(150, "lb"),
  39507. name: "Front",
  39508. image: {
  39509. source: "./media/characters/ariz/front.svg",
  39510. extra: 1401/1346,
  39511. bottom: 5/1406
  39512. }
  39513. },
  39514. },
  39515. [
  39516. {
  39517. name: "Normal",
  39518. height: math.unit(10, "feet"),
  39519. default: true
  39520. },
  39521. ]
  39522. ))
  39523. characterMakers.push(() => makeCharacter(
  39524. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39525. {
  39526. front: {
  39527. height: math.unit(6, "feet"),
  39528. weight: math.unit(140, "lb"),
  39529. name: "Front",
  39530. image: {
  39531. source: "./media/characters/sigrun/front.svg",
  39532. extra: 1418/1359,
  39533. bottom: 27/1445
  39534. }
  39535. },
  39536. },
  39537. [
  39538. {
  39539. name: "Macro",
  39540. height: math.unit(35, "feet"),
  39541. default: true
  39542. },
  39543. ]
  39544. ))
  39545. characterMakers.push(() => makeCharacter(
  39546. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39547. {
  39548. front: {
  39549. height: math.unit(6, "feet"),
  39550. weight: math.unit(150, "lb"),
  39551. name: "Front",
  39552. image: {
  39553. source: "./media/characters/numin/front.svg",
  39554. extra: 1433/1388,
  39555. bottom: 12/1445
  39556. }
  39557. },
  39558. },
  39559. [
  39560. {
  39561. name: "Macro",
  39562. height: math.unit(21.5, "km"),
  39563. default: true
  39564. },
  39565. ]
  39566. ))
  39567. characterMakers.push(() => makeCharacter(
  39568. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39569. {
  39570. front: {
  39571. height: math.unit(6, "feet"),
  39572. weight: math.unit(463, "lb"),
  39573. name: "Front",
  39574. image: {
  39575. source: "./media/characters/melwa/front.svg",
  39576. extra: 1307/1248,
  39577. bottom: 93/1400
  39578. }
  39579. },
  39580. },
  39581. [
  39582. {
  39583. name: "Macro",
  39584. height: math.unit(50, "meters"),
  39585. default: true
  39586. },
  39587. ]
  39588. ))
  39589. characterMakers.push(() => makeCharacter(
  39590. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39591. {
  39592. front: {
  39593. height: math.unit(325, "feet"),
  39594. name: "Front",
  39595. image: {
  39596. source: "./media/characters/zorkaiju/front.svg",
  39597. extra: 1955/1814,
  39598. bottom: 40/1995
  39599. }
  39600. },
  39601. frontExtended: {
  39602. height: math.unit(325, "feet"),
  39603. name: "Front (Extended)",
  39604. image: {
  39605. source: "./media/characters/zorkaiju/front-extended.svg",
  39606. extra: 1955/1814,
  39607. bottom: 40/1995
  39608. }
  39609. },
  39610. side: {
  39611. height: math.unit(325, "feet"),
  39612. name: "Side",
  39613. image: {
  39614. source: "./media/characters/zorkaiju/side.svg",
  39615. extra: 1495/1396,
  39616. bottom: 17/1512
  39617. }
  39618. },
  39619. sideExtended: {
  39620. height: math.unit(325, "feet"),
  39621. name: "Side (Extended)",
  39622. image: {
  39623. source: "./media/characters/zorkaiju/side-extended.svg",
  39624. extra: 1495/1396,
  39625. bottom: 17/1512
  39626. }
  39627. },
  39628. back: {
  39629. height: math.unit(325, "feet"),
  39630. name: "Back",
  39631. image: {
  39632. source: "./media/characters/zorkaiju/back.svg",
  39633. extra: 1959/1821,
  39634. bottom: 31/1990
  39635. }
  39636. },
  39637. backExtended: {
  39638. height: math.unit(325, "feet"),
  39639. name: "Back (Extended)",
  39640. image: {
  39641. source: "./media/characters/zorkaiju/back-extended.svg",
  39642. extra: 1959/1821,
  39643. bottom: 31/1990
  39644. }
  39645. },
  39646. hand: {
  39647. height: math.unit(58.4, "feet"),
  39648. name: "Hand",
  39649. image: {
  39650. source: "./media/characters/zorkaiju/hand.svg"
  39651. }
  39652. },
  39653. handExtended: {
  39654. height: math.unit(61.4, "feet"),
  39655. name: "Hand (Extended)",
  39656. image: {
  39657. source: "./media/characters/zorkaiju/hand-extended.svg"
  39658. }
  39659. },
  39660. foot: {
  39661. height: math.unit(95, "feet"),
  39662. name: "Foot",
  39663. image: {
  39664. source: "./media/characters/zorkaiju/foot.svg"
  39665. }
  39666. },
  39667. leftArm: {
  39668. height: math.unit(59, "feet"),
  39669. name: "Left Arm",
  39670. image: {
  39671. source: "./media/characters/zorkaiju/left-arm.svg"
  39672. }
  39673. },
  39674. rightArm: {
  39675. height: math.unit(59, "feet"),
  39676. name: "Right Arm",
  39677. image: {
  39678. source: "./media/characters/zorkaiju/right-arm.svg"
  39679. }
  39680. },
  39681. tail: {
  39682. height: math.unit(104, "feet"),
  39683. name: "Tail",
  39684. image: {
  39685. source: "./media/characters/zorkaiju/tail.svg"
  39686. }
  39687. },
  39688. tailExtended: {
  39689. height: math.unit(104, "feet"),
  39690. name: "Tail (Extended)",
  39691. image: {
  39692. source: "./media/characters/zorkaiju/tail-extended.svg"
  39693. }
  39694. },
  39695. tailBottom: {
  39696. height: math.unit(104, "feet"),
  39697. name: "Tail Bottom",
  39698. image: {
  39699. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39700. }
  39701. },
  39702. crystal: {
  39703. height: math.unit(27.54, "feet"),
  39704. name: "Crystal",
  39705. image: {
  39706. source: "./media/characters/zorkaiju/crystal.svg"
  39707. }
  39708. },
  39709. },
  39710. [
  39711. {
  39712. name: "Kaiju",
  39713. height: math.unit(325, "feet"),
  39714. default: true
  39715. },
  39716. ]
  39717. ))
  39718. characterMakers.push(() => makeCharacter(
  39719. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39720. {
  39721. front: {
  39722. height: math.unit(6 + 1/12, "feet"),
  39723. weight: math.unit(115, "lb"),
  39724. name: "Front",
  39725. image: {
  39726. source: "./media/characters/bailey-belfry/front.svg",
  39727. extra: 1240/1121,
  39728. bottom: 101/1341
  39729. }
  39730. },
  39731. },
  39732. [
  39733. {
  39734. name: "Normal",
  39735. height: math.unit(6 + 1/12, "feet"),
  39736. default: true
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39742. {
  39743. side: {
  39744. height: math.unit(4, "meters"),
  39745. weight: math.unit(250, "kg"),
  39746. name: "Side",
  39747. image: {
  39748. source: "./media/characters/blacky/side.svg",
  39749. extra: 1027/919,
  39750. bottom: 43/1070
  39751. }
  39752. },
  39753. maw: {
  39754. height: math.unit(1, "meters"),
  39755. name: "Maw",
  39756. image: {
  39757. source: "./media/characters/blacky/maw.svg"
  39758. }
  39759. },
  39760. paw: {
  39761. height: math.unit(1, "meters"),
  39762. name: "Paw",
  39763. image: {
  39764. source: "./media/characters/blacky/paw.svg"
  39765. }
  39766. },
  39767. },
  39768. [
  39769. {
  39770. name: "Normal",
  39771. height: math.unit(4, "meters"),
  39772. default: true
  39773. },
  39774. ]
  39775. ))
  39776. characterMakers.push(() => makeCharacter(
  39777. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39778. {
  39779. front: {
  39780. height: math.unit(170, "cm"),
  39781. weight: math.unit(66, "kg"),
  39782. name: "Front",
  39783. image: {
  39784. source: "./media/characters/thux-ei/front.svg",
  39785. extra: 1109/1011,
  39786. bottom: 8/1117
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Normal",
  39793. height: math.unit(170, "cm"),
  39794. default: true
  39795. },
  39796. ]
  39797. ))
  39798. characterMakers.push(() => makeCharacter(
  39799. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39800. {
  39801. front: {
  39802. height: math.unit(5, "feet"),
  39803. weight: math.unit(120, "lb"),
  39804. name: "Front",
  39805. image: {
  39806. source: "./media/characters/roxanne-voltaire/front.svg",
  39807. extra: 1901/1779,
  39808. bottom: 53/1954
  39809. }
  39810. },
  39811. },
  39812. [
  39813. {
  39814. name: "Normal",
  39815. height: math.unit(5, "feet"),
  39816. default: true
  39817. },
  39818. {
  39819. name: "Giant",
  39820. height: math.unit(50, "feet")
  39821. },
  39822. {
  39823. name: "Titan",
  39824. height: math.unit(500, "feet")
  39825. },
  39826. {
  39827. name: "Macro",
  39828. height: math.unit(5000, "feet")
  39829. },
  39830. {
  39831. name: "Megamacro",
  39832. height: math.unit(50000, "feet")
  39833. },
  39834. {
  39835. name: "Gigamacro",
  39836. height: math.unit(500000, "feet")
  39837. },
  39838. {
  39839. name: "Teramacro",
  39840. height: math.unit(5e6, "feet")
  39841. },
  39842. ]
  39843. ))
  39844. characterMakers.push(() => makeCharacter(
  39845. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39846. {
  39847. front: {
  39848. height: math.unit(6 + 2/12, "feet"),
  39849. name: "Front",
  39850. image: {
  39851. source: "./media/characters/squeaks/front.svg",
  39852. extra: 1823/1768,
  39853. bottom: 138/1961
  39854. }
  39855. },
  39856. },
  39857. [
  39858. {
  39859. name: "Micro",
  39860. height: math.unit(0.5, "inches")
  39861. },
  39862. {
  39863. name: "Normal",
  39864. height: math.unit(6 + 2/12, "feet"),
  39865. default: true
  39866. },
  39867. {
  39868. name: "Macro",
  39869. height: math.unit(600, "feet")
  39870. },
  39871. ]
  39872. ))
  39873. characterMakers.push(() => makeCharacter(
  39874. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39875. {
  39876. front: {
  39877. height: math.unit(1.72, "meters"),
  39878. name: "Front",
  39879. image: {
  39880. source: "./media/characters/archinger/front.svg",
  39881. extra: 1861/1675,
  39882. bottom: 125/1986
  39883. }
  39884. },
  39885. back: {
  39886. height: math.unit(1.72, "meters"),
  39887. name: "Back",
  39888. image: {
  39889. source: "./media/characters/archinger/back.svg",
  39890. extra: 1844/1701,
  39891. bottom: 104/1948
  39892. }
  39893. },
  39894. cock: {
  39895. height: math.unit(0.59, "feet"),
  39896. name: "Cock",
  39897. image: {
  39898. source: "./media/characters/archinger/cock.svg"
  39899. }
  39900. },
  39901. },
  39902. [
  39903. {
  39904. name: "Normal",
  39905. height: math.unit(1.72, "meters"),
  39906. default: true
  39907. },
  39908. {
  39909. name: "Macro",
  39910. height: math.unit(84, "meters")
  39911. },
  39912. {
  39913. name: "Macro+",
  39914. height: math.unit(112, "meters")
  39915. },
  39916. {
  39917. name: "Macro++",
  39918. height: math.unit(960, "meters")
  39919. },
  39920. {
  39921. name: "Macro+++",
  39922. height: math.unit(4, "km")
  39923. },
  39924. {
  39925. name: "Macro++++",
  39926. height: math.unit(48, "km")
  39927. },
  39928. {
  39929. name: "Macro+++++",
  39930. height: math.unit(4500, "km")
  39931. },
  39932. ]
  39933. ))
  39934. characterMakers.push(() => makeCharacter(
  39935. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39936. {
  39937. front: {
  39938. height: math.unit(5 + 5/12, "feet"),
  39939. name: "Front",
  39940. image: {
  39941. source: "./media/characters/alsnapz/front.svg",
  39942. extra: 1157/1065,
  39943. bottom: 42/1199
  39944. }
  39945. },
  39946. },
  39947. [
  39948. {
  39949. name: "Normal",
  39950. height: math.unit(5 + 5/12, "feet"),
  39951. default: true
  39952. },
  39953. ]
  39954. ))
  39955. characterMakers.push(() => makeCharacter(
  39956. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39957. {
  39958. side: {
  39959. height: math.unit(3.2, "earths"),
  39960. name: "Side",
  39961. image: {
  39962. source: "./media/characters/mag/side.svg",
  39963. extra: 1331/1008,
  39964. bottom: 52/1383
  39965. }
  39966. },
  39967. wing: {
  39968. height: math.unit(1.94, "earths"),
  39969. name: "Wing",
  39970. image: {
  39971. source: "./media/characters/mag/wing.svg"
  39972. }
  39973. },
  39974. dick: {
  39975. height: math.unit(1.8, "earths"),
  39976. name: "Dick",
  39977. image: {
  39978. source: "./media/characters/mag/dick.svg"
  39979. }
  39980. },
  39981. ass: {
  39982. height: math.unit(1.33, "earths"),
  39983. name: "Ass",
  39984. image: {
  39985. source: "./media/characters/mag/ass.svg"
  39986. }
  39987. },
  39988. head: {
  39989. height: math.unit(1.1, "earths"),
  39990. name: "Head",
  39991. image: {
  39992. source: "./media/characters/mag/head.svg"
  39993. }
  39994. },
  39995. maw: {
  39996. height: math.unit(1.62, "earths"),
  39997. name: "Maw",
  39998. image: {
  39999. source: "./media/characters/mag/maw.svg"
  40000. }
  40001. },
  40002. },
  40003. [
  40004. {
  40005. name: "Small",
  40006. height: math.unit(162, "feet")
  40007. },
  40008. {
  40009. name: "Normal",
  40010. height: math.unit(3.2, "earths"),
  40011. default: true
  40012. },
  40013. ]
  40014. ))
  40015. characterMakers.push(() => makeCharacter(
  40016. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40017. {
  40018. front: {
  40019. height: math.unit(512, "feet"),
  40020. weight: math.unit(63509, "tonnes"),
  40021. name: "Front",
  40022. image: {
  40023. source: "./media/characters/vorrel-harroc/front.svg",
  40024. extra: 1075/1063,
  40025. bottom: 62/1137
  40026. }
  40027. },
  40028. },
  40029. [
  40030. {
  40031. name: "Normal",
  40032. height: math.unit(10, "feet")
  40033. },
  40034. {
  40035. name: "Macro",
  40036. height: math.unit(512, "feet"),
  40037. default: true
  40038. },
  40039. {
  40040. name: "Megamacro",
  40041. height: math.unit(256, "miles")
  40042. },
  40043. {
  40044. name: "Gigamacro",
  40045. height: math.unit(4096, "miles")
  40046. },
  40047. ]
  40048. ))
  40049. characterMakers.push(() => makeCharacter(
  40050. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40051. {
  40052. side: {
  40053. height: math.unit(50, "feet"),
  40054. name: "Side",
  40055. image: {
  40056. source: "./media/characters/froimar/side.svg",
  40057. extra: 855/638,
  40058. bottom: 99/954
  40059. }
  40060. },
  40061. },
  40062. [
  40063. {
  40064. name: "Macro",
  40065. height: math.unit(50, "feet"),
  40066. default: true
  40067. },
  40068. ]
  40069. ))
  40070. characterMakers.push(() => makeCharacter(
  40071. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40072. {
  40073. front: {
  40074. height: math.unit(210, "miles"),
  40075. name: "Front",
  40076. image: {
  40077. source: "./media/characters/timothy/front.svg",
  40078. extra: 1007/943,
  40079. bottom: 62/1069
  40080. }
  40081. },
  40082. frontSkirt: {
  40083. height: math.unit(210, "miles"),
  40084. name: "Front (Skirt)",
  40085. image: {
  40086. source: "./media/characters/timothy/front-skirt.svg",
  40087. extra: 1007/943,
  40088. bottom: 62/1069
  40089. }
  40090. },
  40091. frontCoat: {
  40092. height: math.unit(210, "miles"),
  40093. name: "Front (Coat)",
  40094. image: {
  40095. source: "./media/characters/timothy/front-coat.svg",
  40096. extra: 1007/943,
  40097. bottom: 62/1069
  40098. }
  40099. },
  40100. },
  40101. [
  40102. {
  40103. name: "Macro",
  40104. height: math.unit(210, "miles"),
  40105. default: true
  40106. },
  40107. {
  40108. name: "Megamacro",
  40109. height: math.unit(210000, "miles")
  40110. },
  40111. ]
  40112. ))
  40113. characterMakers.push(() => makeCharacter(
  40114. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40115. {
  40116. front: {
  40117. height: math.unit(188, "feet"),
  40118. name: "Front",
  40119. image: {
  40120. source: "./media/characters/pyotr/front.svg",
  40121. extra: 1912/1826,
  40122. bottom: 18/1930
  40123. }
  40124. },
  40125. },
  40126. [
  40127. {
  40128. name: "Macro",
  40129. height: math.unit(188, "feet"),
  40130. default: true
  40131. },
  40132. {
  40133. name: "Megamacro",
  40134. height: math.unit(8, "miles")
  40135. },
  40136. ]
  40137. ))
  40138. characterMakers.push(() => makeCharacter(
  40139. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40140. {
  40141. side: {
  40142. height: math.unit(10, "feet"),
  40143. weight: math.unit(4500, "lb"),
  40144. name: "Side",
  40145. image: {
  40146. source: "./media/characters/ackart/side.svg",
  40147. extra: 1776/1668,
  40148. bottom: 116/1892
  40149. }
  40150. },
  40151. },
  40152. [
  40153. {
  40154. name: "Normal",
  40155. height: math.unit(10, "feet"),
  40156. default: true
  40157. },
  40158. ]
  40159. ))
  40160. characterMakers.push(() => makeCharacter(
  40161. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40162. {
  40163. side: {
  40164. height: math.unit(21, "feet"),
  40165. name: "Side",
  40166. image: {
  40167. source: "./media/characters/nolow/side.svg",
  40168. extra: 1484/1434,
  40169. bottom: 85/1569
  40170. }
  40171. },
  40172. sideErect: {
  40173. height: math.unit(21, "feet"),
  40174. name: "Side-erect",
  40175. image: {
  40176. source: "./media/characters/nolow/side-erect.svg",
  40177. extra: 1484/1434,
  40178. bottom: 85/1569
  40179. }
  40180. },
  40181. },
  40182. [
  40183. {
  40184. name: "Regular",
  40185. height: math.unit(12, "feet")
  40186. },
  40187. {
  40188. name: "Big Chee",
  40189. height: math.unit(21, "feet"),
  40190. default: true
  40191. },
  40192. ]
  40193. ))
  40194. characterMakers.push(() => makeCharacter(
  40195. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40196. {
  40197. front: {
  40198. height: math.unit(7, "feet"),
  40199. weight: math.unit(250, "lb"),
  40200. name: "Front",
  40201. image: {
  40202. source: "./media/characters/nines/front.svg",
  40203. extra: 1741/1607,
  40204. bottom: 41/1782
  40205. }
  40206. },
  40207. side: {
  40208. height: math.unit(7, "feet"),
  40209. weight: math.unit(250, "lb"),
  40210. name: "Side",
  40211. image: {
  40212. source: "./media/characters/nines/side.svg",
  40213. extra: 1854/1735,
  40214. bottom: 93/1947
  40215. }
  40216. },
  40217. back: {
  40218. height: math.unit(7, "feet"),
  40219. weight: math.unit(250, "lb"),
  40220. name: "Back",
  40221. image: {
  40222. source: "./media/characters/nines/back.svg",
  40223. extra: 1748/1615,
  40224. bottom: 20/1768
  40225. }
  40226. },
  40227. },
  40228. [
  40229. {
  40230. name: "Megamacro",
  40231. height: math.unit(99, "km"),
  40232. default: true
  40233. },
  40234. ]
  40235. ))
  40236. characterMakers.push(() => makeCharacter(
  40237. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40238. {
  40239. front: {
  40240. height: math.unit(5 + 10/12, "feet"),
  40241. weight: math.unit(210, "lb"),
  40242. name: "Front",
  40243. image: {
  40244. source: "./media/characters/zenith/front.svg",
  40245. extra: 1531/1452,
  40246. bottom: 198/1729
  40247. }
  40248. },
  40249. back: {
  40250. height: math.unit(5 + 10/12, "feet"),
  40251. weight: math.unit(210, "lb"),
  40252. name: "Back",
  40253. image: {
  40254. source: "./media/characters/zenith/back.svg",
  40255. extra: 1571/1487,
  40256. bottom: 75/1646
  40257. }
  40258. },
  40259. },
  40260. [
  40261. {
  40262. name: "Normal",
  40263. height: math.unit(5 + 10/12, "feet"),
  40264. default: true
  40265. }
  40266. ]
  40267. ))
  40268. characterMakers.push(() => makeCharacter(
  40269. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40270. {
  40271. front: {
  40272. height: math.unit(4, "feet"),
  40273. weight: math.unit(60, "lb"),
  40274. name: "Front",
  40275. image: {
  40276. source: "./media/characters/jasper/front.svg",
  40277. extra: 1450/1379,
  40278. bottom: 19/1469
  40279. }
  40280. },
  40281. },
  40282. [
  40283. {
  40284. name: "Normal",
  40285. height: math.unit(4, "feet"),
  40286. default: true
  40287. },
  40288. ]
  40289. ))
  40290. characterMakers.push(() => makeCharacter(
  40291. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40292. {
  40293. front: {
  40294. height: math.unit(6 + 5/12, "feet"),
  40295. weight: math.unit(290, "lb"),
  40296. name: "Front",
  40297. image: {
  40298. source: "./media/characters/tiberius-thyben/front.svg",
  40299. extra: 757/739,
  40300. bottom: 39/796
  40301. }
  40302. },
  40303. },
  40304. [
  40305. {
  40306. name: "Micro",
  40307. height: math.unit(1.5, "inches")
  40308. },
  40309. {
  40310. name: "Normal",
  40311. height: math.unit(6 + 5/12, "feet"),
  40312. default: true
  40313. },
  40314. {
  40315. name: "Macro",
  40316. height: math.unit(300, "feet")
  40317. },
  40318. ]
  40319. ))
  40320. characterMakers.push(() => makeCharacter(
  40321. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40322. {
  40323. front: {
  40324. height: math.unit(5 + 6/12, "feet"),
  40325. weight: math.unit(60, "kg"),
  40326. name: "Front",
  40327. image: {
  40328. source: "./media/characters/sabre/front.svg",
  40329. extra: 738/671,
  40330. bottom: 27/765
  40331. }
  40332. },
  40333. },
  40334. [
  40335. {
  40336. name: "Teeny",
  40337. height: math.unit(2, "inches")
  40338. },
  40339. {
  40340. name: "Smol",
  40341. height: math.unit(8, "inches")
  40342. },
  40343. {
  40344. name: "Normal",
  40345. height: math.unit(5 + 6/12, "feet"),
  40346. default: true
  40347. },
  40348. {
  40349. name: "Mini-Macro",
  40350. height: math.unit(15, "feet")
  40351. },
  40352. {
  40353. name: "Macro",
  40354. height: math.unit(50, "feet")
  40355. },
  40356. ]
  40357. ))
  40358. characterMakers.push(() => makeCharacter(
  40359. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40360. {
  40361. front: {
  40362. height: math.unit(6 + 4/12, "feet"),
  40363. weight: math.unit(170, "lb"),
  40364. name: "Front",
  40365. image: {
  40366. source: "./media/characters/charlie/front.svg",
  40367. extra: 1348/1228,
  40368. bottom: 15/1363
  40369. }
  40370. },
  40371. },
  40372. [
  40373. {
  40374. name: "Macro",
  40375. height: math.unit(1700, "meters"),
  40376. default: true
  40377. },
  40378. {
  40379. name: "MegaMacro",
  40380. height: math.unit(20400, "meters")
  40381. },
  40382. ]
  40383. ))
  40384. characterMakers.push(() => makeCharacter(
  40385. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40386. {
  40387. front: {
  40388. height: math.unit(6 + 3/12, "feet"),
  40389. weight: math.unit(185, "lb"),
  40390. name: "Front",
  40391. image: {
  40392. source: "./media/characters/susan-grant/front.svg",
  40393. extra: 1351/1327,
  40394. bottom: 26/1377
  40395. }
  40396. },
  40397. },
  40398. [
  40399. {
  40400. name: "Normal",
  40401. height: math.unit(6 + 3/12, "feet"),
  40402. default: true
  40403. },
  40404. {
  40405. name: "Macro",
  40406. height: math.unit(225, "feet")
  40407. },
  40408. {
  40409. name: "Macro+",
  40410. height: math.unit(900, "feet")
  40411. },
  40412. {
  40413. name: "MegaMacro",
  40414. height: math.unit(14400, "feet")
  40415. },
  40416. ]
  40417. ))
  40418. characterMakers.push(() => makeCharacter(
  40419. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40420. {
  40421. front: {
  40422. height: math.unit(5 + 4/12, "feet"),
  40423. weight: math.unit(110, "lb"),
  40424. name: "Front",
  40425. image: {
  40426. source: "./media/characters/axel-isanov/front.svg",
  40427. extra: 1096/1065,
  40428. bottom: 13/1109
  40429. }
  40430. },
  40431. },
  40432. [
  40433. {
  40434. name: "Normal",
  40435. height: math.unit(5 + 4/12, "feet"),
  40436. default: true
  40437. },
  40438. ]
  40439. ))
  40440. characterMakers.push(() => makeCharacter(
  40441. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40442. {
  40443. front: {
  40444. height: math.unit(9, "feet"),
  40445. weight: math.unit(467, "lb"),
  40446. name: "Front",
  40447. image: {
  40448. source: "./media/characters/necahual/front.svg",
  40449. extra: 920/873,
  40450. bottom: 26/946
  40451. }
  40452. },
  40453. back: {
  40454. height: math.unit(9, "feet"),
  40455. weight: math.unit(467, "lb"),
  40456. name: "Back",
  40457. image: {
  40458. source: "./media/characters/necahual/back.svg",
  40459. extra: 930/884,
  40460. bottom: 16/946
  40461. }
  40462. },
  40463. frontUnderwear: {
  40464. height: math.unit(9, "feet"),
  40465. weight: math.unit(467, "lb"),
  40466. name: "Front (Underwear)",
  40467. image: {
  40468. source: "./media/characters/necahual/front-underwear.svg",
  40469. extra: 920/873,
  40470. bottom: 26/946
  40471. }
  40472. },
  40473. frontDressed: {
  40474. height: math.unit(9, "feet"),
  40475. weight: math.unit(467, "lb"),
  40476. name: "Front (Dressed)",
  40477. image: {
  40478. source: "./media/characters/necahual/front-dressed.svg",
  40479. extra: 920/873,
  40480. bottom: 26/946
  40481. }
  40482. },
  40483. },
  40484. [
  40485. {
  40486. name: "Comprsesed",
  40487. height: math.unit(9, "feet")
  40488. },
  40489. {
  40490. name: "Natural",
  40491. height: math.unit(15, "feet"),
  40492. default: true
  40493. },
  40494. {
  40495. name: "Boosted",
  40496. height: math.unit(50, "feet")
  40497. },
  40498. {
  40499. name: "Boosted+",
  40500. height: math.unit(150, "feet")
  40501. },
  40502. {
  40503. name: "Max",
  40504. height: math.unit(500, "feet")
  40505. },
  40506. ]
  40507. ))
  40508. characterMakers.push(() => makeCharacter(
  40509. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40510. {
  40511. front: {
  40512. height: math.unit(22 + 1/12, "feet"),
  40513. weight: math.unit(3200, "lb"),
  40514. name: "Front",
  40515. image: {
  40516. source: "./media/characters/theo-acacia/front.svg",
  40517. extra: 1796/1741,
  40518. bottom: 83/1879
  40519. }
  40520. },
  40521. frontUnderwear: {
  40522. height: math.unit(22 + 1/12, "feet"),
  40523. weight: math.unit(3200, "lb"),
  40524. name: "Front (Underwear)",
  40525. image: {
  40526. source: "./media/characters/theo-acacia/front-underwear.svg",
  40527. extra: 1796/1741,
  40528. bottom: 83/1879
  40529. }
  40530. },
  40531. frontNude: {
  40532. height: math.unit(22 + 1/12, "feet"),
  40533. weight: math.unit(3200, "lb"),
  40534. name: "Front (Nude)",
  40535. image: {
  40536. source: "./media/characters/theo-acacia/front-nude.svg",
  40537. extra: 1796/1741,
  40538. bottom: 83/1879
  40539. }
  40540. },
  40541. },
  40542. [
  40543. {
  40544. name: "Normal",
  40545. height: math.unit(22 + 1/12, "feet"),
  40546. default: true
  40547. },
  40548. ]
  40549. ))
  40550. characterMakers.push(() => makeCharacter(
  40551. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40552. {
  40553. front: {
  40554. height: math.unit(20, "feet"),
  40555. name: "Front",
  40556. image: {
  40557. source: "./media/characters/astra/front.svg",
  40558. extra: 1850/1714,
  40559. bottom: 106/1956
  40560. }
  40561. },
  40562. frontUndressed: {
  40563. height: math.unit(20, "feet"),
  40564. name: "Front (Undressed)",
  40565. image: {
  40566. source: "./media/characters/astra/front-undressed.svg",
  40567. extra: 1926/1749,
  40568. bottom: 0/1926
  40569. }
  40570. },
  40571. hand: {
  40572. height: math.unit(1.53, "feet"),
  40573. name: "Hand",
  40574. image: {
  40575. source: "./media/characters/astra/hand.svg"
  40576. }
  40577. },
  40578. paw: {
  40579. height: math.unit(1.53, "feet"),
  40580. name: "Paw",
  40581. image: {
  40582. source: "./media/characters/astra/paw.svg"
  40583. }
  40584. },
  40585. },
  40586. [
  40587. {
  40588. name: "Smallest",
  40589. height: math.unit(20, "feet")
  40590. },
  40591. {
  40592. name: "Normal",
  40593. height: math.unit(1e9, "miles"),
  40594. default: true
  40595. },
  40596. {
  40597. name: "Larger",
  40598. height: math.unit(5, "multiverses")
  40599. },
  40600. {
  40601. name: "Largest",
  40602. height: math.unit(1e9, "multiverses")
  40603. },
  40604. ]
  40605. ))
  40606. characterMakers.push(() => makeCharacter(
  40607. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40608. {
  40609. front: {
  40610. height: math.unit(8, "feet"),
  40611. name: "Front",
  40612. image: {
  40613. source: "./media/characters/breanna/front.svg",
  40614. extra: 1912/1632,
  40615. bottom: 33/1945
  40616. }
  40617. },
  40618. },
  40619. [
  40620. {
  40621. name: "Smallest",
  40622. height: math.unit(8, "feet")
  40623. },
  40624. {
  40625. name: "Normal",
  40626. height: math.unit(1, "mile"),
  40627. default: true
  40628. },
  40629. {
  40630. name: "Maximum",
  40631. height: math.unit(1500000000000, "lightyears")
  40632. },
  40633. ]
  40634. ))
  40635. characterMakers.push(() => makeCharacter(
  40636. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40637. {
  40638. front: {
  40639. height: math.unit(5 + 11/12, "feet"),
  40640. weight: math.unit(155, "lb"),
  40641. name: "Front",
  40642. image: {
  40643. source: "./media/characters/cai/front.svg",
  40644. extra: 1823/1702,
  40645. bottom: 32/1855
  40646. }
  40647. },
  40648. back: {
  40649. height: math.unit(5 + 11/12, "feet"),
  40650. weight: math.unit(155, "lb"),
  40651. name: "Back",
  40652. image: {
  40653. source: "./media/characters/cai/back.svg",
  40654. extra: 1809/1708,
  40655. bottom: 31/1840
  40656. }
  40657. },
  40658. },
  40659. [
  40660. {
  40661. name: "Normal",
  40662. height: math.unit(5 + 11/12, "feet"),
  40663. default: true
  40664. },
  40665. {
  40666. name: "Big",
  40667. height: math.unit(15, "feet")
  40668. },
  40669. {
  40670. name: "Macro",
  40671. height: math.unit(200, "feet")
  40672. },
  40673. ]
  40674. ))
  40675. characterMakers.push(() => makeCharacter(
  40676. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40677. {
  40678. front: {
  40679. height: math.unit(5 + 6/12, "feet"),
  40680. weight: math.unit(160, "lb"),
  40681. name: "Front",
  40682. image: {
  40683. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40684. extra: 1227/1174,
  40685. bottom: 37/1264
  40686. }
  40687. },
  40688. },
  40689. [
  40690. {
  40691. name: "Macro",
  40692. height: math.unit(444, "meters"),
  40693. default: true
  40694. },
  40695. ]
  40696. ))
  40697. characterMakers.push(() => makeCharacter(
  40698. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40699. {
  40700. front: {
  40701. height: math.unit(18 + 7/12, "feet"),
  40702. name: "Front",
  40703. image: {
  40704. source: "./media/characters/rex/front.svg",
  40705. extra: 1941/1807,
  40706. bottom: 66/2007
  40707. }
  40708. },
  40709. back: {
  40710. height: math.unit(18 + 7/12, "feet"),
  40711. name: "Back",
  40712. image: {
  40713. source: "./media/characters/rex/back.svg",
  40714. extra: 1937/1822,
  40715. bottom: 42/1979
  40716. }
  40717. },
  40718. boot: {
  40719. height: math.unit(3.45, "feet"),
  40720. name: "Boot",
  40721. image: {
  40722. source: "./media/characters/rex/boot.svg"
  40723. }
  40724. },
  40725. paw: {
  40726. height: math.unit(4.17, "feet"),
  40727. name: "Paw",
  40728. image: {
  40729. source: "./media/characters/rex/paw.svg"
  40730. }
  40731. },
  40732. head: {
  40733. height: math.unit(6.728, "feet"),
  40734. name: "Head",
  40735. image: {
  40736. source: "./media/characters/rex/head.svg"
  40737. }
  40738. },
  40739. },
  40740. [
  40741. {
  40742. name: "Nano",
  40743. height: math.unit(18 + 7/12, "feet")
  40744. },
  40745. {
  40746. name: "Micro",
  40747. height: math.unit(1.5, "megameters")
  40748. },
  40749. {
  40750. name: "Normal",
  40751. height: math.unit(440, "megameters"),
  40752. default: true
  40753. },
  40754. {
  40755. name: "Macro",
  40756. height: math.unit(2.5, "gigameters")
  40757. },
  40758. {
  40759. name: "Gigamacro",
  40760. height: math.unit(2, "galaxies")
  40761. },
  40762. ]
  40763. ))
  40764. characterMakers.push(() => makeCharacter(
  40765. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40766. {
  40767. side: {
  40768. height: math.unit(32, "feet"),
  40769. weight: math.unit(250000, "lb"),
  40770. name: "Side",
  40771. image: {
  40772. source: "./media/characters/silverwing/side.svg",
  40773. extra: 1100/1019,
  40774. bottom: 204/1304
  40775. }
  40776. },
  40777. },
  40778. [
  40779. {
  40780. name: "Normal",
  40781. height: math.unit(32, "feet"),
  40782. default: true
  40783. },
  40784. ]
  40785. ))
  40786. characterMakers.push(() => makeCharacter(
  40787. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40788. {
  40789. front: {
  40790. height: math.unit(6 + 6/12, "feet"),
  40791. weight: math.unit(350, "lb"),
  40792. name: "Front",
  40793. image: {
  40794. source: "./media/characters/tristan-hawthorne/front.svg",
  40795. extra: 1159/1124,
  40796. bottom: 37/1196
  40797. }
  40798. },
  40799. },
  40800. [
  40801. {
  40802. name: "Normal",
  40803. height: math.unit(6 + 6/12, "feet"),
  40804. default: true
  40805. },
  40806. ]
  40807. ))
  40808. characterMakers.push(() => makeCharacter(
  40809. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40810. {
  40811. front: {
  40812. height: math.unit(5 + 11/12, "feet"),
  40813. weight: math.unit(190, "lb"),
  40814. name: "Front",
  40815. image: {
  40816. source: "./media/characters/mizu/front.svg",
  40817. extra: 1988/1788,
  40818. bottom: 14/2002
  40819. }
  40820. },
  40821. },
  40822. [
  40823. {
  40824. name: "Normal",
  40825. height: math.unit(5 + 11/12, "feet"),
  40826. default: true
  40827. },
  40828. ]
  40829. ))
  40830. characterMakers.push(() => makeCharacter(
  40831. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40832. {
  40833. front: {
  40834. height: math.unit(6, "feet"),
  40835. name: "Front",
  40836. image: {
  40837. source: "./media/characters/moonlight-rose-terra/front.svg",
  40838. extra: 1434/1252,
  40839. bottom: 48/1482
  40840. }
  40841. },
  40842. },
  40843. [
  40844. {
  40845. name: "TRAPPIST-1D",
  40846. height: math.unit(4992*2, "km")
  40847. },
  40848. {
  40849. name: "Earth",
  40850. height: math.unit(6367*2, "km"),
  40851. default: true
  40852. },
  40853. {
  40854. name: "Kepler-22b",
  40855. height: math.unit(15282*2, "km")
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40861. {
  40862. front: {
  40863. height: math.unit(6, "feet"),
  40864. name: "Front",
  40865. image: {
  40866. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40867. extra: 1851/1712,
  40868. bottom: 0/1851
  40869. }
  40870. },
  40871. },
  40872. [
  40873. {
  40874. name: "Enceladus",
  40875. height: math.unit(513*2, "km")
  40876. },
  40877. {
  40878. name: "Europe",
  40879. height: math.unit(1560*2, "km")
  40880. },
  40881. {
  40882. name: "Neptune",
  40883. height: math.unit(24622*2, "km"),
  40884. default: true
  40885. },
  40886. {
  40887. name: "CoRoT-9b",
  40888. height: math.unit(75067*2, "km")
  40889. },
  40890. ]
  40891. ))
  40892. characterMakers.push(() => makeCharacter(
  40893. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40894. {
  40895. front: {
  40896. height: math.unit(6, "feet"),
  40897. name: "Front",
  40898. image: {
  40899. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40900. extra: 1367/1286,
  40901. bottom: 55/1422
  40902. }
  40903. },
  40904. },
  40905. [
  40906. {
  40907. name: "Saturn",
  40908. height: math.unit(58232*2, "km")
  40909. },
  40910. {
  40911. name: "Jupiter",
  40912. height: math.unit(69911*2, "km"),
  40913. default: true
  40914. },
  40915. {
  40916. name: "HD 100546 b",
  40917. height: math.unit(482938, "km")
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40923. {
  40924. front: {
  40925. height: math.unit(1.7, "feet"),
  40926. weight: math.unit(50, "lb"),
  40927. name: "Front",
  40928. image: {
  40929. source: "./media/characters/dechroma/front.svg",
  40930. extra: 1095/859,
  40931. bottom: 64/1159
  40932. }
  40933. },
  40934. },
  40935. [
  40936. {
  40937. name: "Normal",
  40938. height: math.unit(1.7, "feet"),
  40939. default: true
  40940. },
  40941. ]
  40942. ))
  40943. characterMakers.push(() => makeCharacter(
  40944. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40945. {
  40946. side: {
  40947. height: math.unit(30, "feet"),
  40948. name: "Side",
  40949. image: {
  40950. source: "./media/characters/veluren-thanazel/side.svg",
  40951. extra: 1611/633,
  40952. bottom: 118/1729
  40953. }
  40954. },
  40955. front: {
  40956. height: math.unit(30, "feet"),
  40957. name: "Front",
  40958. image: {
  40959. source: "./media/characters/veluren-thanazel/front.svg",
  40960. extra: 1486/636,
  40961. bottom: 238/1724
  40962. }
  40963. },
  40964. head: {
  40965. height: math.unit(21.4, "feet"),
  40966. name: "Head",
  40967. image: {
  40968. source: "./media/characters/veluren-thanazel/head.svg"
  40969. }
  40970. },
  40971. genitals: {
  40972. height: math.unit(19.4, "feet"),
  40973. name: "Genitals",
  40974. image: {
  40975. source: "./media/characters/veluren-thanazel/genitals.svg"
  40976. }
  40977. },
  40978. },
  40979. [
  40980. {
  40981. name: "Social",
  40982. height: math.unit(6, "feet")
  40983. },
  40984. {
  40985. name: "Play",
  40986. height: math.unit(12, "feet")
  40987. },
  40988. {
  40989. name: "True",
  40990. height: math.unit(30, "feet"),
  40991. default: true
  40992. },
  40993. ]
  40994. ))
  40995. characterMakers.push(() => makeCharacter(
  40996. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40997. {
  40998. front: {
  40999. height: math.unit(7 + 6/12, "feet"),
  41000. weight: math.unit(500, "kg"),
  41001. name: "Front",
  41002. image: {
  41003. source: "./media/characters/arcturas/front.svg",
  41004. extra: 1700/1500,
  41005. bottom: 145/1845
  41006. }
  41007. },
  41008. },
  41009. [
  41010. {
  41011. name: "Normal",
  41012. height: math.unit(7 + 6/12, "feet"),
  41013. default: true
  41014. },
  41015. ]
  41016. ))
  41017. characterMakers.push(() => makeCharacter(
  41018. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41019. {
  41020. side: {
  41021. height: math.unit(6, "feet"),
  41022. weight: math.unit(2, "tons"),
  41023. name: "Side",
  41024. image: {
  41025. source: "./media/characters/vitaen/side.svg",
  41026. extra: 1157/617,
  41027. bottom: 122/1279
  41028. }
  41029. },
  41030. },
  41031. [
  41032. {
  41033. name: "Normal",
  41034. height: math.unit(6, "feet"),
  41035. default: true
  41036. },
  41037. ]
  41038. ))
  41039. characterMakers.push(() => makeCharacter(
  41040. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41041. {
  41042. front: {
  41043. height: math.unit(19, "feet"),
  41044. name: "Front",
  41045. image: {
  41046. source: "./media/characters/fia-dreamweaver/front.svg",
  41047. extra: 1630/1504,
  41048. bottom: 25/1655
  41049. }
  41050. },
  41051. },
  41052. [
  41053. {
  41054. name: "Normal",
  41055. height: math.unit(19, "feet"),
  41056. default: true
  41057. },
  41058. ]
  41059. ))
  41060. characterMakers.push(() => makeCharacter(
  41061. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41062. {
  41063. front: {
  41064. height: math.unit(5 + 4/12, "feet"),
  41065. name: "Front",
  41066. image: {
  41067. source: "./media/characters/artan/front.svg",
  41068. extra: 1618/1535,
  41069. bottom: 46/1664
  41070. }
  41071. },
  41072. back: {
  41073. height: math.unit(5 + 4/12, "feet"),
  41074. name: "Back",
  41075. image: {
  41076. source: "./media/characters/artan/back.svg",
  41077. extra: 1618/1543,
  41078. bottom: 31/1649
  41079. }
  41080. },
  41081. },
  41082. [
  41083. {
  41084. name: "Normal",
  41085. height: math.unit(5 + 4/12, "feet"),
  41086. default: true
  41087. },
  41088. ]
  41089. ))
  41090. characterMakers.push(() => makeCharacter(
  41091. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41092. {
  41093. side: {
  41094. height: math.unit(182, "cm"),
  41095. weight: math.unit(1000, "lb"),
  41096. name: "Side",
  41097. image: {
  41098. source: "./media/characters/silver-dragon/side.svg",
  41099. extra: 710/287,
  41100. bottom: 88/798
  41101. }
  41102. },
  41103. },
  41104. [
  41105. {
  41106. name: "Normal",
  41107. height: math.unit(182, "cm"),
  41108. default: true
  41109. },
  41110. ]
  41111. ))
  41112. characterMakers.push(() => makeCharacter(
  41113. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41114. {
  41115. side: {
  41116. height: math.unit(6 + 6/12, "feet"),
  41117. weight: math.unit(1.5, "tons"),
  41118. name: "Side",
  41119. image: {
  41120. source: "./media/characters/zephyr/side.svg",
  41121. extra: 1433/586,
  41122. bottom: 109/1542
  41123. }
  41124. },
  41125. },
  41126. [
  41127. {
  41128. name: "Normal",
  41129. height: math.unit(6 + 6/12, "feet"),
  41130. default: true
  41131. },
  41132. ]
  41133. ))
  41134. characterMakers.push(() => makeCharacter(
  41135. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41136. {
  41137. side: {
  41138. height: math.unit(1, "feet"),
  41139. name: "Side",
  41140. image: {
  41141. source: "./media/characters/vixye/side.svg",
  41142. extra: 632/541,
  41143. bottom: 0/632
  41144. }
  41145. },
  41146. },
  41147. [
  41148. {
  41149. name: "Normal",
  41150. height: math.unit(1, "feet"),
  41151. default: true
  41152. },
  41153. {
  41154. name: "True",
  41155. height: math.unit(1e15, "multiverses")
  41156. },
  41157. ]
  41158. ))
  41159. characterMakers.push(() => makeCharacter(
  41160. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41161. {
  41162. front: {
  41163. height: math.unit(8 + 2/12, "feet"),
  41164. weight: math.unit(650, "lb"),
  41165. name: "Front",
  41166. image: {
  41167. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41168. extra: 1174/1137,
  41169. bottom: 82/1256
  41170. }
  41171. },
  41172. back: {
  41173. height: math.unit(8 + 2/12, "feet"),
  41174. weight: math.unit(650, "lb"),
  41175. name: "Back",
  41176. image: {
  41177. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41178. extra: 1204/1157,
  41179. bottom: 46/1250
  41180. }
  41181. },
  41182. },
  41183. [
  41184. {
  41185. name: "Wildform",
  41186. height: math.unit(8 + 2/12, "feet"),
  41187. default: true
  41188. },
  41189. ]
  41190. ))
  41191. characterMakers.push(() => makeCharacter(
  41192. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41193. {
  41194. front: {
  41195. height: math.unit(18, "feet"),
  41196. name: "Front",
  41197. image: {
  41198. source: "./media/characters/cyphin/front.svg",
  41199. extra: 970/886,
  41200. bottom: 42/1012
  41201. }
  41202. },
  41203. back: {
  41204. height: math.unit(18, "feet"),
  41205. name: "Back",
  41206. image: {
  41207. source: "./media/characters/cyphin/back.svg",
  41208. extra: 1009/894,
  41209. bottom: 24/1033
  41210. }
  41211. },
  41212. head: {
  41213. height: math.unit(5.05, "feet"),
  41214. name: "Head",
  41215. image: {
  41216. source: "./media/characters/cyphin/head.svg"
  41217. }
  41218. },
  41219. tailbud: {
  41220. height: math.unit(5, "feet"),
  41221. name: "Tailbud",
  41222. image: {
  41223. source: "./media/characters/cyphin/tailbud.svg"
  41224. }
  41225. },
  41226. },
  41227. [
  41228. ]
  41229. ))
  41230. characterMakers.push(() => makeCharacter(
  41231. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41232. {
  41233. side: {
  41234. height: math.unit(10, "feet"),
  41235. weight: math.unit(6, "tons"),
  41236. name: "Side",
  41237. image: {
  41238. source: "./media/characters/raijin/side.svg",
  41239. extra: 1529/613,
  41240. bottom: 337/1866
  41241. }
  41242. },
  41243. },
  41244. [
  41245. {
  41246. name: "Normal",
  41247. height: math.unit(10, "feet"),
  41248. default: true
  41249. },
  41250. ]
  41251. ))
  41252. characterMakers.push(() => makeCharacter(
  41253. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41254. {
  41255. side: {
  41256. height: math.unit(9, "feet"),
  41257. name: "Side",
  41258. image: {
  41259. source: "./media/characters/nilghais/side.svg",
  41260. extra: 1047/744,
  41261. bottom: 91/1138
  41262. }
  41263. },
  41264. head: {
  41265. height: math.unit(3.14, "feet"),
  41266. name: "Head",
  41267. image: {
  41268. source: "./media/characters/nilghais/head.svg"
  41269. }
  41270. },
  41271. mouth: {
  41272. height: math.unit(4.6, "feet"),
  41273. name: "Mouth",
  41274. image: {
  41275. source: "./media/characters/nilghais/mouth.svg"
  41276. }
  41277. },
  41278. wings: {
  41279. height: math.unit(24, "feet"),
  41280. name: "Wings",
  41281. image: {
  41282. source: "./media/characters/nilghais/wings.svg"
  41283. }
  41284. },
  41285. ass: {
  41286. height: math.unit(6.12, "feet"),
  41287. name: "Ass",
  41288. image: {
  41289. source: "./media/characters/nilghais/ass.svg"
  41290. }
  41291. },
  41292. },
  41293. [
  41294. {
  41295. name: "Normal",
  41296. height: math.unit(9, "feet"),
  41297. default: true
  41298. },
  41299. ]
  41300. ))
  41301. characterMakers.push(() => makeCharacter(
  41302. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41303. {
  41304. regular: {
  41305. height: math.unit(16 + 2/12, "feet"),
  41306. weight: math.unit(2300, "lb"),
  41307. name: "Regular",
  41308. image: {
  41309. source: "./media/characters/zolgar/regular.svg",
  41310. extra: 1246/1004,
  41311. bottom: 124/1370
  41312. }
  41313. },
  41314. boxers: {
  41315. height: math.unit(16 + 2/12, "feet"),
  41316. weight: math.unit(2300, "lb"),
  41317. name: "Boxers",
  41318. image: {
  41319. source: "./media/characters/zolgar/boxers.svg",
  41320. extra: 1246/1004,
  41321. bottom: 124/1370
  41322. }
  41323. },
  41324. armored: {
  41325. height: math.unit(16 + 2/12, "feet"),
  41326. weight: math.unit(2300, "lb"),
  41327. name: "Armored",
  41328. image: {
  41329. source: "./media/characters/zolgar/armored.svg",
  41330. extra: 1246/1004,
  41331. bottom: 124/1370
  41332. }
  41333. },
  41334. goth: {
  41335. height: math.unit(16 + 2/12, "feet"),
  41336. weight: math.unit(2300, "lb"),
  41337. name: "Goth",
  41338. image: {
  41339. source: "./media/characters/zolgar/goth.svg",
  41340. extra: 1246/1004,
  41341. bottom: 124/1370
  41342. }
  41343. },
  41344. },
  41345. [
  41346. {
  41347. name: "Shrunken Down",
  41348. height: math.unit(9 + 2/12, "feet")
  41349. },
  41350. {
  41351. name: "Normal",
  41352. height: math.unit(16 + 2/12, "feet"),
  41353. default: true
  41354. },
  41355. ]
  41356. ))
  41357. characterMakers.push(() => makeCharacter(
  41358. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41359. {
  41360. front: {
  41361. height: math.unit(6, "feet"),
  41362. weight: math.unit(168, "lb"),
  41363. name: "Front",
  41364. image: {
  41365. source: "./media/characters/luca/front.svg",
  41366. extra: 841/667,
  41367. bottom: 102/943
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Normal",
  41374. height: math.unit(6, "feet"),
  41375. default: true
  41376. },
  41377. ]
  41378. ))
  41379. characterMakers.push(() => makeCharacter(
  41380. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41381. {
  41382. side: {
  41383. height: math.unit(7 + 3/12, "feet"),
  41384. weight: math.unit(312, "lb"),
  41385. name: "Side",
  41386. image: {
  41387. source: "./media/characters/zezo/side.svg",
  41388. extra: 1192/1067,
  41389. bottom: 63/1255
  41390. }
  41391. },
  41392. },
  41393. [
  41394. {
  41395. name: "Normal",
  41396. height: math.unit(7 + 3/12, "feet"),
  41397. default: true
  41398. },
  41399. ]
  41400. ))
  41401. characterMakers.push(() => makeCharacter(
  41402. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41403. {
  41404. front: {
  41405. height: math.unit(5 + 5/12, "feet"),
  41406. weight: math.unit(170, "lb"),
  41407. name: "Front",
  41408. image: {
  41409. source: "./media/characters/mayso/front.svg",
  41410. extra: 1215/1108,
  41411. bottom: 16/1231
  41412. }
  41413. },
  41414. },
  41415. [
  41416. {
  41417. name: "Normal",
  41418. height: math.unit(5 + 5/12, "feet"),
  41419. default: true
  41420. },
  41421. ]
  41422. ))
  41423. characterMakers.push(() => makeCharacter(
  41424. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41425. {
  41426. front: {
  41427. height: math.unit(4 + 3/12, "feet"),
  41428. weight: math.unit(80, "lb"),
  41429. name: "Front",
  41430. image: {
  41431. source: "./media/characters/hess/front.svg",
  41432. extra: 1200/1123,
  41433. bottom: 16/1216
  41434. }
  41435. },
  41436. },
  41437. [
  41438. {
  41439. name: "Normal",
  41440. height: math.unit(4 + 3/12, "feet"),
  41441. default: true
  41442. },
  41443. ]
  41444. ))
  41445. characterMakers.push(() => makeCharacter(
  41446. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41447. {
  41448. front: {
  41449. height: math.unit(1.9, "meters"),
  41450. name: "Front",
  41451. image: {
  41452. source: "./media/characters/ashgar/front.svg",
  41453. extra: 1177/1146,
  41454. bottom: 99/1276
  41455. }
  41456. },
  41457. back: {
  41458. height: math.unit(1.9, "meters"),
  41459. name: "Back",
  41460. image: {
  41461. source: "./media/characters/ashgar/back.svg",
  41462. extra: 1201/1183,
  41463. bottom: 53/1254
  41464. }
  41465. },
  41466. feral: {
  41467. height: math.unit(1.4, "meters"),
  41468. name: "Feral",
  41469. image: {
  41470. source: "./media/characters/ashgar/feral.svg",
  41471. extra: 370/345,
  41472. bottom: 45/415
  41473. }
  41474. },
  41475. },
  41476. [
  41477. {
  41478. name: "Normal",
  41479. height: math.unit(1.9, "meters"),
  41480. default: true
  41481. },
  41482. ]
  41483. ))
  41484. characterMakers.push(() => makeCharacter(
  41485. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41486. {
  41487. regular: {
  41488. height: math.unit(6, "feet"),
  41489. weight: math.unit(220, "lb"),
  41490. name: "Regular",
  41491. image: {
  41492. source: "./media/characters/phillip/regular.svg",
  41493. extra: 1373/1277,
  41494. bottom: 75/1448
  41495. }
  41496. },
  41497. dressed: {
  41498. height: math.unit(6, "feet"),
  41499. weight: math.unit(220, "lb"),
  41500. name: "Dressed",
  41501. image: {
  41502. source: "./media/characters/phillip/dressed.svg",
  41503. extra: 1373/1277,
  41504. bottom: 75/1448
  41505. }
  41506. },
  41507. paw: {
  41508. height: math.unit(1.44, "feet"),
  41509. name: "Paw",
  41510. image: {
  41511. source: "./media/characters/phillip/paw.svg"
  41512. }
  41513. },
  41514. },
  41515. [
  41516. {
  41517. name: "Normal",
  41518. height: math.unit(6, "feet"),
  41519. default: true
  41520. },
  41521. ]
  41522. ))
  41523. characterMakers.push(() => makeCharacter(
  41524. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41525. {
  41526. side: {
  41527. height: math.unit(42, "feet"),
  41528. name: "Side",
  41529. image: {
  41530. source: "./media/characters/uvula/side.svg",
  41531. extra: 683/586,
  41532. bottom: 60/743
  41533. }
  41534. },
  41535. front: {
  41536. height: math.unit(42, "feet"),
  41537. name: "Front",
  41538. image: {
  41539. source: "./media/characters/uvula/front.svg",
  41540. extra: 705/613,
  41541. bottom: 54/759
  41542. }
  41543. },
  41544. maw: {
  41545. height: math.unit(23.5, "feet"),
  41546. name: "Maw",
  41547. image: {
  41548. source: "./media/characters/uvula/maw.svg"
  41549. }
  41550. },
  41551. },
  41552. [
  41553. {
  41554. name: "Original Size",
  41555. height: math.unit(14, "inches")
  41556. },
  41557. {
  41558. name: "Human Size",
  41559. height: math.unit(6, "feet")
  41560. },
  41561. {
  41562. name: "Big",
  41563. height: math.unit(42, "feet"),
  41564. default: true
  41565. },
  41566. {
  41567. name: "Bigger",
  41568. height: math.unit(100, "feet")
  41569. },
  41570. ]
  41571. ))
  41572. characterMakers.push(() => makeCharacter(
  41573. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41574. {
  41575. front: {
  41576. height: math.unit(5 + 11/12, "feet"),
  41577. name: "Front",
  41578. image: {
  41579. source: "./media/characters/lannah/front.svg",
  41580. extra: 1208/1113,
  41581. bottom: 97/1305
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Normal",
  41588. height: math.unit(5 + 11/12, "feet"),
  41589. default: true
  41590. },
  41591. ]
  41592. ))
  41593. characterMakers.push(() => makeCharacter(
  41594. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41595. {
  41596. front: {
  41597. height: math.unit(6 + 3/12, "feet"),
  41598. weight: math.unit(3.5, "tons"),
  41599. name: "Front",
  41600. image: {
  41601. source: "./media/characters/emberflame/front.svg",
  41602. extra: 1198/672,
  41603. bottom: 82/1280
  41604. }
  41605. },
  41606. side: {
  41607. height: math.unit(6 + 3/12, "feet"),
  41608. weight: math.unit(3.5, "tons"),
  41609. name: "Side",
  41610. image: {
  41611. source: "./media/characters/emberflame/side.svg",
  41612. extra: 938/527,
  41613. bottom: 56/994
  41614. }
  41615. },
  41616. },
  41617. [
  41618. {
  41619. name: "Normal",
  41620. height: math.unit(6 + 3/12, "feet"),
  41621. default: true
  41622. },
  41623. ]
  41624. ))
  41625. characterMakers.push(() => makeCharacter(
  41626. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41627. {
  41628. side: {
  41629. height: math.unit(17.5, "feet"),
  41630. weight: math.unit(35, "tons"),
  41631. name: "Side",
  41632. image: {
  41633. source: "./media/characters/sophie-ambrose/side.svg",
  41634. extra: 1573/1242,
  41635. bottom: 71/1644
  41636. }
  41637. },
  41638. maw: {
  41639. height: math.unit(7.4, "feet"),
  41640. name: "Maw",
  41641. image: {
  41642. source: "./media/characters/sophie-ambrose/maw.svg"
  41643. }
  41644. },
  41645. },
  41646. [
  41647. {
  41648. name: "Normal",
  41649. height: math.unit(17.5, "feet"),
  41650. default: true
  41651. },
  41652. ]
  41653. ))
  41654. characterMakers.push(() => makeCharacter(
  41655. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41656. {
  41657. front: {
  41658. height: math.unit(280, "feet"),
  41659. weight: math.unit(550, "tons"),
  41660. name: "Front",
  41661. image: {
  41662. source: "./media/characters/king-mugi/front.svg",
  41663. extra: 1102/947,
  41664. bottom: 104/1206
  41665. }
  41666. },
  41667. },
  41668. [
  41669. {
  41670. name: "King Mugi",
  41671. height: math.unit(280, "feet"),
  41672. default: true
  41673. },
  41674. ]
  41675. ))
  41676. characterMakers.push(() => makeCharacter(
  41677. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41678. {
  41679. front: {
  41680. height: math.unit(64, "meters"),
  41681. name: "Front",
  41682. image: {
  41683. source: "./media/characters/nova-fox/front.svg",
  41684. extra: 1310/1246,
  41685. bottom: 65/1375
  41686. }
  41687. },
  41688. },
  41689. [
  41690. {
  41691. name: "Macro",
  41692. height: math.unit(64, "meters"),
  41693. default: true
  41694. },
  41695. ]
  41696. ))
  41697. characterMakers.push(() => makeCharacter(
  41698. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41699. {
  41700. front: {
  41701. height: math.unit(6 + 3/12, "feet"),
  41702. weight: math.unit(170, "lb"),
  41703. name: "Front",
  41704. image: {
  41705. source: "./media/characters/sam-bat/front.svg",
  41706. extra: 1601/1411,
  41707. bottom: 125/1726
  41708. }
  41709. },
  41710. back: {
  41711. height: math.unit(6 + 3/12, "feet"),
  41712. weight: math.unit(170, "lb"),
  41713. name: "Back",
  41714. image: {
  41715. source: "./media/characters/sam-bat/back.svg",
  41716. extra: 1577/1405,
  41717. bottom: 58/1635
  41718. }
  41719. },
  41720. },
  41721. [
  41722. {
  41723. name: "Normal",
  41724. height: math.unit(6 + 3/12, "feet"),
  41725. default: true
  41726. },
  41727. ]
  41728. ))
  41729. characterMakers.push(() => makeCharacter(
  41730. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41731. {
  41732. front: {
  41733. height: math.unit(59, "feet"),
  41734. weight: math.unit(40000, "lb"),
  41735. name: "Front",
  41736. image: {
  41737. source: "./media/characters/inari/front.svg",
  41738. extra: 1884/1350,
  41739. bottom: 95/1979
  41740. }
  41741. },
  41742. },
  41743. [
  41744. {
  41745. name: "Gigantamax",
  41746. height: math.unit(59, "feet"),
  41747. default: true
  41748. },
  41749. ]
  41750. ))
  41751. characterMakers.push(() => makeCharacter(
  41752. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41753. {
  41754. front: {
  41755. height: math.unit(5 + 8/12, "feet"),
  41756. name: "Front",
  41757. image: {
  41758. source: "./media/characters/elizabeth/front.svg",
  41759. extra: 1395/1298,
  41760. bottom: 54/1449
  41761. }
  41762. },
  41763. mouth: {
  41764. height: math.unit(1.97, "feet"),
  41765. name: "Mouth",
  41766. image: {
  41767. source: "./media/characters/elizabeth/mouth.svg"
  41768. }
  41769. },
  41770. foot: {
  41771. height: math.unit(1.17, "feet"),
  41772. name: "Foot",
  41773. image: {
  41774. source: "./media/characters/elizabeth/foot.svg"
  41775. }
  41776. },
  41777. },
  41778. [
  41779. {
  41780. name: "Normal",
  41781. height: math.unit(5 + 8/12, "feet"),
  41782. default: true
  41783. },
  41784. {
  41785. name: "Minimacro",
  41786. height: math.unit(18, "feet")
  41787. },
  41788. {
  41789. name: "Macro",
  41790. height: math.unit(180, "feet")
  41791. },
  41792. ]
  41793. ))
  41794. characterMakers.push(() => makeCharacter(
  41795. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41796. {
  41797. front: {
  41798. height: math.unit(5 + 2/12, "feet"),
  41799. name: "Front",
  41800. image: {
  41801. source: "./media/characters/october-gossamer/front.svg",
  41802. extra: 505/454,
  41803. bottom: 7/512
  41804. }
  41805. },
  41806. back: {
  41807. height: math.unit(5 + 2/12, "feet"),
  41808. name: "Back",
  41809. image: {
  41810. source: "./media/characters/october-gossamer/back.svg",
  41811. extra: 501/454,
  41812. bottom: 11/512
  41813. }
  41814. },
  41815. },
  41816. [
  41817. {
  41818. name: "Normal",
  41819. height: math.unit(5 + 2/12, "feet"),
  41820. default: true
  41821. },
  41822. ]
  41823. ))
  41824. characterMakers.push(() => makeCharacter(
  41825. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41826. {
  41827. front: {
  41828. height: math.unit(5, "feet"),
  41829. name: "Front",
  41830. image: {
  41831. source: "./media/characters/epiglottis/front.svg",
  41832. extra: 923/849,
  41833. bottom: 17/940
  41834. }
  41835. },
  41836. },
  41837. [
  41838. {
  41839. name: "Original Size",
  41840. height: math.unit(10, "inches")
  41841. },
  41842. {
  41843. name: "Human Size",
  41844. height: math.unit(5, "feet"),
  41845. default: true
  41846. },
  41847. {
  41848. name: "Big",
  41849. height: math.unit(25, "feet")
  41850. },
  41851. {
  41852. name: "Bigger",
  41853. height: math.unit(50, "feet")
  41854. },
  41855. {
  41856. name: "oh lawd",
  41857. height: math.unit(75, "feet")
  41858. },
  41859. ]
  41860. ))
  41861. characterMakers.push(() => makeCharacter(
  41862. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41863. {
  41864. front: {
  41865. height: math.unit(2 + 4/12, "feet"),
  41866. weight: math.unit(60, "lb"),
  41867. name: "Front",
  41868. image: {
  41869. source: "./media/characters/lerm/front.svg",
  41870. extra: 796/790,
  41871. bottom: 79/875
  41872. }
  41873. },
  41874. },
  41875. [
  41876. {
  41877. name: "Normal",
  41878. height: math.unit(2 + 4/12, "feet"),
  41879. default: true
  41880. },
  41881. ]
  41882. ))
  41883. characterMakers.push(() => makeCharacter(
  41884. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41885. {
  41886. front: {
  41887. height: math.unit(5.5, "feet"),
  41888. weight: math.unit(130, "lb"),
  41889. name: "Front",
  41890. image: {
  41891. source: "./media/characters/xena-nebadon/front.svg",
  41892. extra: 1828/1730,
  41893. bottom: 79/1907
  41894. }
  41895. },
  41896. },
  41897. [
  41898. {
  41899. name: "Tiny Puppy",
  41900. height: math.unit(3, "inches")
  41901. },
  41902. {
  41903. name: "Normal",
  41904. height: math.unit(5.5, "feet"),
  41905. default: true
  41906. },
  41907. {
  41908. name: "Lotta Lady",
  41909. height: math.unit(12, "feet")
  41910. },
  41911. {
  41912. name: "Pretty Big",
  41913. height: math.unit(100, "feet")
  41914. },
  41915. {
  41916. name: "Big",
  41917. height: math.unit(500, "feet")
  41918. },
  41919. {
  41920. name: "Skyscraper Toys",
  41921. height: math.unit(2500, "feet")
  41922. },
  41923. {
  41924. name: "Plane Catcher",
  41925. height: math.unit(8, "miles")
  41926. },
  41927. {
  41928. name: "Planet Toys",
  41929. height: math.unit(15, "earths")
  41930. },
  41931. {
  41932. name: "Stardust",
  41933. height: math.unit(0.25, "galaxies")
  41934. },
  41935. {
  41936. name: "Snacks",
  41937. height: math.unit(70, "universes")
  41938. },
  41939. ]
  41940. ))
  41941. characterMakers.push(() => makeCharacter(
  41942. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41943. {
  41944. front: {
  41945. height: math.unit(1.6, "meters"),
  41946. weight: math.unit(60, "kg"),
  41947. name: "Front",
  41948. image: {
  41949. source: "./media/characters/bounty/front.svg",
  41950. extra: 1426/1308,
  41951. bottom: 15/1441
  41952. }
  41953. },
  41954. },
  41955. [
  41956. {
  41957. name: "Normal",
  41958. height: math.unit(1.6, "meters"),
  41959. default: true
  41960. },
  41961. {
  41962. name: "Macro",
  41963. height: math.unit(300, "meters")
  41964. },
  41965. ]
  41966. ))
  41967. characterMakers.push(() => makeCharacter(
  41968. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  41969. {
  41970. front: {
  41971. height: math.unit(2 + 8/12, "feet"),
  41972. weight: math.unit(15, "lb"),
  41973. name: "Front",
  41974. image: {
  41975. source: "./media/characters/mochi/front.svg",
  41976. extra: 1022/852,
  41977. bottom: 435/1457
  41978. }
  41979. },
  41980. back: {
  41981. height: math.unit(2 + 8/12, "feet"),
  41982. weight: math.unit(15, "lb"),
  41983. name: "Back",
  41984. image: {
  41985. source: "./media/characters/mochi/back.svg",
  41986. extra: 1335/1119,
  41987. bottom: 39/1374
  41988. }
  41989. },
  41990. bird: {
  41991. height: math.unit(2 + 8/12, "feet"),
  41992. weight: math.unit(15, "lb"),
  41993. name: "Bird",
  41994. image: {
  41995. source: "./media/characters/mochi/bird.svg",
  41996. extra: 1251/1113,
  41997. bottom: 178/1429
  41998. }
  41999. },
  42000. kaiju: {
  42001. height: math.unit(154, "feet"),
  42002. weight: math.unit(1e7, "lb"),
  42003. name: "Kaiju",
  42004. image: {
  42005. source: "./media/characters/mochi/kaiju.svg",
  42006. extra: 460/324,
  42007. bottom: 40/500
  42008. }
  42009. },
  42010. head: {
  42011. height: math.unit(1.21, "feet"),
  42012. name: "Head",
  42013. image: {
  42014. source: "./media/characters/mochi/head.svg"
  42015. }
  42016. },
  42017. alternateTail: {
  42018. height: math.unit(2 + 8/12, "feet"),
  42019. weight: math.unit(45, "lb"),
  42020. name: "Alternate Tail",
  42021. image: {
  42022. source: "./media/characters/mochi/alternate-tail.svg",
  42023. extra: 139/76,
  42024. bottom: 45/184
  42025. }
  42026. },
  42027. },
  42028. [
  42029. {
  42030. name: "Micro",
  42031. height: math.unit(2, "inches")
  42032. },
  42033. {
  42034. name: "Normal",
  42035. height: math.unit(2 + 8/12, "feet"),
  42036. default: true
  42037. },
  42038. {
  42039. name: "Macro",
  42040. height: math.unit(106, "feet")
  42041. },
  42042. ]
  42043. ))
  42044. characterMakers.push(() => makeCharacter(
  42045. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42046. {
  42047. front: {
  42048. height: math.unit(5.67, "feet"),
  42049. weight: math.unit(135, "lb"),
  42050. name: "Front",
  42051. image: {
  42052. source: "./media/characters/sarel/front.svg",
  42053. extra: 865/788,
  42054. bottom: 97/962
  42055. }
  42056. },
  42057. back: {
  42058. height: math.unit(5.67, "feet"),
  42059. weight: math.unit(135, "lb"),
  42060. name: "Back",
  42061. image: {
  42062. source: "./media/characters/sarel/back.svg",
  42063. extra: 857/777,
  42064. bottom: 32/889
  42065. }
  42066. },
  42067. chozoan: {
  42068. height: math.unit(5.67, "feet"),
  42069. weight: math.unit(135, "lb"),
  42070. name: "Chozoan",
  42071. image: {
  42072. source: "./media/characters/sarel/chozoan.svg",
  42073. extra: 865/788,
  42074. bottom: 97/962
  42075. }
  42076. },
  42077. current: {
  42078. height: math.unit(5.67, "feet"),
  42079. weight: math.unit(135, "lb"),
  42080. name: "Current",
  42081. image: {
  42082. source: "./media/characters/sarel/current.svg",
  42083. extra: 865/788,
  42084. bottom: 97/962
  42085. }
  42086. },
  42087. head: {
  42088. height: math.unit(1.77, "feet"),
  42089. name: "Head",
  42090. image: {
  42091. source: "./media/characters/sarel/head.svg"
  42092. }
  42093. },
  42094. claws: {
  42095. height: math.unit(1.8, "feet"),
  42096. name: "Claws",
  42097. image: {
  42098. source: "./media/characters/sarel/claws.svg"
  42099. }
  42100. },
  42101. clawsAlt: {
  42102. height: math.unit(1.8, "feet"),
  42103. name: "Claws-alt",
  42104. image: {
  42105. source: "./media/characters/sarel/claws-alt.svg"
  42106. }
  42107. },
  42108. },
  42109. [
  42110. {
  42111. name: "Normal",
  42112. height: math.unit(5.67, "feet"),
  42113. default: true
  42114. },
  42115. ]
  42116. ))
  42117. characterMakers.push(() => makeCharacter(
  42118. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42119. {
  42120. front: {
  42121. height: math.unit(5500, "feet"),
  42122. name: "Front",
  42123. image: {
  42124. source: "./media/characters/alyonia/front.svg",
  42125. extra: 1200/1135,
  42126. bottom: 29/1229
  42127. }
  42128. },
  42129. back: {
  42130. height: math.unit(5500, "feet"),
  42131. name: "Back",
  42132. image: {
  42133. source: "./media/characters/alyonia/back.svg",
  42134. extra: 1205/1138,
  42135. bottom: 10/1215
  42136. }
  42137. },
  42138. },
  42139. [
  42140. {
  42141. name: "Small",
  42142. height: math.unit(10, "feet")
  42143. },
  42144. {
  42145. name: "Macro",
  42146. height: math.unit(500, "feet")
  42147. },
  42148. {
  42149. name: "Mega Macro",
  42150. height: math.unit(5500, "feet"),
  42151. default: true
  42152. },
  42153. {
  42154. name: "Mega Macro+",
  42155. height: math.unit(500000, "feet")
  42156. },
  42157. {
  42158. name: "Giga Macro",
  42159. height: math.unit(3000, "miles")
  42160. },
  42161. {
  42162. name: "Tera Macro",
  42163. height: math.unit(2.8e6, "miles")
  42164. },
  42165. {
  42166. name: "Galactic",
  42167. height: math.unit(120000, "lightyears")
  42168. },
  42169. ]
  42170. ))
  42171. characterMakers.push(() => makeCharacter(
  42172. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42173. {
  42174. werewolf: {
  42175. height: math.unit(8, "feet"),
  42176. weight: math.unit(425, "lb"),
  42177. name: "Werewolf",
  42178. image: {
  42179. source: "./media/characters/autumn/werewolf.svg",
  42180. extra: 2154/2031,
  42181. bottom: 160/2314
  42182. }
  42183. },
  42184. human: {
  42185. height: math.unit(5 + 8/12, "feet"),
  42186. weight: math.unit(150, "lb"),
  42187. name: "Human",
  42188. image: {
  42189. source: "./media/characters/autumn/human.svg",
  42190. extra: 1200/1149,
  42191. bottom: 30/1230
  42192. }
  42193. },
  42194. },
  42195. [
  42196. {
  42197. name: "Normal",
  42198. height: math.unit(8, "feet"),
  42199. default: true
  42200. },
  42201. ]
  42202. ))
  42203. characterMakers.push(() => makeCharacter(
  42204. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42205. {
  42206. front: {
  42207. height: math.unit(8 + 5/12, "feet"),
  42208. weight: math.unit(825, "lb"),
  42209. name: "Front",
  42210. image: {
  42211. source: "./media/characters/cobalt-charizard/front.svg",
  42212. extra: 1268/1155,
  42213. bottom: 122/1390
  42214. }
  42215. },
  42216. side: {
  42217. height: math.unit(8 + 5/12, "feet"),
  42218. weight: math.unit(825, "lb"),
  42219. name: "Side",
  42220. image: {
  42221. source: "./media/characters/cobalt-charizard/side.svg",
  42222. extra: 1348/1257,
  42223. bottom: 58/1406
  42224. }
  42225. },
  42226. gMax: {
  42227. height: math.unit(134 + 11/12, "feet"),
  42228. name: "G-Max",
  42229. image: {
  42230. source: "./media/characters/cobalt-charizard/g-max.svg",
  42231. extra: 1835/1541,
  42232. bottom: 151/1986
  42233. }
  42234. },
  42235. },
  42236. [
  42237. {
  42238. name: "Normal",
  42239. height: math.unit(8 + 5/12, "feet"),
  42240. default: true
  42241. },
  42242. ]
  42243. ))
  42244. characterMakers.push(() => makeCharacter(
  42245. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42246. {
  42247. front: {
  42248. height: math.unit(6 + 3/12, "feet"),
  42249. weight: math.unit(210, "lb"),
  42250. name: "Front",
  42251. image: {
  42252. source: "./media/characters/stella/front.svg",
  42253. extra: 3549/3335,
  42254. bottom: 51/3600
  42255. }
  42256. },
  42257. },
  42258. [
  42259. {
  42260. name: "Normal",
  42261. height: math.unit(6 + 3/12, "feet"),
  42262. default: true
  42263. },
  42264. ]
  42265. ))
  42266. characterMakers.push(() => makeCharacter(
  42267. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42268. {
  42269. front: {
  42270. height: math.unit(5, "feet"),
  42271. weight: math.unit(90, "lb"),
  42272. name: "Front",
  42273. image: {
  42274. source: "./media/characters/riley-bishop/front.svg",
  42275. extra: 1450/1428,
  42276. bottom: 152/1602
  42277. }
  42278. },
  42279. },
  42280. [
  42281. {
  42282. name: "Normal",
  42283. height: math.unit(5, "feet"),
  42284. default: true
  42285. },
  42286. ]
  42287. ))
  42288. characterMakers.push(() => makeCharacter(
  42289. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42290. {
  42291. side: {
  42292. height: math.unit(8 + 2/12, "feet"),
  42293. weight: math.unit(500, "kg"),
  42294. name: "Side",
  42295. image: {
  42296. source: "./media/characters/theo-arcanine/side.svg",
  42297. extra: 1342/1074,
  42298. bottom: 111/1453
  42299. }
  42300. },
  42301. },
  42302. [
  42303. {
  42304. name: "Normal",
  42305. height: math.unit(8 + 2/12, "feet"),
  42306. default: true
  42307. },
  42308. ]
  42309. ))
  42310. characterMakers.push(() => makeCharacter(
  42311. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42312. {
  42313. front: {
  42314. height: math.unit(4, "feet"),
  42315. name: "Front",
  42316. image: {
  42317. source: "./media/characters/kali/front.svg",
  42318. extra: 1921/1357,
  42319. bottom: 70/1991
  42320. }
  42321. },
  42322. },
  42323. [
  42324. {
  42325. name: "Normal",
  42326. height: math.unit(4, "feet"),
  42327. default: true
  42328. },
  42329. {
  42330. name: "Macro",
  42331. height: math.unit(32, "meters")
  42332. },
  42333. {
  42334. name: "Macro+",
  42335. height: math.unit(150, "meters")
  42336. },
  42337. {
  42338. name: "Megamacro",
  42339. height: math.unit(7500, "meters")
  42340. },
  42341. {
  42342. name: "Megamacro+",
  42343. height: math.unit(80, "kilometers")
  42344. },
  42345. ]
  42346. ))
  42347. characterMakers.push(() => makeCharacter(
  42348. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42349. {
  42350. side: {
  42351. height: math.unit(5 + 11/12, "feet"),
  42352. weight: math.unit(236, "lb"),
  42353. name: "Side",
  42354. image: {
  42355. source: "./media/characters/gapp/side.svg",
  42356. extra: 775/340,
  42357. bottom: 58/833
  42358. }
  42359. },
  42360. mouth: {
  42361. height: math.unit(2.98, "feet"),
  42362. name: "Mouth",
  42363. image: {
  42364. source: "./media/characters/gapp/mouth.svg"
  42365. }
  42366. },
  42367. },
  42368. [
  42369. {
  42370. name: "Normal",
  42371. height: math.unit(5 + 1/12, "feet"),
  42372. default: true
  42373. },
  42374. ]
  42375. ))
  42376. characterMakers.push(() => makeCharacter(
  42377. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42378. {
  42379. front: {
  42380. height: math.unit(6, "feet"),
  42381. name: "Front",
  42382. image: {
  42383. source: "./media/characters/persephone/front.svg",
  42384. extra: 1895/1717,
  42385. bottom: 96/1991
  42386. }
  42387. },
  42388. back: {
  42389. height: math.unit(6, "feet"),
  42390. name: "Back",
  42391. image: {
  42392. source: "./media/characters/persephone/back.svg",
  42393. extra: 1868/1679,
  42394. bottom: 26/1894
  42395. }
  42396. },
  42397. casual: {
  42398. height: math.unit(6, "feet"),
  42399. name: "Casual",
  42400. image: {
  42401. source: "./media/characters/persephone/casual.svg",
  42402. extra: 1713/1541,
  42403. bottom: 76/1789
  42404. }
  42405. },
  42406. },
  42407. [
  42408. {
  42409. name: "Human Size",
  42410. height: math.unit(6, "feet"),
  42411. default: true
  42412. },
  42413. {
  42414. name: "Galaxy Brain",
  42415. height: math.unit(1, "zettameter")
  42416. },
  42417. ]
  42418. ))
  42419. characterMakers.push(() => makeCharacter(
  42420. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42421. {
  42422. front: {
  42423. height: math.unit(1.85, "meters"),
  42424. name: "Front",
  42425. image: {
  42426. source: "./media/characters/riley-foxthing/front.svg",
  42427. extra: 1495/1354,
  42428. bottom: 122/1617
  42429. }
  42430. },
  42431. frontAlt: {
  42432. height: math.unit(1.85, "meters"),
  42433. name: "Front (Alt)",
  42434. image: {
  42435. source: "./media/characters/riley-foxthing/front-alt.svg",
  42436. extra: 1572/1389,
  42437. bottom: 116/1688
  42438. }
  42439. },
  42440. },
  42441. [
  42442. {
  42443. name: "Normal Sized",
  42444. height: math.unit(1.85, "meters"),
  42445. default: true
  42446. },
  42447. {
  42448. name: "Quite Sizable",
  42449. height: math.unit(5, "meters")
  42450. },
  42451. {
  42452. name: "Rather Large",
  42453. height: math.unit(20, "meters")
  42454. },
  42455. {
  42456. name: "Macro",
  42457. height: math.unit(450, "meters")
  42458. },
  42459. {
  42460. name: "Giga",
  42461. height: math.unit(5, "km")
  42462. },
  42463. ]
  42464. ))
  42465. characterMakers.push(() => makeCharacter(
  42466. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42467. {
  42468. front: {
  42469. height: math.unit(6, "feet"),
  42470. weight: math.unit(200, "lb"),
  42471. name: "Front",
  42472. image: {
  42473. source: "./media/characters/blizzard/front.svg",
  42474. extra: 1136/990,
  42475. bottom: 136/1272
  42476. }
  42477. },
  42478. back: {
  42479. height: math.unit(6, "feet"),
  42480. weight: math.unit(200, "lb"),
  42481. name: "Back",
  42482. image: {
  42483. source: "./media/characters/blizzard/back.svg",
  42484. extra: 1175/1034,
  42485. bottom: 97/1272
  42486. }
  42487. },
  42488. sitting: {
  42489. height: math.unit(3.725, "feet"),
  42490. weight: math.unit(200, "lb"),
  42491. name: "Sitting",
  42492. image: {
  42493. source: "./media/characters/blizzard/sitting.svg",
  42494. extra: 581/485,
  42495. bottom: 90/671
  42496. }
  42497. },
  42498. frontWizard: {
  42499. height: math.unit(7.9, "feet"),
  42500. weight: math.unit(200, "lb"),
  42501. name: "Front (Wizard)",
  42502. image: {
  42503. source: "./media/characters/blizzard/front-wizard.svg"
  42504. }
  42505. },
  42506. backWizard: {
  42507. height: math.unit(7.9, "feet"),
  42508. weight: math.unit(200, "lb"),
  42509. name: "Back (Wizard)",
  42510. image: {
  42511. source: "./media/characters/blizzard/back-wizard.svg"
  42512. }
  42513. },
  42514. frontNsfw: {
  42515. height: math.unit(6, "feet"),
  42516. weight: math.unit(200, "lb"),
  42517. name: "Front (NSFW)",
  42518. image: {
  42519. source: "./media/characters/blizzard/front-nsfw.svg",
  42520. extra: 1136/990,
  42521. bottom: 136/1272
  42522. }
  42523. },
  42524. backNsfw: {
  42525. height: math.unit(6, "feet"),
  42526. weight: math.unit(200, "lb"),
  42527. name: "Back (NSFW)",
  42528. image: {
  42529. source: "./media/characters/blizzard/back-nsfw.svg",
  42530. extra: 1175/1034,
  42531. bottom: 97/1272
  42532. }
  42533. },
  42534. sittingNsfw: {
  42535. height: math.unit(3.725, "feet"),
  42536. weight: math.unit(200, "lb"),
  42537. name: "Sitting (NSFW)",
  42538. image: {
  42539. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42540. extra: 581/485,
  42541. bottom: 90/671
  42542. }
  42543. },
  42544. wizardFrontNsfw: {
  42545. height: math.unit(7.9, "feet"),
  42546. weight: math.unit(200, "lb"),
  42547. name: "Wizard (Front, NSFW)",
  42548. image: {
  42549. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42550. }
  42551. },
  42552. },
  42553. [
  42554. {
  42555. name: "Normal",
  42556. height: math.unit(6, "feet"),
  42557. default: true
  42558. },
  42559. ]
  42560. ))
  42561. characterMakers.push(() => makeCharacter(
  42562. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42563. {
  42564. front: {
  42565. height: math.unit(5 + 2/12, "feet"),
  42566. name: "Front",
  42567. image: {
  42568. source: "./media/characters/lumi/front.svg",
  42569. extra: 1328/1268,
  42570. bottom: 103/1431
  42571. }
  42572. },
  42573. back: {
  42574. height: math.unit(5 + 2/12, "feet"),
  42575. name: "Back",
  42576. image: {
  42577. source: "./media/characters/lumi/back.svg",
  42578. extra: 1381/1327,
  42579. bottom: 43/1424
  42580. }
  42581. },
  42582. },
  42583. [
  42584. {
  42585. name: "Normal",
  42586. height: math.unit(5 + 2/12, "feet"),
  42587. default: true
  42588. },
  42589. ]
  42590. ))
  42591. characterMakers.push(() => makeCharacter(
  42592. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42593. {
  42594. front: {
  42595. height: math.unit(5 + 9/12, "feet"),
  42596. name: "Front",
  42597. image: {
  42598. source: "./media/characters/aliya-cotton/front.svg",
  42599. extra: 577/564,
  42600. bottom: 29/606
  42601. }
  42602. },
  42603. },
  42604. [
  42605. {
  42606. name: "Normal",
  42607. height: math.unit(5 + 9/12, "feet"),
  42608. default: true
  42609. },
  42610. ]
  42611. ))
  42612. characterMakers.push(() => makeCharacter(
  42613. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42614. {
  42615. front: {
  42616. height: math.unit(2.7, "meters"),
  42617. weight: math.unit(25000, "lb"),
  42618. name: "Front",
  42619. image: {
  42620. source: "./media/characters/noah-luxray/front.svg",
  42621. extra: 1644/825,
  42622. bottom: 339/1983
  42623. }
  42624. },
  42625. side: {
  42626. height: math.unit(2.97, "meters"),
  42627. weight: math.unit(25000, "lb"),
  42628. name: "Side",
  42629. image: {
  42630. source: "./media/characters/noah-luxray/side.svg",
  42631. extra: 1319/650,
  42632. bottom: 163/1482
  42633. }
  42634. },
  42635. dick: {
  42636. height: math.unit(7.4, "feet"),
  42637. weight: math.unit(2500, "lb"),
  42638. name: "Dick",
  42639. image: {
  42640. source: "./media/characters/noah-luxray/dick.svg"
  42641. }
  42642. },
  42643. dickAlt: {
  42644. height: math.unit(10.83, "feet"),
  42645. weight: math.unit(2500, "lb"),
  42646. name: "Dick-alt",
  42647. image: {
  42648. source: "./media/characters/noah-luxray/dick-alt.svg"
  42649. }
  42650. },
  42651. },
  42652. [
  42653. {
  42654. name: "BIG",
  42655. height: math.unit(2.7, "meters"),
  42656. default: true
  42657. },
  42658. ]
  42659. ))
  42660. characterMakers.push(() => makeCharacter(
  42661. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42662. {
  42663. standing: {
  42664. height: math.unit(183, "cm"),
  42665. weight: math.unit(68, "kg"),
  42666. name: "Standing",
  42667. image: {
  42668. source: "./media/characters/arion/standing.svg",
  42669. extra: 1869/1807,
  42670. bottom: 93/1962
  42671. }
  42672. },
  42673. reclining: {
  42674. height: math.unit(70.5, "cm"),
  42675. weight: math.unit(68, "lb"),
  42676. name: "Reclining",
  42677. image: {
  42678. source: "./media/characters/arion/reclining.svg",
  42679. extra: 937/870,
  42680. bottom: 63/1000
  42681. }
  42682. },
  42683. },
  42684. [
  42685. {
  42686. name: "Colossus Size, Low",
  42687. height: math.unit(33, "meters"),
  42688. default: true
  42689. },
  42690. {
  42691. name: "Colossus Size, Mid",
  42692. height: math.unit(52, "meters")
  42693. },
  42694. {
  42695. name: "Colossus Size, High",
  42696. height: math.unit(60, "meters")
  42697. },
  42698. {
  42699. name: "Titan Size, Low",
  42700. height: math.unit(91, "meters"),
  42701. },
  42702. {
  42703. name: "Titan Size, Mid",
  42704. height: math.unit(122, "meters")
  42705. },
  42706. {
  42707. name: "Titan Size, High",
  42708. height: math.unit(162, "meters")
  42709. },
  42710. ]
  42711. ))
  42712. characterMakers.push(() => makeCharacter(
  42713. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42714. {
  42715. front: {
  42716. height: math.unit(53, "meters"),
  42717. name: "Front",
  42718. image: {
  42719. source: "./media/characters/stellar-marbey/front.svg",
  42720. extra: 1913/1805,
  42721. bottom: 92/2005
  42722. }
  42723. },
  42724. back: {
  42725. height: math.unit(53, "meters"),
  42726. name: "Back",
  42727. image: {
  42728. source: "./media/characters/stellar-marbey/back.svg",
  42729. extra: 1960/1851,
  42730. bottom: 28/1988
  42731. }
  42732. },
  42733. mouth: {
  42734. height: math.unit(3.5, "meters"),
  42735. name: "Mouth",
  42736. image: {
  42737. source: "./media/characters/stellar-marbey/mouth.svg"
  42738. }
  42739. },
  42740. },
  42741. [
  42742. {
  42743. name: "Macro",
  42744. height: math.unit(53, "meters"),
  42745. default: true
  42746. },
  42747. ]
  42748. ))
  42749. //characters
  42750. function makeCharacters() {
  42751. const results = [];
  42752. characterMakers.forEach(character => {
  42753. results.push(character());
  42754. });
  42755. return results;
  42756. }