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.
 
 
 

51665 lines
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  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. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. if (value.extraAttributes) {
  54. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  55. views[key].attributes[attrKey] = attrValue
  56. })
  57. }
  58. });
  59. return createEntityMaker(info, views, defaultSizes, forms);
  60. }
  61. const speciesData = {
  62. animal: {
  63. name: "Animal"
  64. },
  65. dog: {
  66. name: "Dog",
  67. parents: [
  68. "canine"
  69. ]
  70. },
  71. canine: {
  72. name: "Canine",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. crux: {
  78. name: "Crux",
  79. parents: [
  80. "mammal"
  81. ]
  82. },
  83. mammal: {
  84. name: "Mammal",
  85. parents: [
  86. "animal"
  87. ]
  88. },
  89. "rough-collie": {
  90. name: "Rough Collie",
  91. parents: [
  92. "dog"
  93. ]
  94. },
  95. dragon: {
  96. name: "Dragon",
  97. parents: [
  98. "reptile"
  99. ]
  100. },
  101. reptile: {
  102. name: "Reptile",
  103. parents: [
  104. "animal"
  105. ]
  106. },
  107. woodpecker: {
  108. name: "Woodpecker",
  109. parents: [
  110. "avian"
  111. ]
  112. },
  113. avian: {
  114. name: "Avian",
  115. parents: [
  116. "animal"
  117. ]
  118. },
  119. kitsune: {
  120. name: "Kitsune",
  121. parents: [
  122. "fox"
  123. ]
  124. },
  125. fox: {
  126. name: "Fox",
  127. parents: [
  128. "mammal"
  129. ]
  130. },
  131. pokemon: {
  132. name: "Pokemon",
  133. },
  134. tiger: {
  135. name: "Tiger",
  136. parents: [
  137. "cat"
  138. ]
  139. },
  140. cat: {
  141. name: "Cat",
  142. parents: [
  143. "feliform"
  144. ]
  145. },
  146. "blue-jay": {
  147. name: "Blue Jay",
  148. parents: [
  149. "avian"
  150. ]
  151. },
  152. wolf: {
  153. name: "Wolf",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. coyote: {
  159. name: "Coyote",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. raccoon: {
  165. name: "Raccoon",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. weasel: {
  171. name: "Weasel",
  172. parents: [
  173. "mustelid"
  174. ]
  175. },
  176. "red-panda": {
  177. name: "Red Panda",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. dolphin: {
  183. name: "Dolphin",
  184. parents: [
  185. "mammal"
  186. ]
  187. },
  188. "african-wild-dog": {
  189. name: "African Wild Dog",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "hyena": {
  195. name: "Hyena",
  196. parents: [
  197. "feliform"
  198. ]
  199. },
  200. "carbuncle": {
  201. name: "Carbuncle",
  202. parents: [
  203. "animal"
  204. ]
  205. },
  206. bat: {
  207. name: "Bat",
  208. parents: [
  209. "mammal"
  210. ]
  211. },
  212. "leaf-nosed-bat": {
  213. name: "Leaf-Nosed Bat",
  214. parents: [
  215. "bat"
  216. ]
  217. },
  218. "fish": {
  219. name: "Fish",
  220. parents: [
  221. "animal"
  222. ]
  223. },
  224. "ram": {
  225. name: "Ram",
  226. parents: [
  227. "mammal"
  228. ]
  229. },
  230. "demon": {
  231. name: "Demon",
  232. parents: [
  233. "supernatural"
  234. ]
  235. },
  236. "cougar": {
  237. name: "Cougar",
  238. parents: [
  239. "cat"
  240. ]
  241. },
  242. "goat": {
  243. name: "Goat",
  244. parents: [
  245. "mammal"
  246. ]
  247. },
  248. "lion": {
  249. name: "Lion",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "harpy-eager": {
  255. name: "Harpy Eagle",
  256. parents: [
  257. "avian"
  258. ]
  259. },
  260. "deer": {
  261. name: "Deer",
  262. parents: [
  263. "mammal"
  264. ]
  265. },
  266. "phoenix": {
  267. name: "Phoenix",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "aeromorph": {
  273. name: "Aeromorph",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "machine": {
  279. name: "Machine",
  280. },
  281. "android": {
  282. name: "Android",
  283. parents: [
  284. "machine"
  285. ]
  286. },
  287. "jackal": {
  288. name: "Jackal",
  289. parents: [
  290. "canine"
  291. ]
  292. },
  293. "corvid": {
  294. name: "Corvid",
  295. parents: [
  296. "avian"
  297. ]
  298. },
  299. "pharaoh-hound": {
  300. name: "Pharaoh Hound",
  301. parents: [
  302. "dog"
  303. ]
  304. },
  305. "skunk": {
  306. name: "Skunk",
  307. parents: [
  308. "mammal"
  309. ]
  310. },
  311. "shark": {
  312. name: "Shark",
  313. parents: [
  314. "fish"
  315. ]
  316. },
  317. "black-panther": {
  318. name: "Black Panther",
  319. parents: [
  320. "cat"
  321. ]
  322. },
  323. "umbra": {
  324. name: "Umbra",
  325. parents: [
  326. "animal"
  327. ]
  328. },
  329. "raven": {
  330. name: "Raven",
  331. parents: [
  332. "corvid"
  333. ]
  334. },
  335. "snow-leopard": {
  336. name: "Snow Leopard",
  337. parents: [
  338. "cat"
  339. ]
  340. },
  341. "barbary-lion": {
  342. name: "Barbary Lion",
  343. parents: [
  344. "lion"
  345. ]
  346. },
  347. "dra'gal": {
  348. name: "Dra'Gal",
  349. parents: [
  350. "mammal"
  351. ]
  352. },
  353. "german-shepherd": {
  354. name: "German Shepherd",
  355. parents: [
  356. "dog"
  357. ]
  358. },
  359. "bayleef": {
  360. name: "Bayleef",
  361. parents: [
  362. "pokemon",
  363. "plant",
  364. "animal"
  365. ]
  366. },
  367. "mouse": {
  368. name: "Mouse",
  369. parents: [
  370. "rodent"
  371. ]
  372. },
  373. "rat": {
  374. name: "Rat",
  375. parents: [
  376. "mammal"
  377. ]
  378. },
  379. "hoshiko-beast": {
  380. name: "Hoshiko Beast",
  381. parents: ["animal"]
  382. },
  383. "snow-jugani": {
  384. name: "Snow Jugani",
  385. parents: ["cat"]
  386. },
  387. "patamon": {
  388. name: "Patamon",
  389. parents: ["digimon", "guinea-pig"]
  390. },
  391. "digimon": {
  392. name: "Digimon",
  393. },
  394. "jugani": {
  395. name: "Jugani",
  396. parents: ["cat"]
  397. },
  398. "luxray": {
  399. name: "Luxray",
  400. parents: ["pokemon", "lion"]
  401. },
  402. "mech": {
  403. name: "Mech",
  404. parents: ["machine"]
  405. },
  406. "zoid": {
  407. name: "Zoid",
  408. parents: ["mech"]
  409. },
  410. "monster": {
  411. name: "Monster",
  412. parents: ["animal"]
  413. },
  414. "foo-dog": {
  415. name: "Foo Dog",
  416. parents: ["mammal"]
  417. },
  418. "elephant": {
  419. name: "Elephant",
  420. parents: ["mammal"]
  421. },
  422. "eagle": {
  423. name: "Eagle",
  424. parents: ["avian"]
  425. },
  426. "cow": {
  427. name: "Cow",
  428. parents: ["mammal"]
  429. },
  430. "crocodile": {
  431. name: "Crocodile",
  432. parents: ["reptile"]
  433. },
  434. "borzoi": {
  435. name: "Borzoi",
  436. parents: ["dog"]
  437. },
  438. "snake": {
  439. name: "Snake",
  440. parents: ["reptile"]
  441. },
  442. "horned-bush-viper": {
  443. name: "Horned Bush Viper",
  444. parents: ["viper"]
  445. },
  446. "cobra": {
  447. name: "Cobra",
  448. parents: ["snake"]
  449. },
  450. "harpy-eagle": {
  451. name: "Harpy Eagle",
  452. parents: ["eagle"]
  453. },
  454. "raptor": {
  455. name: "Raptor",
  456. parents: ["dinosaur"]
  457. },
  458. "dinosaur": {
  459. name: "Dinosaur",
  460. parents: ["reptile"]
  461. },
  462. "veilhound": {
  463. name: "Veilhound",
  464. parents: ["hellhound"]
  465. },
  466. "hellhound": {
  467. name: "Hellhound",
  468. parents: ["canine", "demon"]
  469. },
  470. "insect": {
  471. name: "Insect",
  472. parents: ["animal"]
  473. },
  474. "beetle": {
  475. name: "Beetle",
  476. parents: ["insect"]
  477. },
  478. "moth": {
  479. name: "Moth",
  480. parents: ["insect"]
  481. },
  482. "eastern-dragon": {
  483. name: "Eastern Dragon",
  484. parents: ["dragon"]
  485. },
  486. "jaguar": {
  487. name: "Jaguar",
  488. parents: ["cat"]
  489. },
  490. "horse": {
  491. name: "Horse",
  492. parents: ["mammal"]
  493. },
  494. "sergal": {
  495. name: "Sergal",
  496. parents: ["mammal"]
  497. },
  498. "gryphon": {
  499. name: "Gryphon",
  500. parents: ["lion", "eagle"]
  501. },
  502. "robot": {
  503. name: "Robot",
  504. parents: ["machine"]
  505. },
  506. "medihound": {
  507. name: "Medihound",
  508. parents: ["robot", "dog"]
  509. },
  510. "sylveon": {
  511. name: "Sylveon",
  512. parents: ["pokemon"]
  513. },
  514. "catgirl": {
  515. name: "Catgirl",
  516. parents: ["mammal"]
  517. },
  518. "cowgirl": {
  519. name: "Cowgirl",
  520. parents: ["mammal"]
  521. },
  522. "pony": {
  523. name: "Pony",
  524. parents: ["horse"]
  525. },
  526. "rabbit": {
  527. name: "Rabbit",
  528. parents: ["leporidae"]
  529. },
  530. "fennec-fox": {
  531. name: "Fennec Fox",
  532. parents: ["fox"]
  533. },
  534. "azodian": {
  535. name: "Azodian",
  536. parents: ["mouse"]
  537. },
  538. "shiba-inu": {
  539. name: "Shiba Inu",
  540. parents: ["dog"]
  541. },
  542. "changeling": {
  543. name: "Changeling",
  544. parents: ["insect"]
  545. },
  546. "cheetah": {
  547. name: "Cheetah",
  548. parents: ["cat"]
  549. },
  550. "golden-jackal": {
  551. name: "Golden Jackal",
  552. parents: ["jackal"]
  553. },
  554. "manectric": {
  555. name: "Manectric",
  556. parents: ["pokemon", "wolf"]
  557. },
  558. "rat": {
  559. name: "Rat",
  560. parents: ["rodent"]
  561. },
  562. "rodent": {
  563. name: "Rodent",
  564. parents: ["mammal"]
  565. },
  566. "octocoon": {
  567. name: "Octocoon",
  568. parents: ["raccoon", "octopus"]
  569. },
  570. "octopus": {
  571. name: "Octopus",
  572. parents: ["fish"]
  573. },
  574. "werewolf": {
  575. name: "Werewolf",
  576. parents: ["wolf", "werebeast"]
  577. },
  578. "werebeast": {
  579. name: "Werebeast",
  580. parents: ["monster"]
  581. },
  582. "meerkat": {
  583. name: "Meerkat",
  584. parents: ["mammal"]
  585. },
  586. "human": {
  587. name: "Human",
  588. parents: ["mammal"]
  589. },
  590. "geth": {
  591. name: "Geth",
  592. parents: ["android"]
  593. },
  594. "husky": {
  595. name: "Husky",
  596. parents: ["dog"]
  597. },
  598. "long-eared-bat": {
  599. name: "Long Eared Bat",
  600. parents: ["bat"]
  601. },
  602. "lizard": {
  603. name: "Lizard",
  604. parents: ["reptile"]
  605. },
  606. "salamander": {
  607. name: "Salamander",
  608. parents: ["lizard"]
  609. },
  610. "chameleon": {
  611. name: "Chameleon",
  612. parents: ["lizard"]
  613. },
  614. "gecko": {
  615. name: "Gecko",
  616. parents: ["lizard"]
  617. },
  618. "kobold": {
  619. name: "Kobold",
  620. parents: ["reptile"]
  621. },
  622. "charizard": {
  623. name: "Charizard",
  624. parents: ["pokemon", "dragon"]
  625. },
  626. "lugia": {
  627. name: "Lugia",
  628. parents: ["pokemon", "avian"]
  629. },
  630. "cerberus": {
  631. name: "Cerberus",
  632. parents: ["dog"]
  633. },
  634. "tyrantrum": {
  635. name: "Tyrantrum",
  636. parents: ["pokemon"]
  637. },
  638. "lemur": {
  639. name: "Lemur",
  640. parents: ["mammal"]
  641. },
  642. "kelpie": {
  643. name: "Kelpie",
  644. parents: ["horse", "monster"]
  645. },
  646. "labrador": {
  647. name: "Labrador",
  648. parents: ["dog"]
  649. },
  650. "sylveon": {
  651. name: "Sylveon",
  652. parents: ["eeveelution"]
  653. },
  654. "eeveelution": {
  655. name: "Eeveelution",
  656. parents: ["pokemon", "cat"]
  657. },
  658. "polar-bear": {
  659. name: "Polar Bear",
  660. parents: ["bear"]
  661. },
  662. "bear": {
  663. name: "Bear",
  664. parents: ["mammal"]
  665. },
  666. "absol": {
  667. name: "Absol",
  668. parents: ["pokemon", "cat"]
  669. },
  670. "wolver": {
  671. name: "Wolver",
  672. parents: ["mammal"]
  673. },
  674. "rottweiler": {
  675. name: "Rottweiler",
  676. parents: ["dog"]
  677. },
  678. "zebra": {
  679. name: "Zebra",
  680. parents: ["horse"]
  681. },
  682. "yoshi": {
  683. name: "Yoshi",
  684. parents: ["lizard"]
  685. },
  686. "lynx": {
  687. name: "Lynx",
  688. parents: ["cat"]
  689. },
  690. "unknown": {
  691. name: "Unknown",
  692. parents: []
  693. },
  694. "thylacine": {
  695. name: "Thylacine",
  696. parents: ["mammal"]
  697. },
  698. "gabumon": {
  699. name: "Gabumon",
  700. parents: ["digimon"]
  701. },
  702. "border-collie": {
  703. name: "Border Collie",
  704. parents: ["dog"]
  705. },
  706. "imp": {
  707. name: "Imp",
  708. parents: ["demon"]
  709. },
  710. "kangaroo": {
  711. name: "Kangaroo",
  712. parents: ["marsupial"]
  713. },
  714. "renamon": {
  715. name: "Renamon",
  716. parents: ["digimon", "fox"]
  717. },
  718. "candy-orca-dragon": {
  719. name: "Candy Orca Dragon",
  720. parents: ["fish", "dragon", "candy"]
  721. },
  722. "sabertooth-tiger": {
  723. name: "Sabertooth Tiger",
  724. parents: ["cat"]
  725. },
  726. "espurr": {
  727. name: "Espurr",
  728. parents: ["pokemon", "cat"]
  729. },
  730. "otter": {
  731. name: "Otter",
  732. parents: ["mustelid"]
  733. },
  734. "elemental": {
  735. name: "Elemental",
  736. parents: ["mammal"]
  737. },
  738. "mew": {
  739. name: "Mew",
  740. parents: ["pokemon"]
  741. },
  742. "goodra": {
  743. name: "Goodra",
  744. parents: ["pokemon"]
  745. },
  746. "fairy": {
  747. name: "Fairy",
  748. parents: ["magical"]
  749. },
  750. "typhlosion": {
  751. name: "Typhlosion",
  752. parents: ["pokemon"]
  753. },
  754. "magical": {
  755. name: "Magical",
  756. parents: []
  757. },
  758. "xenomorph": {
  759. name: "Xenomorph",
  760. parents: ["monster", "alien"]
  761. },
  762. "charr": {
  763. name: "Charr",
  764. parents: ["cat"]
  765. },
  766. "siberian-husky": {
  767. name: "Siberian Husky",
  768. parents: ["husky"]
  769. },
  770. "alligator": {
  771. name: "Alligator",
  772. parents: ["reptile"]
  773. },
  774. "bernese-mountain-dog": {
  775. name: "Bernese Mountain Dog",
  776. parents: ["dog"]
  777. },
  778. "reshiram": {
  779. name: "Reshiram",
  780. parents: ["pokemon", "dragon"]
  781. },
  782. "grizzly-bear": {
  783. name: "Grizzly Bear",
  784. parents: ["bear"]
  785. },
  786. "water-monitor": {
  787. name: "Water Monitor",
  788. parents: ["lizard"]
  789. },
  790. "banchofossa": {
  791. name: "Banchofossa",
  792. parents: ["mammal"]
  793. },
  794. "kirin": {
  795. name: "Kirin",
  796. parents: ["monster"]
  797. },
  798. "quilava": {
  799. name: "Quilava",
  800. parents: ["pokemon"]
  801. },
  802. "seviper": {
  803. name: "Seviper",
  804. parents: ["pokemon", "viper"]
  805. },
  806. "flying-fox": {
  807. name: "Flying Fox",
  808. parents: ["bat"]
  809. },
  810. "keynain": {
  811. name: "Keynain",
  812. parents: ["avian"]
  813. },
  814. "lucario": {
  815. name: "Lucario",
  816. parents: ["pokemon", "jackal"]
  817. },
  818. "siamese-cat": {
  819. name: "Siamese Cat",
  820. parents: ["cat"]
  821. },
  822. "spider": {
  823. name: "Spider",
  824. parents: ["insect"]
  825. },
  826. "samurott": {
  827. name: "Samurott",
  828. parents: ["pokemon", "otter"]
  829. },
  830. "megalodon": {
  831. name: "Megalodon",
  832. parents: ["shark"]
  833. },
  834. "unicorn": {
  835. name: "Unicorn",
  836. parents: ["horse"]
  837. },
  838. "greninja": {
  839. name: "Greninja",
  840. parents: ["pokemon", "frog"]
  841. },
  842. "water-dragon": {
  843. name: "Water Dragon",
  844. parents: ["dragon"]
  845. },
  846. "cross-fox": {
  847. name: "Cross Fox",
  848. parents: ["fox"]
  849. },
  850. "synth": {
  851. name: "Synth",
  852. parents: ["machine"]
  853. },
  854. "construct": {
  855. name: "Construct",
  856. parents: []
  857. },
  858. "mexican-wolf": {
  859. name: "Mexican Wolf",
  860. parents: ["wolf"]
  861. },
  862. "leopard": {
  863. name: "Leopard",
  864. parents: ["cat"]
  865. },
  866. "pig": {
  867. name: "Pig",
  868. parents: ["mammal"]
  869. },
  870. "ampharos": {
  871. name: "Ampharos",
  872. parents: ["pokemon", "sheep"]
  873. },
  874. "orca": {
  875. name: "Orca",
  876. parents: ["fish"]
  877. },
  878. "lycanroc": {
  879. name: "Lycanroc",
  880. parents: ["pokemon", "wolf"]
  881. },
  882. "surkanu": {
  883. name: "Surkanu",
  884. parents: ["monster"]
  885. },
  886. "seal": {
  887. name: "Seal",
  888. parents: ["mammal"]
  889. },
  890. "keldeo": {
  891. name: "Keldeo",
  892. parents: ["pokemon"]
  893. },
  894. "great-dane": {
  895. name: "Great Dane",
  896. parents: ["dog"]
  897. },
  898. "black-backed-jackal": {
  899. name: "Black Backed Jackal",
  900. parents: ["jackal"]
  901. },
  902. "sheep": {
  903. name: "Sheep",
  904. parents: ["mammal"]
  905. },
  906. "leopard-seal": {
  907. name: "Leopard Seal",
  908. parents: ["seal"]
  909. },
  910. "zoroark": {
  911. name: "Zoroark",
  912. parents: ["pokemon", "fox"]
  913. },
  914. "maned-wolf": {
  915. name: "Maned Wolf",
  916. parents: ["canine"]
  917. },
  918. "dracha": {
  919. name: "Dracha",
  920. parents: ["dragon"]
  921. },
  922. "wolxi": {
  923. name: "Wolxi",
  924. parents: ["mammal", "alien"]
  925. },
  926. "dratini": {
  927. name: "Dratini",
  928. parents: ["pokemon", "dragon"]
  929. },
  930. "skaven": {
  931. name: "Skaven",
  932. parents: ["rat"]
  933. },
  934. "mongoose": {
  935. name: "Mongoose",
  936. parents: ["mammal"]
  937. },
  938. "lopunny": {
  939. name: "Lopunny",
  940. parents: ["pokemon", "rabbit"]
  941. },
  942. "feraligatr": {
  943. name: "Feraligatr",
  944. parents: ["pokemon", "alligator"]
  945. },
  946. "houndoom": {
  947. name: "Houndoom",
  948. parents: ["pokemon", "dog"]
  949. },
  950. "protogen": {
  951. name: "Protogen",
  952. parents: ["machine"]
  953. },
  954. "saint-bernard": {
  955. name: "Saint Bernard",
  956. parents: ["dog"]
  957. },
  958. "crow": {
  959. name: "Crow",
  960. parents: ["corvid"]
  961. },
  962. "delphox": {
  963. name: "Delphox",
  964. parents: ["pokemon", "fox"]
  965. },
  966. "moose": {
  967. name: "Moose",
  968. parents: ["mammal"]
  969. },
  970. "joraxian": {
  971. name: "Joraxian",
  972. parents: ["monster", "canine", "demon"]
  973. },
  974. "nimbat": {
  975. name: "Nimbat",
  976. parents: ["mammal"]
  977. },
  978. "aardwolf": {
  979. name: "Aardwolf",
  980. parents: ["canine"]
  981. },
  982. "fluudrani": {
  983. name: "Fluudrani",
  984. parents: ["animal"]
  985. },
  986. "arcanine": {
  987. name: "Arcanine",
  988. parents: ["pokemon", "dog"]
  989. },
  990. "inteleon": {
  991. name: "Inteleon",
  992. parents: ["pokemon", "fish"]
  993. },
  994. "ninetales": {
  995. name: "Ninetales",
  996. parents: ["pokemon", "kitsune"]
  997. },
  998. "tigrex": {
  999. name: "Tigrex",
  1000. parents: ["tiger"]
  1001. },
  1002. "zorua": {
  1003. name: "Zorua",
  1004. parents: ["pokemon", "fox"]
  1005. },
  1006. "vulpix": {
  1007. name: "Vulpix",
  1008. parents: ["pokemon", "fox"]
  1009. },
  1010. "barghest": {
  1011. name: "Barghest",
  1012. parents: ["monster"]
  1013. },
  1014. "gray-wolf": {
  1015. name: "Gray Wolf",
  1016. parents: ["wolf"]
  1017. },
  1018. "ruppells-fox": {
  1019. name: "Rüppell's Fox",
  1020. parents: ["fox"]
  1021. },
  1022. "bull-terrier": {
  1023. name: "Bull Terrier",
  1024. parents: ["dog"]
  1025. },
  1026. "european-honey-buzzard": {
  1027. name: "European Honey Buzzard",
  1028. parents: ["avian"]
  1029. },
  1030. "t-rex": {
  1031. name: "Tyrannosaurus Rex",
  1032. parents: ["dinosaur"]
  1033. },
  1034. "mactarian": {
  1035. name: "Mactarian",
  1036. parents: ["shark", "monster"]
  1037. },
  1038. "mewtwo-y": {
  1039. name: "Mewtwo Y",
  1040. parents: ["mewtwo"]
  1041. },
  1042. "mewtwo": {
  1043. name: "Mewtwo",
  1044. parents: ["pokemon"]
  1045. },
  1046. "eevee": {
  1047. name: "Eevee",
  1048. parents: ["eeveelution"]
  1049. },
  1050. "mienshao": {
  1051. name: "Mienshao",
  1052. parents: ["pokemon"]
  1053. },
  1054. "sugar-glider": {
  1055. name: "Sugar Glider",
  1056. parents: ["opossum"]
  1057. },
  1058. "spectral-bat": {
  1059. name: "Spectral Bat",
  1060. parents: ["bat"]
  1061. },
  1062. "scolipede": {
  1063. name: "Scolipede",
  1064. parents: ["pokemon", "insect"]
  1065. },
  1066. "jackalope": {
  1067. name: "Jackalope",
  1068. parents: ["rabbit", "antelope"]
  1069. },
  1070. "caracal": {
  1071. name: "Caracal",
  1072. parents: ["cat"]
  1073. },
  1074. "stoat": {
  1075. name: "Stoat",
  1076. parents: ["mammal"]
  1077. },
  1078. "african-golden-cat": {
  1079. name: "African Golden Cat",
  1080. parents: ["cat"]
  1081. },
  1082. "gigantosaurus": {
  1083. name: "Gigantosaurus",
  1084. parents: ["dinosaur"]
  1085. },
  1086. "zorgoia": {
  1087. name: "Zorgoia",
  1088. parents: ["mammal"]
  1089. },
  1090. "monitor-lizard": {
  1091. name: "Monitor Lizard",
  1092. parents: ["lizard"]
  1093. },
  1094. "ziralkia": {
  1095. name: "Ziralkia",
  1096. parents: ["mammal"]
  1097. },
  1098. "kiiasi": {
  1099. name: "Kiiasi",
  1100. parents: ["animal"]
  1101. },
  1102. "synx": {
  1103. name: "Synx",
  1104. parents: ["monster"]
  1105. },
  1106. "panther": {
  1107. name: "Panther",
  1108. parents: ["cat"]
  1109. },
  1110. "azumarill": {
  1111. name: "Azumarill",
  1112. parents: ["pokemon"]
  1113. },
  1114. "river-snaptail": {
  1115. name: "River Snaptail",
  1116. parents: ["otter", "crocodile"]
  1117. },
  1118. "great-blue-heron": {
  1119. name: "Great Blue Heron",
  1120. parents: ["avian"]
  1121. },
  1122. "smeargle": {
  1123. name: "Smeargle",
  1124. parents: ["pokemon"]
  1125. },
  1126. "vendeilen": {
  1127. name: "Vendeilen",
  1128. parents: ["monster"]
  1129. },
  1130. "ventura": {
  1131. name: "Ventura",
  1132. parents: ["canine"]
  1133. },
  1134. "clouded-leopard": {
  1135. name: "Clouded Leopard",
  1136. parents: ["leopard"]
  1137. },
  1138. "argonian": {
  1139. name: "Argonian",
  1140. parents: ["lizard"]
  1141. },
  1142. "salazzle": {
  1143. name: "Salazzle",
  1144. parents: ["pokemon", "lizard"]
  1145. },
  1146. "je-stoff-drachen": {
  1147. name: "Je-Stoff Drachen",
  1148. parents: ["dragon"]
  1149. },
  1150. "finnish-spitz-dog": {
  1151. name: "Finnish Spitz Dog",
  1152. parents: ["dog"]
  1153. },
  1154. "gray-fox": {
  1155. name: "Gray Fox",
  1156. parents: ["fox"]
  1157. },
  1158. "opossum": {
  1159. name: "Opossum",
  1160. parents: ["mammal"]
  1161. },
  1162. "antelope": {
  1163. name: "Antelope",
  1164. parents: ["mammal"]
  1165. },
  1166. "weavile": {
  1167. name: "Weavile",
  1168. parents: ["pokemon"]
  1169. },
  1170. "pikachu": {
  1171. name: "Pikachu",
  1172. parents: ["pokemon", "mouse"]
  1173. },
  1174. "grovyle": {
  1175. name: "Grovyle",
  1176. parents: ["pokemon", "plant"]
  1177. },
  1178. "sthara": {
  1179. name: "Sthara",
  1180. parents: ["snow-leopard", "reptile"]
  1181. },
  1182. "star-warrior": {
  1183. name: "Star Warrior",
  1184. parents: ["magical"]
  1185. },
  1186. "dragonoid": {
  1187. name: "Dragonoid",
  1188. parents: ["dragon"]
  1189. },
  1190. "suicune": {
  1191. name: "Suicune",
  1192. parents: ["pokemon"]
  1193. },
  1194. "vole": {
  1195. name: "Vole",
  1196. parents: ["mammal"]
  1197. },
  1198. "blaziken": {
  1199. name: "Blaziken",
  1200. parents: ["pokemon", "avian"]
  1201. },
  1202. "buizel": {
  1203. name: "Buizel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "floatzel": {
  1207. name: "Floatzel",
  1208. parents: ["pokemon", "fish"]
  1209. },
  1210. "umok": {
  1211. name: "Umok",
  1212. parents: ["avian"]
  1213. },
  1214. "sea-monster": {
  1215. name: "Sea Monster",
  1216. parents: ["monster", "fish"]
  1217. },
  1218. "egyptian-vulture": {
  1219. name: "Egyptian Vulture",
  1220. parents: ["avian"]
  1221. },
  1222. "doberman": {
  1223. name: "Doberman",
  1224. parents: ["dog"]
  1225. },
  1226. "zangoose": {
  1227. name: "Zangoose",
  1228. parents: ["pokemon", "mongoose"]
  1229. },
  1230. "mongoose": {
  1231. name: "Mongoose",
  1232. parents: ["mammal"]
  1233. },
  1234. "wickerbeast": {
  1235. name: "Wickerbeast",
  1236. parents: ["monster"]
  1237. },
  1238. "zenari": {
  1239. name: "Zenari",
  1240. parents: ["lizard"]
  1241. },
  1242. "plant": {
  1243. name: "Plant",
  1244. parents: []
  1245. },
  1246. "raskatox": {
  1247. name: "Raskatox",
  1248. parents: ["raccoon", "skunk", "cat", "fox"]
  1249. },
  1250. "mikromare": {
  1251. name: "mikromare",
  1252. parents: ["alien"]
  1253. },
  1254. "alien": {
  1255. name: "Alien",
  1256. parents: ["animal"]
  1257. },
  1258. "deity": {
  1259. name: "Deity",
  1260. parents: []
  1261. },
  1262. "skarlan": {
  1263. name: "Skarlan",
  1264. parents: ["slug", "dragon"]
  1265. },
  1266. "slug": {
  1267. name: "Slug",
  1268. parents: ["mollusk"]
  1269. },
  1270. "mollusk": {
  1271. name: "Mollusk",
  1272. parents: ["animal"]
  1273. },
  1274. "chimera": {
  1275. name: "Chimera",
  1276. parents: ["monster"]
  1277. },
  1278. "gestalt": {
  1279. name: "Gestalt",
  1280. parents: ["construct"]
  1281. },
  1282. "mimic": {
  1283. name: "Mimic",
  1284. parents: ["monster"]
  1285. },
  1286. "calico-rat": {
  1287. name: "Calico Rat",
  1288. parents: ["rat"]
  1289. },
  1290. "panda": {
  1291. name: "Panda",
  1292. parents: ["mammal"]
  1293. },
  1294. "oni": {
  1295. name: "Oni",
  1296. parents: ["monster"]
  1297. },
  1298. "pegasus": {
  1299. name: "Pegasus",
  1300. parents: ["horse"]
  1301. },
  1302. "vulpera": {
  1303. name: "Vulpera",
  1304. parents: ["fennec-fox"]
  1305. },
  1306. "ceratosaurus": {
  1307. name: "Ceratosaurus",
  1308. parents: ["dinosaur"]
  1309. },
  1310. "nykur": {
  1311. name: "Nykur",
  1312. parents: ["horse", "monster"]
  1313. },
  1314. "giraffe": {
  1315. name: "Giraffe",
  1316. parents: ["mammal"]
  1317. },
  1318. "tauren": {
  1319. name: "Tauren",
  1320. parents: ["cow"]
  1321. },
  1322. "draconi": {
  1323. name: "Draconi",
  1324. parents: ["alien", "cat", "cyborg"]
  1325. },
  1326. "dire-wolf": {
  1327. name: "Dire Wolf",
  1328. parents: ["wolf"]
  1329. },
  1330. "ferromorph": {
  1331. name: "Ferromorph",
  1332. parents: ["construct"]
  1333. },
  1334. "meowth": {
  1335. name: "Meowth",
  1336. parents: ["cat", "pokemon"]
  1337. },
  1338. "pavodragon": {
  1339. name: "Pavodragon",
  1340. parents: ["dragon"]
  1341. },
  1342. "aaltranae": {
  1343. name: "Aaltranae",
  1344. parents: ["dragon"]
  1345. },
  1346. "cyborg": {
  1347. name: "Cyborg",
  1348. parents: ["machine"]
  1349. },
  1350. "draptor": {
  1351. name: "Draptor",
  1352. parents: ["dragon"]
  1353. },
  1354. "candy": {
  1355. name: "Candy",
  1356. parents: []
  1357. },
  1358. "drenath": {
  1359. name: "Drenath",
  1360. parents: ["dragon", "snake", "rabbit"]
  1361. },
  1362. "coyju": {
  1363. name: "Coyju",
  1364. parents: ["coyote", "kaiju"]
  1365. },
  1366. "kaiju": {
  1367. name: "Kaiju",
  1368. parents: ["monster"]
  1369. },
  1370. "nickit": {
  1371. name: "Nickit",
  1372. parents: ["pokemon", "cat"]
  1373. },
  1374. "lopunny": {
  1375. name: "Lopunny",
  1376. parents: ["pokemon", "rabbit"]
  1377. },
  1378. "korean-jindo-dog": {
  1379. name: "Korean Jindo Dog",
  1380. parents: ["dog"]
  1381. },
  1382. "naga": {
  1383. name: "Naga",
  1384. parents: ["snake", "monster"]
  1385. },
  1386. "undead": {
  1387. name: "Undead",
  1388. parents: ["monster"]
  1389. },
  1390. "whale": {
  1391. name: "Whale",
  1392. parents: ["fish"]
  1393. },
  1394. "gelato-bee": {
  1395. name: "Gelato Bee",
  1396. parents: ["bee"]
  1397. },
  1398. "bee": {
  1399. name: "Bee",
  1400. parents: ["insect"]
  1401. },
  1402. "gardevoir": {
  1403. name: "Gardevoir",
  1404. parents: ["pokemon"]
  1405. },
  1406. "ant": {
  1407. name: "Ant",
  1408. parents: ["insect"]
  1409. },
  1410. "frog": {
  1411. name: "Frog",
  1412. parents: ["amphibian"]
  1413. },
  1414. "amphibian": {
  1415. name: "Amphibian",
  1416. parents: ["animal"]
  1417. },
  1418. "pangolin": {
  1419. name: "Pangolin",
  1420. parents: ["mammal"]
  1421. },
  1422. "uragi'viidorn": {
  1423. name: "Uragi'viidorn",
  1424. parents: ["avian", "bear"]
  1425. },
  1426. "gryphdelphais": {
  1427. name: "Gryphdelphais",
  1428. parents: ["dolphin", "gryphon"]
  1429. },
  1430. "plush": {
  1431. name: "Plush",
  1432. parents: ["construct"]
  1433. },
  1434. "draiger": {
  1435. name: "Draiger",
  1436. parents: ["dragon","tiger"]
  1437. },
  1438. "foxsky": {
  1439. name: "Foxsky",
  1440. parents: ["fox", "husky"]
  1441. },
  1442. "umbreon": {
  1443. name: "Umbreon",
  1444. parents: ["eeveelution"]
  1445. },
  1446. "slime-dragon": {
  1447. name: "Slime Dragon",
  1448. parents: ["dragon", "goo"]
  1449. },
  1450. "enderman": {
  1451. name: "Enderman",
  1452. parents: ["monster"]
  1453. },
  1454. "gremlin": {
  1455. name: "Gremlin",
  1456. parents: ["monster"]
  1457. },
  1458. "dragonsune": {
  1459. name: "Dragonsune",
  1460. parents: ["dragon", "kitsune"]
  1461. },
  1462. "ghost": {
  1463. name: "Ghost",
  1464. parents: ["supernatural"]
  1465. },
  1466. "false-vampire-bat": {
  1467. name: "False Vampire Bat",
  1468. parents: ["bat"]
  1469. },
  1470. "succubus": {
  1471. name: "Succubus",
  1472. parents: ["demon"]
  1473. },
  1474. "mia": {
  1475. name: "Mia",
  1476. parents: ["canine"]
  1477. },
  1478. "rainbow": {
  1479. name: "Rainbow",
  1480. parents: ["monster"]
  1481. },
  1482. "solgaleo": {
  1483. name: "Solgaleo",
  1484. parents: ["pokemon"]
  1485. },
  1486. "lucent-nargacuga": {
  1487. name: "Lucent Nargacuga",
  1488. parents: ["monster-hunter"]
  1489. },
  1490. "monster-hunter": {
  1491. name: "Monster Hunter",
  1492. parents: ["monster"]
  1493. },
  1494. "leviathan": {
  1495. "name": "Leviathan",
  1496. "url": "sea-monster"
  1497. },
  1498. "bull": {
  1499. name: "Bull",
  1500. parents: ["mammal"]
  1501. },
  1502. "tanuki": {
  1503. name: "Tanuki",
  1504. parents: ["monster"]
  1505. },
  1506. "chakat": {
  1507. name: "Chakat",
  1508. parents: ["cat"]
  1509. },
  1510. "hydra": {
  1511. name: "Hydra",
  1512. parents: ["monster"]
  1513. },
  1514. "zigzagoon": {
  1515. name: "Zigzagoon",
  1516. parents: ["raccoon", "pokemon"]
  1517. },
  1518. "vulture": {
  1519. name: "Vulture",
  1520. parents: ["avian"]
  1521. },
  1522. "eastern-dragon": {
  1523. name: "Eastern Dragon",
  1524. parents: ["dragon"]
  1525. },
  1526. "gryffon": {
  1527. name: "Gryffon",
  1528. parents: ["phoenix", "red-panda"]
  1529. },
  1530. "amtsvane": {
  1531. name: "Amtsvane",
  1532. parents: ["reptile"]
  1533. },
  1534. "kigavi": {
  1535. name: "Kigavi",
  1536. parents: ["avian"]
  1537. },
  1538. "turian": {
  1539. name: "Turian",
  1540. parents: ["avian"]
  1541. },
  1542. "zeraora": {
  1543. name: "Zeraora",
  1544. parents: ["pokemon", "cat"]
  1545. },
  1546. "sandshrew": {
  1547. name: "Sandshrew",
  1548. parents: ["pokemon", "pangolin"]
  1549. },
  1550. "valais-blacknose-sheep": {
  1551. name: "Valais Blacknose Sheep",
  1552. parents: ["sheep"]
  1553. },
  1554. "novaleit": {
  1555. name: "Novaleit",
  1556. parents: ["mammal"]
  1557. },
  1558. "dunnoh": {
  1559. name: "Dunnoh",
  1560. parents: ["mammal"]
  1561. },
  1562. "lunaral-dragon": {
  1563. name: "Lunaral Dragon",
  1564. parents: ["dragon"]
  1565. },
  1566. "arctic-wolf": {
  1567. name: "Arctic Wolf",
  1568. parents: ["wolf"]
  1569. },
  1570. "donkey": {
  1571. name: "Donkey",
  1572. parents: ["horse"]
  1573. },
  1574. "chinchilla": {
  1575. name: "Chinchilla",
  1576. parents: ["rodent"]
  1577. },
  1578. "felkin": {
  1579. name: "Felkin",
  1580. parents: ["dragon"]
  1581. },
  1582. "tykeriel": {
  1583. name: "Tykeriel",
  1584. parents: ["avian"]
  1585. },
  1586. "folf": {
  1587. name: "Folf",
  1588. parents: ["fox", "wolf"]
  1589. },
  1590. "pooltoy": {
  1591. name: "Pooltoy",
  1592. parents: ["construct"]
  1593. },
  1594. "demi": {
  1595. name: "Demi",
  1596. parents: ["human"]
  1597. },
  1598. "stegosaurus": {
  1599. name: "Stegosaurus",
  1600. parents: ["dinosaur"]
  1601. },
  1602. "computer-virus": {
  1603. name: "Computer Virus",
  1604. parents: ["program"]
  1605. },
  1606. "program": {
  1607. name: "Program",
  1608. parents: ["construct"]
  1609. },
  1610. "space-springhare": {
  1611. name: "Space Springhare",
  1612. parents: ["hare"]
  1613. },
  1614. "river-drake": {
  1615. name: "River Drake",
  1616. parents: ["dragon"]
  1617. },
  1618. "djinn": {
  1619. "name": "Djinn",
  1620. "url": "supernatural"
  1621. },
  1622. "supernatural": {
  1623. name: "Supernatural",
  1624. parents: ["monster"]
  1625. },
  1626. "grasshopper-mouse": {
  1627. name: "Grasshopper Mouse",
  1628. parents: ["mouse"]
  1629. },
  1630. "somali-cat": {
  1631. name: "Somali Cat",
  1632. parents: ["cat"]
  1633. },
  1634. "minccino": {
  1635. name: "Minccino",
  1636. parents: ["pokemon", "chinchilla"]
  1637. },
  1638. "pine-marten": {
  1639. name: "Pine Marten",
  1640. parents: ["marten"]
  1641. },
  1642. "marten": {
  1643. name: "Marten",
  1644. parents: ["mustelid"]
  1645. },
  1646. "mustelid": {
  1647. name: "Mustelid",
  1648. parents: ["mammal"]
  1649. },
  1650. "caribou": {
  1651. name: "Caribou",
  1652. parents: ["deer"]
  1653. },
  1654. "gnoll": {
  1655. name: "Gnoll",
  1656. parents: ["hyena", "monster"]
  1657. },
  1658. "peacekeeper": {
  1659. name: "Peacekeeper",
  1660. parents: ["human"]
  1661. },
  1662. "river-otter": {
  1663. name: "River Otter",
  1664. parents: ["otter"]
  1665. },
  1666. "dhole": {
  1667. name: "Dhole",
  1668. parents: ["canine"]
  1669. },
  1670. "springbok": {
  1671. name: "Springbok",
  1672. parents: ["antelope"]
  1673. },
  1674. "marsupial": {
  1675. name: "Marsupial",
  1676. parents: ["mammal"]
  1677. },
  1678. "townsend-big-eared-bat": {
  1679. name: "Townsend Big-eared Bat",
  1680. parents: ["bat"]
  1681. },
  1682. "squirrel": {
  1683. name: "Squirrel",
  1684. parents: ["rodent"]
  1685. },
  1686. "magpie": {
  1687. name: "Magpie",
  1688. parents: ["corvid"]
  1689. },
  1690. "civet": {
  1691. name: "Civet",
  1692. parents: ["feliform"]
  1693. },
  1694. "feliform": {
  1695. name: "Feliform",
  1696. parents: ["mammal"]
  1697. },
  1698. "tiefling": {
  1699. name: "Tiefling",
  1700. parents: ["devil"]
  1701. },
  1702. "devil": {
  1703. name: "Devil",
  1704. parents: ["supernatural"]
  1705. },
  1706. "sika-deer": {
  1707. name: "Sika Deer",
  1708. parents: ["deer"]
  1709. },
  1710. "vaporeon": {
  1711. name: "Vaporeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "leafeon": {
  1715. name: "Leafeon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "jolteon": {
  1719. name: "Jolteon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "spireborn": {
  1723. name: "Spireborn",
  1724. parents: ["zorgoia"]
  1725. },
  1726. "vampire": {
  1727. name: "Vampire",
  1728. parents: ["monster"]
  1729. },
  1730. "extraplanar": {
  1731. name: "Extraplanar",
  1732. parents: []
  1733. },
  1734. "goo": {
  1735. name: "Goo",
  1736. parents: []
  1737. },
  1738. "skink": {
  1739. name: "Skink",
  1740. parents: ["lizard"]
  1741. },
  1742. "bat-eared-fox": {
  1743. name: "Bat-eared Fox",
  1744. parents: ["fox"]
  1745. },
  1746. "belted-kingfisher": {
  1747. name: "Belted Kingfisher",
  1748. parents: ["avian"]
  1749. },
  1750. "omnifalcon": {
  1751. name: "Omnifalcon",
  1752. parents: ["gryphon", "falcon", "harpy-eagle"]
  1753. },
  1754. "falcon": {
  1755. name: "Falcon",
  1756. parents: ["avian"]
  1757. },
  1758. "avali": {
  1759. name: "Avali",
  1760. parents: ["avian", "alien"]
  1761. },
  1762. "arctic-fox": {
  1763. name: "Arctic Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "snow-tiger": {
  1767. name: "Snow Tiger",
  1768. parents: ["tiger"]
  1769. },
  1770. "marble-fox": {
  1771. name: "Marble Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "king-wickerbeast": {
  1775. name: "King Wickerbeast",
  1776. parents: ["wickerbeast"]
  1777. },
  1778. "wickerbeast": {
  1779. name: "Wickerbeast",
  1780. parents: ["mammal"]
  1781. },
  1782. "european-polecat": {
  1783. name: "European Polecat",
  1784. parents: ["mustelid"]
  1785. },
  1786. "teshari": {
  1787. name: "Teshari",
  1788. parents: ["avian", "raptor"]
  1789. },
  1790. "alicorn": {
  1791. name: "Alicorn",
  1792. parents: ["horse"]
  1793. },
  1794. "atlas-moth": {
  1795. name: "Atlas Moth",
  1796. parents: ["moth"]
  1797. },
  1798. "owlbear": {
  1799. name: "Owlbear",
  1800. parents: ["owl", "bear", "monster"]
  1801. },
  1802. "owl": {
  1803. name: "Owl",
  1804. parents: ["avian"]
  1805. },
  1806. "silvertongue": {
  1807. name: "Silvertongue",
  1808. parents: ["reptile"]
  1809. },
  1810. "ahuizotl": {
  1811. name: "Ahuizotl",
  1812. parents: ["monster"]
  1813. },
  1814. "ender-dragon": {
  1815. name: "Ender Dragon",
  1816. parents: ["dragon"]
  1817. },
  1818. "bruhathkayosaurus": {
  1819. name: "Bruhathkayosaurus",
  1820. parents: ["sauropod"]
  1821. },
  1822. "sauropod": {
  1823. name: "Sauropod",
  1824. parents: ["dinosaur"]
  1825. },
  1826. "black-sable-antelope": {
  1827. name: "Black Sable Antelope",
  1828. parents: ["antelope"]
  1829. },
  1830. "slime": {
  1831. name: "Slime",
  1832. parents: ["goo"]
  1833. },
  1834. "utahraptor": {
  1835. name: "Utahraptor",
  1836. parents: ["raptor"]
  1837. },
  1838. "indian-giant-squirrel": {
  1839. name: "Indian Giant Squirrel",
  1840. parents: ["squirrel"]
  1841. },
  1842. "golden-retriever": {
  1843. name: "Golden Retriever",
  1844. parents: ["dog"]
  1845. },
  1846. "triceratops": {
  1847. name: "Triceratops",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "drake": {
  1851. name: "Drake",
  1852. parents: ["dragon"]
  1853. },
  1854. "okapi": {
  1855. name: "Okapi",
  1856. parents: ["giraffe"]
  1857. },
  1858. "arctic-hare": {
  1859. name: "Arctic Hare",
  1860. parents: ["hare"]
  1861. },
  1862. "hare": {
  1863. name: "Hare",
  1864. parents: ["leporidae"]
  1865. },
  1866. "leporidae": {
  1867. name: "Leporidae",
  1868. parents: ["mammal"]
  1869. },
  1870. "leopard-gecko": {
  1871. name: "Leopard Gecko",
  1872. parents: ["gecko"]
  1873. },
  1874. "dreamspawn": {
  1875. name: "Dreamspawn",
  1876. parents: ["illusion"]
  1877. },
  1878. "illusion": {
  1879. name: "Illusion",
  1880. parents: []
  1881. },
  1882. "purrloin": {
  1883. name: "Purrloin",
  1884. parents: ["cat", "pokemon"]
  1885. },
  1886. "noivern": {
  1887. name: "Noivern",
  1888. parents: ["bat", "dragon", "pokemon"]
  1889. },
  1890. "hedgehog": {
  1891. name: "Hedgehog",
  1892. parents: ["mammal"]
  1893. },
  1894. "liger": {
  1895. name: "Liger",
  1896. parents: ["lion", "tiger", "hybrid"]
  1897. },
  1898. "hybrid": {
  1899. name: "Hybrid",
  1900. parents: []
  1901. },
  1902. "drider": {
  1903. name: "Drider",
  1904. parents: ["spider"]
  1905. },
  1906. "sabresune": {
  1907. name: "Sabresune",
  1908. parents: ["kitsune", "sabertooth-tiger"]
  1909. },
  1910. "ditto": {
  1911. name: "Ditto",
  1912. parents: ["pokemon", "goo"]
  1913. },
  1914. "amogus": {
  1915. name: "Amogus",
  1916. parents: ["deity"]
  1917. },
  1918. "ferret": {
  1919. name: "Ferret",
  1920. parents: ["mustelid"]
  1921. },
  1922. "guinea-pig": {
  1923. name: "Guinea Pig",
  1924. parents: ["rodent"]
  1925. },
  1926. "viper": {
  1927. name: "Viper",
  1928. parents: ["snake"]
  1929. },
  1930. "cinderace": {
  1931. name: "Cinderace",
  1932. parents: ["pokemon", "rabbit"]
  1933. },
  1934. "caudin": {
  1935. name: "Caudin",
  1936. parents: ["dragon"]
  1937. },
  1938. "red-winged-blackbird": {
  1939. name: "Red-Winged Blackbird",
  1940. parents: ["avian"]
  1941. },
  1942. "hooded-wheater": {
  1943. name: "Hooded Wheater",
  1944. parents: ["passerine"]
  1945. },
  1946. "passerine": {
  1947. name: "Passerine",
  1948. parents: ["avian"]
  1949. },
  1950. "gieeg": {
  1951. name: "Gieeg",
  1952. parents: ["alien"]
  1953. },
  1954. "ringtail": {
  1955. name: "Ringtail",
  1956. parents: ["raccoon"]
  1957. },
  1958. "hisuian-zoroark": {
  1959. name: "Hisuian Zoroark",
  1960. parents: ["zoroark", "hisuian"]
  1961. },
  1962. "hisuian": {
  1963. name: "Hisuian",
  1964. parents: ["regional-pokemon"]
  1965. },
  1966. "regional-pokemon": {
  1967. name: "Regional Pokemon",
  1968. parents: ["pokemon"]
  1969. },
  1970. "cybeast": {
  1971. name: "Cybeast",
  1972. parents: ["computer-virus"]
  1973. },
  1974. "javira-dragon": {
  1975. name: "Javira Dragon",
  1976. parents: ["dragon"]
  1977. },
  1978. "koopew": {
  1979. name: "Koopew",
  1980. parents: ["dragon", "alien"]
  1981. },
  1982. }
  1983. //species
  1984. function getSpeciesInfo(speciesList) {
  1985. let result = new Set();
  1986. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1987. result.add(entry)
  1988. });
  1989. return Array.from(result);
  1990. };
  1991. function getSpeciesInfoHelper(species) {
  1992. if (!speciesData[species]) {
  1993. console.warn(species + " doesn't exist");
  1994. return [];
  1995. }
  1996. if (speciesData[species].parents) {
  1997. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1998. } else {
  1999. return [species];
  2000. }
  2001. }
  2002. characterMakers.push(() => makeCharacter(
  2003. {
  2004. name: "Fen",
  2005. species: ["crux"],
  2006. description: {
  2007. title: "Bio",
  2008. text: "Very furry. Sheds on everything."
  2009. },
  2010. tags: [
  2011. "anthro",
  2012. "goo"
  2013. ]
  2014. },
  2015. {
  2016. front: {
  2017. height: math.unit(12, "feet"),
  2018. weight: math.unit(2400, "lb"),
  2019. name: "Front",
  2020. image: {
  2021. source: "./media/characters/fen/front.svg",
  2022. extra: 1804/1562,
  2023. bottom: 205/2009
  2024. }
  2025. },
  2026. diving: {
  2027. height: math.unit(4.9, "meters"),
  2028. weight: math.unit(2400, "lb"),
  2029. name: "Diving",
  2030. image: {
  2031. source: "./media/characters/fen/diving.svg"
  2032. }
  2033. },
  2034. goo: {
  2035. height: math.unit(12, "feet"),
  2036. weight: math.unit(3600, "lb"),
  2037. volume: math.unit(1000, "liters"),
  2038. capacity: math.unit(6, "people"),
  2039. name: "Goo",
  2040. image: {
  2041. source: "./media/characters/fen/goo.svg",
  2042. extra: 1307/1071,
  2043. bottom: 134/1441
  2044. }
  2045. },
  2046. maw: {
  2047. height: math.unit(5.03, "feet"),
  2048. name: "Maw",
  2049. image: {
  2050. source: "./media/characters/fen/maw.svg"
  2051. }
  2052. },
  2053. gooCeiling: {
  2054. height: math.unit(6.6, "feet"),
  2055. weight: math.unit(3000, "lb"),
  2056. volume: math.unit(1000, "liters"),
  2057. capacity: math.unit(6, "people"),
  2058. name: "Goo (Ceiling)",
  2059. image: {
  2060. source: "./media/characters/fen/goo-ceiling.svg"
  2061. }
  2062. },
  2063. back: {
  2064. height: math.unit(12, "feet"),
  2065. weight: math.unit(2400, "lb"),
  2066. name: "Back",
  2067. image: {
  2068. source: "./media/characters/fen/back.svg",
  2069. },
  2070. info: {
  2071. description: {
  2072. mode: "append",
  2073. text: "\n\nHe is not currently looking at you."
  2074. }
  2075. }
  2076. },
  2077. full: {
  2078. height: math.unit(1.85, "meter"),
  2079. weight: math.unit(3200, "lb"),
  2080. name: "Full",
  2081. image: {
  2082. source: "./media/characters/fen/full.svg",
  2083. extra: 1133/859,
  2084. bottom: 145/1278
  2085. },
  2086. info: {
  2087. description: {
  2088. mode: "append",
  2089. text: "\n\nMunch."
  2090. }
  2091. }
  2092. },
  2093. gooLounging: {
  2094. height: math.unit(4.53, "feet"),
  2095. weight: math.unit(3000, "lb"),
  2096. capacity: math.unit(6, "people"),
  2097. name: "Goo (Lounging)",
  2098. image: {
  2099. source: "./media/characters/fen/goo-lounging.svg",
  2100. bottom: 116 / 613
  2101. }
  2102. },
  2103. lounging: {
  2104. height: math.unit(10.52, "feet"),
  2105. weight: math.unit(2400, "lb"),
  2106. name: "Lounging",
  2107. image: {
  2108. source: "./media/characters/fen/lounging.svg"
  2109. }
  2110. },
  2111. },
  2112. [
  2113. {
  2114. name: "Small",
  2115. height: math.unit(2.2428, "meter")
  2116. },
  2117. {
  2118. name: "Normal",
  2119. height: math.unit(12, "feet"),
  2120. default: true,
  2121. },
  2122. {
  2123. name: "Big",
  2124. height: math.unit(20, "feet")
  2125. },
  2126. {
  2127. name: "Minimacro",
  2128. height: math.unit(40, "feet"),
  2129. info: {
  2130. description: {
  2131. mode: "append",
  2132. text: "\n\nTOO DAMN BIG"
  2133. }
  2134. }
  2135. },
  2136. {
  2137. name: "Macro",
  2138. height: math.unit(100, "feet"),
  2139. info: {
  2140. description: {
  2141. mode: "append",
  2142. text: "\n\nTOO DAMN BIG"
  2143. }
  2144. }
  2145. },
  2146. {
  2147. name: "Megamacro",
  2148. height: math.unit(2, "miles")
  2149. },
  2150. {
  2151. name: "Gigamacro",
  2152. height: math.unit(10, "earths")
  2153. },
  2154. ]
  2155. ))
  2156. characterMakers.push(() => makeCharacter(
  2157. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2158. {
  2159. front: {
  2160. height: math.unit(183, "cm"),
  2161. weight: math.unit(80, "kg"),
  2162. name: "Front",
  2163. image: {
  2164. source: "./media/characters/sofia-fluttertail/front.svg",
  2165. bottom: 0.01,
  2166. extra: 2154 / 2081
  2167. }
  2168. },
  2169. frontAlt: {
  2170. height: math.unit(183, "cm"),
  2171. weight: math.unit(80, "kg"),
  2172. name: "Front (alt)",
  2173. image: {
  2174. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2175. }
  2176. },
  2177. back: {
  2178. height: math.unit(183, "cm"),
  2179. weight: math.unit(80, "kg"),
  2180. name: "Back",
  2181. image: {
  2182. source: "./media/characters/sofia-fluttertail/back.svg"
  2183. }
  2184. },
  2185. kneeling: {
  2186. height: math.unit(125, "cm"),
  2187. weight: math.unit(80, "kg"),
  2188. name: "Kneeling",
  2189. image: {
  2190. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2191. extra: 1033 / 977,
  2192. bottom: 23.7 / 1057
  2193. }
  2194. },
  2195. maw: {
  2196. height: math.unit(183 / 5, "cm"),
  2197. name: "Maw",
  2198. image: {
  2199. source: "./media/characters/sofia-fluttertail/maw.svg"
  2200. }
  2201. },
  2202. mawcloseup: {
  2203. height: math.unit(183 / 5 * 0.41, "cm"),
  2204. name: "Maw (Closeup)",
  2205. image: {
  2206. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2207. }
  2208. },
  2209. paws: {
  2210. height: math.unit(1.17, "feet"),
  2211. name: "Paws",
  2212. image: {
  2213. source: "./media/characters/sofia-fluttertail/paws.svg",
  2214. extra: 851 / 851,
  2215. bottom: 17 / 868
  2216. }
  2217. },
  2218. },
  2219. [
  2220. {
  2221. name: "Normal",
  2222. height: math.unit(1.83, "meter")
  2223. },
  2224. {
  2225. name: "Size Thief",
  2226. height: math.unit(18, "feet")
  2227. },
  2228. {
  2229. name: "50 Foot Collie",
  2230. height: math.unit(50, "feet")
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(96, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Megamerger",
  2239. height: math.unit(650, "feet")
  2240. },
  2241. ]
  2242. ))
  2243. characterMakers.push(() => makeCharacter(
  2244. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2245. {
  2246. front: {
  2247. height: math.unit(7, "feet"),
  2248. weight: math.unit(100, "kg"),
  2249. name: "Front",
  2250. image: {
  2251. source: "./media/characters/march/front.svg",
  2252. extra: 1992/1851,
  2253. bottom: 39/2031
  2254. }
  2255. },
  2256. foot: {
  2257. height: math.unit(0.9, "feet"),
  2258. name: "Foot",
  2259. image: {
  2260. source: "./media/characters/march/foot.svg"
  2261. }
  2262. },
  2263. },
  2264. [
  2265. {
  2266. name: "Normal",
  2267. height: math.unit(7.9, "feet")
  2268. },
  2269. {
  2270. name: "Macro",
  2271. height: math.unit(220, "meters")
  2272. },
  2273. {
  2274. name: "Megamacro",
  2275. height: math.unit(2.98, "km"),
  2276. default: true
  2277. },
  2278. {
  2279. name: "Gigamacro",
  2280. height: math.unit(15963, "km")
  2281. },
  2282. {
  2283. name: "Teramacro",
  2284. height: math.unit(2980000000, "km")
  2285. },
  2286. {
  2287. name: "Examacro",
  2288. height: math.unit(250, "parsecs")
  2289. },
  2290. ]
  2291. ))
  2292. characterMakers.push(() => makeCharacter(
  2293. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2294. {
  2295. front: {
  2296. height: math.unit(6, "feet"),
  2297. weight: math.unit(60, "kg"),
  2298. name: "Front",
  2299. image: {
  2300. source: "./media/characters/noir/front.svg",
  2301. extra: 1,
  2302. bottom: 0.032
  2303. }
  2304. },
  2305. },
  2306. [
  2307. {
  2308. name: "Normal",
  2309. height: math.unit(6.6, "feet")
  2310. },
  2311. {
  2312. name: "Macro",
  2313. height: math.unit(500, "feet")
  2314. },
  2315. {
  2316. name: "Megamacro",
  2317. height: math.unit(2.5, "km"),
  2318. default: true
  2319. },
  2320. {
  2321. name: "Gigamacro",
  2322. height: math.unit(22500, "km")
  2323. },
  2324. {
  2325. name: "Teramacro",
  2326. height: math.unit(2500000000, "km")
  2327. },
  2328. {
  2329. name: "Examacro",
  2330. height: math.unit(200, "parsecs")
  2331. },
  2332. ]
  2333. ))
  2334. characterMakers.push(() => makeCharacter(
  2335. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2336. {
  2337. front: {
  2338. height: math.unit(7, "feet"),
  2339. weight: math.unit(100, "kg"),
  2340. name: "Front",
  2341. image: {
  2342. source: "./media/characters/okuri/front.svg",
  2343. extra: 739/665,
  2344. bottom: 39/778
  2345. }
  2346. },
  2347. back: {
  2348. height: math.unit(7, "feet"),
  2349. weight: math.unit(100, "kg"),
  2350. name: "Back",
  2351. image: {
  2352. source: "./media/characters/okuri/back.svg",
  2353. extra: 734/653,
  2354. bottom: 13/747
  2355. }
  2356. },
  2357. sitting: {
  2358. height: math.unit(2.95, "feet"),
  2359. weight: math.unit(100, "kg"),
  2360. name: "Sitting",
  2361. image: {
  2362. source: "./media/characters/okuri/sitting.svg",
  2363. extra: 370/318,
  2364. bottom: 99/469
  2365. }
  2366. },
  2367. },
  2368. [
  2369. {
  2370. name: "Smallest",
  2371. height: math.unit(5 + 2/12, "feet")
  2372. },
  2373. {
  2374. name: "Smaller",
  2375. height: math.unit(300, "feet")
  2376. },
  2377. {
  2378. name: "Small",
  2379. height: math.unit(1000, "feet")
  2380. },
  2381. {
  2382. name: "Macro",
  2383. height: math.unit(1, "mile")
  2384. },
  2385. {
  2386. name: "Mega Macro (Small)",
  2387. height: math.unit(20, "km")
  2388. },
  2389. {
  2390. name: "Mega Macro (Large)",
  2391. height: math.unit(600, "km")
  2392. },
  2393. {
  2394. name: "Giga Macro",
  2395. height: math.unit(10000, "km")
  2396. },
  2397. {
  2398. name: "Normal",
  2399. height: math.unit(577560, "km"),
  2400. default: true
  2401. },
  2402. {
  2403. name: "Large",
  2404. height: math.unit(4, "galaxies")
  2405. },
  2406. {
  2407. name: "Largest",
  2408. height: math.unit(15, "multiverses")
  2409. },
  2410. ]
  2411. ))
  2412. characterMakers.push(() => makeCharacter(
  2413. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2414. {
  2415. front: {
  2416. height: math.unit(7, "feet"),
  2417. weight: math.unit(100, "kg"),
  2418. name: "Front",
  2419. image: {
  2420. source: "./media/characters/manny/front.svg",
  2421. extra: 1,
  2422. bottom: 0.06
  2423. }
  2424. },
  2425. back: {
  2426. height: math.unit(7, "feet"),
  2427. weight: math.unit(100, "kg"),
  2428. name: "Back",
  2429. image: {
  2430. source: "./media/characters/manny/back.svg",
  2431. extra: 1,
  2432. bottom: 0.014
  2433. }
  2434. },
  2435. },
  2436. [
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(7, "feet"),
  2440. },
  2441. {
  2442. name: "Macro",
  2443. height: math.unit(78, "feet"),
  2444. default: true
  2445. },
  2446. {
  2447. name: "Macro+",
  2448. height: math.unit(300, "meters")
  2449. },
  2450. {
  2451. name: "Macro++",
  2452. height: math.unit(2400, "meters")
  2453. },
  2454. {
  2455. name: "Megamacro",
  2456. height: math.unit(5167, "meters")
  2457. },
  2458. {
  2459. name: "Gigamacro",
  2460. height: math.unit(41769, "miles")
  2461. },
  2462. ]
  2463. ))
  2464. characterMakers.push(() => makeCharacter(
  2465. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2466. {
  2467. front: {
  2468. height: math.unit(7, "feet"),
  2469. weight: math.unit(100, "kg"),
  2470. name: "Front",
  2471. image: {
  2472. source: "./media/characters/adake/front-1.svg"
  2473. }
  2474. },
  2475. frontAlt: {
  2476. height: math.unit(7, "feet"),
  2477. weight: math.unit(100, "kg"),
  2478. name: "Front (Alt)",
  2479. image: {
  2480. source: "./media/characters/adake/front-2.svg",
  2481. extra: 1,
  2482. bottom: 0.01
  2483. }
  2484. },
  2485. back: {
  2486. height: math.unit(7, "feet"),
  2487. weight: math.unit(100, "kg"),
  2488. name: "Back",
  2489. image: {
  2490. source: "./media/characters/adake/back.svg",
  2491. }
  2492. },
  2493. kneel: {
  2494. height: math.unit(5.385, "feet"),
  2495. weight: math.unit(100, "kg"),
  2496. name: "Kneeling",
  2497. image: {
  2498. source: "./media/characters/adake/kneel.svg",
  2499. bottom: 0.052
  2500. }
  2501. },
  2502. },
  2503. [
  2504. {
  2505. name: "Normal",
  2506. height: math.unit(7, "feet"),
  2507. },
  2508. {
  2509. name: "Macro",
  2510. height: math.unit(78, "feet"),
  2511. default: true
  2512. },
  2513. {
  2514. name: "Macro+",
  2515. height: math.unit(300, "meters")
  2516. },
  2517. {
  2518. name: "Macro++",
  2519. height: math.unit(2400, "meters")
  2520. },
  2521. {
  2522. name: "Megamacro",
  2523. height: math.unit(5167, "meters")
  2524. },
  2525. {
  2526. name: "Gigamacro",
  2527. height: math.unit(41769, "miles")
  2528. },
  2529. ]
  2530. ))
  2531. characterMakers.push(() => makeCharacter(
  2532. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2533. {
  2534. front: {
  2535. height: math.unit(1.65, "meters"),
  2536. weight: math.unit(50, "kg"),
  2537. name: "Front",
  2538. image: {
  2539. source: "./media/characters/elijah/front.svg",
  2540. extra: 858 / 830,
  2541. bottom: 95.5 / 953.8559
  2542. }
  2543. },
  2544. back: {
  2545. height: math.unit(1.65, "meters"),
  2546. weight: math.unit(50, "kg"),
  2547. name: "Back",
  2548. image: {
  2549. source: "./media/characters/elijah/back.svg",
  2550. extra: 895 / 850,
  2551. bottom: 5.3 / 897.956
  2552. }
  2553. },
  2554. frontNsfw: {
  2555. height: math.unit(1.65, "meters"),
  2556. weight: math.unit(50, "kg"),
  2557. name: "Front (NSFW)",
  2558. image: {
  2559. source: "./media/characters/elijah/front-nsfw.svg",
  2560. extra: 858 / 830,
  2561. bottom: 95.5 / 953.8559
  2562. }
  2563. },
  2564. backNsfw: {
  2565. height: math.unit(1.65, "meters"),
  2566. weight: math.unit(50, "kg"),
  2567. name: "Back (NSFW)",
  2568. image: {
  2569. source: "./media/characters/elijah/back-nsfw.svg",
  2570. extra: 895 / 850,
  2571. bottom: 5.3 / 897.956
  2572. }
  2573. },
  2574. dick: {
  2575. height: math.unit(1, "feet"),
  2576. name: "Dick",
  2577. image: {
  2578. source: "./media/characters/elijah/dick.svg"
  2579. }
  2580. },
  2581. beakOpen: {
  2582. height: math.unit(1.25, "feet"),
  2583. name: "Beak (Open)",
  2584. image: {
  2585. source: "./media/characters/elijah/beak-open.svg"
  2586. }
  2587. },
  2588. beakShut: {
  2589. height: math.unit(1.25, "feet"),
  2590. name: "Beak (Shut)",
  2591. image: {
  2592. source: "./media/characters/elijah/beak-shut.svg"
  2593. }
  2594. },
  2595. footFlexing: {
  2596. height: math.unit(1.61, "feet"),
  2597. name: "Foot (Flexing)",
  2598. image: {
  2599. source: "./media/characters/elijah/foot-flexing.svg"
  2600. }
  2601. },
  2602. footStepping: {
  2603. height: math.unit(1.44, "feet"),
  2604. name: "Foot (Stepping)",
  2605. image: {
  2606. source: "./media/characters/elijah/foot-stepping.svg"
  2607. }
  2608. },
  2609. plantigradeLeg: {
  2610. height: math.unit(2.34, "feet"),
  2611. name: "Plantigrade Leg",
  2612. image: {
  2613. source: "./media/characters/elijah/plantigrade-leg.svg"
  2614. }
  2615. },
  2616. plantigradeFootLeft: {
  2617. height: math.unit(0.9, "feet"),
  2618. name: "Plantigrade Foot (Left)",
  2619. image: {
  2620. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2621. }
  2622. },
  2623. plantigradeFootRight: {
  2624. height: math.unit(0.9, "feet"),
  2625. name: "Plantigrade Foot (Right)",
  2626. image: {
  2627. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2628. }
  2629. },
  2630. },
  2631. [
  2632. {
  2633. name: "Normal",
  2634. height: math.unit(1.65, "meters")
  2635. },
  2636. {
  2637. name: "Macro",
  2638. height: math.unit(55, "meters"),
  2639. default: true
  2640. },
  2641. {
  2642. name: "Macro+",
  2643. height: math.unit(105, "meters")
  2644. },
  2645. ]
  2646. ))
  2647. characterMakers.push(() => makeCharacter(
  2648. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2649. {
  2650. front: {
  2651. height: math.unit(7 + 2/12, "feet"),
  2652. weight: math.unit(320, "kg"),
  2653. name: "Front",
  2654. image: {
  2655. source: "./media/characters/rai/front.svg",
  2656. extra: 1802/1696,
  2657. bottom: 68/1870
  2658. }
  2659. },
  2660. frontDressed: {
  2661. height: math.unit(7 + 2/12, "feet"),
  2662. weight: math.unit(320, "kg"),
  2663. name: "Front (Dressed)",
  2664. image: {
  2665. source: "./media/characters/rai/front-dressed.svg",
  2666. extra: 1802/1696,
  2667. bottom: 68/1870
  2668. }
  2669. },
  2670. side: {
  2671. height: math.unit(7 + 2/12, "feet"),
  2672. weight: math.unit(320, "kg"),
  2673. name: "Side",
  2674. image: {
  2675. source: "./media/characters/rai/side.svg",
  2676. extra: 1789/1710,
  2677. bottom: 115/1904
  2678. }
  2679. },
  2680. back: {
  2681. height: math.unit(7 + 2/12, "feet"),
  2682. weight: math.unit(320, "kg"),
  2683. name: "Back",
  2684. image: {
  2685. source: "./media/characters/rai/back.svg",
  2686. extra: 1770/1707,
  2687. bottom: 28/1798
  2688. }
  2689. },
  2690. feral: {
  2691. height: math.unit(9.5, "feet"),
  2692. weight: math.unit(640, "kg"),
  2693. name: "Feral",
  2694. image: {
  2695. source: "./media/characters/rai/feral.svg",
  2696. extra: 945/553,
  2697. bottom: 176/1121
  2698. }
  2699. },
  2700. dragon: {
  2701. height: math.unit(23, "feet"),
  2702. weight: math.unit(50000, "lb"),
  2703. name: "Dragon",
  2704. image: {
  2705. source: "./media/characters/rai/dragon.svg",
  2706. extra: 2498 / 2030,
  2707. bottom: 85.2 / 2584
  2708. }
  2709. },
  2710. maw: {
  2711. height: math.unit(1.69, "feet"),
  2712. name: "Maw",
  2713. image: {
  2714. source: "./media/characters/rai/maw.svg"
  2715. }
  2716. },
  2717. },
  2718. [
  2719. {
  2720. name: "Normal",
  2721. height: math.unit(7 + 2/12, "feet")
  2722. },
  2723. {
  2724. name: "Big",
  2725. height: math.unit(11, "feet")
  2726. },
  2727. {
  2728. name: "Macro",
  2729. height: math.unit(302, "feet"),
  2730. default: true
  2731. },
  2732. ]
  2733. ))
  2734. characterMakers.push(() => makeCharacter(
  2735. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2736. {
  2737. frontDressed: {
  2738. height: math.unit(216, "feet"),
  2739. weight: math.unit(7000000, "lb"),
  2740. name: "Front (Dressed)",
  2741. image: {
  2742. source: "./media/characters/jazzy/front-dressed.svg",
  2743. extra: 2738 / 2651,
  2744. bottom: 41.8 / 2786
  2745. }
  2746. },
  2747. backDressed: {
  2748. height: math.unit(216, "feet"),
  2749. weight: math.unit(7000000, "lb"),
  2750. name: "Back (Dressed)",
  2751. image: {
  2752. source: "./media/characters/jazzy/back-dressed.svg",
  2753. extra: 2775 / 2673,
  2754. bottom: 36.8 / 2817
  2755. }
  2756. },
  2757. front: {
  2758. height: math.unit(216, "feet"),
  2759. weight: math.unit(7000000, "lb"),
  2760. name: "Front",
  2761. image: {
  2762. source: "./media/characters/jazzy/front.svg",
  2763. extra: 2738 / 2651,
  2764. bottom: 41.8 / 2786
  2765. }
  2766. },
  2767. back: {
  2768. height: math.unit(216, "feet"),
  2769. weight: math.unit(7000000, "lb"),
  2770. name: "Back",
  2771. image: {
  2772. source: "./media/characters/jazzy/back.svg",
  2773. extra: 2775 / 2673,
  2774. bottom: 36.8 / 2817
  2775. }
  2776. },
  2777. maw: {
  2778. height: math.unit(20, "feet"),
  2779. name: "Maw",
  2780. image: {
  2781. source: "./media/characters/jazzy/maw.svg"
  2782. }
  2783. },
  2784. paws: {
  2785. height: math.unit(27.5, "feet"),
  2786. name: "Paws",
  2787. image: {
  2788. source: "./media/characters/jazzy/paws.svg"
  2789. }
  2790. },
  2791. eye: {
  2792. height: math.unit(4.4, "feet"),
  2793. name: "Eye",
  2794. image: {
  2795. source: "./media/characters/jazzy/eye.svg"
  2796. }
  2797. },
  2798. droneOffense: {
  2799. height: math.unit(9.5, "inches"),
  2800. name: "Drone (Offense)",
  2801. image: {
  2802. source: "./media/characters/jazzy/drone-offense.svg"
  2803. }
  2804. },
  2805. droneRecon: {
  2806. height: math.unit(9.5, "inches"),
  2807. name: "Drone (Recon)",
  2808. image: {
  2809. source: "./media/characters/jazzy/drone-recon.svg"
  2810. }
  2811. },
  2812. droneDefense: {
  2813. height: math.unit(9.5, "inches"),
  2814. name: "Drone (Defense)",
  2815. image: {
  2816. source: "./media/characters/jazzy/drone-defense.svg"
  2817. }
  2818. },
  2819. },
  2820. [
  2821. {
  2822. name: "Macro",
  2823. height: math.unit(216, "feet"),
  2824. default: true
  2825. },
  2826. ]
  2827. ))
  2828. characterMakers.push(() => makeCharacter(
  2829. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2830. {
  2831. front: {
  2832. height: math.unit(9 + 6/12, "feet"),
  2833. weight: math.unit(700, "lb"),
  2834. name: "Front",
  2835. image: {
  2836. source: "./media/characters/flamm/front.svg",
  2837. extra: 1751/1632,
  2838. bottom: 46/1797
  2839. }
  2840. },
  2841. buff: {
  2842. height: math.unit(9 + 6/12, "feet"),
  2843. weight: math.unit(950, "lb"),
  2844. name: "Buff",
  2845. image: {
  2846. source: "./media/characters/flamm/buff.svg",
  2847. extra: 3018/2874,
  2848. bottom: 221/3239
  2849. }
  2850. },
  2851. },
  2852. [
  2853. {
  2854. name: "Normal",
  2855. height: math.unit(9.5, "feet")
  2856. },
  2857. {
  2858. name: "Macro",
  2859. height: math.unit(200, "feet"),
  2860. default: true
  2861. },
  2862. ]
  2863. ))
  2864. characterMakers.push(() => makeCharacter(
  2865. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2866. {
  2867. front: {
  2868. height: math.unit(5 + 3/12, "feet"),
  2869. weight: math.unit(60, "kg"),
  2870. name: "Front",
  2871. image: {
  2872. source: "./media/characters/zephiro/front.svg",
  2873. extra: 2309 / 2162,
  2874. bottom: 0.069
  2875. }
  2876. },
  2877. side: {
  2878. height: math.unit(5 + 3/12, "feet"),
  2879. weight: math.unit(60, "kg"),
  2880. name: "Side",
  2881. image: {
  2882. source: "./media/characters/zephiro/side.svg",
  2883. extra: 2403 / 2279,
  2884. bottom: 0.015
  2885. }
  2886. },
  2887. back: {
  2888. height: math.unit(5 + 3/12, "feet"),
  2889. weight: math.unit(60, "kg"),
  2890. name: "Back",
  2891. image: {
  2892. source: "./media/characters/zephiro/back.svg",
  2893. extra: 2373 / 2244,
  2894. bottom: 0.013
  2895. }
  2896. },
  2897. hand: {
  2898. height: math.unit(0.68, "feet"),
  2899. name: "Hand",
  2900. image: {
  2901. source: "./media/characters/zephiro/hand.svg"
  2902. }
  2903. },
  2904. paw: {
  2905. height: math.unit(1, "feet"),
  2906. name: "Paw",
  2907. image: {
  2908. source: "./media/characters/zephiro/paw.svg"
  2909. }
  2910. },
  2911. beans: {
  2912. height: math.unit(0.93, "feet"),
  2913. name: "Beans",
  2914. image: {
  2915. source: "./media/characters/zephiro/beans.svg"
  2916. }
  2917. },
  2918. },
  2919. [
  2920. {
  2921. name: "Micro",
  2922. height: math.unit(3, "inches")
  2923. },
  2924. {
  2925. name: "Normal",
  2926. height: math.unit(5 + 3 / 12, "feet"),
  2927. default: true
  2928. },
  2929. {
  2930. name: "Macro",
  2931. height: math.unit(118, "feet")
  2932. },
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(5, "feet"),
  2940. weight: math.unit(90, "kg"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/fory/front.svg",
  2944. extra: 2862 / 2674,
  2945. bottom: 180 / 3043.8
  2946. }
  2947. },
  2948. back: {
  2949. height: math.unit(5, "feet"),
  2950. weight: math.unit(90, "kg"),
  2951. name: "Back",
  2952. image: {
  2953. source: "./media/characters/fory/back.svg",
  2954. extra: 2962 / 2791,
  2955. bottom: 106 / 3071.8
  2956. }
  2957. },
  2958. foot: {
  2959. height: math.unit(2.14, "feet"),
  2960. name: "Foot",
  2961. image: {
  2962. source: "./media/characters/fory/foot.svg"
  2963. }
  2964. },
  2965. },
  2966. [
  2967. {
  2968. name: "Normal",
  2969. height: math.unit(5, "feet")
  2970. },
  2971. {
  2972. name: "Macro",
  2973. height: math.unit(50, "feet"),
  2974. default: true
  2975. },
  2976. {
  2977. name: "Megamacro",
  2978. height: math.unit(10, "miles")
  2979. },
  2980. {
  2981. name: "Gigamacro",
  2982. height: math.unit(5, "earths")
  2983. },
  2984. ]
  2985. ))
  2986. characterMakers.push(() => makeCharacter(
  2987. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2988. {
  2989. front: {
  2990. height: math.unit(7, "feet"),
  2991. weight: math.unit(90, "kg"),
  2992. name: "Front",
  2993. image: {
  2994. source: "./media/characters/kurrikage/front.svg",
  2995. extra: 1845/1733,
  2996. bottom: 119/1964
  2997. }
  2998. },
  2999. back: {
  3000. height: math.unit(7, "feet"),
  3001. weight: math.unit(90, "kg"),
  3002. name: "Back",
  3003. image: {
  3004. source: "./media/characters/kurrikage/back.svg",
  3005. extra: 1790/1677,
  3006. bottom: 61/1851
  3007. }
  3008. },
  3009. dressed: {
  3010. height: math.unit(7, "feet"),
  3011. weight: math.unit(90, "kg"),
  3012. name: "Dressed",
  3013. image: {
  3014. source: "./media/characters/kurrikage/dressed.svg",
  3015. extra: 1845/1733,
  3016. bottom: 119/1964
  3017. }
  3018. },
  3019. foot: {
  3020. height: math.unit(1.5, "feet"),
  3021. name: "Foot",
  3022. image: {
  3023. source: "./media/characters/kurrikage/foot.svg"
  3024. }
  3025. },
  3026. staff: {
  3027. height: math.unit(6.7, "feet"),
  3028. name: "Staff",
  3029. image: {
  3030. source: "./media/characters/kurrikage/staff.svg"
  3031. }
  3032. },
  3033. peek: {
  3034. height: math.unit(1.05, "feet"),
  3035. name: "Peeking",
  3036. image: {
  3037. source: "./media/characters/kurrikage/peek.svg",
  3038. bottom: 0.08
  3039. }
  3040. },
  3041. },
  3042. [
  3043. {
  3044. name: "Normal",
  3045. height: math.unit(12, "feet"),
  3046. default: true
  3047. },
  3048. {
  3049. name: "Big",
  3050. height: math.unit(20, "feet")
  3051. },
  3052. {
  3053. name: "Macro",
  3054. height: math.unit(500, "feet")
  3055. },
  3056. {
  3057. name: "Megamacro",
  3058. height: math.unit(20, "miles")
  3059. },
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3064. {
  3065. front: {
  3066. height: math.unit(6, "feet"),
  3067. weight: math.unit(75, "kg"),
  3068. name: "Front",
  3069. image: {
  3070. source: "./media/characters/shingo/front.svg",
  3071. extra: 1900/1825,
  3072. bottom: 82/1982
  3073. }
  3074. },
  3075. side: {
  3076. height: math.unit(6, "feet"),
  3077. weight: math.unit(75, "kg"),
  3078. name: "Side",
  3079. image: {
  3080. source: "./media/characters/shingo/side.svg",
  3081. extra: 1930/1865,
  3082. bottom: 16/1946
  3083. }
  3084. },
  3085. back: {
  3086. height: math.unit(6, "feet"),
  3087. weight: math.unit(75, "kg"),
  3088. name: "Back",
  3089. image: {
  3090. source: "./media/characters/shingo/back.svg",
  3091. extra: 1922/1852,
  3092. bottom: 16/1938
  3093. }
  3094. },
  3095. frontDressed: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(150, "lb"),
  3098. name: "Front-dressed",
  3099. image: {
  3100. source: "./media/characters/shingo/front-dressed.svg",
  3101. extra: 1900/1825,
  3102. bottom: 82/1982
  3103. }
  3104. },
  3105. paw: {
  3106. height: math.unit(1.29, "feet"),
  3107. name: "Paw",
  3108. image: {
  3109. source: "./media/characters/shingo/paw.svg"
  3110. }
  3111. },
  3112. hand: {
  3113. height: math.unit(1.07, "feet"),
  3114. name: "Hand",
  3115. image: {
  3116. source: "./media/characters/shingo/hand.svg"
  3117. }
  3118. },
  3119. frontAlt: {
  3120. height: math.unit(6, "feet"),
  3121. weight: math.unit(75, "kg"),
  3122. name: "Front (Alt)",
  3123. image: {
  3124. source: "./media/characters/shingo/front-alt.svg",
  3125. extra: 3511 / 3338,
  3126. bottom: 0.005
  3127. }
  3128. },
  3129. frontAlt2: {
  3130. height: math.unit(6, "feet"),
  3131. weight: math.unit(75, "kg"),
  3132. name: "Front (Alt 2)",
  3133. image: {
  3134. source: "./media/characters/shingo/front-alt-2.svg",
  3135. extra: 706/681,
  3136. bottom: 11/717
  3137. }
  3138. },
  3139. pawAlt: {
  3140. height: math.unit(1, "feet"),
  3141. name: "Paw (Alt)",
  3142. image: {
  3143. source: "./media/characters/shingo/paw-alt.svg"
  3144. }
  3145. },
  3146. },
  3147. [
  3148. {
  3149. name: "Micro",
  3150. height: math.unit(4, "inches")
  3151. },
  3152. {
  3153. name: "Normal",
  3154. height: math.unit(6, "feet"),
  3155. default: true
  3156. },
  3157. {
  3158. name: "Macro",
  3159. height: math.unit(108, "feet")
  3160. },
  3161. {
  3162. name: "Macro+",
  3163. height: math.unit(1500, "feet")
  3164. },
  3165. ]
  3166. ))
  3167. characterMakers.push(() => makeCharacter(
  3168. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3169. {
  3170. side: {
  3171. height: math.unit(6, "feet"),
  3172. weight: math.unit(75, "kg"),
  3173. name: "Side",
  3174. image: {
  3175. source: "./media/characters/aigey/side.svg"
  3176. }
  3177. },
  3178. },
  3179. [
  3180. {
  3181. name: "Macro",
  3182. height: math.unit(200, "feet"),
  3183. default: true
  3184. },
  3185. {
  3186. name: "Megamacro",
  3187. height: math.unit(100, "miles")
  3188. },
  3189. ]
  3190. )
  3191. )
  3192. characterMakers.push(() => makeCharacter(
  3193. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3194. {
  3195. front: {
  3196. height: math.unit(5 + 5 / 12, "feet"),
  3197. weight: math.unit(75, "kg"),
  3198. name: "Front",
  3199. image: {
  3200. source: "./media/characters/natasha/front.svg",
  3201. extra: 859 / 824,
  3202. bottom: 23 / 879.6
  3203. }
  3204. },
  3205. frontNsfw: {
  3206. height: math.unit(5 + 5 / 12, "feet"),
  3207. weight: math.unit(75, "kg"),
  3208. name: "Front (NSFW)",
  3209. image: {
  3210. source: "./media/characters/natasha/front-nsfw.svg",
  3211. extra: 859 / 824,
  3212. bottom: 23 / 879.6
  3213. }
  3214. },
  3215. frontErect: {
  3216. height: math.unit(5 + 5 / 12, "feet"),
  3217. weight: math.unit(75, "kg"),
  3218. name: "Front (Erect)",
  3219. image: {
  3220. source: "./media/characters/natasha/front-erect.svg",
  3221. extra: 859 / 824,
  3222. bottom: 23 / 879.6
  3223. }
  3224. },
  3225. back: {
  3226. height: math.unit(5 + 5 / 12, "feet"),
  3227. weight: math.unit(75, "kg"),
  3228. name: "Back",
  3229. image: {
  3230. source: "./media/characters/natasha/back.svg",
  3231. extra: 887.9 / 852.6,
  3232. bottom: 9.7 / 896.4
  3233. }
  3234. },
  3235. backAlt: {
  3236. height: math.unit(5 + 5 / 12, "feet"),
  3237. weight: math.unit(75, "kg"),
  3238. name: "Back (Alt)",
  3239. image: {
  3240. source: "./media/characters/natasha/back-alt.svg",
  3241. extra: 1236.7 / 1192,
  3242. bottom: 22.3 / 1258.2
  3243. }
  3244. },
  3245. dick: {
  3246. height: math.unit(1.772, "feet"),
  3247. name: "Dick",
  3248. image: {
  3249. source: "./media/characters/natasha/dick.svg"
  3250. }
  3251. },
  3252. paw: {
  3253. height: math.unit(0.250, "meters"),
  3254. name: "Paw",
  3255. image: {
  3256. source: "./media/characters/natasha/paw.svg"
  3257. }
  3258. },
  3259. },
  3260. [
  3261. {
  3262. name: "Normal",
  3263. height: math.unit(5 + 5 / 12, "feet")
  3264. },
  3265. {
  3266. name: "Large",
  3267. height: math.unit(12, "feet")
  3268. },
  3269. {
  3270. name: "Macro",
  3271. height: math.unit(100, "feet"),
  3272. default: true
  3273. },
  3274. {
  3275. name: "Macro+",
  3276. height: math.unit(260, "feet")
  3277. },
  3278. {
  3279. name: "Macro++",
  3280. height: math.unit(1, "mile")
  3281. },
  3282. ]
  3283. ))
  3284. characterMakers.push(() => makeCharacter(
  3285. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3286. {
  3287. front: {
  3288. height: math.unit(6, "feet"),
  3289. weight: math.unit(75, "kg"),
  3290. name: "Front",
  3291. image: {
  3292. source: "./media/characters/malik/front.svg"
  3293. }
  3294. },
  3295. side: {
  3296. height: math.unit(6, "feet"),
  3297. weight: math.unit(75, "kg"),
  3298. name: "Side",
  3299. image: {
  3300. source: "./media/characters/malik/side.svg",
  3301. extra: 1.1539
  3302. }
  3303. },
  3304. back: {
  3305. height: math.unit(6, "feet"),
  3306. weight: math.unit(75, "kg"),
  3307. name: "Back",
  3308. image: {
  3309. source: "./media/characters/malik/back.svg"
  3310. }
  3311. },
  3312. },
  3313. [
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(156, "feet"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Macro+",
  3321. height: math.unit(1188, "feet")
  3322. },
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3327. {
  3328. front: {
  3329. height: math.unit(6, "feet"),
  3330. weight: math.unit(75, "kg"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/sefer/front.svg",
  3334. extra: 848 / 659,
  3335. bottom: 28.3 / 876.442
  3336. }
  3337. },
  3338. back: {
  3339. height: math.unit(6, "feet"),
  3340. weight: math.unit(75, "kg"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/sefer/back.svg",
  3344. extra: 864 / 695,
  3345. bottom: 10 / 871
  3346. }
  3347. },
  3348. frontDressed: {
  3349. height: math.unit(6, "feet"),
  3350. weight: math.unit(75, "kg"),
  3351. name: "Front (Dressed)",
  3352. image: {
  3353. source: "./media/characters/sefer/front-dressed.svg",
  3354. extra: 839 / 653,
  3355. bottom: 37.6 / 878
  3356. }
  3357. },
  3358. },
  3359. [
  3360. {
  3361. name: "Normal",
  3362. height: math.unit(6, "feet"),
  3363. default: true
  3364. },
  3365. ]
  3366. ))
  3367. characterMakers.push(() => makeCharacter(
  3368. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3369. {
  3370. body: {
  3371. height: math.unit(2.2428, "meter"),
  3372. weight: math.unit(124.738, "kg"),
  3373. name: "Body",
  3374. image: {
  3375. extra: 1225 / 1050,
  3376. source: "./media/characters/north/front.svg"
  3377. }
  3378. }
  3379. },
  3380. [
  3381. {
  3382. name: "Micro",
  3383. height: math.unit(4, "inches")
  3384. },
  3385. {
  3386. name: "Macro",
  3387. height: math.unit(63, "meters")
  3388. },
  3389. {
  3390. name: "Megamacro",
  3391. height: math.unit(101, "miles"),
  3392. default: true
  3393. }
  3394. ]
  3395. ))
  3396. characterMakers.push(() => makeCharacter(
  3397. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3398. {
  3399. angled: {
  3400. height: math.unit(4, "meter"),
  3401. weight: math.unit(150, "kg"),
  3402. name: "Angled",
  3403. image: {
  3404. source: "./media/characters/talan/angled-sfw.svg",
  3405. bottom: 29 / 3734
  3406. }
  3407. },
  3408. angledNsfw: {
  3409. height: math.unit(4, "meter"),
  3410. weight: math.unit(150, "kg"),
  3411. name: "Angled (NSFW)",
  3412. image: {
  3413. source: "./media/characters/talan/angled-nsfw.svg",
  3414. bottom: 29 / 3734
  3415. }
  3416. },
  3417. frontNsfw: {
  3418. height: math.unit(4, "meter"),
  3419. weight: math.unit(150, "kg"),
  3420. name: "Front (NSFW)",
  3421. image: {
  3422. source: "./media/characters/talan/front-nsfw.svg",
  3423. bottom: 29 / 3734
  3424. }
  3425. },
  3426. sideNsfw: {
  3427. height: math.unit(4, "meter"),
  3428. weight: math.unit(150, "kg"),
  3429. name: "Side (NSFW)",
  3430. image: {
  3431. source: "./media/characters/talan/side-nsfw.svg",
  3432. bottom: 29 / 3734
  3433. }
  3434. },
  3435. back: {
  3436. height: math.unit(4, "meter"),
  3437. weight: math.unit(150, "kg"),
  3438. name: "Back",
  3439. image: {
  3440. source: "./media/characters/talan/back.svg"
  3441. }
  3442. },
  3443. dickBottom: {
  3444. height: math.unit(0.621, "meter"),
  3445. name: "Dick (Bottom)",
  3446. image: {
  3447. source: "./media/characters/talan/dick-bottom.svg"
  3448. }
  3449. },
  3450. dickTop: {
  3451. height: math.unit(0.621, "meter"),
  3452. name: "Dick (Top)",
  3453. image: {
  3454. source: "./media/characters/talan/dick-top.svg"
  3455. }
  3456. },
  3457. dickSide: {
  3458. height: math.unit(0.305, "meter"),
  3459. name: "Dick (Side)",
  3460. image: {
  3461. source: "./media/characters/talan/dick-side.svg"
  3462. }
  3463. },
  3464. dickFront: {
  3465. height: math.unit(0.305, "meter"),
  3466. name: "Dick (Front)",
  3467. image: {
  3468. source: "./media/characters/talan/dick-front.svg"
  3469. }
  3470. },
  3471. },
  3472. [
  3473. {
  3474. name: "Normal",
  3475. height: math.unit(4, "meters")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(100, "meters")
  3480. },
  3481. {
  3482. name: "Megamacro",
  3483. height: math.unit(2, "miles"),
  3484. default: true
  3485. },
  3486. {
  3487. name: "Gigamacro",
  3488. height: math.unit(5000, "miles")
  3489. },
  3490. {
  3491. name: "Teramacro",
  3492. height: math.unit(100, "parsecs")
  3493. }
  3494. ]
  3495. ))
  3496. characterMakers.push(() => makeCharacter(
  3497. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3498. {
  3499. front: {
  3500. height: math.unit(2, "meter"),
  3501. weight: math.unit(90, "kg"),
  3502. name: "Front",
  3503. image: {
  3504. source: "./media/characters/gael'rathus/front.svg"
  3505. }
  3506. },
  3507. frontAlt: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(90, "kg"),
  3510. name: "Front (alt)",
  3511. image: {
  3512. source: "./media/characters/gael'rathus/front-alt.svg"
  3513. }
  3514. },
  3515. frontAlt2: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(90, "kg"),
  3518. name: "Front (alt 2)",
  3519. image: {
  3520. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(9, "feet"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Large",
  3532. height: math.unit(25, "feet")
  3533. },
  3534. {
  3535. name: "Macro",
  3536. height: math.unit(0.25, "miles")
  3537. },
  3538. {
  3539. name: "Megamacro",
  3540. height: math.unit(10, "miles")
  3541. }
  3542. ]
  3543. ))
  3544. characterMakers.push(() => makeCharacter(
  3545. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3546. {
  3547. side: {
  3548. height: math.unit(2, "meter"),
  3549. weight: math.unit(140, "kg"),
  3550. name: "Side",
  3551. image: {
  3552. source: "./media/characters/sosha/side.svg",
  3553. bottom: 0.042
  3554. }
  3555. },
  3556. },
  3557. [
  3558. {
  3559. name: "Normal",
  3560. height: math.unit(12, "feet"),
  3561. default: true
  3562. }
  3563. ]
  3564. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3567. {
  3568. side: {
  3569. height: math.unit(5 + 5 / 12, "feet"),
  3570. weight: math.unit(170, "kg"),
  3571. name: "Side",
  3572. image: {
  3573. source: "./media/characters/runnola/side.svg",
  3574. extra: 741 / 448,
  3575. bottom: 0.05
  3576. }
  3577. },
  3578. },
  3579. [
  3580. {
  3581. name: "Small",
  3582. height: math.unit(3, "feet")
  3583. },
  3584. {
  3585. name: "Normal",
  3586. height: math.unit(5 + 5 / 12, "feet"),
  3587. default: true
  3588. },
  3589. {
  3590. name: "Big",
  3591. height: math.unit(10, "feet")
  3592. },
  3593. ]
  3594. ))
  3595. characterMakers.push(() => makeCharacter(
  3596. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3597. {
  3598. front: {
  3599. height: math.unit(2, "meter"),
  3600. weight: math.unit(50, "kg"),
  3601. name: "Front",
  3602. image: {
  3603. source: "./media/characters/kurribird/front.svg",
  3604. bottom: 0.015
  3605. }
  3606. },
  3607. frontAlt: {
  3608. height: math.unit(1.5, "meter"),
  3609. weight: math.unit(50, "kg"),
  3610. name: "Front (Alt)",
  3611. image: {
  3612. source: "./media/characters/kurribird/front-alt.svg",
  3613. extra: 1.45
  3614. }
  3615. },
  3616. },
  3617. [
  3618. {
  3619. name: "Normal",
  3620. height: math.unit(7, "feet")
  3621. },
  3622. {
  3623. name: "Big",
  3624. height: math.unit(12, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Macro",
  3629. height: math.unit(1500, "feet")
  3630. },
  3631. {
  3632. name: "Megamacro",
  3633. height: math.unit(2, "miles")
  3634. }
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3639. {
  3640. front: {
  3641. height: math.unit(2, "meter"),
  3642. weight: math.unit(80, "kg"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/elbial/front.svg",
  3646. extra: 1643 / 1556,
  3647. bottom: 60.2 / 1696
  3648. }
  3649. },
  3650. side: {
  3651. height: math.unit(2, "meter"),
  3652. weight: math.unit(80, "kg"),
  3653. name: "Side",
  3654. image: {
  3655. source: "./media/characters/elbial/side.svg",
  3656. extra: 1601/1528,
  3657. bottom: 97/1698
  3658. }
  3659. },
  3660. back: {
  3661. height: math.unit(2, "meter"),
  3662. weight: math.unit(80, "kg"),
  3663. name: "Back",
  3664. image: {
  3665. source: "./media/characters/elbial/back.svg",
  3666. extra: 1653/1569,
  3667. bottom: 20/1673
  3668. }
  3669. },
  3670. frontDressed: {
  3671. height: math.unit(2, "meter"),
  3672. weight: math.unit(80, "kg"),
  3673. name: "Front (Dressed)",
  3674. image: {
  3675. source: "./media/characters/elbial/front-dressed.svg",
  3676. extra: 1638/1569,
  3677. bottom: 70/1708
  3678. }
  3679. },
  3680. genitals: {
  3681. height: math.unit(2 / 3.367, "meter"),
  3682. name: "Genitals",
  3683. image: {
  3684. source: "./media/characters/elbial/genitals.svg"
  3685. }
  3686. },
  3687. },
  3688. [
  3689. {
  3690. name: "Large",
  3691. height: math.unit(100, "feet")
  3692. },
  3693. {
  3694. name: "Macro",
  3695. height: math.unit(500, "feet"),
  3696. default: true
  3697. },
  3698. {
  3699. name: "Megamacro",
  3700. height: math.unit(10, "miles")
  3701. },
  3702. {
  3703. name: "Gigamacro",
  3704. height: math.unit(25000, "miles")
  3705. },
  3706. {
  3707. name: "Full-Size",
  3708. height: math.unit(8000000, "gigaparsecs")
  3709. }
  3710. ]
  3711. ))
  3712. characterMakers.push(() => makeCharacter(
  3713. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3714. {
  3715. front: {
  3716. height: math.unit(2, "meter"),
  3717. weight: math.unit(60, "kg"),
  3718. name: "Front",
  3719. image: {
  3720. source: "./media/characters/noah/front.svg"
  3721. }
  3722. },
  3723. talons: {
  3724. height: math.unit(0.315, "meter"),
  3725. name: "Talons",
  3726. image: {
  3727. source: "./media/characters/noah/talons.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Large",
  3734. height: math.unit(50, "feet")
  3735. },
  3736. {
  3737. name: "Macro",
  3738. height: math.unit(750, "feet"),
  3739. default: true
  3740. },
  3741. {
  3742. name: "Megamacro",
  3743. height: math.unit(50, "miles")
  3744. },
  3745. {
  3746. name: "Gigamacro",
  3747. height: math.unit(100000, "miles")
  3748. },
  3749. {
  3750. name: "Full-Size",
  3751. height: math.unit(3000000000, "miles")
  3752. }
  3753. ]
  3754. ))
  3755. characterMakers.push(() => makeCharacter(
  3756. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3757. {
  3758. front: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(80, "kg"),
  3761. name: "Front",
  3762. image: {
  3763. source: "./media/characters/natalya/front.svg"
  3764. }
  3765. },
  3766. back: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(80, "kg"),
  3769. name: "Back",
  3770. image: {
  3771. source: "./media/characters/natalya/back.svg"
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Normal",
  3778. height: math.unit(150, "feet"),
  3779. default: true
  3780. },
  3781. {
  3782. name: "Megamacro",
  3783. height: math.unit(5, "miles")
  3784. },
  3785. {
  3786. name: "Full-Size",
  3787. height: math.unit(600, "kiloparsecs")
  3788. }
  3789. ]
  3790. ))
  3791. characterMakers.push(() => makeCharacter(
  3792. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3793. {
  3794. front: {
  3795. height: math.unit(2, "meter"),
  3796. weight: math.unit(50, "kg"),
  3797. name: "Front",
  3798. image: {
  3799. source: "./media/characters/erestrebah/front.svg",
  3800. extra: 1262/1162,
  3801. bottom: 96/1358
  3802. }
  3803. },
  3804. back: {
  3805. height: math.unit(2, "meter"),
  3806. weight: math.unit(50, "kg"),
  3807. name: "Back",
  3808. image: {
  3809. source: "./media/characters/erestrebah/back.svg",
  3810. extra: 1257/1139,
  3811. bottom: 13/1270
  3812. }
  3813. },
  3814. wing: {
  3815. height: math.unit(2, "meter"),
  3816. weight: math.unit(50, "kg"),
  3817. name: "Wing",
  3818. image: {
  3819. source: "./media/characters/erestrebah/wing.svg",
  3820. extra: 1262/1162,
  3821. bottom: 96/1358
  3822. }
  3823. },
  3824. mouth: {
  3825. height: math.unit(0.39, "feet"),
  3826. name: "Mouth",
  3827. image: {
  3828. source: "./media/characters/erestrebah/mouth.svg"
  3829. }
  3830. }
  3831. },
  3832. [
  3833. {
  3834. name: "Normal",
  3835. height: math.unit(10, "feet")
  3836. },
  3837. {
  3838. name: "Large",
  3839. height: math.unit(50, "feet"),
  3840. default: true
  3841. },
  3842. {
  3843. name: "Macro",
  3844. height: math.unit(300, "feet")
  3845. },
  3846. {
  3847. name: "Macro+",
  3848. height: math.unit(750, "feet")
  3849. },
  3850. {
  3851. name: "Megamacro",
  3852. height: math.unit(3, "miles")
  3853. }
  3854. ]
  3855. ))
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3858. {
  3859. front: {
  3860. height: math.unit(2, "meter"),
  3861. weight: math.unit(80, "kg"),
  3862. name: "Front",
  3863. image: {
  3864. source: "./media/characters/jennifer/front.svg",
  3865. bottom: 0.11,
  3866. extra: 1.16
  3867. }
  3868. },
  3869. frontAlt: {
  3870. height: math.unit(2, "meter"),
  3871. weight: math.unit(80, "kg"),
  3872. name: "Front (Alt)",
  3873. image: {
  3874. source: "./media/characters/jennifer/front-alt.svg"
  3875. }
  3876. }
  3877. },
  3878. [
  3879. {
  3880. name: "Canon Height",
  3881. height: math.unit(120, "feet"),
  3882. default: true
  3883. },
  3884. {
  3885. name: "Macro+",
  3886. height: math.unit(300, "feet")
  3887. },
  3888. {
  3889. name: "Megamacro",
  3890. height: math.unit(20000, "feet")
  3891. }
  3892. ]
  3893. ))
  3894. characterMakers.push(() => makeCharacter(
  3895. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3896. {
  3897. front: {
  3898. height: math.unit(2, "meter"),
  3899. weight: math.unit(50, "kg"),
  3900. name: "Front",
  3901. image: {
  3902. source: "./media/characters/kalista/front.svg",
  3903. extra: 1314/1145,
  3904. bottom: 101/1415
  3905. }
  3906. },
  3907. back: {
  3908. height: math.unit(2, "meter"),
  3909. weight: math.unit(50, "kg"),
  3910. name: "Back",
  3911. image: {
  3912. source: "./media/characters/kalista/back.svg",
  3913. extra: 1366 / 1156,
  3914. bottom: 33.9 / 1362.78
  3915. }
  3916. }
  3917. },
  3918. [
  3919. {
  3920. name: "Uncomfortably Small",
  3921. height: math.unit(10, "feet")
  3922. },
  3923. {
  3924. name: "Small",
  3925. height: math.unit(30, "feet")
  3926. },
  3927. {
  3928. name: "Macro",
  3929. height: math.unit(100, "feet"),
  3930. default: true
  3931. },
  3932. {
  3933. name: "Macro+",
  3934. height: math.unit(2000, "feet")
  3935. },
  3936. {
  3937. name: "True Form",
  3938. height: math.unit(8924, "miles")
  3939. }
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(2, "meter"),
  3947. weight: math.unit(120, "kg"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/ggv/front.svg"
  3951. }
  3952. },
  3953. side: {
  3954. height: math.unit(2, "meter"),
  3955. weight: math.unit(120, "kg"),
  3956. name: "Side",
  3957. image: {
  3958. source: "./media/characters/ggv/side.svg"
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Extremely Puny",
  3965. height: math.unit(9 + 5 / 12, "feet")
  3966. },
  3967. {
  3968. name: "Horribly Small",
  3969. height: math.unit(47.7, "miles"),
  3970. default: true
  3971. },
  3972. {
  3973. name: "Reasonably Sized",
  3974. height: math.unit(25000, "parsecs")
  3975. },
  3976. {
  3977. name: "Slightly Uncompressed",
  3978. height: math.unit(7.77e31, "parsecs")
  3979. },
  3980. {
  3981. name: "Omniversal",
  3982. height: math.unit(1e300, "meters")
  3983. },
  3984. ]
  3985. ))
  3986. characterMakers.push(() => makeCharacter(
  3987. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3988. {
  3989. front: {
  3990. height: math.unit(2, "meter"),
  3991. weight: math.unit(75, "lb"),
  3992. name: "Front",
  3993. image: {
  3994. source: "./media/characters/napalm/front.svg"
  3995. }
  3996. },
  3997. back: {
  3998. height: math.unit(2, "meter"),
  3999. weight: math.unit(75, "lb"),
  4000. name: "Back",
  4001. image: {
  4002. source: "./media/characters/napalm/back.svg"
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Standard",
  4009. height: math.unit(55, "feet"),
  4010. default: true
  4011. }
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4016. {
  4017. front: {
  4018. height: math.unit(7 + 5 / 6, "feet"),
  4019. weight: math.unit(325, "lb"),
  4020. name: "Front",
  4021. image: {
  4022. source: "./media/characters/asana/front.svg",
  4023. extra: 1133 / 1060,
  4024. bottom: 15.2 / 1148.6
  4025. }
  4026. },
  4027. back: {
  4028. height: math.unit(7 + 5 / 6, "feet"),
  4029. weight: math.unit(325, "lb"),
  4030. name: "Back",
  4031. image: {
  4032. source: "./media/characters/asana/back.svg",
  4033. extra: 1114 / 1043,
  4034. bottom: 5 / 1120
  4035. }
  4036. },
  4037. dressedDark: {
  4038. height: math.unit(7 + 5 / 6, "feet"),
  4039. weight: math.unit(325, "lb"),
  4040. name: "Dressed (Dark)",
  4041. image: {
  4042. source: "./media/characters/asana/dressed-dark.svg",
  4043. extra: 1133 / 1060,
  4044. bottom: 15.2 / 1148.6
  4045. }
  4046. },
  4047. dressedLight: {
  4048. height: math.unit(7 + 5 / 6, "feet"),
  4049. weight: math.unit(325, "lb"),
  4050. name: "Dressed (Light)",
  4051. image: {
  4052. source: "./media/characters/asana/dressed-light.svg",
  4053. extra: 1133 / 1060,
  4054. bottom: 15.2 / 1148.6
  4055. }
  4056. },
  4057. },
  4058. [
  4059. {
  4060. name: "Standard",
  4061. height: math.unit(7 + 5 / 6, "feet"),
  4062. default: true
  4063. },
  4064. {
  4065. name: "Large",
  4066. height: math.unit(10, "meters")
  4067. },
  4068. {
  4069. name: "Macro",
  4070. height: math.unit(2500, "meters")
  4071. },
  4072. {
  4073. name: "Megamacro",
  4074. height: math.unit(5e6, "meters")
  4075. },
  4076. {
  4077. name: "Examacro",
  4078. height: math.unit(5e12, "lightyears")
  4079. },
  4080. {
  4081. name: "Max Size",
  4082. height: math.unit(1e31, "lightyears")
  4083. }
  4084. ]
  4085. ))
  4086. characterMakers.push(() => makeCharacter(
  4087. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4088. {
  4089. front: {
  4090. height: math.unit(2, "meter"),
  4091. weight: math.unit(60, "kg"),
  4092. name: "Front",
  4093. image: {
  4094. source: "./media/characters/ebony/front.svg",
  4095. bottom: 0.03,
  4096. extra: 1045 / 810 + 0.03
  4097. }
  4098. },
  4099. side: {
  4100. height: math.unit(2, "meter"),
  4101. weight: math.unit(60, "kg"),
  4102. name: "Side",
  4103. image: {
  4104. source: "./media/characters/ebony/side.svg",
  4105. bottom: 0.03,
  4106. extra: 1045 / 810 + 0.03
  4107. }
  4108. },
  4109. back: {
  4110. height: math.unit(2, "meter"),
  4111. weight: math.unit(60, "kg"),
  4112. name: "Back",
  4113. image: {
  4114. source: "./media/characters/ebony/back.svg",
  4115. bottom: 0.01,
  4116. extra: 1045 / 810 + 0.01
  4117. }
  4118. },
  4119. },
  4120. [
  4121. // TODO check why I did this lol
  4122. {
  4123. name: "Standard",
  4124. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4125. default: true
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(200, "feet")
  4130. },
  4131. {
  4132. name: "Gigamacro",
  4133. height: math.unit(13000, "km")
  4134. }
  4135. ]
  4136. ))
  4137. characterMakers.push(() => makeCharacter(
  4138. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4139. {
  4140. front: {
  4141. height: math.unit(6, "feet"),
  4142. weight: math.unit(175, "lb"),
  4143. name: "Front",
  4144. image: {
  4145. source: "./media/characters/mountain/front.svg",
  4146. extra: 972 / 955,
  4147. bottom: 64 / 1036.6
  4148. }
  4149. },
  4150. back: {
  4151. height: math.unit(6, "feet"),
  4152. weight: math.unit(175, "lb"),
  4153. name: "Back",
  4154. image: {
  4155. source: "./media/characters/mountain/back.svg",
  4156. extra: 970 / 950,
  4157. bottom: 28.25 / 999
  4158. }
  4159. },
  4160. },
  4161. [
  4162. {
  4163. name: "Large",
  4164. height: math.unit(20, "meters")
  4165. },
  4166. {
  4167. name: "Macro",
  4168. height: math.unit(300, "meters")
  4169. },
  4170. {
  4171. name: "Gigamacro",
  4172. height: math.unit(10000, "km"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Examacro",
  4177. height: math.unit(10e9, "lightyears")
  4178. }
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(8, "feet"),
  4186. weight: math.unit(500, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/rick/front.svg"
  4190. }
  4191. }
  4192. },
  4193. [
  4194. {
  4195. name: "Normal",
  4196. height: math.unit(8, "feet"),
  4197. default: true
  4198. },
  4199. {
  4200. name: "Macro",
  4201. height: math.unit(5, "km")
  4202. }
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4207. {
  4208. front: {
  4209. height: math.unit(8, "feet"),
  4210. weight: math.unit(120, "lb"),
  4211. name: "Front",
  4212. image: {
  4213. source: "./media/characters/ona/front.svg"
  4214. }
  4215. },
  4216. frontAlt: {
  4217. height: math.unit(8, "feet"),
  4218. weight: math.unit(120, "lb"),
  4219. name: "Front (Alt)",
  4220. image: {
  4221. source: "./media/characters/ona/front-alt.svg"
  4222. }
  4223. },
  4224. back: {
  4225. height: math.unit(8, "feet"),
  4226. weight: math.unit(120, "lb"),
  4227. name: "Back",
  4228. image: {
  4229. source: "./media/characters/ona/back.svg"
  4230. }
  4231. },
  4232. foot: {
  4233. height: math.unit(1.1, "feet"),
  4234. name: "Foot",
  4235. image: {
  4236. source: "./media/characters/ona/foot.svg"
  4237. }
  4238. }
  4239. },
  4240. [
  4241. {
  4242. name: "Megamacro",
  4243. height: math.unit(70, "km"),
  4244. default: true
  4245. },
  4246. {
  4247. name: "Gigamacro",
  4248. height: math.unit(681818, "miles")
  4249. },
  4250. {
  4251. name: "Examacro",
  4252. height: math.unit(3800000, "lightyears")
  4253. },
  4254. ]
  4255. ))
  4256. characterMakers.push(() => makeCharacter(
  4257. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4258. {
  4259. front: {
  4260. height: math.unit(12, "feet"),
  4261. weight: math.unit(3000, "lb"),
  4262. name: "Front",
  4263. image: {
  4264. source: "./media/characters/mech/front.svg",
  4265. extra: 2900 / 2770,
  4266. bottom: 110 / 3010
  4267. }
  4268. },
  4269. back: {
  4270. height: math.unit(12, "feet"),
  4271. weight: math.unit(3000, "lb"),
  4272. name: "Back",
  4273. image: {
  4274. source: "./media/characters/mech/back.svg",
  4275. extra: 3011 / 2890,
  4276. bottom: 94 / 3105
  4277. }
  4278. },
  4279. maw: {
  4280. height: math.unit(3.07, "feet"),
  4281. name: "Maw",
  4282. image: {
  4283. source: "./media/characters/mech/maw.svg"
  4284. }
  4285. },
  4286. head: {
  4287. height: math.unit(2.82, "feet"),
  4288. name: "Head",
  4289. image: {
  4290. source: "./media/characters/mech/head.svg"
  4291. }
  4292. },
  4293. dick: {
  4294. height: math.unit(1.43, "feet"),
  4295. name: "Dick",
  4296. image: {
  4297. source: "./media/characters/mech/dick.svg"
  4298. }
  4299. },
  4300. },
  4301. [
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(12, "feet")
  4305. },
  4306. {
  4307. name: "Macro",
  4308. height: math.unit(300, "feet"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Macro+",
  4313. height: math.unit(1500, "feet")
  4314. },
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4319. {
  4320. front: {
  4321. height: math.unit(1.3, "meter"),
  4322. weight: math.unit(30, "kg"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/gregory/front.svg",
  4326. }
  4327. }
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(1.3, "meter"),
  4333. default: true
  4334. },
  4335. {
  4336. name: "Macro",
  4337. height: math.unit(20, "meter")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(2.8, "meter"),
  4346. weight: math.unit(200, "kg"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/elory/front.svg",
  4350. }
  4351. }
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(2.8, "meter"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Macro",
  4361. height: math.unit(38, "meter")
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4367. {
  4368. front: {
  4369. height: math.unit(470, "feet"),
  4370. weight: math.unit(924, "tons"),
  4371. name: "Front",
  4372. image: {
  4373. source: "./media/characters/angelpatamon/front.svg",
  4374. }
  4375. }
  4376. },
  4377. [
  4378. {
  4379. name: "Normal",
  4380. height: math.unit(470, "feet"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Deity Size I",
  4385. height: math.unit(28651.2, "km")
  4386. },
  4387. {
  4388. name: "Deity Size II",
  4389. height: math.unit(171907.2, "km")
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4395. {
  4396. side: {
  4397. height: math.unit(7.2, "meter"),
  4398. weight: math.unit(8.2, "tons"),
  4399. name: "Side",
  4400. image: {
  4401. source: "./media/characters/cryae/side.svg",
  4402. extra: 3500 / 1500
  4403. }
  4404. }
  4405. },
  4406. [
  4407. {
  4408. name: "Normal",
  4409. height: math.unit(7.2, "meter"),
  4410. default: true
  4411. }
  4412. ]
  4413. ))
  4414. characterMakers.push(() => makeCharacter(
  4415. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4416. {
  4417. front: {
  4418. height: math.unit(6, "feet"),
  4419. weight: math.unit(175, "lb"),
  4420. name: "Front",
  4421. image: {
  4422. source: "./media/characters/xera/front.svg",
  4423. extra: 2377 / 1972,
  4424. bottom: 75.5 / 2452
  4425. }
  4426. },
  4427. side: {
  4428. height: math.unit(6, "feet"),
  4429. weight: math.unit(175, "lb"),
  4430. name: "Side",
  4431. image: {
  4432. source: "./media/characters/xera/side.svg",
  4433. extra: 2345 / 2019,
  4434. bottom: 39.7 / 2384
  4435. }
  4436. },
  4437. back: {
  4438. height: math.unit(6, "feet"),
  4439. weight: math.unit(175, "lb"),
  4440. name: "Back",
  4441. image: {
  4442. source: "./media/characters/xera/back.svg",
  4443. extra: 2095 / 1984,
  4444. bottom: 67 / 2166
  4445. }
  4446. },
  4447. },
  4448. [
  4449. {
  4450. name: "Small",
  4451. height: math.unit(10, "feet")
  4452. },
  4453. {
  4454. name: "Macro",
  4455. height: math.unit(500, "meters"),
  4456. default: true
  4457. },
  4458. {
  4459. name: "Macro+",
  4460. height: math.unit(10, "km")
  4461. },
  4462. {
  4463. name: "Gigamacro",
  4464. height: math.unit(25000, "km")
  4465. },
  4466. {
  4467. name: "Teramacro",
  4468. height: math.unit(3e6, "km")
  4469. }
  4470. ]
  4471. ))
  4472. characterMakers.push(() => makeCharacter(
  4473. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4474. {
  4475. front: {
  4476. height: math.unit(6, "feet"),
  4477. weight: math.unit(175, "lb"),
  4478. name: "Front",
  4479. image: {
  4480. source: "./media/characters/nebula/front.svg",
  4481. extra: 2566 / 2362,
  4482. bottom: 81 / 2644
  4483. }
  4484. }
  4485. },
  4486. [
  4487. {
  4488. name: "Small",
  4489. height: math.unit(4.5, "meters")
  4490. },
  4491. {
  4492. name: "Macro",
  4493. height: math.unit(1500, "meters"),
  4494. default: true
  4495. },
  4496. {
  4497. name: "Megamacro",
  4498. height: math.unit(150, "km")
  4499. },
  4500. {
  4501. name: "Gigamacro",
  4502. height: math.unit(27000, "km")
  4503. }
  4504. ]
  4505. ))
  4506. characterMakers.push(() => makeCharacter(
  4507. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4508. {
  4509. front: {
  4510. height: math.unit(6, "feet"),
  4511. weight: math.unit(225, "lb"),
  4512. name: "Front",
  4513. image: {
  4514. source: "./media/characters/abysgar/front.svg",
  4515. extra: 1739/1614,
  4516. bottom: 71/1810
  4517. }
  4518. },
  4519. frontNsfw: {
  4520. height: math.unit(6, "feet"),
  4521. weight: math.unit(225, "lb"),
  4522. name: "Front (NSFW)",
  4523. image: {
  4524. source: "./media/characters/abysgar/front-nsfw.svg",
  4525. extra: 1739/1614,
  4526. bottom: 71/1810
  4527. }
  4528. },
  4529. back: {
  4530. height: math.unit(4.6, "feet"),
  4531. weight: math.unit(225, "lb"),
  4532. name: "Back",
  4533. image: {
  4534. source: "./media/characters/abysgar/back.svg",
  4535. extra: 1384/1327,
  4536. bottom: 0/1384
  4537. }
  4538. },
  4539. head: {
  4540. height: math.unit(1.25, "feet"),
  4541. name: "Head",
  4542. image: {
  4543. source: "./media/characters/abysgar/head.svg",
  4544. extra: 669/569,
  4545. bottom: 0/669
  4546. }
  4547. },
  4548. },
  4549. [
  4550. {
  4551. name: "Small",
  4552. height: math.unit(4.5, "meters")
  4553. },
  4554. {
  4555. name: "Macro",
  4556. height: math.unit(1250, "meters"),
  4557. default: true
  4558. },
  4559. {
  4560. name: "Megamacro",
  4561. height: math.unit(125, "km")
  4562. },
  4563. {
  4564. name: "Gigamacro",
  4565. height: math.unit(26000, "km")
  4566. }
  4567. ]
  4568. ))
  4569. characterMakers.push(() => makeCharacter(
  4570. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4571. {
  4572. front: {
  4573. height: math.unit(6, "feet"),
  4574. weight: math.unit(180, "lb"),
  4575. name: "Front",
  4576. image: {
  4577. source: "./media/characters/yakuz/front.svg"
  4578. }
  4579. }
  4580. },
  4581. [
  4582. {
  4583. name: "Small",
  4584. height: math.unit(5, "meters")
  4585. },
  4586. {
  4587. name: "Macro",
  4588. height: math.unit(1500, "meters"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(200, "km")
  4594. },
  4595. {
  4596. name: "Gigamacro",
  4597. height: math.unit(100000, "km")
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(175, "lb"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/mirova/front.svg",
  4610. extra: 3334 / 3071,
  4611. bottom: 42 / 3375.6
  4612. }
  4613. }
  4614. },
  4615. [
  4616. {
  4617. name: "Small",
  4618. height: math.unit(5, "meters")
  4619. },
  4620. {
  4621. name: "Macro",
  4622. height: math.unit(900, "meters"),
  4623. default: true
  4624. },
  4625. {
  4626. name: "Megamacro",
  4627. height: math.unit(135, "km")
  4628. },
  4629. {
  4630. name: "Gigamacro",
  4631. height: math.unit(20000, "km")
  4632. }
  4633. ]
  4634. ))
  4635. characterMakers.push(() => makeCharacter(
  4636. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4637. {
  4638. side: {
  4639. height: math.unit(28.35, "feet"),
  4640. weight: math.unit(99.75, "tons"),
  4641. name: "Side",
  4642. image: {
  4643. source: "./media/characters/asana-mech/side.svg",
  4644. extra: 923 / 699,
  4645. bottom: 50 / 975
  4646. }
  4647. },
  4648. chaingun: {
  4649. height: math.unit(7, "feet"),
  4650. weight: math.unit(2400, "lb"),
  4651. name: "Chaingun",
  4652. image: {
  4653. source: "./media/characters/asana-mech/chaingun.svg"
  4654. }
  4655. },
  4656. laser: {
  4657. height: math.unit(7.12, "feet"),
  4658. weight: math.unit(2000, "lb"),
  4659. name: "Laser",
  4660. image: {
  4661. source: "./media/characters/asana-mech/laser.svg"
  4662. }
  4663. },
  4664. },
  4665. [
  4666. {
  4667. name: "Normal",
  4668. height: math.unit(28.35, "feet"),
  4669. default: true
  4670. },
  4671. {
  4672. name: "Macro",
  4673. height: math.unit(2500, "feet")
  4674. },
  4675. {
  4676. name: "Megamacro",
  4677. height: math.unit(25, "miles")
  4678. },
  4679. {
  4680. name: "Examacro",
  4681. height: math.unit(6e8, "lightyears")
  4682. },
  4683. ]
  4684. ))
  4685. characterMakers.push(() => makeCharacter(
  4686. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4687. {
  4688. front: {
  4689. height: math.unit(5, "meters"),
  4690. weight: math.unit(1000, "kg"),
  4691. name: "Front",
  4692. image: {
  4693. source: "./media/characters/asche/front.svg",
  4694. extra: 1258 / 1190,
  4695. bottom: 47 / 1305
  4696. }
  4697. },
  4698. frontUnderwear: {
  4699. height: math.unit(5, "meters"),
  4700. weight: math.unit(1000, "kg"),
  4701. name: "Front (Underwear)",
  4702. image: {
  4703. source: "./media/characters/asche/front-underwear.svg",
  4704. extra: 1258 / 1190,
  4705. bottom: 47 / 1305
  4706. }
  4707. },
  4708. frontDressed: {
  4709. height: math.unit(5, "meters"),
  4710. weight: math.unit(1000, "kg"),
  4711. name: "Front (Dressed)",
  4712. image: {
  4713. source: "./media/characters/asche/front-dressed.svg",
  4714. extra: 1258 / 1190,
  4715. bottom: 47 / 1305
  4716. }
  4717. },
  4718. frontArmor: {
  4719. height: math.unit(5, "meters"),
  4720. weight: math.unit(1000, "kg"),
  4721. name: "Front (Armored)",
  4722. image: {
  4723. source: "./media/characters/asche/front-armored.svg",
  4724. extra: 1374 / 1308,
  4725. bottom: 23 / 1397
  4726. }
  4727. },
  4728. mp724: {
  4729. height: math.unit(0.96, "meters"),
  4730. weight: math.unit(38, "kg"),
  4731. name: "H&K MP724",
  4732. image: {
  4733. source: "./media/characters/asche/h&k-mp724.svg"
  4734. }
  4735. },
  4736. side: {
  4737. height: math.unit(5, "meters"),
  4738. weight: math.unit(1000, "kg"),
  4739. name: "Side",
  4740. image: {
  4741. source: "./media/characters/asche/side.svg",
  4742. extra: 1717 / 1609,
  4743. bottom: 0.005
  4744. }
  4745. },
  4746. back: {
  4747. height: math.unit(5, "meters"),
  4748. weight: math.unit(1000, "kg"),
  4749. name: "Back",
  4750. image: {
  4751. source: "./media/characters/asche/back.svg",
  4752. extra: 1570 / 1501
  4753. }
  4754. },
  4755. },
  4756. [
  4757. {
  4758. name: "DEFCON 5",
  4759. height: math.unit(5, "meters")
  4760. },
  4761. {
  4762. name: "DEFCON 4",
  4763. height: math.unit(500, "meters"),
  4764. default: true
  4765. },
  4766. {
  4767. name: "DEFCON 3",
  4768. height: math.unit(5, "km")
  4769. },
  4770. {
  4771. name: "DEFCON 2",
  4772. height: math.unit(500, "km")
  4773. },
  4774. {
  4775. name: "DEFCON 1",
  4776. height: math.unit(500000, "km")
  4777. },
  4778. {
  4779. name: "DEFCON 0",
  4780. height: math.unit(3, "gigaparsecs")
  4781. },
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(2, "meters"),
  4789. weight: math.unit(76, "kg"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/gale/front.svg"
  4793. }
  4794. },
  4795. frontAlt1: {
  4796. height: math.unit(2, "meters"),
  4797. weight: math.unit(76, "kg"),
  4798. name: "Front (Alt 1)",
  4799. image: {
  4800. source: "./media/characters/gale/front-alt-1.svg"
  4801. }
  4802. },
  4803. frontAlt2: {
  4804. height: math.unit(2, "meters"),
  4805. weight: math.unit(76, "kg"),
  4806. name: "Front (Alt 2)",
  4807. image: {
  4808. source: "./media/characters/gale/front-alt-2.svg"
  4809. }
  4810. },
  4811. },
  4812. [
  4813. {
  4814. name: "Normal",
  4815. height: math.unit(7, "feet")
  4816. },
  4817. {
  4818. name: "Macro",
  4819. height: math.unit(150, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Macro+",
  4824. height: math.unit(300, "feet")
  4825. },
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4830. {
  4831. front: {
  4832. height: math.unit(5 + 10/12, "feet"),
  4833. weight: math.unit(67, "kg"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/draylen/front.svg",
  4837. extra: 832/777,
  4838. bottom: 85/917
  4839. }
  4840. }
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(5 + 10/12, "feet")
  4846. },
  4847. {
  4848. name: "Macro",
  4849. height: math.unit(150, "feet"),
  4850. default: true
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4856. {
  4857. front: {
  4858. height: math.unit(7 + 9 / 12, "feet"),
  4859. weight: math.unit(379, "lbs"),
  4860. name: "Front",
  4861. image: {
  4862. source: "./media/characters/chez/front.svg"
  4863. }
  4864. },
  4865. side: {
  4866. height: math.unit(7 + 9 / 12, "feet"),
  4867. weight: math.unit(379, "lbs"),
  4868. name: "Side",
  4869. image: {
  4870. source: "./media/characters/chez/side.svg"
  4871. }
  4872. }
  4873. },
  4874. [
  4875. {
  4876. name: "Normal",
  4877. height: math.unit(7 + 9 / 12, "feet"),
  4878. default: true
  4879. },
  4880. {
  4881. name: "God King",
  4882. height: math.unit(9750000, "meters")
  4883. }
  4884. ]
  4885. ))
  4886. characterMakers.push(() => makeCharacter(
  4887. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4888. {
  4889. front: {
  4890. height: math.unit(6, "feet"),
  4891. weight: math.unit(275, "lbs"),
  4892. name: "Front",
  4893. image: {
  4894. source: "./media/characters/kaylum/front.svg",
  4895. bottom: 0.01,
  4896. extra: 1166 / 1031
  4897. }
  4898. },
  4899. frontWingless: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(275, "lbs"),
  4902. name: "Front (Wingless)",
  4903. image: {
  4904. source: "./media/characters/kaylum/front-wingless.svg",
  4905. bottom: 0.01,
  4906. extra: 1117 / 1031
  4907. }
  4908. }
  4909. },
  4910. [
  4911. {
  4912. name: "Normal",
  4913. height: math.unit(3.05, "meters")
  4914. },
  4915. {
  4916. name: "Master",
  4917. height: math.unit(5.5, "meters")
  4918. },
  4919. {
  4920. name: "Rampage",
  4921. height: math.unit(19, "meters")
  4922. },
  4923. {
  4924. name: "Macro Lite",
  4925. height: math.unit(37, "meters")
  4926. },
  4927. {
  4928. name: "Hyper Predator",
  4929. height: math.unit(61, "meters")
  4930. },
  4931. {
  4932. name: "Macro",
  4933. height: math.unit(138, "meters"),
  4934. default: true
  4935. }
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4940. {
  4941. front: {
  4942. height: math.unit(5 + 5 / 12, "feet"),
  4943. weight: math.unit(120, "lbs"),
  4944. name: "Front",
  4945. image: {
  4946. source: "./media/characters/geta/front.svg",
  4947. extra: 1003/933,
  4948. bottom: 21/1024
  4949. }
  4950. },
  4951. paw: {
  4952. height: math.unit(0.35, "feet"),
  4953. name: "Paw",
  4954. image: {
  4955. source: "./media/characters/geta/paw.svg"
  4956. }
  4957. },
  4958. },
  4959. [
  4960. {
  4961. name: "Micro",
  4962. height: math.unit(3, "inches"),
  4963. default: true
  4964. },
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(5 + 5 / 12, "feet")
  4968. }
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(300, "lbs"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/tyrnn/front.svg"
  4980. }
  4981. }
  4982. },
  4983. [
  4984. {
  4985. name: "Main Height",
  4986. height: math.unit(355, "feet"),
  4987. default: true
  4988. },
  4989. {
  4990. name: "Fave. Height",
  4991. height: math.unit(2400, "feet")
  4992. }
  4993. ]
  4994. ))
  4995. characterMakers.push(() => makeCharacter(
  4996. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4997. {
  4998. front: {
  4999. height: math.unit(6, "feet"),
  5000. weight: math.unit(300, "lbs"),
  5001. name: "Front",
  5002. image: {
  5003. source: "./media/characters/appledectomy/front.svg"
  5004. }
  5005. }
  5006. },
  5007. [
  5008. {
  5009. name: "Macro",
  5010. height: math.unit(2500, "feet")
  5011. },
  5012. {
  5013. name: "Megamacro",
  5014. height: math.unit(50, "miles"),
  5015. default: true
  5016. },
  5017. {
  5018. name: "Gigamacro",
  5019. height: math.unit(5000, "miles")
  5020. },
  5021. {
  5022. name: "Teramacro",
  5023. height: math.unit(250000, "miles")
  5024. },
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5029. {
  5030. front: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(200, "lbs"),
  5033. name: "Front",
  5034. image: {
  5035. source: "./media/characters/vulpes/front.svg",
  5036. extra: 573 / 543,
  5037. bottom: 0.033
  5038. }
  5039. },
  5040. side: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(200, "lbs"),
  5043. name: "Side",
  5044. image: {
  5045. source: "./media/characters/vulpes/side.svg",
  5046. extra: 577 / 549,
  5047. bottom: 11 / 588
  5048. }
  5049. },
  5050. back: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(200, "lbs"),
  5053. name: "Back",
  5054. image: {
  5055. source: "./media/characters/vulpes/back.svg",
  5056. extra: 573 / 549,
  5057. bottom: 20 / 593
  5058. }
  5059. },
  5060. feet: {
  5061. height: math.unit(1.276, "feet"),
  5062. name: "Feet",
  5063. image: {
  5064. source: "./media/characters/vulpes/feet.svg"
  5065. }
  5066. },
  5067. maw: {
  5068. height: math.unit(1.18, "feet"),
  5069. name: "Maw",
  5070. image: {
  5071. source: "./media/characters/vulpes/maw.svg"
  5072. }
  5073. },
  5074. },
  5075. [
  5076. {
  5077. name: "Micro",
  5078. height: math.unit(2, "inches")
  5079. },
  5080. {
  5081. name: "Normal",
  5082. height: math.unit(6.3, "feet")
  5083. },
  5084. {
  5085. name: "Macro",
  5086. height: math.unit(850, "feet")
  5087. },
  5088. {
  5089. name: "Megamacro",
  5090. height: math.unit(7500, "feet"),
  5091. default: true
  5092. },
  5093. {
  5094. name: "Gigamacro",
  5095. height: math.unit(570000, "miles")
  5096. }
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5101. {
  5102. front: {
  5103. height: math.unit(6, "feet"),
  5104. weight: math.unit(210, "lbs"),
  5105. name: "Front",
  5106. image: {
  5107. source: "./media/characters/rain-fallen/front.svg"
  5108. }
  5109. },
  5110. side: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(210, "lbs"),
  5113. name: "Side",
  5114. image: {
  5115. source: "./media/characters/rain-fallen/side.svg"
  5116. }
  5117. },
  5118. back: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(210, "lbs"),
  5121. name: "Back",
  5122. image: {
  5123. source: "./media/characters/rain-fallen/back.svg"
  5124. }
  5125. },
  5126. feral: {
  5127. height: math.unit(9, "feet"),
  5128. weight: math.unit(700, "lbs"),
  5129. name: "Feral",
  5130. image: {
  5131. source: "./media/characters/rain-fallen/feral.svg"
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Meddling with Mortals",
  5138. height: math.unit(8 + 8/12, "feet")
  5139. },
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(5, "meter")
  5143. },
  5144. {
  5145. name: "Macro",
  5146. height: math.unit(150, "meter"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Megamacro",
  5151. height: math.unit(278e6, "meter")
  5152. },
  5153. {
  5154. name: "Gigamacro",
  5155. height: math.unit(2e9, "meter")
  5156. },
  5157. {
  5158. name: "Teramacro",
  5159. height: math.unit(8e12, "meter")
  5160. },
  5161. {
  5162. name: "Devourer",
  5163. height: math.unit(14, "zettameters")
  5164. },
  5165. {
  5166. name: "Scarlet King",
  5167. height: math.unit(18, "yottameters")
  5168. },
  5169. {
  5170. name: "Void",
  5171. height: math.unit(1e88, "yottameters")
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5177. {
  5178. standing: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(180, "lbs"),
  5181. name: "Standing",
  5182. image: {
  5183. source: "./media/characters/zaakira/standing.svg",
  5184. extra: 1599/1504,
  5185. bottom: 39/1638
  5186. }
  5187. },
  5188. laying: {
  5189. height: math.unit(3.3, "feet"),
  5190. weight: math.unit(180, "lbs"),
  5191. name: "Laying",
  5192. image: {
  5193. source: "./media/characters/zaakira/laying.svg"
  5194. }
  5195. },
  5196. },
  5197. [
  5198. {
  5199. name: "Normal",
  5200. height: math.unit(12, "feet")
  5201. },
  5202. {
  5203. name: "Macro",
  5204. height: math.unit(279, "feet"),
  5205. default: true
  5206. }
  5207. ]
  5208. ))
  5209. characterMakers.push(() => makeCharacter(
  5210. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5211. {
  5212. femSfw: {
  5213. height: math.unit(8, "feet"),
  5214. weight: math.unit(350, "lb"),
  5215. name: "Fem",
  5216. image: {
  5217. source: "./media/characters/sigvald/fem-sfw.svg",
  5218. extra: 182 / 164,
  5219. bottom: 8.7 / 190.5
  5220. }
  5221. },
  5222. femNsfw: {
  5223. height: math.unit(8, "feet"),
  5224. weight: math.unit(350, "lb"),
  5225. name: "Fem (NSFW)",
  5226. image: {
  5227. source: "./media/characters/sigvald/fem-nsfw.svg",
  5228. extra: 182 / 164,
  5229. bottom: 8.7 / 190.5
  5230. }
  5231. },
  5232. maleNsfw: {
  5233. height: math.unit(8, "feet"),
  5234. weight: math.unit(350, "lb"),
  5235. name: "Male (NSFW)",
  5236. image: {
  5237. source: "./media/characters/sigvald/male-nsfw.svg",
  5238. extra: 182 / 164,
  5239. bottom: 8.7 / 190.5
  5240. }
  5241. },
  5242. hermNsfw: {
  5243. height: math.unit(8, "feet"),
  5244. weight: math.unit(350, "lb"),
  5245. name: "Herm (NSFW)",
  5246. image: {
  5247. source: "./media/characters/sigvald/herm-nsfw.svg",
  5248. extra: 182 / 164,
  5249. bottom: 8.7 / 190.5
  5250. }
  5251. },
  5252. dick: {
  5253. height: math.unit(2.36, "feet"),
  5254. name: "Dick",
  5255. image: {
  5256. source: "./media/characters/sigvald/dick.svg"
  5257. }
  5258. },
  5259. eye: {
  5260. height: math.unit(0.31, "feet"),
  5261. name: "Eye",
  5262. image: {
  5263. source: "./media/characters/sigvald/eye.svg"
  5264. }
  5265. },
  5266. mouth: {
  5267. height: math.unit(0.92, "feet"),
  5268. name: "Mouth",
  5269. image: {
  5270. source: "./media/characters/sigvald/mouth.svg"
  5271. }
  5272. },
  5273. paws: {
  5274. height: math.unit(2.2, "feet"),
  5275. name: "Paws",
  5276. image: {
  5277. source: "./media/characters/sigvald/paws.svg"
  5278. }
  5279. }
  5280. },
  5281. [
  5282. {
  5283. name: "Normal",
  5284. height: math.unit(8, "feet")
  5285. },
  5286. {
  5287. name: "Large",
  5288. height: math.unit(12, "feet")
  5289. },
  5290. {
  5291. name: "Larger",
  5292. height: math.unit(20, "feet")
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(150, "feet")
  5297. },
  5298. {
  5299. name: "Macro+",
  5300. height: math.unit(200, "feet"),
  5301. default: true
  5302. },
  5303. ]
  5304. ))
  5305. characterMakers.push(() => makeCharacter(
  5306. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5307. {
  5308. side: {
  5309. height: math.unit(12, "feet"),
  5310. weight: math.unit(2000, "kg"),
  5311. name: "Side",
  5312. image: {
  5313. source: "./media/characters/scott/side.svg",
  5314. extra: 754 / 724,
  5315. bottom: 0.069
  5316. }
  5317. },
  5318. upright: {
  5319. height: math.unit(12, "feet"),
  5320. weight: math.unit(2000, "kg"),
  5321. name: "Upright",
  5322. image: {
  5323. source: "./media/characters/scott/upright.svg",
  5324. extra: 3881 / 3722,
  5325. bottom: 0.05
  5326. }
  5327. },
  5328. },
  5329. [
  5330. {
  5331. name: "Normal",
  5332. height: math.unit(12, "feet"),
  5333. default: true
  5334. },
  5335. ]
  5336. ))
  5337. characterMakers.push(() => makeCharacter(
  5338. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5339. {
  5340. side: {
  5341. height: math.unit(8, "meters"),
  5342. weight: math.unit(84755, "lbs"),
  5343. name: "Side",
  5344. image: {
  5345. source: "./media/characters/tobias/side.svg",
  5346. extra: 1474 / 1096,
  5347. bottom: 38.9 / 1513.1235
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(8, "meters"),
  5355. default: true
  5356. },
  5357. ]
  5358. ))
  5359. characterMakers.push(() => makeCharacter(
  5360. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5361. {
  5362. front: {
  5363. height: math.unit(5.5, "feet"),
  5364. weight: math.unit(400, "lbs"),
  5365. name: "Front",
  5366. image: {
  5367. source: "./media/characters/kieran/front.svg",
  5368. extra: 2694 / 2364,
  5369. bottom: 217 / 2908
  5370. }
  5371. },
  5372. side: {
  5373. height: math.unit(5.5, "feet"),
  5374. weight: math.unit(400, "lbs"),
  5375. name: "Side",
  5376. image: {
  5377. source: "./media/characters/kieran/side.svg",
  5378. extra: 875 / 777,
  5379. bottom: 84.6 / 959
  5380. }
  5381. },
  5382. },
  5383. [
  5384. {
  5385. name: "Normal",
  5386. height: math.unit(5.5, "feet"),
  5387. default: true
  5388. },
  5389. ]
  5390. ))
  5391. characterMakers.push(() => makeCharacter(
  5392. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5393. {
  5394. side: {
  5395. height: math.unit(2, "meters"),
  5396. weight: math.unit(70, "kg"),
  5397. name: "Side",
  5398. image: {
  5399. source: "./media/characters/sanya/side.svg",
  5400. bottom: 0.02,
  5401. extra: 1.02
  5402. }
  5403. },
  5404. },
  5405. [
  5406. {
  5407. name: "Small",
  5408. height: math.unit(2, "meters")
  5409. },
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(3, "meters")
  5413. },
  5414. {
  5415. name: "Macro",
  5416. height: math.unit(16, "meters"),
  5417. default: true
  5418. },
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5423. {
  5424. front: {
  5425. height: math.unit(2, "meters"),
  5426. weight: math.unit(120, "kg"),
  5427. name: "Front",
  5428. image: {
  5429. source: "./media/characters/miranda/front.svg",
  5430. extra: 195 / 185,
  5431. bottom: 10.9 / 206.5
  5432. }
  5433. },
  5434. back: {
  5435. height: math.unit(2, "meters"),
  5436. weight: math.unit(120, "kg"),
  5437. name: "Back",
  5438. image: {
  5439. source: "./media/characters/miranda/back.svg",
  5440. extra: 201 / 193,
  5441. bottom: 2.3 / 203.7
  5442. }
  5443. },
  5444. },
  5445. [
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(10, "feet"),
  5449. default: true
  5450. }
  5451. ]
  5452. ))
  5453. characterMakers.push(() => makeCharacter(
  5454. { name: "James", species: ["deer"], tags: ["anthro"] },
  5455. {
  5456. side: {
  5457. height: math.unit(2, "meters"),
  5458. weight: math.unit(100, "kg"),
  5459. name: "Front",
  5460. image: {
  5461. source: "./media/characters/james/front.svg",
  5462. extra: 10 / 8.5
  5463. }
  5464. },
  5465. },
  5466. [
  5467. {
  5468. name: "Normal",
  5469. height: math.unit(8.5, "feet"),
  5470. default: true
  5471. }
  5472. ]
  5473. ))
  5474. characterMakers.push(() => makeCharacter(
  5475. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5476. {
  5477. side: {
  5478. height: math.unit(9.5, "feet"),
  5479. weight: math.unit(2500, "lbs"),
  5480. name: "Side",
  5481. image: {
  5482. source: "./media/characters/heather/side.svg"
  5483. }
  5484. },
  5485. },
  5486. [
  5487. {
  5488. name: "Normal",
  5489. height: math.unit(9.5, "feet"),
  5490. default: true
  5491. }
  5492. ]
  5493. ))
  5494. characterMakers.push(() => makeCharacter(
  5495. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5496. {
  5497. side: {
  5498. height: math.unit(6.5, "feet"),
  5499. weight: math.unit(400, "lbs"),
  5500. name: "Side",
  5501. image: {
  5502. source: "./media/characters/lukas/side.svg",
  5503. extra: 7.25 / 6.5
  5504. }
  5505. },
  5506. },
  5507. [
  5508. {
  5509. name: "Normal",
  5510. height: math.unit(6.5, "feet"),
  5511. default: true
  5512. }
  5513. ]
  5514. ))
  5515. characterMakers.push(() => makeCharacter(
  5516. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5517. {
  5518. side: {
  5519. height: math.unit(5, "feet"),
  5520. weight: math.unit(3000, "lbs"),
  5521. name: "Side",
  5522. image: {
  5523. source: "./media/characters/louise/side.svg"
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "Normal",
  5530. height: math.unit(5, "feet"),
  5531. default: true
  5532. }
  5533. ]
  5534. ))
  5535. characterMakers.push(() => makeCharacter(
  5536. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5537. {
  5538. side: {
  5539. height: math.unit(6, "feet"),
  5540. weight: math.unit(150, "lbs"),
  5541. name: "Side",
  5542. image: {
  5543. source: "./media/characters/ramona/side.svg",
  5544. extra: 871/854,
  5545. bottom: 41/912
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(5.3, "meters"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Macro",
  5557. height: math.unit(20, "stories")
  5558. },
  5559. {
  5560. name: "Macro+",
  5561. height: math.unit(50, "stories")
  5562. },
  5563. ]
  5564. ))
  5565. characterMakers.push(() => makeCharacter(
  5566. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5567. {
  5568. standing: {
  5569. height: math.unit(5.75, "feet"),
  5570. weight: math.unit(160, "lbs"),
  5571. name: "Standing",
  5572. image: {
  5573. source: "./media/characters/deerpuff/standing.svg",
  5574. extra: 682 / 624
  5575. }
  5576. },
  5577. sitting: {
  5578. height: math.unit(5.75 / 1.79, "feet"),
  5579. weight: math.unit(160, "lbs"),
  5580. name: "Sitting",
  5581. image: {
  5582. source: "./media/characters/deerpuff/sitting.svg",
  5583. bottom: 44 / 400,
  5584. extra: 1
  5585. }
  5586. },
  5587. taurLaying: {
  5588. height: math.unit(6, "feet"),
  5589. weight: math.unit(400, "lbs"),
  5590. name: "Taur (Laying)",
  5591. image: {
  5592. source: "./media/characters/deerpuff/taur-laying.svg"
  5593. }
  5594. },
  5595. },
  5596. [
  5597. {
  5598. name: "Puffball",
  5599. height: math.unit(6, "inches")
  5600. },
  5601. {
  5602. name: "Normalpuff",
  5603. height: math.unit(5.75, "feet")
  5604. },
  5605. {
  5606. name: "Macropuff",
  5607. height: math.unit(1500, "feet"),
  5608. default: true
  5609. },
  5610. {
  5611. name: "Megapuff",
  5612. height: math.unit(500, "miles")
  5613. },
  5614. {
  5615. name: "Gigapuff",
  5616. height: math.unit(250000, "miles")
  5617. },
  5618. {
  5619. name: "Omegapuff",
  5620. height: math.unit(1000, "lightyears")
  5621. },
  5622. ]
  5623. ))
  5624. characterMakers.push(() => makeCharacter(
  5625. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5626. {
  5627. stomping: {
  5628. height: math.unit(6, "feet"),
  5629. weight: math.unit(170, "lbs"),
  5630. name: "Stomping",
  5631. image: {
  5632. source: "./media/characters/vivian/stomping.svg"
  5633. }
  5634. },
  5635. sitting: {
  5636. height: math.unit(6 / 1.75, "feet"),
  5637. weight: math.unit(170, "lbs"),
  5638. name: "Sitting",
  5639. image: {
  5640. source: "./media/characters/vivian/sitting.svg",
  5641. bottom: 1 / 6.4,
  5642. extra: 1,
  5643. }
  5644. },
  5645. },
  5646. [
  5647. {
  5648. name: "Normal",
  5649. height: math.unit(7, "feet"),
  5650. default: true
  5651. },
  5652. {
  5653. name: "Macro",
  5654. height: math.unit(10, "stories")
  5655. },
  5656. {
  5657. name: "Macro+",
  5658. height: math.unit(30, "stories")
  5659. },
  5660. {
  5661. name: "Megamacro",
  5662. height: math.unit(10, "miles")
  5663. },
  5664. {
  5665. name: "Megamacro+",
  5666. height: math.unit(2750000, "meters")
  5667. },
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5672. {
  5673. front: {
  5674. height: math.unit(6, "feet"),
  5675. weight: math.unit(160, "lbs"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/prince/front.svg",
  5679. extra: 3400 / 3000
  5680. }
  5681. },
  5682. jumping: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(160, "lbs"),
  5685. name: "Jumping",
  5686. image: {
  5687. source: "./media/characters/prince/jump.svg",
  5688. extra: 2555 / 2134
  5689. }
  5690. },
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(7.75, "feet"),
  5696. default: true
  5697. },
  5698. {
  5699. name: "Not cute",
  5700. height: math.unit(17, "feet")
  5701. },
  5702. {
  5703. name: "I said NOT",
  5704. height: math.unit(91, "feet")
  5705. },
  5706. {
  5707. name: "Please stop",
  5708. height: math.unit(560, "feet")
  5709. },
  5710. {
  5711. name: "What have you done",
  5712. height: math.unit(2200, "feet")
  5713. },
  5714. {
  5715. name: "Deer God",
  5716. height: math.unit(3.6, "miles")
  5717. },
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5722. {
  5723. standing: {
  5724. height: math.unit(6, "feet"),
  5725. weight: math.unit(300, "lbs"),
  5726. name: "Standing",
  5727. image: {
  5728. source: "./media/characters/psymon/standing.svg",
  5729. extra: 1888 / 1810,
  5730. bottom: 0.05
  5731. }
  5732. },
  5733. slithering: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(300, "lbs"),
  5736. name: "Slithering",
  5737. image: {
  5738. source: "./media/characters/psymon/slithering.svg",
  5739. extra: 1330 / 1224
  5740. }
  5741. },
  5742. slitheringAlt: {
  5743. height: math.unit(6, "feet"),
  5744. weight: math.unit(300, "lbs"),
  5745. name: "Slithering (Alt)",
  5746. image: {
  5747. source: "./media/characters/psymon/slithering-alt.svg",
  5748. extra: 1330 / 1224
  5749. }
  5750. },
  5751. },
  5752. [
  5753. {
  5754. name: "Normal",
  5755. height: math.unit(11.25, "feet"),
  5756. default: true
  5757. },
  5758. {
  5759. name: "Large",
  5760. height: math.unit(27, "feet")
  5761. },
  5762. {
  5763. name: "Giant",
  5764. height: math.unit(87, "feet")
  5765. },
  5766. {
  5767. name: "Macro",
  5768. height: math.unit(365, "feet")
  5769. },
  5770. {
  5771. name: "Megamacro",
  5772. height: math.unit(3, "miles")
  5773. },
  5774. {
  5775. name: "World Serpent",
  5776. height: math.unit(8000, "miles")
  5777. },
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(6, "feet"),
  5785. weight: math.unit(180, "lbs"),
  5786. name: "Front",
  5787. image: {
  5788. source: "./media/characters/daimos/front.svg",
  5789. extra: 4160 / 3897,
  5790. bottom: 0.021
  5791. }
  5792. }
  5793. },
  5794. [
  5795. {
  5796. name: "Normal",
  5797. height: math.unit(8, "feet"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Big Dog",
  5802. height: math.unit(22, "feet")
  5803. },
  5804. {
  5805. name: "Macro",
  5806. height: math.unit(127, "feet")
  5807. },
  5808. {
  5809. name: "Megamacro",
  5810. height: math.unit(3600, "feet")
  5811. },
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5816. {
  5817. side: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(180, "lbs"),
  5820. name: "Side",
  5821. image: {
  5822. source: "./media/characters/blake/side.svg",
  5823. extra: 1212 / 1120,
  5824. bottom: 0.05
  5825. }
  5826. },
  5827. crouched: {
  5828. height: math.unit(6 * 0.57, "feet"),
  5829. weight: math.unit(180, "lbs"),
  5830. name: "Crouched",
  5831. image: {
  5832. source: "./media/characters/blake/crouched.svg",
  5833. extra: 840 / 587,
  5834. bottom: 0.04
  5835. }
  5836. },
  5837. bent: {
  5838. height: math.unit(6 * 0.75, "feet"),
  5839. weight: math.unit(180, "lbs"),
  5840. name: "Bent",
  5841. image: {
  5842. source: "./media/characters/blake/bent.svg",
  5843. extra: 592 / 544,
  5844. bottom: 0.035
  5845. }
  5846. },
  5847. },
  5848. [
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(8 + 1 / 6, "feet"),
  5852. default: true
  5853. },
  5854. {
  5855. name: "Big Backside",
  5856. height: math.unit(37, "feet")
  5857. },
  5858. {
  5859. name: "Subway Shredder",
  5860. height: math.unit(72, "feet")
  5861. },
  5862. {
  5863. name: "City Carver",
  5864. height: math.unit(1675, "feet")
  5865. },
  5866. {
  5867. name: "Tectonic Tweaker",
  5868. height: math.unit(2300, "miles")
  5869. },
  5870. ]
  5871. ))
  5872. characterMakers.push(() => makeCharacter(
  5873. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5874. {
  5875. front: {
  5876. height: math.unit(6, "feet"),
  5877. weight: math.unit(180, "lbs"),
  5878. name: "Front",
  5879. image: {
  5880. source: "./media/characters/guisetto/front.svg",
  5881. extra: 856 / 817,
  5882. bottom: 0.06
  5883. }
  5884. },
  5885. airborne: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(180, "lbs"),
  5888. name: "Airborne",
  5889. image: {
  5890. source: "./media/characters/guisetto/airborne.svg",
  5891. extra: 584 / 525
  5892. }
  5893. },
  5894. },
  5895. [
  5896. {
  5897. name: "Normal",
  5898. height: math.unit(10 + 11 / 12, "feet"),
  5899. default: true
  5900. },
  5901. {
  5902. name: "Large",
  5903. height: math.unit(35, "feet")
  5904. },
  5905. {
  5906. name: "Macro",
  5907. height: math.unit(475, "feet")
  5908. },
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5913. {
  5914. front: {
  5915. height: math.unit(6, "feet"),
  5916. weight: math.unit(180, "lbs"),
  5917. name: "Front",
  5918. image: {
  5919. source: "./media/characters/luxor/front.svg",
  5920. extra: 2940 / 2152
  5921. }
  5922. },
  5923. back: {
  5924. height: math.unit(6, "feet"),
  5925. weight: math.unit(180, "lbs"),
  5926. name: "Back",
  5927. image: {
  5928. source: "./media/characters/luxor/back.svg",
  5929. extra: 1083 / 960
  5930. }
  5931. },
  5932. },
  5933. [
  5934. {
  5935. name: "Normal",
  5936. height: math.unit(5 + 5 / 6, "feet"),
  5937. default: true
  5938. },
  5939. {
  5940. name: "Lamp",
  5941. height: math.unit(50, "feet")
  5942. },
  5943. {
  5944. name: "Lämp",
  5945. height: math.unit(300, "feet")
  5946. },
  5947. {
  5948. name: "The sun is a lamp",
  5949. height: math.unit(250000, "miles")
  5950. },
  5951. ]
  5952. ))
  5953. characterMakers.push(() => makeCharacter(
  5954. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5955. {
  5956. front: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(50, "lbs"),
  5959. name: "Front",
  5960. image: {
  5961. source: "./media/characters/huoyan/front.svg"
  5962. }
  5963. },
  5964. side: {
  5965. height: math.unit(6, "feet"),
  5966. weight: math.unit(180, "lbs"),
  5967. name: "Side",
  5968. image: {
  5969. source: "./media/characters/huoyan/side.svg"
  5970. }
  5971. },
  5972. },
  5973. [
  5974. {
  5975. name: "Chef",
  5976. height: math.unit(9, "feet")
  5977. },
  5978. {
  5979. name: "Normal",
  5980. height: math.unit(65, "feet"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Macro",
  5985. height: math.unit(780, "feet")
  5986. },
  5987. {
  5988. name: "Flaming Mountain",
  5989. height: math.unit(4.8, "miles")
  5990. },
  5991. {
  5992. name: "Celestial",
  5993. height: math.unit(765000, "miles")
  5994. },
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5999. {
  6000. front: {
  6001. height: math.unit(5 + 3 / 4, "feet"),
  6002. weight: math.unit(120, "lbs"),
  6003. name: "Front",
  6004. image: {
  6005. source: "./media/characters/tails/front.svg"
  6006. }
  6007. }
  6008. },
  6009. [
  6010. {
  6011. name: "Normal",
  6012. height: math.unit(5 + 3 / 4, "feet"),
  6013. default: true
  6014. }
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6019. {
  6020. front: {
  6021. height: math.unit(4, "feet"),
  6022. weight: math.unit(50, "lbs"),
  6023. name: "Front",
  6024. image: {
  6025. source: "./media/characters/rainy/front.svg"
  6026. }
  6027. }
  6028. },
  6029. [
  6030. {
  6031. name: "Macro",
  6032. height: math.unit(800, "feet"),
  6033. default: true
  6034. }
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6039. {
  6040. front: {
  6041. height: math.unit(6, "feet"),
  6042. weight: math.unit(150, "lbs"),
  6043. name: "Front",
  6044. image: {
  6045. source: "./media/characters/rainier/front.svg"
  6046. }
  6047. }
  6048. },
  6049. [
  6050. {
  6051. name: "Micro",
  6052. height: math.unit(2, "mm"),
  6053. default: true
  6054. }
  6055. ]
  6056. ))
  6057. characterMakers.push(() => makeCharacter(
  6058. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6059. {
  6060. front: {
  6061. height: math.unit(8 + 4/12, "feet"),
  6062. weight: math.unit(450, "kilograms"),
  6063. volume: math.unit(5, "cups"),
  6064. name: "Front",
  6065. image: {
  6066. source: "./media/characters/andy-renard/front.svg",
  6067. extra: 1839/1726,
  6068. bottom: 134/1973
  6069. }
  6070. },
  6071. back: {
  6072. height: math.unit(8 + 4/12, "feet"),
  6073. weight: math.unit(450, "kilograms"),
  6074. volume: math.unit(5, "cups"),
  6075. name: "Back",
  6076. image: {
  6077. source: "./media/characters/andy-renard/back.svg",
  6078. extra: 1838/1710,
  6079. bottom: 105/1943
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Tall",
  6086. height: math.unit(8 + 4/12, "feet")
  6087. },
  6088. {
  6089. name: "Mini Macro",
  6090. height: math.unit(15, "feet"),
  6091. default: true
  6092. },
  6093. {
  6094. name: "Macro",
  6095. height: math.unit(100, "feet")
  6096. },
  6097. {
  6098. name: "Mega Macro",
  6099. height: math.unit(1000, "feet")
  6100. },
  6101. {
  6102. name: "Giga Macro",
  6103. height: math.unit(10, "miles")
  6104. },
  6105. {
  6106. name: "God Macro",
  6107. height: math.unit(1, "multiverse")
  6108. },
  6109. ]
  6110. ))
  6111. characterMakers.push(() => makeCharacter(
  6112. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6113. {
  6114. front: {
  6115. height: math.unit(6, "feet"),
  6116. weight: math.unit(210, "lbs"),
  6117. name: "Front",
  6118. image: {
  6119. source: "./media/characters/cimmaron/front-sfw.svg",
  6120. extra: 701 / 676,
  6121. bottom: 0.046
  6122. }
  6123. },
  6124. back: {
  6125. height: math.unit(6, "feet"),
  6126. weight: math.unit(210, "lbs"),
  6127. name: "Back",
  6128. image: {
  6129. source: "./media/characters/cimmaron/back-sfw.svg",
  6130. extra: 701 / 676,
  6131. bottom: 0.046
  6132. }
  6133. },
  6134. frontNsfw: {
  6135. height: math.unit(6, "feet"),
  6136. weight: math.unit(210, "lbs"),
  6137. name: "Front (NSFW)",
  6138. image: {
  6139. source: "./media/characters/cimmaron/front-nsfw.svg",
  6140. extra: 701 / 676,
  6141. bottom: 0.046
  6142. }
  6143. },
  6144. backNsfw: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(210, "lbs"),
  6147. name: "Back (NSFW)",
  6148. image: {
  6149. source: "./media/characters/cimmaron/back-nsfw.svg",
  6150. extra: 701 / 676,
  6151. bottom: 0.046
  6152. }
  6153. },
  6154. dick: {
  6155. height: math.unit(1.714, "feet"),
  6156. name: "Dick",
  6157. image: {
  6158. source: "./media/characters/cimmaron/dick.svg"
  6159. }
  6160. },
  6161. },
  6162. [
  6163. {
  6164. name: "Normal",
  6165. height: math.unit(6, "feet"),
  6166. default: true
  6167. },
  6168. {
  6169. name: "Macro Mayor",
  6170. height: math.unit(350, "meters")
  6171. },
  6172. ]
  6173. ))
  6174. characterMakers.push(() => makeCharacter(
  6175. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6176. {
  6177. front: {
  6178. height: math.unit(6, "feet"),
  6179. weight: math.unit(200, "lbs"),
  6180. name: "Front",
  6181. image: {
  6182. source: "./media/characters/akari/front.svg",
  6183. extra: 962 / 901,
  6184. bottom: 0.04
  6185. }
  6186. }
  6187. },
  6188. [
  6189. {
  6190. name: "Micro",
  6191. height: math.unit(5, "inches"),
  6192. default: true
  6193. },
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(7, "feet")
  6197. },
  6198. ]
  6199. ))
  6200. characterMakers.push(() => makeCharacter(
  6201. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6202. {
  6203. front: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(140, "lbs"),
  6206. name: "Front",
  6207. image: {
  6208. source: "./media/characters/cynosura/front.svg",
  6209. extra: 896 / 847
  6210. }
  6211. },
  6212. back: {
  6213. height: math.unit(6, "feet"),
  6214. weight: math.unit(140, "lbs"),
  6215. name: "Back",
  6216. image: {
  6217. source: "./media/characters/cynosura/back.svg",
  6218. extra: 1365 / 1250
  6219. }
  6220. },
  6221. },
  6222. [
  6223. {
  6224. name: "Micro",
  6225. height: math.unit(4, "inches")
  6226. },
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(5.75, "feet"),
  6230. default: true
  6231. },
  6232. {
  6233. name: "Tall",
  6234. height: math.unit(10, "feet")
  6235. },
  6236. {
  6237. name: "Big",
  6238. height: math.unit(20, "feet")
  6239. },
  6240. {
  6241. name: "Macro",
  6242. height: math.unit(50, "feet")
  6243. },
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6248. {
  6249. front: {
  6250. height: math.unit(13 + 2/12, "feet"),
  6251. weight: math.unit(800, "kg"),
  6252. name: "Front",
  6253. image: {
  6254. source: "./media/characters/gin/front.svg",
  6255. extra: 1312/1191,
  6256. bottom: 45/1357
  6257. }
  6258. },
  6259. mouth: {
  6260. height: math.unit(2.39 * 1.8, "feet"),
  6261. name: "Mouth",
  6262. image: {
  6263. source: "./media/characters/gin/mouth.svg"
  6264. }
  6265. },
  6266. hand: {
  6267. height: math.unit(1.57 * 2.19, "feet"),
  6268. name: "Hand",
  6269. image: {
  6270. source: "./media/characters/gin/hand.svg"
  6271. }
  6272. },
  6273. foot: {
  6274. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6275. name: "Foot",
  6276. image: {
  6277. source: "./media/characters/gin/foot.svg"
  6278. }
  6279. },
  6280. sole: {
  6281. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6282. name: "Sole",
  6283. image: {
  6284. source: "./media/characters/gin/sole.svg"
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Very Small",
  6291. height: math.unit(13 + 2 / 12, "feet")
  6292. },
  6293. {
  6294. name: "Micro",
  6295. height: math.unit(600, "miles")
  6296. },
  6297. {
  6298. name: "Regular",
  6299. height: math.unit(20, "earths"),
  6300. default: true
  6301. },
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(2.2, "solarradii")
  6305. },
  6306. {
  6307. name: "Teramacro",
  6308. height: math.unit(1.2, "galaxies")
  6309. },
  6310. {
  6311. name: "Omegamacro",
  6312. height: math.unit(200, "universes")
  6313. },
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6318. {
  6319. front: {
  6320. height: math.unit(6 + 1 / 6, "feet"),
  6321. weight: math.unit(178, "lbs"),
  6322. name: "Front",
  6323. image: {
  6324. source: "./media/characters/guy/front.svg"
  6325. }
  6326. }
  6327. },
  6328. [
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(6 + 1 / 6, "feet"),
  6332. default: true
  6333. },
  6334. {
  6335. name: "Large",
  6336. height: math.unit(25 + 7 / 12, "feet")
  6337. },
  6338. {
  6339. name: "Macro",
  6340. height: math.unit(60 + 9 / 12, "feet")
  6341. },
  6342. {
  6343. name: "Macro+",
  6344. height: math.unit(246, "feet")
  6345. },
  6346. {
  6347. name: "Macro++",
  6348. height: math.unit(878, "feet")
  6349. }
  6350. ]
  6351. ))
  6352. characterMakers.push(() => makeCharacter(
  6353. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6354. {
  6355. front: {
  6356. height: math.unit(9, "feet"),
  6357. weight: math.unit(800, "lbs"),
  6358. name: "Front",
  6359. image: {
  6360. source: "./media/characters/tiberius/front.svg",
  6361. extra: 2295 / 2071
  6362. }
  6363. },
  6364. back: {
  6365. height: math.unit(9, "feet"),
  6366. weight: math.unit(800, "lbs"),
  6367. name: "Back",
  6368. image: {
  6369. source: "./media/characters/tiberius/back.svg",
  6370. extra: 2373 / 2160
  6371. }
  6372. },
  6373. },
  6374. [
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(9, "feet"),
  6378. default: true
  6379. }
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6384. {
  6385. front: {
  6386. height: math.unit(6, "feet"),
  6387. weight: math.unit(600, "lbs"),
  6388. name: "Front",
  6389. image: {
  6390. source: "./media/characters/surgo/front.svg",
  6391. extra: 3591 / 2227
  6392. }
  6393. },
  6394. back: {
  6395. height: math.unit(6, "feet"),
  6396. weight: math.unit(600, "lbs"),
  6397. name: "Back",
  6398. image: {
  6399. source: "./media/characters/surgo/back.svg",
  6400. extra: 3557 / 2228
  6401. }
  6402. },
  6403. laying: {
  6404. height: math.unit(6 * 0.85, "feet"),
  6405. weight: math.unit(600, "lbs"),
  6406. name: "Laying",
  6407. image: {
  6408. source: "./media/characters/surgo/laying.svg"
  6409. }
  6410. },
  6411. },
  6412. [
  6413. {
  6414. name: "Normal",
  6415. height: math.unit(6, "feet"),
  6416. default: true
  6417. }
  6418. ]
  6419. ))
  6420. characterMakers.push(() => makeCharacter(
  6421. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6422. {
  6423. side: {
  6424. height: math.unit(6, "feet"),
  6425. weight: math.unit(150, "lbs"),
  6426. name: "Side",
  6427. image: {
  6428. source: "./media/characters/cibus/side.svg",
  6429. extra: 800 / 400
  6430. }
  6431. },
  6432. },
  6433. [
  6434. {
  6435. name: "Normal",
  6436. height: math.unit(6, "feet"),
  6437. default: true
  6438. }
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(6, "feet"),
  6446. weight: math.unit(240, "lbs"),
  6447. name: "Front",
  6448. image: {
  6449. source: "./media/characters/nibbles/front.svg"
  6450. }
  6451. },
  6452. side: {
  6453. height: math.unit(6, "feet"),
  6454. weight: math.unit(240, "lbs"),
  6455. name: "Side",
  6456. image: {
  6457. source: "./media/characters/nibbles/side.svg"
  6458. }
  6459. },
  6460. },
  6461. [
  6462. {
  6463. name: "Normal",
  6464. height: math.unit(9, "feet"),
  6465. default: true
  6466. }
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6471. {
  6472. side: {
  6473. height: math.unit(5 + 1 / 6, "feet"),
  6474. weight: math.unit(130, "lbs"),
  6475. name: "Side",
  6476. image: {
  6477. source: "./media/characters/rikky/side.svg",
  6478. extra: 851 / 801
  6479. }
  6480. },
  6481. },
  6482. [
  6483. {
  6484. name: "Normal",
  6485. height: math.unit(5 + 1 / 6, "feet")
  6486. },
  6487. {
  6488. name: "Macro",
  6489. height: math.unit(152, "feet"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "Megamacro",
  6494. height: math.unit(7, "miles")
  6495. }
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6500. {
  6501. side: {
  6502. height: math.unit(370, "cm"),
  6503. weight: math.unit(350, "lbs"),
  6504. name: "Side",
  6505. image: {
  6506. source: "./media/characters/malfressa/side.svg"
  6507. }
  6508. },
  6509. walking: {
  6510. height: math.unit(370, "cm"),
  6511. weight: math.unit(350, "lbs"),
  6512. name: "Walking",
  6513. image: {
  6514. source: "./media/characters/malfressa/walking.svg"
  6515. }
  6516. },
  6517. feral: {
  6518. height: math.unit(2500, "cm"),
  6519. weight: math.unit(100000, "lbs"),
  6520. name: "Feral",
  6521. image: {
  6522. source: "./media/characters/malfressa/feral.svg",
  6523. extra: 2108 / 837,
  6524. bottom: 0.02
  6525. }
  6526. },
  6527. },
  6528. [
  6529. {
  6530. name: "Normal",
  6531. height: math.unit(370, "cm")
  6532. },
  6533. {
  6534. name: "Macro",
  6535. height: math.unit(300, "meters"),
  6536. default: true
  6537. }
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6542. {
  6543. front: {
  6544. height: math.unit(6, "feet"),
  6545. weight: math.unit(60, "kg"),
  6546. name: "Front",
  6547. image: {
  6548. source: "./media/characters/jaro/front.svg",
  6549. extra: 845/817,
  6550. bottom: 45/890
  6551. }
  6552. },
  6553. back: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(60, "kg"),
  6556. name: "Back",
  6557. image: {
  6558. source: "./media/characters/jaro/back.svg",
  6559. extra: 847/817,
  6560. bottom: 34/881
  6561. }
  6562. },
  6563. },
  6564. [
  6565. {
  6566. name: "Micro",
  6567. height: math.unit(7, "inches")
  6568. },
  6569. {
  6570. name: "Normal",
  6571. height: math.unit(5.5, "feet"),
  6572. default: true
  6573. },
  6574. {
  6575. name: "Minimacro",
  6576. height: math.unit(20, "feet")
  6577. },
  6578. {
  6579. name: "Macro",
  6580. height: math.unit(200, "meters")
  6581. }
  6582. ]
  6583. ))
  6584. characterMakers.push(() => makeCharacter(
  6585. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6586. {
  6587. front: {
  6588. height: math.unit(6, "feet"),
  6589. weight: math.unit(195, "lb"),
  6590. name: "Front",
  6591. image: {
  6592. source: "./media/characters/rogue/front.svg"
  6593. }
  6594. },
  6595. },
  6596. [
  6597. {
  6598. name: "Macro",
  6599. height: math.unit(90, "feet"),
  6600. default: true
  6601. },
  6602. ]
  6603. ))
  6604. characterMakers.push(() => makeCharacter(
  6605. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6606. {
  6607. standing: {
  6608. height: math.unit(5 + 8 / 12, "feet"),
  6609. weight: math.unit(140, "lb"),
  6610. name: "Standing",
  6611. image: {
  6612. source: "./media/characters/piper/standing.svg",
  6613. extra: 1440/1284,
  6614. bottom: 66/1506
  6615. }
  6616. },
  6617. running: {
  6618. height: math.unit(5 + 8 / 12, "feet"),
  6619. weight: math.unit(140, "lb"),
  6620. name: "Running",
  6621. image: {
  6622. source: "./media/characters/piper/running.svg",
  6623. extra: 3948/3655,
  6624. bottom: 0/3948
  6625. }
  6626. },
  6627. sole: {
  6628. height: math.unit(0.81, "feet"),
  6629. weight: math.unit(2, "kg"),
  6630. name: "Sole",
  6631. image: {
  6632. source: "./media/characters/piper/sole.svg"
  6633. }
  6634. },
  6635. nipple: {
  6636. height: math.unit(0.25, "feet"),
  6637. weight: math.unit(1.5, "lb"),
  6638. name: "Nipple",
  6639. image: {
  6640. source: "./media/characters/piper/nipple.svg"
  6641. }
  6642. },
  6643. head: {
  6644. height: math.unit(1.1, "feet"),
  6645. name: "Head",
  6646. image: {
  6647. source: "./media/characters/piper/head.svg"
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Micro",
  6654. height: math.unit(2, "inches")
  6655. },
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(5 + 8 / 12, "feet")
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(250, "feet"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Megamacro",
  6667. height: math.unit(7, "miles")
  6668. },
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(6, "feet"),
  6676. weight: math.unit(220, "lb"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/gemini/front.svg"
  6680. }
  6681. },
  6682. back: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(220, "lb"),
  6685. name: "Back",
  6686. image: {
  6687. source: "./media/characters/gemini/back.svg"
  6688. }
  6689. },
  6690. kneeling: {
  6691. height: math.unit(6 / 1.5, "feet"),
  6692. weight: math.unit(220, "lb"),
  6693. name: "Kneeling",
  6694. image: {
  6695. source: "./media/characters/gemini/kneeling.svg",
  6696. bottom: 0.02
  6697. }
  6698. },
  6699. },
  6700. [
  6701. {
  6702. name: "Macro",
  6703. height: math.unit(300, "meters"),
  6704. default: true
  6705. },
  6706. {
  6707. name: "Megamacro",
  6708. height: math.unit(6900, "meters")
  6709. },
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6714. {
  6715. anthro: {
  6716. height: math.unit(2.35, "meters"),
  6717. weight: math.unit(73, "kg"),
  6718. name: "Anthro",
  6719. image: {
  6720. source: "./media/characters/alicia/anthro.svg",
  6721. extra: 2571 / 2385,
  6722. bottom: 75 / 2648
  6723. }
  6724. },
  6725. paw: {
  6726. height: math.unit(1.32, "feet"),
  6727. name: "Paw",
  6728. image: {
  6729. source: "./media/characters/alicia/paw.svg"
  6730. }
  6731. },
  6732. feral: {
  6733. height: math.unit(1.69, "meters"),
  6734. weight: math.unit(73, "kg"),
  6735. name: "Feral",
  6736. image: {
  6737. source: "./media/characters/alicia/feral.svg",
  6738. extra: 2123 / 1715,
  6739. bottom: 222 / 2349
  6740. }
  6741. },
  6742. },
  6743. [
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(2.35, "meters")
  6747. },
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(60, "meters"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Megamacro",
  6755. height: math.unit(10000, "kilometers")
  6756. },
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(7, "feet"),
  6764. weight: math.unit(250, "lbs"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/archy/front.svg"
  6768. }
  6769. }
  6770. },
  6771. [
  6772. {
  6773. name: "Micro",
  6774. height: math.unit(1, "inch")
  6775. },
  6776. {
  6777. name: "Shorty",
  6778. height: math.unit(5, "feet")
  6779. },
  6780. {
  6781. name: "Normal",
  6782. height: math.unit(7, "feet")
  6783. },
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(600, "meters"),
  6787. default: true
  6788. },
  6789. {
  6790. name: "Megamacro",
  6791. height: math.unit(1, "mile")
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6797. {
  6798. front: {
  6799. height: math.unit(1.65, "meters"),
  6800. weight: math.unit(74, "kg"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/berri/front.svg",
  6804. extra: 857 / 837,
  6805. bottom: 18 / 877
  6806. }
  6807. },
  6808. bum: {
  6809. height: math.unit(1.46, "feet"),
  6810. name: "Bum",
  6811. image: {
  6812. source: "./media/characters/berri/bum.svg"
  6813. }
  6814. },
  6815. mouth: {
  6816. height: math.unit(0.44, "feet"),
  6817. name: "Mouth",
  6818. image: {
  6819. source: "./media/characters/berri/mouth.svg"
  6820. }
  6821. },
  6822. paw: {
  6823. height: math.unit(0.826, "feet"),
  6824. name: "Paw",
  6825. image: {
  6826. source: "./media/characters/berri/paw.svg"
  6827. }
  6828. },
  6829. },
  6830. [
  6831. {
  6832. name: "Normal",
  6833. height: math.unit(1.65, "meters")
  6834. },
  6835. {
  6836. name: "Macro",
  6837. height: math.unit(60, "m"),
  6838. default: true
  6839. },
  6840. {
  6841. name: "Megamacro",
  6842. height: math.unit(9.213, "km")
  6843. },
  6844. {
  6845. name: "Planet Eater",
  6846. height: math.unit(489, "megameters")
  6847. },
  6848. {
  6849. name: "Teramacro",
  6850. height: math.unit(2471635000000, "meters")
  6851. },
  6852. {
  6853. name: "Examacro",
  6854. height: math.unit(8.0624e+26, "meters")
  6855. }
  6856. ]
  6857. ))
  6858. characterMakers.push(() => makeCharacter(
  6859. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6860. {
  6861. front: {
  6862. height: math.unit(1.72, "meters"),
  6863. weight: math.unit(68, "kg"),
  6864. name: "Front",
  6865. image: {
  6866. source: "./media/characters/lexi/front.svg"
  6867. }
  6868. }
  6869. },
  6870. [
  6871. {
  6872. name: "Very Smol",
  6873. height: math.unit(10, "mm")
  6874. },
  6875. {
  6876. name: "Micro",
  6877. height: math.unit(6.8, "cm"),
  6878. default: true
  6879. },
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(1.72, "m")
  6883. }
  6884. ]
  6885. ))
  6886. characterMakers.push(() => makeCharacter(
  6887. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6888. {
  6889. front: {
  6890. height: math.unit(1.69, "meters"),
  6891. weight: math.unit(68, "kg"),
  6892. name: "Front",
  6893. image: {
  6894. source: "./media/characters/martin/front.svg",
  6895. extra: 596 / 581
  6896. }
  6897. }
  6898. },
  6899. [
  6900. {
  6901. name: "Micro",
  6902. height: math.unit(6.85, "cm"),
  6903. default: true
  6904. },
  6905. {
  6906. name: "Normal",
  6907. height: math.unit(1.69, "m")
  6908. }
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(1.69, "meters"),
  6916. weight: math.unit(68, "kg"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/juno/front.svg"
  6920. }
  6921. }
  6922. },
  6923. [
  6924. {
  6925. name: "Micro",
  6926. height: math.unit(7, "cm")
  6927. },
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(1.89, "m")
  6931. },
  6932. {
  6933. name: "Macro",
  6934. height: math.unit(353, "meters"),
  6935. default: true
  6936. }
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(1.93, "meters"),
  6944. weight: math.unit(83, "kg"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/samantha/front.svg"
  6948. }
  6949. },
  6950. frontClothed: {
  6951. height: math.unit(1.93, "meters"),
  6952. weight: math.unit(83, "kg"),
  6953. name: "Front (Clothed)",
  6954. image: {
  6955. source: "./media/characters/samantha/front-clothed.svg"
  6956. }
  6957. },
  6958. back: {
  6959. height: math.unit(1.93, "meters"),
  6960. weight: math.unit(83, "kg"),
  6961. name: "Back",
  6962. image: {
  6963. source: "./media/characters/samantha/back.svg"
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(1.93, "m")
  6971. },
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(74, "meters"),
  6975. default: true
  6976. },
  6977. {
  6978. name: "Macro+",
  6979. height: math.unit(223, "meters"),
  6980. },
  6981. {
  6982. name: "Megamacro",
  6983. height: math.unit(8381, "meters"),
  6984. },
  6985. {
  6986. name: "Megamacro+",
  6987. height: math.unit(12000, "kilometers")
  6988. },
  6989. ]
  6990. ))
  6991. characterMakers.push(() => makeCharacter(
  6992. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6993. {
  6994. front: {
  6995. height: math.unit(1.92, "meters"),
  6996. weight: math.unit(80, "kg"),
  6997. name: "Front",
  6998. image: {
  6999. source: "./media/characters/dr-clay/front.svg"
  7000. }
  7001. },
  7002. frontClothed: {
  7003. height: math.unit(1.92, "meters"),
  7004. weight: math.unit(80, "kg"),
  7005. name: "Front (Clothed)",
  7006. image: {
  7007. source: "./media/characters/dr-clay/front-clothed.svg"
  7008. }
  7009. }
  7010. },
  7011. [
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(1.92, "m")
  7015. },
  7016. {
  7017. name: "Macro",
  7018. height: math.unit(214, "meters"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Macro+",
  7023. height: math.unit(12.237, "meters"),
  7024. },
  7025. {
  7026. name: "Megamacro",
  7027. height: math.unit(557, "megameters"),
  7028. },
  7029. {
  7030. name: "Unimaginable",
  7031. height: math.unit(120e9, "lightyears")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(2, "meters"),
  7040. weight: math.unit(80, "kg"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7044. }
  7045. }
  7046. },
  7047. [
  7048. {
  7049. name: "Teramacro",
  7050. height: math.unit(500000, "lightyears"),
  7051. default: true
  7052. },
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7057. {
  7058. crux: {
  7059. height: math.unit(2, "meters"),
  7060. weight: math.unit(150, "kg"),
  7061. name: "Crux",
  7062. image: {
  7063. source: "./media/characters/vemus/crux.svg",
  7064. extra: 1074/936,
  7065. bottom: 23/1097
  7066. }
  7067. },
  7068. skunkTanuki: {
  7069. height: math.unit(2, "meters"),
  7070. weight: math.unit(150, "kg"),
  7071. name: "Skunk-Tanuki",
  7072. image: {
  7073. source: "./media/characters/vemus/skunk-tanuki.svg",
  7074. extra: 926/893,
  7075. bottom: 20/946
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(3.75, "meters"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Big",
  7087. height: math.unit(8, "meters")
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(100, "meters")
  7092. },
  7093. {
  7094. name: "Macro+",
  7095. height: math.unit(1500, "meters")
  7096. },
  7097. {
  7098. name: "Stellar",
  7099. height: math.unit(14e8, "meters")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(2, "meters"),
  7108. weight: math.unit(70, "kg"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/beherit/front.svg",
  7112. extra: 1234/1109,
  7113. bottom: 55/1289
  7114. }
  7115. }
  7116. },
  7117. [
  7118. {
  7119. name: "Normal",
  7120. height: math.unit(6, "feet")
  7121. },
  7122. {
  7123. name: "Lorg",
  7124. height: math.unit(25, "feet"),
  7125. default: true
  7126. },
  7127. {
  7128. name: "Lorger",
  7129. height: math.unit(75, "feet")
  7130. },
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(200, "meters")
  7134. },
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(2, "meters"),
  7142. weight: math.unit(150, "kg"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/everett/front.svg",
  7146. extra: 1017/866,
  7147. bottom: 86/1103
  7148. }
  7149. },
  7150. paw: {
  7151. height: math.unit(2 / 3.6, "meters"),
  7152. name: "Paw",
  7153. image: {
  7154. source: "./media/characters/everett/paw.svg"
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(15, "feet"),
  7162. default: true
  7163. },
  7164. {
  7165. name: "Lorg",
  7166. height: math.unit(70, "feet"),
  7167. default: true
  7168. },
  7169. {
  7170. name: "Lorger",
  7171. height: math.unit(250, "feet")
  7172. },
  7173. {
  7174. name: "Macro",
  7175. height: math.unit(500, "meters")
  7176. },
  7177. ]
  7178. ))
  7179. characterMakers.push(() => makeCharacter(
  7180. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7181. {
  7182. front: {
  7183. height: math.unit(2, "meters"),
  7184. weight: math.unit(86, "kg"),
  7185. name: "Front",
  7186. image: {
  7187. source: "./media/characters/rose/front.svg",
  7188. extra: 1785/1636,
  7189. bottom: 30/1815
  7190. },
  7191. form: "liom",
  7192. default: true
  7193. },
  7194. frontSporty: {
  7195. height: math.unit(2, "meters"),
  7196. weight: math.unit(86, "kg"),
  7197. name: "Front (Sporty)",
  7198. image: {
  7199. source: "./media/characters/rose/front-sporty.svg",
  7200. extra: 350/335,
  7201. bottom: 10/360
  7202. },
  7203. form: "liom"
  7204. },
  7205. frontAlt: {
  7206. height: math.unit(1.6, "meters"),
  7207. weight: math.unit(86, "kg"),
  7208. name: "Front (Alt)",
  7209. image: {
  7210. source: "./media/characters/rose/front-alt.svg",
  7211. extra: 299/283,
  7212. bottom: 3/302
  7213. },
  7214. form: "liom"
  7215. },
  7216. plush: {
  7217. height: math.unit(2, "meters"),
  7218. weight: math.unit(86/3, "kg"),
  7219. name: "Plush",
  7220. image: {
  7221. source: "./media/characters/rose/plush.svg",
  7222. extra: 361/337,
  7223. bottom: 11/372
  7224. },
  7225. form: "plush",
  7226. default: true
  7227. },
  7228. faeStanding: {
  7229. height: math.unit(10, "cm"),
  7230. weight: math.unit(10, "grams"),
  7231. name: "Standing",
  7232. image: {
  7233. source: "./media/characters/rose/fae-standing.svg",
  7234. extra: 1189/1060,
  7235. bottom: 27/1216
  7236. },
  7237. form: "fae",
  7238. default: true
  7239. },
  7240. faeSitting: {
  7241. height: math.unit(5, "cm"),
  7242. weight: math.unit(10, "grams"),
  7243. name: "Sitting",
  7244. image: {
  7245. source: "./media/characters/rose/fae-sitting.svg",
  7246. extra: 737/577,
  7247. bottom: 356/1093
  7248. },
  7249. form: "fae"
  7250. },
  7251. faePaw: {
  7252. height: math.unit(1.35, "cm"),
  7253. name: "Paw",
  7254. image: {
  7255. source: "./media/characters/rose/fae-paw.svg"
  7256. },
  7257. form: "fae"
  7258. },
  7259. },
  7260. [
  7261. {
  7262. name: "True Micro",
  7263. height: math.unit(9, "cm"),
  7264. form: "liom"
  7265. },
  7266. {
  7267. name: "Micro",
  7268. height: math.unit(16, "cm"),
  7269. form: "liom"
  7270. },
  7271. {
  7272. name: "Normal",
  7273. height: math.unit(1.85, "meters"),
  7274. default: true,
  7275. form: "liom"
  7276. },
  7277. {
  7278. name: "Mini-Macro",
  7279. height: math.unit(5, "meters"),
  7280. form: "liom"
  7281. },
  7282. {
  7283. name: "Macro",
  7284. height: math.unit(15, "meters"),
  7285. form: "liom"
  7286. },
  7287. {
  7288. name: "True Macro",
  7289. height: math.unit(40, "meters"),
  7290. form: "liom"
  7291. },
  7292. {
  7293. name: "City Scale",
  7294. height: math.unit(1, "km"),
  7295. form: "liom"
  7296. },
  7297. {
  7298. name: "Plushie",
  7299. height: math.unit(9, "cm"),
  7300. form: "plush",
  7301. default: true
  7302. },
  7303. {
  7304. name: "Fae",
  7305. height: math.unit(10, "cm"),
  7306. form: "fae",
  7307. default: true
  7308. },
  7309. ],
  7310. {
  7311. "liom": {
  7312. name: "Liom"
  7313. },
  7314. "plush": {
  7315. name: "Plush"
  7316. },
  7317. "fae": {
  7318. name: "Fae Fox",
  7319. default: true
  7320. }
  7321. }
  7322. ))
  7323. characterMakers.push(() => makeCharacter(
  7324. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7325. {
  7326. front: {
  7327. height: math.unit(2, "meters"),
  7328. weight: math.unit(350, "lbs"),
  7329. name: "Front",
  7330. image: {
  7331. source: "./media/characters/regal/front.svg"
  7332. }
  7333. },
  7334. back: {
  7335. height: math.unit(2, "meters"),
  7336. weight: math.unit(350, "lbs"),
  7337. name: "Back",
  7338. image: {
  7339. source: "./media/characters/regal/back.svg"
  7340. }
  7341. },
  7342. },
  7343. [
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(350, "feet"),
  7347. default: true
  7348. }
  7349. ]
  7350. ))
  7351. characterMakers.push(() => makeCharacter(
  7352. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7353. {
  7354. front: {
  7355. height: math.unit(4 + 11 / 12, "feet"),
  7356. weight: math.unit(100, "lbs"),
  7357. name: "Front",
  7358. image: {
  7359. source: "./media/characters/opal/front.svg"
  7360. }
  7361. },
  7362. frontAlt: {
  7363. height: math.unit(4 + 11 / 12, "feet"),
  7364. weight: math.unit(100, "lbs"),
  7365. name: "Front (Alt)",
  7366. image: {
  7367. source: "./media/characters/opal/front-alt.svg"
  7368. }
  7369. },
  7370. },
  7371. [
  7372. {
  7373. name: "Small",
  7374. height: math.unit(4 + 11 / 12, "feet")
  7375. },
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(20, "feet"),
  7379. default: true
  7380. },
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(120, "feet")
  7384. },
  7385. {
  7386. name: "Megamacro",
  7387. height: math.unit(80, "miles")
  7388. },
  7389. {
  7390. name: "True Size",
  7391. height: math.unit(100000, "lightyears")
  7392. },
  7393. ]
  7394. ))
  7395. characterMakers.push(() => makeCharacter(
  7396. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7397. {
  7398. front: {
  7399. height: math.unit(6, "feet"),
  7400. weight: math.unit(200, "lbs"),
  7401. name: "Front",
  7402. image: {
  7403. source: "./media/characters/vector-wuff/front.svg"
  7404. }
  7405. }
  7406. },
  7407. [
  7408. {
  7409. name: "Normal",
  7410. height: math.unit(2.8, "meters")
  7411. },
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(450, "meters"),
  7415. default: true
  7416. },
  7417. {
  7418. name: "Megamacro",
  7419. height: math.unit(15, "kilometers")
  7420. }
  7421. ]
  7422. ))
  7423. characterMakers.push(() => makeCharacter(
  7424. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7425. {
  7426. front: {
  7427. height: math.unit(6, "feet"),
  7428. weight: math.unit(256, "lbs"),
  7429. name: "Front",
  7430. image: {
  7431. source: "./media/characters/dannik/front.svg"
  7432. }
  7433. }
  7434. },
  7435. [
  7436. {
  7437. name: "Macro",
  7438. height: math.unit(69.57, "meters"),
  7439. default: true
  7440. },
  7441. ]
  7442. ))
  7443. characterMakers.push(() => makeCharacter(
  7444. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7445. {
  7446. front: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(120, "lbs"),
  7449. name: "Front",
  7450. image: {
  7451. source: "./media/characters/azura-saharah/front.svg"
  7452. }
  7453. },
  7454. back: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(120, "lbs"),
  7457. name: "Back",
  7458. image: {
  7459. source: "./media/characters/azura-saharah/back.svg"
  7460. }
  7461. },
  7462. },
  7463. [
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(100, "feet"),
  7467. default: true
  7468. },
  7469. ]
  7470. ))
  7471. characterMakers.push(() => makeCharacter(
  7472. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7473. {
  7474. side: {
  7475. height: math.unit(5 + 4 / 12, "feet"),
  7476. weight: math.unit(163, "lbs"),
  7477. name: "Side",
  7478. image: {
  7479. source: "./media/characters/kennedy/side.svg"
  7480. }
  7481. }
  7482. },
  7483. [
  7484. {
  7485. name: "Standard Doggo",
  7486. height: math.unit(5 + 4 / 12, "feet")
  7487. },
  7488. {
  7489. name: "Big Doggo",
  7490. height: math.unit(25 + 3 / 12, "feet"),
  7491. default: true
  7492. },
  7493. ]
  7494. ))
  7495. characterMakers.push(() => makeCharacter(
  7496. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7497. {
  7498. front: {
  7499. height: math.unit(5 + 5/12, "feet"),
  7500. weight: math.unit(100, "lbs"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/odios-de-lunar/front.svg",
  7504. extra: 1468/1323,
  7505. bottom: 22/1490
  7506. }
  7507. }
  7508. },
  7509. [
  7510. {
  7511. name: "Micro",
  7512. height: math.unit(3, "inches")
  7513. },
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(5.5, "feet"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(100, "feet")
  7522. },
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7527. {
  7528. back: {
  7529. height: math.unit(6, "feet"),
  7530. weight: math.unit(220, "lbs"),
  7531. name: "Back",
  7532. image: {
  7533. source: "./media/characters/mandake/back.svg"
  7534. }
  7535. }
  7536. },
  7537. [
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(7, "feet"),
  7541. default: true
  7542. },
  7543. {
  7544. name: "Macro",
  7545. height: math.unit(78, "feet")
  7546. },
  7547. {
  7548. name: "Macro+",
  7549. height: math.unit(300, "meters")
  7550. },
  7551. {
  7552. name: "Macro++",
  7553. height: math.unit(2400, "feet")
  7554. },
  7555. {
  7556. name: "Megamacro",
  7557. height: math.unit(5167, "meters")
  7558. },
  7559. {
  7560. name: "Gigamacro",
  7561. height: math.unit(41769, "miles")
  7562. },
  7563. ]
  7564. ))
  7565. characterMakers.push(() => makeCharacter(
  7566. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7567. {
  7568. front: {
  7569. height: math.unit(6, "feet"),
  7570. weight: math.unit(120, "lbs"),
  7571. name: "Front",
  7572. image: {
  7573. source: "./media/characters/yozey/front.svg"
  7574. }
  7575. },
  7576. frontAlt: {
  7577. height: math.unit(6, "feet"),
  7578. weight: math.unit(120, "lbs"),
  7579. name: "Front (Alt)",
  7580. image: {
  7581. source: "./media/characters/yozey/front-alt.svg"
  7582. }
  7583. },
  7584. side: {
  7585. height: math.unit(6, "feet"),
  7586. weight: math.unit(120, "lbs"),
  7587. name: "Side",
  7588. image: {
  7589. source: "./media/characters/yozey/side.svg"
  7590. }
  7591. },
  7592. },
  7593. [
  7594. {
  7595. name: "Micro",
  7596. height: math.unit(3, "inches"),
  7597. default: true
  7598. },
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(6, "feet")
  7602. }
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(103, "lbs"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/valeska-voss/front.svg"
  7614. }
  7615. }
  7616. },
  7617. [
  7618. {
  7619. name: "Mini-Sized Sub",
  7620. height: math.unit(3.1, "inches")
  7621. },
  7622. {
  7623. name: "Mid-Sized Sub",
  7624. height: math.unit(6.2, "inches")
  7625. },
  7626. {
  7627. name: "Full-Sized Sub",
  7628. height: math.unit(9.3, "inches")
  7629. },
  7630. {
  7631. name: "Normal",
  7632. height: math.unit(5 + 2 / 12, "foot"),
  7633. default: true
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(6, "feet"),
  7642. weight: math.unit(160, "lbs"),
  7643. name: "Front",
  7644. image: {
  7645. source: "./media/characters/gene-zeta/front.svg",
  7646. extra: 3006 / 2826,
  7647. bottom: 182 / 3188
  7648. }
  7649. }
  7650. },
  7651. [
  7652. {
  7653. name: "Micro",
  7654. height: math.unit(6, "inches")
  7655. },
  7656. {
  7657. name: "Normal",
  7658. height: math.unit(5 + 11 / 12, "foot"),
  7659. default: true
  7660. },
  7661. {
  7662. name: "Macro",
  7663. height: math.unit(140, "feet")
  7664. },
  7665. {
  7666. name: "Supercharged",
  7667. height: math.unit(2500, "feet")
  7668. },
  7669. ]
  7670. ))
  7671. characterMakers.push(() => makeCharacter(
  7672. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7673. {
  7674. front: {
  7675. height: math.unit(6, "feet"),
  7676. weight: math.unit(350, "lbs"),
  7677. name: "Front",
  7678. image: {
  7679. source: "./media/characters/razinox/front.svg",
  7680. extra: 1686 / 1548,
  7681. bottom: 28.2 / 1868
  7682. }
  7683. },
  7684. back: {
  7685. height: math.unit(6, "feet"),
  7686. weight: math.unit(350, "lbs"),
  7687. name: "Back",
  7688. image: {
  7689. source: "./media/characters/razinox/back.svg",
  7690. extra: 1660 / 1590,
  7691. bottom: 15 / 1665
  7692. }
  7693. },
  7694. },
  7695. [
  7696. {
  7697. name: "Normal",
  7698. height: math.unit(10 + 8 / 12, "foot")
  7699. },
  7700. {
  7701. name: "Minimacro",
  7702. height: math.unit(15, "foot")
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(60, "foot"),
  7707. default: true
  7708. },
  7709. {
  7710. name: "Megamacro",
  7711. height: math.unit(5, "miles")
  7712. },
  7713. {
  7714. name: "Gigamacro",
  7715. height: math.unit(6000, "miles")
  7716. },
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7721. {
  7722. front: {
  7723. height: math.unit(6, "feet"),
  7724. weight: math.unit(150, "lbs"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/cobalt/front.svg"
  7728. }
  7729. }
  7730. },
  7731. [
  7732. {
  7733. name: "Normal",
  7734. height: math.unit(8 + 1 / 12, "foot")
  7735. },
  7736. {
  7737. name: "Macro",
  7738. height: math.unit(111, "foot"),
  7739. default: true
  7740. },
  7741. {
  7742. name: "Supracosmic",
  7743. height: math.unit(1e42, "feet")
  7744. },
  7745. ]
  7746. ))
  7747. characterMakers.push(() => makeCharacter(
  7748. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7749. {
  7750. front: {
  7751. height: math.unit(5, "inches"),
  7752. name: "Front",
  7753. image: {
  7754. source: "./media/characters/amanda/front.svg",
  7755. extra: 926/791,
  7756. bottom: 38/964
  7757. }
  7758. },
  7759. back: {
  7760. height: math.unit(5, "inches"),
  7761. name: "Back",
  7762. image: {
  7763. source: "./media/characters/amanda/back.svg",
  7764. extra: 909/805,
  7765. bottom: 43/952
  7766. }
  7767. },
  7768. },
  7769. [
  7770. {
  7771. name: "Micro",
  7772. height: math.unit(5, "inches"),
  7773. default: true
  7774. },
  7775. ]
  7776. ))
  7777. characterMakers.push(() => makeCharacter(
  7778. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7779. {
  7780. front: {
  7781. height: math.unit(2.75, "meters"),
  7782. weight: math.unit(1200, "lb"),
  7783. name: "Front",
  7784. image: {
  7785. source: "./media/characters/teal/front.svg",
  7786. extra: 2463 / 2320,
  7787. bottom: 166 / 2629
  7788. }
  7789. },
  7790. back: {
  7791. height: math.unit(2.75, "meters"),
  7792. weight: math.unit(1200, "lb"),
  7793. name: "Back",
  7794. image: {
  7795. source: "./media/characters/teal/back.svg",
  7796. extra: 2580 / 2489,
  7797. bottom: 151 / 2731
  7798. }
  7799. },
  7800. sitting: {
  7801. height: math.unit(1.9, "meters"),
  7802. weight: math.unit(1200, "lb"),
  7803. name: "Sitting",
  7804. image: {
  7805. source: "./media/characters/teal/sitting.svg",
  7806. extra: 623 / 590,
  7807. bottom: 121 / 744
  7808. }
  7809. },
  7810. standing: {
  7811. height: math.unit(2.75, "meters"),
  7812. weight: math.unit(1200, "lb"),
  7813. name: "Standing",
  7814. image: {
  7815. source: "./media/characters/teal/standing.svg",
  7816. extra: 923 / 893,
  7817. bottom: 60 / 983
  7818. }
  7819. },
  7820. stretching: {
  7821. height: math.unit(3.65, "meters"),
  7822. weight: math.unit(1200, "lb"),
  7823. name: "Stretching",
  7824. image: {
  7825. source: "./media/characters/teal/stretching.svg",
  7826. extra: 1276 / 1244,
  7827. bottom: 0 / 1276
  7828. }
  7829. },
  7830. legged: {
  7831. height: math.unit(1.3, "meters"),
  7832. weight: math.unit(100, "lb"),
  7833. name: "Legged",
  7834. image: {
  7835. source: "./media/characters/teal/legged.svg",
  7836. extra: 462 / 437,
  7837. bottom: 24 / 486
  7838. }
  7839. },
  7840. naga: {
  7841. height: math.unit(5.4, "meters"),
  7842. weight: math.unit(4000, "lb"),
  7843. name: "Naga",
  7844. image: {
  7845. source: "./media/characters/teal/naga.svg",
  7846. extra: 1902 / 1858,
  7847. bottom: 0 / 1902
  7848. }
  7849. },
  7850. hand: {
  7851. height: math.unit(0.52, "meters"),
  7852. name: "Hand",
  7853. image: {
  7854. source: "./media/characters/teal/hand.svg"
  7855. }
  7856. },
  7857. maw: {
  7858. height: math.unit(0.43, "meters"),
  7859. name: "Maw",
  7860. image: {
  7861. source: "./media/characters/teal/maw.svg"
  7862. }
  7863. },
  7864. slit: {
  7865. height: math.unit(0.25, "meters"),
  7866. name: "Slit",
  7867. image: {
  7868. source: "./media/characters/teal/slit.svg"
  7869. }
  7870. },
  7871. },
  7872. [
  7873. {
  7874. name: "Normal",
  7875. height: math.unit(2.75, "meters"),
  7876. default: true
  7877. },
  7878. {
  7879. name: "Macro",
  7880. height: math.unit(300, "feet")
  7881. },
  7882. {
  7883. name: "Macro+",
  7884. height: math.unit(2000, "feet")
  7885. },
  7886. ]
  7887. ))
  7888. characterMakers.push(() => makeCharacter(
  7889. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7890. {
  7891. frontCat: {
  7892. height: math.unit(6, "feet"),
  7893. weight: math.unit(180, "lbs"),
  7894. name: "Front (Cat)",
  7895. image: {
  7896. source: "./media/characters/ravin-amulet/front-cat.svg"
  7897. }
  7898. },
  7899. frontCatAlt: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(180, "lbs"),
  7902. name: "Front (Alt, Cat)",
  7903. image: {
  7904. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7905. }
  7906. },
  7907. frontWerewolf: {
  7908. height: math.unit(6 * 1.2, "feet"),
  7909. weight: math.unit(225, "lbs"),
  7910. name: "Front (Werewolf)",
  7911. image: {
  7912. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7913. }
  7914. },
  7915. backWerewolf: {
  7916. height: math.unit(6 * 1.2, "feet"),
  7917. weight: math.unit(225, "lbs"),
  7918. name: "Back (Werewolf)",
  7919. image: {
  7920. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7921. }
  7922. },
  7923. },
  7924. [
  7925. {
  7926. name: "Nano",
  7927. height: math.unit(1, "micrometer")
  7928. },
  7929. {
  7930. name: "Micro",
  7931. height: math.unit(1, "inch")
  7932. },
  7933. {
  7934. name: "Normal",
  7935. height: math.unit(6, "feet"),
  7936. default: true
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(60, "feet")
  7941. }
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7946. {
  7947. front: {
  7948. height: math.unit(6, "feet"),
  7949. weight: math.unit(165, "lbs"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/fluoresce/front.svg"
  7953. }
  7954. }
  7955. },
  7956. [
  7957. {
  7958. name: "Micro",
  7959. height: math.unit(6, "cm")
  7960. },
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(5 + 7 / 12, "feet"),
  7964. default: true
  7965. },
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(56, "feet")
  7969. },
  7970. {
  7971. name: "Megamacro",
  7972. height: math.unit(1.9, "miles")
  7973. },
  7974. ]
  7975. ))
  7976. characterMakers.push(() => makeCharacter(
  7977. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7978. {
  7979. front: {
  7980. height: math.unit(9 + 6 / 12, "feet"),
  7981. weight: math.unit(523, "lbs"),
  7982. name: "Side",
  7983. image: {
  7984. source: "./media/characters/aurora/side.svg"
  7985. }
  7986. }
  7987. },
  7988. [
  7989. {
  7990. name: "Normal",
  7991. height: math.unit(9 + 6 / 12, "feet")
  7992. },
  7993. {
  7994. name: "Macro",
  7995. height: math.unit(96, "feet"),
  7996. default: true
  7997. },
  7998. {
  7999. name: "Macro+",
  8000. height: math.unit(243, "feet")
  8001. },
  8002. ]
  8003. ))
  8004. characterMakers.push(() => makeCharacter(
  8005. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8006. {
  8007. front: {
  8008. height: math.unit(194, "cm"),
  8009. weight: math.unit(90, "kg"),
  8010. name: "Front",
  8011. image: {
  8012. source: "./media/characters/ranek/front.svg",
  8013. extra: 1862/1791,
  8014. bottom: 80/1942
  8015. }
  8016. },
  8017. back: {
  8018. height: math.unit(194, "cm"),
  8019. weight: math.unit(90, "kg"),
  8020. name: "Back",
  8021. image: {
  8022. source: "./media/characters/ranek/back.svg",
  8023. extra: 1853/1787,
  8024. bottom: 74/1927
  8025. }
  8026. },
  8027. feral: {
  8028. height: math.unit(30, "cm"),
  8029. weight: math.unit(1.6, "lbs"),
  8030. name: "Feral",
  8031. image: {
  8032. source: "./media/characters/ranek/feral.svg",
  8033. extra: 990/631,
  8034. bottom: 29/1019
  8035. }
  8036. },
  8037. },
  8038. [
  8039. {
  8040. name: "Normal",
  8041. height: math.unit(194, "cm"),
  8042. default: true
  8043. },
  8044. {
  8045. name: "Macro",
  8046. height: math.unit(100, "meters")
  8047. },
  8048. ]
  8049. ))
  8050. characterMakers.push(() => makeCharacter(
  8051. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8052. {
  8053. front: {
  8054. height: math.unit(5 + 6 / 12, "feet"),
  8055. weight: math.unit(153, "lbs"),
  8056. name: "Front",
  8057. image: {
  8058. source: "./media/characters/andrew-cooper/front.svg"
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Nano",
  8065. height: math.unit(1, "mm")
  8066. },
  8067. {
  8068. name: "Micro",
  8069. height: math.unit(2, "inches")
  8070. },
  8071. {
  8072. name: "Normal",
  8073. height: math.unit(5 + 6 / 12, "feet"),
  8074. default: true
  8075. }
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(6, "feet"),
  8083. weight: math.unit(180, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/akane-sato/front.svg",
  8087. extra: 1219 / 1140
  8088. }
  8089. },
  8090. back: {
  8091. height: math.unit(6, "feet"),
  8092. weight: math.unit(180, "lbs"),
  8093. name: "Back",
  8094. image: {
  8095. source: "./media/characters/akane-sato/back.svg",
  8096. extra: 1219 / 1170
  8097. }
  8098. },
  8099. },
  8100. [
  8101. {
  8102. name: "Normal",
  8103. height: math.unit(2.5, "meters")
  8104. },
  8105. {
  8106. name: "Macro",
  8107. height: math.unit(250, "meters"),
  8108. default: true
  8109. },
  8110. {
  8111. name: "Megamacro",
  8112. height: math.unit(25, "km")
  8113. },
  8114. ]
  8115. ))
  8116. characterMakers.push(() => makeCharacter(
  8117. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8118. {
  8119. front: {
  8120. height: math.unit(6, "feet"),
  8121. weight: math.unit(65, "kg"),
  8122. name: "Front",
  8123. image: {
  8124. source: "./media/characters/rook/front.svg",
  8125. extra: 960 / 950
  8126. }
  8127. }
  8128. },
  8129. [
  8130. {
  8131. name: "Normal",
  8132. height: math.unit(8.8, "feet")
  8133. },
  8134. {
  8135. name: "Macro",
  8136. height: math.unit(88, "feet"),
  8137. default: true
  8138. },
  8139. {
  8140. name: "Megamacro",
  8141. height: math.unit(8, "miles")
  8142. },
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8147. {
  8148. front: {
  8149. height: math.unit(12 + 2 / 12, "feet"),
  8150. weight: math.unit(808, "lbs"),
  8151. name: "Front",
  8152. image: {
  8153. source: "./media/characters/prodigy/front.svg"
  8154. }
  8155. }
  8156. },
  8157. [
  8158. {
  8159. name: "Normal",
  8160. height: math.unit(12 + 2 / 12, "feet"),
  8161. default: true
  8162. },
  8163. {
  8164. name: "Macro",
  8165. height: math.unit(143, "feet")
  8166. },
  8167. {
  8168. name: "Macro+",
  8169. height: math.unit(400, "feet")
  8170. },
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8175. {
  8176. front: {
  8177. height: math.unit(6, "feet"),
  8178. weight: math.unit(225, "lbs"),
  8179. name: "Front",
  8180. image: {
  8181. source: "./media/characters/daniel/front.svg"
  8182. }
  8183. },
  8184. leaning: {
  8185. height: math.unit(6, "feet"),
  8186. weight: math.unit(225, "lbs"),
  8187. name: "Leaning",
  8188. image: {
  8189. source: "./media/characters/daniel/leaning.svg"
  8190. }
  8191. },
  8192. },
  8193. [
  8194. {
  8195. name: "Macro",
  8196. height: math.unit(1000, "feet"),
  8197. default: true
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(6, "feet"),
  8206. weight: math.unit(88, "lbs"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/chiros/front.svg",
  8210. extra: 306 / 226
  8211. }
  8212. },
  8213. side: {
  8214. height: math.unit(6, "feet"),
  8215. weight: math.unit(88, "lbs"),
  8216. name: "Side",
  8217. image: {
  8218. source: "./media/characters/chiros/side.svg",
  8219. extra: 306 / 226
  8220. }
  8221. },
  8222. },
  8223. [
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(6, "cm"),
  8227. default: true
  8228. },
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8233. {
  8234. front: {
  8235. height: math.unit(6, "feet"),
  8236. weight: math.unit(100, "lbs"),
  8237. name: "Front",
  8238. image: {
  8239. source: "./media/characters/selka/front.svg",
  8240. extra: 947 / 887
  8241. }
  8242. }
  8243. },
  8244. [
  8245. {
  8246. name: "Normal",
  8247. height: math.unit(5, "cm"),
  8248. default: true
  8249. },
  8250. ]
  8251. ))
  8252. characterMakers.push(() => makeCharacter(
  8253. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8254. {
  8255. front: {
  8256. height: math.unit(8 + 3 / 12, "feet"),
  8257. weight: math.unit(424, "lbs"),
  8258. name: "Front",
  8259. image: {
  8260. source: "./media/characters/verin/front.svg",
  8261. extra: 1845 / 1550
  8262. }
  8263. },
  8264. frontArmored: {
  8265. height: math.unit(8 + 3 / 12, "feet"),
  8266. weight: math.unit(424, "lbs"),
  8267. name: "Front (Armored)",
  8268. image: {
  8269. source: "./media/characters/verin/front-armor.svg",
  8270. extra: 1845 / 1550,
  8271. bottom: 0.01
  8272. }
  8273. },
  8274. back: {
  8275. height: math.unit(8 + 3 / 12, "feet"),
  8276. weight: math.unit(424, "lbs"),
  8277. name: "Back",
  8278. image: {
  8279. source: "./media/characters/verin/back.svg",
  8280. bottom: 0.1,
  8281. extra: 1
  8282. }
  8283. },
  8284. foot: {
  8285. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8286. name: "Foot",
  8287. image: {
  8288. source: "./media/characters/verin/foot.svg"
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(8 + 3 / 12, "feet")
  8296. },
  8297. {
  8298. name: "Minimacro",
  8299. height: math.unit(21, "feet"),
  8300. default: true
  8301. },
  8302. {
  8303. name: "Macro",
  8304. height: math.unit(626, "feet")
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(2.718, "meters"),
  8313. weight: math.unit(150, "lbs"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/sovrim-terraquian/front.svg",
  8317. extra: 1752/1689,
  8318. bottom: 36/1788
  8319. }
  8320. },
  8321. back: {
  8322. height: math.unit(2.718, "meters"),
  8323. weight: math.unit(150, "lbs"),
  8324. name: "Back",
  8325. image: {
  8326. source: "./media/characters/sovrim-terraquian/back.svg",
  8327. extra: 1698/1657,
  8328. bottom: 58/1756
  8329. }
  8330. },
  8331. tongue: {
  8332. height: math.unit(2.865, "feet"),
  8333. name: "Tongue",
  8334. image: {
  8335. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8336. }
  8337. },
  8338. hand: {
  8339. height: math.unit(1.61, "feet"),
  8340. name: "Hand",
  8341. image: {
  8342. source: "./media/characters/sovrim-terraquian/hand.svg"
  8343. }
  8344. },
  8345. foot: {
  8346. height: math.unit(1.05, "feet"),
  8347. name: "Foot",
  8348. image: {
  8349. source: "./media/characters/sovrim-terraquian/foot.svg"
  8350. }
  8351. },
  8352. footAlt: {
  8353. height: math.unit(0.88, "feet"),
  8354. name: "Foot (Alt)",
  8355. image: {
  8356. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Micro",
  8363. height: math.unit(2, "inches")
  8364. },
  8365. {
  8366. name: "Small",
  8367. height: math.unit(1, "meter")
  8368. },
  8369. {
  8370. name: "Normal",
  8371. height: math.unit(Math.E, "meters"),
  8372. default: true
  8373. },
  8374. {
  8375. name: "Macro",
  8376. height: math.unit(20, "meters")
  8377. },
  8378. {
  8379. name: "Macro+",
  8380. height: math.unit(400, "meters")
  8381. },
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(7, "feet"),
  8389. weight: math.unit(489, "lbs"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/reece-silvermane/front.svg",
  8393. bottom: 0.02,
  8394. extra: 1
  8395. }
  8396. },
  8397. },
  8398. [
  8399. {
  8400. name: "Macro",
  8401. height: math.unit(1.5, "miles"),
  8402. default: true
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8408. {
  8409. front: {
  8410. height: math.unit(6, "feet"),
  8411. weight: math.unit(78, "kg"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/kane/front.svg",
  8415. extra: 978 / 899
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(2.1, "m"),
  8423. },
  8424. {
  8425. name: "Macro",
  8426. height: math.unit(1, "km"),
  8427. default: true
  8428. },
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8433. {
  8434. front: {
  8435. height: math.unit(6, "feet"),
  8436. weight: math.unit(200, "kg"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/tegon/front.svg",
  8440. bottom: 0.01,
  8441. extra: 1
  8442. }
  8443. },
  8444. },
  8445. [
  8446. {
  8447. name: "Micro",
  8448. height: math.unit(1, "inch")
  8449. },
  8450. {
  8451. name: "Normal",
  8452. height: math.unit(6 + 3 / 12, "feet"),
  8453. default: true
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(300, "feet")
  8458. },
  8459. {
  8460. name: "Megamacro",
  8461. height: math.unit(69, "miles")
  8462. },
  8463. ]
  8464. ))
  8465. characterMakers.push(() => makeCharacter(
  8466. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8467. {
  8468. side: {
  8469. height: math.unit(6, "feet"),
  8470. weight: math.unit(2304, "lbs"),
  8471. name: "Side",
  8472. image: {
  8473. source: "./media/characters/arcturax/side.svg",
  8474. extra: 790 / 376,
  8475. bottom: 0.01
  8476. }
  8477. },
  8478. },
  8479. [
  8480. {
  8481. name: "Micro",
  8482. height: math.unit(2, "inch")
  8483. },
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(6, "feet")
  8487. },
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(39, "feet"),
  8491. default: true
  8492. },
  8493. {
  8494. name: "Megamacro",
  8495. height: math.unit(7, "miles")
  8496. },
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8501. {
  8502. front: {
  8503. height: math.unit(6, "feet"),
  8504. weight: math.unit(50, "lbs"),
  8505. name: "Front",
  8506. image: {
  8507. source: "./media/characters/sentri/front.svg",
  8508. extra: 1750 / 1570,
  8509. bottom: 0.025
  8510. }
  8511. },
  8512. frontAlt: {
  8513. height: math.unit(6, "feet"),
  8514. weight: math.unit(50, "lbs"),
  8515. name: "Front (Alt)",
  8516. image: {
  8517. source: "./media/characters/sentri/front-alt.svg",
  8518. extra: 1750 / 1570,
  8519. bottom: 0.025
  8520. }
  8521. },
  8522. },
  8523. [
  8524. {
  8525. name: "Normal",
  8526. height: math.unit(15, "feet"),
  8527. default: true
  8528. },
  8529. {
  8530. name: "Macro",
  8531. height: math.unit(2500, "feet")
  8532. }
  8533. ]
  8534. ))
  8535. characterMakers.push(() => makeCharacter(
  8536. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8537. {
  8538. front: {
  8539. height: math.unit(5 + 8 / 12, "feet"),
  8540. weight: math.unit(130, "lbs"),
  8541. name: "Front",
  8542. image: {
  8543. source: "./media/characters/corvin/front.svg",
  8544. extra: 1803 / 1629
  8545. }
  8546. },
  8547. frontShirt: {
  8548. height: math.unit(5 + 8 / 12, "feet"),
  8549. weight: math.unit(130, "lbs"),
  8550. name: "Front (Shirt)",
  8551. image: {
  8552. source: "./media/characters/corvin/front-shirt.svg",
  8553. extra: 1803 / 1629
  8554. }
  8555. },
  8556. frontPoncho: {
  8557. height: math.unit(5 + 8 / 12, "feet"),
  8558. weight: math.unit(130, "lbs"),
  8559. name: "Front (Poncho)",
  8560. image: {
  8561. source: "./media/characters/corvin/front-poncho.svg",
  8562. extra: 1803 / 1629
  8563. }
  8564. },
  8565. side: {
  8566. height: math.unit(5 + 8 / 12, "feet"),
  8567. weight: math.unit(130, "lbs"),
  8568. name: "Side",
  8569. image: {
  8570. source: "./media/characters/corvin/side.svg",
  8571. extra: 1012 / 945
  8572. }
  8573. },
  8574. back: {
  8575. height: math.unit(5 + 8 / 12, "feet"),
  8576. weight: math.unit(130, "lbs"),
  8577. name: "Back",
  8578. image: {
  8579. source: "./media/characters/corvin/back.svg",
  8580. extra: 1803 / 1629
  8581. }
  8582. },
  8583. },
  8584. [
  8585. {
  8586. name: "Micro",
  8587. height: math.unit(3, "inches")
  8588. },
  8589. {
  8590. name: "Normal",
  8591. height: math.unit(5 + 8 / 12, "feet")
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(300, "feet"),
  8596. default: true
  8597. },
  8598. {
  8599. name: "Megamacro",
  8600. height: math.unit(500, "miles")
  8601. }
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8606. {
  8607. front: {
  8608. height: math.unit(6, "feet"),
  8609. weight: math.unit(135, "lbs"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/q/front.svg",
  8613. extra: 854 / 752,
  8614. bottom: 0.005
  8615. }
  8616. },
  8617. back: {
  8618. height: math.unit(6, "feet"),
  8619. weight: math.unit(130, "lbs"),
  8620. name: "Back",
  8621. image: {
  8622. source: "./media/characters/q/back.svg",
  8623. extra: 854 / 752
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Macro",
  8630. height: math.unit(90, "feet"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Extra Macro",
  8635. height: math.unit(300, "feet"),
  8636. },
  8637. {
  8638. name: "BIG WALF",
  8639. height: math.unit(750, "feet"),
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(6, "feet"),
  8648. weight: math.unit(150, "lbs"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/carley/front.svg",
  8652. extra: 3927 / 3540,
  8653. bottom: 29.2 / 735
  8654. }
  8655. }
  8656. },
  8657. [
  8658. {
  8659. name: "Normal",
  8660. height: math.unit(6 + 3 / 12, "feet")
  8661. },
  8662. {
  8663. name: "Macro",
  8664. height: math.unit(185, "feet"),
  8665. default: true
  8666. },
  8667. {
  8668. name: "Megamacro",
  8669. height: math.unit(8, "miles"),
  8670. },
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(3, "feet"),
  8678. weight: math.unit(28, "lbs"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/citrine/front.svg"
  8682. }
  8683. }
  8684. },
  8685. [
  8686. {
  8687. name: "Normal",
  8688. height: math.unit(3, "feet"),
  8689. default: true
  8690. }
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8695. {
  8696. front: {
  8697. height: math.unit(14, "feet"),
  8698. weight: math.unit(1450, "kg"),
  8699. capacity: math.unit(15, "people"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/aura-starwind/front.svg",
  8703. extra: 1440/1327,
  8704. bottom: 11/1451
  8705. }
  8706. },
  8707. side: {
  8708. height: math.unit(14, "feet"),
  8709. weight: math.unit(1450, "kg"),
  8710. capacity: math.unit(15, "people"),
  8711. name: "Side",
  8712. image: {
  8713. source: "./media/characters/aura-starwind/side.svg",
  8714. extra: 1654 / 1497
  8715. }
  8716. },
  8717. taur: {
  8718. height: math.unit(18, "feet"),
  8719. weight: math.unit(5500, "kg"),
  8720. capacity: math.unit(50, "people"),
  8721. name: "Taur",
  8722. image: {
  8723. source: "./media/characters/aura-starwind/taur.svg",
  8724. extra: 1760 / 1650
  8725. }
  8726. },
  8727. feral: {
  8728. height: math.unit(46, "feet"),
  8729. weight: math.unit(25000, "kg"),
  8730. capacity: math.unit(120, "people"),
  8731. name: "Feral",
  8732. image: {
  8733. source: "./media/characters/aura-starwind/feral.svg"
  8734. }
  8735. },
  8736. },
  8737. [
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(14, "feet"),
  8741. default: true
  8742. },
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(50, "meters")
  8746. },
  8747. {
  8748. name: "Megamacro",
  8749. height: math.unit(5000, "meters")
  8750. },
  8751. {
  8752. name: "Gigamacro",
  8753. height: math.unit(100000, "kilometers")
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(2 + 7 / 12, "feet"),
  8762. weight: math.unit(32, "lbs"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/rivet/front.svg",
  8766. extra: 1716 / 1658,
  8767. bottom: 0.03
  8768. }
  8769. },
  8770. foot: {
  8771. height: math.unit(0.551, "feet"),
  8772. name: "Rivet's Foot",
  8773. image: {
  8774. source: "./media/characters/rivet/foot.svg"
  8775. },
  8776. rename: true
  8777. }
  8778. },
  8779. [
  8780. {
  8781. name: "Micro",
  8782. height: math.unit(1.5, "inches"),
  8783. },
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(2 + 7 / 12, "feet"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Macro",
  8791. height: math.unit(85, "feet")
  8792. },
  8793. {
  8794. name: "Megamacro",
  8795. height: math.unit(2.2, "km")
  8796. }
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(5 + 9 / 12, "feet"),
  8804. weight: math.unit(150, "lbs"),
  8805. name: "Front",
  8806. image: {
  8807. source: "./media/characters/coffee/front.svg",
  8808. extra: 3666 / 3032,
  8809. bottom: 0.04
  8810. }
  8811. },
  8812. foot: {
  8813. height: math.unit(1.29, "feet"),
  8814. name: "Foot",
  8815. image: {
  8816. source: "./media/characters/coffee/foot.svg"
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Micro",
  8823. height: math.unit(2, "inches"),
  8824. },
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(5 + 9 / 12, "feet"),
  8828. default: true
  8829. },
  8830. {
  8831. name: "Macro",
  8832. height: math.unit(800, "feet")
  8833. },
  8834. {
  8835. name: "Megamacro",
  8836. height: math.unit(25, "miles")
  8837. }
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8842. {
  8843. front: {
  8844. height: math.unit(6, "feet"),
  8845. weight: math.unit(200, "lbs"),
  8846. name: "Front",
  8847. image: {
  8848. source: "./media/characters/chari-gal/front.svg",
  8849. extra: 1568 / 1385,
  8850. bottom: 0.047
  8851. }
  8852. },
  8853. gigantamax: {
  8854. height: math.unit(6 * 16, "feet"),
  8855. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8856. name: "Gigantamax",
  8857. image: {
  8858. source: "./media/characters/chari-gal/gigantamax.svg",
  8859. extra: 1124 / 888,
  8860. bottom: 0.03
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Normal",
  8867. height: math.unit(5 + 7 / 12, "feet")
  8868. },
  8869. {
  8870. name: "Macro",
  8871. height: math.unit(200, "feet"),
  8872. default: true
  8873. }
  8874. ]
  8875. ))
  8876. characterMakers.push(() => makeCharacter(
  8877. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8878. {
  8879. front: {
  8880. height: math.unit(6, "feet"),
  8881. weight: math.unit(150, "lbs"),
  8882. name: "Front",
  8883. image: {
  8884. source: "./media/characters/nova/front.svg",
  8885. extra: 5000 / 4722,
  8886. bottom: 0.02
  8887. }
  8888. }
  8889. },
  8890. [
  8891. {
  8892. name: "Micro-",
  8893. height: math.unit(0.8, "inches")
  8894. },
  8895. {
  8896. name: "Micro",
  8897. height: math.unit(2, "inches"),
  8898. default: true
  8899. },
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(3 + 1 / 12, "feet"),
  8907. weight: math.unit(21.7, "lbs"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/argent/front.svg",
  8911. extra: 1471 / 1331,
  8912. bottom: 100.8 / 1575.5
  8913. }
  8914. }
  8915. },
  8916. [
  8917. {
  8918. name: "Micro",
  8919. height: math.unit(2, "inches")
  8920. },
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(3 + 1 / 12, "feet"),
  8924. default: true
  8925. },
  8926. {
  8927. name: "Macro",
  8928. height: math.unit(120, "feet")
  8929. },
  8930. ]
  8931. ))
  8932. characterMakers.push(() => makeCharacter(
  8933. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8934. {
  8935. lamp: {
  8936. height: math.unit(7 * 1559 / 989, "feet"),
  8937. name: "Magic Lamp",
  8938. image: {
  8939. source: "./media/characters/mira-al-cul/lamp.svg",
  8940. extra: 1617 / 1559
  8941. }
  8942. },
  8943. front: {
  8944. height: math.unit(7, "feet"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/mira-al-cul/front.svg",
  8948. extra: 1044 / 990
  8949. }
  8950. },
  8951. },
  8952. [
  8953. {
  8954. name: "Heavily Restricted",
  8955. height: math.unit(7 * 1559 / 989, "feet")
  8956. },
  8957. {
  8958. name: "Freshly Freed",
  8959. height: math.unit(50 * 1559 / 989, "feet")
  8960. },
  8961. {
  8962. name: "World Encompassing",
  8963. height: math.unit(10000 * 1559 / 989, "miles")
  8964. },
  8965. {
  8966. name: "Galactic",
  8967. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8968. },
  8969. {
  8970. name: "Palmed Universe",
  8971. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Multiversal Matriarch",
  8976. height: math.unit(8.87e10, "yottameters")
  8977. },
  8978. {
  8979. name: "Void Mother",
  8980. height: math.unit(3.14e110, "yottaparsecs")
  8981. },
  8982. {
  8983. name: "Toying with Transcendence",
  8984. height: math.unit(1e307, "meters")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8990. {
  8991. front: {
  8992. height: math.unit(17 + 1 / 12, "feet"),
  8993. weight: math.unit(476.2 * 5, "lbs"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/kuro-shi-uchū/front.svg",
  8997. extra: 2329 / 1835,
  8998. bottom: 0.02
  8999. }
  9000. },
  9001. },
  9002. [
  9003. {
  9004. name: "Micro",
  9005. height: math.unit(2, "inches")
  9006. },
  9007. {
  9008. name: "Normal",
  9009. height: math.unit(12, "meters")
  9010. },
  9011. {
  9012. name: "Planetary",
  9013. height: math.unit(0.00929, "AU"),
  9014. default: true
  9015. },
  9016. {
  9017. name: "Universal",
  9018. height: math.unit(20, "gigaparsecs")
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9024. {
  9025. front: {
  9026. height: math.unit(5 + 2 / 12, "feet"),
  9027. weight: math.unit(120, "lbs"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/katherine/front.svg",
  9031. extra: 2075 / 1969
  9032. }
  9033. },
  9034. dress: {
  9035. height: math.unit(5 + 2 / 12, "feet"),
  9036. weight: math.unit(120, "lbs"),
  9037. name: "Dress",
  9038. image: {
  9039. source: "./media/characters/katherine/dress.svg",
  9040. extra: 2258 / 2064
  9041. }
  9042. },
  9043. },
  9044. [
  9045. {
  9046. name: "Micro",
  9047. height: math.unit(1, "inches"),
  9048. default: true
  9049. },
  9050. {
  9051. name: "Normal",
  9052. height: math.unit(5 + 2 / 12, "feet")
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(100, "meters")
  9057. },
  9058. {
  9059. name: "Megamacro",
  9060. height: math.unit(80, "miles")
  9061. },
  9062. ]
  9063. ))
  9064. characterMakers.push(() => makeCharacter(
  9065. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9066. {
  9067. front: {
  9068. height: math.unit(7 + 8 / 12, "feet"),
  9069. weight: math.unit(250, "lbs"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/yevis/front.svg",
  9073. extra: 1938 / 1755
  9074. }
  9075. }
  9076. },
  9077. [
  9078. {
  9079. name: "Mortal",
  9080. height: math.unit(7 + 8 / 12, "feet")
  9081. },
  9082. {
  9083. name: "Battle",
  9084. height: math.unit(25 + 11 / 12, "feet")
  9085. },
  9086. {
  9087. name: "Wrath",
  9088. height: math.unit(1654 + 11 / 12, "feet")
  9089. },
  9090. {
  9091. name: "Planet Destroyer",
  9092. height: math.unit(12000, "miles")
  9093. },
  9094. {
  9095. name: "Galaxy Conqueror",
  9096. height: math.unit(1.45, "zettameters"),
  9097. default: true
  9098. },
  9099. {
  9100. name: "Universal War",
  9101. height: math.unit(184, "gigaparsecs")
  9102. },
  9103. {
  9104. name: "Eternity War",
  9105. height: math.unit(1.98e55, "yottaparsecs")
  9106. },
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9111. {
  9112. front: {
  9113. height: math.unit(5 + 8 / 12, "feet"),
  9114. weight: math.unit(63, "kg"),
  9115. name: "Front",
  9116. image: {
  9117. source: "./media/characters/xavier/front.svg",
  9118. extra: 944 / 883
  9119. }
  9120. },
  9121. frontStretch: {
  9122. height: math.unit(5 + 8 / 12, "feet"),
  9123. weight: math.unit(63, "kg"),
  9124. name: "Stretching",
  9125. image: {
  9126. source: "./media/characters/xavier/front-stretch.svg",
  9127. extra: 962 / 820
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Normal",
  9134. height: math.unit(5 + 8 / 12, "feet")
  9135. },
  9136. {
  9137. name: "Macro",
  9138. height: math.unit(100, "meters"),
  9139. default: true
  9140. },
  9141. {
  9142. name: "McLargeHuge",
  9143. height: math.unit(10, "miles")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(5 + 5 / 12, "feet"),
  9152. weight: math.unit(150, "lb"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/joshii/front.svg",
  9156. extra: 765 / 653,
  9157. bottom: 51 / 816
  9158. }
  9159. },
  9160. foot: {
  9161. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9162. name: "Foot",
  9163. image: {
  9164. source: "./media/characters/joshii/foot.svg"
  9165. }
  9166. },
  9167. },
  9168. [
  9169. {
  9170. name: "Micro",
  9171. height: math.unit(2, "inches"),
  9172. default: true
  9173. },
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(5 + 5 / 12, "feet")
  9177. },
  9178. {
  9179. name: "Macro",
  9180. height: math.unit(785, "feet")
  9181. },
  9182. {
  9183. name: "Megamacro",
  9184. height: math.unit(24.5, "miles")
  9185. },
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(6, "feet"),
  9193. weight: math.unit(150, "lb"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/goddess-elizabeth/front.svg",
  9197. extra: 1800 / 1525,
  9198. bottom: 0.005
  9199. }
  9200. },
  9201. foot: {
  9202. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9203. name: "Foot",
  9204. image: {
  9205. source: "./media/characters/goddess-elizabeth/foot.svg"
  9206. }
  9207. },
  9208. mouth: {
  9209. height: math.unit(6, "feet"),
  9210. name: "Mouth",
  9211. image: {
  9212. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9213. }
  9214. },
  9215. },
  9216. [
  9217. {
  9218. name: "Micro",
  9219. height: math.unit(12, "feet")
  9220. },
  9221. {
  9222. name: "Normal",
  9223. height: math.unit(80, "miles"),
  9224. default: true
  9225. },
  9226. {
  9227. name: "Macro",
  9228. height: math.unit(15000, "parsecs")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9234. {
  9235. front: {
  9236. height: math.unit(5 + 9 / 12, "feet"),
  9237. weight: math.unit(144, "lb"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/kara/front.svg"
  9241. }
  9242. },
  9243. feet: {
  9244. height: math.unit(6 / 6.765, "feet"),
  9245. name: "Kara's Feet",
  9246. rename: true,
  9247. image: {
  9248. source: "./media/characters/kara/feet.svg"
  9249. }
  9250. },
  9251. },
  9252. [
  9253. {
  9254. name: "Normal",
  9255. height: math.unit(5 + 9 / 12, "feet")
  9256. },
  9257. {
  9258. name: "Macro",
  9259. height: math.unit(174, "feet"),
  9260. default: true
  9261. },
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9266. {
  9267. front: {
  9268. height: math.unit(18, "feet"),
  9269. weight: math.unit(4050, "lb"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/tyrone/front.svg",
  9273. extra: 2405 / 2270,
  9274. bottom: 182 / 2587
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(18, "feet"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Macro",
  9286. height: math.unit(300, "feet")
  9287. },
  9288. {
  9289. name: "Megamacro",
  9290. height: math.unit(15, "km")
  9291. },
  9292. {
  9293. name: "Gigamacro",
  9294. height: math.unit(500, "km")
  9295. },
  9296. {
  9297. name: "Teramacro",
  9298. height: math.unit(0.5, "gigameters")
  9299. },
  9300. {
  9301. name: "Omnimacro",
  9302. height: math.unit(1e252, "yottauniverse")
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9308. {
  9309. front: {
  9310. height: math.unit(7 + 8 / 12, "feet"),
  9311. weight: math.unit(120, "lb"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/danny/front.svg",
  9315. extra: 1490 / 1350
  9316. }
  9317. },
  9318. back: {
  9319. height: math.unit(7 + 8 / 12, "feet"),
  9320. weight: math.unit(120, "lb"),
  9321. name: "Back",
  9322. image: {
  9323. source: "./media/characters/danny/back.svg",
  9324. extra: 1490 / 1350
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(7 + 8 / 12, "feet"),
  9332. default: true
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9338. {
  9339. front: {
  9340. height: math.unit(3.5, "inches"),
  9341. weight: math.unit(19, "grams"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/mallow/front.svg",
  9345. extra: 471 / 431
  9346. }
  9347. },
  9348. back: {
  9349. height: math.unit(3.5, "inches"),
  9350. weight: math.unit(19, "grams"),
  9351. name: "Back",
  9352. image: {
  9353. source: "./media/characters/mallow/back.svg",
  9354. extra: 471 / 431
  9355. }
  9356. },
  9357. },
  9358. [
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(3.5, "inches"),
  9362. default: true
  9363. },
  9364. ]
  9365. ))
  9366. characterMakers.push(() => makeCharacter(
  9367. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9368. {
  9369. front: {
  9370. height: math.unit(9, "feet"),
  9371. weight: math.unit(230, "kg"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/starry-aqua/front.svg"
  9375. }
  9376. },
  9377. back: {
  9378. height: math.unit(9, "feet"),
  9379. weight: math.unit(230, "kg"),
  9380. name: "Back",
  9381. image: {
  9382. source: "./media/characters/starry-aqua/back.svg"
  9383. }
  9384. },
  9385. hand: {
  9386. height: math.unit(9 * 0.1168, "feet"),
  9387. name: "Hand",
  9388. image: {
  9389. source: "./media/characters/starry-aqua/hand.svg"
  9390. }
  9391. },
  9392. foot: {
  9393. height: math.unit(9 * 0.18, "feet"),
  9394. name: "Foot",
  9395. image: {
  9396. source: "./media/characters/starry-aqua/foot.svg"
  9397. }
  9398. }
  9399. },
  9400. [
  9401. {
  9402. name: "Micro",
  9403. height: math.unit(3, "inches")
  9404. },
  9405. {
  9406. name: "Normal",
  9407. height: math.unit(9, "feet")
  9408. },
  9409. {
  9410. name: "Macro",
  9411. height: math.unit(300, "feet"),
  9412. default: true
  9413. },
  9414. {
  9415. name: "Megamacro",
  9416. height: math.unit(3200, "feet")
  9417. }
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9422. {
  9423. front: {
  9424. height: math.unit(15, "feet"),
  9425. weight: math.unit(5026, "lb"),
  9426. name: "Front",
  9427. image: {
  9428. source: "./media/characters/luka-towers/front.svg",
  9429. extra: 1269/1133,
  9430. bottom: 51/1320
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(15, "feet"),
  9438. default: true
  9439. },
  9440. {
  9441. name: "Minimacro",
  9442. height: math.unit(25, "feet")
  9443. },
  9444. {
  9445. name: "Macro",
  9446. height: math.unit(320, "feet")
  9447. },
  9448. {
  9449. name: "Megamacro",
  9450. height: math.unit(35000, "feet")
  9451. },
  9452. {
  9453. name: "Gigamacro",
  9454. height: math.unit(4000, "miles")
  9455. },
  9456. {
  9457. name: "Teramacro",
  9458. height: math.unit(15000, "miles")
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(6, "feet"),
  9467. weight: math.unit(150, "lb"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/natalie-nightring/front.svg",
  9471. extra: 1,
  9472. bottom: 0.06
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Uh Oh",
  9479. height: math.unit(0.1, "mm")
  9480. },
  9481. {
  9482. name: "Small",
  9483. height: math.unit(3, "inches")
  9484. },
  9485. {
  9486. name: "Human Scale",
  9487. height: math.unit(6, "feet")
  9488. },
  9489. {
  9490. name: "Librarian",
  9491. height: math.unit(50, "feet"),
  9492. default: true
  9493. },
  9494. {
  9495. name: "Immense",
  9496. height: math.unit(200, "miles")
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9502. {
  9503. front: {
  9504. height: math.unit(6, "feet"),
  9505. weight: math.unit(180, "lbs"),
  9506. name: "Front",
  9507. image: {
  9508. source: "./media/characters/danni-rosie/front.svg",
  9509. extra: 1260 / 1128,
  9510. bottom: 0.022
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Micro",
  9517. height: math.unit(2, "inches"),
  9518. default: true
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(5 + 9 / 12, "feet"),
  9527. weight: math.unit(220, "lb"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/samantha-kruse/front.svg",
  9531. extra: (985 / 935),
  9532. bottom: 0.03
  9533. }
  9534. },
  9535. frontUndressed: {
  9536. height: math.unit(5 + 9 / 12, "feet"),
  9537. weight: math.unit(220, "lb"),
  9538. name: "Front (Undressed)",
  9539. image: {
  9540. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9541. extra: (973 / 923),
  9542. bottom: 0.025
  9543. }
  9544. },
  9545. fat: {
  9546. height: math.unit(5 + 9 / 12, "feet"),
  9547. weight: math.unit(900, "lb"),
  9548. name: "Front (Fat)",
  9549. image: {
  9550. source: "./media/characters/samantha-kruse/fat.svg",
  9551. extra: 2688 / 2561
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(5 + 9 / 12, "feet"),
  9559. default: true
  9560. }
  9561. ]
  9562. ))
  9563. characterMakers.push(() => makeCharacter(
  9564. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9565. {
  9566. back: {
  9567. height: math.unit(5 + 4 / 12, "feet"),
  9568. weight: math.unit(4963, "lb"),
  9569. name: "Back",
  9570. image: {
  9571. source: "./media/characters/amelia-rosie/back.svg",
  9572. extra: 1113 / 963,
  9573. bottom: 0.01
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Level 0",
  9580. height: math.unit(5 + 4 / 12, "feet")
  9581. },
  9582. {
  9583. name: "Level 1",
  9584. height: math.unit(164597, "feet"),
  9585. default: true
  9586. },
  9587. {
  9588. name: "Level 2",
  9589. height: math.unit(956243, "miles")
  9590. },
  9591. {
  9592. name: "Level 3",
  9593. height: math.unit(29421709423, "miles")
  9594. },
  9595. {
  9596. name: "Level 4",
  9597. height: math.unit(154, "lightyears")
  9598. },
  9599. {
  9600. name: "Level 5",
  9601. height: math.unit(4738272, "lightyears")
  9602. },
  9603. {
  9604. name: "Level 6",
  9605. height: math.unit(145787152896, "lightyears")
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(5 + 11 / 12, "feet"),
  9614. weight: math.unit(65, "kg"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/rook-kitara/front.svg",
  9618. extra: 1347 / 1274,
  9619. bottom: 0.005
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Totally Unfair",
  9626. height: math.unit(1.8, "mm")
  9627. },
  9628. {
  9629. name: "Lap Rookie",
  9630. height: math.unit(1.4, "feet")
  9631. },
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(5 + 11 / 12, "feet"),
  9635. default: true
  9636. },
  9637. {
  9638. name: "How Did This Happen",
  9639. height: math.unit(80, "miles")
  9640. }
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9645. {
  9646. front: {
  9647. height: math.unit(7, "feet"),
  9648. weight: math.unit(300, "lb"),
  9649. name: "Front",
  9650. image: {
  9651. source: "./media/characters/pisces/front.svg",
  9652. extra: 2255 / 2115,
  9653. bottom: 0.03
  9654. }
  9655. },
  9656. back: {
  9657. height: math.unit(7, "feet"),
  9658. weight: math.unit(300, "lb"),
  9659. name: "Back",
  9660. image: {
  9661. source: "./media/characters/pisces/back.svg",
  9662. extra: 2146 / 2055,
  9663. bottom: 0.04
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Normal",
  9670. height: math.unit(7, "feet"),
  9671. default: true
  9672. },
  9673. {
  9674. name: "Swimming Pool",
  9675. height: math.unit(12.2, "meters")
  9676. },
  9677. {
  9678. name: "Olympic Swimming Pool",
  9679. height: math.unit(56.3, "meters")
  9680. },
  9681. {
  9682. name: "Lake Superior",
  9683. height: math.unit(93900, "meters")
  9684. },
  9685. {
  9686. name: "Mediterranean Sea",
  9687. height: math.unit(644457, "meters")
  9688. },
  9689. {
  9690. name: "World's Oceans",
  9691. height: math.unit(4567491, "meters")
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9697. {
  9698. front: {
  9699. height: math.unit(2.3, "meters"),
  9700. weight: math.unit(120, "kg"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/zelas/front.svg"
  9704. }
  9705. },
  9706. side: {
  9707. height: math.unit(2.3, "meters"),
  9708. weight: math.unit(120, "kg"),
  9709. name: "Side",
  9710. image: {
  9711. source: "./media/characters/zelas/side.svg"
  9712. }
  9713. },
  9714. back: {
  9715. height: math.unit(2.3, "meters"),
  9716. weight: math.unit(120, "kg"),
  9717. name: "Back",
  9718. image: {
  9719. source: "./media/characters/zelas/back.svg"
  9720. }
  9721. },
  9722. foot: {
  9723. height: math.unit(1.116, "feet"),
  9724. name: "Foot",
  9725. image: {
  9726. source: "./media/characters/zelas/foot.svg"
  9727. }
  9728. },
  9729. },
  9730. [
  9731. {
  9732. name: "Normal",
  9733. height: math.unit(2.3, "meters")
  9734. },
  9735. {
  9736. name: "Macro",
  9737. height: math.unit(30, "meters"),
  9738. default: true
  9739. },
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9744. {
  9745. front: {
  9746. height: math.unit(1, "inch"),
  9747. weight: math.unit(0.21, "grams"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/talbot/front.svg",
  9751. extra: 594 / 544
  9752. }
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Micro",
  9758. height: math.unit(1, "inch"),
  9759. default: true
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9765. {
  9766. front: {
  9767. height: math.unit(3 + 3 / 12, "feet"),
  9768. weight: math.unit(51.8, "lb"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/fliss/front.svg",
  9772. extra: 840 / 640
  9773. }
  9774. },
  9775. },
  9776. [
  9777. {
  9778. name: "Teeny Tiny",
  9779. height: math.unit(1, "mm")
  9780. },
  9781. {
  9782. name: "Small",
  9783. height: math.unit(1, "inch"),
  9784. default: true
  9785. },
  9786. {
  9787. name: "Standard Sylveon",
  9788. height: math.unit(3 + 3 / 12, "feet")
  9789. },
  9790. {
  9791. name: "Large Nuisance",
  9792. height: math.unit(33, "feet")
  9793. },
  9794. {
  9795. name: "City Filler",
  9796. height: math.unit(3000, "feet")
  9797. },
  9798. {
  9799. name: "New Horizon",
  9800. height: math.unit(6000, "miles")
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9806. {
  9807. front: {
  9808. height: math.unit(5, "cm"),
  9809. weight: math.unit(1.94, "g"),
  9810. name: "Front",
  9811. image: {
  9812. source: "./media/characters/fleta/front.svg",
  9813. extra: 835 / 803
  9814. }
  9815. },
  9816. back: {
  9817. height: math.unit(5, "cm"),
  9818. weight: math.unit(1.94, "g"),
  9819. name: "Back",
  9820. image: {
  9821. source: "./media/characters/fleta/back.svg",
  9822. extra: 835 / 803
  9823. }
  9824. },
  9825. },
  9826. [
  9827. {
  9828. name: "Micro",
  9829. height: math.unit(5, "cm"),
  9830. default: true
  9831. },
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9836. {
  9837. front: {
  9838. height: math.unit(6, "feet"),
  9839. weight: math.unit(225, "lb"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/dominic/front.svg",
  9843. extra: 1770 / 1620,
  9844. bottom: 0.025
  9845. }
  9846. },
  9847. back: {
  9848. height: math.unit(6, "feet"),
  9849. weight: math.unit(225, "lb"),
  9850. name: "Back",
  9851. image: {
  9852. source: "./media/characters/dominic/back.svg",
  9853. extra: 1745 / 1620,
  9854. bottom: 0.065
  9855. }
  9856. },
  9857. },
  9858. [
  9859. {
  9860. name: "Nano",
  9861. height: math.unit(0.1, "mm")
  9862. },
  9863. {
  9864. name: "Micro-",
  9865. height: math.unit(1, "mm")
  9866. },
  9867. {
  9868. name: "Micro",
  9869. height: math.unit(4, "inches")
  9870. },
  9871. {
  9872. name: "Normal",
  9873. height: math.unit(6 + 4 / 12, "feet"),
  9874. default: true
  9875. },
  9876. {
  9877. name: "Macro",
  9878. height: math.unit(115, "feet")
  9879. },
  9880. {
  9881. name: "Macro+",
  9882. height: math.unit(955, "feet")
  9883. },
  9884. {
  9885. name: "Megamacro",
  9886. height: math.unit(8990, "feet")
  9887. },
  9888. {
  9889. name: "Gigmacro",
  9890. height: math.unit(9310, "miles")
  9891. },
  9892. {
  9893. name: "Teramacro",
  9894. height: math.unit(1567005010, "miles")
  9895. },
  9896. {
  9897. name: "Examacro",
  9898. height: math.unit(1425, "parsecs")
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(400, "feet"),
  9907. weight: math.unit(44444444, "lb"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/major-colonel/front.svg"
  9911. }
  9912. },
  9913. back: {
  9914. height: math.unit(400, "feet"),
  9915. weight: math.unit(44444444, "lb"),
  9916. name: "Back",
  9917. image: {
  9918. source: "./media/characters/major-colonel/back.svg"
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Macro",
  9925. height: math.unit(400, "feet"),
  9926. default: true
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9932. {
  9933. catFront: {
  9934. height: math.unit(6, "feet"),
  9935. weight: math.unit(120, "lb"),
  9936. name: "Front (Cat Side)",
  9937. image: {
  9938. source: "./media/characters/axel-lycan/cat-front.svg",
  9939. extra: 430 / 402,
  9940. bottom: 43 / 472.35
  9941. }
  9942. },
  9943. catBack: {
  9944. height: math.unit(6, "feet"),
  9945. weight: math.unit(120, "lb"),
  9946. name: "Back (Cat Side)",
  9947. image: {
  9948. source: "./media/characters/axel-lycan/cat-back.svg",
  9949. extra: 447 / 419,
  9950. bottom: 23.3 / 469
  9951. }
  9952. },
  9953. wolfFront: {
  9954. height: math.unit(6, "feet"),
  9955. weight: math.unit(120, "lb"),
  9956. name: "Front (Wolf Side)",
  9957. image: {
  9958. source: "./media/characters/axel-lycan/wolf-front.svg",
  9959. extra: 485 / 456,
  9960. bottom: 19 / 504
  9961. }
  9962. },
  9963. wolfBack: {
  9964. height: math.unit(6, "feet"),
  9965. weight: math.unit(120, "lb"),
  9966. name: "Back (Wolf Side)",
  9967. image: {
  9968. source: "./media/characters/axel-lycan/wolf-back.svg",
  9969. extra: 475 / 438,
  9970. bottom: 39.2 / 514
  9971. }
  9972. },
  9973. },
  9974. [
  9975. {
  9976. name: "Macro",
  9977. height: math.unit(1, "km"),
  9978. default: true
  9979. },
  9980. ]
  9981. ))
  9982. characterMakers.push(() => makeCharacter(
  9983. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9984. {
  9985. front: {
  9986. height: math.unit(5 + 9 / 12, "feet"),
  9987. weight: math.unit(175, "lb"),
  9988. name: "Front",
  9989. image: {
  9990. source: "./media/characters/vanrel-hyena/front.svg",
  9991. extra: 1086 / 1010,
  9992. bottom: 0.04
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(5 + 9 / 12, "feet"),
  10000. default: true
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10006. {
  10007. front: {
  10008. height: math.unit(6, "feet"),
  10009. weight: math.unit(103, "lb"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/abbott-absol/front.svg",
  10013. extra: 2010 / 1842
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Megamicro",
  10020. height: math.unit(0.1, "mm")
  10021. },
  10022. {
  10023. name: "Micro",
  10024. height: math.unit(1, "inch")
  10025. },
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(6, "feet"),
  10029. default: true
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(264, "lb"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/hector/front.svg",
  10042. extra: 2280 / 2130,
  10043. bottom: 0.07
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Normal",
  10050. height: math.unit(12.25, "foot"),
  10051. default: true
  10052. },
  10053. {
  10054. name: "Macro",
  10055. height: math.unit(160, "feet")
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10061. {
  10062. front: {
  10063. height: math.unit(6, "feet"),
  10064. weight: math.unit(150, "lb"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/sal/front.svg",
  10068. extra: 1846 / 1699,
  10069. bottom: 0.04
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Megamacro",
  10076. height: math.unit(10, "miles"),
  10077. default: true
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10083. {
  10084. front: {
  10085. height: math.unit(3, "meters"),
  10086. weight: math.unit(450, "kg"),
  10087. name: "front",
  10088. image: {
  10089. source: "./media/characters/ranger/front.svg",
  10090. extra: 2401 / 2243,
  10091. bottom: 0.05
  10092. }
  10093. },
  10094. },
  10095. [
  10096. {
  10097. name: "Normal",
  10098. height: math.unit(3, "meters"),
  10099. default: true
  10100. },
  10101. ]
  10102. ))
  10103. characterMakers.push(() => makeCharacter(
  10104. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10105. {
  10106. front: {
  10107. height: math.unit(14, "feet"),
  10108. weight: math.unit(800, "kg"),
  10109. name: "Front",
  10110. image: {
  10111. source: "./media/characters/theresa/front.svg",
  10112. extra: 3575 / 3346,
  10113. bottom: 0.03
  10114. }
  10115. },
  10116. },
  10117. [
  10118. {
  10119. name: "Normal",
  10120. height: math.unit(14, "feet"),
  10121. default: true
  10122. },
  10123. ]
  10124. ))
  10125. characterMakers.push(() => makeCharacter(
  10126. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10127. {
  10128. front: {
  10129. height: math.unit(6, "feet"),
  10130. weight: math.unit(3, "kg"),
  10131. name: "Front",
  10132. image: {
  10133. source: "./media/characters/ine/front.svg",
  10134. extra: 678 / 539,
  10135. bottom: 0.023
  10136. }
  10137. },
  10138. },
  10139. [
  10140. {
  10141. name: "Normal",
  10142. height: math.unit(2.265, "feet"),
  10143. default: true
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10149. {
  10150. front: {
  10151. height: math.unit(5, "feet"),
  10152. weight: math.unit(30, "kg"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/vial/front.svg",
  10156. extra: 1365 / 1277,
  10157. bottom: 0.04
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Normal",
  10164. height: math.unit(5, "feet"),
  10165. default: true
  10166. },
  10167. ]
  10168. ))
  10169. characterMakers.push(() => makeCharacter(
  10170. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10171. {
  10172. side: {
  10173. height: math.unit(3.4, "meters"),
  10174. weight: math.unit(1000, "lb"),
  10175. name: "Side",
  10176. image: {
  10177. source: "./media/characters/rovoska/side.svg",
  10178. extra: 4403 / 1515
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(3.4, "meters"),
  10186. default: true
  10187. },
  10188. ]
  10189. ))
  10190. characterMakers.push(() => makeCharacter(
  10191. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10192. {
  10193. front: {
  10194. height: math.unit(8, "feet"),
  10195. weight: math.unit(315, "lb"),
  10196. name: "Front",
  10197. image: {
  10198. source: "./media/characters/gunner-rotthbauer/front.svg"
  10199. }
  10200. },
  10201. back: {
  10202. height: math.unit(8, "feet"),
  10203. weight: math.unit(315, "lb"),
  10204. name: "Back",
  10205. image: {
  10206. source: "./media/characters/gunner-rotthbauer/back.svg"
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Micro",
  10213. height: math.unit(3.5, "inches")
  10214. },
  10215. {
  10216. name: "Normal",
  10217. height: math.unit(8, "feet"),
  10218. default: true
  10219. },
  10220. {
  10221. name: "Macro",
  10222. height: math.unit(250, "feet")
  10223. },
  10224. {
  10225. name: "Megamacro",
  10226. height: math.unit(1, "AU")
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(5 + 5 / 12, "feet"),
  10235. weight: math.unit(140, "lb"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/allatia/front.svg",
  10239. extra: 1227 / 1180,
  10240. bottom: 0.027
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Normal",
  10247. height: math.unit(5 + 5 / 12, "feet")
  10248. },
  10249. {
  10250. name: "Macro",
  10251. height: math.unit(250, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Megamacro",
  10256. height: math.unit(8, "miles")
  10257. }
  10258. ]
  10259. ))
  10260. characterMakers.push(() => makeCharacter(
  10261. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10262. {
  10263. front: {
  10264. height: math.unit(6, "feet"),
  10265. weight: math.unit(120, "lb"),
  10266. name: "Front",
  10267. image: {
  10268. source: "./media/characters/tene/front.svg",
  10269. extra: 814/750,
  10270. bottom: 36/850
  10271. }
  10272. },
  10273. stomping: {
  10274. height: math.unit(2.025, "meters"),
  10275. weight: math.unit(120, "lb"),
  10276. name: "Stomping",
  10277. image: {
  10278. source: "./media/characters/tene/stomping.svg",
  10279. extra: 885/821,
  10280. bottom: 15/900
  10281. }
  10282. },
  10283. sitting: {
  10284. height: math.unit(1, "meter"),
  10285. weight: math.unit(120, "lb"),
  10286. name: "Sitting",
  10287. image: {
  10288. source: "./media/characters/tene/sitting.svg",
  10289. extra: 396/366,
  10290. bottom: 79/475
  10291. }
  10292. },
  10293. smiling: {
  10294. height: math.unit(1.2, "feet"),
  10295. name: "Smiling",
  10296. image: {
  10297. source: "./media/characters/tene/smiling.svg",
  10298. extra: 1364/1071,
  10299. bottom: 0/1364
  10300. }
  10301. },
  10302. smug: {
  10303. height: math.unit(1.3, "feet"),
  10304. name: "Smug",
  10305. image: {
  10306. source: "./media/characters/tene/smug.svg",
  10307. extra: 1323/1082,
  10308. bottom: 0/1323
  10309. }
  10310. },
  10311. feral: {
  10312. height: math.unit(3.9, "feet"),
  10313. weight: math.unit(250, "lb"),
  10314. name: "Feral",
  10315. image: {
  10316. source: "./media/characters/tene/feral.svg",
  10317. extra: 717 / 458,
  10318. bottom: 0.179
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Normal",
  10325. height: math.unit(6, "feet")
  10326. },
  10327. {
  10328. name: "Macro",
  10329. height: math.unit(300, "feet"),
  10330. default: true
  10331. },
  10332. {
  10333. name: "Megamacro",
  10334. height: math.unit(5, "miles")
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10340. {
  10341. side: {
  10342. height: math.unit(6, "feet"),
  10343. name: "Side",
  10344. image: {
  10345. source: "./media/characters/evander/side.svg",
  10346. extra: 877 / 477
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(0.83, "meters"),
  10354. default: true
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(12, "feet"),
  10363. weight: math.unit(1000, "lb"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10367. extra: 1762 / 1611
  10368. }
  10369. },
  10370. back: {
  10371. height: math.unit(12, "feet"),
  10372. weight: math.unit(1000, "lb"),
  10373. name: "Back",
  10374. image: {
  10375. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10376. extra: 1762 / 1611
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(12, "feet"),
  10384. default: true
  10385. },
  10386. {
  10387. name: "Kaiju",
  10388. height: math.unit(150, "feet")
  10389. },
  10390. ]
  10391. ))
  10392. characterMakers.push(() => makeCharacter(
  10393. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10394. {
  10395. front: {
  10396. height: math.unit(6, "feet"),
  10397. weight: math.unit(150, "lb"),
  10398. name: "Front",
  10399. image: {
  10400. source: "./media/characters/zero-alurus/front.svg"
  10401. }
  10402. },
  10403. back: {
  10404. height: math.unit(6, "feet"),
  10405. weight: math.unit(150, "lb"),
  10406. name: "Back",
  10407. image: {
  10408. source: "./media/characters/zero-alurus/back.svg"
  10409. }
  10410. },
  10411. },
  10412. [
  10413. {
  10414. name: "Normal",
  10415. height: math.unit(5 + 10 / 12, "feet")
  10416. },
  10417. {
  10418. name: "Macro",
  10419. height: math.unit(60, "feet"),
  10420. default: true
  10421. },
  10422. {
  10423. name: "Macro+",
  10424. height: math.unit(450, "feet")
  10425. },
  10426. ]
  10427. ))
  10428. characterMakers.push(() => makeCharacter(
  10429. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10430. {
  10431. front: {
  10432. height: math.unit(6, "feet"),
  10433. weight: math.unit(200, "lb"),
  10434. name: "Front",
  10435. image: {
  10436. source: "./media/characters/mega-shi/front.svg",
  10437. extra: 1279 / 1250,
  10438. bottom: 0.02
  10439. }
  10440. },
  10441. back: {
  10442. height: math.unit(6, "feet"),
  10443. weight: math.unit(200, "lb"),
  10444. name: "Back",
  10445. image: {
  10446. source: "./media/characters/mega-shi/back.svg",
  10447. extra: 1279 / 1250,
  10448. bottom: 0.02
  10449. }
  10450. },
  10451. },
  10452. [
  10453. {
  10454. name: "Micro",
  10455. height: math.unit(16 + 6 / 12, "feet")
  10456. },
  10457. {
  10458. name: "Third Dimension",
  10459. height: math.unit(40, "meters")
  10460. },
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(660, "feet"),
  10464. default: true
  10465. },
  10466. {
  10467. name: "Megamacro",
  10468. height: math.unit(10, "miles")
  10469. },
  10470. {
  10471. name: "Planetary Launch",
  10472. height: math.unit(500, "miles")
  10473. },
  10474. {
  10475. name: "Interstellar",
  10476. height: math.unit(1e9, "miles")
  10477. },
  10478. {
  10479. name: "Leaving the Universe",
  10480. height: math.unit(1, "gigaparsec")
  10481. },
  10482. {
  10483. name: "Travelling Universes",
  10484. height: math.unit(30e15, "parsecs")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(5 + 4/12, "feet"),
  10493. weight: math.unit(120, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/odyssey/front.svg",
  10497. extra: 1747/1571,
  10498. bottom: 47/1794
  10499. }
  10500. },
  10501. side: {
  10502. height: math.unit(5.1, "feet"),
  10503. weight: math.unit(120, "lb"),
  10504. name: "Side",
  10505. image: {
  10506. source: "./media/characters/odyssey/side.svg",
  10507. extra: 1847/1619,
  10508. bottom: 47/1894
  10509. }
  10510. },
  10511. lounging: {
  10512. height: math.unit(1.464, "feet"),
  10513. weight: math.unit(120, "lb"),
  10514. name: "Lounging",
  10515. image: {
  10516. source: "./media/characters/odyssey/lounging.svg",
  10517. extra: 1235/837,
  10518. bottom: 551/1786
  10519. }
  10520. },
  10521. },
  10522. [
  10523. {
  10524. name: "Normal",
  10525. height: math.unit(5 + 4 / 12, "feet")
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(1, "km")
  10530. },
  10531. {
  10532. name: "Megamacro",
  10533. height: math.unit(3000, "km")
  10534. },
  10535. {
  10536. name: "Gigamacro",
  10537. height: math.unit(1, "AU"),
  10538. default: true
  10539. },
  10540. {
  10541. name: "Omniversal",
  10542. height: math.unit(100e14, "lightyears")
  10543. },
  10544. ]
  10545. ))
  10546. characterMakers.push(() => makeCharacter(
  10547. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10548. {
  10549. front: {
  10550. height: math.unit(6, "feet"),
  10551. weight: math.unit(300, "lb"),
  10552. name: "Front",
  10553. image: {
  10554. source: "./media/characters/mekuto/front.svg",
  10555. extra: 921 / 832,
  10556. bottom: 0.03
  10557. }
  10558. },
  10559. hand: {
  10560. height: math.unit(6 / 10.24, "feet"),
  10561. name: "Hand",
  10562. image: {
  10563. source: "./media/characters/mekuto/hand.svg"
  10564. }
  10565. },
  10566. foot: {
  10567. height: math.unit(6 / 5.05, "feet"),
  10568. name: "Foot",
  10569. image: {
  10570. source: "./media/characters/mekuto/foot.svg"
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Minimicro",
  10577. height: math.unit(0.2, "inches")
  10578. },
  10579. {
  10580. name: "Micro",
  10581. height: math.unit(1.5, "inches")
  10582. },
  10583. {
  10584. name: "Normal",
  10585. height: math.unit(5 + 11 / 12, "feet"),
  10586. default: true
  10587. },
  10588. {
  10589. name: "Minimacro",
  10590. height: math.unit(17 + 9 / 12, "feet")
  10591. },
  10592. {
  10593. name: "Macro",
  10594. height: math.unit(177.5, "feet")
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(152, "miles")
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(6.5, "inches"),
  10607. weight: math.unit(13, "oz"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/dafydd-tomos/front.svg",
  10611. extra: 2990 / 2603,
  10612. bottom: 0.03
  10613. }
  10614. },
  10615. },
  10616. [
  10617. {
  10618. name: "Micro",
  10619. height: math.unit(6.5, "inches"),
  10620. default: true
  10621. },
  10622. ]
  10623. ))
  10624. characterMakers.push(() => makeCharacter(
  10625. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10626. {
  10627. front: {
  10628. height: math.unit(6, "feet"),
  10629. weight: math.unit(150, "lb"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/splinter/front.svg",
  10633. extra: 2990 / 2882,
  10634. bottom: 0.04
  10635. }
  10636. },
  10637. back: {
  10638. height: math.unit(6, "feet"),
  10639. weight: math.unit(150, "lb"),
  10640. name: "Back",
  10641. image: {
  10642. source: "./media/characters/splinter/back.svg",
  10643. extra: 2990 / 2882,
  10644. bottom: 0.04
  10645. }
  10646. },
  10647. },
  10648. [
  10649. {
  10650. name: "Normal",
  10651. height: math.unit(6, "feet")
  10652. },
  10653. {
  10654. name: "Macro",
  10655. height: math.unit(230, "meters"),
  10656. default: true
  10657. },
  10658. ]
  10659. ))
  10660. characterMakers.push(() => makeCharacter(
  10661. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10662. {
  10663. front: {
  10664. height: math.unit(4 + 10 / 12, "feet"),
  10665. weight: math.unit(480, "lb"),
  10666. name: "Front",
  10667. image: {
  10668. source: "./media/characters/snow-gabumon/front.svg",
  10669. extra: 1140 / 963,
  10670. bottom: 0.058
  10671. }
  10672. },
  10673. back: {
  10674. height: math.unit(4 + 10 / 12, "feet"),
  10675. weight: math.unit(480, "lb"),
  10676. name: "Back",
  10677. image: {
  10678. source: "./media/characters/snow-gabumon/back.svg",
  10679. extra: 1115 / 962,
  10680. bottom: 0.041
  10681. }
  10682. },
  10683. frontUndresed: {
  10684. height: math.unit(4 + 10 / 12, "feet"),
  10685. weight: math.unit(480, "lb"),
  10686. name: "Front (Undressed)",
  10687. image: {
  10688. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10689. extra: 1061 / 960,
  10690. bottom: 0.045
  10691. }
  10692. },
  10693. },
  10694. [
  10695. {
  10696. name: "Micro",
  10697. height: math.unit(1, "inch")
  10698. },
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(4 + 10 / 12, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Macro",
  10706. height: math.unit(200, "feet")
  10707. },
  10708. {
  10709. name: "Megamacro",
  10710. height: math.unit(120, "miles")
  10711. },
  10712. {
  10713. name: "Gigamacro",
  10714. height: math.unit(9800, "miles")
  10715. },
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10720. {
  10721. front: {
  10722. height: math.unit(1.7, "meters"),
  10723. weight: math.unit(140, "lb"),
  10724. name: "Front",
  10725. image: {
  10726. source: "./media/characters/moody/front.svg",
  10727. extra: 3226 / 3007,
  10728. bottom: 0.087
  10729. }
  10730. },
  10731. },
  10732. [
  10733. {
  10734. name: "Micro",
  10735. height: math.unit(1, "mm")
  10736. },
  10737. {
  10738. name: "Normal",
  10739. height: math.unit(1.7, "meters"),
  10740. default: true
  10741. },
  10742. {
  10743. name: "Macro",
  10744. height: math.unit(80, "meters")
  10745. },
  10746. {
  10747. name: "Macro+",
  10748. height: math.unit(500, "meters")
  10749. },
  10750. ]
  10751. ))
  10752. characterMakers.push(() => makeCharacter(
  10753. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10754. {
  10755. front: {
  10756. height: math.unit(6, "feet"),
  10757. weight: math.unit(150, "lb"),
  10758. name: "Front",
  10759. image: {
  10760. source: "./media/characters/zyas/front.svg",
  10761. extra: 1180 / 1120,
  10762. bottom: 0.045
  10763. }
  10764. },
  10765. },
  10766. [
  10767. {
  10768. name: "Normal",
  10769. height: math.unit(10, "feet"),
  10770. default: true
  10771. },
  10772. {
  10773. name: "Macro",
  10774. height: math.unit(500, "feet")
  10775. },
  10776. {
  10777. name: "Megamacro",
  10778. height: math.unit(5, "miles")
  10779. },
  10780. {
  10781. name: "Teramacro",
  10782. height: math.unit(150000, "miles")
  10783. },
  10784. ]
  10785. ))
  10786. characterMakers.push(() => makeCharacter(
  10787. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10788. {
  10789. front: {
  10790. height: math.unit(6, "feet"),
  10791. weight: math.unit(150, "lb"),
  10792. name: "Front",
  10793. image: {
  10794. source: "./media/characters/cuon/front.svg",
  10795. extra: 1390 / 1320,
  10796. bottom: 0.008
  10797. }
  10798. },
  10799. },
  10800. [
  10801. {
  10802. name: "Micro",
  10803. height: math.unit(3, "inches")
  10804. },
  10805. {
  10806. name: "Normal",
  10807. height: math.unit(18 + 9 / 12, "feet"),
  10808. default: true
  10809. },
  10810. {
  10811. name: "Macro",
  10812. height: math.unit(360, "feet")
  10813. },
  10814. {
  10815. name: "Megamacro",
  10816. height: math.unit(360, "miles")
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10822. {
  10823. front: {
  10824. height: math.unit(2.4, "meters"),
  10825. weight: math.unit(70, "kg"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/nyanuxk/front.svg",
  10829. extra: 1172 / 1084,
  10830. bottom: 0.065
  10831. }
  10832. },
  10833. side: {
  10834. height: math.unit(2.4, "meters"),
  10835. weight: math.unit(70, "kg"),
  10836. name: "Side",
  10837. image: {
  10838. source: "./media/characters/nyanuxk/side.svg",
  10839. extra: 1190 / 1132,
  10840. bottom: 0.007
  10841. }
  10842. },
  10843. back: {
  10844. height: math.unit(2.4, "meters"),
  10845. weight: math.unit(70, "kg"),
  10846. name: "Back",
  10847. image: {
  10848. source: "./media/characters/nyanuxk/back.svg",
  10849. extra: 1200 / 1141,
  10850. bottom: 0.015
  10851. }
  10852. },
  10853. foot: {
  10854. height: math.unit(0.52, "meters"),
  10855. name: "Foot",
  10856. image: {
  10857. source: "./media/characters/nyanuxk/foot.svg"
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Micro",
  10864. height: math.unit(2, "cm")
  10865. },
  10866. {
  10867. name: "Normal",
  10868. height: math.unit(2.4, "meters"),
  10869. default: true
  10870. },
  10871. {
  10872. name: "Smaller Macro",
  10873. height: math.unit(120, "meters")
  10874. },
  10875. {
  10876. name: "Bigger Macro",
  10877. height: math.unit(1.2, "km")
  10878. },
  10879. {
  10880. name: "Megamacro",
  10881. height: math.unit(15, "kilometers")
  10882. },
  10883. {
  10884. name: "Gigamacro",
  10885. height: math.unit(2000, "km")
  10886. },
  10887. {
  10888. name: "Teramacro",
  10889. height: math.unit(500000, "km")
  10890. },
  10891. ]
  10892. ))
  10893. characterMakers.push(() => makeCharacter(
  10894. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10895. {
  10896. side: {
  10897. height: math.unit(6, "feet"),
  10898. name: "Side",
  10899. image: {
  10900. source: "./media/characters/ailbhe/side.svg",
  10901. extra: 757 / 464,
  10902. bottom: 0.041
  10903. }
  10904. },
  10905. },
  10906. [
  10907. {
  10908. name: "Normal",
  10909. height: math.unit(1.07, "meters"),
  10910. default: true
  10911. },
  10912. ]
  10913. ))
  10914. characterMakers.push(() => makeCharacter(
  10915. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10916. {
  10917. front: {
  10918. height: math.unit(6, "feet"),
  10919. weight: math.unit(120, "kg"),
  10920. name: "Front",
  10921. image: {
  10922. source: "./media/characters/zevulfius/front.svg",
  10923. extra: 965 / 903
  10924. }
  10925. },
  10926. side: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(120, "kg"),
  10929. name: "Side",
  10930. image: {
  10931. source: "./media/characters/zevulfius/side.svg",
  10932. extra: 939 / 900
  10933. }
  10934. },
  10935. back: {
  10936. height: math.unit(6, "feet"),
  10937. weight: math.unit(120, "kg"),
  10938. name: "Back",
  10939. image: {
  10940. source: "./media/characters/zevulfius/back.svg",
  10941. extra: 918 / 854,
  10942. bottom: 0.005
  10943. }
  10944. },
  10945. foot: {
  10946. height: math.unit(6 / 3.72, "feet"),
  10947. name: "Foot",
  10948. image: {
  10949. source: "./media/characters/zevulfius/foot.svg"
  10950. }
  10951. },
  10952. },
  10953. [
  10954. {
  10955. name: "Macro",
  10956. height: math.unit(750, "meters")
  10957. },
  10958. {
  10959. name: "Megamacro",
  10960. height: math.unit(20, "km"),
  10961. default: true
  10962. },
  10963. {
  10964. name: "Gigamacro",
  10965. height: math.unit(2000, "km")
  10966. },
  10967. {
  10968. name: "Teramacro",
  10969. height: math.unit(250000, "km")
  10970. },
  10971. ]
  10972. ))
  10973. characterMakers.push(() => makeCharacter(
  10974. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10975. {
  10976. front: {
  10977. height: math.unit(100, "feet"),
  10978. weight: math.unit(350, "kg"),
  10979. name: "Front",
  10980. image: {
  10981. source: "./media/characters/rikes/front.svg",
  10982. extra: 1565 / 1483,
  10983. bottom: 0.017
  10984. }
  10985. },
  10986. },
  10987. [
  10988. {
  10989. name: "Macro",
  10990. height: math.unit(100, "feet"),
  10991. default: true
  10992. },
  10993. ]
  10994. ))
  10995. characterMakers.push(() => makeCharacter(
  10996. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10997. {
  10998. front: {
  10999. height: math.unit(8, "feet"),
  11000. weight: math.unit(356, "lb"),
  11001. name: "Front",
  11002. image: {
  11003. source: "./media/characters/adam-silver-mane/front.svg",
  11004. extra: 1036/937,
  11005. bottom: 63/1099
  11006. }
  11007. },
  11008. side: {
  11009. height: math.unit(8, "feet"),
  11010. weight: math.unit(356, "lb"),
  11011. name: "Side",
  11012. image: {
  11013. source: "./media/characters/adam-silver-mane/side.svg",
  11014. extra: 997/901,
  11015. bottom: 59/1056
  11016. }
  11017. },
  11018. frontNsfw: {
  11019. height: math.unit(8, "feet"),
  11020. weight: math.unit(356, "lb"),
  11021. name: "Front (NSFW)",
  11022. image: {
  11023. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11024. extra: 1036/937,
  11025. bottom: 63/1099
  11026. }
  11027. },
  11028. sideNsfw: {
  11029. height: math.unit(8, "feet"),
  11030. weight: math.unit(356, "lb"),
  11031. name: "Side (NSFW)",
  11032. image: {
  11033. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11034. extra: 997/901,
  11035. bottom: 59/1056
  11036. }
  11037. },
  11038. dick: {
  11039. height: math.unit(2.1, "feet"),
  11040. name: "Dick",
  11041. image: {
  11042. source: "./media/characters/adam-silver-mane/dick.svg"
  11043. }
  11044. },
  11045. taur: {
  11046. height: math.unit(16, "feet"),
  11047. weight: math.unit(1500, "kg"),
  11048. name: "Taur",
  11049. image: {
  11050. source: "./media/characters/adam-silver-mane/taur.svg",
  11051. extra: 1713 / 1571,
  11052. bottom: 0.01
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(8, "feet")
  11060. },
  11061. {
  11062. name: "Minimacro",
  11063. height: math.unit(80, "feet")
  11064. },
  11065. {
  11066. name: "MDA",
  11067. height: math.unit(80, "meters")
  11068. },
  11069. {
  11070. name: "Macro",
  11071. height: math.unit(800, "feet"),
  11072. default: true
  11073. },
  11074. {
  11075. name: "Megamacro",
  11076. height: math.unit(8000, "feet")
  11077. },
  11078. {
  11079. name: "Gigamacro",
  11080. height: math.unit(800, "miles")
  11081. },
  11082. {
  11083. name: "Teramacro",
  11084. height: math.unit(80000, "miles")
  11085. },
  11086. {
  11087. name: "Celestial",
  11088. height: math.unit(8e6, "miles")
  11089. },
  11090. {
  11091. name: "Star Dragon",
  11092. height: math.unit(800000, "parsecs")
  11093. },
  11094. {
  11095. name: "Godly",
  11096. height: math.unit(800, "teraparsecs")
  11097. },
  11098. ]
  11099. ))
  11100. characterMakers.push(() => makeCharacter(
  11101. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11102. {
  11103. front: {
  11104. height: math.unit(6, "feet"),
  11105. weight: math.unit(150, "lb"),
  11106. name: "Front",
  11107. image: {
  11108. source: "./media/characters/ky'owin/front.svg",
  11109. extra: 3888 / 3068,
  11110. bottom: 0.015
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(6 + 8 / 12, "feet")
  11118. },
  11119. {
  11120. name: "Large",
  11121. height: math.unit(68, "feet")
  11122. },
  11123. {
  11124. name: "Macro",
  11125. height: math.unit(132, "feet")
  11126. },
  11127. {
  11128. name: "Macro+",
  11129. height: math.unit(340, "feet")
  11130. },
  11131. {
  11132. name: "Macro++",
  11133. height: math.unit(680, "feet"),
  11134. default: true
  11135. },
  11136. {
  11137. name: "Megamacro",
  11138. height: math.unit(1, "mile")
  11139. },
  11140. {
  11141. name: "Megamacro+",
  11142. height: math.unit(10, "miles")
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11148. {
  11149. front: {
  11150. height: math.unit(4, "feet"),
  11151. weight: math.unit(50, "lb"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/mal/front.svg",
  11155. extra: 785 / 724,
  11156. bottom: 0.07
  11157. }
  11158. },
  11159. },
  11160. [
  11161. {
  11162. name: "Micro",
  11163. height: math.unit(4, "inches")
  11164. },
  11165. {
  11166. name: "Normal",
  11167. height: math.unit(4, "feet"),
  11168. default: true
  11169. },
  11170. {
  11171. name: "Macro",
  11172. height: math.unit(200, "feet")
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(6, "feet"),
  11181. weight: math.unit(150, "lb"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/jordan-deware/front.svg",
  11185. extra: 1191 / 1012
  11186. }
  11187. },
  11188. },
  11189. [
  11190. {
  11191. name: "Nano",
  11192. height: math.unit(0.01, "mm")
  11193. },
  11194. {
  11195. name: "Minimicro",
  11196. height: math.unit(1, "mm")
  11197. },
  11198. {
  11199. name: "Micro",
  11200. height: math.unit(0.5, "inches")
  11201. },
  11202. {
  11203. name: "Normal",
  11204. height: math.unit(4, "feet"),
  11205. default: true
  11206. },
  11207. {
  11208. name: "Minimacro",
  11209. height: math.unit(40, "meters")
  11210. },
  11211. {
  11212. name: "Small Macro",
  11213. height: math.unit(400, "meters")
  11214. },
  11215. {
  11216. name: "Macro",
  11217. height: math.unit(4, "miles")
  11218. },
  11219. {
  11220. name: "Megamacro",
  11221. height: math.unit(40, "miles")
  11222. },
  11223. {
  11224. name: "Megamacro+",
  11225. height: math.unit(400, "miles")
  11226. },
  11227. {
  11228. name: "Gigamacro",
  11229. height: math.unit(400000, "miles")
  11230. },
  11231. ]
  11232. ))
  11233. characterMakers.push(() => makeCharacter(
  11234. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11235. {
  11236. side: {
  11237. height: math.unit(6, "feet"),
  11238. weight: math.unit(150, "lb"),
  11239. name: "Side",
  11240. image: {
  11241. source: "./media/characters/kimiko/side.svg",
  11242. extra: 600 / 358
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(15, "feet"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Macro",
  11254. height: math.unit(220, "feet")
  11255. },
  11256. {
  11257. name: "Macro+",
  11258. height: math.unit(1450, "feet")
  11259. },
  11260. {
  11261. name: "Megamacro",
  11262. height: math.unit(11500, "feet")
  11263. },
  11264. {
  11265. name: "Gigamacro",
  11266. height: math.unit(9500, "miles")
  11267. },
  11268. {
  11269. name: "Teramacro",
  11270. height: math.unit(2208005005, "miles")
  11271. },
  11272. {
  11273. name: "Examacro",
  11274. height: math.unit(2750, "parsecs")
  11275. },
  11276. {
  11277. name: "Zettamacro",
  11278. height: math.unit(101500, "parsecs")
  11279. },
  11280. ]
  11281. ))
  11282. characterMakers.push(() => makeCharacter(
  11283. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11284. {
  11285. front: {
  11286. height: math.unit(6, "feet"),
  11287. weight: math.unit(70, "kg"),
  11288. name: "Front",
  11289. image: {
  11290. source: "./media/characters/andrew-sleepy/front.svg"
  11291. }
  11292. },
  11293. side: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(70, "kg"),
  11296. name: "Side",
  11297. image: {
  11298. source: "./media/characters/andrew-sleepy/side.svg"
  11299. }
  11300. },
  11301. },
  11302. [
  11303. {
  11304. name: "Micro",
  11305. height: math.unit(1, "mm"),
  11306. default: true
  11307. },
  11308. ]
  11309. ))
  11310. characterMakers.push(() => makeCharacter(
  11311. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11312. {
  11313. front: {
  11314. height: math.unit(6, "feet"),
  11315. weight: math.unit(150, "lb"),
  11316. name: "Front",
  11317. image: {
  11318. source: "./media/characters/judio/front.svg",
  11319. extra: 1258 / 1110
  11320. }
  11321. },
  11322. },
  11323. [
  11324. {
  11325. name: "Normal",
  11326. height: math.unit(5 + 6 / 12, "feet")
  11327. },
  11328. {
  11329. name: "Macro",
  11330. height: math.unit(1000, "feet"),
  11331. default: true
  11332. },
  11333. {
  11334. name: "Megamacro",
  11335. height: math.unit(10, "miles")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11341. {
  11342. frontDressed: {
  11343. height: math.unit(6, "feet"),
  11344. weight: math.unit(68, "kg"),
  11345. name: "Front (Dressed)",
  11346. image: {
  11347. source: "./media/characters/nomaxice/front-dressed.svg",
  11348. extra: 1137/824,
  11349. bottom: 74/1211
  11350. }
  11351. },
  11352. frontShorts: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(68, "kg"),
  11355. name: "Front (Shorts)",
  11356. image: {
  11357. source: "./media/characters/nomaxice/front-shorts.svg",
  11358. extra: 1137/824,
  11359. bottom: 74/1211
  11360. }
  11361. },
  11362. back: {
  11363. height: math.unit(6, "feet"),
  11364. weight: math.unit(68, "kg"),
  11365. name: "Back",
  11366. image: {
  11367. source: "./media/characters/nomaxice/back.svg",
  11368. extra: 822/786,
  11369. bottom: 39/861
  11370. }
  11371. },
  11372. hand: {
  11373. height: math.unit(0.565, "feet"),
  11374. name: "Hand",
  11375. image: {
  11376. source: "./media/characters/nomaxice/hand.svg"
  11377. }
  11378. },
  11379. foot: {
  11380. height: math.unit(1, "feet"),
  11381. name: "Foot",
  11382. image: {
  11383. source: "./media/characters/nomaxice/foot.svg"
  11384. }
  11385. },
  11386. },
  11387. [
  11388. {
  11389. name: "Micro",
  11390. height: math.unit(8, "cm")
  11391. },
  11392. {
  11393. name: "Norm",
  11394. height: math.unit(1.82, "m")
  11395. },
  11396. {
  11397. name: "Norm+",
  11398. height: math.unit(8.8, "feet"),
  11399. default: true
  11400. },
  11401. {
  11402. name: "Big",
  11403. height: math.unit(8, "meters")
  11404. },
  11405. {
  11406. name: "Macro",
  11407. height: math.unit(18, "meters")
  11408. },
  11409. {
  11410. name: "Macro+",
  11411. height: math.unit(88, "meters")
  11412. },
  11413. ]
  11414. ))
  11415. characterMakers.push(() => makeCharacter(
  11416. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11417. {
  11418. front: {
  11419. height: math.unit(12, "feet"),
  11420. weight: math.unit(1.5, "tons"),
  11421. name: "Front",
  11422. image: {
  11423. source: "./media/characters/dydros/front.svg",
  11424. extra: 863 / 800,
  11425. bottom: 0.015
  11426. }
  11427. },
  11428. back: {
  11429. height: math.unit(12, "feet"),
  11430. weight: math.unit(1.5, "tons"),
  11431. name: "Back",
  11432. image: {
  11433. source: "./media/characters/dydros/back.svg",
  11434. extra: 900 / 843,
  11435. bottom: 0.005
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(12, "feet"),
  11443. default: true
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(6, "feet"),
  11452. weight: math.unit(100, "kg"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/riggi/front.svg",
  11456. extra: 5787 / 5303
  11457. }
  11458. },
  11459. hyper: {
  11460. height: math.unit(6 * 5 / 3, "feet"),
  11461. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11462. name: "Hyper",
  11463. image: {
  11464. source: "./media/characters/riggi/hyper.svg",
  11465. extra: 3595 / 3485
  11466. }
  11467. },
  11468. },
  11469. [
  11470. {
  11471. name: "Small Macro",
  11472. height: math.unit(50, "feet")
  11473. },
  11474. {
  11475. name: "Default",
  11476. height: math.unit(200, "feet"),
  11477. default: true
  11478. },
  11479. {
  11480. name: "Loom",
  11481. height: math.unit(10000, "feet")
  11482. },
  11483. {
  11484. name: "Cruising Altitude",
  11485. height: math.unit(30000, "feet")
  11486. },
  11487. {
  11488. name: "Megamacro",
  11489. height: math.unit(100, "miles")
  11490. },
  11491. {
  11492. name: "Continent Sized",
  11493. height: math.unit(2800, "miles")
  11494. },
  11495. {
  11496. name: "Earth Sized",
  11497. height: math.unit(8000, "miles")
  11498. },
  11499. ]
  11500. ))
  11501. characterMakers.push(() => makeCharacter(
  11502. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11503. {
  11504. front: {
  11505. height: math.unit(6, "feet"),
  11506. weight: math.unit(250, "lb"),
  11507. name: "Front",
  11508. image: {
  11509. source: "./media/characters/alexi/front.svg",
  11510. extra: 3483 / 3291,
  11511. bottom: 0.04
  11512. }
  11513. },
  11514. back: {
  11515. height: math.unit(6, "feet"),
  11516. weight: math.unit(250, "lb"),
  11517. name: "Back",
  11518. image: {
  11519. source: "./media/characters/alexi/back.svg",
  11520. extra: 3533 / 3356,
  11521. bottom: 0.021
  11522. }
  11523. },
  11524. frontTransforming: {
  11525. height: math.unit(8.58, "feet"),
  11526. weight: math.unit(1300, "lb"),
  11527. name: "Transforming",
  11528. image: {
  11529. source: "./media/characters/alexi/front-transforming.svg",
  11530. extra: 437 / 409,
  11531. bottom: 19 / 458.66
  11532. }
  11533. },
  11534. frontTransformed: {
  11535. height: math.unit(12.5, "feet"),
  11536. weight: math.unit(4000, "lb"),
  11537. name: "Transformed",
  11538. image: {
  11539. source: "./media/characters/alexi/front-transformed.svg",
  11540. extra: 639 / 614,
  11541. bottom: 30.55 / 671
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(14, "feet"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Minimacro",
  11553. height: math.unit(30, "meters")
  11554. },
  11555. {
  11556. name: "Macro",
  11557. height: math.unit(500, "meters")
  11558. },
  11559. {
  11560. name: "Megamacro",
  11561. height: math.unit(9000, "km")
  11562. },
  11563. {
  11564. name: "Teramacro",
  11565. height: math.unit(384000, "km")
  11566. },
  11567. ]
  11568. ))
  11569. characterMakers.push(() => makeCharacter(
  11570. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11571. {
  11572. front: {
  11573. height: math.unit(6, "feet"),
  11574. weight: math.unit(150, "lb"),
  11575. name: "Front",
  11576. image: {
  11577. source: "./media/characters/kayroo/front.svg",
  11578. extra: 1153 / 1038,
  11579. bottom: 0.06
  11580. }
  11581. },
  11582. foot: {
  11583. height: math.unit(6, "feet"),
  11584. weight: math.unit(150, "lb"),
  11585. name: "Foot",
  11586. image: {
  11587. source: "./media/characters/kayroo/foot.svg"
  11588. }
  11589. },
  11590. },
  11591. [
  11592. {
  11593. name: "Normal",
  11594. height: math.unit(8, "feet"),
  11595. default: true
  11596. },
  11597. {
  11598. name: "Minimacro",
  11599. height: math.unit(250, "feet")
  11600. },
  11601. {
  11602. name: "Macro",
  11603. height: math.unit(2800, "feet")
  11604. },
  11605. {
  11606. name: "Megamacro",
  11607. height: math.unit(5200, "feet")
  11608. },
  11609. {
  11610. name: "Gigamacro",
  11611. height: math.unit(27000, "feet")
  11612. },
  11613. {
  11614. name: "Omega",
  11615. height: math.unit(45000, "feet")
  11616. },
  11617. ]
  11618. ))
  11619. characterMakers.push(() => makeCharacter(
  11620. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11621. {
  11622. front: {
  11623. height: math.unit(18, "feet"),
  11624. weight: math.unit(5800, "lb"),
  11625. name: "Front",
  11626. image: {
  11627. source: "./media/characters/rhys/front.svg",
  11628. extra: 3386 / 3090,
  11629. bottom: 0.07
  11630. }
  11631. },
  11632. },
  11633. [
  11634. {
  11635. name: "Normal",
  11636. height: math.unit(18, "feet"),
  11637. default: true
  11638. },
  11639. {
  11640. name: "Working Size",
  11641. height: math.unit(200, "feet")
  11642. },
  11643. {
  11644. name: "Demolition Size",
  11645. height: math.unit(2000, "feet")
  11646. },
  11647. {
  11648. name: "Maximum Licensed Size",
  11649. height: math.unit(5, "miles")
  11650. },
  11651. {
  11652. name: "Maximum Observed Size",
  11653. height: math.unit(10, "yottameters")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11659. {
  11660. front: {
  11661. height: math.unit(6, "feet"),
  11662. weight: math.unit(250, "lb"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/toto/front.svg",
  11666. extra: 527 / 479,
  11667. bottom: 0.05
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Micro",
  11674. height: math.unit(3, "feet")
  11675. },
  11676. {
  11677. name: "Normal",
  11678. height: math.unit(10, "feet")
  11679. },
  11680. {
  11681. name: "Macro",
  11682. height: math.unit(150, "feet"),
  11683. default: true
  11684. },
  11685. {
  11686. name: "Megamacro",
  11687. height: math.unit(1200, "feet")
  11688. },
  11689. ]
  11690. ))
  11691. characterMakers.push(() => makeCharacter(
  11692. { name: "King", species: ["lion"], tags: ["anthro"] },
  11693. {
  11694. back: {
  11695. height: math.unit(6, "feet"),
  11696. weight: math.unit(150, "lb"),
  11697. name: "Back",
  11698. image: {
  11699. source: "./media/characters/king/back.svg"
  11700. }
  11701. },
  11702. },
  11703. [
  11704. {
  11705. name: "Micro",
  11706. height: math.unit(2, "inches")
  11707. },
  11708. {
  11709. name: "Normal",
  11710. height: math.unit(8, "feet")
  11711. },
  11712. {
  11713. name: "Macro",
  11714. height: math.unit(200, "feet"),
  11715. default: true
  11716. },
  11717. {
  11718. name: "Megamacro",
  11719. height: math.unit(50, "miles")
  11720. },
  11721. ]
  11722. ))
  11723. characterMakers.push(() => makeCharacter(
  11724. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11725. {
  11726. front: {
  11727. height: math.unit(11, "feet"),
  11728. weight: math.unit(1400, "lb"),
  11729. name: "Front",
  11730. image: {
  11731. source: "./media/characters/cordite/front.svg",
  11732. extra: 1919/1827,
  11733. bottom: 40/1959
  11734. }
  11735. },
  11736. side: {
  11737. height: math.unit(11, "feet"),
  11738. weight: math.unit(1400, "lb"),
  11739. name: "Side",
  11740. image: {
  11741. source: "./media/characters/cordite/side.svg",
  11742. extra: 1908/1793,
  11743. bottom: 38/1946
  11744. }
  11745. },
  11746. back: {
  11747. height: math.unit(11, "feet"),
  11748. weight: math.unit(1400, "lb"),
  11749. name: "Back",
  11750. image: {
  11751. source: "./media/characters/cordite/back.svg",
  11752. extra: 1938/1837,
  11753. bottom: 10/1948
  11754. }
  11755. },
  11756. feral: {
  11757. height: math.unit(2, "feet"),
  11758. weight: math.unit(90, "lb"),
  11759. name: "Feral",
  11760. image: {
  11761. source: "./media/characters/cordite/feral.svg",
  11762. extra: 1260 / 755,
  11763. bottom: 0.05
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Normal",
  11770. height: math.unit(11, "feet"),
  11771. default: true
  11772. },
  11773. ]
  11774. ))
  11775. characterMakers.push(() => makeCharacter(
  11776. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11777. {
  11778. front: {
  11779. height: math.unit(6, "feet"),
  11780. weight: math.unit(150, "lb"),
  11781. name: "Front",
  11782. image: {
  11783. source: "./media/characters/pianostrong/front.svg",
  11784. extra: 6577 / 6254,
  11785. bottom: 0.02
  11786. }
  11787. },
  11788. side: {
  11789. height: math.unit(6, "feet"),
  11790. weight: math.unit(150, "lb"),
  11791. name: "Side",
  11792. image: {
  11793. source: "./media/characters/pianostrong/side.svg",
  11794. extra: 6106 / 5730
  11795. }
  11796. },
  11797. back: {
  11798. height: math.unit(6, "feet"),
  11799. weight: math.unit(150, "lb"),
  11800. name: "Back",
  11801. image: {
  11802. source: "./media/characters/pianostrong/back.svg",
  11803. extra: 6085 / 5733,
  11804. bottom: 0.01
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(100, "feet")
  11812. },
  11813. {
  11814. name: "Macro+",
  11815. height: math.unit(300, "feet"),
  11816. default: true
  11817. },
  11818. {
  11819. name: "Macro++",
  11820. height: math.unit(1000, "feet")
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(6, "feet"),
  11829. weight: math.unit(150, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/kona/front.svg",
  11833. extra: 2960 / 2629,
  11834. bottom: 0.005
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Normal",
  11841. height: math.unit(11 + 8 / 12, "feet")
  11842. },
  11843. {
  11844. name: "Macro",
  11845. height: math.unit(850, "feet"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Macro+",
  11850. height: math.unit(1.5, "km"),
  11851. default: true
  11852. },
  11853. {
  11854. name: "Megamacro",
  11855. height: math.unit(80, "miles")
  11856. },
  11857. {
  11858. name: "Gigamacro",
  11859. height: math.unit(3500, "miles")
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11865. {
  11866. side: {
  11867. height: math.unit(1.9, "meters"),
  11868. weight: math.unit(326, "kg"),
  11869. name: "Side",
  11870. image: {
  11871. source: "./media/characters/levi/side.svg",
  11872. extra: 1704 / 1334,
  11873. bottom: 0.02
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(1.9, "meters"),
  11881. default: true
  11882. },
  11883. {
  11884. name: "Macro",
  11885. height: math.unit(20, "meters")
  11886. },
  11887. {
  11888. name: "Macro+",
  11889. height: math.unit(200, "meters")
  11890. },
  11891. {
  11892. name: "Megamacro",
  11893. height: math.unit(2, "km")
  11894. },
  11895. {
  11896. name: "Megamacro+",
  11897. height: math.unit(20, "km")
  11898. },
  11899. {
  11900. name: "Gigamacro",
  11901. height: math.unit(2500, "km")
  11902. },
  11903. {
  11904. name: "Gigamacro+",
  11905. height: math.unit(120000, "km")
  11906. },
  11907. {
  11908. name: "Teramacro",
  11909. height: math.unit(7.77e6, "km")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11915. {
  11916. front: {
  11917. height: math.unit(6 + 4/12, "feet"),
  11918. weight: math.unit(190, "lb"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/bmc/front.svg",
  11922. extra: 1626/1472,
  11923. bottom: 79/1705
  11924. }
  11925. },
  11926. back: {
  11927. height: math.unit(6 + 4/12, "feet"),
  11928. weight: math.unit(190, "lb"),
  11929. name: "Back",
  11930. image: {
  11931. source: "./media/characters/bmc/back.svg",
  11932. extra: 1640/1479,
  11933. bottom: 45/1685
  11934. }
  11935. },
  11936. frontArmor: {
  11937. height: math.unit(6 + 4/12, "feet"),
  11938. weight: math.unit(190, "lb"),
  11939. name: "Front-armor",
  11940. image: {
  11941. source: "./media/characters/bmc/front-armor.svg",
  11942. extra: 1538/1468,
  11943. bottom: 79/1617
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Human-sized",
  11950. height: math.unit(6 + 4 / 12, "feet")
  11951. },
  11952. {
  11953. name: "Interactive Size",
  11954. height: math.unit(25, "feet")
  11955. },
  11956. {
  11957. name: "Small",
  11958. height: math.unit(250, "feet")
  11959. },
  11960. {
  11961. name: "Normal",
  11962. height: math.unit(1250, "feet"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Good Day",
  11967. height: math.unit(88, "miles")
  11968. },
  11969. {
  11970. name: "Largest Measured Size",
  11971. height: math.unit(105.960, "galaxies")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(20, "feet"),
  11980. weight: math.unit(2016, "kg"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/sven-the-kaiju/front.svg",
  11984. extra: 1277/1250,
  11985. bottom: 35/1312
  11986. }
  11987. },
  11988. mouth: {
  11989. height: math.unit(1.85, "feet"),
  11990. name: "Mouth",
  11991. image: {
  11992. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11993. }
  11994. },
  11995. },
  11996. [
  11997. {
  11998. name: "Fairy",
  11999. height: math.unit(6, "inches")
  12000. },
  12001. {
  12002. name: "Normal",
  12003. height: math.unit(20, "feet"),
  12004. default: true
  12005. },
  12006. {
  12007. name: "Rampage",
  12008. height: math.unit(200, "feet")
  12009. },
  12010. {
  12011. name: "Archfey Forest Guardian",
  12012. height: math.unit(1, "mile")
  12013. },
  12014. ]
  12015. ))
  12016. characterMakers.push(() => makeCharacter(
  12017. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12018. {
  12019. front: {
  12020. height: math.unit(4, "meters"),
  12021. weight: math.unit(2, "tons"),
  12022. name: "Front",
  12023. image: {
  12024. source: "./media/characters/marik/front.svg",
  12025. extra: 1057 / 1003,
  12026. bottom: 0.08
  12027. }
  12028. },
  12029. },
  12030. [
  12031. {
  12032. name: "Normal",
  12033. height: math.unit(4, "meters"),
  12034. default: true
  12035. },
  12036. {
  12037. name: "Macro",
  12038. height: math.unit(20, "meters")
  12039. },
  12040. {
  12041. name: "Megamacro",
  12042. height: math.unit(50, "km")
  12043. },
  12044. {
  12045. name: "Gigamacro",
  12046. height: math.unit(100, "km")
  12047. },
  12048. {
  12049. name: "Alpha Macro",
  12050. height: math.unit(7.88e7, "yottameters")
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12056. {
  12057. front: {
  12058. height: math.unit(6, "feet"),
  12059. weight: math.unit(110, "lb"),
  12060. name: "Front",
  12061. image: {
  12062. source: "./media/characters/mel/front.svg",
  12063. extra: 736 / 617,
  12064. bottom: 0.017
  12065. }
  12066. },
  12067. },
  12068. [
  12069. {
  12070. name: "Pico",
  12071. height: math.unit(3, "pm")
  12072. },
  12073. {
  12074. name: "Nano",
  12075. height: math.unit(3, "nm")
  12076. },
  12077. {
  12078. name: "Micro",
  12079. height: math.unit(0.3, "mm"),
  12080. default: true
  12081. },
  12082. {
  12083. name: "Micro+",
  12084. height: math.unit(3, "mm")
  12085. },
  12086. {
  12087. name: "Normal",
  12088. height: math.unit(5 + 10.5 / 12, "feet")
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12094. {
  12095. kaiju: {
  12096. height: math.unit(1.75, "meters"),
  12097. weight: math.unit(55, "kg"),
  12098. name: "Kaiju",
  12099. image: {
  12100. source: "./media/characters/lykonous/kaiju.svg",
  12101. extra: 1055 / 946,
  12102. bottom: 0.135
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Normal",
  12109. height: math.unit(2.5, "meters"),
  12110. default: true
  12111. },
  12112. {
  12113. name: "Kaiju Dragon",
  12114. height: math.unit(60, "meters")
  12115. },
  12116. {
  12117. name: "Mega Kaiju",
  12118. height: math.unit(120, "km")
  12119. },
  12120. {
  12121. name: "Giga Kaiju",
  12122. height: math.unit(200, "megameters")
  12123. },
  12124. {
  12125. name: "Terra Kaiju",
  12126. height: math.unit(400, "gigameters")
  12127. },
  12128. {
  12129. name: "Kaiju Dragon God",
  12130. height: math.unit(13000, "exaparsecs")
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(6, "feet"),
  12139. weight: math.unit(150, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/blü/front.svg",
  12143. extra: 1883 / 1564,
  12144. bottom: 0.031
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Normal",
  12151. height: math.unit(13, "feet"),
  12152. default: true
  12153. },
  12154. {
  12155. name: "Big Boi",
  12156. height: math.unit(150, "meters")
  12157. },
  12158. {
  12159. name: "Mini Stomper",
  12160. height: math.unit(300, "meters")
  12161. },
  12162. {
  12163. name: "Macro",
  12164. height: math.unit(1000, "meters")
  12165. },
  12166. {
  12167. name: "Megamacro",
  12168. height: math.unit(11000, "meters")
  12169. },
  12170. {
  12171. name: "Gigamacro",
  12172. height: math.unit(11000, "km")
  12173. },
  12174. {
  12175. name: "Teramacro",
  12176. height: math.unit(420000, "km")
  12177. },
  12178. {
  12179. name: "Examacro",
  12180. height: math.unit(120, "parsecs")
  12181. },
  12182. {
  12183. name: "God Tho",
  12184. height: math.unit(98000000000, "parsecs")
  12185. },
  12186. ]
  12187. ))
  12188. characterMakers.push(() => makeCharacter(
  12189. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12190. {
  12191. taurFront: {
  12192. height: math.unit(6, "feet"),
  12193. weight: math.unit(200, "lb"),
  12194. name: "Taur (Front)",
  12195. image: {
  12196. source: "./media/characters/scales/taur-front.svg",
  12197. extra: 1,
  12198. bottom: 0.05
  12199. }
  12200. },
  12201. taurBack: {
  12202. height: math.unit(6, "feet"),
  12203. weight: math.unit(200, "lb"),
  12204. name: "Taur (Back)",
  12205. image: {
  12206. source: "./media/characters/scales/taur-back.svg",
  12207. extra: 1,
  12208. bottom: 0.08
  12209. }
  12210. },
  12211. anthro: {
  12212. height: math.unit(6 * 7 / 12, "feet"),
  12213. weight: math.unit(100, "lb"),
  12214. name: "Anthro",
  12215. image: {
  12216. source: "./media/characters/scales/anthro.svg",
  12217. extra: 1,
  12218. bottom: 0.06
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(12, "feet"),
  12226. default: true
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(6, "feet"),
  12235. weight: math.unit(150, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/koragos/front.svg",
  12239. extra: 841 / 794,
  12240. bottom: 0.035
  12241. }
  12242. },
  12243. back: {
  12244. height: math.unit(6, "feet"),
  12245. weight: math.unit(150, "lb"),
  12246. name: "Back",
  12247. image: {
  12248. source: "./media/characters/koragos/back.svg",
  12249. extra: 841 / 810,
  12250. bottom: 0.022
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Normal",
  12257. height: math.unit(6 + 11 / 12, "feet"),
  12258. default: true
  12259. },
  12260. {
  12261. name: "Macro",
  12262. height: math.unit(490, "feet")
  12263. },
  12264. {
  12265. name: "Megamacro",
  12266. height: math.unit(10, "miles")
  12267. },
  12268. {
  12269. name: "Gigamacro",
  12270. height: math.unit(50, "miles")
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12276. {
  12277. front: {
  12278. height: math.unit(6, "feet"),
  12279. weight: math.unit(250, "lb"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/xylrem/front.svg",
  12283. extra: 3323 / 3050,
  12284. bottom: 0.065
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Micro",
  12291. height: math.unit(4, "feet")
  12292. },
  12293. {
  12294. name: "Normal",
  12295. height: math.unit(16, "feet"),
  12296. default: true
  12297. },
  12298. {
  12299. name: "Macro",
  12300. height: math.unit(2720, "feet")
  12301. },
  12302. {
  12303. name: "Megamacro",
  12304. height: math.unit(25000, "miles")
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12310. {
  12311. front: {
  12312. height: math.unit(8, "feet"),
  12313. weight: math.unit(250, "kg"),
  12314. name: "Front",
  12315. image: {
  12316. source: "./media/characters/ikideru/front.svg",
  12317. extra: 930 / 870,
  12318. bottom: 0.087
  12319. }
  12320. },
  12321. back: {
  12322. height: math.unit(8, "feet"),
  12323. weight: math.unit(250, "kg"),
  12324. name: "Back",
  12325. image: {
  12326. source: "./media/characters/ikideru/back.svg",
  12327. extra: 919 / 852,
  12328. bottom: 0.055
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Rare",
  12335. height: math.unit(8, "feet"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Playful Loom",
  12340. height: math.unit(80, "feet")
  12341. },
  12342. {
  12343. name: "City Leaner",
  12344. height: math.unit(230, "feet")
  12345. },
  12346. {
  12347. name: "Megamacro",
  12348. height: math.unit(2500, "feet")
  12349. },
  12350. {
  12351. name: "Gigamacro",
  12352. height: math.unit(26400, "feet")
  12353. },
  12354. {
  12355. name: "Tectonic Shifter",
  12356. height: math.unit(1.7, "megameters")
  12357. },
  12358. {
  12359. name: "Planet Carer",
  12360. height: math.unit(21, "megameters")
  12361. },
  12362. {
  12363. name: "God",
  12364. height: math.unit(11157.22, "parsecs")
  12365. },
  12366. ]
  12367. ))
  12368. characterMakers.push(() => makeCharacter(
  12369. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12370. {
  12371. front: {
  12372. height: math.unit(6, "feet"),
  12373. weight: math.unit(120, "lb"),
  12374. name: "Front",
  12375. image: {
  12376. source: "./media/characters/neo/front.svg"
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Micro",
  12383. height: math.unit(2, "inches"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Human Size",
  12388. height: math.unit(5 + 8 / 12, "feet")
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(13 + 10 / 12, "feet"),
  12397. weight: math.unit(5320, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/chauncey-chantz/front.svg",
  12401. extra: 1587 / 1435,
  12402. bottom: 0.02
  12403. }
  12404. },
  12405. },
  12406. [
  12407. {
  12408. name: "Normal",
  12409. height: math.unit(13 + 10 / 12, "feet"),
  12410. default: true
  12411. },
  12412. {
  12413. name: "Macro",
  12414. height: math.unit(45, "feet")
  12415. },
  12416. {
  12417. name: "Megamacro",
  12418. height: math.unit(250, "miles")
  12419. },
  12420. {
  12421. name: "Planetary",
  12422. height: math.unit(10000, "miles")
  12423. },
  12424. {
  12425. name: "Galactic",
  12426. height: math.unit(40000, "parsecs")
  12427. },
  12428. {
  12429. name: "Universal",
  12430. height: math.unit(1, "yottameter")
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12436. {
  12437. front: {
  12438. height: math.unit(6, "feet"),
  12439. weight: math.unit(150, "lb"),
  12440. name: "Front",
  12441. image: {
  12442. source: "./media/characters/epifox/front.svg",
  12443. extra: 1,
  12444. bottom: 0.075
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Micro",
  12451. height: math.unit(6, "inches")
  12452. },
  12453. {
  12454. name: "Normal",
  12455. height: math.unit(12, "feet"),
  12456. default: true
  12457. },
  12458. {
  12459. name: "Macro",
  12460. height: math.unit(3810, "feet")
  12461. },
  12462. {
  12463. name: "Megamacro",
  12464. height: math.unit(500, "miles")
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(1.8796, "m"),
  12473. weight: math.unit(230, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/colin-t/front.svg",
  12477. extra: 1272 / 1193,
  12478. bottom: 0.07
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Micro",
  12485. height: math.unit(0.571, "meters")
  12486. },
  12487. {
  12488. name: "Normal",
  12489. height: math.unit(1.8796, "meters"),
  12490. default: true
  12491. },
  12492. {
  12493. name: "Tall",
  12494. height: math.unit(4, "meters")
  12495. },
  12496. {
  12497. name: "Macro",
  12498. height: math.unit(67.241, "meters")
  12499. },
  12500. {
  12501. name: "Megamacro",
  12502. height: math.unit(371.856, "meters")
  12503. },
  12504. {
  12505. name: "Planetary",
  12506. height: math.unit(12631.5689, "km")
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12512. {
  12513. front: {
  12514. height: math.unit(1.85, "meters"),
  12515. weight: math.unit(80, "kg"),
  12516. name: "Front",
  12517. image: {
  12518. source: "./media/characters/matvei/front.svg",
  12519. extra: 614 / 594,
  12520. bottom: 0.01
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(1.85, "meters"),
  12528. default: true
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(5 + 9 / 12, "feet"),
  12537. weight: math.unit(70, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/quincy/front.svg",
  12541. extra: 3041 / 2751
  12542. }
  12543. },
  12544. back: {
  12545. height: math.unit(5 + 9 / 12, "feet"),
  12546. weight: math.unit(70, "lb"),
  12547. name: "Back",
  12548. image: {
  12549. source: "./media/characters/quincy/back.svg",
  12550. extra: 3041 / 2751
  12551. }
  12552. },
  12553. flying: {
  12554. height: math.unit(5 + 4 / 12, "feet"),
  12555. weight: math.unit(70, "lb"),
  12556. name: "Flying",
  12557. image: {
  12558. source: "./media/characters/quincy/flying.svg",
  12559. extra: 1044 / 930
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Micro",
  12566. height: math.unit(3, "cm")
  12567. },
  12568. {
  12569. name: "Normal",
  12570. height: math.unit(5 + 9 / 12, "feet")
  12571. },
  12572. {
  12573. name: "Macro",
  12574. height: math.unit(200, "meters"),
  12575. default: true
  12576. },
  12577. {
  12578. name: "Megamacro",
  12579. height: math.unit(1000, "meters")
  12580. },
  12581. ]
  12582. ))
  12583. characterMakers.push(() => makeCharacter(
  12584. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12585. {
  12586. front: {
  12587. height: math.unit(3 + 11/12, "feet"),
  12588. weight: math.unit(50, "lb"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/vanrel/front.svg",
  12592. extra: 1104/949,
  12593. bottom: 52/1156
  12594. }
  12595. },
  12596. back: {
  12597. height: math.unit(3 + 11/12, "feet"),
  12598. weight: math.unit(50, "lb"),
  12599. name: "Back",
  12600. image: {
  12601. source: "./media/characters/vanrel/back.svg",
  12602. extra: 1119/976,
  12603. bottom: 37/1156
  12604. }
  12605. },
  12606. tome: {
  12607. height: math.unit(1.35, "feet"),
  12608. weight: math.unit(10, "lb"),
  12609. name: "Vanrel's Tome",
  12610. rename: true,
  12611. image: {
  12612. source: "./media/characters/vanrel/tome.svg"
  12613. }
  12614. },
  12615. beans: {
  12616. height: math.unit(0.89, "feet"),
  12617. name: "Beans",
  12618. image: {
  12619. source: "./media/characters/vanrel/beans.svg"
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Normal",
  12626. height: math.unit(3 + 11/12, "feet"),
  12627. default: true
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(7 + 5 / 12, "feet"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/kuiper-vanrel/front.svg",
  12639. extra: 1219/1169,
  12640. bottom: 69/1288
  12641. }
  12642. },
  12643. back: {
  12644. height: math.unit(7 + 5 / 12, "feet"),
  12645. name: "Back",
  12646. image: {
  12647. source: "./media/characters/kuiper-vanrel/back.svg",
  12648. extra: 1236/1193,
  12649. bottom: 27/1263
  12650. }
  12651. },
  12652. foot: {
  12653. height: math.unit(0.55, "meters"),
  12654. name: "Foot",
  12655. image: {
  12656. source: "./media/characters/kuiper-vanrel/foot.svg",
  12657. }
  12658. },
  12659. battle: {
  12660. height: math.unit(6.824, "feet"),
  12661. name: "Battle",
  12662. image: {
  12663. source: "./media/characters/kuiper-vanrel/battle.svg",
  12664. extra: 1466 / 1327,
  12665. bottom: 29 / 1492.5
  12666. }
  12667. },
  12668. meerkui: {
  12669. height: math.unit(18, "inches"),
  12670. name: "Meerkui",
  12671. image: {
  12672. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12673. extra: 1354/1289,
  12674. bottom: 69/1423
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Normal",
  12681. height: math.unit(7 + 5 / 12, "feet"),
  12682. default: true
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(8 + 5 / 12, "feet"),
  12691. name: "Front",
  12692. image: {
  12693. source: "./media/characters/keset-vanrel/front.svg",
  12694. extra: 1231/1148,
  12695. bottom: 82/1313
  12696. }
  12697. },
  12698. back: {
  12699. height: math.unit(8 + 5 / 12, "feet"),
  12700. name: "Back",
  12701. image: {
  12702. source: "./media/characters/keset-vanrel/back.svg",
  12703. extra: 1240/1174,
  12704. bottom: 33/1273
  12705. }
  12706. },
  12707. hand: {
  12708. height: math.unit(0.6, "meters"),
  12709. name: "Hand",
  12710. image: {
  12711. source: "./media/characters/keset-vanrel/hand.svg"
  12712. }
  12713. },
  12714. foot: {
  12715. height: math.unit(0.94978, "meters"),
  12716. name: "Foot",
  12717. image: {
  12718. source: "./media/characters/keset-vanrel/foot.svg"
  12719. }
  12720. },
  12721. battle: {
  12722. height: math.unit(7.408, "feet"),
  12723. name: "Battle",
  12724. image: {
  12725. source: "./media/characters/keset-vanrel/battle.svg",
  12726. extra: 1890 / 1386,
  12727. bottom: 73.28 / 1970
  12728. }
  12729. },
  12730. },
  12731. [
  12732. {
  12733. name: "Normal",
  12734. height: math.unit(8 + 5 / 12, "feet"),
  12735. default: true
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12741. {
  12742. front: {
  12743. height: math.unit(6, "feet"),
  12744. weight: math.unit(150, "lb"),
  12745. name: "Front",
  12746. image: {
  12747. source: "./media/characters/neos/front.svg",
  12748. extra: 1696 / 992,
  12749. bottom: 0.14
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Normal",
  12756. height: math.unit(54, "cm"),
  12757. default: true
  12758. },
  12759. {
  12760. name: "Macro",
  12761. height: math.unit(100, "m")
  12762. },
  12763. {
  12764. name: "Megamacro",
  12765. height: math.unit(10, "km")
  12766. },
  12767. {
  12768. name: "Megamacro+",
  12769. height: math.unit(100, "km")
  12770. },
  12771. {
  12772. name: "Gigamacro",
  12773. height: math.unit(100, "Mm")
  12774. },
  12775. {
  12776. name: "Teramacro",
  12777. height: math.unit(100, "Gm")
  12778. },
  12779. {
  12780. name: "Examacro",
  12781. height: math.unit(100, "Em")
  12782. },
  12783. {
  12784. name: "Godly",
  12785. height: math.unit(10000, "Ym")
  12786. },
  12787. {
  12788. name: "Beyond Godly",
  12789. height: math.unit(25, "multiverses")
  12790. },
  12791. ]
  12792. ))
  12793. characterMakers.push(() => makeCharacter(
  12794. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12795. {
  12796. feminine: {
  12797. height: math.unit(5, "feet"),
  12798. weight: math.unit(100, "lb"),
  12799. name: "Feminine",
  12800. image: {
  12801. source: "./media/characters/sammy-mouse/feminine.svg",
  12802. extra: 2526 / 2425,
  12803. bottom: 0.123
  12804. }
  12805. },
  12806. masculine: {
  12807. height: math.unit(5, "feet"),
  12808. weight: math.unit(100, "lb"),
  12809. name: "Masculine",
  12810. image: {
  12811. source: "./media/characters/sammy-mouse/masculine.svg",
  12812. extra: 2526 / 2425,
  12813. bottom: 0.123
  12814. }
  12815. },
  12816. },
  12817. [
  12818. {
  12819. name: "Micro",
  12820. height: math.unit(5, "inches")
  12821. },
  12822. {
  12823. name: "Normal",
  12824. height: math.unit(5, "feet"),
  12825. default: true
  12826. },
  12827. {
  12828. name: "Macro",
  12829. height: math.unit(60, "feet")
  12830. },
  12831. ]
  12832. ))
  12833. characterMakers.push(() => makeCharacter(
  12834. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12835. {
  12836. front: {
  12837. height: math.unit(4, "feet"),
  12838. weight: math.unit(50, "lb"),
  12839. name: "Front",
  12840. image: {
  12841. source: "./media/characters/kole/front.svg",
  12842. extra: 1423 / 1303,
  12843. bottom: 0.025
  12844. }
  12845. },
  12846. back: {
  12847. height: math.unit(4, "feet"),
  12848. weight: math.unit(50, "lb"),
  12849. name: "Back",
  12850. image: {
  12851. source: "./media/characters/kole/back.svg",
  12852. extra: 1426 / 1280,
  12853. bottom: 0.02
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(4, "feet"),
  12861. default: true
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12867. {
  12868. front: {
  12869. height: math.unit(2.5, "feet"),
  12870. weight: math.unit(32, "lb"),
  12871. name: "Front",
  12872. image: {
  12873. source: "./media/characters/rufran/front.svg",
  12874. extra: 1313/885,
  12875. bottom: 94/1407
  12876. }
  12877. },
  12878. side: {
  12879. height: math.unit(2.5, "feet"),
  12880. weight: math.unit(32, "lb"),
  12881. name: "Side",
  12882. image: {
  12883. source: "./media/characters/rufran/side.svg",
  12884. extra: 1109/852,
  12885. bottom: 118/1227
  12886. }
  12887. },
  12888. back: {
  12889. height: math.unit(2.5, "feet"),
  12890. weight: math.unit(32, "lb"),
  12891. name: "Back",
  12892. image: {
  12893. source: "./media/characters/rufran/back.svg",
  12894. extra: 1280/878,
  12895. bottom: 131/1411
  12896. }
  12897. },
  12898. mouth: {
  12899. height: math.unit(1.13, "feet"),
  12900. name: "Mouth",
  12901. image: {
  12902. source: "./media/characters/rufran/mouth.svg"
  12903. }
  12904. },
  12905. foot: {
  12906. height: math.unit(1.33, "feet"),
  12907. name: "Foot",
  12908. image: {
  12909. source: "./media/characters/rufran/foot.svg"
  12910. }
  12911. },
  12912. koboldFront: {
  12913. height: math.unit(2 + 6 / 12, "feet"),
  12914. weight: math.unit(20, "lb"),
  12915. name: "Front (Kobold)",
  12916. image: {
  12917. source: "./media/characters/rufran/kobold-front.svg",
  12918. extra: 2041 / 1839,
  12919. bottom: 0.055
  12920. }
  12921. },
  12922. koboldBack: {
  12923. height: math.unit(2 + 6 / 12, "feet"),
  12924. weight: math.unit(20, "lb"),
  12925. name: "Back (Kobold)",
  12926. image: {
  12927. source: "./media/characters/rufran/kobold-back.svg",
  12928. extra: 2054 / 1839,
  12929. bottom: 0.01
  12930. }
  12931. },
  12932. koboldHand: {
  12933. height: math.unit(0.2166, "meters"),
  12934. name: "Hand (Kobold)",
  12935. image: {
  12936. source: "./media/characters/rufran/kobold-hand.svg"
  12937. }
  12938. },
  12939. koboldFoot: {
  12940. height: math.unit(0.185, "meters"),
  12941. name: "Foot (Kobold)",
  12942. image: {
  12943. source: "./media/characters/rufran/kobold-foot.svg"
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Micro",
  12950. height: math.unit(1, "inch")
  12951. },
  12952. {
  12953. name: "Normal",
  12954. height: math.unit(2 + 6 / 12, "feet"),
  12955. default: true
  12956. },
  12957. {
  12958. name: "Big",
  12959. height: math.unit(60, "feet")
  12960. },
  12961. {
  12962. name: "Macro",
  12963. height: math.unit(325, "feet")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(0.3, "meters"),
  12972. weight: math.unit(3.5, "kg"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/chip/front.svg",
  12976. extra: 748 / 674
  12977. }
  12978. },
  12979. },
  12980. [
  12981. {
  12982. name: "Micro",
  12983. height: math.unit(1, "inch"),
  12984. default: true
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12990. {
  12991. side: {
  12992. height: math.unit(2.3, "meters"),
  12993. weight: math.unit(3500, "lb"),
  12994. name: "Side",
  12995. image: {
  12996. source: "./media/characters/torvid/side.svg",
  12997. extra: 1972 / 722,
  12998. bottom: 0.035
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Normal",
  13005. height: math.unit(2.3, "meters"),
  13006. default: true
  13007. },
  13008. ]
  13009. ))
  13010. characterMakers.push(() => makeCharacter(
  13011. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13012. {
  13013. front: {
  13014. height: math.unit(2, "meters"),
  13015. weight: math.unit(150.5, "kg"),
  13016. name: "Front",
  13017. image: {
  13018. source: "./media/characters/susan/front.svg",
  13019. extra: 693 / 635,
  13020. bottom: 0.05
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Megamacro",
  13027. height: math.unit(505, "miles"),
  13028. default: true
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(6, "feet"),
  13037. weight: math.unit(150, "lb"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/raindrops/front.svg",
  13041. extra: 2655 / 2461,
  13042. bottom: 49 / 2705
  13043. }
  13044. },
  13045. back: {
  13046. height: math.unit(6, "feet"),
  13047. weight: math.unit(150, "lb"),
  13048. name: "Back",
  13049. image: {
  13050. source: "./media/characters/raindrops/back.svg",
  13051. extra: 2574 / 2400,
  13052. bottom: 65 / 2634
  13053. }
  13054. },
  13055. },
  13056. [
  13057. {
  13058. name: "Micro",
  13059. height: math.unit(6, "inches")
  13060. },
  13061. {
  13062. name: "Normal",
  13063. height: math.unit(6 + 2 / 12, "feet")
  13064. },
  13065. {
  13066. name: "Macro",
  13067. height: math.unit(131, "feet"),
  13068. default: true
  13069. },
  13070. {
  13071. name: "Megamacro",
  13072. height: math.unit(15, "miles")
  13073. },
  13074. {
  13075. name: "Gigamacro",
  13076. height: math.unit(4000, "miles")
  13077. },
  13078. {
  13079. name: "Teramacro",
  13080. height: math.unit(315000, "miles")
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(2.794, "meters"),
  13089. weight: math.unit(325, "kg"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/tezwa/front.svg",
  13093. extra: 2083 / 1906,
  13094. bottom: 0.031
  13095. }
  13096. },
  13097. foot: {
  13098. height: math.unit(0.687, "meters"),
  13099. name: "Foot",
  13100. image: {
  13101. source: "./media/characters/tezwa/foot.svg"
  13102. }
  13103. },
  13104. },
  13105. [
  13106. {
  13107. name: "Normal",
  13108. height: math.unit(9 + 2 / 12, "feet"),
  13109. default: true
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13115. {
  13116. front: {
  13117. height: math.unit(58, "feet"),
  13118. weight: math.unit(89000, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/typhus/front.svg",
  13122. extra: 816 / 800,
  13123. bottom: 0.065
  13124. }
  13125. },
  13126. },
  13127. [
  13128. {
  13129. name: "Macro",
  13130. height: math.unit(58, "feet"),
  13131. default: true
  13132. },
  13133. ]
  13134. ))
  13135. characterMakers.push(() => makeCharacter(
  13136. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13137. {
  13138. front: {
  13139. height: math.unit(12, "feet"),
  13140. weight: math.unit(6, "tonnes"),
  13141. name: "Front",
  13142. image: {
  13143. source: "./media/characters/lyra-von-wulf/front.svg",
  13144. extra: 1,
  13145. bottom: 0.10
  13146. }
  13147. },
  13148. frontMecha: {
  13149. height: math.unit(12, "feet"),
  13150. weight: math.unit(12, "tonnes"),
  13151. name: "Front (Mecha)",
  13152. image: {
  13153. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13154. extra: 1,
  13155. bottom: 0.042
  13156. }
  13157. },
  13158. maw: {
  13159. height: math.unit(2.2, "feet"),
  13160. name: "Maw",
  13161. image: {
  13162. source: "./media/characters/lyra-von-wulf/maw.svg"
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Normal",
  13169. height: math.unit(12, "feet"),
  13170. default: true
  13171. },
  13172. {
  13173. name: "Classic",
  13174. height: math.unit(50, "feet")
  13175. },
  13176. {
  13177. name: "Macro",
  13178. height: math.unit(500, "feet")
  13179. },
  13180. {
  13181. name: "Megamacro",
  13182. height: math.unit(1, "mile")
  13183. },
  13184. {
  13185. name: "Gigamacro",
  13186. height: math.unit(400, "miles")
  13187. },
  13188. {
  13189. name: "Teramacro",
  13190. height: math.unit(22000, "miles")
  13191. },
  13192. {
  13193. name: "Solarmacro",
  13194. height: math.unit(8600000, "miles")
  13195. },
  13196. {
  13197. name: "Galactic",
  13198. height: math.unit(1057000, "lightyears")
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(6 + 10 / 12, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/dixon/front.svg",
  13211. extra: 3361 / 3209,
  13212. bottom: 0.01
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Normal",
  13219. height: math.unit(6 + 10 / 12, "feet"),
  13220. default: true
  13221. },
  13222. {
  13223. name: "Big",
  13224. height: math.unit(12, "meters")
  13225. },
  13226. {
  13227. name: "Macro",
  13228. height: math.unit(500, "meters")
  13229. },
  13230. {
  13231. name: "Megamacro",
  13232. height: math.unit(2, "km")
  13233. },
  13234. ]
  13235. ))
  13236. characterMakers.push(() => makeCharacter(
  13237. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13238. {
  13239. front: {
  13240. height: math.unit(185, "cm"),
  13241. weight: math.unit(68, "kg"),
  13242. name: "Front",
  13243. image: {
  13244. source: "./media/characters/kauko/front.svg",
  13245. extra: 1455 / 1421,
  13246. bottom: 0.03
  13247. }
  13248. },
  13249. back: {
  13250. height: math.unit(185, "cm"),
  13251. weight: math.unit(68, "kg"),
  13252. name: "Back",
  13253. image: {
  13254. source: "./media/characters/kauko/back.svg",
  13255. extra: 1455 / 1421,
  13256. bottom: 0.004
  13257. }
  13258. },
  13259. },
  13260. [
  13261. {
  13262. name: "Normal",
  13263. height: math.unit(185, "cm"),
  13264. default: true
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13270. {
  13271. front: {
  13272. height: math.unit(6, "feet"),
  13273. weight: math.unit(150, "kg"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/varg/front.svg",
  13277. extra: 1108 / 1018,
  13278. bottom: 0.0375
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Normal",
  13285. height: math.unit(5, "meters")
  13286. },
  13287. {
  13288. name: "Macro",
  13289. height: math.unit(200, "meters")
  13290. },
  13291. {
  13292. name: "Megamacro",
  13293. height: math.unit(20, "kilometers")
  13294. },
  13295. {
  13296. name: "True Size",
  13297. height: math.unit(211, "km"),
  13298. default: true
  13299. },
  13300. {
  13301. name: "Gigamacro",
  13302. height: math.unit(1000, "km")
  13303. },
  13304. {
  13305. name: "Gigamacro+",
  13306. height: math.unit(8000, "km")
  13307. },
  13308. {
  13309. name: "Teramacro",
  13310. height: math.unit(1000000, "km")
  13311. },
  13312. ]
  13313. ))
  13314. characterMakers.push(() => makeCharacter(
  13315. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13316. {
  13317. front: {
  13318. height: math.unit(7 + 7 / 12, "feet"),
  13319. weight: math.unit(267, "lb"),
  13320. name: "Front",
  13321. image: {
  13322. source: "./media/characters/dayza/front.svg",
  13323. extra: 1262 / 1200,
  13324. bottom: 0.035
  13325. }
  13326. },
  13327. side: {
  13328. height: math.unit(7 + 7 / 12, "feet"),
  13329. weight: math.unit(267, "lb"),
  13330. name: "Side",
  13331. image: {
  13332. source: "./media/characters/dayza/side.svg",
  13333. extra: 1295 / 1245,
  13334. bottom: 0.05
  13335. }
  13336. },
  13337. back: {
  13338. height: math.unit(7 + 7 / 12, "feet"),
  13339. weight: math.unit(267, "lb"),
  13340. name: "Back",
  13341. image: {
  13342. source: "./media/characters/dayza/back.svg",
  13343. extra: 1241 / 1170
  13344. }
  13345. },
  13346. },
  13347. [
  13348. {
  13349. name: "Normal",
  13350. height: math.unit(7 + 7 / 12, "feet"),
  13351. default: true
  13352. },
  13353. {
  13354. name: "Macro",
  13355. height: math.unit(155, "feet")
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13361. {
  13362. front: {
  13363. height: math.unit(6 + 5 / 12, "feet"),
  13364. weight: math.unit(160, "lb"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/xanthos/front.svg",
  13368. extra: 1,
  13369. bottom: 0.04
  13370. }
  13371. },
  13372. back: {
  13373. height: math.unit(6 + 5 / 12, "feet"),
  13374. weight: math.unit(160, "lb"),
  13375. name: "Back",
  13376. image: {
  13377. source: "./media/characters/xanthos/back.svg",
  13378. extra: 1,
  13379. bottom: 0.03
  13380. }
  13381. },
  13382. hand: {
  13383. height: math.unit(0.928, "feet"),
  13384. name: "Hand",
  13385. image: {
  13386. source: "./media/characters/xanthos/hand.svg"
  13387. }
  13388. },
  13389. foot: {
  13390. height: math.unit(1.286, "feet"),
  13391. name: "Foot",
  13392. image: {
  13393. source: "./media/characters/xanthos/foot.svg"
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Normal",
  13400. height: math.unit(6 + 5 / 12, "feet"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Normal+",
  13405. height: math.unit(6, "meters")
  13406. },
  13407. {
  13408. name: "Macro",
  13409. height: math.unit(40, "feet")
  13410. },
  13411. {
  13412. name: "Macro+",
  13413. height: math.unit(200, "meters")
  13414. },
  13415. {
  13416. name: "Megamacro",
  13417. height: math.unit(20, "km")
  13418. },
  13419. {
  13420. name: "Megamacro+",
  13421. height: math.unit(100, "km")
  13422. },
  13423. {
  13424. name: "Gigamacro",
  13425. height: math.unit(200, "megameters")
  13426. },
  13427. {
  13428. name: "Gigamacro+",
  13429. height: math.unit(1.5, "gigameters")
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13435. {
  13436. front: {
  13437. height: math.unit(6 + 3 / 12, "feet"),
  13438. weight: math.unit(215, "lb"),
  13439. name: "Front",
  13440. image: {
  13441. source: "./media/characters/grynn/front.svg",
  13442. extra: 4627 / 4209,
  13443. bottom: 0.047
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Micro",
  13450. height: math.unit(6, "inches")
  13451. },
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(6 + 3 / 12, "feet"),
  13455. default: true
  13456. },
  13457. {
  13458. name: "Big",
  13459. height: math.unit(104, "feet")
  13460. },
  13461. {
  13462. name: "Macro",
  13463. height: math.unit(944, "feet")
  13464. },
  13465. {
  13466. name: "Macro+",
  13467. height: math.unit(9480, "feet")
  13468. },
  13469. {
  13470. name: "Megamacro",
  13471. height: math.unit(78752, "feet")
  13472. },
  13473. {
  13474. name: "Megamacro+",
  13475. height: math.unit(630128, "feet")
  13476. },
  13477. {
  13478. name: "Megamacro++",
  13479. height: math.unit(3150695, "feet")
  13480. },
  13481. ]
  13482. ))
  13483. characterMakers.push(() => makeCharacter(
  13484. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13485. {
  13486. front: {
  13487. height: math.unit(7 + 5 / 12, "feet"),
  13488. weight: math.unit(450, "lb"),
  13489. name: "Front",
  13490. image: {
  13491. source: "./media/characters/mocha-aura/front.svg",
  13492. extra: 1907 / 1817,
  13493. bottom: 0.04
  13494. }
  13495. },
  13496. back: {
  13497. height: math.unit(7 + 5 / 12, "feet"),
  13498. weight: math.unit(450, "lb"),
  13499. name: "Back",
  13500. image: {
  13501. source: "./media/characters/mocha-aura/back.svg",
  13502. extra: 1900 / 1825,
  13503. bottom: 0.045
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Nano",
  13510. height: math.unit(1, "nm")
  13511. },
  13512. {
  13513. name: "Megamicro",
  13514. height: math.unit(1, "mm")
  13515. },
  13516. {
  13517. name: "Micro",
  13518. height: math.unit(3, "inches")
  13519. },
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(7 + 5 / 12, "feet"),
  13523. default: true
  13524. },
  13525. {
  13526. name: "Macro",
  13527. height: math.unit(30, "feet")
  13528. },
  13529. {
  13530. name: "Megamacro",
  13531. height: math.unit(3500, "feet")
  13532. },
  13533. {
  13534. name: "Teramacro",
  13535. height: math.unit(500000, "miles")
  13536. },
  13537. {
  13538. name: "Petamacro",
  13539. height: math.unit(50000000000000000, "parsecs")
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(6, "feet"),
  13548. weight: math.unit(150, "lb"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/ilisha-devya/front.svg",
  13552. extra: 1053/1049,
  13553. bottom: 270/1323
  13554. }
  13555. },
  13556. back: {
  13557. height: math.unit(6, "feet"),
  13558. weight: math.unit(150, "lb"),
  13559. name: "Back",
  13560. image: {
  13561. source: "./media/characters/ilisha-devya/back.svg",
  13562. extra: 1131/1128,
  13563. bottom: 39/1170
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Macro",
  13570. height: math.unit(500, "feet"),
  13571. default: true
  13572. },
  13573. {
  13574. name: "Megamacro",
  13575. height: math.unit(10, "miles")
  13576. },
  13577. {
  13578. name: "Gigamacro",
  13579. height: math.unit(100000, "miles")
  13580. },
  13581. {
  13582. name: "Examacro",
  13583. height: math.unit(1e9, "lightyears")
  13584. },
  13585. {
  13586. name: "Omniversal",
  13587. height: math.unit(1e33, "lightyears")
  13588. },
  13589. {
  13590. name: "Beyond Infinite",
  13591. height: math.unit(1e100, "lightyears")
  13592. },
  13593. ]
  13594. ))
  13595. characterMakers.push(() => makeCharacter(
  13596. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13597. {
  13598. Side: {
  13599. height: math.unit(6, "feet"),
  13600. weight: math.unit(150, "lb"),
  13601. name: "Side",
  13602. image: {
  13603. source: "./media/characters/mira/side.svg",
  13604. extra: 900 / 799,
  13605. bottom: 0.02
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Human Size",
  13612. height: math.unit(6, "feet")
  13613. },
  13614. {
  13615. name: "Macro",
  13616. height: math.unit(100, "feet"),
  13617. default: true
  13618. },
  13619. {
  13620. name: "Megamacro",
  13621. height: math.unit(10, "miles")
  13622. },
  13623. {
  13624. name: "Gigamacro",
  13625. height: math.unit(25000, "miles")
  13626. },
  13627. {
  13628. name: "Teramacro",
  13629. height: math.unit(300, "AU")
  13630. },
  13631. {
  13632. name: "Full Size",
  13633. height: math.unit(4.5e10, "lightyears")
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13639. {
  13640. front: {
  13641. height: math.unit(6, "feet"),
  13642. weight: math.unit(150, "lb"),
  13643. name: "Front",
  13644. image: {
  13645. source: "./media/characters/holly/front.svg",
  13646. extra: 639 / 606
  13647. }
  13648. },
  13649. back: {
  13650. height: math.unit(6, "feet"),
  13651. weight: math.unit(150, "lb"),
  13652. name: "Back",
  13653. image: {
  13654. source: "./media/characters/holly/back.svg",
  13655. extra: 623 / 598
  13656. }
  13657. },
  13658. frontWorking: {
  13659. height: math.unit(6, "feet"),
  13660. weight: math.unit(150, "lb"),
  13661. name: "Front (Working)",
  13662. image: {
  13663. source: "./media/characters/holly/front-working.svg",
  13664. extra: 607 / 577,
  13665. bottom: 0.048
  13666. }
  13667. },
  13668. },
  13669. [
  13670. {
  13671. name: "Normal",
  13672. height: math.unit(12 + 3 / 12, "feet"),
  13673. default: true
  13674. },
  13675. ]
  13676. ))
  13677. characterMakers.push(() => makeCharacter(
  13678. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13679. {
  13680. front: {
  13681. height: math.unit(6, "feet"),
  13682. weight: math.unit(150, "lb"),
  13683. name: "Front",
  13684. image: {
  13685. source: "./media/characters/porter/front.svg",
  13686. extra: 1,
  13687. bottom: 0.01
  13688. }
  13689. },
  13690. frontRobes: {
  13691. height: math.unit(6, "feet"),
  13692. weight: math.unit(150, "lb"),
  13693. name: "Front (Robes)",
  13694. image: {
  13695. source: "./media/characters/porter/front-robes.svg",
  13696. extra: 1.01,
  13697. bottom: 0.01
  13698. }
  13699. },
  13700. },
  13701. [
  13702. {
  13703. name: "Normal",
  13704. height: math.unit(11 + 9 / 12, "feet"),
  13705. default: true
  13706. },
  13707. ]
  13708. ))
  13709. characterMakers.push(() => makeCharacter(
  13710. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13711. {
  13712. legendary: {
  13713. height: math.unit(6, "feet"),
  13714. weight: math.unit(150, "lb"),
  13715. name: "Legendary",
  13716. image: {
  13717. source: "./media/characters/lucy/legendary.svg",
  13718. extra: 1355 / 1100,
  13719. bottom: 0.045
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Legendary",
  13726. height: math.unit(86882 * 2, "miles"),
  13727. default: true
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13733. {
  13734. front: {
  13735. height: math.unit(6, "feet"),
  13736. weight: math.unit(150, "lb"),
  13737. name: "Front",
  13738. image: {
  13739. source: "./media/characters/drusilla/front.svg",
  13740. extra: 678 / 635,
  13741. bottom: 0.03
  13742. }
  13743. },
  13744. back: {
  13745. height: math.unit(6, "feet"),
  13746. weight: math.unit(150, "lb"),
  13747. name: "Back",
  13748. image: {
  13749. source: "./media/characters/drusilla/back.svg",
  13750. extra: 678 / 635,
  13751. bottom: 0.005
  13752. }
  13753. },
  13754. },
  13755. [
  13756. {
  13757. name: "Macro",
  13758. height: math.unit(100, "feet")
  13759. },
  13760. {
  13761. name: "Canon Height",
  13762. height: math.unit(2000, "feet"),
  13763. default: true
  13764. },
  13765. ]
  13766. ))
  13767. characterMakers.push(() => makeCharacter(
  13768. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13769. {
  13770. front: {
  13771. height: math.unit(6, "feet"),
  13772. weight: math.unit(180, "lb"),
  13773. name: "Front",
  13774. image: {
  13775. source: "./media/characters/renard-thatch/front.svg",
  13776. extra: 2411 / 2275,
  13777. bottom: 0.01
  13778. }
  13779. },
  13780. frontPosing: {
  13781. height: math.unit(6, "feet"),
  13782. weight: math.unit(180, "lb"),
  13783. name: "Front (Posing)",
  13784. image: {
  13785. source: "./media/characters/renard-thatch/front-posing.svg",
  13786. extra: 2381 / 2261,
  13787. bottom: 0.01
  13788. }
  13789. },
  13790. back: {
  13791. height: math.unit(6, "feet"),
  13792. weight: math.unit(180, "lb"),
  13793. name: "Back",
  13794. image: {
  13795. source: "./media/characters/renard-thatch/back.svg",
  13796. extra: 2428 / 2288
  13797. }
  13798. },
  13799. },
  13800. [
  13801. {
  13802. name: "Micro",
  13803. height: math.unit(3, "inches")
  13804. },
  13805. {
  13806. name: "Default",
  13807. height: math.unit(6, "feet"),
  13808. default: true
  13809. },
  13810. {
  13811. name: "Macro",
  13812. height: math.unit(75, "feet")
  13813. },
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13818. {
  13819. front: {
  13820. height: math.unit(1450, "feet"),
  13821. weight: math.unit(1.21e6, "tons"),
  13822. name: "Front",
  13823. image: {
  13824. source: "./media/characters/sekvra/front.svg",
  13825. extra: 1193/1190,
  13826. bottom: 78/1271
  13827. }
  13828. },
  13829. side: {
  13830. height: math.unit(1450, "feet"),
  13831. weight: math.unit(1.21e6, "tons"),
  13832. name: "Side",
  13833. image: {
  13834. source: "./media/characters/sekvra/side.svg",
  13835. extra: 1193/1190,
  13836. bottom: 52/1245
  13837. }
  13838. },
  13839. back: {
  13840. height: math.unit(1450, "feet"),
  13841. weight: math.unit(1.21e6, "tons"),
  13842. name: "Back",
  13843. image: {
  13844. source: "./media/characters/sekvra/back.svg",
  13845. extra: 1219/1216,
  13846. bottom: 21/1240
  13847. }
  13848. },
  13849. frontClothed: {
  13850. height: math.unit(1450, "feet"),
  13851. weight: math.unit(1.21e6, "tons"),
  13852. name: "Front (Clothed)",
  13853. image: {
  13854. source: "./media/characters/sekvra/front-clothed.svg",
  13855. extra: 1192/1189,
  13856. bottom: 79/1271
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Macro",
  13863. height: math.unit(1450, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Megamacro",
  13868. height: math.unit(15000, "feet")
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13874. {
  13875. front: {
  13876. height: math.unit(6, "feet"),
  13877. weight: math.unit(150, "lb"),
  13878. name: "Front",
  13879. image: {
  13880. source: "./media/characters/carmine/front.svg",
  13881. extra: 1,
  13882. bottom: 0.035
  13883. }
  13884. },
  13885. frontArmor: {
  13886. height: math.unit(6, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Front (Armor)",
  13889. image: {
  13890. source: "./media/characters/carmine/front-armor.svg",
  13891. extra: 1,
  13892. bottom: 0.035
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Large",
  13899. height: math.unit(1, "mile")
  13900. },
  13901. {
  13902. name: "Huge",
  13903. height: math.unit(40, "miles"),
  13904. default: true
  13905. },
  13906. {
  13907. name: "Colossal",
  13908. height: math.unit(2500, "miles")
  13909. },
  13910. ]
  13911. ))
  13912. characterMakers.push(() => makeCharacter(
  13913. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13914. {
  13915. front: {
  13916. height: math.unit(6, "feet"),
  13917. weight: math.unit(150, "lb"),
  13918. name: "Front",
  13919. image: {
  13920. source: "./media/characters/elyssia/front.svg",
  13921. extra: 2201 / 2035,
  13922. bottom: 0.05
  13923. }
  13924. },
  13925. frontClothed: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(150, "lb"),
  13928. name: "Front (Clothed)",
  13929. image: {
  13930. source: "./media/characters/elyssia/front-clothed.svg",
  13931. extra: 2201 / 2035,
  13932. bottom: 0.05
  13933. }
  13934. },
  13935. back: {
  13936. height: math.unit(6, "feet"),
  13937. weight: math.unit(150, "lb"),
  13938. name: "Back",
  13939. image: {
  13940. source: "./media/characters/elyssia/back.svg",
  13941. extra: 2201 / 2035,
  13942. bottom: 0.013
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Smaller",
  13949. height: math.unit(150, "feet")
  13950. },
  13951. {
  13952. name: "Standard",
  13953. height: math.unit(1400, "feet"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Distracted",
  13958. height: math.unit(15000, "feet")
  13959. },
  13960. ]
  13961. ))
  13962. characterMakers.push(() => makeCharacter(
  13963. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13964. {
  13965. front: {
  13966. height: math.unit(7 + 4/12, "feet"),
  13967. weight: math.unit(690, "lb"),
  13968. name: "Front",
  13969. image: {
  13970. source: "./media/characters/geno-maxwell/front.svg",
  13971. extra: 984/856,
  13972. bottom: 87/1071
  13973. }
  13974. },
  13975. back: {
  13976. height: math.unit(7 + 4/12, "feet"),
  13977. weight: math.unit(690, "lb"),
  13978. name: "Back",
  13979. image: {
  13980. source: "./media/characters/geno-maxwell/back.svg",
  13981. extra: 981/854,
  13982. bottom: 57/1038
  13983. }
  13984. },
  13985. frontCostume: {
  13986. height: math.unit(7 + 4/12, "feet"),
  13987. weight: math.unit(690, "lb"),
  13988. name: "Front (Costume)",
  13989. image: {
  13990. source: "./media/characters/geno-maxwell/front-costume.svg",
  13991. extra: 984/856,
  13992. bottom: 87/1071
  13993. }
  13994. },
  13995. backcostume: {
  13996. height: math.unit(7 + 4/12, "feet"),
  13997. weight: math.unit(690, "lb"),
  13998. name: "Back (Costume)",
  13999. image: {
  14000. source: "./media/characters/geno-maxwell/back-costume.svg",
  14001. extra: 981/854,
  14002. bottom: 57/1038
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Micro",
  14009. height: math.unit(3, "inches")
  14010. },
  14011. {
  14012. name: "Normal",
  14013. height: math.unit(7 + 4 / 12, "feet"),
  14014. default: true
  14015. },
  14016. {
  14017. name: "Macro",
  14018. height: math.unit(220, "feet")
  14019. },
  14020. {
  14021. name: "Megamacro",
  14022. height: math.unit(11, "miles")
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14028. {
  14029. front: {
  14030. height: math.unit(7 + 4/12, "feet"),
  14031. weight: math.unit(750, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/regena-maxwell/front.svg",
  14035. extra: 984/856,
  14036. bottom: 87/1071
  14037. }
  14038. },
  14039. back: {
  14040. height: math.unit(7 + 4/12, "feet"),
  14041. weight: math.unit(750, "lb"),
  14042. name: "Back",
  14043. image: {
  14044. source: "./media/characters/regena-maxwell/back.svg",
  14045. extra: 981/854,
  14046. bottom: 57/1038
  14047. }
  14048. },
  14049. frontCostume: {
  14050. height: math.unit(7 + 4/12, "feet"),
  14051. weight: math.unit(750, "lb"),
  14052. name: "Front (Costume)",
  14053. image: {
  14054. source: "./media/characters/regena-maxwell/front-costume.svg",
  14055. extra: 984/856,
  14056. bottom: 87/1071
  14057. }
  14058. },
  14059. backcostume: {
  14060. height: math.unit(7 + 4/12, "feet"),
  14061. weight: math.unit(750, "lb"),
  14062. name: "Back (Costume)",
  14063. image: {
  14064. source: "./media/characters/regena-maxwell/back-costume.svg",
  14065. extra: 981/854,
  14066. bottom: 57/1038
  14067. }
  14068. },
  14069. },
  14070. [
  14071. {
  14072. name: "Normal",
  14073. height: math.unit(7 + 4 / 12, "feet"),
  14074. default: true
  14075. },
  14076. {
  14077. name: "Macro",
  14078. height: math.unit(220, "feet")
  14079. },
  14080. {
  14081. name: "Megamacro",
  14082. height: math.unit(11, "miles")
  14083. },
  14084. ]
  14085. ))
  14086. characterMakers.push(() => makeCharacter(
  14087. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14088. {
  14089. front: {
  14090. height: math.unit(6, "feet"),
  14091. weight: math.unit(150, "lb"),
  14092. name: "Front",
  14093. image: {
  14094. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14095. extra: 860 / 690,
  14096. bottom: 0.03
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(1.7, "meters"),
  14104. default: true
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14110. {
  14111. front: {
  14112. height: math.unit(6, "feet"),
  14113. weight: math.unit(150, "lb"),
  14114. name: "Front",
  14115. image: {
  14116. source: "./media/characters/quilly/front.svg",
  14117. extra: 890 / 776
  14118. }
  14119. },
  14120. },
  14121. [
  14122. {
  14123. name: "Gigamacro",
  14124. height: math.unit(404090, "miles"),
  14125. default: true
  14126. },
  14127. ]
  14128. ))
  14129. characterMakers.push(() => makeCharacter(
  14130. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14131. {
  14132. front: {
  14133. height: math.unit(7 + 8 / 12, "feet"),
  14134. weight: math.unit(350, "lb"),
  14135. name: "Front",
  14136. image: {
  14137. source: "./media/characters/tempest/front.svg",
  14138. extra: 1175 / 1086,
  14139. bottom: 0.02
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Normal",
  14146. height: math.unit(7 + 8 / 12, "feet"),
  14147. default: true
  14148. },
  14149. ]
  14150. ))
  14151. characterMakers.push(() => makeCharacter(
  14152. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14153. {
  14154. side: {
  14155. height: math.unit(4 + 5 / 12, "feet"),
  14156. weight: math.unit(80, "lb"),
  14157. name: "Side",
  14158. image: {
  14159. source: "./media/characters/rodger/side.svg",
  14160. extra: 1235 / 1118
  14161. }
  14162. },
  14163. },
  14164. [
  14165. {
  14166. name: "Micro",
  14167. height: math.unit(1, "inch")
  14168. },
  14169. {
  14170. name: "Normal",
  14171. height: math.unit(4 + 5 / 12, "feet"),
  14172. default: true
  14173. },
  14174. {
  14175. name: "Macro",
  14176. height: math.unit(120, "feet")
  14177. },
  14178. ]
  14179. ))
  14180. characterMakers.push(() => makeCharacter(
  14181. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14182. {
  14183. front: {
  14184. height: math.unit(6, "feet"),
  14185. weight: math.unit(150, "lb"),
  14186. name: "Front",
  14187. image: {
  14188. source: "./media/characters/danyel/front.svg",
  14189. extra: 1185 / 1123,
  14190. bottom: 0.05
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Shrunken",
  14197. height: math.unit(0.5, "mm")
  14198. },
  14199. {
  14200. name: "Micro",
  14201. height: math.unit(1, "mm"),
  14202. default: true
  14203. },
  14204. {
  14205. name: "Upsized",
  14206. height: math.unit(5 + 5 / 12, "feet")
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14212. {
  14213. front: {
  14214. height: math.unit(5 + 6 / 12, "feet"),
  14215. weight: math.unit(200, "lb"),
  14216. name: "Front",
  14217. image: {
  14218. source: "./media/characters/vivian-bijoux/front.svg",
  14219. extra: 1217/1209,
  14220. bottom: 76/1293
  14221. }
  14222. },
  14223. back: {
  14224. height: math.unit(5 + 6 / 12, "feet"),
  14225. weight: math.unit(200, "lb"),
  14226. name: "Back",
  14227. image: {
  14228. source: "./media/characters/vivian-bijoux/back.svg",
  14229. extra: 1214/1208,
  14230. bottom: 51/1265
  14231. }
  14232. },
  14233. dressed: {
  14234. height: math.unit(5 + 6 / 12, "feet"),
  14235. weight: math.unit(200, "lb"),
  14236. name: "Dressed",
  14237. image: {
  14238. source: "./media/characters/vivian-bijoux/dressed.svg",
  14239. extra: 1217/1209,
  14240. bottom: 76/1293
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Normal",
  14247. height: math.unit(5 + 6 / 12, "feet"),
  14248. default: true
  14249. },
  14250. {
  14251. name: "Bad Dream",
  14252. height: math.unit(500, "feet")
  14253. },
  14254. {
  14255. name: "Nightmare",
  14256. height: math.unit(500, "miles")
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14262. {
  14263. front: {
  14264. height: math.unit(6 + 1 / 12, "feet"),
  14265. weight: math.unit(260, "lb"),
  14266. name: "Front",
  14267. image: {
  14268. source: "./media/characters/zeta/front.svg",
  14269. extra: 1968 / 1889,
  14270. bottom: 0.06
  14271. }
  14272. },
  14273. back: {
  14274. height: math.unit(6 + 1 / 12, "feet"),
  14275. weight: math.unit(260, "lb"),
  14276. name: "Back",
  14277. image: {
  14278. source: "./media/characters/zeta/back.svg",
  14279. extra: 1944 / 1858,
  14280. bottom: 0.03
  14281. }
  14282. },
  14283. hand: {
  14284. height: math.unit(1.112, "feet"),
  14285. name: "Hand",
  14286. image: {
  14287. source: "./media/characters/zeta/hand.svg"
  14288. }
  14289. },
  14290. foot: {
  14291. height: math.unit(1.48, "feet"),
  14292. name: "Foot",
  14293. image: {
  14294. source: "./media/characters/zeta/foot.svg"
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "Micro",
  14301. height: math.unit(6, "inches")
  14302. },
  14303. {
  14304. name: "Normal",
  14305. height: math.unit(6 + 1 / 12, "feet"),
  14306. default: true
  14307. },
  14308. {
  14309. name: "Macro",
  14310. height: math.unit(20, "feet")
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14316. {
  14317. front: {
  14318. height: math.unit(6, "feet"),
  14319. weight: math.unit(150, "lb"),
  14320. name: "Front",
  14321. image: {
  14322. source: "./media/characters/jamie-larsen/front.svg",
  14323. extra: 962 / 933,
  14324. bottom: 0.02
  14325. }
  14326. },
  14327. back: {
  14328. height: math.unit(6, "feet"),
  14329. weight: math.unit(150, "lb"),
  14330. name: "Back",
  14331. image: {
  14332. source: "./media/characters/jamie-larsen/back.svg",
  14333. extra: 997 / 946
  14334. }
  14335. },
  14336. },
  14337. [
  14338. {
  14339. name: "Macro",
  14340. height: math.unit(28 + 7 / 12, "feet"),
  14341. default: true
  14342. },
  14343. {
  14344. name: "Macro+",
  14345. height: math.unit(180, "feet")
  14346. },
  14347. {
  14348. name: "Megamacro",
  14349. height: math.unit(10, "miles")
  14350. },
  14351. {
  14352. name: "Gigamacro",
  14353. height: math.unit(200000, "miles")
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14359. {
  14360. front: {
  14361. height: math.unit(6, "feet"),
  14362. weight: math.unit(120, "lb"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/vance/front.svg",
  14366. extra: 1980 / 1890,
  14367. bottom: 0.09
  14368. }
  14369. },
  14370. back: {
  14371. height: math.unit(6, "feet"),
  14372. weight: math.unit(120, "lb"),
  14373. name: "Back",
  14374. image: {
  14375. source: "./media/characters/vance/back.svg",
  14376. extra: 2081 / 1994,
  14377. bottom: 0.014
  14378. }
  14379. },
  14380. hand: {
  14381. height: math.unit(0.88, "feet"),
  14382. name: "Hand",
  14383. image: {
  14384. source: "./media/characters/vance/hand.svg"
  14385. }
  14386. },
  14387. foot: {
  14388. height: math.unit(0.64, "feet"),
  14389. name: "Foot",
  14390. image: {
  14391. source: "./media/characters/vance/foot.svg"
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Small",
  14398. height: math.unit(90, "feet"),
  14399. default: true
  14400. },
  14401. {
  14402. name: "Macro",
  14403. height: math.unit(100, "meters")
  14404. },
  14405. {
  14406. name: "Megamacro",
  14407. height: math.unit(15, "miles")
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(6, "feet"),
  14416. weight: math.unit(180, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/xochitl/front.svg",
  14420. extra: 2297 / 2261,
  14421. bottom: 0.065
  14422. }
  14423. },
  14424. back: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(180, "lb"),
  14427. name: "Back",
  14428. image: {
  14429. source: "./media/characters/xochitl/back.svg",
  14430. extra: 2386 / 2354,
  14431. bottom: 0.01
  14432. }
  14433. },
  14434. foot: {
  14435. height: math.unit(6 / 5 * 1.15, "feet"),
  14436. weight: math.unit(150, "lb"),
  14437. name: "Foot",
  14438. image: {
  14439. source: "./media/characters/xochitl/foot.svg"
  14440. }
  14441. },
  14442. },
  14443. [
  14444. {
  14445. name: "Macro",
  14446. height: math.unit(80, "feet")
  14447. },
  14448. {
  14449. name: "Macro+",
  14450. height: math.unit(400, "feet"),
  14451. default: true
  14452. },
  14453. {
  14454. name: "Gigamacro",
  14455. height: math.unit(80000, "miles")
  14456. },
  14457. {
  14458. name: "Gigamacro+",
  14459. height: math.unit(400000, "miles")
  14460. },
  14461. {
  14462. name: "Teramacro",
  14463. height: math.unit(300, "AU")
  14464. },
  14465. ]
  14466. ))
  14467. characterMakers.push(() => makeCharacter(
  14468. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14469. {
  14470. front: {
  14471. height: math.unit(6, "feet"),
  14472. weight: math.unit(150, "lb"),
  14473. name: "Front",
  14474. image: {
  14475. source: "./media/characters/vincent/front.svg",
  14476. extra: 1130 / 1080,
  14477. bottom: 0.055
  14478. }
  14479. },
  14480. beak: {
  14481. height: math.unit(6 * 0.1, "feet"),
  14482. name: "Beak",
  14483. image: {
  14484. source: "./media/characters/vincent/beak.svg"
  14485. }
  14486. },
  14487. hand: {
  14488. height: math.unit(6 * 0.85, "feet"),
  14489. weight: math.unit(150, "lb"),
  14490. name: "Hand",
  14491. image: {
  14492. source: "./media/characters/vincent/hand.svg"
  14493. }
  14494. },
  14495. foot: {
  14496. height: math.unit(6 * 0.19, "feet"),
  14497. weight: math.unit(150, "lb"),
  14498. name: "Foot",
  14499. image: {
  14500. source: "./media/characters/vincent/foot.svg"
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Base",
  14507. height: math.unit(6 + 5 / 12, "feet"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Macro",
  14512. height: math.unit(300, "feet")
  14513. },
  14514. {
  14515. name: "Megamacro",
  14516. height: math.unit(2, "miles")
  14517. },
  14518. {
  14519. name: "Gigamacro",
  14520. height: math.unit(1000, "miles")
  14521. },
  14522. ]
  14523. ))
  14524. characterMakers.push(() => makeCharacter(
  14525. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14526. {
  14527. front: {
  14528. height: math.unit(2, "meters"),
  14529. weight: math.unit(500, "kg"),
  14530. name: "Front",
  14531. image: {
  14532. source: "./media/characters/coatl/front.svg",
  14533. extra: 3948 / 3500,
  14534. bottom: 0.082
  14535. }
  14536. },
  14537. },
  14538. [
  14539. {
  14540. name: "Normal",
  14541. height: math.unit(4, "meters")
  14542. },
  14543. {
  14544. name: "Macro",
  14545. height: math.unit(100, "meters"),
  14546. default: true
  14547. },
  14548. {
  14549. name: "Macro+",
  14550. height: math.unit(300, "meters")
  14551. },
  14552. {
  14553. name: "Megamacro",
  14554. height: math.unit(3, "gigameters")
  14555. },
  14556. {
  14557. name: "Megamacro+",
  14558. height: math.unit(300, "terameters")
  14559. },
  14560. {
  14561. name: "Megamacro++",
  14562. height: math.unit(3, "lightyears")
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14568. {
  14569. front: {
  14570. height: math.unit(6, "feet"),
  14571. weight: math.unit(50, "kg"),
  14572. name: "front",
  14573. image: {
  14574. source: "./media/characters/shiroryu/front.svg",
  14575. extra: 1990 / 1935
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Mortal Mingling",
  14582. height: math.unit(3, "meters")
  14583. },
  14584. {
  14585. name: "Kaiju-ish",
  14586. height: math.unit(250, "meters")
  14587. },
  14588. {
  14589. name: "Somewhat Godly",
  14590. height: math.unit(400, "km"),
  14591. default: true
  14592. },
  14593. {
  14594. name: "Planetary",
  14595. height: math.unit(300, "megameters")
  14596. },
  14597. {
  14598. name: "Galaxy-dwarfing",
  14599. height: math.unit(450, "kiloparsecs")
  14600. },
  14601. {
  14602. name: "Universe Eater",
  14603. height: math.unit(150, "gigaparsecs")
  14604. },
  14605. {
  14606. name: "Almost Immeasurable",
  14607. height: math.unit(1.3e266, "yottaparsecs")
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14613. {
  14614. front: {
  14615. height: math.unit(6, "feet"),
  14616. weight: math.unit(150, "lb"),
  14617. name: "Front",
  14618. image: {
  14619. source: "./media/characters/umeko/front.svg",
  14620. extra: 1,
  14621. bottom: 0.019
  14622. }
  14623. },
  14624. frontArmored: {
  14625. height: math.unit(6, "feet"),
  14626. weight: math.unit(150, "lb"),
  14627. name: "Front (Armored)",
  14628. image: {
  14629. source: "./media/characters/umeko/front-armored.svg",
  14630. extra: 1,
  14631. bottom: 0.021
  14632. }
  14633. },
  14634. },
  14635. [
  14636. {
  14637. name: "Macro",
  14638. height: math.unit(220, "feet"),
  14639. default: true
  14640. },
  14641. {
  14642. name: "Guardian Dragon",
  14643. height: math.unit(50, "miles")
  14644. },
  14645. {
  14646. name: "Cosmic",
  14647. height: math.unit(800000, "miles")
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(6, "feet"),
  14656. weight: math.unit(150, "lb"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/cassidy/front.svg",
  14660. extra: 810/808,
  14661. bottom: 41/851
  14662. }
  14663. },
  14664. },
  14665. [
  14666. {
  14667. name: "Canon Height",
  14668. height: math.unit(120, "feet"),
  14669. default: true
  14670. },
  14671. {
  14672. name: "Macro+",
  14673. height: math.unit(400, "feet")
  14674. },
  14675. {
  14676. name: "Macro++",
  14677. height: math.unit(4000, "feet")
  14678. },
  14679. {
  14680. name: "Megamacro",
  14681. height: math.unit(3, "miles")
  14682. },
  14683. ]
  14684. ))
  14685. characterMakers.push(() => makeCharacter(
  14686. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14687. {
  14688. front: {
  14689. height: math.unit(6, "feet"),
  14690. weight: math.unit(150, "lb"),
  14691. name: "Front",
  14692. image: {
  14693. source: "./media/characters/isaac/front.svg",
  14694. extra: 896 / 815,
  14695. bottom: 0.11
  14696. }
  14697. },
  14698. },
  14699. [
  14700. {
  14701. name: "Human Size",
  14702. height: math.unit(8, "feet"),
  14703. default: true
  14704. },
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(400, "feet")
  14708. },
  14709. {
  14710. name: "Megamacro",
  14711. height: math.unit(50, "miles")
  14712. },
  14713. {
  14714. name: "Canon Height",
  14715. height: math.unit(200, "AU")
  14716. },
  14717. ]
  14718. ))
  14719. characterMakers.push(() => makeCharacter(
  14720. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14721. {
  14722. front: {
  14723. height: math.unit(6, "feet"),
  14724. weight: math.unit(72, "kg"),
  14725. name: "Front",
  14726. image: {
  14727. source: "./media/characters/sleekit/front.svg",
  14728. extra: 4693 / 4487,
  14729. bottom: 0.012
  14730. }
  14731. },
  14732. },
  14733. [
  14734. {
  14735. name: "Minimum Height",
  14736. height: math.unit(10, "meters")
  14737. },
  14738. {
  14739. name: "Smaller",
  14740. height: math.unit(25, "meters")
  14741. },
  14742. {
  14743. name: "Larger",
  14744. height: math.unit(38, "meters"),
  14745. default: true
  14746. },
  14747. {
  14748. name: "Maximum height",
  14749. height: math.unit(100, "meters")
  14750. },
  14751. ]
  14752. ))
  14753. characterMakers.push(() => makeCharacter(
  14754. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14755. {
  14756. front: {
  14757. height: math.unit(6, "feet"),
  14758. weight: math.unit(150, "lb"),
  14759. name: "Front",
  14760. image: {
  14761. source: "./media/characters/nillia/front.svg",
  14762. extra: 2195 / 2037,
  14763. bottom: 0.005
  14764. }
  14765. },
  14766. back: {
  14767. height: math.unit(6, "feet"),
  14768. weight: math.unit(150, "lb"),
  14769. name: "Back",
  14770. image: {
  14771. source: "./media/characters/nillia/back.svg",
  14772. extra: 2195 / 2037,
  14773. bottom: 0.005
  14774. }
  14775. },
  14776. },
  14777. [
  14778. {
  14779. name: "Canon Height",
  14780. height: math.unit(489, "feet"),
  14781. default: true
  14782. }
  14783. ]
  14784. ))
  14785. characterMakers.push(() => makeCharacter(
  14786. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14787. {
  14788. front: {
  14789. height: math.unit(6, "feet"),
  14790. weight: math.unit(150, "lb"),
  14791. name: "Front",
  14792. image: {
  14793. source: "./media/characters/mesmyriza/front.svg",
  14794. extra: 2067 / 1784,
  14795. bottom: 0.035
  14796. }
  14797. },
  14798. foot: {
  14799. height: math.unit(6 / (250 / 35), "feet"),
  14800. name: "Foot",
  14801. image: {
  14802. source: "./media/characters/mesmyriza/foot.svg"
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Macro",
  14809. height: math.unit(457, "meters"),
  14810. default: true
  14811. },
  14812. {
  14813. name: "Megamacro",
  14814. height: math.unit(8, "megameters")
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(6, "feet"),
  14823. weight: math.unit(250, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/saudade/front.svg",
  14827. extra: 1172 / 1139,
  14828. bottom: 0.035
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Micro",
  14835. height: math.unit(3, "inches")
  14836. },
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(6, "feet"),
  14840. default: true
  14841. },
  14842. {
  14843. name: "Macro",
  14844. height: math.unit(50, "feet")
  14845. },
  14846. {
  14847. name: "Megamacro",
  14848. height: math.unit(2800, "feet")
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(5 + 4 / 12, "feet"),
  14857. weight: math.unit(100, "lb"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/keireer/front.svg",
  14861. extra: 716 / 666,
  14862. bottom: 0.05
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(5 + 4 / 12, "feet"),
  14870. default: true
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(90, "kg"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/mirja/front.svg",
  14883. extra: 1789 / 1683,
  14884. bottom: 0.05
  14885. }
  14886. },
  14887. frontDressed: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(90, "lb"),
  14890. name: "Front (Dressed)",
  14891. image: {
  14892. source: "./media/characters/mirja/front-dressed.svg",
  14893. extra: 1789 / 1683,
  14894. bottom: 0.05
  14895. }
  14896. },
  14897. back: {
  14898. height: math.unit(6, "feet"),
  14899. weight: math.unit(90, "lb"),
  14900. name: "Back",
  14901. image: {
  14902. source: "./media/characters/mirja/back.svg",
  14903. extra: 953 / 917,
  14904. bottom: 0.017
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "\"Incognito\"",
  14911. height: math.unit(3, "meters")
  14912. },
  14913. {
  14914. name: "Strolling Size",
  14915. height: math.unit(15, "km")
  14916. },
  14917. {
  14918. name: "Larger Strolling Size",
  14919. height: math.unit(400, "km")
  14920. },
  14921. {
  14922. name: "Preferred Size",
  14923. height: math.unit(5000, "km")
  14924. },
  14925. {
  14926. name: "True Size",
  14927. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14934. {
  14935. front: {
  14936. height: math.unit(15, "feet"),
  14937. weight: math.unit(880, "kg"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/nightraver/front.svg",
  14941. extra: 2444 / 2160,
  14942. bottom: 0.027
  14943. }
  14944. },
  14945. back: {
  14946. height: math.unit(15, "feet"),
  14947. weight: math.unit(880, "kg"),
  14948. name: "Back",
  14949. image: {
  14950. source: "./media/characters/nightraver/back.svg",
  14951. extra: 2309 / 2180,
  14952. bottom: 0.005
  14953. }
  14954. },
  14955. sole: {
  14956. height: math.unit(2.878, "feet"),
  14957. name: "Sole",
  14958. image: {
  14959. source: "./media/characters/nightraver/sole.svg"
  14960. }
  14961. },
  14962. foot: {
  14963. height: math.unit(2.285, "feet"),
  14964. name: "Foot",
  14965. image: {
  14966. source: "./media/characters/nightraver/foot.svg"
  14967. }
  14968. },
  14969. maw: {
  14970. height: math.unit(2.67, "feet"),
  14971. name: "Maw",
  14972. image: {
  14973. source: "./media/characters/nightraver/maw.svg"
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Micro",
  14980. height: math.unit(1, "cm")
  14981. },
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(15, "feet"),
  14985. default: true
  14986. },
  14987. {
  14988. name: "Macro",
  14989. height: math.unit(300, "feet")
  14990. },
  14991. {
  14992. name: "Megamacro",
  14993. height: math.unit(300, "miles")
  14994. },
  14995. {
  14996. name: "Gigamacro",
  14997. height: math.unit(10000, "miles")
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15003. {
  15004. side: {
  15005. height: math.unit(2, "inches"),
  15006. weight: math.unit(5, "grams"),
  15007. name: "Side",
  15008. image: {
  15009. source: "./media/characters/arc/side.svg"
  15010. }
  15011. },
  15012. },
  15013. [
  15014. {
  15015. name: "Micro",
  15016. height: math.unit(2, "inches"),
  15017. default: true
  15018. },
  15019. ]
  15020. ))
  15021. characterMakers.push(() => makeCharacter(
  15022. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15023. {
  15024. front: {
  15025. height: math.unit(1.1938, "meters"),
  15026. weight: math.unit(54, "kg"),
  15027. name: "Front",
  15028. image: {
  15029. source: "./media/characters/nebula-shahar/front.svg",
  15030. extra: 1642 / 1436,
  15031. bottom: 0.06
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Megamicro",
  15038. height: math.unit(0.3, "mm")
  15039. },
  15040. {
  15041. name: "Micro",
  15042. height: math.unit(3, "cm")
  15043. },
  15044. {
  15045. name: "Normal",
  15046. height: math.unit(138, "cm"),
  15047. default: true
  15048. },
  15049. {
  15050. name: "Macro",
  15051. height: math.unit(30, "m")
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(5.24, "feet"),
  15060. weight: math.unit(150, "lb"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/shayla/front.svg",
  15064. extra: 1512 / 1414,
  15065. bottom: 0.01
  15066. }
  15067. },
  15068. back: {
  15069. height: math.unit(5.24, "feet"),
  15070. weight: math.unit(150, "lb"),
  15071. name: "Back",
  15072. image: {
  15073. source: "./media/characters/shayla/back.svg",
  15074. extra: 1512 / 1414
  15075. }
  15076. },
  15077. hand: {
  15078. height: math.unit(0.7781496062992126, "feet"),
  15079. name: "Hand",
  15080. image: {
  15081. source: "./media/characters/shayla/hand.svg"
  15082. }
  15083. },
  15084. foot: {
  15085. height: math.unit(1.4206036745406823, "feet"),
  15086. name: "Foot",
  15087. image: {
  15088. source: "./media/characters/shayla/foot.svg"
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Micro",
  15095. height: math.unit(0.32, "feet")
  15096. },
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(5.24, "feet"),
  15100. default: true
  15101. },
  15102. {
  15103. name: "Macro",
  15104. height: math.unit(492.12, "feet")
  15105. },
  15106. {
  15107. name: "Megamacro",
  15108. height: math.unit(186.41, "miles")
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(2.2, "m"),
  15117. weight: math.unit(120, "kg"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/pia-jr/front.svg",
  15121. extra: 1000 / 970,
  15122. bottom: 0.035
  15123. }
  15124. },
  15125. hand: {
  15126. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15127. name: "Hand",
  15128. image: {
  15129. source: "./media/characters/pia-jr/hand.svg"
  15130. }
  15131. },
  15132. paw: {
  15133. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15134. name: "Paw",
  15135. image: {
  15136. source: "./media/characters/pia-jr/paw.svg"
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Micro",
  15143. height: math.unit(1.2, "cm")
  15144. },
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(2.2, "m"),
  15148. default: true
  15149. },
  15150. {
  15151. name: "Macro",
  15152. height: math.unit(180, "m")
  15153. },
  15154. {
  15155. name: "Megamacro",
  15156. height: math.unit(420, "km")
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(2, "m"),
  15165. weight: math.unit(115, "kg"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/pia-sr/front.svg",
  15169. extra: 760 / 730,
  15170. bottom: 0.015
  15171. }
  15172. },
  15173. back: {
  15174. height: math.unit(2, "m"),
  15175. weight: math.unit(115, "kg"),
  15176. name: "Back",
  15177. image: {
  15178. source: "./media/characters/pia-sr/back.svg",
  15179. extra: 760 / 730,
  15180. bottom: 0.01
  15181. }
  15182. },
  15183. hand: {
  15184. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15185. name: "Hand",
  15186. image: {
  15187. source: "./media/characters/pia-sr/hand.svg"
  15188. }
  15189. },
  15190. foot: {
  15191. height: math.unit(1.83, "feet"),
  15192. name: "Foot",
  15193. image: {
  15194. source: "./media/characters/pia-sr/foot.svg"
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Micro",
  15201. height: math.unit(88, "mm")
  15202. },
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(2, "m"),
  15206. default: true
  15207. },
  15208. {
  15209. name: "Macro",
  15210. height: math.unit(200, "m")
  15211. },
  15212. {
  15213. name: "Megamacro",
  15214. height: math.unit(420, "km")
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15220. {
  15221. front: {
  15222. height: math.unit(8 + 2 / 12, "feet"),
  15223. weight: math.unit(300, "lb"),
  15224. name: "Front",
  15225. image: {
  15226. source: "./media/characters/kibibyte/front.svg",
  15227. extra: 2221 / 2098,
  15228. bottom: 0.04
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Normal",
  15235. height: math.unit(8 + 2 / 12, "feet"),
  15236. default: true
  15237. },
  15238. {
  15239. name: "Socialable Macro",
  15240. height: math.unit(50, "feet")
  15241. },
  15242. {
  15243. name: "Macro",
  15244. height: math.unit(300, "feet")
  15245. },
  15246. {
  15247. name: "Megamacro",
  15248. height: math.unit(500, "miles")
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(6, "feet"),
  15257. weight: math.unit(150, "lb"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/felix/front.svg",
  15261. extra: 762 / 722,
  15262. bottom: 0.02
  15263. }
  15264. },
  15265. frontClothed: {
  15266. height: math.unit(6, "feet"),
  15267. weight: math.unit(150, "lb"),
  15268. name: "Front (Clothed)",
  15269. image: {
  15270. source: "./media/characters/felix/front-clothed.svg",
  15271. extra: 762 / 722,
  15272. bottom: 0.02
  15273. }
  15274. },
  15275. },
  15276. [
  15277. {
  15278. name: "Normal",
  15279. height: math.unit(6 + 8 / 12, "feet"),
  15280. default: true
  15281. },
  15282. {
  15283. name: "Macro",
  15284. height: math.unit(2600, "feet")
  15285. },
  15286. {
  15287. name: "Megamacro",
  15288. height: math.unit(450, "miles")
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(6 + 1 / 12, "feet"),
  15297. weight: math.unit(250, "lb"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/tobo/front.svg",
  15301. extra: 608 / 586,
  15302. bottom: 0.023
  15303. }
  15304. },
  15305. back: {
  15306. height: math.unit(6 + 1 / 12, "feet"),
  15307. weight: math.unit(250, "lb"),
  15308. name: "Back",
  15309. image: {
  15310. source: "./media/characters/tobo/back.svg",
  15311. extra: 608 / 586
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Nano",
  15318. height: math.unit(2, "nm")
  15319. },
  15320. {
  15321. name: "Megamicro",
  15322. height: math.unit(0.1, "mm")
  15323. },
  15324. {
  15325. name: "Micro",
  15326. height: math.unit(1, "inch"),
  15327. default: true
  15328. },
  15329. {
  15330. name: "Human-sized",
  15331. height: math.unit(6 + 1 / 12, "feet")
  15332. },
  15333. {
  15334. name: "Macro",
  15335. height: math.unit(250, "feet")
  15336. },
  15337. {
  15338. name: "Megamacro",
  15339. height: math.unit(75, "miles")
  15340. },
  15341. {
  15342. name: "Texas-sized",
  15343. height: math.unit(750, "miles")
  15344. },
  15345. {
  15346. name: "Teramacro",
  15347. height: math.unit(50000, "miles")
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15353. {
  15354. front: {
  15355. height: math.unit(6, "feet"),
  15356. weight: math.unit(269, "lb"),
  15357. name: "Front",
  15358. image: {
  15359. source: "./media/characters/danny-kapowsky/front.svg",
  15360. extra: 766 / 736,
  15361. bottom: 0.044
  15362. }
  15363. },
  15364. back: {
  15365. height: math.unit(6, "feet"),
  15366. weight: math.unit(269, "lb"),
  15367. name: "Back",
  15368. image: {
  15369. source: "./media/characters/danny-kapowsky/back.svg",
  15370. extra: 797 / 760,
  15371. bottom: 0.025
  15372. }
  15373. },
  15374. },
  15375. [
  15376. {
  15377. name: "Macro",
  15378. height: math.unit(150, "feet"),
  15379. default: true
  15380. },
  15381. {
  15382. name: "Macro+",
  15383. height: math.unit(200, "feet")
  15384. },
  15385. {
  15386. name: "Macro++",
  15387. height: math.unit(300, "feet")
  15388. },
  15389. {
  15390. name: "Macro+++",
  15391. height: math.unit(400, "feet")
  15392. },
  15393. ]
  15394. ))
  15395. characterMakers.push(() => makeCharacter(
  15396. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15397. {
  15398. side: {
  15399. height: math.unit(6, "feet"),
  15400. weight: math.unit(170, "lb"),
  15401. name: "Side",
  15402. image: {
  15403. source: "./media/characters/finn/side.svg",
  15404. extra: 1953 / 1807,
  15405. bottom: 0.057
  15406. }
  15407. },
  15408. },
  15409. [
  15410. {
  15411. name: "Megamacro",
  15412. height: math.unit(14445, "feet"),
  15413. default: true
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15419. {
  15420. front: {
  15421. height: math.unit(5 + 6 / 12, "feet"),
  15422. weight: math.unit(125, "lb"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/roy/front.svg",
  15426. extra: 1,
  15427. bottom: 0.11
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Micro",
  15434. height: math.unit(3, "inches"),
  15435. default: true
  15436. },
  15437. {
  15438. name: "Normal",
  15439. height: math.unit(5 + 6 / 12, "feet")
  15440. },
  15441. {
  15442. name: "Lesser Macro",
  15443. height: math.unit(60, "feet")
  15444. },
  15445. {
  15446. name: "Greater Macro",
  15447. height: math.unit(120, "feet")
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15453. {
  15454. front: {
  15455. height: math.unit(6, "feet"),
  15456. weight: math.unit(100, "lb"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/aevsivs/front.svg",
  15460. extra: 1,
  15461. bottom: 0.03
  15462. }
  15463. },
  15464. back: {
  15465. height: math.unit(6, "feet"),
  15466. weight: math.unit(100, "lb"),
  15467. name: "Back",
  15468. image: {
  15469. source: "./media/characters/aevsivs/back.svg"
  15470. }
  15471. },
  15472. },
  15473. [
  15474. {
  15475. name: "Micro",
  15476. height: math.unit(2, "inches"),
  15477. default: true
  15478. },
  15479. {
  15480. name: "Normal",
  15481. height: math.unit(5, "feet")
  15482. },
  15483. ]
  15484. ))
  15485. characterMakers.push(() => makeCharacter(
  15486. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15487. {
  15488. front: {
  15489. height: math.unit(5 + 7 / 12, "feet"),
  15490. weight: math.unit(159, "lb"),
  15491. name: "Front",
  15492. image: {
  15493. source: "./media/characters/hildegard/front.svg",
  15494. extra: 289 / 269,
  15495. bottom: 7.63 / 297.8
  15496. }
  15497. },
  15498. back: {
  15499. height: math.unit(5 + 7 / 12, "feet"),
  15500. weight: math.unit(159, "lb"),
  15501. name: "Back",
  15502. image: {
  15503. source: "./media/characters/hildegard/back.svg",
  15504. extra: 280 / 260,
  15505. bottom: 2.3 / 282
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Normal",
  15512. height: math.unit(5 + 7 / 12, "feet"),
  15513. default: true
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15519. {
  15520. bernard: {
  15521. height: math.unit(2 + 7 / 12, "feet"),
  15522. weight: math.unit(66, "lb"),
  15523. name: "Bernard",
  15524. rename: true,
  15525. image: {
  15526. source: "./media/characters/bernard-wilder/bernard.svg",
  15527. extra: 192 / 128,
  15528. bottom: 0.05
  15529. }
  15530. },
  15531. wilder: {
  15532. height: math.unit(5 + 8 / 12, "feet"),
  15533. weight: math.unit(143, "lb"),
  15534. name: "Wilder",
  15535. rename: true,
  15536. image: {
  15537. source: "./media/characters/bernard-wilder/wilder.svg",
  15538. extra: 361 / 312,
  15539. bottom: 0.02
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Normal",
  15546. height: math.unit(2 + 7 / 12, "feet"),
  15547. default: true
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15553. {
  15554. anthro: {
  15555. height: math.unit(6 + 1 / 12, "feet"),
  15556. weight: math.unit(155, "lb"),
  15557. name: "Anthro",
  15558. image: {
  15559. source: "./media/characters/hearth/anthro.svg",
  15560. extra: 1178/1136,
  15561. bottom: 28/1206
  15562. }
  15563. },
  15564. feral: {
  15565. height: math.unit(3.78, "feet"),
  15566. weight: math.unit(35, "kg"),
  15567. name: "Feral",
  15568. image: {
  15569. source: "./media/characters/hearth/feral.svg",
  15570. extra: 153 / 135,
  15571. bottom: 0.03
  15572. }
  15573. },
  15574. },
  15575. [
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(6 + 1 / 12, "feet"),
  15579. default: true
  15580. },
  15581. ]
  15582. ))
  15583. characterMakers.push(() => makeCharacter(
  15584. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15585. {
  15586. front: {
  15587. height: math.unit(6, "feet"),
  15588. weight: math.unit(182, "lb"),
  15589. name: "Front",
  15590. image: {
  15591. source: "./media/characters/ingrid/front.svg",
  15592. extra: 294 / 268,
  15593. bottom: 0.027
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(6, "feet"),
  15601. default: true
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15607. {
  15608. eevee: {
  15609. height: math.unit(2 + 10 / 12, "feet"),
  15610. weight: math.unit(86, "lb"),
  15611. name: "Malgam",
  15612. image: {
  15613. source: "./media/characters/malgam/eevee.svg",
  15614. extra: 952/784,
  15615. bottom: 38/990
  15616. }
  15617. },
  15618. sylveon: {
  15619. height: math.unit(4, "feet"),
  15620. weight: math.unit(101, "lb"),
  15621. name: "Future Malgam",
  15622. rename: true,
  15623. image: {
  15624. source: "./media/characters/malgam/sylveon.svg",
  15625. extra: 371 / 325,
  15626. bottom: 0.015
  15627. }
  15628. },
  15629. gigantamax: {
  15630. height: math.unit(50, "feet"),
  15631. name: "Gigantamax Malgam",
  15632. rename: true,
  15633. image: {
  15634. source: "./media/characters/malgam/gigantamax.svg"
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Normal",
  15641. height: math.unit(2 + 10 / 12, "feet"),
  15642. default: true
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(5 + 11 / 12, "feet"),
  15651. weight: math.unit(188, "lb"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/fleur/front.svg",
  15655. extra: 309 / 283,
  15656. bottom: 0.007
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(5 + 11 / 12, "feet"),
  15664. default: true
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(5 + 4 / 12, "feet"),
  15673. weight: math.unit(122, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/jude/front.svg",
  15677. extra: 288 / 273,
  15678. bottom: 0.03
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(5 + 4 / 12, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(5 + 11 / 12, "feet"),
  15695. weight: math.unit(190, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/seara/front.svg",
  15699. extra: 1,
  15700. bottom: 0.05
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(5 + 11 / 12, "feet"),
  15708. default: true
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(16 + 5 / 12, "feet"),
  15717. weight: math.unit(524, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/caspian-lugia/front.svg",
  15721. extra: 1,
  15722. bottom: 0.04
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(16 + 5 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(5 + 7 / 12, "feet"),
  15739. weight: math.unit(170, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/mika/front.svg",
  15743. extra: 1,
  15744. bottom: 0.016
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Normal",
  15751. height: math.unit(5 + 7 / 12, "feet"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15758. {
  15759. front: {
  15760. height: math.unit(6 + 2 / 12, "feet"),
  15761. weight: math.unit(268, "lb"),
  15762. name: "Front",
  15763. image: {
  15764. source: "./media/characters/sol/front.svg",
  15765. extra: 247 / 231,
  15766. bottom: 0.05
  15767. }
  15768. },
  15769. },
  15770. [
  15771. {
  15772. name: "Normal",
  15773. height: math.unit(6 + 2 / 12, "feet"),
  15774. default: true
  15775. },
  15776. ]
  15777. ))
  15778. characterMakers.push(() => makeCharacter(
  15779. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15780. {
  15781. buizel: {
  15782. height: math.unit(2 + 5 / 12, "feet"),
  15783. weight: math.unit(87, "lb"),
  15784. name: "Front",
  15785. image: {
  15786. source: "./media/characters/umiko/buizel.svg",
  15787. extra: 172 / 157,
  15788. bottom: 0.01
  15789. },
  15790. form: "buizel",
  15791. default: true
  15792. },
  15793. floatzel: {
  15794. height: math.unit(5 + 9 / 12, "feet"),
  15795. weight: math.unit(250, "lb"),
  15796. name: "Front",
  15797. image: {
  15798. source: "./media/characters/umiko/floatzel.svg",
  15799. extra: 1076/1006,
  15800. bottom: 15/1091
  15801. },
  15802. form: "floatzel",
  15803. default: true
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Normal",
  15809. height: math.unit(2 + 5 / 12, "feet"),
  15810. form: "buizel",
  15811. default: true
  15812. },
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(5 + 9 / 12, "feet"),
  15816. form: "floatzel",
  15817. default: true
  15818. },
  15819. ],
  15820. {
  15821. "buizel": {
  15822. name: "Buizel"
  15823. },
  15824. "floatzel": {
  15825. name: "Floatzel",
  15826. default: true
  15827. }
  15828. }
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15832. {
  15833. front: {
  15834. height: math.unit(6 + 2 / 12, "feet"),
  15835. weight: math.unit(146, "lb"),
  15836. name: "Front",
  15837. image: {
  15838. source: "./media/characters/iliac/front.svg",
  15839. extra: 389 / 365,
  15840. bottom: 0.035
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Normal",
  15847. height: math.unit(6 + 2 / 12, "feet"),
  15848. default: true
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15854. {
  15855. front: {
  15856. height: math.unit(6, "feet"),
  15857. weight: math.unit(170, "lb"),
  15858. name: "Front",
  15859. image: {
  15860. source: "./media/characters/topaz/front.svg",
  15861. extra: 317 / 303,
  15862. bottom: 0.055
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(6, "feet"),
  15870. default: true
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15876. {
  15877. front: {
  15878. height: math.unit(5 + 11 / 12, "feet"),
  15879. weight: math.unit(144, "lb"),
  15880. name: "Front",
  15881. image: {
  15882. source: "./media/characters/gabriel/front.svg",
  15883. extra: 285 / 262,
  15884. bottom: 0.004
  15885. }
  15886. },
  15887. },
  15888. [
  15889. {
  15890. name: "Normal",
  15891. height: math.unit(5 + 11 / 12, "feet"),
  15892. default: true
  15893. },
  15894. ]
  15895. ))
  15896. characterMakers.push(() => makeCharacter(
  15897. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15898. {
  15899. side: {
  15900. height: math.unit(6 + 5 / 12, "feet"),
  15901. weight: math.unit(300, "lb"),
  15902. name: "Side",
  15903. image: {
  15904. source: "./media/characters/tempest-suicune/side.svg",
  15905. extra: 195 / 154,
  15906. bottom: 0.04
  15907. }
  15908. },
  15909. },
  15910. [
  15911. {
  15912. name: "Normal",
  15913. height: math.unit(6 + 5 / 12, "feet"),
  15914. default: true
  15915. },
  15916. ]
  15917. ))
  15918. characterMakers.push(() => makeCharacter(
  15919. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15920. {
  15921. front: {
  15922. height: math.unit(7 + 2 / 12, "feet"),
  15923. weight: math.unit(322, "lb"),
  15924. name: "Front",
  15925. image: {
  15926. source: "./media/characters/vulcan/front.svg",
  15927. extra: 154 / 147,
  15928. bottom: 0.04
  15929. }
  15930. },
  15931. },
  15932. [
  15933. {
  15934. name: "Normal",
  15935. height: math.unit(7 + 2 / 12, "feet"),
  15936. default: true
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15942. {
  15943. front: {
  15944. height: math.unit(5 + 10 / 12, "feet"),
  15945. weight: math.unit(264, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/gault/front.svg",
  15949. extra: 161 / 140,
  15950. bottom: 0.028
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(5 + 10 / 12, "feet"),
  15958. default: true
  15959. },
  15960. ]
  15961. ))
  15962. characterMakers.push(() => makeCharacter(
  15963. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15964. {
  15965. front: {
  15966. height: math.unit(6, "feet"),
  15967. weight: math.unit(150, "lb"),
  15968. name: "Front",
  15969. image: {
  15970. source: "./media/characters/shard/front.svg",
  15971. extra: 273 / 238,
  15972. bottom: 0.02
  15973. }
  15974. },
  15975. },
  15976. [
  15977. {
  15978. name: "Normal",
  15979. height: math.unit(3 + 6 / 12, "feet"),
  15980. default: true
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15986. {
  15987. front: {
  15988. height: math.unit(5 + 11 / 12, "feet"),
  15989. weight: math.unit(146, "lb"),
  15990. name: "Front",
  15991. image: {
  15992. source: "./media/characters/ashe/front.svg",
  15993. extra: 400 / 373,
  15994. bottom: 0.01
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(5 + 11 / 12, "feet"),
  16002. default: true
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16008. {
  16009. front: {
  16010. height: math.unit(5 + 5 / 12, "feet"),
  16011. weight: math.unit(135, "lb"),
  16012. name: "Front",
  16013. image: {
  16014. source: "./media/characters/beatrix/front.svg",
  16015. extra: 392 / 379,
  16016. bottom: 0.01
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Normal",
  16023. height: math.unit(6, "feet"),
  16024. default: true
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(6 + 2/12, "feet"),
  16033. weight: math.unit(135, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/ignatius/front.svg",
  16037. extra: 1380/1259,
  16038. bottom: 27/1407
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(6 + 2/12, "feet"),
  16046. default: true
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16052. {
  16053. front: {
  16054. height: math.unit(6 + 2 / 12, "feet"),
  16055. weight: math.unit(138, "lb"),
  16056. name: "Front",
  16057. image: {
  16058. source: "./media/characters/mei-li/front.svg",
  16059. extra: 237 / 229,
  16060. bottom: 0.03
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(6 + 2 / 12, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(2 + 4 / 12, "feet"),
  16077. weight: math.unit(62, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/puru/front.svg",
  16081. extra: 206 / 149,
  16082. bottom: 0.06
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(2 + 4 / 12, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16096. {
  16097. anthro: {
  16098. height: math.unit(5 + 8/12, "feet"),
  16099. weight: math.unit(200, "lb"),
  16100. energyNeed: math.unit(2000, "kcal"),
  16101. name: "Anthro",
  16102. image: {
  16103. source: "./media/characters/kee/anthro.svg",
  16104. extra: 3251/3184,
  16105. bottom: 250/3501
  16106. }
  16107. },
  16108. taur: {
  16109. height: math.unit(11, "feet"),
  16110. weight: math.unit(500, "lb"),
  16111. energyNeed: math.unit(5000, "kcal"),
  16112. name: "Taur",
  16113. image: {
  16114. source: "./media/characters/kee/taur.svg",
  16115. extra: 1362/1320,
  16116. bottom: 83/1445
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(5 + 8/12, "feet"),
  16124. default: true
  16125. },
  16126. {
  16127. name: "Macro",
  16128. height: math.unit(35, "feet")
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16134. {
  16135. anthro: {
  16136. height: math.unit(7, "feet"),
  16137. weight: math.unit(190, "lb"),
  16138. name: "Anthro",
  16139. image: {
  16140. source: "./media/characters/cobalt-dracha/anthro.svg",
  16141. extra: 231 / 225,
  16142. bottom: 0.04
  16143. }
  16144. },
  16145. feral: {
  16146. height: math.unit(9 + 7 / 12, "feet"),
  16147. weight: math.unit(294, "lb"),
  16148. name: "Feral",
  16149. image: {
  16150. source: "./media/characters/cobalt-dracha/feral.svg",
  16151. extra: 692 / 633,
  16152. bottom: 0.05
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Normal",
  16159. height: math.unit(7, "feet"),
  16160. default: true
  16161. },
  16162. ]
  16163. ))
  16164. characterMakers.push(() => makeCharacter(
  16165. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16166. {
  16167. fallen: {
  16168. height: math.unit(11 + 8 / 12, "feet"),
  16169. weight: math.unit(485, "lb"),
  16170. name: "Java (Fallen)",
  16171. rename: true,
  16172. image: {
  16173. source: "./media/characters/java/fallen.svg",
  16174. extra: 226 / 208,
  16175. bottom: 0.005
  16176. }
  16177. },
  16178. godkin: {
  16179. height: math.unit(10 + 6 / 12, "feet"),
  16180. weight: math.unit(328, "lb"),
  16181. name: "Java (Godkin)",
  16182. rename: true,
  16183. image: {
  16184. source: "./media/characters/java/godkin.svg",
  16185. extra: 1104/1068,
  16186. bottom: 36/1140
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(11 + 8 / 12, "feet"),
  16194. default: true
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(5 + 9 / 12, "feet"),
  16203. weight: math.unit(170, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/purna/front.svg",
  16207. extra: 239 / 229,
  16208. bottom: 0.01
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(5 + 9 / 12, "feet"),
  16216. default: true
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16222. {
  16223. front: {
  16224. height: math.unit(5 + 9 / 12, "feet"),
  16225. weight: math.unit(142, "lb"),
  16226. name: "Front",
  16227. image: {
  16228. source: "./media/characters/kuva/front.svg",
  16229. extra: 281 / 271,
  16230. bottom: 0.006
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(5 + 9 / 12, "feet"),
  16238. default: true
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16244. {
  16245. anthro: {
  16246. height: math.unit(9 + 2 / 12, "feet"),
  16247. weight: math.unit(270, "lb"),
  16248. name: "Anthro",
  16249. image: {
  16250. source: "./media/characters/embra/anthro.svg",
  16251. extra: 200 / 187,
  16252. bottom: 0.02
  16253. }
  16254. },
  16255. feral: {
  16256. height: math.unit(18 + 8 / 12, "feet"),
  16257. weight: math.unit(576, "lb"),
  16258. name: "Feral",
  16259. image: {
  16260. source: "./media/characters/embra/feral.svg",
  16261. extra: 152 / 137,
  16262. bottom: 0.037
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(9 + 2 / 12, "feet"),
  16270. default: true
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16276. {
  16277. anthro: {
  16278. height: math.unit(10 + 9 / 12, "feet"),
  16279. weight: math.unit(224, "lb"),
  16280. name: "Anthro",
  16281. image: {
  16282. source: "./media/characters/grottos/anthro.svg",
  16283. extra: 350 / 332,
  16284. bottom: 0.045
  16285. }
  16286. },
  16287. feral: {
  16288. height: math.unit(20 + 7 / 12, "feet"),
  16289. weight: math.unit(629, "lb"),
  16290. name: "Feral",
  16291. image: {
  16292. source: "./media/characters/grottos/feral.svg",
  16293. extra: 207 / 190,
  16294. bottom: 0.05
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Normal",
  16301. height: math.unit(10 + 9 / 12, "feet"),
  16302. default: true
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16308. {
  16309. anthro: {
  16310. height: math.unit(9 + 6 / 12, "feet"),
  16311. weight: math.unit(298, "lb"),
  16312. name: "Anthro",
  16313. image: {
  16314. source: "./media/characters/frifna/anthro.svg",
  16315. extra: 282 / 269,
  16316. bottom: 0.015
  16317. }
  16318. },
  16319. feral: {
  16320. height: math.unit(16 + 2 / 12, "feet"),
  16321. weight: math.unit(624, "lb"),
  16322. name: "Feral",
  16323. image: {
  16324. source: "./media/characters/frifna/feral.svg"
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(9 + 6 / 12, "feet"),
  16332. default: true
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16338. {
  16339. front: {
  16340. height: math.unit(6 + 2 / 12, "feet"),
  16341. weight: math.unit(168, "lb"),
  16342. name: "Front",
  16343. image: {
  16344. source: "./media/characters/elise/front.svg",
  16345. extra: 276 / 271
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(6 + 2 / 12, "feet"),
  16353. default: true
  16354. },
  16355. ]
  16356. ))
  16357. characterMakers.push(() => makeCharacter(
  16358. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16359. {
  16360. front: {
  16361. height: math.unit(5 + 10 / 12, "feet"),
  16362. weight: math.unit(210, "lb"),
  16363. name: "Front",
  16364. image: {
  16365. source: "./media/characters/glade/front.svg",
  16366. extra: 258 / 247,
  16367. bottom: 0.008
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Normal",
  16374. height: math.unit(5 + 10 / 12, "feet"),
  16375. default: true
  16376. },
  16377. ]
  16378. ))
  16379. characterMakers.push(() => makeCharacter(
  16380. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16381. {
  16382. front: {
  16383. height: math.unit(5 + 10 / 12, "feet"),
  16384. weight: math.unit(129, "lb"),
  16385. name: "Front",
  16386. image: {
  16387. source: "./media/characters/rina/front.svg",
  16388. extra: 266 / 255,
  16389. bottom: 0.005
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Normal",
  16396. height: math.unit(5 + 10 / 12, "feet"),
  16397. default: true
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(6 + 1 / 12, "feet"),
  16406. weight: math.unit(192, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/veronica/front.svg",
  16410. extra: 319 / 309,
  16411. bottom: 0.005
  16412. }
  16413. },
  16414. },
  16415. [
  16416. {
  16417. name: "Normal",
  16418. height: math.unit(6 + 1 / 12, "feet"),
  16419. default: true
  16420. },
  16421. ]
  16422. ))
  16423. characterMakers.push(() => makeCharacter(
  16424. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16425. {
  16426. front: {
  16427. height: math.unit(9 + 3 / 12, "feet"),
  16428. weight: math.unit(1100, "lb"),
  16429. name: "Front",
  16430. image: {
  16431. source: "./media/characters/braxton/front.svg",
  16432. extra: 1057 / 984,
  16433. bottom: 0.05
  16434. }
  16435. },
  16436. },
  16437. [
  16438. {
  16439. name: "Normal",
  16440. height: math.unit(9 + 3 / 12, "feet")
  16441. },
  16442. {
  16443. name: "Giant",
  16444. height: math.unit(300, "feet"),
  16445. default: true
  16446. },
  16447. {
  16448. name: "Macro",
  16449. height: math.unit(700, "feet")
  16450. },
  16451. {
  16452. name: "Megamacro",
  16453. height: math.unit(6000, "feet")
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16459. {
  16460. front: {
  16461. height: math.unit(6 + 7 / 12, "feet"),
  16462. weight: math.unit(150, "lb"),
  16463. name: "Front",
  16464. image: {
  16465. source: "./media/characters/blue-feyonics/front.svg",
  16466. extra: 1403 / 1306,
  16467. bottom: 0.047
  16468. }
  16469. },
  16470. },
  16471. [
  16472. {
  16473. name: "Normal",
  16474. height: math.unit(6 + 7 / 12, "feet"),
  16475. default: true
  16476. },
  16477. ]
  16478. ))
  16479. characterMakers.push(() => makeCharacter(
  16480. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16481. {
  16482. front: {
  16483. height: math.unit(1.8, "meters"),
  16484. weight: math.unit(60, "kg"),
  16485. name: "Front",
  16486. image: {
  16487. source: "./media/characters/maxwell/front.svg",
  16488. extra: 2060 / 1873
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Micro",
  16495. height: math.unit(1, "mm")
  16496. },
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(1.8, "meter"),
  16500. default: true
  16501. },
  16502. {
  16503. name: "Macro",
  16504. height: math.unit(30, "meters")
  16505. },
  16506. {
  16507. name: "Megamacro",
  16508. height: math.unit(10, "km")
  16509. },
  16510. ]
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16514. {
  16515. front: {
  16516. height: math.unit(6, "feet"),
  16517. weight: math.unit(150, "lb"),
  16518. name: "Front",
  16519. image: {
  16520. source: "./media/characters/jack/front.svg",
  16521. extra: 1754 / 1640,
  16522. bottom: 0.01
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Normal",
  16529. height: math.unit(80000, "feet"),
  16530. default: true
  16531. },
  16532. {
  16533. name: "Max size",
  16534. height: math.unit(10, "lightyears")
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16540. {
  16541. urban: {
  16542. height: math.unit(5, "feet"),
  16543. weight: math.unit(240, "lb"),
  16544. name: "Urban",
  16545. image: {
  16546. source: "./media/characters/cafat/urban.svg",
  16547. extra: 1223/1126,
  16548. bottom: 205/1428
  16549. }
  16550. },
  16551. summer: {
  16552. height: math.unit(5, "feet"),
  16553. weight: math.unit(240, "lb"),
  16554. name: "Summer",
  16555. image: {
  16556. source: "./media/characters/cafat/summer.svg",
  16557. extra: 1223/1126,
  16558. bottom: 205/1428
  16559. }
  16560. },
  16561. winter: {
  16562. height: math.unit(5, "feet"),
  16563. weight: math.unit(240, "lb"),
  16564. name: "Winter",
  16565. image: {
  16566. source: "./media/characters/cafat/winter.svg",
  16567. extra: 1223/1126,
  16568. bottom: 205/1428
  16569. }
  16570. },
  16571. lingerie: {
  16572. height: math.unit(5, "feet"),
  16573. weight: math.unit(240, "lb"),
  16574. name: "Lingerie",
  16575. image: {
  16576. source: "./media/characters/cafat/lingerie.svg",
  16577. extra: 1223/1126,
  16578. bottom: 205/1428
  16579. }
  16580. },
  16581. upright: {
  16582. height: math.unit(6.3, "feet"),
  16583. weight: math.unit(240, "lb"),
  16584. name: "Upright",
  16585. image: {
  16586. source: "./media/characters/cafat/upright.svg",
  16587. bottom: 0.01
  16588. }
  16589. },
  16590. uprightFull: {
  16591. height: math.unit(6.3, "feet"),
  16592. weight: math.unit(240, "lb"),
  16593. name: "Upright (Full)",
  16594. image: {
  16595. source: "./media/characters/cafat/upright-full.svg",
  16596. bottom: 0.01
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Small",
  16603. height: math.unit(5, "feet"),
  16604. default: true
  16605. },
  16606. {
  16607. name: "Large",
  16608. height: math.unit(13, "feet")
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16614. {
  16615. front: {
  16616. height: math.unit(6, "feet"),
  16617. weight: math.unit(150, "lb"),
  16618. name: "Front",
  16619. image: {
  16620. source: "./media/characters/verin-raharra/front.svg",
  16621. extra: 5019 / 4835,
  16622. bottom: 0.023
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(7 + 5 / 12, "feet"),
  16630. default: true
  16631. },
  16632. {
  16633. name: "Upsized",
  16634. height: math.unit(20, "feet")
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(7, "feet"),
  16643. weight: math.unit(230, "lb"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/nakata/front.svg",
  16647. extra: 1.005,
  16648. bottom: 0.01
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(7, "feet"),
  16656. default: true
  16657. },
  16658. {
  16659. name: "Big",
  16660. height: math.unit(14, "feet")
  16661. },
  16662. {
  16663. name: "Macro",
  16664. height: math.unit(400, "feet")
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16670. {
  16671. front: {
  16672. height: math.unit(4.91, "feet"),
  16673. weight: math.unit(100, "lb"),
  16674. name: "Front",
  16675. image: {
  16676. source: "./media/characters/lily/front.svg",
  16677. extra: 1585 / 1415,
  16678. bottom: 0.02
  16679. }
  16680. },
  16681. },
  16682. [
  16683. {
  16684. name: "Normal",
  16685. height: math.unit(4.91, "feet"),
  16686. default: true
  16687. },
  16688. ]
  16689. ))
  16690. characterMakers.push(() => makeCharacter(
  16691. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16692. {
  16693. laying: {
  16694. height: math.unit(4 + 4 / 12, "feet"),
  16695. weight: math.unit(600, "lb"),
  16696. name: "Laying",
  16697. image: {
  16698. source: "./media/characters/sheila/laying.svg",
  16699. extra: 1333 / 1265,
  16700. bottom: 0.16
  16701. }
  16702. },
  16703. },
  16704. [
  16705. {
  16706. name: "Normal",
  16707. height: math.unit(4 + 4 / 12, "feet"),
  16708. default: true
  16709. },
  16710. ]
  16711. ))
  16712. characterMakers.push(() => makeCharacter(
  16713. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16714. {
  16715. front: {
  16716. height: math.unit(6, "feet"),
  16717. weight: math.unit(190, "lb"),
  16718. name: "Front",
  16719. image: {
  16720. source: "./media/characters/sax/front.svg",
  16721. extra: 1187 / 973,
  16722. bottom: 0.042
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Micro",
  16729. height: math.unit(4, "inches"),
  16730. default: true
  16731. },
  16732. ]
  16733. ))
  16734. characterMakers.push(() => makeCharacter(
  16735. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16736. {
  16737. front: {
  16738. height: math.unit(6, "feet"),
  16739. weight: math.unit(150, "lb"),
  16740. name: "Front",
  16741. image: {
  16742. source: "./media/characters/pandora/front.svg",
  16743. extra: 2720 / 2556,
  16744. bottom: 0.015
  16745. }
  16746. },
  16747. back: {
  16748. height: math.unit(6, "feet"),
  16749. weight: math.unit(150, "lb"),
  16750. name: "Back",
  16751. image: {
  16752. source: "./media/characters/pandora/back.svg",
  16753. extra: 2720 / 2556,
  16754. bottom: 0.01
  16755. }
  16756. },
  16757. beans: {
  16758. height: math.unit(6 / 8, "feet"),
  16759. name: "Beans",
  16760. image: {
  16761. source: "./media/characters/pandora/beans.svg"
  16762. }
  16763. },
  16764. collar: {
  16765. height: math.unit(0.31, "feet"),
  16766. name: "Collar",
  16767. image: {
  16768. source: "./media/characters/pandora/collar.svg"
  16769. }
  16770. },
  16771. skirt: {
  16772. height: math.unit(6, "feet"),
  16773. weight: math.unit(150, "lb"),
  16774. name: "Skirt",
  16775. image: {
  16776. source: "./media/characters/pandora/skirt.svg",
  16777. extra: 1622 / 1525,
  16778. bottom: 0.015
  16779. }
  16780. },
  16781. hoodie: {
  16782. height: math.unit(6, "feet"),
  16783. weight: math.unit(150, "lb"),
  16784. name: "Hoodie",
  16785. image: {
  16786. source: "./media/characters/pandora/hoodie.svg",
  16787. extra: 1622 / 1525,
  16788. bottom: 0.015
  16789. }
  16790. },
  16791. casual: {
  16792. height: math.unit(6, "feet"),
  16793. weight: math.unit(150, "lb"),
  16794. name: "Casual",
  16795. image: {
  16796. source: "./media/characters/pandora/casual.svg",
  16797. extra: 1622 / 1525,
  16798. bottom: 0.015
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Normal",
  16805. height: math.unit(6, "feet")
  16806. },
  16807. {
  16808. name: "Big Steppy",
  16809. height: math.unit(1, "km"),
  16810. default: true
  16811. },
  16812. {
  16813. name: "Galactic Steppy",
  16814. height: math.unit(2, "gigameters")
  16815. },
  16816. ]
  16817. ))
  16818. characterMakers.push(() => makeCharacter(
  16819. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16820. {
  16821. side: {
  16822. height: math.unit(10, "feet"),
  16823. weight: math.unit(800, "kg"),
  16824. name: "Side",
  16825. image: {
  16826. source: "./media/characters/venio-darcony/side.svg",
  16827. extra: 1373 / 1003,
  16828. bottom: 0.037
  16829. }
  16830. },
  16831. front: {
  16832. height: math.unit(19, "feet"),
  16833. weight: math.unit(800, "kg"),
  16834. name: "Front",
  16835. image: {
  16836. source: "./media/characters/venio-darcony/front.svg"
  16837. }
  16838. },
  16839. back: {
  16840. height: math.unit(19, "feet"),
  16841. weight: math.unit(800, "kg"),
  16842. name: "Back",
  16843. image: {
  16844. source: "./media/characters/venio-darcony/back.svg"
  16845. }
  16846. },
  16847. sideNsfw: {
  16848. height: math.unit(10, "feet"),
  16849. weight: math.unit(800, "kg"),
  16850. name: "Side (NSFW)",
  16851. image: {
  16852. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16853. extra: 1373 / 1003,
  16854. bottom: 0.037
  16855. }
  16856. },
  16857. frontNsfw: {
  16858. height: math.unit(19, "feet"),
  16859. weight: math.unit(800, "kg"),
  16860. name: "Front (NSFW)",
  16861. image: {
  16862. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16863. }
  16864. },
  16865. backNsfw: {
  16866. height: math.unit(19, "feet"),
  16867. weight: math.unit(800, "kg"),
  16868. name: "Back (NSFW)",
  16869. image: {
  16870. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16871. }
  16872. },
  16873. sideArmored: {
  16874. height: math.unit(10, "feet"),
  16875. weight: math.unit(800, "kg"),
  16876. name: "Side (Armored)",
  16877. image: {
  16878. source: "./media/characters/venio-darcony/side-armored.svg",
  16879. extra: 1373 / 1003,
  16880. bottom: 0.037
  16881. }
  16882. },
  16883. frontArmored: {
  16884. height: math.unit(19, "feet"),
  16885. weight: math.unit(900, "kg"),
  16886. name: "Front (Armored)",
  16887. image: {
  16888. source: "./media/characters/venio-darcony/front-armored.svg"
  16889. }
  16890. },
  16891. backArmored: {
  16892. height: math.unit(19, "feet"),
  16893. weight: math.unit(900, "kg"),
  16894. name: "Back (Armored)",
  16895. image: {
  16896. source: "./media/characters/venio-darcony/back-armored.svg"
  16897. }
  16898. },
  16899. sword: {
  16900. height: math.unit(10, "feet"),
  16901. weight: math.unit(50, "lb"),
  16902. name: "Sword",
  16903. image: {
  16904. source: "./media/characters/venio-darcony/sword.svg"
  16905. }
  16906. },
  16907. },
  16908. [
  16909. {
  16910. name: "Normal",
  16911. height: math.unit(10, "feet")
  16912. },
  16913. {
  16914. name: "Macro",
  16915. height: math.unit(130, "feet"),
  16916. default: true
  16917. },
  16918. {
  16919. name: "Macro+",
  16920. height: math.unit(240, "feet")
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16926. {
  16927. front: {
  16928. height: math.unit(6, "feet"),
  16929. weight: math.unit(150, "lb"),
  16930. name: "Front",
  16931. image: {
  16932. source: "./media/characters/veski/front.svg",
  16933. extra: 1299 / 1225,
  16934. bottom: 0.04
  16935. }
  16936. },
  16937. back: {
  16938. height: math.unit(6, "feet"),
  16939. weight: math.unit(150, "lb"),
  16940. name: "Back",
  16941. image: {
  16942. source: "./media/characters/veski/back.svg",
  16943. extra: 1299 / 1225,
  16944. bottom: 0.008
  16945. }
  16946. },
  16947. maw: {
  16948. height: math.unit(1.5 * 1.21, "feet"),
  16949. name: "Maw",
  16950. image: {
  16951. source: "./media/characters/veski/maw.svg"
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Macro",
  16958. height: math.unit(2, "km"),
  16959. default: true
  16960. },
  16961. ]
  16962. ))
  16963. characterMakers.push(() => makeCharacter(
  16964. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16965. {
  16966. front: {
  16967. height: math.unit(5 + 7 / 12, "feet"),
  16968. name: "Front",
  16969. image: {
  16970. source: "./media/characters/isabelle/front.svg",
  16971. extra: 2130 / 1976,
  16972. bottom: 0.05
  16973. }
  16974. },
  16975. },
  16976. [
  16977. {
  16978. name: "Supermicro",
  16979. height: math.unit(10, "micrometers")
  16980. },
  16981. {
  16982. name: "Micro",
  16983. height: math.unit(1, "inch")
  16984. },
  16985. {
  16986. name: "Tiny",
  16987. height: math.unit(5, "inches")
  16988. },
  16989. {
  16990. name: "Standard",
  16991. height: math.unit(5 + 7 / 12, "inches")
  16992. },
  16993. {
  16994. name: "Macro",
  16995. height: math.unit(80, "meters"),
  16996. default: true
  16997. },
  16998. {
  16999. name: "Megamacro",
  17000. height: math.unit(250, "meters")
  17001. },
  17002. {
  17003. name: "Gigamacro",
  17004. height: math.unit(5, "km")
  17005. },
  17006. {
  17007. name: "Cosmic",
  17008. height: math.unit(2.5e6, "miles")
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(6, "feet"),
  17017. weight: math.unit(150, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/hanzo/front.svg",
  17021. extra: 374 / 344,
  17022. bottom: 0.02
  17023. }
  17024. },
  17025. },
  17026. [
  17027. {
  17028. name: "Normal",
  17029. height: math.unit(8, "feet"),
  17030. default: true
  17031. },
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17036. {
  17037. front: {
  17038. height: math.unit(7, "feet"),
  17039. weight: math.unit(130, "lb"),
  17040. name: "Front",
  17041. image: {
  17042. source: "./media/characters/anna/front.svg",
  17043. extra: 169 / 145,
  17044. bottom: 0.06
  17045. }
  17046. },
  17047. full: {
  17048. height: math.unit(4.96, "feet"),
  17049. weight: math.unit(220, "lb"),
  17050. name: "Full",
  17051. image: {
  17052. source: "./media/characters/anna/full.svg",
  17053. extra: 138 / 114,
  17054. bottom: 0.15
  17055. }
  17056. },
  17057. tongue: {
  17058. height: math.unit(2.53, "feet"),
  17059. name: "Tongue",
  17060. image: {
  17061. source: "./media/characters/anna/tongue.svg"
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(7, "feet"),
  17069. default: true
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17075. {
  17076. front: {
  17077. height: math.unit(7, "feet"),
  17078. weight: math.unit(150, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/ian-corvid/front.svg",
  17082. extra: 150 / 142,
  17083. bottom: 0.02
  17084. }
  17085. },
  17086. back: {
  17087. height: math.unit(7, "feet"),
  17088. weight: math.unit(150, "lb"),
  17089. name: "Back",
  17090. image: {
  17091. source: "./media/characters/ian-corvid/back.svg",
  17092. extra: 150 / 143,
  17093. bottom: 0.01
  17094. }
  17095. },
  17096. stomping: {
  17097. height: math.unit(7, "feet"),
  17098. weight: math.unit(150, "lb"),
  17099. name: "Stomping",
  17100. image: {
  17101. source: "./media/characters/ian-corvid/stomping.svg",
  17102. extra: 76 / 72
  17103. }
  17104. },
  17105. sitting: {
  17106. height: math.unit(7 / 1.8, "feet"),
  17107. weight: math.unit(150, "lb"),
  17108. name: "Sitting",
  17109. image: {
  17110. source: "./media/characters/ian-corvid/sitting.svg",
  17111. extra: 1400 / 1269,
  17112. bottom: 0.15
  17113. }
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Tiny Microw",
  17119. height: math.unit(1, "inch")
  17120. },
  17121. {
  17122. name: "Microw",
  17123. height: math.unit(6, "inches")
  17124. },
  17125. {
  17126. name: "Crow",
  17127. height: math.unit(7 + 1 / 12, "feet"),
  17128. default: true
  17129. },
  17130. {
  17131. name: "Macrow",
  17132. height: math.unit(176, "feet")
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17138. {
  17139. front: {
  17140. height: math.unit(5 + 7 / 12, "feet"),
  17141. weight: math.unit(147, "lb"),
  17142. name: "Front",
  17143. image: {
  17144. source: "./media/characters/natalie-kellon/front.svg",
  17145. extra: 1214 / 1141,
  17146. bottom: 0.02
  17147. }
  17148. },
  17149. },
  17150. [
  17151. {
  17152. name: "Micro",
  17153. height: math.unit(1 / 16, "inch")
  17154. },
  17155. {
  17156. name: "Tiny",
  17157. height: math.unit(4, "inches")
  17158. },
  17159. {
  17160. name: "Normal",
  17161. height: math.unit(5 + 7 / 12, "feet"),
  17162. default: true
  17163. },
  17164. {
  17165. name: "Amazon",
  17166. height: math.unit(12, "feet")
  17167. },
  17168. {
  17169. name: "Giantess",
  17170. height: math.unit(160, "meters")
  17171. },
  17172. {
  17173. name: "Titaness",
  17174. height: math.unit(800, "meters")
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17180. {
  17181. front: {
  17182. height: math.unit(6, "feet"),
  17183. weight: math.unit(150, "lb"),
  17184. name: "Front",
  17185. image: {
  17186. source: "./media/characters/alluria/front.svg",
  17187. extra: 806 / 738,
  17188. bottom: 0.01
  17189. }
  17190. },
  17191. side: {
  17192. height: math.unit(6, "feet"),
  17193. weight: math.unit(150, "lb"),
  17194. name: "Side",
  17195. image: {
  17196. source: "./media/characters/alluria/side.svg",
  17197. extra: 800 / 750,
  17198. }
  17199. },
  17200. back: {
  17201. height: math.unit(6, "feet"),
  17202. weight: math.unit(150, "lb"),
  17203. name: "Back",
  17204. image: {
  17205. source: "./media/characters/alluria/back.svg",
  17206. extra: 806 / 738,
  17207. }
  17208. },
  17209. frontMaid: {
  17210. height: math.unit(6, "feet"),
  17211. weight: math.unit(150, "lb"),
  17212. name: "Front (Maid)",
  17213. image: {
  17214. source: "./media/characters/alluria/front-maid.svg",
  17215. extra: 806 / 738,
  17216. bottom: 0.01
  17217. }
  17218. },
  17219. sideMaid: {
  17220. height: math.unit(6, "feet"),
  17221. weight: math.unit(150, "lb"),
  17222. name: "Side (Maid)",
  17223. image: {
  17224. source: "./media/characters/alluria/side-maid.svg",
  17225. extra: 800 / 750,
  17226. bottom: 0.005
  17227. }
  17228. },
  17229. backMaid: {
  17230. height: math.unit(6, "feet"),
  17231. weight: math.unit(150, "lb"),
  17232. name: "Back (Maid)",
  17233. image: {
  17234. source: "./media/characters/alluria/back-maid.svg",
  17235. extra: 806 / 738,
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Micro",
  17242. height: math.unit(6, "inches"),
  17243. default: true
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17249. {
  17250. front: {
  17251. height: math.unit(6, "feet"),
  17252. weight: math.unit(150, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/kyle/front.svg",
  17256. extra: 1069 / 962,
  17257. bottom: 77.228 / 1727.45
  17258. }
  17259. },
  17260. },
  17261. [
  17262. {
  17263. name: "Macro",
  17264. height: math.unit(150, "feet"),
  17265. default: true
  17266. },
  17267. ]
  17268. ))
  17269. characterMakers.push(() => makeCharacter(
  17270. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17271. {
  17272. front: {
  17273. height: math.unit(6, "feet"),
  17274. weight: math.unit(300, "lb"),
  17275. name: "Front",
  17276. image: {
  17277. source: "./media/characters/duncan/front.svg",
  17278. extra: 1650 / 1482,
  17279. bottom: 0.05
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Macro",
  17286. height: math.unit(100, "feet"),
  17287. default: true
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17293. {
  17294. front: {
  17295. height: math.unit(5 + 4 / 12, "feet"),
  17296. weight: math.unit(220, "lb"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/memory/front.svg",
  17300. extra: 3641 / 3545,
  17301. bottom: 0.03
  17302. }
  17303. },
  17304. back: {
  17305. height: math.unit(5 + 4 / 12, "feet"),
  17306. weight: math.unit(220, "lb"),
  17307. name: "Back",
  17308. image: {
  17309. source: "./media/characters/memory/back.svg",
  17310. extra: 3641 / 3545,
  17311. bottom: 0.025
  17312. }
  17313. },
  17314. frontSkirt: {
  17315. height: math.unit(5 + 4 / 12, "feet"),
  17316. weight: math.unit(220, "lb"),
  17317. name: "Front (Skirt)",
  17318. image: {
  17319. source: "./media/characters/memory/front-skirt.svg",
  17320. extra: 3641 / 3545,
  17321. bottom: 0.03
  17322. }
  17323. },
  17324. frontDress: {
  17325. height: math.unit(5 + 4 / 12, "feet"),
  17326. weight: math.unit(220, "lb"),
  17327. name: "Front (Dress)",
  17328. image: {
  17329. source: "./media/characters/memory/front-dress.svg",
  17330. extra: 3641 / 3545,
  17331. bottom: 0.03
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Micro",
  17338. height: math.unit(6, "inches"),
  17339. default: true
  17340. },
  17341. {
  17342. name: "Normal",
  17343. height: math.unit(5 + 4 / 12, "feet")
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17349. {
  17350. front: {
  17351. height: math.unit(4 + 11 / 12, "feet"),
  17352. weight: math.unit(100, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/luno/front.svg",
  17356. extra: 1535 / 1487,
  17357. bottom: 0.03
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Micro",
  17364. height: math.unit(3, "inches")
  17365. },
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(4 + 11 / 12, "feet"),
  17369. default: true
  17370. },
  17371. {
  17372. name: "Macro",
  17373. height: math.unit(300, "feet")
  17374. },
  17375. {
  17376. name: "Megamacro",
  17377. height: math.unit(700, "miles")
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17383. {
  17384. front: {
  17385. height: math.unit(6 + 2 / 12, "feet"),
  17386. weight: math.unit(170, "lb"),
  17387. name: "Front",
  17388. image: {
  17389. source: "./media/characters/jamesy/front.svg",
  17390. extra: 440 / 382,
  17391. bottom: 0.005
  17392. }
  17393. },
  17394. },
  17395. [
  17396. {
  17397. name: "Micro",
  17398. height: math.unit(3, "inches")
  17399. },
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(6 + 2 / 12, "feet"),
  17403. default: true
  17404. },
  17405. {
  17406. name: "Macro",
  17407. height: math.unit(300, "feet")
  17408. },
  17409. {
  17410. name: "Megamacro",
  17411. height: math.unit(700, "miles")
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17417. {
  17418. front: {
  17419. height: math.unit(6, "feet"),
  17420. weight: math.unit(160, "lb"),
  17421. name: "Front",
  17422. image: {
  17423. source: "./media/characters/mark/front.svg",
  17424. extra: 3300 / 3100,
  17425. bottom: 136.42 / 3440.47
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Macro",
  17432. height: math.unit(120, "meters")
  17433. },
  17434. {
  17435. name: "Bigger Macro",
  17436. height: math.unit(350, "meters")
  17437. },
  17438. {
  17439. name: "Megamacro",
  17440. height: math.unit(8, "km"),
  17441. default: true
  17442. },
  17443. {
  17444. name: "Continental",
  17445. height: math.unit(4550, "km")
  17446. },
  17447. {
  17448. name: "Planetary",
  17449. height: math.unit(65000, "km")
  17450. },
  17451. ]
  17452. ))
  17453. characterMakers.push(() => makeCharacter(
  17454. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17455. {
  17456. front: {
  17457. height: math.unit(6, "feet"),
  17458. weight: math.unit(400, "lb"),
  17459. name: "Front",
  17460. image: {
  17461. source: "./media/characters/mac/front.svg",
  17462. extra: 1048 / 987.7,
  17463. bottom: 60 / 1107.6,
  17464. }
  17465. },
  17466. },
  17467. [
  17468. {
  17469. name: "Macro",
  17470. height: math.unit(500, "feet"),
  17471. default: true
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17477. {
  17478. front: {
  17479. height: math.unit(5 + 2 / 12, "feet"),
  17480. weight: math.unit(190, "lb"),
  17481. name: "Front",
  17482. image: {
  17483. source: "./media/characters/bari/front.svg",
  17484. extra: 3156 / 2880,
  17485. bottom: 0.03
  17486. }
  17487. },
  17488. back: {
  17489. height: math.unit(5 + 2 / 12, "feet"),
  17490. weight: math.unit(190, "lb"),
  17491. name: "Back",
  17492. image: {
  17493. source: "./media/characters/bari/back.svg",
  17494. extra: 3260 / 2834,
  17495. bottom: 0.025
  17496. }
  17497. },
  17498. frontPlush: {
  17499. height: math.unit(5 + 2 / 12, "feet"),
  17500. weight: math.unit(190, "lb"),
  17501. name: "Front (Plush)",
  17502. image: {
  17503. source: "./media/characters/bari/front-plush.svg",
  17504. extra: 1112 / 1061,
  17505. bottom: 0.002
  17506. }
  17507. },
  17508. },
  17509. [
  17510. {
  17511. name: "Micro",
  17512. height: math.unit(3, "inches")
  17513. },
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(5 + 2 / 12, "feet"),
  17517. default: true
  17518. },
  17519. {
  17520. name: "Macro",
  17521. height: math.unit(20, "feet")
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17527. {
  17528. front: {
  17529. height: math.unit(6 + 1 / 12, "feet"),
  17530. weight: math.unit(275, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/hunter-misha-raven/front.svg"
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Mortal",
  17540. height: math.unit(6 + 1 / 12, "feet")
  17541. },
  17542. {
  17543. name: "Divine",
  17544. height: math.unit(1.12134e34, "parsecs"),
  17545. default: true
  17546. },
  17547. ]
  17548. ))
  17549. characterMakers.push(() => makeCharacter(
  17550. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17551. {
  17552. front: {
  17553. height: math.unit(6 + 3 / 12, "feet"),
  17554. weight: math.unit(220, "lb"),
  17555. name: "Front",
  17556. image: {
  17557. source: "./media/characters/max-calore/front.svg",
  17558. extra: 1700 / 1648,
  17559. bottom: 0.01
  17560. }
  17561. },
  17562. back: {
  17563. height: math.unit(6 + 3 / 12, "feet"),
  17564. weight: math.unit(220, "lb"),
  17565. name: "Back",
  17566. image: {
  17567. source: "./media/characters/max-calore/back.svg",
  17568. extra: 1700 / 1648,
  17569. bottom: 0.01
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(6 + 3 / 12, "feet"),
  17577. default: true
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17583. {
  17584. side: {
  17585. height: math.unit(2 + 8 / 12, "feet"),
  17586. weight: math.unit(99, "lb"),
  17587. name: "Side",
  17588. image: {
  17589. source: "./media/characters/aspen/side.svg",
  17590. extra: 152 / 138,
  17591. bottom: 0.032
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(2 + 8 / 12, "feet"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17605. {
  17606. side: {
  17607. height: math.unit(3 + 2 / 12, "feet"),
  17608. weight: math.unit(224, "lb"),
  17609. name: "Side",
  17610. image: {
  17611. source: "./media/characters/sheila-feral-wolf/side.svg",
  17612. extra: 179 / 166,
  17613. bottom: 0.03
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Normal",
  17620. height: math.unit(3 + 2 / 12, "feet"),
  17621. default: true
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17627. {
  17628. side: {
  17629. height: math.unit(1 + 9 / 12, "feet"),
  17630. weight: math.unit(38, "lb"),
  17631. name: "Side",
  17632. image: {
  17633. source: "./media/characters/michelle/side.svg",
  17634. extra: 147 / 136.7,
  17635. bottom: 0.03
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Normal",
  17642. height: math.unit(1 + 9 / 12, "feet"),
  17643. default: true
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(1.54, "feet"),
  17652. weight: math.unit(50, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/nino/front.svg"
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Normal",
  17662. height: math.unit(1.54, "feet"),
  17663. default: true
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(1.49, "feet"),
  17672. weight: math.unit(45, "lb"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/viola/front.svg"
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(1.49, "feet"),
  17683. default: true
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(6 + 5 / 12, "feet"),
  17692. weight: math.unit(580, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/atlas/front.svg",
  17696. extra: 298.5 / 290,
  17697. bottom: 0.015
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(6 + 5 / 12, "feet"),
  17705. default: true
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17711. {
  17712. side: {
  17713. height: math.unit(15.6, "inches"),
  17714. weight: math.unit(10, "lb"),
  17715. name: "Side",
  17716. image: {
  17717. source: "./media/characters/davy/side.svg",
  17718. extra: 200 / 170,
  17719. bottom: 0.01
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(15.6, "inches"),
  17727. default: true
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17733. {
  17734. side: {
  17735. height: math.unit(4 + 8 / 12, "feet"),
  17736. weight: math.unit(166, "lb"),
  17737. name: "Side",
  17738. image: {
  17739. source: "./media/characters/fiona/side.svg",
  17740. extra: 232 / 220,
  17741. bottom: 0.03
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(4 + 8 / 12, "feet"),
  17749. default: true
  17750. },
  17751. ]
  17752. ))
  17753. characterMakers.push(() => makeCharacter(
  17754. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17755. {
  17756. front: {
  17757. height: math.unit(26, "inches"),
  17758. weight: math.unit(35, "lb"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/lyla/front.svg",
  17762. bottom: 0.1
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(3, "feet"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17776. {
  17777. side: {
  17778. height: math.unit(1.8, "feet"),
  17779. weight: math.unit(44, "lb"),
  17780. name: "Side",
  17781. image: {
  17782. source: "./media/characters/perseus/side.svg",
  17783. bottom: 0.21
  17784. }
  17785. },
  17786. },
  17787. [
  17788. {
  17789. name: "Normal",
  17790. height: math.unit(1.8, "feet"),
  17791. default: true
  17792. },
  17793. ]
  17794. ))
  17795. characterMakers.push(() => makeCharacter(
  17796. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17797. {
  17798. side: {
  17799. height: math.unit(4 + 2 / 12, "feet"),
  17800. weight: math.unit(20, "lb"),
  17801. name: "Side",
  17802. image: {
  17803. source: "./media/characters/remus/side.svg"
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Normal",
  17810. height: math.unit(4 + 2 / 12, "feet"),
  17811. default: true
  17812. },
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17817. {
  17818. front: {
  17819. height: math.unit(4 + 11 / 12, "feet"),
  17820. weight: math.unit(114, "lb"),
  17821. name: "Front",
  17822. image: {
  17823. source: "./media/characters/raf/front.svg",
  17824. extra: 1504/1339,
  17825. bottom: 26/1530
  17826. }
  17827. },
  17828. side: {
  17829. height: math.unit(4 + 11 / 12, "feet"),
  17830. weight: math.unit(114, "lb"),
  17831. name: "Side",
  17832. image: {
  17833. source: "./media/characters/raf/side.svg",
  17834. extra: 1466/1316,
  17835. bottom: 29/1495
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Micro",
  17842. height: math.unit(2, "inches")
  17843. },
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(4 + 11 / 12, "feet"),
  17847. default: true
  17848. },
  17849. {
  17850. name: "Macro",
  17851. height: math.unit(70, "feet")
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17857. {
  17858. front: {
  17859. height: math.unit(1.5, "meters"),
  17860. weight: math.unit(68, "kg"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/liam-einarr/front.svg",
  17864. extra: 2822 / 2666
  17865. }
  17866. },
  17867. back: {
  17868. height: math.unit(1.5, "meters"),
  17869. weight: math.unit(68, "kg"),
  17870. name: "Back",
  17871. image: {
  17872. source: "./media/characters/liam-einarr/back.svg",
  17873. extra: 2822 / 2666,
  17874. bottom: 0.015
  17875. }
  17876. },
  17877. },
  17878. [
  17879. {
  17880. name: "Normal",
  17881. height: math.unit(1.5, "meters"),
  17882. default: true
  17883. },
  17884. {
  17885. name: "Macro",
  17886. height: math.unit(150, "meters")
  17887. },
  17888. {
  17889. name: "Megamacro",
  17890. height: math.unit(35, "km")
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17896. {
  17897. front: {
  17898. height: math.unit(6, "feet"),
  17899. weight: math.unit(75, "kg"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/linda/front.svg",
  17903. extra: 930 / 874,
  17904. bottom: 0.004
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(6, "feet"),
  17912. default: true
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17918. {
  17919. front: {
  17920. height: math.unit(6 + 8 / 12, "feet"),
  17921. weight: math.unit(220, "lb"),
  17922. name: "Front",
  17923. image: {
  17924. source: "./media/characters/caylex/front.svg",
  17925. extra: 821 / 772,
  17926. bottom: 0.07
  17927. }
  17928. },
  17929. back: {
  17930. height: math.unit(6 + 8 / 12, "feet"),
  17931. weight: math.unit(220, "lb"),
  17932. name: "Back",
  17933. image: {
  17934. source: "./media/characters/caylex/back.svg",
  17935. extra: 821 / 772,
  17936. bottom: 0.022
  17937. }
  17938. },
  17939. hand: {
  17940. height: math.unit(1.25, "feet"),
  17941. name: "Hand",
  17942. image: {
  17943. source: "./media/characters/caylex/hand.svg"
  17944. }
  17945. },
  17946. foot: {
  17947. height: math.unit(1.6, "feet"),
  17948. name: "Foot",
  17949. image: {
  17950. source: "./media/characters/caylex/foot.svg"
  17951. }
  17952. },
  17953. armored: {
  17954. height: math.unit(6 + 8 / 12, "feet"),
  17955. weight: math.unit(250, "lb"),
  17956. name: "Armored",
  17957. image: {
  17958. source: "./media/characters/caylex/armored.svg",
  17959. extra: 1420 / 1310,
  17960. bottom: 0.045
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(6 + 8 / 12, "feet"),
  17968. default: true
  17969. },
  17970. {
  17971. name: "Normal+",
  17972. height: math.unit(12, "feet")
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(7 + 6 / 12, "feet"),
  17981. weight: math.unit(288, "lb"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/alana/front.svg",
  17985. extra: 679 / 653,
  17986. bottom: 22.5 / 701
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(7 + 6 / 12, "feet")
  17994. },
  17995. {
  17996. name: "Large",
  17997. height: math.unit(50, "feet")
  17998. },
  17999. {
  18000. name: "Macro",
  18001. height: math.unit(100, "feet"),
  18002. default: true
  18003. },
  18004. {
  18005. name: "Macro+",
  18006. height: math.unit(200, "feet")
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(6 + 1 / 12, "feet"),
  18015. weight: math.unit(210, "lb"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/hasani/front.svg",
  18019. extra: 244 / 232,
  18020. bottom: 0.01
  18021. }
  18022. },
  18023. back: {
  18024. height: math.unit(6 + 1 / 12, "feet"),
  18025. weight: math.unit(210, "lb"),
  18026. name: "Back",
  18027. image: {
  18028. source: "./media/characters/hasani/back.svg",
  18029. extra: 244 / 232,
  18030. bottom: 0.01
  18031. }
  18032. },
  18033. },
  18034. [
  18035. {
  18036. name: "Normal",
  18037. height: math.unit(6 + 1 / 12, "feet")
  18038. },
  18039. {
  18040. name: "Macro",
  18041. height: math.unit(175, "feet"),
  18042. default: true
  18043. },
  18044. ]
  18045. ))
  18046. characterMakers.push(() => makeCharacter(
  18047. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18048. {
  18049. front: {
  18050. height: math.unit(1.82, "meters"),
  18051. weight: math.unit(140, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/nita/front.svg",
  18055. extra: 2473 / 2363,
  18056. bottom: 0.01
  18057. }
  18058. },
  18059. },
  18060. [
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(1.82, "m")
  18064. },
  18065. {
  18066. name: "Macro",
  18067. height: math.unit(300, "m")
  18068. },
  18069. {
  18070. name: "Mistake Canon",
  18071. height: math.unit(0.5, "miles"),
  18072. default: true
  18073. },
  18074. {
  18075. name: "Big Mistake",
  18076. height: math.unit(13, "miles")
  18077. },
  18078. {
  18079. name: "Playing God",
  18080. height: math.unit(2450, "miles")
  18081. },
  18082. ]
  18083. ))
  18084. characterMakers.push(() => makeCharacter(
  18085. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18086. {
  18087. front: {
  18088. height: math.unit(4, "feet"),
  18089. weight: math.unit(120, "lb"),
  18090. name: "Front",
  18091. image: {
  18092. source: "./media/characters/shiriko/front.svg",
  18093. extra: 970/934,
  18094. bottom: 5/975
  18095. }
  18096. },
  18097. },
  18098. [
  18099. {
  18100. name: "Normal",
  18101. height: math.unit(4, "feet"),
  18102. default: true
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(6, "feet"),
  18111. name: "front",
  18112. image: {
  18113. source: "./media/characters/deja/front.svg",
  18114. extra: 926 / 840,
  18115. bottom: 0.07
  18116. }
  18117. },
  18118. },
  18119. [
  18120. {
  18121. name: "Planck Length",
  18122. height: math.unit(1.6e-35, "meters")
  18123. },
  18124. {
  18125. name: "Normal",
  18126. height: math.unit(30.48, "meters"),
  18127. default: true
  18128. },
  18129. {
  18130. name: "Universal",
  18131. height: math.unit(8.8e26, "meters")
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18137. {
  18138. side: {
  18139. height: math.unit(8, "feet"),
  18140. weight: math.unit(6300, "lb"),
  18141. name: "Side",
  18142. image: {
  18143. source: "./media/characters/anima/side.svg",
  18144. bottom: 0.035
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(8, "feet"),
  18152. default: true
  18153. },
  18154. ]
  18155. ))
  18156. characterMakers.push(() => makeCharacter(
  18157. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18158. {
  18159. front: {
  18160. height: math.unit(8, "feet"),
  18161. weight: math.unit(350, "lb"),
  18162. name: "Front",
  18163. image: {
  18164. source: "./media/characters/bianca/front.svg",
  18165. extra: 234 / 225,
  18166. bottom: 0.03
  18167. }
  18168. },
  18169. },
  18170. [
  18171. {
  18172. name: "Normal",
  18173. height: math.unit(8, "feet"),
  18174. default: true
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18180. {
  18181. front: {
  18182. height: math.unit(6, "feet"),
  18183. weight: math.unit(150, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/adinia/front.svg",
  18187. extra: 1845 / 1672,
  18188. bottom: 0.02
  18189. }
  18190. },
  18191. back: {
  18192. height: math.unit(6, "feet"),
  18193. weight: math.unit(150, "lb"),
  18194. name: "Back",
  18195. image: {
  18196. source: "./media/characters/adinia/back.svg",
  18197. extra: 1845 / 1672,
  18198. bottom: 0.002
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Normal",
  18205. height: math.unit(11 + 5 / 12, "feet"),
  18206. default: true
  18207. },
  18208. ]
  18209. ))
  18210. characterMakers.push(() => makeCharacter(
  18211. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18212. {
  18213. front: {
  18214. height: math.unit(3, "meters"),
  18215. weight: math.unit(200, "kg"),
  18216. name: "Front",
  18217. image: {
  18218. source: "./media/characters/lykasa/front.svg",
  18219. extra: 1076 / 976,
  18220. bottom: 0.06
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(3, "meters")
  18228. },
  18229. {
  18230. name: "Kaiju",
  18231. height: math.unit(120, "meters"),
  18232. default: true
  18233. },
  18234. {
  18235. name: "Mega Kaiju",
  18236. height: math.unit(240, "km")
  18237. },
  18238. {
  18239. name: "Giga Kaiju",
  18240. height: math.unit(400, "megameters")
  18241. },
  18242. {
  18243. name: "Tera Kaiju",
  18244. height: math.unit(800, "gigameters")
  18245. },
  18246. {
  18247. name: "Kaiju Dragon Goddess",
  18248. height: math.unit(26, "zettaparsecs")
  18249. },
  18250. ]
  18251. ))
  18252. characterMakers.push(() => makeCharacter(
  18253. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18254. {
  18255. side: {
  18256. height: math.unit(283 / 124 * 6, "feet"),
  18257. weight: math.unit(35000, "lb"),
  18258. name: "Side",
  18259. image: {
  18260. source: "./media/characters/malfaren/side.svg",
  18261. extra: 1310/529,
  18262. bottom: 24/1334
  18263. }
  18264. },
  18265. front: {
  18266. height: math.unit(22.36, "feet"),
  18267. weight: math.unit(35000, "lb"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/malfaren/front.svg",
  18271. extra: 1237/1115,
  18272. bottom: 32/1269
  18273. }
  18274. },
  18275. maw: {
  18276. height: math.unit(6.9, "feet"),
  18277. name: "Maw",
  18278. image: {
  18279. source: "./media/characters/malfaren/maw.svg"
  18280. }
  18281. },
  18282. dick: {
  18283. height: math.unit(6.19, "feet"),
  18284. name: "Dick",
  18285. image: {
  18286. source: "./media/characters/malfaren/dick.svg"
  18287. }
  18288. },
  18289. eye: {
  18290. height: math.unit(0.69, "feet"),
  18291. name: "Eye",
  18292. image: {
  18293. source: "./media/characters/malfaren/eye.svg"
  18294. }
  18295. },
  18296. },
  18297. [
  18298. {
  18299. name: "Big",
  18300. height: math.unit(283 / 162 * 6, "feet"),
  18301. },
  18302. {
  18303. name: "Bigger",
  18304. height: math.unit(283 / 124 * 6, "feet")
  18305. },
  18306. {
  18307. name: "Massive",
  18308. height: math.unit(283 / 92 * 6, "feet"),
  18309. default: true
  18310. },
  18311. {
  18312. name: "👀💦",
  18313. height: math.unit(283 / 73 * 6, "feet"),
  18314. },
  18315. ]
  18316. ))
  18317. characterMakers.push(() => makeCharacter(
  18318. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18319. {
  18320. front: {
  18321. height: math.unit(1.7, "m"),
  18322. weight: math.unit(70, "kg"),
  18323. name: "Front",
  18324. image: {
  18325. source: "./media/characters/kernel/front.svg",
  18326. extra: 222 / 210,
  18327. bottom: 0.007
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Nano",
  18334. height: math.unit(17, "micrometers")
  18335. },
  18336. {
  18337. name: "Micro",
  18338. height: math.unit(1.7, "mm")
  18339. },
  18340. {
  18341. name: "Small",
  18342. height: math.unit(1.7, "cm")
  18343. },
  18344. {
  18345. name: "Normal",
  18346. height: math.unit(1.7, "m"),
  18347. default: true
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18353. {
  18354. front: {
  18355. height: math.unit(1.75, "meters"),
  18356. weight: math.unit(65, "kg"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/jayne-folest/front.svg",
  18360. extra: 2115 / 2007,
  18361. bottom: 0.02
  18362. }
  18363. },
  18364. back: {
  18365. height: math.unit(1.75, "meters"),
  18366. weight: math.unit(65, "kg"),
  18367. name: "Back",
  18368. image: {
  18369. source: "./media/characters/jayne-folest/back.svg",
  18370. extra: 2115 / 2007,
  18371. bottom: 0.005
  18372. }
  18373. },
  18374. frontClothed: {
  18375. height: math.unit(1.75, "meters"),
  18376. weight: math.unit(65, "kg"),
  18377. name: "Front (Clothed)",
  18378. image: {
  18379. source: "./media/characters/jayne-folest/front-clothed.svg",
  18380. extra: 2115 / 2007,
  18381. bottom: 0.035
  18382. }
  18383. },
  18384. hand: {
  18385. height: math.unit(1 / 1.260, "feet"),
  18386. name: "Hand",
  18387. image: {
  18388. source: "./media/characters/jayne-folest/hand.svg"
  18389. }
  18390. },
  18391. foot: {
  18392. height: math.unit(1 / 0.918, "feet"),
  18393. name: "Foot",
  18394. image: {
  18395. source: "./media/characters/jayne-folest/foot.svg"
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Micro",
  18402. height: math.unit(4, "cm")
  18403. },
  18404. {
  18405. name: "Normal",
  18406. height: math.unit(1.75, "meters")
  18407. },
  18408. {
  18409. name: "Macro",
  18410. height: math.unit(47.5, "meters"),
  18411. default: true
  18412. },
  18413. ]
  18414. ))
  18415. characterMakers.push(() => makeCharacter(
  18416. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18417. {
  18418. front: {
  18419. height: math.unit(180, "cm"),
  18420. weight: math.unit(70, "kg"),
  18421. name: "Front",
  18422. image: {
  18423. source: "./media/characters/algier/front.svg",
  18424. extra: 596 / 572,
  18425. bottom: 0.04
  18426. }
  18427. },
  18428. back: {
  18429. height: math.unit(180, "cm"),
  18430. weight: math.unit(70, "kg"),
  18431. name: "Back",
  18432. image: {
  18433. source: "./media/characters/algier/back.svg",
  18434. extra: 596 / 572,
  18435. bottom: 0.025
  18436. }
  18437. },
  18438. frontdressed: {
  18439. height: math.unit(180, "cm"),
  18440. weight: math.unit(150, "kg"),
  18441. name: "Front-dressed",
  18442. image: {
  18443. source: "./media/characters/algier/front-dressed.svg",
  18444. extra: 596 / 572,
  18445. bottom: 0.038
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Micro",
  18452. height: math.unit(5, "cm")
  18453. },
  18454. {
  18455. name: "Normal",
  18456. height: math.unit(180, "cm"),
  18457. default: true
  18458. },
  18459. {
  18460. name: "Macro",
  18461. height: math.unit(64, "m")
  18462. },
  18463. ]
  18464. ))
  18465. characterMakers.push(() => makeCharacter(
  18466. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18467. {
  18468. upright: {
  18469. height: math.unit(7, "feet"),
  18470. weight: math.unit(300, "lb"),
  18471. name: "Upright",
  18472. image: {
  18473. source: "./media/characters/pretzel/upright.svg",
  18474. extra: 534 / 522,
  18475. bottom: 0.065
  18476. }
  18477. },
  18478. sprawling: {
  18479. height: math.unit(3.75, "feet"),
  18480. weight: math.unit(300, "lb"),
  18481. name: "Sprawling",
  18482. image: {
  18483. source: "./media/characters/pretzel/sprawling.svg",
  18484. extra: 314 / 281,
  18485. bottom: 0.1
  18486. }
  18487. },
  18488. tongue: {
  18489. height: math.unit(2, "feet"),
  18490. name: "Tongue",
  18491. image: {
  18492. source: "./media/characters/pretzel/tongue.svg"
  18493. }
  18494. },
  18495. },
  18496. [
  18497. {
  18498. name: "Normal",
  18499. height: math.unit(7, "feet"),
  18500. default: true
  18501. },
  18502. {
  18503. name: "Oversized",
  18504. height: math.unit(15, "feet")
  18505. },
  18506. {
  18507. name: "Huge",
  18508. height: math.unit(30, "feet")
  18509. },
  18510. {
  18511. name: "Macro",
  18512. height: math.unit(250, "feet")
  18513. },
  18514. ]
  18515. ))
  18516. characterMakers.push(() => makeCharacter(
  18517. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18518. {
  18519. sideFront: {
  18520. height: math.unit(5 + 2 / 12, "feet"),
  18521. weight: math.unit(120, "lb"),
  18522. name: "Front Side",
  18523. image: {
  18524. source: "./media/characters/roxi/side-front.svg",
  18525. extra: 2924 / 2717,
  18526. bottom: 0.08
  18527. }
  18528. },
  18529. sideBack: {
  18530. height: math.unit(5 + 2 / 12, "feet"),
  18531. weight: math.unit(120, "lb"),
  18532. name: "Back Side",
  18533. image: {
  18534. source: "./media/characters/roxi/side-back.svg",
  18535. extra: 2904 / 2693,
  18536. bottom: 0.06
  18537. }
  18538. },
  18539. front: {
  18540. height: math.unit(5 + 2 / 12, "feet"),
  18541. weight: math.unit(120, "lb"),
  18542. name: "Front",
  18543. image: {
  18544. source: "./media/characters/roxi/front.svg",
  18545. extra: 2028 / 1907,
  18546. bottom: 0.01
  18547. }
  18548. },
  18549. frontAlt: {
  18550. height: math.unit(5 + 2 / 12, "feet"),
  18551. weight: math.unit(120, "lb"),
  18552. name: "Front (Alt)",
  18553. image: {
  18554. source: "./media/characters/roxi/front-alt.svg",
  18555. extra: 1828 / 1798,
  18556. bottom: 0.01
  18557. }
  18558. },
  18559. sitting: {
  18560. height: math.unit(2.8, "feet"),
  18561. weight: math.unit(120, "lb"),
  18562. name: "Sitting",
  18563. image: {
  18564. source: "./media/characters/roxi/sitting.svg",
  18565. extra: 2660 / 2462,
  18566. bottom: 0.1
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(5 + 2 / 12, "feet"),
  18574. default: true
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18580. {
  18581. side: {
  18582. height: math.unit(55, "feet"),
  18583. weight: math.unit(153, "tons"),
  18584. name: "Side",
  18585. image: {
  18586. source: "./media/characters/shadow/side.svg",
  18587. extra: 701 / 628,
  18588. bottom: 0.02
  18589. }
  18590. },
  18591. flying: {
  18592. height: math.unit(145, "feet"),
  18593. weight: math.unit(153, "tons"),
  18594. name: "Flying",
  18595. image: {
  18596. source: "./media/characters/shadow/flying.svg"
  18597. }
  18598. },
  18599. },
  18600. [
  18601. {
  18602. name: "Normal",
  18603. height: math.unit(55, "feet"),
  18604. default: true
  18605. },
  18606. ]
  18607. ))
  18608. characterMakers.push(() => makeCharacter(
  18609. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18610. {
  18611. front: {
  18612. height: math.unit(6, "feet"),
  18613. weight: math.unit(200, "lb"),
  18614. name: "Front",
  18615. image: {
  18616. source: "./media/characters/marcie/front.svg",
  18617. extra: 960 / 876,
  18618. bottom: 58 / 1017.87
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Macro",
  18625. height: math.unit(1, "mile"),
  18626. default: true
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18632. {
  18633. front: {
  18634. height: math.unit(7, "feet"),
  18635. weight: math.unit(200, "lb"),
  18636. name: "Front",
  18637. image: {
  18638. source: "./media/characters/kachina/front.svg",
  18639. extra: 1290.68 / 1119,
  18640. bottom: 36.5 / 1327.18
  18641. }
  18642. },
  18643. },
  18644. [
  18645. {
  18646. name: "Normal",
  18647. height: math.unit(7, "feet"),
  18648. default: true
  18649. },
  18650. ]
  18651. ))
  18652. characterMakers.push(() => makeCharacter(
  18653. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18654. {
  18655. looking: {
  18656. height: math.unit(2, "meters"),
  18657. weight: math.unit(300, "kg"),
  18658. name: "Looking",
  18659. image: {
  18660. source: "./media/characters/kash/looking.svg",
  18661. extra: 474 / 344,
  18662. bottom: 0.03
  18663. }
  18664. },
  18665. side: {
  18666. height: math.unit(2, "meters"),
  18667. weight: math.unit(300, "kg"),
  18668. name: "Side",
  18669. image: {
  18670. source: "./media/characters/kash/side.svg",
  18671. extra: 302 / 251,
  18672. bottom: 0.03
  18673. }
  18674. },
  18675. front: {
  18676. height: math.unit(2, "meters"),
  18677. weight: math.unit(300, "kg"),
  18678. name: "Front",
  18679. image: {
  18680. source: "./media/characters/kash/front.svg",
  18681. extra: 495 / 360,
  18682. bottom: 0.015
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(2, "meters"),
  18690. default: true
  18691. },
  18692. {
  18693. name: "Big",
  18694. height: math.unit(3, "meters")
  18695. },
  18696. {
  18697. name: "Large",
  18698. height: math.unit(5, "meters")
  18699. },
  18700. ]
  18701. ))
  18702. characterMakers.push(() => makeCharacter(
  18703. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18704. {
  18705. feeding: {
  18706. height: math.unit(6.7, "feet"),
  18707. weight: math.unit(350, "lb"),
  18708. name: "Feeding",
  18709. image: {
  18710. source: "./media/characters/lalim/feeding.svg",
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(6.7, "feet"),
  18718. default: true
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(9.5, "feet"),
  18727. weight: math.unit(600, "lb"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/de'vout/front.svg",
  18731. extra: 1443 / 1328,
  18732. bottom: 0.025
  18733. }
  18734. },
  18735. back: {
  18736. height: math.unit(9.5, "feet"),
  18737. weight: math.unit(600, "lb"),
  18738. name: "Back",
  18739. image: {
  18740. source: "./media/characters/de'vout/back.svg",
  18741. extra: 1443 / 1328
  18742. }
  18743. },
  18744. frontDressed: {
  18745. height: math.unit(9.5, "feet"),
  18746. weight: math.unit(600, "lb"),
  18747. name: "Front (Dressed",
  18748. image: {
  18749. source: "./media/characters/de'vout/front-dressed.svg",
  18750. extra: 1443 / 1328,
  18751. bottom: 0.025
  18752. }
  18753. },
  18754. backDressed: {
  18755. height: math.unit(9.5, "feet"),
  18756. weight: math.unit(600, "lb"),
  18757. name: "Back (Dressed",
  18758. image: {
  18759. source: "./media/characters/de'vout/back-dressed.svg",
  18760. extra: 1443 / 1328
  18761. }
  18762. },
  18763. },
  18764. [
  18765. {
  18766. name: "Normal",
  18767. height: math.unit(9.5, "feet"),
  18768. default: true
  18769. },
  18770. ]
  18771. ))
  18772. characterMakers.push(() => makeCharacter(
  18773. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18774. {
  18775. front: {
  18776. height: math.unit(8, "feet"),
  18777. weight: math.unit(225, "lb"),
  18778. name: "Front",
  18779. image: {
  18780. source: "./media/characters/talana/front.svg",
  18781. extra: 1410 / 1300,
  18782. bottom: 0.015
  18783. }
  18784. },
  18785. frontDressed: {
  18786. height: math.unit(8, "feet"),
  18787. weight: math.unit(225, "lb"),
  18788. name: "Front (Dressed",
  18789. image: {
  18790. source: "./media/characters/talana/front-dressed.svg",
  18791. extra: 1410 / 1300,
  18792. bottom: 0.015
  18793. }
  18794. },
  18795. },
  18796. [
  18797. {
  18798. name: "Normal",
  18799. height: math.unit(8, "feet"),
  18800. default: true
  18801. },
  18802. ]
  18803. ))
  18804. characterMakers.push(() => makeCharacter(
  18805. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18806. {
  18807. side: {
  18808. height: math.unit(7.2, "feet"),
  18809. weight: math.unit(150, "lb"),
  18810. name: "Side",
  18811. image: {
  18812. source: "./media/characters/xeauvok/side.svg",
  18813. extra: 1975 / 1523,
  18814. bottom: 0.07
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(7.2, "feet"),
  18822. default: true
  18823. },
  18824. ]
  18825. ))
  18826. characterMakers.push(() => makeCharacter(
  18827. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18828. {
  18829. side: {
  18830. height: math.unit(10, "feet"),
  18831. weight: math.unit(900, "kg"),
  18832. name: "Side",
  18833. image: {
  18834. source: "./media/characters/zara/side.svg",
  18835. extra: 504 / 498
  18836. }
  18837. },
  18838. },
  18839. [
  18840. {
  18841. name: "Normal",
  18842. height: math.unit(10, "feet"),
  18843. default: true
  18844. },
  18845. ]
  18846. ))
  18847. characterMakers.push(() => makeCharacter(
  18848. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18849. {
  18850. side: {
  18851. height: math.unit(6, "feet"),
  18852. weight: math.unit(150, "lb"),
  18853. name: "Side",
  18854. image: {
  18855. source: "./media/characters/richard-dragon/side.svg",
  18856. extra: 845 / 340,
  18857. bottom: 0.017
  18858. }
  18859. },
  18860. maw: {
  18861. height: math.unit(2.97, "feet"),
  18862. name: "Maw",
  18863. image: {
  18864. source: "./media/characters/richard-dragon/maw.svg"
  18865. }
  18866. },
  18867. },
  18868. [
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(4, "feet"),
  18876. weight: math.unit(100, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/richard-smeargle/front.svg",
  18880. extra: 2952 / 2820,
  18881. bottom: 0.028
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Normal",
  18888. height: math.unit(4, "feet"),
  18889. default: true
  18890. },
  18891. {
  18892. name: "Dynamax",
  18893. height: math.unit(20, "meters")
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18899. {
  18900. front: {
  18901. height: math.unit(6, "feet"),
  18902. weight: math.unit(110, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/klay/front.svg",
  18906. extra: 962 / 883,
  18907. bottom: 0.04
  18908. }
  18909. },
  18910. back: {
  18911. height: math.unit(6, "feet"),
  18912. weight: math.unit(110, "lb"),
  18913. name: "Back",
  18914. image: {
  18915. source: "./media/characters/klay/back.svg",
  18916. extra: 962 / 883
  18917. }
  18918. },
  18919. beans: {
  18920. height: math.unit(1.15, "feet"),
  18921. name: "Beans",
  18922. image: {
  18923. source: "./media/characters/klay/beans.svg"
  18924. }
  18925. },
  18926. },
  18927. [
  18928. {
  18929. name: "Micro",
  18930. height: math.unit(6, "inches")
  18931. },
  18932. {
  18933. name: "Mini",
  18934. height: math.unit(3, "feet")
  18935. },
  18936. {
  18937. name: "Normal",
  18938. height: math.unit(6, "feet"),
  18939. default: true
  18940. },
  18941. {
  18942. name: "Big",
  18943. height: math.unit(25, "feet")
  18944. },
  18945. {
  18946. name: "Macro",
  18947. height: math.unit(100, "feet")
  18948. },
  18949. {
  18950. name: "Megamacro",
  18951. height: math.unit(400, "feet")
  18952. },
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18957. {
  18958. front: {
  18959. height: math.unit(6, "feet"),
  18960. weight: math.unit(160, "lb"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/marcus/front.svg",
  18964. extra: 734 / 676,
  18965. bottom: 0.03
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Little",
  18972. height: math.unit(6, "feet")
  18973. },
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(110, "feet"),
  18977. default: true
  18978. },
  18979. {
  18980. name: "Macro",
  18981. height: math.unit(250, "feet")
  18982. },
  18983. {
  18984. name: "Megamacro",
  18985. height: math.unit(1000, "feet")
  18986. },
  18987. ]
  18988. ))
  18989. characterMakers.push(() => makeCharacter(
  18990. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18991. {
  18992. front: {
  18993. height: math.unit(7, "feet"),
  18994. weight: math.unit(275, "lb"),
  18995. name: "Front",
  18996. image: {
  18997. source: "./media/characters/claude-delroute/front.svg",
  18998. extra: 902/827,
  18999. bottom: 26/928
  19000. }
  19001. },
  19002. side: {
  19003. height: math.unit(7, "feet"),
  19004. weight: math.unit(275, "lb"),
  19005. name: "Side",
  19006. image: {
  19007. source: "./media/characters/claude-delroute/side.svg",
  19008. extra: 908/853,
  19009. bottom: 16/924
  19010. }
  19011. },
  19012. back: {
  19013. height: math.unit(7, "feet"),
  19014. weight: math.unit(275, "lb"),
  19015. name: "Back",
  19016. image: {
  19017. source: "./media/characters/claude-delroute/back.svg",
  19018. extra: 911/829,
  19019. bottom: 18/929
  19020. }
  19021. },
  19022. maw: {
  19023. height: math.unit(0.6407, "meters"),
  19024. name: "Maw",
  19025. image: {
  19026. source: "./media/characters/claude-delroute/maw.svg"
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Normal",
  19033. height: math.unit(7, "feet"),
  19034. default: true
  19035. },
  19036. {
  19037. name: "Lorge",
  19038. height: math.unit(20, "feet")
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19044. {
  19045. front: {
  19046. height: math.unit(8 + 4 / 12, "feet"),
  19047. weight: math.unit(600, "lb"),
  19048. name: "Front",
  19049. image: {
  19050. source: "./media/characters/dragonien/front.svg",
  19051. extra: 100 / 94,
  19052. bottom: 3.3 / 103.3445
  19053. }
  19054. },
  19055. back: {
  19056. height: math.unit(8 + 4 / 12, "feet"),
  19057. weight: math.unit(600, "lb"),
  19058. name: "Back",
  19059. image: {
  19060. source: "./media/characters/dragonien/back.svg",
  19061. extra: 776 / 746,
  19062. bottom: 6.4 / 782.0616
  19063. }
  19064. },
  19065. foot: {
  19066. height: math.unit(1.54, "feet"),
  19067. name: "Foot",
  19068. image: {
  19069. source: "./media/characters/dragonien/foot.svg",
  19070. }
  19071. },
  19072. },
  19073. [
  19074. {
  19075. name: "Normal",
  19076. height: math.unit(8 + 4 / 12, "feet"),
  19077. default: true
  19078. },
  19079. {
  19080. name: "Macro",
  19081. height: math.unit(200, "feet")
  19082. },
  19083. {
  19084. name: "Megamacro",
  19085. height: math.unit(1, "mile")
  19086. },
  19087. {
  19088. name: "Gigamacro",
  19089. height: math.unit(1000, "miles")
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19095. {
  19096. front: {
  19097. height: math.unit(5 + 2 / 12, "feet"),
  19098. weight: math.unit(110, "lb"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/desta/front.svg",
  19102. extra: 767 / 726,
  19103. bottom: 11.7 / 779
  19104. }
  19105. },
  19106. back: {
  19107. height: math.unit(5 + 2 / 12, "feet"),
  19108. weight: math.unit(110, "lb"),
  19109. name: "Back",
  19110. image: {
  19111. source: "./media/characters/desta/back.svg",
  19112. extra: 777 / 728,
  19113. bottom: 6 / 784
  19114. }
  19115. },
  19116. frontAlt: {
  19117. height: math.unit(5 + 2 / 12, "feet"),
  19118. weight: math.unit(110, "lb"),
  19119. name: "Front",
  19120. image: {
  19121. source: "./media/characters/desta/front-alt.svg",
  19122. extra: 1482 / 1417
  19123. }
  19124. },
  19125. side: {
  19126. height: math.unit(5 + 2 / 12, "feet"),
  19127. weight: math.unit(110, "lb"),
  19128. name: "Side",
  19129. image: {
  19130. source: "./media/characters/desta/side.svg",
  19131. extra: 2579 / 2491,
  19132. bottom: 0.053
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Micro",
  19139. height: math.unit(6, "inches")
  19140. },
  19141. {
  19142. name: "Normal",
  19143. height: math.unit(5 + 2 / 12, "feet"),
  19144. default: true
  19145. },
  19146. {
  19147. name: "Macro",
  19148. height: math.unit(62, "feet")
  19149. },
  19150. {
  19151. name: "Megamacro",
  19152. height: math.unit(1800, "feet")
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(10, "feet"),
  19161. weight: math.unit(700, "lb"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/storm-alystar/front.svg",
  19165. extra: 2112 / 1898,
  19166. bottom: 0.034
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Micro",
  19173. height: math.unit(3.5, "inches")
  19174. },
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(10, "feet"),
  19178. default: true
  19179. },
  19180. {
  19181. name: "Macro",
  19182. height: math.unit(400, "feet")
  19183. },
  19184. {
  19185. name: "Deific",
  19186. height: math.unit(60, "miles")
  19187. },
  19188. ]
  19189. ))
  19190. characterMakers.push(() => makeCharacter(
  19191. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19192. {
  19193. front: {
  19194. height: math.unit(2.35, "meters"),
  19195. weight: math.unit(119, "kg"),
  19196. name: "Front",
  19197. image: {
  19198. source: "./media/characters/ilia/front.svg",
  19199. extra: 1285 / 1255,
  19200. bottom: 0.06
  19201. }
  19202. },
  19203. },
  19204. [
  19205. {
  19206. name: "Normal",
  19207. height: math.unit(2.35, "meters")
  19208. },
  19209. {
  19210. name: "Macro",
  19211. height: math.unit(140, "meters"),
  19212. default: true
  19213. },
  19214. {
  19215. name: "Megamacro",
  19216. height: math.unit(100, "miles")
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19222. {
  19223. front: {
  19224. height: math.unit(6 + 5 / 12, "feet"),
  19225. weight: math.unit(190, "lb"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/kingdead/front.svg",
  19229. extra: 1228 / 1177
  19230. }
  19231. },
  19232. },
  19233. [
  19234. {
  19235. name: "Micro",
  19236. height: math.unit(7, "inches")
  19237. },
  19238. {
  19239. name: "Normal",
  19240. height: math.unit(6 + 5 / 12, "feet")
  19241. },
  19242. {
  19243. name: "Macro",
  19244. height: math.unit(150, "feet"),
  19245. default: true
  19246. },
  19247. {
  19248. name: "Megamacro",
  19249. height: math.unit(200, "miles")
  19250. },
  19251. ]
  19252. ))
  19253. characterMakers.push(() => makeCharacter(
  19254. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19255. {
  19256. front: {
  19257. height: math.unit(8, "feet"),
  19258. weight: math.unit(600, "lb"),
  19259. name: "Front",
  19260. image: {
  19261. source: "./media/characters/kyrehx/front.svg",
  19262. extra: 1195 / 1095,
  19263. bottom: 0.034
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Micro",
  19270. height: math.unit(2, "inches")
  19271. },
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(8, "feet"),
  19275. default: true
  19276. },
  19277. {
  19278. name: "Macro",
  19279. height: math.unit(255, "feet")
  19280. },
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19285. {
  19286. front: {
  19287. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19288. weight: math.unit(184, "lb"),
  19289. name: "Front",
  19290. image: {
  19291. source: "./media/characters/xang/front.svg",
  19292. extra: 845 / 755
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19300. default: true
  19301. },
  19302. {
  19303. name: "Macro",
  19304. height: math.unit(0.935 * 146, "feet")
  19305. },
  19306. {
  19307. name: "Megamacro",
  19308. height: math.unit(0.935 * 3, "miles")
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19314. {
  19315. frontDressed: {
  19316. height: math.unit(5 + 7 / 12, "feet"),
  19317. weight: math.unit(140, "lb"),
  19318. name: "Front (Dressed)",
  19319. image: {
  19320. source: "./media/characters/doc-weardno/front-dressed.svg",
  19321. extra: 263 / 234
  19322. }
  19323. },
  19324. backDressed: {
  19325. height: math.unit(5 + 7 / 12, "feet"),
  19326. weight: math.unit(140, "lb"),
  19327. name: "Back (Dressed)",
  19328. image: {
  19329. source: "./media/characters/doc-weardno/back-dressed.svg",
  19330. extra: 266 / 238
  19331. }
  19332. },
  19333. front: {
  19334. height: math.unit(5 + 7 / 12, "feet"),
  19335. weight: math.unit(140, "lb"),
  19336. name: "Front",
  19337. image: {
  19338. source: "./media/characters/doc-weardno/front.svg",
  19339. extra: 254 / 233
  19340. }
  19341. },
  19342. },
  19343. [
  19344. {
  19345. name: "Micro",
  19346. height: math.unit(3, "inches")
  19347. },
  19348. {
  19349. name: "Normal",
  19350. height: math.unit(5 + 7 / 12, "feet"),
  19351. default: true
  19352. },
  19353. {
  19354. name: "Macro",
  19355. height: math.unit(25, "feet")
  19356. },
  19357. {
  19358. name: "Megamacro",
  19359. height: math.unit(2, "miles")
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19365. {
  19366. front: {
  19367. height: math.unit(6 + 2 / 12, "feet"),
  19368. weight: math.unit(153, "lb"),
  19369. name: "Front",
  19370. image: {
  19371. source: "./media/characters/seth-whilst/front.svg",
  19372. bottom: 0.07
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Micro",
  19379. height: math.unit(5, "inches")
  19380. },
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(6 + 2 / 12, "feet"),
  19384. default: true
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19390. {
  19391. front: {
  19392. height: math.unit(3, "inches"),
  19393. weight: math.unit(8, "grams"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/pocket-jabari/front.svg",
  19397. extra: 1024 / 974,
  19398. bottom: 0.039
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Minimicro",
  19405. height: math.unit(8, "mm")
  19406. },
  19407. {
  19408. name: "Micro",
  19409. height: math.unit(3, "inches"),
  19410. default: true
  19411. },
  19412. {
  19413. name: "Normal",
  19414. height: math.unit(3, "feet")
  19415. },
  19416. ]
  19417. ))
  19418. characterMakers.push(() => makeCharacter(
  19419. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19420. {
  19421. frontDressed: {
  19422. height: math.unit(15, "feet"),
  19423. weight: math.unit(3280, "lb"),
  19424. name: "Front (Dressed)",
  19425. image: {
  19426. source: "./media/characters/sapphy/front-dressed.svg",
  19427. extra: 1951/1654,
  19428. bottom: 194/2145
  19429. },
  19430. form: "anthro",
  19431. default: true
  19432. },
  19433. backDressed: {
  19434. height: math.unit(15, "feet"),
  19435. weight: math.unit(3280, "lb"),
  19436. name: "Back (Dressed)",
  19437. image: {
  19438. source: "./media/characters/sapphy/back-dressed.svg",
  19439. extra: 2058/1918,
  19440. bottom: 125/2183
  19441. },
  19442. form: "anthro"
  19443. },
  19444. frontNude: {
  19445. height: math.unit(15, "feet"),
  19446. weight: math.unit(3280, "lb"),
  19447. name: "Front (Nude)",
  19448. image: {
  19449. source: "./media/characters/sapphy/front-nude.svg",
  19450. extra: 1951/1654,
  19451. bottom: 194/2145
  19452. },
  19453. form: "anthro"
  19454. },
  19455. backNude: {
  19456. height: math.unit(15, "feet"),
  19457. weight: math.unit(3280, "lb"),
  19458. name: "Back (Nude)",
  19459. image: {
  19460. source: "./media/characters/sapphy/back-nude.svg",
  19461. extra: 2058/1918,
  19462. bottom: 125/2183
  19463. },
  19464. form: "anthro"
  19465. },
  19466. full: {
  19467. height: math.unit(15, "feet"),
  19468. weight: math.unit(3280, "lb"),
  19469. name: "Full",
  19470. image: {
  19471. source: "./media/characters/sapphy/full.svg",
  19472. extra: 1396/1317,
  19473. bottom: 44/1440
  19474. },
  19475. form: "anthro"
  19476. },
  19477. dick: {
  19478. height: math.unit(3.8, "feet"),
  19479. name: "Dick",
  19480. image: {
  19481. source: "./media/characters/sapphy/dick.svg"
  19482. },
  19483. form: "anthro"
  19484. },
  19485. feral: {
  19486. height: math.unit(35, "feet"),
  19487. weight: math.unit(160, "tons"),
  19488. name: "Feral",
  19489. image: {
  19490. source: "./media/characters/sapphy/feral.svg",
  19491. extra: 1050/573,
  19492. bottom: 60/1110
  19493. },
  19494. form: "feral",
  19495. default: true
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Normal",
  19501. height: math.unit(15, "feet"),
  19502. form: "anthro"
  19503. },
  19504. {
  19505. name: "Casual Macro",
  19506. height: math.unit(120, "feet"),
  19507. form: "anthro"
  19508. },
  19509. {
  19510. name: "Macro",
  19511. height: math.unit(2150, "feet"),
  19512. default: true,
  19513. form: "anthro"
  19514. },
  19515. {
  19516. name: "Megamacro",
  19517. height: math.unit(8, "miles"),
  19518. form: "anthro"
  19519. },
  19520. {
  19521. name: "Galaxy Mom",
  19522. height: math.unit(6, "megalightyears"),
  19523. form: "anthro"
  19524. },
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(35, "feet"),
  19528. form: "feral",
  19529. default: true
  19530. },
  19531. {
  19532. name: "Macro",
  19533. height: math.unit(300, "feet"),
  19534. form: "feral"
  19535. },
  19536. {
  19537. name: "Galaxy Mom",
  19538. height: math.unit(10, "megalightyears"),
  19539. form: "feral"
  19540. },
  19541. ],
  19542. {
  19543. "anthro": {
  19544. name: "Anthro",
  19545. default: true
  19546. },
  19547. "feral": {
  19548. name: "Feral"
  19549. }
  19550. }
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19554. {
  19555. front: {
  19556. height: math.unit(6, "feet"),
  19557. weight: math.unit(170, "lb"),
  19558. name: "Front",
  19559. image: {
  19560. source: "./media/characters/kiro/front.svg",
  19561. extra: 1064 / 1012,
  19562. bottom: 0.052
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Micro",
  19569. height: math.unit(6, "inches")
  19570. },
  19571. {
  19572. name: "Normal",
  19573. height: math.unit(6, "feet"),
  19574. default: true
  19575. },
  19576. {
  19577. name: "Macro",
  19578. height: math.unit(72, "feet")
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19584. {
  19585. front: {
  19586. height: math.unit(5 + 9 / 12, "feet"),
  19587. weight: math.unit(175, "lb"),
  19588. name: "Front",
  19589. image: {
  19590. source: "./media/characters/irishfox/front.svg",
  19591. extra: 1912 / 1680,
  19592. bottom: 0.02
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Nano",
  19599. height: math.unit(1, "mm")
  19600. },
  19601. {
  19602. name: "Micro",
  19603. height: math.unit(2, "inches")
  19604. },
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(5 + 9 / 12, "feet"),
  19608. default: true
  19609. },
  19610. {
  19611. name: "Macro",
  19612. height: math.unit(45, "feet")
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19618. {
  19619. front: {
  19620. height: math.unit(6 + 1 / 12, "feet"),
  19621. weight: math.unit(75, "lb"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/aronai-sieyes/front.svg",
  19625. extra: 1532/1450,
  19626. bottom: 42/1574
  19627. }
  19628. },
  19629. side: {
  19630. height: math.unit(6 + 1 / 12, "feet"),
  19631. weight: math.unit(75, "lb"),
  19632. name: "Side",
  19633. image: {
  19634. source: "./media/characters/aronai-sieyes/side.svg",
  19635. extra: 1422/1365,
  19636. bottom: 148/1570
  19637. }
  19638. },
  19639. back: {
  19640. height: math.unit(6 + 1 / 12, "feet"),
  19641. weight: math.unit(75, "lb"),
  19642. name: "Back",
  19643. image: {
  19644. source: "./media/characters/aronai-sieyes/back.svg",
  19645. extra: 1526/1464,
  19646. bottom: 51/1577
  19647. }
  19648. },
  19649. dressed: {
  19650. height: math.unit(6 + 1 / 12, "feet"),
  19651. weight: math.unit(75, "lb"),
  19652. name: "Dressed",
  19653. image: {
  19654. source: "./media/characters/aronai-sieyes/dressed.svg",
  19655. extra: 1559/1483,
  19656. bottom: 39/1598
  19657. }
  19658. },
  19659. slit: {
  19660. height: math.unit(1.3, "feet"),
  19661. name: "Slit",
  19662. image: {
  19663. source: "./media/characters/aronai-sieyes/slit.svg"
  19664. }
  19665. },
  19666. slitSpread: {
  19667. height: math.unit(0.9, "feet"),
  19668. name: "Slit (Spread)",
  19669. image: {
  19670. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19671. }
  19672. },
  19673. rump: {
  19674. height: math.unit(1.3, "feet"),
  19675. name: "Rump",
  19676. image: {
  19677. source: "./media/characters/aronai-sieyes/rump.svg"
  19678. }
  19679. },
  19680. maw: {
  19681. height: math.unit(1.25, "feet"),
  19682. name: "Maw",
  19683. image: {
  19684. source: "./media/characters/aronai-sieyes/maw.svg"
  19685. }
  19686. },
  19687. feral: {
  19688. height: math.unit(18, "feet"),
  19689. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19690. name: "Feral",
  19691. image: {
  19692. source: "./media/characters/aronai-sieyes/feral.svg",
  19693. extra: 1530 / 1240,
  19694. bottom: 0.035
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Micro",
  19701. height: math.unit(2, "inches")
  19702. },
  19703. {
  19704. name: "Normal",
  19705. height: math.unit(6 + 1 / 12, "feet"),
  19706. default: true
  19707. }
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19712. {
  19713. front: {
  19714. height: math.unit(12, "feet"),
  19715. weight: math.unit(410, "kg"),
  19716. name: "Front",
  19717. image: {
  19718. source: "./media/characters/xuna/front.svg",
  19719. extra: 2184 / 1980
  19720. }
  19721. },
  19722. side: {
  19723. height: math.unit(12, "feet"),
  19724. weight: math.unit(410, "kg"),
  19725. name: "Side",
  19726. image: {
  19727. source: "./media/characters/xuna/side.svg",
  19728. extra: 2184 / 1980
  19729. }
  19730. },
  19731. back: {
  19732. height: math.unit(12, "feet"),
  19733. weight: math.unit(410, "kg"),
  19734. name: "Back",
  19735. image: {
  19736. source: "./media/characters/xuna/back.svg",
  19737. extra: 2184 / 1980
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Nano glow",
  19744. height: math.unit(10, "nm")
  19745. },
  19746. {
  19747. name: "Micro floof",
  19748. height: math.unit(0.3, "m")
  19749. },
  19750. {
  19751. name: "Huggable softy boi",
  19752. height: math.unit(3.6576, "m"),
  19753. default: true
  19754. },
  19755. {
  19756. name: "Admirable floof",
  19757. height: math.unit(80, "meters")
  19758. },
  19759. {
  19760. name: "Gentle macro",
  19761. height: math.unit(300, "meters")
  19762. },
  19763. {
  19764. name: "Very careful floof",
  19765. height: math.unit(3200, "meters")
  19766. },
  19767. {
  19768. name: "The mega floof",
  19769. height: math.unit(36000, "meters")
  19770. },
  19771. {
  19772. name: "Giga-fur-Wicker",
  19773. height: math.unit(4800000, "meters")
  19774. },
  19775. {
  19776. name: "Licky world",
  19777. height: math.unit(20000000, "meters")
  19778. },
  19779. {
  19780. name: "Floofy cyan sun",
  19781. height: math.unit(1500000000, "meters")
  19782. },
  19783. {
  19784. name: "Milky Wicker",
  19785. height: math.unit(1000000000000000000000, "meters")
  19786. },
  19787. {
  19788. name: "The observing Wicker",
  19789. height: math.unit(999999999999999999999999999, "meters")
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19795. {
  19796. front: {
  19797. height: math.unit(5 + 9 / 12, "feet"),
  19798. weight: math.unit(150, "lb"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/arokha-sieyes/front.svg",
  19802. extra: 1425 / 1284,
  19803. bottom: 0.05
  19804. }
  19805. },
  19806. },
  19807. [
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(5 + 9 / 12, "feet")
  19811. },
  19812. {
  19813. name: "Macro",
  19814. height: math.unit(30, "meters"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19821. {
  19822. front: {
  19823. height: math.unit(6, "feet"),
  19824. weight: math.unit(180, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/arokh-sieyes/front.svg",
  19828. extra: 1830 / 1769,
  19829. bottom: 0.01
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(6, "feet")
  19837. },
  19838. {
  19839. name: "Macro",
  19840. height: math.unit(30, "meters"),
  19841. default: true
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19847. {
  19848. side: {
  19849. height: math.unit(13 + 1 / 12, "feet"),
  19850. weight: math.unit(8.5, "tonnes"),
  19851. name: "Side",
  19852. image: {
  19853. source: "./media/characters/goldeneye/side.svg",
  19854. extra: 1182 / 778,
  19855. bottom: 0.067
  19856. }
  19857. },
  19858. paw: {
  19859. height: math.unit(3.4, "feet"),
  19860. name: "Paw",
  19861. image: {
  19862. source: "./media/characters/goldeneye/paw.svg"
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Normal",
  19869. height: math.unit(13 + 1 / 12, "feet"),
  19870. default: true
  19871. },
  19872. ]
  19873. ))
  19874. characterMakers.push(() => makeCharacter(
  19875. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19876. {
  19877. front: {
  19878. height: math.unit(6 + 1 / 12, "feet"),
  19879. weight: math.unit(210, "lb"),
  19880. name: "Front",
  19881. image: {
  19882. source: "./media/characters/leonardo-lycheborne/front.svg",
  19883. extra: 776/723,
  19884. bottom: 34/810
  19885. }
  19886. },
  19887. side: {
  19888. height: math.unit(6 + 1 / 12, "feet"),
  19889. weight: math.unit(210, "lb"),
  19890. name: "Side",
  19891. image: {
  19892. source: "./media/characters/leonardo-lycheborne/side.svg",
  19893. extra: 780/728,
  19894. bottom: 12/792
  19895. }
  19896. },
  19897. back: {
  19898. height: math.unit(6 + 1 / 12, "feet"),
  19899. weight: math.unit(210, "lb"),
  19900. name: "Back",
  19901. image: {
  19902. source: "./media/characters/leonardo-lycheborne/back.svg",
  19903. extra: 775/721,
  19904. bottom: 17/792
  19905. }
  19906. },
  19907. hand: {
  19908. height: math.unit(1.08, "feet"),
  19909. name: "Hand",
  19910. image: {
  19911. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19912. }
  19913. },
  19914. foot: {
  19915. height: math.unit(1.32, "feet"),
  19916. name: "Foot",
  19917. image: {
  19918. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19919. }
  19920. },
  19921. maw: {
  19922. height: math.unit(1, "feet"),
  19923. name: "Maw",
  19924. image: {
  19925. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19926. }
  19927. },
  19928. were: {
  19929. height: math.unit(20, "feet"),
  19930. weight: math.unit(7800, "lb"),
  19931. name: "Were",
  19932. image: {
  19933. source: "./media/characters/leonardo-lycheborne/were.svg",
  19934. extra: 1224/1165,
  19935. bottom: 72/1296
  19936. }
  19937. },
  19938. feral: {
  19939. height: math.unit(7.5, "feet"),
  19940. weight: math.unit(600, "lb"),
  19941. name: "Feral",
  19942. image: {
  19943. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19944. extra: 797/702,
  19945. bottom: 139/936
  19946. }
  19947. },
  19948. taur: {
  19949. height: math.unit(11, "feet"),
  19950. weight: math.unit(3300, "lb"),
  19951. name: "Taur",
  19952. image: {
  19953. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19954. extra: 1271/1197,
  19955. bottom: 47/1318
  19956. }
  19957. },
  19958. barghest: {
  19959. height: math.unit(11, "feet"),
  19960. weight: math.unit(1300, "lb"),
  19961. name: "Barghest",
  19962. image: {
  19963. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19964. extra: 1291/1204,
  19965. bottom: 37/1328
  19966. }
  19967. },
  19968. dick: {
  19969. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19970. name: "Dick",
  19971. image: {
  19972. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19973. }
  19974. },
  19975. dickWere: {
  19976. height: math.unit((20) / 3.8, "feet"),
  19977. name: "Dick (Were)",
  19978. image: {
  19979. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(6 + 1 / 12, "feet"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(10, "feet"),
  19996. weight: math.unit(350, "lb"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/jet/front.svg",
  20000. extra: 2050 / 1980,
  20001. bottom: 0.013
  20002. }
  20003. },
  20004. back: {
  20005. height: math.unit(10, "feet"),
  20006. weight: math.unit(350, "lb"),
  20007. name: "Back",
  20008. image: {
  20009. source: "./media/characters/jet/back.svg",
  20010. extra: 2050 / 1980,
  20011. bottom: 0.013
  20012. }
  20013. },
  20014. },
  20015. [
  20016. {
  20017. name: "Micro",
  20018. height: math.unit(6, "inches")
  20019. },
  20020. {
  20021. name: "Normal",
  20022. height: math.unit(10, "feet"),
  20023. default: true
  20024. },
  20025. {
  20026. name: "Macro",
  20027. height: math.unit(100, "feet")
  20028. },
  20029. ]
  20030. ))
  20031. characterMakers.push(() => makeCharacter(
  20032. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20033. {
  20034. front: {
  20035. height: math.unit(15, "feet"),
  20036. weight: math.unit(2800, "lb"),
  20037. name: "Front",
  20038. image: {
  20039. source: "./media/characters/tanarath/front.svg",
  20040. extra: 2392 / 2220,
  20041. bottom: 0.03
  20042. }
  20043. },
  20044. back: {
  20045. height: math.unit(15, "feet"),
  20046. weight: math.unit(2800, "lb"),
  20047. name: "Back",
  20048. image: {
  20049. source: "./media/characters/tanarath/back.svg",
  20050. extra: 2392 / 2220,
  20051. bottom: 0.03
  20052. }
  20053. },
  20054. },
  20055. [
  20056. {
  20057. name: "Normal",
  20058. height: math.unit(15, "feet"),
  20059. default: true
  20060. },
  20061. ]
  20062. ))
  20063. characterMakers.push(() => makeCharacter(
  20064. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20065. {
  20066. front: {
  20067. height: math.unit(7 + 1 / 12, "feet"),
  20068. weight: math.unit(175, "lb"),
  20069. name: "Front",
  20070. image: {
  20071. source: "./media/characters/patty-cattybatty/front.svg",
  20072. extra: 908 / 874,
  20073. bottom: 0.025
  20074. }
  20075. },
  20076. },
  20077. [
  20078. {
  20079. name: "Micro",
  20080. height: math.unit(1, "inch")
  20081. },
  20082. {
  20083. name: "Normal",
  20084. height: math.unit(7 + 1 / 12, "feet")
  20085. },
  20086. {
  20087. name: "Mini Macro",
  20088. height: math.unit(155, "feet")
  20089. },
  20090. {
  20091. name: "Macro",
  20092. height: math.unit(1077, "feet")
  20093. },
  20094. {
  20095. name: "Mega Macro",
  20096. height: math.unit(47650, "feet"),
  20097. default: true
  20098. },
  20099. {
  20100. name: "Giga Macro",
  20101. height: math.unit(440, "miles")
  20102. },
  20103. {
  20104. name: "Tera Macro",
  20105. height: math.unit(8700, "miles")
  20106. },
  20107. {
  20108. name: "Planetary Macro",
  20109. height: math.unit(32700, "miles")
  20110. },
  20111. {
  20112. name: "Solar Macro",
  20113. height: math.unit(550000, "miles")
  20114. },
  20115. {
  20116. name: "Celestial Macro",
  20117. height: math.unit(2.5, "AU")
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20123. {
  20124. front: {
  20125. height: math.unit(4 + 5 / 12, "feet"),
  20126. weight: math.unit(90, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/cappu/front.svg",
  20130. extra: 1247 / 1152,
  20131. bottom: 0.012
  20132. }
  20133. },
  20134. },
  20135. [
  20136. {
  20137. name: "Normal",
  20138. height: math.unit(4 + 5 / 12, "feet"),
  20139. default: true
  20140. },
  20141. ]
  20142. ))
  20143. characterMakers.push(() => makeCharacter(
  20144. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20145. {
  20146. frontDressed: {
  20147. height: math.unit(70, "cm"),
  20148. weight: math.unit(6, "kg"),
  20149. name: "Front (Dressed)",
  20150. image: {
  20151. source: "./media/characters/sebi/front-dressed.svg",
  20152. extra: 713.5 / 686.5,
  20153. bottom: 0.003
  20154. }
  20155. },
  20156. front: {
  20157. height: math.unit(70, "cm"),
  20158. weight: math.unit(5, "kg"),
  20159. name: "Front",
  20160. image: {
  20161. source: "./media/characters/sebi/front.svg",
  20162. extra: 713.5 / 686.5,
  20163. bottom: 0.003
  20164. }
  20165. }
  20166. },
  20167. [
  20168. {
  20169. name: "Normal",
  20170. height: math.unit(70, "cm"),
  20171. default: true
  20172. },
  20173. {
  20174. name: "Macro",
  20175. height: math.unit(8, "meters")
  20176. },
  20177. ]
  20178. ))
  20179. characterMakers.push(() => makeCharacter(
  20180. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20181. {
  20182. front: {
  20183. height: math.unit(6, "feet"),
  20184. weight: math.unit(150, "lb"),
  20185. name: "Front",
  20186. image: {
  20187. source: "./media/characters/typhek/front.svg",
  20188. extra: 1948 / 1929,
  20189. bottom: 0.025
  20190. }
  20191. },
  20192. side: {
  20193. height: math.unit(6, "feet"),
  20194. weight: math.unit(150, "lb"),
  20195. name: "Side",
  20196. image: {
  20197. source: "./media/characters/typhek/side.svg",
  20198. extra: 2034 / 2010,
  20199. bottom: 0.003
  20200. }
  20201. },
  20202. back: {
  20203. height: math.unit(6, "feet"),
  20204. weight: math.unit(150, "lb"),
  20205. name: "Back",
  20206. image: {
  20207. source: "./media/characters/typhek/back.svg",
  20208. extra: 2005 / 1978,
  20209. bottom: 0.004
  20210. }
  20211. },
  20212. palm: {
  20213. height: math.unit(1.2, "feet"),
  20214. name: "Palm",
  20215. image: {
  20216. source: "./media/characters/typhek/palm.svg"
  20217. }
  20218. },
  20219. fist: {
  20220. height: math.unit(1.1, "feet"),
  20221. name: "Fist",
  20222. image: {
  20223. source: "./media/characters/typhek/fist.svg"
  20224. }
  20225. },
  20226. foot: {
  20227. height: math.unit(1.57, "feet"),
  20228. name: "Foot",
  20229. image: {
  20230. source: "./media/characters/typhek/foot.svg"
  20231. }
  20232. },
  20233. sole: {
  20234. height: math.unit(2.05, "feet"),
  20235. name: "Sole",
  20236. image: {
  20237. source: "./media/characters/typhek/sole.svg"
  20238. }
  20239. },
  20240. },
  20241. [
  20242. {
  20243. name: "Macro",
  20244. height: math.unit(40, "stories"),
  20245. default: true
  20246. },
  20247. {
  20248. name: "Megamacro",
  20249. height: math.unit(1, "mile")
  20250. },
  20251. {
  20252. name: "Gigamacro",
  20253. height: math.unit(4000, "solarradii")
  20254. },
  20255. {
  20256. name: "Universal",
  20257. height: math.unit(1.1, "universes")
  20258. }
  20259. ]
  20260. ))
  20261. characterMakers.push(() => makeCharacter(
  20262. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20263. {
  20264. side: {
  20265. height: math.unit(5 + 7 / 12, "feet"),
  20266. weight: math.unit(150, "lb"),
  20267. name: "Side",
  20268. image: {
  20269. source: "./media/characters/kassy/side.svg",
  20270. extra: 1280 / 1225,
  20271. bottom: 0.002
  20272. }
  20273. },
  20274. front: {
  20275. height: math.unit(5 + 7 / 12, "feet"),
  20276. weight: math.unit(150, "lb"),
  20277. name: "Front",
  20278. image: {
  20279. source: "./media/characters/kassy/front.svg",
  20280. extra: 1280 / 1225,
  20281. bottom: 0.025
  20282. }
  20283. },
  20284. back: {
  20285. height: math.unit(5 + 7 / 12, "feet"),
  20286. weight: math.unit(150, "lb"),
  20287. name: "Back",
  20288. image: {
  20289. source: "./media/characters/kassy/back.svg",
  20290. extra: 1280 / 1225,
  20291. bottom: 0.002
  20292. }
  20293. },
  20294. foot: {
  20295. height: math.unit(1.266, "feet"),
  20296. name: "Foot",
  20297. image: {
  20298. source: "./media/characters/kassy/foot.svg"
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(5 + 7 / 12, "feet")
  20306. },
  20307. {
  20308. name: "Macro",
  20309. height: math.unit(137, "feet"),
  20310. default: true
  20311. },
  20312. {
  20313. name: "Megamacro",
  20314. height: math.unit(1, "mile")
  20315. },
  20316. ]
  20317. ))
  20318. characterMakers.push(() => makeCharacter(
  20319. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20320. {
  20321. front: {
  20322. height: math.unit(6 + 1 / 12, "feet"),
  20323. weight: math.unit(200, "lb"),
  20324. name: "Front",
  20325. image: {
  20326. source: "./media/characters/neil/front.svg",
  20327. extra: 1326 / 1250,
  20328. bottom: 0.023
  20329. }
  20330. },
  20331. },
  20332. [
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(6 + 1 / 12, "feet"),
  20336. default: true
  20337. },
  20338. {
  20339. name: "Macro",
  20340. height: math.unit(200, "feet")
  20341. },
  20342. ]
  20343. ))
  20344. characterMakers.push(() => makeCharacter(
  20345. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20346. {
  20347. front: {
  20348. height: math.unit(5 + 9 / 12, "feet"),
  20349. weight: math.unit(190, "lb"),
  20350. name: "Front",
  20351. image: {
  20352. source: "./media/characters/atticus/front.svg",
  20353. extra: 2934 / 2785,
  20354. bottom: 0.025
  20355. }
  20356. },
  20357. },
  20358. [
  20359. {
  20360. name: "Normal",
  20361. height: math.unit(5 + 9 / 12, "feet"),
  20362. default: true
  20363. },
  20364. {
  20365. name: "Macro",
  20366. height: math.unit(180, "feet")
  20367. },
  20368. ]
  20369. ))
  20370. characterMakers.push(() => makeCharacter(
  20371. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20372. {
  20373. side: {
  20374. height: math.unit(9, "feet"),
  20375. weight: math.unit(650, "lb"),
  20376. name: "Side",
  20377. image: {
  20378. source: "./media/characters/milo/side.svg",
  20379. extra: 2644 / 2310,
  20380. bottom: 0.032
  20381. }
  20382. },
  20383. },
  20384. [
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(9, "feet"),
  20388. default: true
  20389. },
  20390. {
  20391. name: "Macro",
  20392. height: math.unit(300, "feet")
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20398. {
  20399. side: {
  20400. height: math.unit(8, "meters"),
  20401. weight: math.unit(90000, "kg"),
  20402. name: "Side",
  20403. image: {
  20404. source: "./media/characters/ijzer/side.svg",
  20405. extra: 2756 / 1600,
  20406. bottom: 0.01
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Small",
  20413. height: math.unit(3, "meters")
  20414. },
  20415. {
  20416. name: "Normal",
  20417. height: math.unit(8, "meters"),
  20418. default: true
  20419. },
  20420. {
  20421. name: "Normal+",
  20422. height: math.unit(10, "meters")
  20423. },
  20424. {
  20425. name: "Bigger",
  20426. height: math.unit(24, "meters")
  20427. },
  20428. {
  20429. name: "Huge",
  20430. height: math.unit(80, "meters")
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20436. {
  20437. front: {
  20438. height: math.unit(6 + 2 / 12, "feet"),
  20439. weight: math.unit(153, "lb"),
  20440. name: "Front",
  20441. image: {
  20442. source: "./media/characters/luca-cervicum/front.svg",
  20443. extra: 370 / 327,
  20444. bottom: 0.015
  20445. }
  20446. },
  20447. back: {
  20448. height: math.unit(6 + 2 / 12, "feet"),
  20449. weight: math.unit(153, "lb"),
  20450. name: "Back",
  20451. image: {
  20452. source: "./media/characters/luca-cervicum/back.svg",
  20453. extra: 367 / 333,
  20454. bottom: 0.005
  20455. }
  20456. },
  20457. frontGear: {
  20458. height: math.unit(6 + 2 / 12, "feet"),
  20459. weight: math.unit(173, "lb"),
  20460. name: "Front (Gear)",
  20461. image: {
  20462. source: "./media/characters/luca-cervicum/front-gear.svg",
  20463. extra: 377 / 333,
  20464. bottom: 0.006
  20465. }
  20466. },
  20467. },
  20468. [
  20469. {
  20470. name: "Normal",
  20471. height: math.unit(6 + 2 / 12, "feet"),
  20472. default: true
  20473. },
  20474. ]
  20475. ))
  20476. characterMakers.push(() => makeCharacter(
  20477. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20478. {
  20479. front: {
  20480. height: math.unit(6 + 1 / 12, "feet"),
  20481. weight: math.unit(304, "lb"),
  20482. name: "Front",
  20483. image: {
  20484. source: "./media/characters/oliver/front.svg",
  20485. extra: 157 / 143,
  20486. bottom: 0.08
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Normal",
  20493. height: math.unit(6 + 1 / 12, "feet"),
  20494. default: true
  20495. },
  20496. ]
  20497. ))
  20498. characterMakers.push(() => makeCharacter(
  20499. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20500. {
  20501. front: {
  20502. height: math.unit(5 + 7 / 12, "feet"),
  20503. weight: math.unit(140, "lb"),
  20504. name: "Front",
  20505. image: {
  20506. source: "./media/characters/shane/front.svg",
  20507. extra: 304 / 289,
  20508. bottom: 0.005
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(5 + 7 / 12, "feet"),
  20516. default: true
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20522. {
  20523. front: {
  20524. height: math.unit(5 + 9 / 12, "feet"),
  20525. weight: math.unit(178, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/shin/front.svg",
  20529. extra: 159 / 151,
  20530. bottom: 0.015
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Normal",
  20537. height: math.unit(5 + 9 / 12, "feet"),
  20538. default: true
  20539. },
  20540. ]
  20541. ))
  20542. characterMakers.push(() => makeCharacter(
  20543. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20544. {
  20545. front: {
  20546. height: math.unit(5 + 10 / 12, "feet"),
  20547. weight: math.unit(168, "lb"),
  20548. name: "Front",
  20549. image: {
  20550. source: "./media/characters/xerxes/front.svg",
  20551. extra: 282 / 260,
  20552. bottom: 0.045
  20553. }
  20554. },
  20555. },
  20556. [
  20557. {
  20558. name: "Normal",
  20559. height: math.unit(5 + 10 / 12, "feet"),
  20560. default: true
  20561. },
  20562. ]
  20563. ))
  20564. characterMakers.push(() => makeCharacter(
  20565. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20566. {
  20567. front: {
  20568. height: math.unit(6 + 7 / 12, "feet"),
  20569. weight: math.unit(208, "lb"),
  20570. name: "Front",
  20571. image: {
  20572. source: "./media/characters/chaska/front.svg",
  20573. extra: 332 / 319,
  20574. bottom: 0.015
  20575. }
  20576. },
  20577. },
  20578. [
  20579. {
  20580. name: "Normal",
  20581. height: math.unit(6 + 7 / 12, "feet"),
  20582. default: true
  20583. },
  20584. ]
  20585. ))
  20586. characterMakers.push(() => makeCharacter(
  20587. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20588. {
  20589. front: {
  20590. height: math.unit(5 + 8 / 12, "feet"),
  20591. weight: math.unit(208, "lb"),
  20592. name: "Front",
  20593. image: {
  20594. source: "./media/characters/enuk/front.svg",
  20595. extra: 437 / 406,
  20596. bottom: 0.02
  20597. }
  20598. },
  20599. },
  20600. [
  20601. {
  20602. name: "Normal",
  20603. height: math.unit(5 + 8 / 12, "feet"),
  20604. default: true
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20610. {
  20611. front: {
  20612. height: math.unit(5 + 10 / 12, "feet"),
  20613. weight: math.unit(252, "lb"),
  20614. name: "Front",
  20615. image: {
  20616. source: "./media/characters/bruun/front.svg",
  20617. extra: 197 / 187,
  20618. bottom: 0.012
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Normal",
  20625. height: math.unit(5 + 10 / 12, "feet"),
  20626. default: true
  20627. },
  20628. ]
  20629. ))
  20630. characterMakers.push(() => makeCharacter(
  20631. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20632. {
  20633. front: {
  20634. height: math.unit(6 + 10 / 12, "feet"),
  20635. weight: math.unit(255, "lb"),
  20636. name: "Front",
  20637. image: {
  20638. source: "./media/characters/alexeev/front.svg",
  20639. extra: 213 / 200,
  20640. bottom: 0.05
  20641. }
  20642. },
  20643. },
  20644. [
  20645. {
  20646. name: "Normal",
  20647. height: math.unit(6 + 10 / 12, "feet"),
  20648. default: true
  20649. },
  20650. ]
  20651. ))
  20652. characterMakers.push(() => makeCharacter(
  20653. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20654. {
  20655. front: {
  20656. height: math.unit(2 + 8 / 12, "feet"),
  20657. weight: math.unit(22, "lb"),
  20658. name: "Front",
  20659. image: {
  20660. source: "./media/characters/evelyn/front.svg",
  20661. extra: 208 / 180
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(2 + 8 / 12, "feet"),
  20669. default: true
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20675. {
  20676. front: {
  20677. height: math.unit(5 + 9 / 12, "feet"),
  20678. weight: math.unit(139, "lb"),
  20679. name: "Front",
  20680. image: {
  20681. source: "./media/characters/inca/front.svg",
  20682. extra: 294 / 291,
  20683. bottom: 0.03
  20684. }
  20685. },
  20686. },
  20687. [
  20688. {
  20689. name: "Normal",
  20690. height: math.unit(5 + 9 / 12, "feet"),
  20691. default: true
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(6 + 3 / 12, "feet"),
  20700. weight: math.unit(185, "lb"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/mera/front.svg",
  20704. extra: 291 / 277,
  20705. bottom: 0.03
  20706. }
  20707. },
  20708. },
  20709. [
  20710. {
  20711. name: "Normal",
  20712. height: math.unit(6 + 3 / 12, "feet"),
  20713. default: true
  20714. },
  20715. ]
  20716. ))
  20717. characterMakers.push(() => makeCharacter(
  20718. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20719. {
  20720. front: {
  20721. height: math.unit(6 + 7 / 12, "feet"),
  20722. weight: math.unit(160, "lb"),
  20723. name: "Front",
  20724. image: {
  20725. source: "./media/characters/ceres/front.svg",
  20726. extra: 1023 / 950,
  20727. bottom: 0.027
  20728. }
  20729. },
  20730. back: {
  20731. height: math.unit(6 + 7 / 12, "feet"),
  20732. weight: math.unit(160, "lb"),
  20733. name: "Back",
  20734. image: {
  20735. source: "./media/characters/ceres/back.svg",
  20736. extra: 1023 / 950
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(6 + 7 / 12, "feet"),
  20744. default: true
  20745. },
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20750. {
  20751. front: {
  20752. height: math.unit(5 + 10 / 12, "feet"),
  20753. weight: math.unit(150, "lb"),
  20754. name: "Front",
  20755. image: {
  20756. source: "./media/characters/kris/front.svg",
  20757. extra: 885 / 803,
  20758. bottom: 0.03
  20759. }
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Normal",
  20765. height: math.unit(5 + 10 / 12, "feet"),
  20766. default: true
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20772. {
  20773. front: {
  20774. height: math.unit(7, "feet"),
  20775. weight: math.unit(120, "kg"),
  20776. name: "Front",
  20777. image: {
  20778. source: "./media/characters/taluthus/front.svg",
  20779. extra: 903 / 833,
  20780. bottom: 0.015
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Normal",
  20787. height: math.unit(7, "feet"),
  20788. default: true
  20789. },
  20790. {
  20791. name: "Macro",
  20792. height: math.unit(300, "feet")
  20793. },
  20794. ]
  20795. ))
  20796. characterMakers.push(() => makeCharacter(
  20797. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20798. {
  20799. front: {
  20800. height: math.unit(5 + 9 / 12, "feet"),
  20801. weight: math.unit(145, "lb"),
  20802. name: "Front",
  20803. image: {
  20804. source: "./media/characters/dawn/front.svg",
  20805. extra: 2094 / 2016,
  20806. bottom: 0.025
  20807. }
  20808. },
  20809. back: {
  20810. height: math.unit(5 + 9 / 12, "feet"),
  20811. weight: math.unit(160, "lb"),
  20812. name: "Back",
  20813. image: {
  20814. source: "./media/characters/dawn/back.svg",
  20815. extra: 2112 / 2080,
  20816. bottom: 0.005
  20817. }
  20818. },
  20819. },
  20820. [
  20821. {
  20822. name: "Normal",
  20823. height: math.unit(6 + 7 / 12, "feet"),
  20824. default: true
  20825. },
  20826. ]
  20827. ))
  20828. characterMakers.push(() => makeCharacter(
  20829. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20830. {
  20831. anthro: {
  20832. height: math.unit(8 + 3 / 12, "feet"),
  20833. weight: math.unit(450, "lb"),
  20834. name: "Anthro",
  20835. image: {
  20836. source: "./media/characters/arador/anthro.svg",
  20837. extra: 1835 / 1718,
  20838. bottom: 0.025
  20839. }
  20840. },
  20841. feral: {
  20842. height: math.unit(4, "feet"),
  20843. weight: math.unit(200, "lb"),
  20844. name: "Feral",
  20845. image: {
  20846. source: "./media/characters/arador/feral.svg",
  20847. extra: 1683 / 1514,
  20848. bottom: 0.07
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(8 + 3 / 12, "feet")
  20856. },
  20857. {
  20858. name: "Macro",
  20859. height: math.unit(82.5, "feet"),
  20860. default: true
  20861. },
  20862. ]
  20863. ))
  20864. characterMakers.push(() => makeCharacter(
  20865. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20866. {
  20867. front: {
  20868. height: math.unit(5 + 10 / 12, "feet"),
  20869. weight: math.unit(125, "lb"),
  20870. name: "Front",
  20871. image: {
  20872. source: "./media/characters/dharsi/front.svg",
  20873. extra: 716 / 630,
  20874. bottom: 0.035
  20875. }
  20876. },
  20877. },
  20878. [
  20879. {
  20880. name: "Nano",
  20881. height: math.unit(100, "nm")
  20882. },
  20883. {
  20884. name: "Micro",
  20885. height: math.unit(2, "inches")
  20886. },
  20887. {
  20888. name: "Normal",
  20889. height: math.unit(5 + 10 / 12, "feet"),
  20890. default: true
  20891. },
  20892. {
  20893. name: "Macro",
  20894. height: math.unit(1000, "feet")
  20895. },
  20896. {
  20897. name: "Megamacro",
  20898. height: math.unit(10, "miles")
  20899. },
  20900. {
  20901. name: "Gigamacro",
  20902. height: math.unit(3000, "miles")
  20903. },
  20904. {
  20905. name: "Teramacro",
  20906. height: math.unit(500000, "miles")
  20907. },
  20908. {
  20909. name: "Teramacro+",
  20910. height: math.unit(30, "galaxies")
  20911. },
  20912. ]
  20913. ))
  20914. characterMakers.push(() => makeCharacter(
  20915. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20916. {
  20917. front: {
  20918. height: math.unit(6, "feet"),
  20919. weight: math.unit(150, "lb"),
  20920. name: "Front",
  20921. image: {
  20922. source: "./media/characters/deathy/front.svg",
  20923. extra: 1552 / 1463,
  20924. bottom: 0.025
  20925. }
  20926. },
  20927. side: {
  20928. height: math.unit(6, "feet"),
  20929. weight: math.unit(150, "lb"),
  20930. name: "Side",
  20931. image: {
  20932. source: "./media/characters/deathy/side.svg",
  20933. extra: 1604 / 1455,
  20934. bottom: 0.025
  20935. }
  20936. },
  20937. back: {
  20938. height: math.unit(6, "feet"),
  20939. weight: math.unit(150, "lb"),
  20940. name: "Back",
  20941. image: {
  20942. source: "./media/characters/deathy/back.svg",
  20943. extra: 1580 / 1463,
  20944. bottom: 0.005
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Micro",
  20951. height: math.unit(5, "millimeters")
  20952. },
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(6 + 5 / 12, "feet"),
  20956. default: true
  20957. },
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20962. {
  20963. front: {
  20964. height: math.unit(16, "feet"),
  20965. weight: math.unit(4000, "lb"),
  20966. name: "Front",
  20967. image: {
  20968. source: "./media/characters/juniper/front.svg",
  20969. bottom: 0.04
  20970. }
  20971. },
  20972. },
  20973. [
  20974. {
  20975. name: "Normal",
  20976. height: math.unit(16, "feet"),
  20977. default: true
  20978. },
  20979. ]
  20980. ))
  20981. characterMakers.push(() => makeCharacter(
  20982. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20983. {
  20984. front: {
  20985. height: math.unit(6, "feet"),
  20986. weight: math.unit(150, "lb"),
  20987. name: "Front",
  20988. image: {
  20989. source: "./media/characters/hipster/front.svg",
  20990. extra: 1312 / 1209,
  20991. bottom: 0.025
  20992. }
  20993. },
  20994. back: {
  20995. height: math.unit(6, "feet"),
  20996. weight: math.unit(150, "lb"),
  20997. name: "Back",
  20998. image: {
  20999. source: "./media/characters/hipster/back.svg",
  21000. extra: 1281 / 1196,
  21001. bottom: 0.01
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Micro",
  21008. height: math.unit(1, "mm")
  21009. },
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(4, "inches"),
  21013. default: true
  21014. },
  21015. {
  21016. name: "Macro",
  21017. height: math.unit(500, "feet")
  21018. },
  21019. {
  21020. name: "Megamacro",
  21021. height: math.unit(1000, "miles")
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21027. {
  21028. front: {
  21029. height: math.unit(6, "feet"),
  21030. weight: math.unit(150, "lb"),
  21031. name: "Front",
  21032. image: {
  21033. source: "./media/characters/tendirmuldr/front.svg",
  21034. extra: 1878 / 1772,
  21035. bottom: 0.015
  21036. }
  21037. },
  21038. },
  21039. [
  21040. {
  21041. name: "Megamacro",
  21042. height: math.unit(1500, "miles"),
  21043. default: true
  21044. },
  21045. ]
  21046. ))
  21047. characterMakers.push(() => makeCharacter(
  21048. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21049. {
  21050. front: {
  21051. height: math.unit(14, "feet"),
  21052. weight: math.unit(12000, "lb"),
  21053. name: "Front",
  21054. image: {
  21055. source: "./media/characters/mort/front.svg",
  21056. extra: 365 / 318,
  21057. bottom: 0.01
  21058. }
  21059. },
  21060. side: {
  21061. height: math.unit(14, "feet"),
  21062. weight: math.unit(12000, "lb"),
  21063. name: "Side",
  21064. image: {
  21065. source: "./media/characters/mort/side.svg",
  21066. extra: 365 / 318,
  21067. bottom: 0.052
  21068. },
  21069. default: true
  21070. },
  21071. back: {
  21072. height: math.unit(14, "feet"),
  21073. weight: math.unit(12000, "lb"),
  21074. name: "Back",
  21075. image: {
  21076. source: "./media/characters/mort/back.svg",
  21077. extra: 371 / 332,
  21078. bottom: 0.18
  21079. }
  21080. },
  21081. },
  21082. [
  21083. {
  21084. name: "Normal",
  21085. height: math.unit(14, "feet"),
  21086. default: true
  21087. },
  21088. ]
  21089. ))
  21090. characterMakers.push(() => makeCharacter(
  21091. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21092. {
  21093. front: {
  21094. height: math.unit(8, "feet"),
  21095. weight: math.unit(1, "ton"),
  21096. name: "Front",
  21097. image: {
  21098. source: "./media/characters/lycoa/front.svg",
  21099. extra: 1836/1728,
  21100. bottom: 81/1917
  21101. }
  21102. },
  21103. back: {
  21104. height: math.unit(8, "feet"),
  21105. weight: math.unit(1, "ton"),
  21106. name: "Back",
  21107. image: {
  21108. source: "./media/characters/lycoa/back.svg",
  21109. extra: 1785/1720,
  21110. bottom: 91/1876
  21111. }
  21112. },
  21113. head: {
  21114. height: math.unit(1.6243, "feet"),
  21115. name: "Head",
  21116. image: {
  21117. source: "./media/characters/lycoa/head.svg",
  21118. extra: 1011/782,
  21119. bottom: 0/1011
  21120. }
  21121. },
  21122. tailmaw: {
  21123. height: math.unit(1.9, "feet"),
  21124. name: "Tailmaw",
  21125. image: {
  21126. source: "./media/characters/lycoa/tailmaw.svg"
  21127. }
  21128. },
  21129. tentacles: {
  21130. height: math.unit(2.1, "feet"),
  21131. name: "Tentacles",
  21132. image: {
  21133. source: "./media/characters/lycoa/tentacles.svg"
  21134. }
  21135. },
  21136. dick: {
  21137. height: math.unit(1.73, "feet"),
  21138. name: "Dick",
  21139. image: {
  21140. source: "./media/characters/lycoa/dick.svg"
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Normal",
  21147. height: math.unit(8, "feet"),
  21148. default: true
  21149. },
  21150. {
  21151. name: "Macro",
  21152. height: math.unit(30, "feet")
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21158. {
  21159. front: {
  21160. height: math.unit(4 + 2 / 12, "feet"),
  21161. weight: math.unit(70, "lb"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/naldara/front.svg",
  21165. extra: 1664/1387,
  21166. bottom: 81/1745
  21167. },
  21168. form: "anthro",
  21169. default: true
  21170. },
  21171. naga: {
  21172. height: math.unit(20, "feet"),
  21173. weight: math.unit(15000, "kg"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/naldara/naga.svg",
  21177. extra: 1590/1396,
  21178. bottom: 285/1875
  21179. },
  21180. form: "naga",
  21181. default: true
  21182. },
  21183. },
  21184. [
  21185. {
  21186. name: "Normal",
  21187. height: math.unit(4 + 2 / 12, "feet"),
  21188. form: "anthro",
  21189. default: true
  21190. },
  21191. {
  21192. name: "Normal",
  21193. height: math.unit(20, "feet"),
  21194. form: "naga",
  21195. default: true
  21196. },
  21197. ],
  21198. {
  21199. "anthro": {
  21200. name: "Anthro",
  21201. default: true
  21202. },
  21203. "naga": {
  21204. name: "Naga"
  21205. }
  21206. }
  21207. ))
  21208. characterMakers.push(() => makeCharacter(
  21209. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21210. {
  21211. front: {
  21212. height: math.unit(13 + 7 / 12, "feet"),
  21213. weight: math.unit(1500, "lb"),
  21214. name: "Front",
  21215. image: {
  21216. source: "./media/characters/briar/front.svg",
  21217. extra: 1223/1157,
  21218. bottom: 123/1346
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(13 + 7 / 12, "feet"),
  21226. default: true
  21227. },
  21228. ]
  21229. ))
  21230. characterMakers.push(() => makeCharacter(
  21231. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21232. {
  21233. side: {
  21234. height: math.unit(16, "feet"),
  21235. weight: math.unit(500, "lb"),
  21236. name: "Side",
  21237. image: {
  21238. source: "./media/characters/vanguard/side.svg",
  21239. extra: 1022/914,
  21240. bottom: 30/1052
  21241. }
  21242. },
  21243. sideAlt: {
  21244. height: math.unit(10, "feet"),
  21245. weight: math.unit(500, "lb"),
  21246. name: "Side (Alt)",
  21247. image: {
  21248. source: "./media/characters/vanguard/side-alt.svg",
  21249. extra: 502 / 425,
  21250. bottom: 0.087
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Normal",
  21257. height: math.unit(17.71, "feet"),
  21258. default: true
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21264. {
  21265. front: {
  21266. height: math.unit(7.5, "feet"),
  21267. weight: math.unit(2, "lb"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/artemis/work-safe-front.svg",
  21271. extra: 1192 / 1075,
  21272. bottom: 0.07
  21273. },
  21274. form: "work-safe",
  21275. default: true
  21276. },
  21277. frontNsfw: {
  21278. height: math.unit(7.5, "feet"),
  21279. weight: math.unit(2, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/artemis/calibrating-front.svg",
  21283. extra: 1192 / 1075,
  21284. bottom: 0.07
  21285. },
  21286. form: "calibrating",
  21287. default: true
  21288. },
  21289. frontNsfwer: {
  21290. height: math.unit(7.5, "feet"),
  21291. weight: math.unit(2, "lb"),
  21292. name: "Front",
  21293. image: {
  21294. source: "./media/characters/artemis/oversize-load-front.svg",
  21295. extra: 1192 / 1075,
  21296. bottom: 0.07
  21297. },
  21298. form: "oversize-load",
  21299. default: true
  21300. },
  21301. side: {
  21302. height: math.unit(7.5, "feet"),
  21303. weight: math.unit(2, "lb"),
  21304. name: "Side",
  21305. image: {
  21306. source: "./media/characters/artemis/work-safe-side.svg",
  21307. extra: 1192 / 1075,
  21308. bottom: 0.07
  21309. },
  21310. form: "work-safe"
  21311. },
  21312. sideNsfw: {
  21313. height: math.unit(7.5, "feet"),
  21314. weight: math.unit(2, "lb"),
  21315. name: "Side",
  21316. image: {
  21317. source: "./media/characters/artemis/calibrating-side.svg",
  21318. extra: 1192 / 1075,
  21319. bottom: 0.07
  21320. },
  21321. form: "calibrating"
  21322. },
  21323. sideNsfwer: {
  21324. height: math.unit(7.5, "feet"),
  21325. weight: math.unit(2, "lb"),
  21326. name: "Side",
  21327. image: {
  21328. source: "./media/characters/artemis/oversize-load-side.svg",
  21329. extra: 1192 / 1075,
  21330. bottom: 0.07
  21331. },
  21332. form: "oversize-load"
  21333. },
  21334. maw: {
  21335. height: math.unit(1.1, "feet"),
  21336. name: "Maw",
  21337. image: {
  21338. source: "./media/characters/artemis/maw.svg"
  21339. },
  21340. form: "work-safe"
  21341. },
  21342. stomach: {
  21343. height: math.unit(0.95, "feet"),
  21344. name: "Stomach",
  21345. image: {
  21346. source: "./media/characters/artemis/stomach.svg"
  21347. },
  21348. form: "work-safe"
  21349. },
  21350. dickCanine: {
  21351. height: math.unit(1, "feet"),
  21352. name: "Dick (Canine)",
  21353. image: {
  21354. source: "./media/characters/artemis/dick-canine.svg"
  21355. },
  21356. form: "calibrating"
  21357. },
  21358. dickEquine: {
  21359. height: math.unit(0.85, "feet"),
  21360. name: "Dick (Equine)",
  21361. image: {
  21362. source: "./media/characters/artemis/dick-equine.svg"
  21363. },
  21364. form: "calibrating"
  21365. },
  21366. dickExotic: {
  21367. height: math.unit(0.85, "feet"),
  21368. name: "Dick (Exotic)",
  21369. image: {
  21370. source: "./media/characters/artemis/dick-exotic.svg"
  21371. },
  21372. form: "calibrating"
  21373. },
  21374. dickCanineBigger: {
  21375. height: math.unit(1 * 1.33, "feet"),
  21376. name: "Dick (Canine)",
  21377. image: {
  21378. source: "./media/characters/artemis/dick-canine.svg"
  21379. },
  21380. form: "oversize-load"
  21381. },
  21382. dickEquineBigger: {
  21383. height: math.unit(0.85 * 1.33, "feet"),
  21384. name: "Dick (Equine)",
  21385. image: {
  21386. source: "./media/characters/artemis/dick-equine.svg"
  21387. },
  21388. form: "oversize-load"
  21389. },
  21390. dickExoticBigger: {
  21391. height: math.unit(0.85 * 1.33, "feet"),
  21392. name: "Dick (Exotic)",
  21393. image: {
  21394. source: "./media/characters/artemis/dick-exotic.svg"
  21395. },
  21396. form: "oversize-load"
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(7.5, "feet"),
  21403. form: "work-safe",
  21404. default: true
  21405. },
  21406. {
  21407. name: "Normal",
  21408. height: math.unit(7.5, "feet"),
  21409. form: "calibrating",
  21410. default: true
  21411. },
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(7.5, "feet"),
  21415. form: "oversize-load",
  21416. default: true
  21417. },
  21418. {
  21419. name: "Enlarged",
  21420. height: math.unit(12, "feet"),
  21421. form: "work-safe",
  21422. },
  21423. {
  21424. name: "Enlarged",
  21425. height: math.unit(12, "feet"),
  21426. form: "calibrating",
  21427. },
  21428. {
  21429. name: "Enlarged",
  21430. height: math.unit(12, "feet"),
  21431. form: "oversize-load",
  21432. },
  21433. ],
  21434. {
  21435. "work-safe": {
  21436. name: "Work-Safe",
  21437. default: true
  21438. },
  21439. "calibrating": {
  21440. name: "Calibrating"
  21441. },
  21442. "oversize-load": {
  21443. name: "Oversize Load"
  21444. }
  21445. }
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(5 + 3 / 12, "feet"),
  21452. weight: math.unit(160, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/kira/front.svg",
  21456. extra: 906 / 786,
  21457. bottom: 0.01
  21458. }
  21459. },
  21460. back: {
  21461. height: math.unit(5 + 3 / 12, "feet"),
  21462. weight: math.unit(160, "lb"),
  21463. name: "Back",
  21464. image: {
  21465. source: "./media/characters/kira/back.svg",
  21466. extra: 882 / 757,
  21467. bottom: 0.005
  21468. }
  21469. },
  21470. frontDressed: {
  21471. height: math.unit(5 + 3 / 12, "feet"),
  21472. weight: math.unit(160, "lb"),
  21473. name: "Front (Dressed)",
  21474. image: {
  21475. source: "./media/characters/kira/front-dressed.svg",
  21476. extra: 906 / 786,
  21477. bottom: 0.01
  21478. }
  21479. },
  21480. beans: {
  21481. height: math.unit(0.92, "feet"),
  21482. name: "Beans",
  21483. image: {
  21484. source: "./media/characters/kira/beans.svg"
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(5 + 3 / 12, "feet"),
  21492. default: true
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21498. {
  21499. front: {
  21500. height: math.unit(5 + 4 / 12, "feet"),
  21501. weight: math.unit(145, "lb"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/scramble/front.svg",
  21505. extra: 763 / 727,
  21506. bottom: 0.05
  21507. }
  21508. },
  21509. back: {
  21510. height: math.unit(5 + 4 / 12, "feet"),
  21511. weight: math.unit(145, "lb"),
  21512. name: "Back",
  21513. image: {
  21514. source: "./media/characters/scramble/back.svg",
  21515. extra: 826 / 737,
  21516. bottom: 0.002
  21517. }
  21518. },
  21519. },
  21520. [
  21521. {
  21522. name: "Normal",
  21523. height: math.unit(5 + 4 / 12, "feet"),
  21524. default: true
  21525. },
  21526. ]
  21527. ))
  21528. characterMakers.push(() => makeCharacter(
  21529. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21530. {
  21531. side: {
  21532. height: math.unit(6 + 2 / 12, "feet"),
  21533. weight: math.unit(190, "lb"),
  21534. name: "Side",
  21535. image: {
  21536. source: "./media/characters/biscuit/side.svg",
  21537. extra: 858 / 791,
  21538. bottom: 0.044
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(6 + 2 / 12, "feet"),
  21546. default: true
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21552. {
  21553. front: {
  21554. height: math.unit(5 + 2 / 12, "feet"),
  21555. weight: math.unit(120, "lb"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/poffin/front.svg",
  21559. extra: 786 / 680,
  21560. bottom: 0.005
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Normal",
  21567. height: math.unit(5 + 2 / 12, "feet"),
  21568. default: true
  21569. },
  21570. ]
  21571. ))
  21572. characterMakers.push(() => makeCharacter(
  21573. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21574. {
  21575. front: {
  21576. height: math.unit(6 + 3 / 12, "feet"),
  21577. weight: math.unit(519, "lb"),
  21578. name: "Front",
  21579. image: {
  21580. source: "./media/characters/dhari/front.svg",
  21581. extra: 1048 / 946,
  21582. bottom: 0.015
  21583. }
  21584. },
  21585. back: {
  21586. height: math.unit(6 + 3 / 12, "feet"),
  21587. weight: math.unit(519, "lb"),
  21588. name: "Back",
  21589. image: {
  21590. source: "./media/characters/dhari/back.svg",
  21591. extra: 1048 / 931,
  21592. bottom: 0.005
  21593. }
  21594. },
  21595. frontDressed: {
  21596. height: math.unit(6 + 3 / 12, "feet"),
  21597. weight: math.unit(519, "lb"),
  21598. name: "Front (Dressed)",
  21599. image: {
  21600. source: "./media/characters/dhari/front-dressed.svg",
  21601. extra: 1713 / 1546,
  21602. bottom: 0.02
  21603. }
  21604. },
  21605. backDressed: {
  21606. height: math.unit(6 + 3 / 12, "feet"),
  21607. weight: math.unit(519, "lb"),
  21608. name: "Back (Dressed)",
  21609. image: {
  21610. source: "./media/characters/dhari/back-dressed.svg",
  21611. extra: 1699 / 1537,
  21612. bottom: 0.01
  21613. }
  21614. },
  21615. maw: {
  21616. height: math.unit(0.95, "feet"),
  21617. name: "Maw",
  21618. image: {
  21619. source: "./media/characters/dhari/maw.svg"
  21620. }
  21621. },
  21622. wereFront: {
  21623. height: math.unit(12 + 8 / 12, "feet"),
  21624. weight: math.unit(4000, "lb"),
  21625. name: "Front (Were)",
  21626. image: {
  21627. source: "./media/characters/dhari/were-front.svg",
  21628. extra: 1065 / 969,
  21629. bottom: 0.015
  21630. }
  21631. },
  21632. wereBack: {
  21633. height: math.unit(12 + 8 / 12, "feet"),
  21634. weight: math.unit(4000, "lb"),
  21635. name: "Back (Were)",
  21636. image: {
  21637. source: "./media/characters/dhari/were-back.svg",
  21638. extra: 1065 / 969,
  21639. bottom: 0.012
  21640. }
  21641. },
  21642. wereMaw: {
  21643. height: math.unit(0.625, "meters"),
  21644. name: "Maw (Were)",
  21645. image: {
  21646. source: "./media/characters/dhari/were-maw.svg"
  21647. }
  21648. },
  21649. },
  21650. [
  21651. {
  21652. name: "Normal",
  21653. height: math.unit(6 + 3 / 12, "feet"),
  21654. default: true
  21655. },
  21656. ]
  21657. ))
  21658. characterMakers.push(() => makeCharacter(
  21659. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21660. {
  21661. anthro: {
  21662. height: math.unit(5 + 7 / 12, "feet"),
  21663. weight: math.unit(175, "lb"),
  21664. name: "Anthro",
  21665. image: {
  21666. source: "./media/characters/rena-dyne/anthro.svg",
  21667. extra: 1849 / 1785,
  21668. bottom: 0.005
  21669. }
  21670. },
  21671. taur: {
  21672. height: math.unit(15 + 6 / 12, "feet"),
  21673. weight: math.unit(8000, "lb"),
  21674. name: "Taur",
  21675. image: {
  21676. source: "./media/characters/rena-dyne/taur.svg",
  21677. extra: 2315 / 2234,
  21678. bottom: 0.033
  21679. }
  21680. },
  21681. },
  21682. [
  21683. {
  21684. name: "Normal",
  21685. height: math.unit(5 + 7 / 12, "feet"),
  21686. default: true
  21687. },
  21688. ]
  21689. ))
  21690. characterMakers.push(() => makeCharacter(
  21691. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21692. {
  21693. front: {
  21694. height: math.unit(8, "feet"),
  21695. weight: math.unit(600, "lb"),
  21696. name: "Front",
  21697. image: {
  21698. source: "./media/characters/weremeep/front.svg",
  21699. extra: 967 / 862,
  21700. bottom: 0.01
  21701. }
  21702. },
  21703. },
  21704. [
  21705. {
  21706. name: "Normal",
  21707. height: math.unit(8, "feet"),
  21708. default: true
  21709. },
  21710. {
  21711. name: "Lorg",
  21712. height: math.unit(12, "feet")
  21713. },
  21714. {
  21715. name: "Oh Lawd She Comin'",
  21716. height: math.unit(20, "feet")
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21722. {
  21723. front: {
  21724. height: math.unit(4, "feet"),
  21725. weight: math.unit(90, "lb"),
  21726. name: "Front",
  21727. image: {
  21728. source: "./media/characters/reza/front.svg",
  21729. extra: 1183 / 1111,
  21730. bottom: 0.017
  21731. }
  21732. },
  21733. back: {
  21734. height: math.unit(4, "feet"),
  21735. weight: math.unit(90, "lb"),
  21736. name: "Back",
  21737. image: {
  21738. source: "./media/characters/reza/back.svg",
  21739. extra: 1183 / 1111,
  21740. bottom: 0.01
  21741. }
  21742. },
  21743. drake: {
  21744. height: math.unit(30, "feet"),
  21745. weight: math.unit(246960, "lb"),
  21746. name: "Drake",
  21747. image: {
  21748. source: "./media/characters/reza/drake.svg",
  21749. extra: 2350 / 2024,
  21750. bottom: 60.7 / 2403
  21751. }
  21752. },
  21753. },
  21754. [
  21755. {
  21756. name: "Normal",
  21757. height: math.unit(4, "feet"),
  21758. default: true
  21759. },
  21760. ]
  21761. ))
  21762. characterMakers.push(() => makeCharacter(
  21763. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21764. {
  21765. side: {
  21766. height: math.unit(15, "feet"),
  21767. weight: math.unit(14, "tons"),
  21768. name: "Side",
  21769. image: {
  21770. source: "./media/characters/athea/side.svg",
  21771. extra: 960 / 540,
  21772. bottom: 0.003
  21773. }
  21774. },
  21775. sitting: {
  21776. height: math.unit(6 * 2.85, "feet"),
  21777. weight: math.unit(14, "tons"),
  21778. name: "Sitting",
  21779. image: {
  21780. source: "./media/characters/athea/sitting.svg",
  21781. extra: 621 / 581,
  21782. bottom: 0.075
  21783. }
  21784. },
  21785. maw: {
  21786. height: math.unit(7.59498031496063, "feet"),
  21787. name: "Maw",
  21788. image: {
  21789. source: "./media/characters/athea/maw.svg"
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Lap Cat",
  21796. height: math.unit(2.5, "feet")
  21797. },
  21798. {
  21799. name: "Minimacro",
  21800. height: math.unit(15, "feet"),
  21801. default: true
  21802. },
  21803. {
  21804. name: "Macro",
  21805. height: math.unit(120, "feet")
  21806. },
  21807. {
  21808. name: "Macro+",
  21809. height: math.unit(640, "feet")
  21810. },
  21811. {
  21812. name: "Colossus",
  21813. height: math.unit(2.2, "miles")
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(8 + 8 / 12, "feet"),
  21822. weight: math.unit(130, "kg"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/seroko/front.svg",
  21826. extra: 1385 / 1280,
  21827. bottom: 0.025
  21828. }
  21829. },
  21830. back: {
  21831. height: math.unit(8 + 8 / 12, "feet"),
  21832. weight: math.unit(130, "kg"),
  21833. name: "Back",
  21834. image: {
  21835. source: "./media/characters/seroko/back.svg",
  21836. extra: 1369 / 1238,
  21837. bottom: 0.018
  21838. }
  21839. },
  21840. frontDressed: {
  21841. height: math.unit(8 + 8 / 12, "feet"),
  21842. weight: math.unit(130, "kg"),
  21843. name: "Front (Dressed)",
  21844. image: {
  21845. source: "./media/characters/seroko/front-dressed.svg",
  21846. extra: 1366 / 1275,
  21847. bottom: 0.03
  21848. }
  21849. },
  21850. },
  21851. [
  21852. {
  21853. name: "Normal",
  21854. height: math.unit(8 + 8 / 12, "feet"),
  21855. default: true
  21856. },
  21857. ]
  21858. ))
  21859. characterMakers.push(() => makeCharacter(
  21860. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21861. {
  21862. front: {
  21863. height: math.unit(5.5, "feet"),
  21864. weight: math.unit(160, "lb"),
  21865. name: "Front",
  21866. image: {
  21867. source: "./media/characters/quatzi/front.svg",
  21868. extra: 2346 / 2242,
  21869. bottom: 0.015
  21870. }
  21871. },
  21872. },
  21873. [
  21874. {
  21875. name: "Normal",
  21876. height: math.unit(5.5, "feet"),
  21877. default: true
  21878. },
  21879. {
  21880. name: "Big",
  21881. height: math.unit(7.7, "feet")
  21882. },
  21883. ]
  21884. ))
  21885. characterMakers.push(() => makeCharacter(
  21886. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21887. {
  21888. front: {
  21889. height: math.unit(5 + 11 / 12, "feet"),
  21890. weight: math.unit(180, "lb"),
  21891. name: "Front",
  21892. image: {
  21893. source: "./media/characters/sen/front.svg",
  21894. extra: 1321 / 1254,
  21895. bottom: 0.015
  21896. }
  21897. },
  21898. side: {
  21899. height: math.unit(5 + 11 / 12, "feet"),
  21900. weight: math.unit(180, "lb"),
  21901. name: "Side",
  21902. image: {
  21903. source: "./media/characters/sen/side.svg",
  21904. extra: 1321 / 1254,
  21905. bottom: 0.007
  21906. }
  21907. },
  21908. back: {
  21909. height: math.unit(5 + 11 / 12, "feet"),
  21910. weight: math.unit(180, "lb"),
  21911. name: "Back",
  21912. image: {
  21913. source: "./media/characters/sen/back.svg",
  21914. extra: 1321 / 1254
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(5 + 11 / 12, "feet"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21928. {
  21929. front: {
  21930. height: math.unit(166.6, "cm"),
  21931. weight: math.unit(66.6, "kg"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/fruity/front.svg",
  21935. extra: 1510 / 1386,
  21936. bottom: 0.04
  21937. }
  21938. },
  21939. back: {
  21940. height: math.unit(166.6, "cm"),
  21941. weight: math.unit(66.6, "lb"),
  21942. name: "Back",
  21943. image: {
  21944. source: "./media/characters/fruity/back.svg",
  21945. extra: 1563 / 1435,
  21946. bottom: 0.005
  21947. }
  21948. },
  21949. },
  21950. [
  21951. {
  21952. name: "Normal",
  21953. height: math.unit(166.6, "cm"),
  21954. default: true
  21955. },
  21956. {
  21957. name: "Demonic",
  21958. height: math.unit(166.6, "feet")
  21959. },
  21960. ]
  21961. ))
  21962. characterMakers.push(() => makeCharacter(
  21963. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21964. {
  21965. side: {
  21966. height: math.unit(10, "feet"),
  21967. weight: math.unit(500, "lb"),
  21968. name: "Side",
  21969. image: {
  21970. source: "./media/characters/zost/side.svg",
  21971. extra: 2870/2533,
  21972. bottom: 252/3122
  21973. }
  21974. },
  21975. mawFront: {
  21976. height: math.unit(1.08, "meters"),
  21977. name: "Maw (Front)",
  21978. image: {
  21979. source: "./media/characters/zost/maw-front.svg"
  21980. }
  21981. },
  21982. mawSide: {
  21983. height: math.unit(2.66, "feet"),
  21984. name: "Maw (Side)",
  21985. image: {
  21986. source: "./media/characters/zost/maw-side.svg"
  21987. }
  21988. },
  21989. wingspan: {
  21990. height: math.unit(7.4, "feet"),
  21991. name: "Wingspan",
  21992. image: {
  21993. source: "./media/characters/zost/wingspan.svg"
  21994. }
  21995. },
  21996. },
  21997. [
  21998. {
  21999. name: "Normal",
  22000. height: math.unit(10, "feet"),
  22001. default: true
  22002. },
  22003. ]
  22004. ))
  22005. characterMakers.push(() => makeCharacter(
  22006. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22007. {
  22008. front: {
  22009. height: math.unit(5 + 4 / 12, "feet"),
  22010. weight: math.unit(120, "lb"),
  22011. name: "Front",
  22012. image: {
  22013. source: "./media/characters/luci/front.svg",
  22014. extra: 1985 / 1884,
  22015. bottom: 0.04
  22016. }
  22017. },
  22018. back: {
  22019. height: math.unit(5 + 4 / 12, "feet"),
  22020. weight: math.unit(120, "lb"),
  22021. name: "Back",
  22022. image: {
  22023. source: "./media/characters/luci/back.svg",
  22024. extra: 1892 / 1791,
  22025. bottom: 0.002
  22026. }
  22027. },
  22028. },
  22029. [
  22030. {
  22031. name: "Normal",
  22032. height: math.unit(5 + 4 / 12, "feet"),
  22033. default: true
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22039. {
  22040. front: {
  22041. height: math.unit(1500, "feet"),
  22042. weight: math.unit(3.8e6, "tons"),
  22043. name: "Front",
  22044. image: {
  22045. source: "./media/characters/2th/front.svg",
  22046. extra: 3489 / 3350,
  22047. bottom: 0.1
  22048. }
  22049. },
  22050. foot: {
  22051. height: math.unit(461, "feet"),
  22052. name: "Foot",
  22053. image: {
  22054. source: "./media/characters/2th/foot.svg"
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "\"Micro\"",
  22061. height: math.unit(15 + 7 / 12, "feet")
  22062. },
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(1500, "feet"),
  22066. default: true
  22067. },
  22068. {
  22069. name: "Macro",
  22070. height: math.unit(5000, "feet")
  22071. },
  22072. {
  22073. name: "Megamacro",
  22074. height: math.unit(15, "miles")
  22075. },
  22076. {
  22077. name: "Gigamacro",
  22078. height: math.unit(4000, "miles")
  22079. },
  22080. {
  22081. name: "Galactic",
  22082. height: math.unit(50, "AU")
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(5 + 6 / 12, "feet"),
  22091. weight: math.unit(220, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/amethyst/front.svg",
  22095. extra: 2078 / 2040,
  22096. bottom: 0.045
  22097. }
  22098. },
  22099. back: {
  22100. height: math.unit(5 + 6 / 12, "feet"),
  22101. weight: math.unit(220, "lb"),
  22102. name: "Back",
  22103. image: {
  22104. source: "./media/characters/amethyst/back.svg",
  22105. extra: 2021 / 1989,
  22106. bottom: 0.02
  22107. }
  22108. },
  22109. },
  22110. [
  22111. {
  22112. name: "Normal",
  22113. height: math.unit(5 + 6 / 12, "feet"),
  22114. default: true
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22120. {
  22121. front: {
  22122. height: math.unit(4 + 11 / 12, "feet"),
  22123. weight: math.unit(120, "lb"),
  22124. name: "Front",
  22125. image: {
  22126. source: "./media/characters/yumi-akiyama/front.svg",
  22127. extra: 1327 / 1235,
  22128. bottom: 0.02
  22129. }
  22130. },
  22131. back: {
  22132. height: math.unit(4 + 11 / 12, "feet"),
  22133. weight: math.unit(120, "lb"),
  22134. name: "Back",
  22135. image: {
  22136. source: "./media/characters/yumi-akiyama/back.svg",
  22137. extra: 1287 / 1245,
  22138. bottom: 0.002
  22139. }
  22140. },
  22141. },
  22142. [
  22143. {
  22144. name: "Galactic",
  22145. height: math.unit(50, "galaxies"),
  22146. default: true
  22147. },
  22148. {
  22149. name: "Universal",
  22150. height: math.unit(100, "universes")
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22156. {
  22157. front: {
  22158. height: math.unit(8, "feet"),
  22159. weight: math.unit(500, "lb"),
  22160. name: "Front",
  22161. image: {
  22162. source: "./media/characters/rifter-yrmori/front.svg",
  22163. extra: 1180 / 1125,
  22164. bottom: 0.02
  22165. }
  22166. },
  22167. back: {
  22168. height: math.unit(8, "feet"),
  22169. weight: math.unit(500, "lb"),
  22170. name: "Back",
  22171. image: {
  22172. source: "./media/characters/rifter-yrmori/back.svg",
  22173. extra: 1190 / 1145,
  22174. bottom: 0.001
  22175. }
  22176. },
  22177. wings: {
  22178. height: math.unit(7.75, "feet"),
  22179. weight: math.unit(500, "lb"),
  22180. name: "Wings",
  22181. image: {
  22182. source: "./media/characters/rifter-yrmori/wings.svg",
  22183. extra: 1357 / 1285
  22184. }
  22185. },
  22186. maw: {
  22187. height: math.unit(0.8, "feet"),
  22188. name: "Maw",
  22189. image: {
  22190. source: "./media/characters/rifter-yrmori/maw.svg"
  22191. }
  22192. },
  22193. mawfront: {
  22194. height: math.unit(1.45, "feet"),
  22195. name: "Maw (Front)",
  22196. image: {
  22197. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22198. }
  22199. },
  22200. },
  22201. [
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(8, "feet"),
  22205. default: true
  22206. },
  22207. {
  22208. name: "Macro",
  22209. height: math.unit(42, "meters")
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22215. {
  22216. were: {
  22217. height: math.unit(25 + 6 / 12, "feet"),
  22218. weight: math.unit(10000, "lb"),
  22219. name: "Were",
  22220. image: {
  22221. source: "./media/characters/tahajin/were.svg",
  22222. extra: 801 / 770,
  22223. bottom: 0.042
  22224. }
  22225. },
  22226. aquatic: {
  22227. height: math.unit(6 + 4 / 12, "feet"),
  22228. weight: math.unit(160, "lb"),
  22229. name: "Aquatic",
  22230. image: {
  22231. source: "./media/characters/tahajin/aquatic.svg",
  22232. extra: 572 / 542,
  22233. bottom: 0.04
  22234. }
  22235. },
  22236. chow: {
  22237. height: math.unit(8 + 11 / 12, "feet"),
  22238. weight: math.unit(450, "lb"),
  22239. name: "Chow",
  22240. image: {
  22241. source: "./media/characters/tahajin/chow.svg",
  22242. extra: 660 / 640,
  22243. bottom: 0.015
  22244. }
  22245. },
  22246. demiNaga: {
  22247. height: math.unit(6 + 8 / 12, "feet"),
  22248. weight: math.unit(300, "lb"),
  22249. name: "Demi Naga",
  22250. image: {
  22251. source: "./media/characters/tahajin/demi-naga.svg",
  22252. extra: 643 / 615,
  22253. bottom: 0.1
  22254. }
  22255. },
  22256. data: {
  22257. height: math.unit(5, "inches"),
  22258. weight: math.unit(0.1, "lb"),
  22259. name: "Data",
  22260. image: {
  22261. source: "./media/characters/tahajin/data.svg"
  22262. }
  22263. },
  22264. fluu: {
  22265. height: math.unit(5 + 7 / 12, "feet"),
  22266. weight: math.unit(140, "lb"),
  22267. name: "Fluu",
  22268. image: {
  22269. source: "./media/characters/tahajin/fluu.svg",
  22270. extra: 628 / 592,
  22271. bottom: 0.02
  22272. }
  22273. },
  22274. starWarrior: {
  22275. height: math.unit(4 + 5 / 12, "feet"),
  22276. weight: math.unit(50, "lb"),
  22277. name: "Star Warrior",
  22278. image: {
  22279. source: "./media/characters/tahajin/star-warrior.svg"
  22280. }
  22281. },
  22282. },
  22283. [
  22284. {
  22285. name: "Normal",
  22286. height: math.unit(25 + 6 / 12, "feet"),
  22287. default: true
  22288. },
  22289. ]
  22290. ))
  22291. characterMakers.push(() => makeCharacter(
  22292. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22293. {
  22294. front: {
  22295. height: math.unit(8, "feet"),
  22296. weight: math.unit(350, "lb"),
  22297. name: "Front",
  22298. image: {
  22299. source: "./media/characters/gabira/front.svg",
  22300. extra: 608 / 580,
  22301. bottom: 0.03
  22302. }
  22303. },
  22304. back: {
  22305. height: math.unit(8, "feet"),
  22306. weight: math.unit(350, "lb"),
  22307. name: "Back",
  22308. image: {
  22309. source: "./media/characters/gabira/back.svg",
  22310. extra: 608 / 580,
  22311. bottom: 0.03
  22312. }
  22313. },
  22314. },
  22315. [
  22316. {
  22317. name: "Normal",
  22318. height: math.unit(8, "feet"),
  22319. default: true
  22320. },
  22321. ]
  22322. ))
  22323. characterMakers.push(() => makeCharacter(
  22324. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22325. {
  22326. front: {
  22327. height: math.unit(5 + 3 / 12, "feet"),
  22328. weight: math.unit(137, "lb"),
  22329. name: "Front",
  22330. image: {
  22331. source: "./media/characters/sasha-katraine/front.svg",
  22332. extra: 1745/1694,
  22333. bottom: 37/1782
  22334. }
  22335. },
  22336. back: {
  22337. height: math.unit(5 + 3 / 12, "feet"),
  22338. weight: math.unit(137, "lb"),
  22339. name: "Back",
  22340. image: {
  22341. source: "./media/characters/sasha-katraine/back.svg",
  22342. extra: 1776/1699,
  22343. bottom: 26/1802
  22344. }
  22345. },
  22346. },
  22347. [
  22348. {
  22349. name: "Micro",
  22350. height: math.unit(5, "inches")
  22351. },
  22352. {
  22353. name: "Normal",
  22354. height: math.unit(5 + 3 / 12, "feet"),
  22355. default: true
  22356. },
  22357. ]
  22358. ))
  22359. characterMakers.push(() => makeCharacter(
  22360. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22361. {
  22362. side: {
  22363. height: math.unit(4, "inches"),
  22364. weight: math.unit(200, "grams"),
  22365. name: "Side",
  22366. image: {
  22367. source: "./media/characters/der/side.svg",
  22368. extra: 719 / 400,
  22369. bottom: 30.6 / 749.9187
  22370. }
  22371. },
  22372. },
  22373. [
  22374. {
  22375. name: "Micro",
  22376. height: math.unit(4, "inches"),
  22377. default: true
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22383. {
  22384. side: {
  22385. height: math.unit(30, "meters"),
  22386. weight: math.unit(700, "tonnes"),
  22387. name: "Side",
  22388. image: {
  22389. source: "./media/characters/fixerdragon/side.svg",
  22390. extra: (1293.0514 - 116.03) / 1106.86,
  22391. bottom: 116.03 / 1293.0514
  22392. }
  22393. },
  22394. },
  22395. [
  22396. {
  22397. name: "Planck",
  22398. height: math.unit(1.6e-35, "meters")
  22399. },
  22400. {
  22401. name: "Micro",
  22402. height: math.unit(0.4, "meters")
  22403. },
  22404. {
  22405. name: "Normal",
  22406. height: math.unit(30, "meters"),
  22407. default: true
  22408. },
  22409. {
  22410. name: "Megamacro",
  22411. height: math.unit(1.2, "megameters")
  22412. },
  22413. {
  22414. name: "Teramacro",
  22415. height: math.unit(130, "terameters")
  22416. },
  22417. {
  22418. name: "Yottamacro",
  22419. height: math.unit(6200, "yottameters")
  22420. },
  22421. ]
  22422. ));
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(8, "feet"),
  22428. weight: math.unit(250, "lb"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/kite/front.svg",
  22432. extra: 2796 / 2659,
  22433. bottom: 0.002
  22434. }
  22435. },
  22436. },
  22437. [
  22438. {
  22439. name: "Normal",
  22440. height: math.unit(8, "feet"),
  22441. default: true
  22442. },
  22443. {
  22444. name: "Macro",
  22445. height: math.unit(360, "feet")
  22446. },
  22447. {
  22448. name: "Megamacro",
  22449. height: math.unit(1500, "feet")
  22450. },
  22451. ]
  22452. ))
  22453. characterMakers.push(() => makeCharacter(
  22454. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22455. {
  22456. front: {
  22457. height: math.unit(5 + 11/12, "feet"),
  22458. weight: math.unit(170, "lb"),
  22459. name: "Front",
  22460. image: {
  22461. source: "./media/characters/poojawa-vynar/front.svg",
  22462. extra: 1735/1585,
  22463. bottom: 96/1831
  22464. }
  22465. },
  22466. back: {
  22467. height: math.unit(5 + 11/12, "feet"),
  22468. weight: math.unit(170, "lb"),
  22469. name: "Back",
  22470. image: {
  22471. source: "./media/characters/poojawa-vynar/back.svg",
  22472. extra: 1749/1607,
  22473. bottom: 28/1777
  22474. }
  22475. },
  22476. male: {
  22477. height: math.unit(5 + 11/12, "feet"),
  22478. weight: math.unit(170, "lb"),
  22479. name: "Male",
  22480. image: {
  22481. source: "./media/characters/poojawa-vynar/male.svg",
  22482. extra: 1855/1713,
  22483. bottom: 63/1918
  22484. }
  22485. },
  22486. taur: {
  22487. height: math.unit(5 + 11/12, "feet"),
  22488. weight: math.unit(170, "lb"),
  22489. name: "Taur",
  22490. image: {
  22491. source: "./media/characters/poojawa-vynar/taur.svg",
  22492. extra: 1151/1059,
  22493. bottom: 356/1507
  22494. }
  22495. },
  22496. frontDressed: {
  22497. height: math.unit(5 + 11/12, "feet"),
  22498. weight: math.unit(170, "lb"),
  22499. name: "Front (Dressed)",
  22500. image: {
  22501. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22502. extra: 1735/1585,
  22503. bottom: 96/1831
  22504. }
  22505. },
  22506. backDressed: {
  22507. height: math.unit(5 + 11/12, "feet"),
  22508. weight: math.unit(170, "lb"),
  22509. name: "Back (Dressed)",
  22510. image: {
  22511. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22512. extra: 1749/1607,
  22513. bottom: 28/1777
  22514. }
  22515. },
  22516. maleDressed: {
  22517. height: math.unit(5 + 11/12, "feet"),
  22518. weight: math.unit(170, "lb"),
  22519. name: "Male (Dressed)",
  22520. image: {
  22521. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22522. extra: 1855/1713,
  22523. bottom: 63/1918
  22524. }
  22525. },
  22526. taurDressed: {
  22527. height: math.unit(5 + 11/12, "feet"),
  22528. weight: math.unit(170, "lb"),
  22529. name: "Taur (Dressed)",
  22530. image: {
  22531. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22532. extra: 1151/1059,
  22533. bottom: 356/1507
  22534. }
  22535. },
  22536. maw: {
  22537. height: math.unit(1.46, "feet"),
  22538. name: "Maw",
  22539. image: {
  22540. source: "./media/characters/poojawa-vynar/maw.svg"
  22541. }
  22542. },
  22543. head: {
  22544. height: math.unit(2.34, "feet"),
  22545. name: "Head",
  22546. image: {
  22547. source: "./media/characters/poojawa-vynar/head.svg"
  22548. }
  22549. },
  22550. paw: {
  22551. height: math.unit(1.61, "feet"),
  22552. name: "Paw",
  22553. image: {
  22554. source: "./media/characters/poojawa-vynar/paw.svg"
  22555. }
  22556. },
  22557. pawToering: {
  22558. height: math.unit(1.72, "feet"),
  22559. name: "Paw (Toering)",
  22560. image: {
  22561. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22562. }
  22563. },
  22564. toering: {
  22565. height: math.unit(2.9, "inches"),
  22566. name: "Toering",
  22567. image: {
  22568. source: "./media/characters/poojawa-vynar/toering.svg"
  22569. }
  22570. },
  22571. shaft: {
  22572. height: math.unit(0.625, "feet"),
  22573. name: "Shaft",
  22574. image: {
  22575. source: "./media/characters/poojawa-vynar/shaft.svg"
  22576. }
  22577. },
  22578. spade: {
  22579. height: math.unit(0.42, "feet"),
  22580. name: "Spade",
  22581. image: {
  22582. source: "./media/characters/poojawa-vynar/spade.svg"
  22583. }
  22584. },
  22585. },
  22586. [
  22587. {
  22588. name: "Shortstack",
  22589. height: math.unit(4, "feet")
  22590. },
  22591. {
  22592. name: "Normal",
  22593. height: math.unit(5 + 11 / 12, "feet"),
  22594. default: true
  22595. },
  22596. {
  22597. name: "Tauric",
  22598. height: math.unit(4, "meters")
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(293, "meters"),
  22607. weight: math.unit(70400, "tons"),
  22608. name: "Front",
  22609. image: {
  22610. source: "./media/characters/violette/front.svg",
  22611. extra: 1227 / 1180,
  22612. bottom: 0.005
  22613. }
  22614. },
  22615. back: {
  22616. height: math.unit(293, "meters"),
  22617. weight: math.unit(70400, "tons"),
  22618. name: "Back",
  22619. image: {
  22620. source: "./media/characters/violette/back.svg",
  22621. extra: 1227 / 1180,
  22622. bottom: 0.005
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Macro",
  22629. height: math.unit(293, "meters"),
  22630. default: true
  22631. },
  22632. ]
  22633. ))
  22634. characterMakers.push(() => makeCharacter(
  22635. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22636. {
  22637. front: {
  22638. height: math.unit(1050, "feet"),
  22639. weight: math.unit(200000, "tons"),
  22640. name: "Front",
  22641. image: {
  22642. source: "./media/characters/alessandra/front.svg",
  22643. extra: 960 / 912,
  22644. bottom: 0.06
  22645. }
  22646. },
  22647. },
  22648. [
  22649. {
  22650. name: "Macro",
  22651. height: math.unit(1050, "feet")
  22652. },
  22653. {
  22654. name: "Macro+",
  22655. height: math.unit(900, "meters"),
  22656. default: true
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22662. {
  22663. front: {
  22664. height: math.unit(5, "feet"),
  22665. weight: math.unit(187, "lb"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/person/front.svg",
  22669. extra: 3087 / 2945,
  22670. bottom: 91 / 3181
  22671. }
  22672. },
  22673. },
  22674. [
  22675. {
  22676. name: "Micro",
  22677. height: math.unit(3, "inches")
  22678. },
  22679. {
  22680. name: "Normal",
  22681. height: math.unit(5, "feet"),
  22682. default: true
  22683. },
  22684. {
  22685. name: "Macro",
  22686. height: math.unit(90, "feet")
  22687. },
  22688. {
  22689. name: "Max Size",
  22690. height: math.unit(280, "feet")
  22691. },
  22692. ]
  22693. ))
  22694. characterMakers.push(() => makeCharacter(
  22695. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22696. {
  22697. front: {
  22698. height: math.unit(4.5, "meters"),
  22699. weight: math.unit(3200, "lb"),
  22700. name: "Front",
  22701. image: {
  22702. source: "./media/characters/ty/front.svg",
  22703. extra: 1038 / 960,
  22704. bottom: 31.156 / 1068
  22705. }
  22706. },
  22707. back: {
  22708. height: math.unit(4.5, "meters"),
  22709. weight: math.unit(3200, "lb"),
  22710. name: "Back",
  22711. image: {
  22712. source: "./media/characters/ty/back.svg",
  22713. extra: 1044 / 966,
  22714. bottom: 7.48 / 1049
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Normal",
  22721. height: math.unit(4.5, "meters"),
  22722. default: true
  22723. },
  22724. ]
  22725. ))
  22726. characterMakers.push(() => makeCharacter(
  22727. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22728. {
  22729. front: {
  22730. height: math.unit(5 + 4 / 12, "feet"),
  22731. weight: math.unit(115, "lb"),
  22732. name: "Front",
  22733. image: {
  22734. source: "./media/characters/rocky/front.svg",
  22735. extra: 1012 / 975,
  22736. bottom: 54 / 1066
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Normal",
  22743. height: math.unit(5 + 4 / 12, "feet"),
  22744. default: true
  22745. },
  22746. ]
  22747. ))
  22748. characterMakers.push(() => makeCharacter(
  22749. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22750. {
  22751. upright: {
  22752. height: math.unit(6, "meters"),
  22753. weight: math.unit(4000, "kg"),
  22754. name: "Upright",
  22755. image: {
  22756. source: "./media/characters/ruin/upright.svg",
  22757. extra: 668 / 661,
  22758. bottom: 42 / 799.8396
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Normal",
  22765. height: math.unit(6, "meters"),
  22766. default: true
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22772. {
  22773. front: {
  22774. height: math.unit(5, "feet"),
  22775. weight: math.unit(106, "lb"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/robin/front.svg",
  22779. extra: 862 / 799,
  22780. bottom: 42.4 / 914.8856
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(5, "feet"),
  22788. default: true
  22789. },
  22790. ]
  22791. ))
  22792. characterMakers.push(() => makeCharacter(
  22793. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22794. {
  22795. side: {
  22796. height: math.unit(3, "feet"),
  22797. weight: math.unit(225, "lb"),
  22798. name: "Side",
  22799. image: {
  22800. source: "./media/characters/saian/side.svg",
  22801. extra: 566 / 356,
  22802. bottom: 79.7 / 643
  22803. }
  22804. },
  22805. maw: {
  22806. height: math.unit(2.85, "feet"),
  22807. name: "Maw",
  22808. image: {
  22809. source: "./media/characters/saian/maw.svg"
  22810. }
  22811. },
  22812. },
  22813. [
  22814. {
  22815. name: "Normal",
  22816. height: math.unit(3, "feet"),
  22817. default: true
  22818. },
  22819. ]
  22820. ))
  22821. characterMakers.push(() => makeCharacter(
  22822. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22823. {
  22824. side: {
  22825. height: math.unit(8, "feet"),
  22826. weight: math.unit(300, "lb"),
  22827. name: "Side",
  22828. image: {
  22829. source: "./media/characters/equus-silvermane/side.svg",
  22830. extra: 2176 / 2050,
  22831. bottom: 65.7 / 2245
  22832. }
  22833. },
  22834. front: {
  22835. height: math.unit(8, "feet"),
  22836. weight: math.unit(300, "lb"),
  22837. name: "Front",
  22838. image: {
  22839. source: "./media/characters/equus-silvermane/front.svg",
  22840. extra: 4633 / 4400,
  22841. bottom: 71.3 / 4706.915
  22842. }
  22843. },
  22844. sideStepping: {
  22845. height: math.unit(8, "feet"),
  22846. weight: math.unit(300, "lb"),
  22847. name: "Side (Stepping)",
  22848. image: {
  22849. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22850. extra: 1968 / 1860,
  22851. bottom: 16.4 / 1989
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Normal",
  22858. height: math.unit(8, "feet")
  22859. },
  22860. {
  22861. name: "Minimacro",
  22862. height: math.unit(75, "feet"),
  22863. default: true
  22864. },
  22865. {
  22866. name: "Macro",
  22867. height: math.unit(150, "feet")
  22868. },
  22869. {
  22870. name: "Macro+",
  22871. height: math.unit(1000, "feet")
  22872. },
  22873. {
  22874. name: "Megamacro",
  22875. height: math.unit(1, "mile")
  22876. },
  22877. ]
  22878. ))
  22879. characterMakers.push(() => makeCharacter(
  22880. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22881. {
  22882. side: {
  22883. height: math.unit(20, "feet"),
  22884. weight: math.unit(30000, "kg"),
  22885. name: "Side",
  22886. image: {
  22887. source: "./media/characters/windar/side.svg",
  22888. extra: 1491 / 1248,
  22889. bottom: 82.56 / 1568
  22890. }
  22891. },
  22892. },
  22893. [
  22894. {
  22895. name: "Normal",
  22896. height: math.unit(20, "feet"),
  22897. default: true
  22898. },
  22899. ]
  22900. ))
  22901. characterMakers.push(() => makeCharacter(
  22902. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22903. {
  22904. side: {
  22905. height: math.unit(15.66, "feet"),
  22906. weight: math.unit(150, "lb"),
  22907. name: "Side",
  22908. image: {
  22909. source: "./media/characters/melody/side.svg",
  22910. extra: 1097 / 944,
  22911. bottom: 11.8 / 1109
  22912. }
  22913. },
  22914. sideOutfit: {
  22915. height: math.unit(15.66, "feet"),
  22916. weight: math.unit(150, "lb"),
  22917. name: "Side (Outfit)",
  22918. image: {
  22919. source: "./media/characters/melody/side-outfit.svg",
  22920. extra: 1097 / 944,
  22921. bottom: 11.8 / 1109
  22922. }
  22923. },
  22924. },
  22925. [
  22926. {
  22927. name: "Normal",
  22928. height: math.unit(15.66, "feet"),
  22929. default: true
  22930. },
  22931. ]
  22932. ))
  22933. characterMakers.push(() => makeCharacter(
  22934. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22935. {
  22936. front: {
  22937. height: math.unit(8, "feet"),
  22938. weight: math.unit(325, "lb"),
  22939. name: "Front",
  22940. image: {
  22941. source: "./media/characters/windera/front.svg",
  22942. extra: 3180 / 2845,
  22943. bottom: 178 / 3365
  22944. }
  22945. },
  22946. },
  22947. [
  22948. {
  22949. name: "Normal",
  22950. height: math.unit(8, "feet"),
  22951. default: true
  22952. },
  22953. ]
  22954. ))
  22955. characterMakers.push(() => makeCharacter(
  22956. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22957. {
  22958. front: {
  22959. height: math.unit(28.75, "feet"),
  22960. weight: math.unit(2000, "kg"),
  22961. name: "Front",
  22962. image: {
  22963. source: "./media/characters/sonear/front.svg",
  22964. extra: 1041.1 / 964.9,
  22965. bottom: 53.7 / 1096.6
  22966. }
  22967. },
  22968. },
  22969. [
  22970. {
  22971. name: "Normal",
  22972. height: math.unit(28.75, "feet"),
  22973. default: true
  22974. },
  22975. ]
  22976. ))
  22977. characterMakers.push(() => makeCharacter(
  22978. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22979. {
  22980. side: {
  22981. height: math.unit(25.5, "feet"),
  22982. weight: math.unit(23000, "kg"),
  22983. name: "Side",
  22984. image: {
  22985. source: "./media/characters/kanara/side.svg"
  22986. }
  22987. },
  22988. },
  22989. [
  22990. {
  22991. name: "Normal",
  22992. height: math.unit(25.5, "feet"),
  22993. default: true
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22999. {
  23000. side: {
  23001. height: math.unit(10, "feet"),
  23002. weight: math.unit(1000, "kg"),
  23003. name: "Side",
  23004. image: {
  23005. source: "./media/characters/ereus/side.svg",
  23006. extra: 1157 / 959,
  23007. bottom: 153 / 1312.5
  23008. }
  23009. },
  23010. },
  23011. [
  23012. {
  23013. name: "Normal",
  23014. height: math.unit(10, "feet"),
  23015. default: true
  23016. },
  23017. ]
  23018. ))
  23019. characterMakers.push(() => makeCharacter(
  23020. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23021. {
  23022. side: {
  23023. height: math.unit(4.5, "feet"),
  23024. weight: math.unit(500, "lb"),
  23025. name: "Side",
  23026. image: {
  23027. source: "./media/characters/e-ter/side.svg",
  23028. extra: 1550 / 1248,
  23029. bottom: 146 / 1694
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(4.5, "feet"),
  23037. default: true
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23043. {
  23044. side: {
  23045. height: math.unit(9.7, "feet"),
  23046. weight: math.unit(4000, "kg"),
  23047. name: "Side",
  23048. image: {
  23049. source: "./media/characters/yamie/side.svg"
  23050. }
  23051. },
  23052. },
  23053. [
  23054. {
  23055. name: "Normal",
  23056. height: math.unit(9.7, "feet"),
  23057. default: true
  23058. },
  23059. ]
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23063. {
  23064. front: {
  23065. height: math.unit(50, "feet"),
  23066. weight: math.unit(50000, "kg"),
  23067. name: "Front",
  23068. image: {
  23069. source: "./media/characters/anders/front.svg",
  23070. extra: 570 / 539,
  23071. bottom: 14.7 / 586.7
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Large",
  23078. height: math.unit(50, "feet")
  23079. },
  23080. {
  23081. name: "Macro",
  23082. height: math.unit(2000, "feet"),
  23083. default: true
  23084. },
  23085. {
  23086. name: "Megamacro",
  23087. height: math.unit(12, "miles")
  23088. },
  23089. ]
  23090. ))
  23091. characterMakers.push(() => makeCharacter(
  23092. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23093. {
  23094. front: {
  23095. height: math.unit(7 + 2 / 12, "feet"),
  23096. weight: math.unit(300, "lb"),
  23097. name: "Front",
  23098. image: {
  23099. source: "./media/characters/reban/front.svg",
  23100. extra: 1287/1212,
  23101. bottom: 148/1435
  23102. }
  23103. },
  23104. head: {
  23105. height: math.unit(1.95, "feet"),
  23106. name: "Head",
  23107. image: {
  23108. source: "./media/characters/reban/head.svg"
  23109. }
  23110. },
  23111. maw: {
  23112. height: math.unit(0.95, "feet"),
  23113. name: "Maw",
  23114. image: {
  23115. source: "./media/characters/reban/maw.svg"
  23116. }
  23117. },
  23118. foot: {
  23119. height: math.unit(1.65, "feet"),
  23120. name: "Foot",
  23121. image: {
  23122. source: "./media/characters/reban/foot.svg"
  23123. }
  23124. },
  23125. dick: {
  23126. height: math.unit(7 / 5, "feet"),
  23127. name: "Dick",
  23128. image: {
  23129. source: "./media/characters/reban/dick.svg"
  23130. }
  23131. },
  23132. },
  23133. [
  23134. {
  23135. name: "Natural Height",
  23136. height: math.unit(7 + 2 / 12, "feet")
  23137. },
  23138. {
  23139. name: "Macro",
  23140. height: math.unit(500, "feet"),
  23141. default: true
  23142. },
  23143. {
  23144. name: "Canon Height",
  23145. height: math.unit(50, "AU")
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23151. {
  23152. front: {
  23153. height: math.unit(6, "feet"),
  23154. weight: math.unit(150, "lb"),
  23155. name: "Front",
  23156. image: {
  23157. source: "./media/characters/terrance-keayes/front.svg",
  23158. extra: 1.005,
  23159. bottom: 151 / 1615
  23160. }
  23161. },
  23162. side: {
  23163. height: math.unit(6, "feet"),
  23164. weight: math.unit(150, "lb"),
  23165. name: "Side",
  23166. image: {
  23167. source: "./media/characters/terrance-keayes/side.svg",
  23168. extra: 1.005,
  23169. bottom: 129.4 / 1544
  23170. }
  23171. },
  23172. back: {
  23173. height: math.unit(6, "feet"),
  23174. weight: math.unit(150, "lb"),
  23175. name: "Back",
  23176. image: {
  23177. source: "./media/characters/terrance-keayes/back.svg",
  23178. extra: 1.005,
  23179. bottom: 58.4 / 1557.3
  23180. }
  23181. },
  23182. dick: {
  23183. height: math.unit(6 * 0.208, "feet"),
  23184. name: "Dick",
  23185. image: {
  23186. source: "./media/characters/terrance-keayes/dick.svg"
  23187. }
  23188. },
  23189. },
  23190. [
  23191. {
  23192. name: "Canon Height",
  23193. height: math.unit(35, "miles"),
  23194. default: true
  23195. },
  23196. ]
  23197. ))
  23198. characterMakers.push(() => makeCharacter(
  23199. { name: "Ofelia", species: ["gigantosaurus"], 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/ofelia/front.svg",
  23207. extra: 1130/1117,
  23208. bottom: 91/1221
  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/ofelia/back.svg",
  23217. extra: 1172/1159,
  23218. bottom: 28/1200
  23219. }
  23220. },
  23221. maw: {
  23222. height: math.unit(1, "feet"),
  23223. name: "Maw",
  23224. image: {
  23225. source: "./media/characters/ofelia/maw.svg"
  23226. }
  23227. },
  23228. foot: {
  23229. height: math.unit(1.949, "feet"),
  23230. name: "Foot",
  23231. image: {
  23232. source: "./media/characters/ofelia/foot.svg"
  23233. }
  23234. },
  23235. },
  23236. [
  23237. {
  23238. name: "Canon Height",
  23239. height: math.unit(2000, "miles"),
  23240. default: true
  23241. },
  23242. ]
  23243. ))
  23244. characterMakers.push(() => makeCharacter(
  23245. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23246. {
  23247. front: {
  23248. height: math.unit(6, "feet"),
  23249. weight: math.unit(150, "lb"),
  23250. name: "Front",
  23251. image: {
  23252. source: "./media/characters/samuel/front.svg",
  23253. extra: 265 / 258,
  23254. bottom: 2 / 266.1566
  23255. }
  23256. },
  23257. },
  23258. [
  23259. {
  23260. name: "Macro",
  23261. height: math.unit(100, "feet"),
  23262. default: true
  23263. },
  23264. {
  23265. name: "Full Size",
  23266. height: math.unit(1000, "miles")
  23267. },
  23268. ]
  23269. ))
  23270. characterMakers.push(() => makeCharacter(
  23271. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23272. {
  23273. front: {
  23274. height: math.unit(6, "feet"),
  23275. weight: math.unit(300, "lb"),
  23276. name: "Front",
  23277. image: {
  23278. source: "./media/characters/beishir-kiel/front.svg",
  23279. extra: 569 / 547,
  23280. bottom: 41.9 / 609
  23281. }
  23282. },
  23283. maw: {
  23284. height: math.unit(6 * 0.202, "feet"),
  23285. name: "Maw",
  23286. image: {
  23287. source: "./media/characters/beishir-kiel/maw.svg"
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Macro",
  23294. height: math.unit(300, "feet"),
  23295. default: true
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23301. {
  23302. front: {
  23303. height: math.unit(5 + 7/12, "feet"),
  23304. weight: math.unit(120, "lb"),
  23305. name: "Front",
  23306. image: {
  23307. source: "./media/characters/logan-grey/front.svg",
  23308. extra: 1836/1738,
  23309. bottom: 108/1944
  23310. }
  23311. },
  23312. back: {
  23313. height: math.unit(5 + 7/12, "feet"),
  23314. weight: math.unit(120, "lb"),
  23315. name: "Back",
  23316. image: {
  23317. source: "./media/characters/logan-grey/back.svg",
  23318. extra: 1880/1794,
  23319. bottom: 24/1904
  23320. }
  23321. },
  23322. frontSfw: {
  23323. height: math.unit(5 + 7/12, "feet"),
  23324. weight: math.unit(120, "lb"),
  23325. name: "Front (SFW)",
  23326. image: {
  23327. source: "./media/characters/logan-grey/front-sfw.svg",
  23328. extra: 1836/1738,
  23329. bottom: 108/1944
  23330. }
  23331. },
  23332. backSfw: {
  23333. height: math.unit(5 + 7/12, "feet"),
  23334. weight: math.unit(120, "lb"),
  23335. name: "Back (SFW)",
  23336. image: {
  23337. source: "./media/characters/logan-grey/back-sfw.svg",
  23338. extra: 1880/1794,
  23339. bottom: 24/1904
  23340. }
  23341. },
  23342. hands: {
  23343. height: math.unit(0.84, "feet"),
  23344. name: "Hands",
  23345. image: {
  23346. source: "./media/characters/logan-grey/hands.svg"
  23347. }
  23348. },
  23349. paws: {
  23350. height: math.unit(0.72, "feet"),
  23351. name: "Paws",
  23352. image: {
  23353. source: "./media/characters/logan-grey/paws.svg"
  23354. }
  23355. },
  23356. cock: {
  23357. height: math.unit(1.45, "feet"),
  23358. name: "Cock",
  23359. image: {
  23360. source: "./media/characters/logan-grey/cock.svg"
  23361. }
  23362. },
  23363. cockAlt: {
  23364. height: math.unit(1.437, "feet"),
  23365. name: "Cock (alt)",
  23366. image: {
  23367. source: "./media/characters/logan-grey/cock-alt.svg"
  23368. }
  23369. },
  23370. },
  23371. [
  23372. {
  23373. name: "Normal",
  23374. height: math.unit(5 + 8 / 12, "feet")
  23375. },
  23376. {
  23377. name: "The 500 Foot Femboy",
  23378. height: math.unit(500, "feet"),
  23379. default: true
  23380. },
  23381. {
  23382. name: "Megmacro",
  23383. height: math.unit(20, "miles")
  23384. },
  23385. ]
  23386. ))
  23387. characterMakers.push(() => makeCharacter(
  23388. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23389. {
  23390. front: {
  23391. height: math.unit(8 + 2 / 12, "feet"),
  23392. weight: math.unit(275, "lb"),
  23393. name: "Front",
  23394. image: {
  23395. source: "./media/characters/draganta/front.svg",
  23396. extra: 1177 / 1135,
  23397. bottom: 33.46 / 1212.1
  23398. }
  23399. },
  23400. },
  23401. [
  23402. {
  23403. name: "Normal",
  23404. height: math.unit(8 + 6 / 12, "feet"),
  23405. default: true
  23406. },
  23407. {
  23408. name: "Macro",
  23409. height: math.unit(150, "feet")
  23410. },
  23411. {
  23412. name: "Megamacro",
  23413. height: math.unit(1000, "miles")
  23414. },
  23415. ]
  23416. ))
  23417. characterMakers.push(() => makeCharacter(
  23418. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23419. {
  23420. front: {
  23421. height: math.unit(1.72, "m"),
  23422. weight: math.unit(80, "lb"),
  23423. name: "Front",
  23424. image: {
  23425. source: "./media/characters/voski/front.svg",
  23426. extra: 2076.22 / 2022.4,
  23427. bottom: 102.7 / 2177.3866
  23428. }
  23429. },
  23430. frontFlaccid: {
  23431. height: math.unit(1.72, "m"),
  23432. weight: math.unit(80, "lb"),
  23433. name: "Front (Flaccid)",
  23434. image: {
  23435. source: "./media/characters/voski/front-flaccid.svg",
  23436. extra: 2076.22 / 2022.4,
  23437. bottom: 102.7 / 2177.3866
  23438. }
  23439. },
  23440. frontErect: {
  23441. height: math.unit(1.72, "m"),
  23442. weight: math.unit(80, "lb"),
  23443. name: "Front (Erect)",
  23444. image: {
  23445. source: "./media/characters/voski/front-erect.svg",
  23446. extra: 2076.22 / 2022.4,
  23447. bottom: 102.7 / 2177.3866
  23448. }
  23449. },
  23450. back: {
  23451. height: math.unit(1.72, "m"),
  23452. weight: math.unit(80, "lb"),
  23453. name: "Back",
  23454. image: {
  23455. source: "./media/characters/voski/back.svg",
  23456. extra: 2104 / 2051,
  23457. bottom: 10.45 / 2113.63
  23458. }
  23459. },
  23460. },
  23461. [
  23462. {
  23463. name: "Normal",
  23464. height: math.unit(1.72, "m")
  23465. },
  23466. {
  23467. name: "Macro",
  23468. height: math.unit(55, "m"),
  23469. default: true
  23470. },
  23471. {
  23472. name: "Macro+",
  23473. height: math.unit(300, "m")
  23474. },
  23475. {
  23476. name: "Macro++",
  23477. height: math.unit(700, "m")
  23478. },
  23479. {
  23480. name: "Macro+++",
  23481. height: math.unit(4500, "m")
  23482. },
  23483. {
  23484. name: "Macro++++",
  23485. height: math.unit(45, "km")
  23486. },
  23487. {
  23488. name: "Macro+++++",
  23489. height: math.unit(1220, "km")
  23490. },
  23491. ]
  23492. ))
  23493. characterMakers.push(() => makeCharacter(
  23494. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23495. {
  23496. front: {
  23497. height: math.unit(2.3, "m"),
  23498. weight: math.unit(304, "kg"),
  23499. name: "Front",
  23500. image: {
  23501. source: "./media/characters/icowom-lee/front.svg",
  23502. extra: 985 / 955,
  23503. bottom: 25.4 / 1012
  23504. }
  23505. },
  23506. fronttentacles: {
  23507. height: math.unit(2.3, "m"),
  23508. weight: math.unit(304, "kg"),
  23509. name: "Front-tentacles",
  23510. image: {
  23511. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23512. extra: 985 / 955,
  23513. bottom: 25.4 / 1012
  23514. }
  23515. },
  23516. back: {
  23517. height: math.unit(2.3, "m"),
  23518. weight: math.unit(304, "kg"),
  23519. name: "Back",
  23520. image: {
  23521. source: "./media/characters/icowom-lee/back.svg",
  23522. extra: 975 / 954,
  23523. bottom: 9.5 / 985
  23524. }
  23525. },
  23526. backtentacles: {
  23527. height: math.unit(2.3, "m"),
  23528. weight: math.unit(304, "kg"),
  23529. name: "Back-tentacles",
  23530. image: {
  23531. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23532. extra: 975 / 954,
  23533. bottom: 9.5 / 985
  23534. }
  23535. },
  23536. frontDressed: {
  23537. height: math.unit(2.3, "m"),
  23538. weight: math.unit(304, "kg"),
  23539. name: "Front (Dressed)",
  23540. image: {
  23541. source: "./media/characters/icowom-lee/front-dressed.svg",
  23542. extra: 3076 / 2933,
  23543. bottom: 51.4 / 3125.1889
  23544. }
  23545. },
  23546. rump: {
  23547. height: math.unit(0.776, "meters"),
  23548. name: "Rump",
  23549. image: {
  23550. source: "./media/characters/icowom-lee/rump.svg"
  23551. }
  23552. },
  23553. genitals: {
  23554. height: math.unit(0.78, "meters"),
  23555. name: "Genitals",
  23556. image: {
  23557. source: "./media/characters/icowom-lee/genitals.svg"
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Normal",
  23564. height: math.unit(2.3, "meters"),
  23565. default: true
  23566. },
  23567. {
  23568. name: "Macro",
  23569. height: math.unit(94, "meters"),
  23570. default: true
  23571. },
  23572. ]
  23573. ))
  23574. characterMakers.push(() => makeCharacter(
  23575. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23576. {
  23577. front: {
  23578. height: math.unit(22, "meters"),
  23579. weight: math.unit(21000, "kg"),
  23580. name: "Front",
  23581. image: {
  23582. source: "./media/characters/shock-diamond/front.svg",
  23583. extra: 2204 / 2053,
  23584. bottom: 65 / 2239.47
  23585. }
  23586. },
  23587. frontNude: {
  23588. height: math.unit(22, "meters"),
  23589. weight: math.unit(21000, "kg"),
  23590. name: "Front (Nude)",
  23591. image: {
  23592. source: "./media/characters/shock-diamond/front-nude.svg",
  23593. extra: 2514 / 2285,
  23594. bottom: 13 / 2527.56
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Normal",
  23601. height: math.unit(3, "meters")
  23602. },
  23603. {
  23604. name: "Macro",
  23605. height: math.unit(22, "meters"),
  23606. default: true
  23607. },
  23608. ]
  23609. ))
  23610. characterMakers.push(() => makeCharacter(
  23611. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23612. {
  23613. front: {
  23614. height: math.unit(5 + 4 / 12, "feet"),
  23615. weight: math.unit(120, "lb"),
  23616. name: "Front",
  23617. image: {
  23618. source: "./media/characters/rory/front.svg",
  23619. extra: 1318/1241,
  23620. bottom: 42/1360
  23621. }
  23622. },
  23623. back: {
  23624. height: math.unit(5 + 4 / 12, "feet"),
  23625. weight: math.unit(120, "lb"),
  23626. name: "Back",
  23627. image: {
  23628. source: "./media/characters/rory/back.svg",
  23629. extra: 1318/1241,
  23630. bottom: 42/1360
  23631. }
  23632. },
  23633. butt: {
  23634. height: math.unit(1.74, "feet"),
  23635. name: "Butt",
  23636. image: {
  23637. source: "./media/characters/rory/butt.svg"
  23638. }
  23639. },
  23640. dick: {
  23641. height: math.unit(1.02, "feet"),
  23642. name: "Dick",
  23643. image: {
  23644. source: "./media/characters/rory/dick.svg"
  23645. }
  23646. },
  23647. paws: {
  23648. height: math.unit(1, "feet"),
  23649. name: "Paws",
  23650. image: {
  23651. source: "./media/characters/rory/paws.svg"
  23652. }
  23653. },
  23654. frontAlt: {
  23655. height: math.unit(5 + 4 / 12, "feet"),
  23656. weight: math.unit(120, "lb"),
  23657. name: "Front (Alt)",
  23658. image: {
  23659. source: "./media/characters/rory/front-alt.svg",
  23660. extra: 589 / 556,
  23661. bottom: 45.7 / 635.76
  23662. }
  23663. },
  23664. frontAltNude: {
  23665. height: math.unit(5 + 4 / 12, "feet"),
  23666. weight: math.unit(120, "lb"),
  23667. name: "Front (Alt, Nude)",
  23668. image: {
  23669. source: "./media/characters/rory/front-alt-nude.svg",
  23670. extra: 589 / 556,
  23671. bottom: 45.7 / 635.76
  23672. }
  23673. },
  23674. side: {
  23675. height: math.unit(5 + 4 / 12, "feet"),
  23676. weight: math.unit(120, "lb"),
  23677. name: "Side",
  23678. image: {
  23679. source: "./media/characters/rory/side.svg",
  23680. extra: 597 / 564,
  23681. bottom: 55 / 653
  23682. }
  23683. },
  23684. backAlt: {
  23685. height: math.unit(5 + 4 / 12, "feet"),
  23686. weight: math.unit(120, "lb"),
  23687. name: "Back (Alt)",
  23688. image: {
  23689. source: "./media/characters/rory/back-alt.svg",
  23690. extra: 620 / 585,
  23691. bottom: 8.86 / 630.43
  23692. }
  23693. },
  23694. dickAlt: {
  23695. height: math.unit(0.86, "feet"),
  23696. name: "Dick (Alt)",
  23697. image: {
  23698. source: "./media/characters/rory/dick-alt.svg"
  23699. }
  23700. },
  23701. },
  23702. [
  23703. {
  23704. name: "Normal",
  23705. height: math.unit(5 + 4 / 12, "feet"),
  23706. default: true
  23707. },
  23708. {
  23709. name: "Macro",
  23710. height: math.unit(100, "feet")
  23711. },
  23712. {
  23713. name: "Macro+",
  23714. height: math.unit(140, "feet")
  23715. },
  23716. {
  23717. name: "Macro++",
  23718. height: math.unit(300, "feet")
  23719. },
  23720. ]
  23721. ))
  23722. characterMakers.push(() => makeCharacter(
  23723. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23724. {
  23725. front: {
  23726. height: math.unit(5 + 9 / 12, "feet"),
  23727. weight: math.unit(190, "lb"),
  23728. name: "Front",
  23729. image: {
  23730. source: "./media/characters/sprisk/front.svg",
  23731. extra: 1225 / 1180,
  23732. bottom: 42.7 / 1266.4
  23733. }
  23734. },
  23735. frontNsfw: {
  23736. height: math.unit(5 + 9 / 12, "feet"),
  23737. weight: math.unit(190, "lb"),
  23738. name: "Front (NSFW)",
  23739. image: {
  23740. source: "./media/characters/sprisk/front-nsfw.svg",
  23741. extra: 1225 / 1180,
  23742. bottom: 42.7 / 1266.4
  23743. }
  23744. },
  23745. back: {
  23746. height: math.unit(5 + 9 / 12, "feet"),
  23747. weight: math.unit(190, "lb"),
  23748. name: "Back",
  23749. image: {
  23750. source: "./media/characters/sprisk/back.svg",
  23751. extra: 1247 / 1200,
  23752. bottom: 5.6 / 1253.04
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Tiny",
  23759. height: math.unit(2, "inches")
  23760. },
  23761. {
  23762. name: "Normal",
  23763. height: math.unit(5 + 9 / 12, "feet"),
  23764. default: true
  23765. },
  23766. {
  23767. name: "Mini Macro",
  23768. height: math.unit(18, "feet")
  23769. },
  23770. {
  23771. name: "Macro",
  23772. height: math.unit(100, "feet")
  23773. },
  23774. {
  23775. name: "MACRO",
  23776. height: math.unit(50, "miles")
  23777. },
  23778. {
  23779. name: "M A C R O",
  23780. height: math.unit(300, "miles")
  23781. },
  23782. ]
  23783. ))
  23784. characterMakers.push(() => makeCharacter(
  23785. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23786. {
  23787. side: {
  23788. height: math.unit(15.6, "meters"),
  23789. weight: math.unit(700000, "kg"),
  23790. name: "Side",
  23791. image: {
  23792. source: "./media/characters/bunsen/side.svg",
  23793. extra: 1644 / 358
  23794. }
  23795. },
  23796. foot: {
  23797. height: math.unit(1.611 * 1644 / 358, "meter"),
  23798. name: "Foot",
  23799. image: {
  23800. source: "./media/characters/bunsen/foot.svg"
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Small",
  23807. height: math.unit(10, "feet")
  23808. },
  23809. {
  23810. name: "Normal",
  23811. height: math.unit(15.6, "meters"),
  23812. default: true
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23818. {
  23819. front: {
  23820. height: math.unit(4 + 11 / 12, "feet"),
  23821. weight: math.unit(140, "lb"),
  23822. name: "Front",
  23823. image: {
  23824. source: "./media/characters/sesh/front.svg",
  23825. extra: 3420 / 3231,
  23826. bottom: 72 / 3949.5
  23827. }
  23828. },
  23829. },
  23830. [
  23831. {
  23832. name: "Normal",
  23833. height: math.unit(4 + 11 / 12, "feet")
  23834. },
  23835. {
  23836. name: "Grown",
  23837. height: math.unit(15, "feet"),
  23838. default: true
  23839. },
  23840. {
  23841. name: "Macro",
  23842. height: math.unit(1500, "feet")
  23843. },
  23844. {
  23845. name: "Megamacro",
  23846. height: math.unit(30, "miles")
  23847. },
  23848. {
  23849. name: "Continental",
  23850. height: math.unit(3000, "miles")
  23851. },
  23852. {
  23853. name: "Gravity Mass",
  23854. height: math.unit(300000, "miles")
  23855. },
  23856. {
  23857. name: "Planet Buster",
  23858. height: math.unit(30000000, "miles")
  23859. },
  23860. {
  23861. name: "Big",
  23862. height: math.unit(3000000000, "miles")
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23868. {
  23869. front: {
  23870. height: math.unit(9, "feet"),
  23871. weight: math.unit(350, "lb"),
  23872. name: "Front",
  23873. image: {
  23874. source: "./media/characters/pepper/front.svg",
  23875. extra: 1448 / 1312,
  23876. bottom: 9.4 / 1457.88
  23877. }
  23878. },
  23879. back: {
  23880. height: math.unit(9, "feet"),
  23881. weight: math.unit(350, "lb"),
  23882. name: "Back",
  23883. image: {
  23884. source: "./media/characters/pepper/back.svg",
  23885. extra: 1423 / 1300,
  23886. bottom: 4.6 / 1429
  23887. }
  23888. },
  23889. maw: {
  23890. height: math.unit(0.932, "feet"),
  23891. name: "Maw",
  23892. image: {
  23893. source: "./media/characters/pepper/maw.svg"
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Normal",
  23900. height: math.unit(9, "feet"),
  23901. default: true
  23902. },
  23903. ]
  23904. ))
  23905. characterMakers.push(() => makeCharacter(
  23906. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23907. {
  23908. front: {
  23909. height: math.unit(6, "feet"),
  23910. weight: math.unit(150, "lb"),
  23911. name: "Front",
  23912. image: {
  23913. source: "./media/characters/maelstrom/front.svg",
  23914. extra: 2100 / 1883,
  23915. bottom: 94 / 2196.7
  23916. }
  23917. },
  23918. },
  23919. [
  23920. {
  23921. name: "Less Kaiju",
  23922. height: math.unit(200, "feet")
  23923. },
  23924. {
  23925. name: "Kaiju",
  23926. height: math.unit(400, "feet"),
  23927. default: true
  23928. },
  23929. {
  23930. name: "Kaiju-er",
  23931. height: math.unit(600, "feet")
  23932. },
  23933. ]
  23934. ))
  23935. characterMakers.push(() => makeCharacter(
  23936. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23937. {
  23938. front: {
  23939. height: math.unit(6 + 5 / 12, "feet"),
  23940. weight: math.unit(180, "lb"),
  23941. name: "Front",
  23942. image: {
  23943. source: "./media/characters/lexir/front.svg",
  23944. extra: 180 / 172,
  23945. bottom: 12 / 192
  23946. }
  23947. },
  23948. back: {
  23949. height: math.unit(6 + 5 / 12, "feet"),
  23950. weight: math.unit(180, "lb"),
  23951. name: "Back",
  23952. image: {
  23953. source: "./media/characters/lexir/back.svg",
  23954. extra: 1273/1201,
  23955. bottom: 39/1312
  23956. }
  23957. },
  23958. },
  23959. [
  23960. {
  23961. name: "Very Smal",
  23962. height: math.unit(1, "nm")
  23963. },
  23964. {
  23965. name: "Normal",
  23966. height: math.unit(6 + 5 / 12, "feet"),
  23967. default: true
  23968. },
  23969. {
  23970. name: "Macro",
  23971. height: math.unit(1, "mile")
  23972. },
  23973. {
  23974. name: "Megamacro",
  23975. height: math.unit(50, "miles")
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23981. {
  23982. front: {
  23983. height: math.unit(1.5, "meters"),
  23984. weight: math.unit(100, "lb"),
  23985. name: "Front",
  23986. image: {
  23987. source: "./media/characters/maksio/front.svg",
  23988. extra: 1549 / 1531,
  23989. bottom: 123.7 / 1674.5429
  23990. }
  23991. },
  23992. back: {
  23993. height: math.unit(1.5, "meters"),
  23994. weight: math.unit(100, "lb"),
  23995. name: "Back",
  23996. image: {
  23997. source: "./media/characters/maksio/back.svg",
  23998. extra: 1541 / 1509,
  23999. bottom: 97 / 1639
  24000. }
  24001. },
  24002. hand: {
  24003. height: math.unit(0.621, "feet"),
  24004. name: "Hand",
  24005. image: {
  24006. source: "./media/characters/maksio/hand.svg"
  24007. }
  24008. },
  24009. foot: {
  24010. height: math.unit(1.611, "feet"),
  24011. name: "Foot",
  24012. image: {
  24013. source: "./media/characters/maksio/foot.svg"
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Shrunken",
  24020. height: math.unit(10, "cm")
  24021. },
  24022. {
  24023. name: "Normal",
  24024. height: math.unit(150, "cm"),
  24025. default: true
  24026. },
  24027. ]
  24028. ))
  24029. characterMakers.push(() => makeCharacter(
  24030. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24031. {
  24032. front: {
  24033. height: math.unit(100, "feet"),
  24034. name: "Front",
  24035. image: {
  24036. source: "./media/characters/erza-bear/front.svg",
  24037. extra: 2449 / 2390,
  24038. bottom: 46 / 2494
  24039. }
  24040. },
  24041. back: {
  24042. height: math.unit(100, "feet"),
  24043. name: "Back",
  24044. image: {
  24045. source: "./media/characters/erza-bear/back.svg",
  24046. extra: 2489 / 2430,
  24047. bottom: 85.4 / 2480
  24048. }
  24049. },
  24050. tail: {
  24051. height: math.unit(42, "feet"),
  24052. name: "Tail",
  24053. image: {
  24054. source: "./media/characters/erza-bear/tail.svg"
  24055. }
  24056. },
  24057. tongue: {
  24058. height: math.unit(8, "feet"),
  24059. name: "Tongue",
  24060. image: {
  24061. source: "./media/characters/erza-bear/tongue.svg"
  24062. }
  24063. },
  24064. dick: {
  24065. height: math.unit(10.5, "feet"),
  24066. name: "Dick",
  24067. image: {
  24068. source: "./media/characters/erza-bear/dick.svg"
  24069. }
  24070. },
  24071. dickVertical: {
  24072. height: math.unit(16.9, "feet"),
  24073. name: "Dick (Vertical)",
  24074. image: {
  24075. source: "./media/characters/erza-bear/dick-vertical.svg"
  24076. }
  24077. },
  24078. },
  24079. [
  24080. {
  24081. name: "Macro",
  24082. height: math.unit(100, "feet"),
  24083. default: true
  24084. },
  24085. ]
  24086. ))
  24087. characterMakers.push(() => makeCharacter(
  24088. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24089. {
  24090. front: {
  24091. height: math.unit(172, "cm"),
  24092. weight: math.unit(73, "kg"),
  24093. name: "Front",
  24094. image: {
  24095. source: "./media/characters/violet-flor/front.svg",
  24096. extra: 1530 / 1442,
  24097. bottom: 61.9 / 1588.8
  24098. }
  24099. },
  24100. back: {
  24101. height: math.unit(180, "cm"),
  24102. weight: math.unit(73, "kg"),
  24103. name: "Back",
  24104. image: {
  24105. source: "./media/characters/violet-flor/back.svg",
  24106. extra: 1692 / 1630,
  24107. bottom: 20 / 1712
  24108. }
  24109. },
  24110. },
  24111. [
  24112. {
  24113. name: "Normal",
  24114. height: math.unit(172, "cm"),
  24115. default: true
  24116. },
  24117. ]
  24118. ))
  24119. characterMakers.push(() => makeCharacter(
  24120. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24121. {
  24122. front: {
  24123. height: math.unit(6, "feet"),
  24124. weight: math.unit(220, "lb"),
  24125. name: "Front",
  24126. image: {
  24127. source: "./media/characters/lynn-rhea/front.svg",
  24128. extra: 310 / 273
  24129. }
  24130. },
  24131. back: {
  24132. height: math.unit(6, "feet"),
  24133. weight: math.unit(220, "lb"),
  24134. name: "Back",
  24135. image: {
  24136. source: "./media/characters/lynn-rhea/back.svg",
  24137. extra: 310 / 273
  24138. }
  24139. },
  24140. dicks: {
  24141. height: math.unit(0.9, "feet"),
  24142. name: "Dicks",
  24143. image: {
  24144. source: "./media/characters/lynn-rhea/dicks.svg"
  24145. }
  24146. },
  24147. slit: {
  24148. height: math.unit(0.4, "feet"),
  24149. name: "Slit",
  24150. image: {
  24151. source: "./media/characters/lynn-rhea/slit.svg"
  24152. }
  24153. },
  24154. },
  24155. [
  24156. {
  24157. name: "Micro",
  24158. height: math.unit(1, "inch")
  24159. },
  24160. {
  24161. name: "Macro",
  24162. height: math.unit(60, "feet"),
  24163. default: true
  24164. },
  24165. {
  24166. name: "Megamacro",
  24167. height: math.unit(2, "miles")
  24168. },
  24169. {
  24170. name: "Gigamacro",
  24171. height: math.unit(3, "earths")
  24172. },
  24173. {
  24174. name: "Galactic",
  24175. height: math.unit(0.8, "galaxies")
  24176. },
  24177. ]
  24178. ))
  24179. characterMakers.push(() => makeCharacter(
  24180. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24181. {
  24182. front: {
  24183. height: math.unit(1600, "feet"),
  24184. weight: math.unit(85758785169, "kg"),
  24185. name: "Front",
  24186. image: {
  24187. source: "./media/characters/valathos/front.svg",
  24188. extra: 1451 / 1339
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Macro",
  24195. height: math.unit(1600, "feet"),
  24196. default: true
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24202. {
  24203. front: {
  24204. height: math.unit(7 + 5 / 12, "feet"),
  24205. weight: math.unit(300, "lb"),
  24206. name: "Front",
  24207. image: {
  24208. source: "./media/characters/azula/front.svg",
  24209. extra: 3208 / 2880,
  24210. bottom: 80.2 / 3277
  24211. }
  24212. },
  24213. back: {
  24214. height: math.unit(7 + 5 / 12, "feet"),
  24215. weight: math.unit(300, "lb"),
  24216. name: "Back",
  24217. image: {
  24218. source: "./media/characters/azula/back.svg",
  24219. extra: 3169 / 2822,
  24220. bottom: 150.6 / 3321
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(7 + 5 / 12, "feet"),
  24228. default: true
  24229. },
  24230. {
  24231. name: "Big",
  24232. height: math.unit(20, "feet")
  24233. },
  24234. ]
  24235. ))
  24236. characterMakers.push(() => makeCharacter(
  24237. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24238. {
  24239. front: {
  24240. height: math.unit(5 + 1 / 12, "feet"),
  24241. weight: math.unit(110, "lb"),
  24242. name: "Front",
  24243. image: {
  24244. source: "./media/characters/rupert/front.svg",
  24245. extra: 1549 / 1495,
  24246. bottom: 54.2 / 1604.4
  24247. }
  24248. },
  24249. },
  24250. [
  24251. {
  24252. name: "Normal",
  24253. height: math.unit(5 + 1 / 12, "feet"),
  24254. default: true
  24255. },
  24256. ]
  24257. ))
  24258. characterMakers.push(() => makeCharacter(
  24259. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24260. {
  24261. front: {
  24262. height: math.unit(8 + 4 / 12, "feet"),
  24263. weight: math.unit(350, "lb"),
  24264. name: "Front",
  24265. image: {
  24266. source: "./media/characters/sheera-castellar/front.svg",
  24267. extra: 1957 / 1894,
  24268. bottom: 26.97 / 1975.017
  24269. }
  24270. },
  24271. side: {
  24272. height: math.unit(8 + 4 / 12, "feet"),
  24273. weight: math.unit(350, "lb"),
  24274. name: "Side",
  24275. image: {
  24276. source: "./media/characters/sheera-castellar/side.svg",
  24277. extra: 1957 / 1894
  24278. }
  24279. },
  24280. back: {
  24281. height: math.unit(8 + 4 / 12, "feet"),
  24282. weight: math.unit(350, "lb"),
  24283. name: "Back",
  24284. image: {
  24285. source: "./media/characters/sheera-castellar/back.svg",
  24286. extra: 1957 / 1894
  24287. }
  24288. },
  24289. angled: {
  24290. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24291. weight: math.unit(350, "lb"),
  24292. name: "Angled",
  24293. image: {
  24294. source: "./media/characters/sheera-castellar/angled.svg",
  24295. extra: 1807 / 1707,
  24296. bottom: 68 / 1875
  24297. }
  24298. },
  24299. genitals: {
  24300. height: math.unit(2.2, "feet"),
  24301. name: "Genitals",
  24302. image: {
  24303. source: "./media/characters/sheera-castellar/genitals.svg"
  24304. }
  24305. },
  24306. taur: {
  24307. height: math.unit(10 + 6/12, "feet"),
  24308. name: "Taur",
  24309. image: {
  24310. source: "./media/characters/sheera-castellar/taur.svg",
  24311. extra: 2017/1909,
  24312. bottom: 185/2202
  24313. }
  24314. },
  24315. },
  24316. [
  24317. {
  24318. name: "Normal",
  24319. height: math.unit(8 + 4 / 12, "feet")
  24320. },
  24321. {
  24322. name: "Macro",
  24323. height: math.unit(150, "feet"),
  24324. default: true
  24325. },
  24326. {
  24327. name: "Macro+",
  24328. height: math.unit(800, "feet")
  24329. },
  24330. ]
  24331. ))
  24332. characterMakers.push(() => makeCharacter(
  24333. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24334. {
  24335. front: {
  24336. height: math.unit(6, "feet"),
  24337. weight: math.unit(150, "lb"),
  24338. name: "Front",
  24339. image: {
  24340. source: "./media/characters/jaipur/front.svg",
  24341. extra: 3860 / 3731,
  24342. bottom: 287 / 4140
  24343. }
  24344. },
  24345. back: {
  24346. height: math.unit(6, "feet"),
  24347. weight: math.unit(150, "lb"),
  24348. name: "Back",
  24349. image: {
  24350. source: "./media/characters/jaipur/back.svg",
  24351. extra: 1637/1561,
  24352. bottom: 154/1791
  24353. }
  24354. },
  24355. },
  24356. [
  24357. {
  24358. name: "Normal",
  24359. height: math.unit(1.85, "meters"),
  24360. default: true
  24361. },
  24362. {
  24363. name: "Macro",
  24364. height: math.unit(150, "meters")
  24365. },
  24366. {
  24367. name: "Macro+",
  24368. height: math.unit(0.5, "miles")
  24369. },
  24370. {
  24371. name: "Macro++",
  24372. height: math.unit(2.5, "miles")
  24373. },
  24374. {
  24375. name: "Macro+++",
  24376. height: math.unit(12, "miles")
  24377. },
  24378. {
  24379. name: "Macro++++",
  24380. height: math.unit(120, "miles")
  24381. },
  24382. {
  24383. name: "Macro+++++",
  24384. height: math.unit(1200, "miles")
  24385. },
  24386. ]
  24387. ))
  24388. characterMakers.push(() => makeCharacter(
  24389. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24390. {
  24391. front: {
  24392. height: math.unit(6, "feet"),
  24393. weight: math.unit(150, "lb"),
  24394. name: "Front",
  24395. image: {
  24396. source: "./media/characters/sheila-wolf/front.svg",
  24397. extra: 1931 / 1808,
  24398. bottom: 29.5 / 1960
  24399. }
  24400. },
  24401. dick: {
  24402. height: math.unit(1.464, "feet"),
  24403. name: "Dick",
  24404. image: {
  24405. source: "./media/characters/sheila-wolf/dick.svg"
  24406. }
  24407. },
  24408. muzzle: {
  24409. height: math.unit(0.513, "feet"),
  24410. name: "Muzzle",
  24411. image: {
  24412. source: "./media/characters/sheila-wolf/muzzle.svg"
  24413. }
  24414. },
  24415. },
  24416. [
  24417. {
  24418. name: "Macro",
  24419. height: math.unit(70, "feet"),
  24420. default: true
  24421. },
  24422. ]
  24423. ))
  24424. characterMakers.push(() => makeCharacter(
  24425. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24426. {
  24427. front: {
  24428. height: math.unit(32, "meters"),
  24429. weight: math.unit(300000, "kg"),
  24430. name: "Front",
  24431. image: {
  24432. source: "./media/characters/almor/front.svg",
  24433. extra: 1408 / 1322,
  24434. bottom: 94.6 / 1506.5
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Macro",
  24441. height: math.unit(32, "meters"),
  24442. default: true
  24443. },
  24444. ]
  24445. ))
  24446. characterMakers.push(() => makeCharacter(
  24447. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24448. {
  24449. front: {
  24450. height: math.unit(7, "feet"),
  24451. weight: math.unit(200, "lb"),
  24452. name: "Front",
  24453. image: {
  24454. source: "./media/characters/silver/front.svg",
  24455. extra: 472.1 / 450.5,
  24456. bottom: 26.5 / 499.424
  24457. }
  24458. },
  24459. },
  24460. [
  24461. {
  24462. name: "Normal",
  24463. height: math.unit(7, "feet"),
  24464. default: true
  24465. },
  24466. {
  24467. name: "Macro",
  24468. height: math.unit(800, "feet")
  24469. },
  24470. {
  24471. name: "Megamacro",
  24472. height: math.unit(250, "miles")
  24473. },
  24474. ]
  24475. ))
  24476. characterMakers.push(() => makeCharacter(
  24477. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24478. {
  24479. front: {
  24480. height: math.unit(6, "feet"),
  24481. weight: math.unit(150, "lb"),
  24482. name: "Front",
  24483. image: {
  24484. source: "./media/characters/pliskin/front.svg",
  24485. extra: 1469 / 1359,
  24486. bottom: 70 / 1540
  24487. }
  24488. },
  24489. },
  24490. [
  24491. {
  24492. name: "Micro",
  24493. height: math.unit(3, "inches")
  24494. },
  24495. {
  24496. name: "Normal",
  24497. height: math.unit(5 + 11 / 12, "feet"),
  24498. default: true
  24499. },
  24500. {
  24501. name: "Macro",
  24502. height: math.unit(120, "feet")
  24503. },
  24504. ]
  24505. ))
  24506. characterMakers.push(() => makeCharacter(
  24507. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24508. {
  24509. front: {
  24510. height: math.unit(6, "feet"),
  24511. weight: math.unit(150, "lb"),
  24512. name: "Front",
  24513. image: {
  24514. source: "./media/characters/sammy/front.svg",
  24515. extra: 1193 / 1089,
  24516. bottom: 30.5 / 1226
  24517. }
  24518. },
  24519. },
  24520. [
  24521. {
  24522. name: "Macro",
  24523. height: math.unit(1700, "feet"),
  24524. default: true
  24525. },
  24526. {
  24527. name: "Examacro",
  24528. height: math.unit(2.5e9, "lightyears")
  24529. },
  24530. ]
  24531. ))
  24532. characterMakers.push(() => makeCharacter(
  24533. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24534. {
  24535. front: {
  24536. height: math.unit(21, "meters"),
  24537. weight: math.unit(12, "tonnes"),
  24538. name: "Front",
  24539. image: {
  24540. source: "./media/characters/kuru/front.svg",
  24541. extra: 4301 / 3785,
  24542. bottom: 371.3 / 4691
  24543. }
  24544. },
  24545. },
  24546. [
  24547. {
  24548. name: "Macro",
  24549. height: math.unit(21, "meters"),
  24550. default: true
  24551. },
  24552. ]
  24553. ))
  24554. characterMakers.push(() => makeCharacter(
  24555. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24556. {
  24557. front: {
  24558. height: math.unit(23, "meters"),
  24559. weight: math.unit(12.2, "tonnes"),
  24560. name: "Front",
  24561. image: {
  24562. source: "./media/characters/rakka/front.svg",
  24563. extra: 4670 / 4169,
  24564. bottom: 301 / 4968.7
  24565. }
  24566. },
  24567. },
  24568. [
  24569. {
  24570. name: "Macro",
  24571. height: math.unit(23, "meters"),
  24572. default: true
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24578. {
  24579. front: {
  24580. height: math.unit(6, "feet"),
  24581. weight: math.unit(150, "lb"),
  24582. name: "Front",
  24583. image: {
  24584. source: "./media/characters/rhys-feline/front.svg",
  24585. extra: 2488 / 2308,
  24586. bottom: 35.67 / 2519.19
  24587. }
  24588. },
  24589. },
  24590. [
  24591. {
  24592. name: "Really Small",
  24593. height: math.unit(1, "nm")
  24594. },
  24595. {
  24596. name: "Micro",
  24597. height: math.unit(4, "inches")
  24598. },
  24599. {
  24600. name: "Normal",
  24601. height: math.unit(4 + 10 / 12, "feet"),
  24602. default: true
  24603. },
  24604. {
  24605. name: "Macro",
  24606. height: math.unit(100, "feet")
  24607. },
  24608. {
  24609. name: "Megamacto",
  24610. height: math.unit(50, "miles")
  24611. },
  24612. ]
  24613. ))
  24614. characterMakers.push(() => makeCharacter(
  24615. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24616. {
  24617. side: {
  24618. height: math.unit(30, "feet"),
  24619. weight: math.unit(35000, "kg"),
  24620. name: "Side",
  24621. image: {
  24622. source: "./media/characters/alydar/side.svg",
  24623. extra: 234 / 222,
  24624. bottom: 6.5 / 241
  24625. }
  24626. },
  24627. front: {
  24628. height: math.unit(30, "feet"),
  24629. weight: math.unit(35000, "kg"),
  24630. name: "Front",
  24631. image: {
  24632. source: "./media/characters/alydar/front.svg",
  24633. extra: 223.37 / 210.2,
  24634. bottom: 22.3 / 246.76
  24635. }
  24636. },
  24637. top: {
  24638. height: math.unit(64.54, "feet"),
  24639. weight: math.unit(35000, "kg"),
  24640. name: "Top",
  24641. image: {
  24642. source: "./media/characters/alydar/top.svg"
  24643. }
  24644. },
  24645. anthro: {
  24646. height: math.unit(30, "feet"),
  24647. weight: math.unit(9000, "kg"),
  24648. name: "Anthro",
  24649. image: {
  24650. source: "./media/characters/alydar/anthro.svg",
  24651. extra: 432 / 421,
  24652. bottom: 7.18 / 440
  24653. }
  24654. },
  24655. maw: {
  24656. height: math.unit(11.693, "feet"),
  24657. name: "Maw",
  24658. image: {
  24659. source: "./media/characters/alydar/maw.svg"
  24660. }
  24661. },
  24662. head: {
  24663. height: math.unit(11.693, "feet"),
  24664. name: "Head",
  24665. image: {
  24666. source: "./media/characters/alydar/head.svg"
  24667. }
  24668. },
  24669. headAlt: {
  24670. height: math.unit(12.861, "feet"),
  24671. name: "Head (Alt)",
  24672. image: {
  24673. source: "./media/characters/alydar/head-alt.svg"
  24674. }
  24675. },
  24676. wing: {
  24677. height: math.unit(20.712, "feet"),
  24678. name: "Wing",
  24679. image: {
  24680. source: "./media/characters/alydar/wing.svg"
  24681. }
  24682. },
  24683. wingFeather: {
  24684. height: math.unit(9.662, "feet"),
  24685. name: "Wing Feather",
  24686. image: {
  24687. source: "./media/characters/alydar/wing-feather.svg"
  24688. }
  24689. },
  24690. countourFeather: {
  24691. height: math.unit(4.154, "feet"),
  24692. name: "Contour Feather",
  24693. image: {
  24694. source: "./media/characters/alydar/contour-feather.svg"
  24695. }
  24696. },
  24697. },
  24698. [
  24699. {
  24700. name: "Diplomatic",
  24701. height: math.unit(13, "feet"),
  24702. default: true
  24703. },
  24704. {
  24705. name: "Small",
  24706. height: math.unit(30, "feet")
  24707. },
  24708. {
  24709. name: "Normal",
  24710. height: math.unit(95, "feet"),
  24711. default: true
  24712. },
  24713. {
  24714. name: "Large",
  24715. height: math.unit(285, "feet")
  24716. },
  24717. {
  24718. name: "Incomprehensible",
  24719. height: math.unit(450, "megameters")
  24720. },
  24721. ]
  24722. ))
  24723. characterMakers.push(() => makeCharacter(
  24724. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24725. {
  24726. side: {
  24727. height: math.unit(11, "feet"),
  24728. weight: math.unit(1750, "kg"),
  24729. name: "Side",
  24730. image: {
  24731. source: "./media/characters/selicia/side.svg",
  24732. extra: 440 / 396,
  24733. bottom: 24.8 / 465.979
  24734. }
  24735. },
  24736. maw: {
  24737. height: math.unit(4.665, "feet"),
  24738. name: "Maw",
  24739. image: {
  24740. source: "./media/characters/selicia/maw.svg"
  24741. }
  24742. },
  24743. },
  24744. [
  24745. {
  24746. name: "Normal",
  24747. height: math.unit(11, "feet"),
  24748. default: true
  24749. },
  24750. ]
  24751. ))
  24752. characterMakers.push(() => makeCharacter(
  24753. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24754. {
  24755. side: {
  24756. height: math.unit(2 + 6 / 12, "feet"),
  24757. weight: math.unit(30, "lb"),
  24758. name: "Side",
  24759. image: {
  24760. source: "./media/characters/layla/side.svg",
  24761. extra: 244 / 188,
  24762. bottom: 18.2 / 262.1
  24763. }
  24764. },
  24765. back: {
  24766. height: math.unit(2 + 6 / 12, "feet"),
  24767. weight: math.unit(30, "lb"),
  24768. name: "Back",
  24769. image: {
  24770. source: "./media/characters/layla/back.svg",
  24771. extra: 308 / 241.5,
  24772. bottom: 8.9 / 316.8
  24773. }
  24774. },
  24775. cumming: {
  24776. height: math.unit(2 + 6 / 12, "feet"),
  24777. weight: math.unit(30, "lb"),
  24778. name: "Cumming",
  24779. image: {
  24780. source: "./media/characters/layla/cumming.svg",
  24781. extra: 342 / 279,
  24782. bottom: 595 / 938
  24783. }
  24784. },
  24785. dickFlaccid: {
  24786. height: math.unit(2.595, "feet"),
  24787. name: "Flaccid Genitals",
  24788. image: {
  24789. source: "./media/characters/layla/dick-flaccid.svg"
  24790. }
  24791. },
  24792. dickErect: {
  24793. height: math.unit(2.359, "feet"),
  24794. name: "Erect Genitals",
  24795. image: {
  24796. source: "./media/characters/layla/dick-erect.svg"
  24797. }
  24798. },
  24799. dragon: {
  24800. height: math.unit(40, "feet"),
  24801. name: "Dragon",
  24802. image: {
  24803. source: "./media/characters/layla/dragon.svg",
  24804. extra: 610/535,
  24805. bottom: 367/977
  24806. }
  24807. },
  24808. taur: {
  24809. height: math.unit(30, "feet"),
  24810. name: "Taur",
  24811. image: {
  24812. source: "./media/characters/layla/taur.svg",
  24813. extra: 1268/1199,
  24814. bottom: 112/1380
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Micro",
  24821. height: math.unit(1, "inch")
  24822. },
  24823. {
  24824. name: "Small",
  24825. height: math.unit(1, "foot")
  24826. },
  24827. {
  24828. name: "Normal",
  24829. height: math.unit(2 + 6 / 12, "feet"),
  24830. default: true
  24831. },
  24832. {
  24833. name: "Macro",
  24834. height: math.unit(200, "feet")
  24835. },
  24836. {
  24837. name: "Megamacro",
  24838. height: math.unit(1000, "miles")
  24839. },
  24840. {
  24841. name: "Planetary",
  24842. height: math.unit(8000, "miles")
  24843. },
  24844. {
  24845. name: "True Layla",
  24846. height: math.unit(200000 * 7, "multiverses")
  24847. },
  24848. ]
  24849. ))
  24850. characterMakers.push(() => makeCharacter(
  24851. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24852. {
  24853. back: {
  24854. height: math.unit(10.5, "feet"),
  24855. weight: math.unit(800, "lb"),
  24856. name: "Back",
  24857. image: {
  24858. source: "./media/characters/knox/back.svg",
  24859. extra: 1486 / 1089,
  24860. bottom: 107 / 1601.4
  24861. }
  24862. },
  24863. side: {
  24864. height: math.unit(10.5, "feet"),
  24865. weight: math.unit(800, "lb"),
  24866. name: "Side",
  24867. image: {
  24868. source: "./media/characters/knox/side.svg",
  24869. extra: 244 / 218,
  24870. bottom: 14 / 260
  24871. }
  24872. },
  24873. },
  24874. [
  24875. {
  24876. name: "Compact",
  24877. height: math.unit(10.5, "feet"),
  24878. default: true
  24879. },
  24880. {
  24881. name: "Dynamax",
  24882. height: math.unit(210, "feet")
  24883. },
  24884. {
  24885. name: "Full Macro",
  24886. height: math.unit(850, "feet")
  24887. },
  24888. ]
  24889. ))
  24890. characterMakers.push(() => makeCharacter(
  24891. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24892. {
  24893. front: {
  24894. height: math.unit(28, "feet"),
  24895. weight: math.unit(10500, "lb"),
  24896. name: "Front",
  24897. image: {
  24898. source: "./media/characters/kayda/front.svg",
  24899. extra: 1536 / 1428,
  24900. bottom: 68.7 / 1603
  24901. }
  24902. },
  24903. back: {
  24904. height: math.unit(28, "feet"),
  24905. weight: math.unit(10500, "lb"),
  24906. name: "Back",
  24907. image: {
  24908. source: "./media/characters/kayda/back.svg",
  24909. extra: 1557 / 1464,
  24910. bottom: 39.5 / 1597.49
  24911. }
  24912. },
  24913. dick: {
  24914. height: math.unit(3.858, "feet"),
  24915. name: "Dick",
  24916. image: {
  24917. source: "./media/characters/kayda/dick.svg"
  24918. }
  24919. },
  24920. },
  24921. [
  24922. {
  24923. name: "Macro",
  24924. height: math.unit(28, "feet"),
  24925. default: true
  24926. },
  24927. ]
  24928. ))
  24929. characterMakers.push(() => makeCharacter(
  24930. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24931. {
  24932. front: {
  24933. height: math.unit(10 + 11 / 12, "feet"),
  24934. weight: math.unit(1400, "lb"),
  24935. name: "Front",
  24936. image: {
  24937. source: "./media/characters/brian/front.svg",
  24938. extra: 737 / 692,
  24939. bottom: 55.4 / 785
  24940. }
  24941. },
  24942. },
  24943. [
  24944. {
  24945. name: "Normal",
  24946. height: math.unit(10 + 11 / 12, "feet"),
  24947. default: true
  24948. },
  24949. ]
  24950. ))
  24951. characterMakers.push(() => makeCharacter(
  24952. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24953. {
  24954. front: {
  24955. height: math.unit(5 + 8 / 12, "feet"),
  24956. weight: math.unit(140, "lb"),
  24957. name: "Front",
  24958. image: {
  24959. source: "./media/characters/khemri/front.svg",
  24960. extra: 4780 / 4059,
  24961. bottom: 80.1 / 4859.25
  24962. }
  24963. },
  24964. },
  24965. [
  24966. {
  24967. name: "Micro",
  24968. height: math.unit(6, "inches")
  24969. },
  24970. {
  24971. name: "Normal",
  24972. height: math.unit(5 + 8 / 12, "feet"),
  24973. default: true
  24974. },
  24975. ]
  24976. ))
  24977. characterMakers.push(() => makeCharacter(
  24978. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24979. {
  24980. front: {
  24981. height: math.unit(13, "feet"),
  24982. weight: math.unit(1700, "lb"),
  24983. name: "Front",
  24984. image: {
  24985. source: "./media/characters/felix-braveheart/front.svg",
  24986. extra: 1222 / 1157,
  24987. bottom: 53.2 / 1280
  24988. }
  24989. },
  24990. back: {
  24991. height: math.unit(13, "feet"),
  24992. weight: math.unit(1700, "lb"),
  24993. name: "Back",
  24994. image: {
  24995. source: "./media/characters/felix-braveheart/back.svg",
  24996. extra: 1277 / 1203,
  24997. bottom: 50.2 / 1327
  24998. }
  24999. },
  25000. feral: {
  25001. height: math.unit(6, "feet"),
  25002. weight: math.unit(400, "lb"),
  25003. name: "Feral",
  25004. image: {
  25005. source: "./media/characters/felix-braveheart/feral.svg",
  25006. extra: 682 / 625,
  25007. bottom: 6.9 / 688
  25008. }
  25009. },
  25010. },
  25011. [
  25012. {
  25013. name: "Normal",
  25014. height: math.unit(13, "feet"),
  25015. default: true
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25021. {
  25022. side: {
  25023. height: math.unit(5 + 11 / 12, "feet"),
  25024. weight: math.unit(1400, "lb"),
  25025. name: "Side",
  25026. image: {
  25027. source: "./media/characters/shadow-blade/side.svg",
  25028. extra: 1726 / 1267,
  25029. bottom: 58.4 / 1785
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Normal",
  25036. height: math.unit(5 + 11 / 12, "feet"),
  25037. default: true
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25043. {
  25044. front: {
  25045. height: math.unit(1 + 6 / 12, "feet"),
  25046. weight: math.unit(25, "lb"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/karla-halldor/front.svg",
  25050. extra: 1459 / 1383,
  25051. bottom: 12 / 1472
  25052. }
  25053. },
  25054. },
  25055. [
  25056. {
  25057. name: "Normal",
  25058. height: math.unit(1 + 6 / 12, "feet"),
  25059. default: true
  25060. },
  25061. ]
  25062. ))
  25063. characterMakers.push(() => makeCharacter(
  25064. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25065. {
  25066. front: {
  25067. height: math.unit(6 + 2 / 12, "feet"),
  25068. weight: math.unit(160, "lb"),
  25069. name: "Front",
  25070. image: {
  25071. source: "./media/characters/ariam/front.svg",
  25072. extra: 1073/976,
  25073. bottom: 52/1125
  25074. }
  25075. },
  25076. back: {
  25077. height: math.unit(6 + 2/12, "feet"),
  25078. weight: math.unit(160, "lb"),
  25079. name: "Back",
  25080. image: {
  25081. source: "./media/characters/ariam/back.svg",
  25082. extra: 1103/1023,
  25083. bottom: 9/1112
  25084. }
  25085. },
  25086. dressed: {
  25087. height: math.unit(6 + 2/12, "feet"),
  25088. weight: math.unit(160, "lb"),
  25089. name: "Dressed",
  25090. image: {
  25091. source: "./media/characters/ariam/dressed.svg",
  25092. extra: 1099/1009,
  25093. bottom: 25/1124
  25094. }
  25095. },
  25096. squatting: {
  25097. height: math.unit(4.1, "feet"),
  25098. weight: math.unit(160, "lb"),
  25099. name: "Squatting",
  25100. image: {
  25101. source: "./media/characters/ariam/squatting.svg",
  25102. extra: 2617 / 2112,
  25103. bottom: 61.2 / 2681,
  25104. }
  25105. },
  25106. },
  25107. [
  25108. {
  25109. name: "Normal",
  25110. height: math.unit(6 + 2 / 12, "feet"),
  25111. default: true
  25112. },
  25113. {
  25114. name: "Normal+",
  25115. height: math.unit(4, "meters")
  25116. },
  25117. {
  25118. name: "Macro",
  25119. height: math.unit(50, "meters")
  25120. },
  25121. {
  25122. name: "Macro+",
  25123. height: math.unit(100, "meters")
  25124. },
  25125. {
  25126. name: "Megamacro",
  25127. height: math.unit(20, "km")
  25128. },
  25129. {
  25130. name: "Caretaker",
  25131. height: math.unit(444, "megameters")
  25132. },
  25133. ]
  25134. ))
  25135. characterMakers.push(() => makeCharacter(
  25136. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25137. {
  25138. front: {
  25139. height: math.unit(1.67, "meters"),
  25140. weight: math.unit(140, "lb"),
  25141. name: "Front",
  25142. image: {
  25143. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25144. extra: 438 / 410,
  25145. bottom: 0.75 / 439
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Shrunken",
  25152. height: math.unit(7.6, "cm")
  25153. },
  25154. {
  25155. name: "Human Scale",
  25156. height: math.unit(1.67, "meters")
  25157. },
  25158. {
  25159. name: "Wolxi Scale",
  25160. height: math.unit(36.7, "meters"),
  25161. default: true
  25162. },
  25163. ]
  25164. ))
  25165. characterMakers.push(() => makeCharacter(
  25166. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25167. {
  25168. front: {
  25169. height: math.unit(1.73, "meters"),
  25170. weight: math.unit(240, "lb"),
  25171. name: "Front",
  25172. image: {
  25173. source: "./media/characters/izue-two-mothers/front.svg",
  25174. extra: 469 / 437,
  25175. bottom: 1.24 / 470.6
  25176. }
  25177. },
  25178. },
  25179. [
  25180. {
  25181. name: "Shrunken",
  25182. height: math.unit(7.86, "cm")
  25183. },
  25184. {
  25185. name: "Human Scale",
  25186. height: math.unit(1.73, "meters")
  25187. },
  25188. {
  25189. name: "Wolxi Scale",
  25190. height: math.unit(38, "meters"),
  25191. default: true
  25192. },
  25193. ]
  25194. ))
  25195. characterMakers.push(() => makeCharacter(
  25196. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25197. {
  25198. front: {
  25199. height: math.unit(1.55, "meters"),
  25200. weight: math.unit(120, "lb"),
  25201. name: "Front",
  25202. image: {
  25203. source: "./media/characters/teeku-love-shack/front.svg",
  25204. extra: 387 / 362,
  25205. bottom: 1.51 / 388
  25206. }
  25207. },
  25208. },
  25209. [
  25210. {
  25211. name: "Shrunken",
  25212. height: math.unit(7, "cm")
  25213. },
  25214. {
  25215. name: "Human Scale",
  25216. height: math.unit(1.55, "meters")
  25217. },
  25218. {
  25219. name: "Wolxi Scale",
  25220. height: math.unit(34.1, "meters"),
  25221. default: true
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(1.83, "meters"),
  25230. weight: math.unit(135, "lb"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/dejma-the-red/front.svg",
  25234. extra: 480 / 458,
  25235. bottom: 1.8 / 482
  25236. }
  25237. },
  25238. },
  25239. [
  25240. {
  25241. name: "Shrunken",
  25242. height: math.unit(8.3, "cm")
  25243. },
  25244. {
  25245. name: "Human Scale",
  25246. height: math.unit(1.83, "meters")
  25247. },
  25248. {
  25249. name: "Wolxi Scale",
  25250. height: math.unit(40, "meters"),
  25251. default: true
  25252. },
  25253. ]
  25254. ))
  25255. characterMakers.push(() => makeCharacter(
  25256. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25257. {
  25258. front: {
  25259. height: math.unit(1.78, "meters"),
  25260. weight: math.unit(65, "kg"),
  25261. name: "Front",
  25262. image: {
  25263. source: "./media/characters/aki/front.svg",
  25264. extra: 452 / 415
  25265. }
  25266. },
  25267. frontNsfw: {
  25268. height: math.unit(1.78, "meters"),
  25269. weight: math.unit(65, "kg"),
  25270. name: "Front (NSFW)",
  25271. image: {
  25272. source: "./media/characters/aki/front-nsfw.svg",
  25273. extra: 452 / 415
  25274. }
  25275. },
  25276. back: {
  25277. height: math.unit(1.78, "meters"),
  25278. weight: math.unit(65, "kg"),
  25279. name: "Back",
  25280. image: {
  25281. source: "./media/characters/aki/back.svg",
  25282. extra: 452 / 415
  25283. }
  25284. },
  25285. rump: {
  25286. height: math.unit(2.05, "feet"),
  25287. name: "Rump",
  25288. image: {
  25289. source: "./media/characters/aki/rump.svg"
  25290. }
  25291. },
  25292. dick: {
  25293. height: math.unit(0.95, "feet"),
  25294. name: "Dick",
  25295. image: {
  25296. source: "./media/characters/aki/dick.svg"
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Micro",
  25303. height: math.unit(15, "cm")
  25304. },
  25305. {
  25306. name: "Normal",
  25307. height: math.unit(178, "cm"),
  25308. default: true
  25309. },
  25310. {
  25311. name: "Macro",
  25312. height: math.unit(214, "m")
  25313. },
  25314. {
  25315. name: "Macro+",
  25316. height: math.unit(534, "m")
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(5 + 5 / 12, "feet"),
  25325. weight: math.unit(120, "lb"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/ari/front.svg",
  25329. extra: 1550/1471,
  25330. bottom: 39/1589
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(5 + 5 / 12, "feet")
  25338. },
  25339. {
  25340. name: "Macro",
  25341. height: math.unit(100, "feet"),
  25342. default: true
  25343. },
  25344. {
  25345. name: "Megamacro",
  25346. height: math.unit(100, "miles")
  25347. },
  25348. {
  25349. name: "Gigamacro",
  25350. height: math.unit(80000, "miles")
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25356. {
  25357. side: {
  25358. height: math.unit(9, "feet"),
  25359. weight: math.unit(400, "kg"),
  25360. name: "Side",
  25361. image: {
  25362. source: "./media/characters/bolt/side.svg",
  25363. extra: 1126 / 896,
  25364. bottom: 60 / 1187.3,
  25365. }
  25366. },
  25367. },
  25368. [
  25369. {
  25370. name: "Micro",
  25371. height: math.unit(5, "inches")
  25372. },
  25373. {
  25374. name: "Normal",
  25375. height: math.unit(9, "feet"),
  25376. default: true
  25377. },
  25378. {
  25379. name: "Macro",
  25380. height: math.unit(700, "feet")
  25381. },
  25382. {
  25383. name: "Max Size",
  25384. height: math.unit(1.52e22, "yottameters")
  25385. },
  25386. ]
  25387. ))
  25388. characterMakers.push(() => makeCharacter(
  25389. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25390. {
  25391. front: {
  25392. height: math.unit(4.3, "meters"),
  25393. weight: math.unit(3, "tons"),
  25394. name: "Front",
  25395. image: {
  25396. source: "./media/characters/draekon-sylviar/front.svg",
  25397. extra: 2072/1512,
  25398. bottom: 74/2146
  25399. }
  25400. },
  25401. back: {
  25402. height: math.unit(4.3, "meters"),
  25403. weight: math.unit(3, "tons"),
  25404. name: "Back",
  25405. image: {
  25406. source: "./media/characters/draekon-sylviar/back.svg",
  25407. extra: 1639/1483,
  25408. bottom: 41/1680
  25409. }
  25410. },
  25411. feral: {
  25412. height: math.unit(1.15, "meters"),
  25413. weight: math.unit(3, "tons"),
  25414. name: "Feral",
  25415. image: {
  25416. source: "./media/characters/draekon-sylviar/feral.svg",
  25417. extra: 1033/395,
  25418. bottom: 130/1163
  25419. }
  25420. },
  25421. maw: {
  25422. height: math.unit(1.3, "meters"),
  25423. name: "Maw",
  25424. image: {
  25425. source: "./media/characters/draekon-sylviar/maw.svg"
  25426. }
  25427. },
  25428. mawSeparated: {
  25429. height: math.unit(1.53, "meters"),
  25430. name: "Separated Maw",
  25431. image: {
  25432. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25433. }
  25434. },
  25435. tail: {
  25436. height: math.unit(1.15, "meters"),
  25437. name: "Tail",
  25438. image: {
  25439. source: "./media/characters/draekon-sylviar/tail.svg"
  25440. }
  25441. },
  25442. tailDick: {
  25443. height: math.unit(1.15, "meters"),
  25444. name: "Tail (Dick)",
  25445. image: {
  25446. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25447. }
  25448. },
  25449. tailDickSeparated: {
  25450. height: math.unit(1.19, "meters"),
  25451. name: "Tail (Separated Dick)",
  25452. image: {
  25453. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25454. }
  25455. },
  25456. slit: {
  25457. height: math.unit(1, "meters"),
  25458. name: "Slit",
  25459. image: {
  25460. source: "./media/characters/draekon-sylviar/slit.svg"
  25461. }
  25462. },
  25463. dick: {
  25464. height: math.unit(1.15, "meters"),
  25465. name: "Dick",
  25466. image: {
  25467. source: "./media/characters/draekon-sylviar/dick.svg"
  25468. }
  25469. },
  25470. dickSeparated: {
  25471. height: math.unit(1.1, "meters"),
  25472. name: "Separated Dick",
  25473. image: {
  25474. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25475. }
  25476. },
  25477. sheath: {
  25478. height: math.unit(1.15, "meters"),
  25479. name: "Sheath",
  25480. image: {
  25481. source: "./media/characters/draekon-sylviar/sheath.svg"
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Small",
  25488. height: math.unit(4.53 / 2, "meters"),
  25489. default: true
  25490. },
  25491. {
  25492. name: "Normal",
  25493. height: math.unit(4.53, "meters"),
  25494. default: true
  25495. },
  25496. {
  25497. name: "Large",
  25498. height: math.unit(4.53 * 2, "meters"),
  25499. },
  25500. ]
  25501. ))
  25502. characterMakers.push(() => makeCharacter(
  25503. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25504. {
  25505. front: {
  25506. height: math.unit(6 + 2 / 12, "feet"),
  25507. weight: math.unit(180, "lb"),
  25508. name: "Front",
  25509. image: {
  25510. source: "./media/characters/brawler/front.svg",
  25511. extra: 3301 / 3027,
  25512. bottom: 138 / 3439
  25513. }
  25514. },
  25515. },
  25516. [
  25517. {
  25518. name: "Normal",
  25519. height: math.unit(6 + 2 / 12, "feet"),
  25520. default: true
  25521. },
  25522. ]
  25523. ))
  25524. characterMakers.push(() => makeCharacter(
  25525. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25526. {
  25527. front: {
  25528. height: math.unit(11, "feet"),
  25529. weight: math.unit(1000, "lb"),
  25530. name: "Front",
  25531. image: {
  25532. source: "./media/characters/alex/front.svg",
  25533. bottom: 44.5 / 620
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Micro",
  25540. height: math.unit(5, "inches")
  25541. },
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(11, "feet"),
  25545. default: true
  25546. },
  25547. {
  25548. name: "Macro",
  25549. height: math.unit(9.5e9, "feet")
  25550. },
  25551. {
  25552. name: "Max Size",
  25553. height: math.unit(1.4e283, "yottameters")
  25554. },
  25555. ]
  25556. ))
  25557. characterMakers.push(() => makeCharacter(
  25558. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25559. {
  25560. female: {
  25561. height: math.unit(29.9, "m"),
  25562. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25563. name: "Female",
  25564. image: {
  25565. source: "./media/characters/zenari/female.svg",
  25566. extra: 3281.6 / 3217,
  25567. bottom: 72.2 / 3353
  25568. }
  25569. },
  25570. male: {
  25571. height: math.unit(27.7, "m"),
  25572. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25573. name: "Male",
  25574. image: {
  25575. source: "./media/characters/zenari/male.svg",
  25576. extra: 3008 / 2991,
  25577. bottom: 54.6 / 3069
  25578. }
  25579. },
  25580. },
  25581. [
  25582. {
  25583. name: "Macro",
  25584. height: math.unit(29.7, "meters"),
  25585. default: true
  25586. },
  25587. ]
  25588. ))
  25589. characterMakers.push(() => makeCharacter(
  25590. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25591. {
  25592. female: {
  25593. height: math.unit(23.8, "m"),
  25594. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25595. name: "Female",
  25596. image: {
  25597. source: "./media/characters/mactarian/female.svg",
  25598. extra: 2662 / 2569,
  25599. bottom: 73 / 2736
  25600. }
  25601. },
  25602. male: {
  25603. height: math.unit(23.8, "m"),
  25604. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25605. name: "Male",
  25606. image: {
  25607. source: "./media/characters/mactarian/male.svg",
  25608. extra: 2673 / 2600,
  25609. bottom: 76 / 2750
  25610. }
  25611. },
  25612. },
  25613. [
  25614. {
  25615. name: "Macro",
  25616. height: math.unit(23.8, "meters"),
  25617. default: true
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25623. {
  25624. female: {
  25625. height: math.unit(19.3, "m"),
  25626. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25627. name: "Female",
  25628. image: {
  25629. source: "./media/characters/umok/female.svg",
  25630. extra: 2186 / 2078,
  25631. bottom: 87 / 2277
  25632. }
  25633. },
  25634. male: {
  25635. height: math.unit(19.5, "m"),
  25636. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25637. name: "Male",
  25638. image: {
  25639. source: "./media/characters/umok/male.svg",
  25640. extra: 2233 / 2140,
  25641. bottom: 24.4 / 2258
  25642. }
  25643. },
  25644. },
  25645. [
  25646. {
  25647. name: "Macro",
  25648. height: math.unit(19.3, "meters"),
  25649. default: true
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25655. {
  25656. female: {
  25657. height: math.unit(26.15, "m"),
  25658. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25659. name: "Female",
  25660. image: {
  25661. source: "./media/characters/joraxian/female.svg",
  25662. extra: 2912 / 2824,
  25663. bottom: 36 / 2956
  25664. }
  25665. },
  25666. male: {
  25667. height: math.unit(25.4, "m"),
  25668. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25669. name: "Male",
  25670. image: {
  25671. source: "./media/characters/joraxian/male.svg",
  25672. extra: 2877 / 2721,
  25673. bottom: 82 / 2967
  25674. }
  25675. },
  25676. },
  25677. [
  25678. {
  25679. name: "Macro",
  25680. height: math.unit(26.15, "meters"),
  25681. default: true
  25682. },
  25683. ]
  25684. ))
  25685. characterMakers.push(() => makeCharacter(
  25686. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25687. {
  25688. female: {
  25689. height: math.unit(21.6, "m"),
  25690. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25691. name: "Female",
  25692. image: {
  25693. source: "./media/characters/sthara/female.svg",
  25694. extra: 2516 / 2347,
  25695. bottom: 21.5 / 2537
  25696. }
  25697. },
  25698. male: {
  25699. height: math.unit(24, "m"),
  25700. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25701. name: "Male",
  25702. image: {
  25703. source: "./media/characters/sthara/male.svg",
  25704. extra: 2732 / 2607,
  25705. bottom: 23 / 2732
  25706. }
  25707. },
  25708. },
  25709. [
  25710. {
  25711. name: "Macro",
  25712. height: math.unit(21.6, "meters"),
  25713. default: true
  25714. },
  25715. ]
  25716. ))
  25717. characterMakers.push(() => makeCharacter(
  25718. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25719. {
  25720. front: {
  25721. height: math.unit(6 + 4 / 12, "feet"),
  25722. weight: math.unit(175, "lb"),
  25723. name: "Front",
  25724. image: {
  25725. source: "./media/characters/luka-bryzant/front.svg",
  25726. extra: 311 / 289,
  25727. bottom: 4 / 315
  25728. }
  25729. },
  25730. back: {
  25731. height: math.unit(6 + 4 / 12, "feet"),
  25732. weight: math.unit(175, "lb"),
  25733. name: "Back",
  25734. image: {
  25735. source: "./media/characters/luka-bryzant/back.svg",
  25736. extra: 311 / 289,
  25737. bottom: 3.8 / 313.7
  25738. }
  25739. },
  25740. },
  25741. [
  25742. {
  25743. name: "Micro",
  25744. height: math.unit(10, "inches")
  25745. },
  25746. {
  25747. name: "Normal",
  25748. height: math.unit(6 + 4 / 12, "feet"),
  25749. default: true
  25750. },
  25751. {
  25752. name: "Large",
  25753. height: math.unit(12, "feet")
  25754. },
  25755. ]
  25756. ))
  25757. characterMakers.push(() => makeCharacter(
  25758. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25759. {
  25760. front: {
  25761. height: math.unit(5 + 7 / 12, "feet"),
  25762. weight: math.unit(185, "lb"),
  25763. name: "Front",
  25764. image: {
  25765. source: "./media/characters/aman-aquila/front.svg",
  25766. extra: 1013 / 976,
  25767. bottom: 45.6 / 1057
  25768. }
  25769. },
  25770. side: {
  25771. height: math.unit(5 + 7 / 12, "feet"),
  25772. weight: math.unit(185, "lb"),
  25773. name: "Side",
  25774. image: {
  25775. source: "./media/characters/aman-aquila/side.svg",
  25776. extra: 1054 / 1011,
  25777. bottom: 15 / 1070
  25778. }
  25779. },
  25780. back: {
  25781. height: math.unit(5 + 7 / 12, "feet"),
  25782. weight: math.unit(185, "lb"),
  25783. name: "Back",
  25784. image: {
  25785. source: "./media/characters/aman-aquila/back.svg",
  25786. extra: 1026 / 970,
  25787. bottom: 12 / 1039
  25788. }
  25789. },
  25790. head: {
  25791. height: math.unit(1.211, "feet"),
  25792. name: "Head",
  25793. image: {
  25794. source: "./media/characters/aman-aquila/head.svg",
  25795. }
  25796. },
  25797. },
  25798. [
  25799. {
  25800. name: "Minimicro",
  25801. height: math.unit(0.057, "inches")
  25802. },
  25803. {
  25804. name: "Micro",
  25805. height: math.unit(7, "inches")
  25806. },
  25807. {
  25808. name: "Mini",
  25809. height: math.unit(3 + 7 / 12, "feet")
  25810. },
  25811. {
  25812. name: "Normal",
  25813. height: math.unit(5 + 7 / 12, "feet"),
  25814. default: true
  25815. },
  25816. {
  25817. name: "Macro",
  25818. height: math.unit(157 + 7 / 12, "feet")
  25819. },
  25820. {
  25821. name: "Megamacro",
  25822. height: math.unit(1557 + 7 / 12, "feet")
  25823. },
  25824. {
  25825. name: "Gigamacro",
  25826. height: math.unit(15557 + 7 / 12, "feet")
  25827. },
  25828. ]
  25829. ))
  25830. characterMakers.push(() => makeCharacter(
  25831. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25832. {
  25833. front: {
  25834. height: math.unit(3 + 2 / 12, "inches"),
  25835. weight: math.unit(0.3, "ounces"),
  25836. name: "Front",
  25837. image: {
  25838. source: "./media/characters/hiphae/front.svg",
  25839. extra: 1931 / 1683,
  25840. bottom: 24 / 1955
  25841. }
  25842. },
  25843. },
  25844. [
  25845. {
  25846. name: "Normal",
  25847. height: math.unit(3 + 1 / 2, "inches"),
  25848. default: true
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25854. {
  25855. front: {
  25856. height: math.unit(5 + 10 / 12, "feet"),
  25857. weight: math.unit(165, "lb"),
  25858. name: "Front",
  25859. image: {
  25860. source: "./media/characters/nicky/front.svg",
  25861. extra: 3144 / 2886,
  25862. bottom: 45.6 / 3192
  25863. }
  25864. },
  25865. back: {
  25866. height: math.unit(5 + 10 / 12, "feet"),
  25867. weight: math.unit(165, "lb"),
  25868. name: "Back",
  25869. image: {
  25870. source: "./media/characters/nicky/back.svg",
  25871. extra: 3055 / 2804,
  25872. bottom: 28.4 / 3087
  25873. }
  25874. },
  25875. frontclothed: {
  25876. height: math.unit(5 + 10 / 12, "feet"),
  25877. weight: math.unit(165, "lb"),
  25878. name: "Front-clothed",
  25879. image: {
  25880. source: "./media/characters/nicky/front-clothed.svg",
  25881. extra: 3184.9 / 2926.9,
  25882. bottom: 86.5 / 3239.9
  25883. }
  25884. },
  25885. foot: {
  25886. height: math.unit(1.16, "feet"),
  25887. name: "Foot",
  25888. image: {
  25889. source: "./media/characters/nicky/foot.svg"
  25890. }
  25891. },
  25892. feet: {
  25893. height: math.unit(1.34, "feet"),
  25894. name: "Feet",
  25895. image: {
  25896. source: "./media/characters/nicky/feet.svg"
  25897. }
  25898. },
  25899. maw: {
  25900. height: math.unit(0.9, "feet"),
  25901. name: "Maw",
  25902. image: {
  25903. source: "./media/characters/nicky/maw.svg"
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(5 + 10 / 12, "feet"),
  25911. default: true
  25912. },
  25913. {
  25914. name: "Macro",
  25915. height: math.unit(60, "feet")
  25916. },
  25917. {
  25918. name: "Megamacro",
  25919. height: math.unit(1, "mile")
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25925. {
  25926. side: {
  25927. height: math.unit(10, "feet"),
  25928. weight: math.unit(600, "lb"),
  25929. name: "Side",
  25930. image: {
  25931. source: "./media/characters/blair/side.svg",
  25932. bottom: 16.6 / 475,
  25933. extra: 458 / 431
  25934. }
  25935. },
  25936. },
  25937. [
  25938. {
  25939. name: "Micro",
  25940. height: math.unit(8, "inches")
  25941. },
  25942. {
  25943. name: "Normal",
  25944. height: math.unit(10, "feet"),
  25945. default: true
  25946. },
  25947. {
  25948. name: "Macro",
  25949. height: math.unit(180, "feet")
  25950. },
  25951. ]
  25952. ))
  25953. characterMakers.push(() => makeCharacter(
  25954. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25955. {
  25956. front: {
  25957. height: math.unit(5 + 4 / 12, "feet"),
  25958. weight: math.unit(125, "lb"),
  25959. name: "Front",
  25960. image: {
  25961. source: "./media/characters/fisher/front.svg",
  25962. extra: 444 / 390,
  25963. bottom: 2 / 444.8
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Micro",
  25970. height: math.unit(4, "inches")
  25971. },
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(5 + 4 / 12, "feet"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Macro",
  25979. height: math.unit(100, "feet")
  25980. },
  25981. ]
  25982. ))
  25983. characterMakers.push(() => makeCharacter(
  25984. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25985. {
  25986. front: {
  25987. height: math.unit(6.71, "feet"),
  25988. weight: math.unit(200, "lb"),
  25989. capacity: math.unit(1000000, "people"),
  25990. name: "Front",
  25991. image: {
  25992. source: "./media/characters/gliss/front.svg",
  25993. extra: 2347 / 2231,
  25994. bottom: 113 / 2462
  25995. }
  25996. },
  25997. hammerspaceSize: {
  25998. height: math.unit(6.71 * 717, "feet"),
  25999. weight: math.unit(200, "lb"),
  26000. capacity: math.unit(1000000, "people"),
  26001. name: "Hammerspace Size",
  26002. image: {
  26003. source: "./media/characters/gliss/front.svg",
  26004. extra: 2347 / 2231,
  26005. bottom: 113 / 2462
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(6.71, "feet"),
  26013. default: true
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26019. {
  26020. side: {
  26021. height: math.unit(1.44, "m"),
  26022. weight: math.unit(80, "kg"),
  26023. name: "Side",
  26024. image: {
  26025. source: "./media/characters/dune-anderson/side.svg",
  26026. bottom: 49 / 1426
  26027. }
  26028. },
  26029. },
  26030. [
  26031. {
  26032. name: "Wolf-sized",
  26033. height: math.unit(1.44, "meters")
  26034. },
  26035. {
  26036. name: "Normal",
  26037. height: math.unit(5.05, "meters"),
  26038. default: true
  26039. },
  26040. {
  26041. name: "Big",
  26042. height: math.unit(14.4, "meters")
  26043. },
  26044. {
  26045. name: "Huge",
  26046. height: math.unit(144, "meters")
  26047. },
  26048. ]
  26049. ))
  26050. characterMakers.push(() => makeCharacter(
  26051. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26052. {
  26053. front: {
  26054. height: math.unit(7, "feet"),
  26055. weight: math.unit(425, "lb"),
  26056. name: "Front",
  26057. image: {
  26058. source: "./media/characters/hind/front.svg",
  26059. extra: 2091 / 1860,
  26060. bottom: 129 / 2220
  26061. }
  26062. },
  26063. back: {
  26064. height: math.unit(7, "feet"),
  26065. weight: math.unit(425, "lb"),
  26066. name: "Back",
  26067. image: {
  26068. source: "./media/characters/hind/back.svg",
  26069. extra: 2091 / 1860,
  26070. bottom: 24.6 / 2309
  26071. }
  26072. },
  26073. tail: {
  26074. height: math.unit(2.8, "feet"),
  26075. name: "Tail",
  26076. image: {
  26077. source: "./media/characters/hind/tail.svg"
  26078. }
  26079. },
  26080. head: {
  26081. height: math.unit(2.55, "feet"),
  26082. name: "Head",
  26083. image: {
  26084. source: "./media/characters/hind/head.svg"
  26085. }
  26086. },
  26087. },
  26088. [
  26089. {
  26090. name: "XS",
  26091. height: math.unit(0.7, "feet")
  26092. },
  26093. {
  26094. name: "Normal",
  26095. height: math.unit(7, "feet"),
  26096. default: true
  26097. },
  26098. {
  26099. name: "XL",
  26100. height: math.unit(70, "feet")
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26106. {
  26107. front: {
  26108. height: math.unit(2.1, "meters"),
  26109. weight: math.unit(150, "lb"),
  26110. name: "Front",
  26111. image: {
  26112. source: "./media/characters/tharquench-sizestealer/front.svg",
  26113. extra: 1605/1470,
  26114. bottom: 36/1641
  26115. }
  26116. },
  26117. frontAlt: {
  26118. height: math.unit(2.1, "meters"),
  26119. weight: math.unit(150, "lb"),
  26120. name: "Front (Alt)",
  26121. image: {
  26122. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26123. extra: 2318 / 2063,
  26124. bottom: 93.4 / 2410
  26125. }
  26126. },
  26127. },
  26128. [
  26129. {
  26130. name: "Nano",
  26131. height: math.unit(1, "mm")
  26132. },
  26133. {
  26134. name: "Micro",
  26135. height: math.unit(1, "cm")
  26136. },
  26137. {
  26138. name: "Normal",
  26139. height: math.unit(2.1, "meters"),
  26140. default: true
  26141. },
  26142. ]
  26143. ))
  26144. characterMakers.push(() => makeCharacter(
  26145. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26146. {
  26147. front: {
  26148. height: math.unit(7 + 5 / 12, "feet"),
  26149. weight: math.unit(357, "lb"),
  26150. name: "Front",
  26151. image: {
  26152. source: "./media/characters/solex-draconov/front.svg",
  26153. extra: 1993 / 1865,
  26154. bottom: 117 / 2111
  26155. }
  26156. },
  26157. },
  26158. [
  26159. {
  26160. name: "Natural Height",
  26161. height: math.unit(7 + 5 / 12, "feet"),
  26162. default: true
  26163. },
  26164. {
  26165. name: "Macro",
  26166. height: math.unit(350, "feet")
  26167. },
  26168. {
  26169. name: "Macro+",
  26170. height: math.unit(1000, "feet")
  26171. },
  26172. {
  26173. name: "Megamacro",
  26174. height: math.unit(20, "km")
  26175. },
  26176. {
  26177. name: "Megamacro+",
  26178. height: math.unit(1000, "km")
  26179. },
  26180. {
  26181. name: "Gigamacro",
  26182. height: math.unit(2.5, "Gm")
  26183. },
  26184. {
  26185. name: "Teramacro",
  26186. height: math.unit(15, "Tm")
  26187. },
  26188. {
  26189. name: "Galactic",
  26190. height: math.unit(30, "Zm")
  26191. },
  26192. {
  26193. name: "Universal",
  26194. height: math.unit(21000, "Ym")
  26195. },
  26196. {
  26197. name: "Omniversal",
  26198. height: math.unit(9.861e50, "Ym")
  26199. },
  26200. {
  26201. name: "Existential",
  26202. height: math.unit(1e300, "meters")
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26208. {
  26209. side: {
  26210. height: math.unit(25, "feet"),
  26211. weight: math.unit(90000, "lb"),
  26212. name: "Side",
  26213. image: {
  26214. source: "./media/characters/mandarax/side.svg",
  26215. extra: 614 / 332,
  26216. bottom: 55 / 630
  26217. }
  26218. },
  26219. lounging: {
  26220. height: math.unit(15.4, "feet"),
  26221. weight: math.unit(90000, "lb"),
  26222. name: "Lounging",
  26223. image: {
  26224. source: "./media/characters/mandarax/lounging.svg",
  26225. extra: 817/609,
  26226. bottom: 685/1502
  26227. }
  26228. },
  26229. head: {
  26230. height: math.unit(11.4, "feet"),
  26231. name: "Head",
  26232. image: {
  26233. source: "./media/characters/mandarax/head.svg"
  26234. }
  26235. },
  26236. belly: {
  26237. height: math.unit(33, "feet"),
  26238. name: "Belly",
  26239. capacity: math.unit(500, "people"),
  26240. image: {
  26241. source: "./media/characters/mandarax/belly.svg"
  26242. }
  26243. },
  26244. dick: {
  26245. height: math.unit(8.46, "feet"),
  26246. name: "Dick",
  26247. image: {
  26248. source: "./media/characters/mandarax/dick.svg"
  26249. }
  26250. },
  26251. top: {
  26252. height: math.unit(28, "meters"),
  26253. name: "Top",
  26254. image: {
  26255. source: "./media/characters/mandarax/top.svg"
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(25, "feet"),
  26263. default: true
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26269. {
  26270. front: {
  26271. height: math.unit(5, "feet"),
  26272. weight: math.unit(90, "lb"),
  26273. name: "Front",
  26274. image: {
  26275. source: "./media/characters/pixil/front.svg",
  26276. extra: 2000 / 1618,
  26277. bottom: 12.3 / 2011
  26278. }
  26279. },
  26280. },
  26281. [
  26282. {
  26283. name: "Normal",
  26284. height: math.unit(5, "feet"),
  26285. default: true
  26286. },
  26287. {
  26288. name: "Megamacro",
  26289. height: math.unit(10, "miles"),
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26295. {
  26296. front: {
  26297. height: math.unit(7 + 2 / 12, "feet"),
  26298. weight: math.unit(200, "lb"),
  26299. name: "Front",
  26300. image: {
  26301. source: "./media/characters/angel/front.svg",
  26302. extra: 1830 / 1737,
  26303. bottom: 22.6 / 1854,
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Normal",
  26310. height: math.unit(7 + 2 / 12, "feet"),
  26311. default: true
  26312. },
  26313. {
  26314. name: "Macro",
  26315. height: math.unit(1000, "feet")
  26316. },
  26317. {
  26318. name: "Megamacro",
  26319. height: math.unit(2, "miles")
  26320. },
  26321. {
  26322. name: "Gigamacro",
  26323. height: math.unit(20, "earths")
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(5, "feet"),
  26332. weight: math.unit(180, "lb"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/mekana/front.svg",
  26336. extra: 1671 / 1605,
  26337. bottom: 3.5 / 1691
  26338. }
  26339. },
  26340. side: {
  26341. height: math.unit(5, "feet"),
  26342. weight: math.unit(180, "lb"),
  26343. name: "Side",
  26344. image: {
  26345. source: "./media/characters/mekana/side.svg",
  26346. extra: 1671 / 1605,
  26347. bottom: 3.5 / 1691
  26348. }
  26349. },
  26350. back: {
  26351. height: math.unit(5, "feet"),
  26352. weight: math.unit(180, "lb"),
  26353. name: "Back",
  26354. image: {
  26355. source: "./media/characters/mekana/back.svg",
  26356. extra: 1671 / 1605,
  26357. bottom: 3.5 / 1691
  26358. }
  26359. },
  26360. },
  26361. [
  26362. {
  26363. name: "Normal",
  26364. height: math.unit(5, "feet"),
  26365. default: true
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26371. {
  26372. front: {
  26373. height: math.unit(4 + 6 / 12, "feet"),
  26374. weight: math.unit(80, "lb"),
  26375. name: "Front",
  26376. image: {
  26377. source: "./media/characters/pixie/front.svg",
  26378. extra: 1924 / 1825,
  26379. bottom: 22.4 / 1946
  26380. }
  26381. },
  26382. },
  26383. [
  26384. {
  26385. name: "Normal",
  26386. height: math.unit(4 + 6 / 12, "feet"),
  26387. default: true
  26388. },
  26389. {
  26390. name: "Macro",
  26391. height: math.unit(40, "feet")
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26397. {
  26398. front: {
  26399. height: math.unit(2.1, "meters"),
  26400. weight: math.unit(200, "lb"),
  26401. name: "Front",
  26402. image: {
  26403. source: "./media/characters/the-lascivious/front.svg",
  26404. extra: 1 / 0.893,
  26405. bottom: 3.5 / 573.7
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Human Scale",
  26412. height: math.unit(2.1, "meters")
  26413. },
  26414. {
  26415. name: "Wolxi Scale",
  26416. height: math.unit(46.2, "m"),
  26417. default: true
  26418. },
  26419. {
  26420. name: "Boinker of Buildings",
  26421. height: math.unit(10, "km")
  26422. },
  26423. {
  26424. name: "Shagger of Skyscrapers",
  26425. height: math.unit(40, "km")
  26426. },
  26427. {
  26428. name: "Banger of Boroughs",
  26429. height: math.unit(4000, "km")
  26430. },
  26431. {
  26432. name: "Screwer of States",
  26433. height: math.unit(100000, "km")
  26434. },
  26435. {
  26436. name: "Pounder of Planets",
  26437. height: math.unit(2000000, "km")
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(6, "feet"),
  26446. weight: math.unit(150, "lb"),
  26447. name: "Front",
  26448. image: {
  26449. source: "./media/characters/aj/front.svg",
  26450. extra: 2039 / 1562,
  26451. bottom: 40 / 2079
  26452. }
  26453. },
  26454. },
  26455. [
  26456. {
  26457. name: "Normal",
  26458. height: math.unit(11 + 6 / 12, "feet"),
  26459. default: true
  26460. },
  26461. {
  26462. name: "Megamacro",
  26463. height: math.unit(60, "megameters")
  26464. },
  26465. ]
  26466. ))
  26467. characterMakers.push(() => makeCharacter(
  26468. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26469. {
  26470. side: {
  26471. height: math.unit(31 + 8 / 12, "feet"),
  26472. weight: math.unit(75000, "kg"),
  26473. name: "Side",
  26474. image: {
  26475. source: "./media/characters/koros/side.svg",
  26476. extra: 1442 / 1297,
  26477. bottom: 122.7 / 1562
  26478. }
  26479. },
  26480. dicksKingsCrown: {
  26481. height: math.unit(6, "feet"),
  26482. name: "Dicks (King's Crown)",
  26483. image: {
  26484. source: "./media/characters/koros/dicks-kings-crown.svg"
  26485. }
  26486. },
  26487. dicksTailSet: {
  26488. height: math.unit(3, "feet"),
  26489. name: "Dicks (Tail Set)",
  26490. image: {
  26491. source: "./media/characters/koros/dicks-tail-set.svg"
  26492. }
  26493. },
  26494. dickCumming: {
  26495. height: math.unit(7.98, "feet"),
  26496. name: "Dick (Cumming)",
  26497. image: {
  26498. source: "./media/characters/koros/dick-cumming.svg"
  26499. }
  26500. },
  26501. dicksBack: {
  26502. height: math.unit(5.9, "feet"),
  26503. name: "Dicks (Back)",
  26504. image: {
  26505. source: "./media/characters/koros/dicks-back.svg"
  26506. }
  26507. },
  26508. dicksFront: {
  26509. height: math.unit(3.72, "feet"),
  26510. name: "Dicks (Front)",
  26511. image: {
  26512. source: "./media/characters/koros/dicks-front.svg"
  26513. }
  26514. },
  26515. dicksPeeking: {
  26516. height: math.unit(3.0, "feet"),
  26517. name: "Dicks (Peeking)",
  26518. image: {
  26519. source: "./media/characters/koros/dicks-peeking.svg"
  26520. }
  26521. },
  26522. eye: {
  26523. height: math.unit(1.7, "feet"),
  26524. name: "Eye",
  26525. image: {
  26526. source: "./media/characters/koros/eye.svg"
  26527. }
  26528. },
  26529. headFront: {
  26530. height: math.unit(11.69, "feet"),
  26531. name: "Head (Front)",
  26532. image: {
  26533. source: "./media/characters/koros/head-front.svg"
  26534. }
  26535. },
  26536. headSide: {
  26537. height: math.unit(14, "feet"),
  26538. name: "Head (Side)",
  26539. image: {
  26540. source: "./media/characters/koros/head-side.svg"
  26541. }
  26542. },
  26543. leg: {
  26544. height: math.unit(17, "feet"),
  26545. name: "Leg",
  26546. image: {
  26547. source: "./media/characters/koros/leg.svg"
  26548. }
  26549. },
  26550. mawSide: {
  26551. height: math.unit(12.8, "feet"),
  26552. name: "Maw (Side)",
  26553. image: {
  26554. source: "./media/characters/koros/maw-side.svg"
  26555. }
  26556. },
  26557. mawSpitting: {
  26558. height: math.unit(17, "feet"),
  26559. name: "Maw (Spitting)",
  26560. image: {
  26561. source: "./media/characters/koros/maw-spitting.svg"
  26562. }
  26563. },
  26564. slit: {
  26565. height: math.unit(2.8, "feet"),
  26566. name: "Slit",
  26567. image: {
  26568. source: "./media/characters/koros/slit.svg"
  26569. }
  26570. },
  26571. stomach: {
  26572. height: math.unit(6.8, "feet"),
  26573. capacity: math.unit(20, "people"),
  26574. name: "Stomach",
  26575. image: {
  26576. source: "./media/characters/koros/stomach.svg"
  26577. }
  26578. },
  26579. wingspanBottom: {
  26580. height: math.unit(114, "feet"),
  26581. name: "Wingspan (Bottom)",
  26582. image: {
  26583. source: "./media/characters/koros/wingspan-bottom.svg"
  26584. }
  26585. },
  26586. wingspanTop: {
  26587. height: math.unit(104, "feet"),
  26588. name: "Wingspan (Top)",
  26589. image: {
  26590. source: "./media/characters/koros/wingspan-top.svg"
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Normal",
  26597. height: math.unit(31 + 8 / 12, "feet"),
  26598. default: true
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26604. {
  26605. front: {
  26606. height: math.unit(18 + 5 / 12, "feet"),
  26607. weight: math.unit(3750, "kg"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/vexx/front.svg",
  26611. extra: 426 / 396,
  26612. bottom: 31.5 / 458
  26613. }
  26614. },
  26615. maw: {
  26616. height: math.unit(6, "feet"),
  26617. name: "Maw",
  26618. image: {
  26619. source: "./media/characters/vexx/maw.svg"
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Normal",
  26626. height: math.unit(18 + 5 / 12, "feet"),
  26627. default: true
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(17 + 6 / 12, "feet"),
  26636. weight: math.unit(150, "lb"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/baadra/front.svg",
  26640. extra: 1694/1553,
  26641. bottom: 179/1873
  26642. }
  26643. },
  26644. frontAlt: {
  26645. height: math.unit(17 + 6 / 12, "feet"),
  26646. weight: math.unit(150, "lb"),
  26647. name: "Front (Alt)",
  26648. image: {
  26649. source: "./media/characters/baadra/front-alt.svg",
  26650. extra: 3137 / 2890,
  26651. bottom: 168.4 / 3305
  26652. }
  26653. },
  26654. back: {
  26655. height: math.unit(17 + 6 / 12, "feet"),
  26656. weight: math.unit(150, "lb"),
  26657. name: "Back",
  26658. image: {
  26659. source: "./media/characters/baadra/back.svg",
  26660. extra: 3142 / 2890,
  26661. bottom: 220 / 3371
  26662. }
  26663. },
  26664. head: {
  26665. height: math.unit(5.45, "feet"),
  26666. name: "Head",
  26667. image: {
  26668. source: "./media/characters/baadra/head.svg"
  26669. }
  26670. },
  26671. headAngry: {
  26672. height: math.unit(4.95, "feet"),
  26673. name: "Head (Angry)",
  26674. image: {
  26675. source: "./media/characters/baadra/head-angry.svg"
  26676. }
  26677. },
  26678. headOpen: {
  26679. height: math.unit(6, "feet"),
  26680. name: "Head (Open)",
  26681. image: {
  26682. source: "./media/characters/baadra/head-open.svg"
  26683. }
  26684. },
  26685. },
  26686. [
  26687. {
  26688. name: "Normal",
  26689. height: math.unit(17 + 6 / 12, "feet"),
  26690. default: true
  26691. },
  26692. ]
  26693. ))
  26694. characterMakers.push(() => makeCharacter(
  26695. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26696. {
  26697. front: {
  26698. height: math.unit(7 + 3 / 12, "feet"),
  26699. weight: math.unit(180, "lb"),
  26700. name: "Front",
  26701. image: {
  26702. source: "./media/characters/juri/front.svg",
  26703. extra: 1401 / 1237,
  26704. bottom: 18.5 / 1418
  26705. }
  26706. },
  26707. side: {
  26708. height: math.unit(7 + 3 / 12, "feet"),
  26709. weight: math.unit(180, "lb"),
  26710. name: "Side",
  26711. image: {
  26712. source: "./media/characters/juri/side.svg",
  26713. extra: 1424 / 1242,
  26714. bottom: 18.5 / 1447
  26715. }
  26716. },
  26717. sitting: {
  26718. height: math.unit(6, "feet"),
  26719. weight: math.unit(180, "lb"),
  26720. name: "Sitting",
  26721. image: {
  26722. source: "./media/characters/juri/sitting.svg",
  26723. extra: 1270 / 1143,
  26724. bottom: 100 / 1343
  26725. }
  26726. },
  26727. back: {
  26728. height: math.unit(7 + 3 / 12, "feet"),
  26729. weight: math.unit(180, "lb"),
  26730. name: "Back",
  26731. image: {
  26732. source: "./media/characters/juri/back.svg",
  26733. extra: 1377 / 1240,
  26734. bottom: 23.7 / 1405
  26735. }
  26736. },
  26737. maw: {
  26738. height: math.unit(2.8, "feet"),
  26739. name: "Maw",
  26740. image: {
  26741. source: "./media/characters/juri/maw.svg"
  26742. }
  26743. },
  26744. stomach: {
  26745. height: math.unit(0.89, "feet"),
  26746. capacity: math.unit(4, "liters"),
  26747. name: "Stomach",
  26748. image: {
  26749. source: "./media/characters/juri/stomach.svg"
  26750. }
  26751. },
  26752. },
  26753. [
  26754. {
  26755. name: "Normal",
  26756. height: math.unit(7 + 3 / 12, "feet"),
  26757. default: true
  26758. },
  26759. ]
  26760. ))
  26761. characterMakers.push(() => makeCharacter(
  26762. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26763. {
  26764. fox: {
  26765. height: math.unit(5 + 6 / 12, "feet"),
  26766. weight: math.unit(140, "lb"),
  26767. name: "Fox",
  26768. image: {
  26769. source: "./media/characters/maxene-sita/fox.svg",
  26770. extra: 146 / 138,
  26771. bottom: 2.1 / 148.19
  26772. }
  26773. },
  26774. foxLaying: {
  26775. height: math.unit(1.70, "feet"),
  26776. weight: math.unit(140, "lb"),
  26777. name: "Fox (Laying)",
  26778. image: {
  26779. source: "./media/characters/maxene-sita/fox-laying.svg",
  26780. extra: 910 / 572,
  26781. bottom: 71 / 981
  26782. }
  26783. },
  26784. kitsune: {
  26785. height: math.unit(10, "feet"),
  26786. weight: math.unit(800, "lb"),
  26787. name: "Kitsune",
  26788. image: {
  26789. source: "./media/characters/maxene-sita/kitsune.svg",
  26790. extra: 185 / 176,
  26791. bottom: 4.7 / 189.9
  26792. }
  26793. },
  26794. hellhound: {
  26795. height: math.unit(10, "feet"),
  26796. weight: math.unit(700, "lb"),
  26797. name: "Hellhound",
  26798. image: {
  26799. source: "./media/characters/maxene-sita/hellhound.svg",
  26800. extra: 1600 / 1545,
  26801. bottom: 81 / 1681
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "Normal",
  26808. height: math.unit(5 + 6 / 12, "feet"),
  26809. default: true
  26810. },
  26811. ]
  26812. ))
  26813. characterMakers.push(() => makeCharacter(
  26814. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26815. {
  26816. front: {
  26817. height: math.unit(3 + 4 / 12, "feet"),
  26818. weight: math.unit(70, "lb"),
  26819. name: "Front",
  26820. image: {
  26821. source: "./media/characters/maia/front.svg",
  26822. extra: 227 / 219.5,
  26823. bottom: 40 / 267
  26824. }
  26825. },
  26826. back: {
  26827. height: math.unit(3 + 4 / 12, "feet"),
  26828. weight: math.unit(70, "lb"),
  26829. name: "Back",
  26830. image: {
  26831. source: "./media/characters/maia/back.svg",
  26832. extra: 237 / 225
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Normal",
  26839. height: math.unit(3 + 4 / 12, "feet"),
  26840. default: true
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26846. {
  26847. front: {
  26848. height: math.unit(5 + 10 / 12, "feet"),
  26849. weight: math.unit(197, "lb"),
  26850. name: "Front",
  26851. image: {
  26852. source: "./media/characters/jabaro/front.svg",
  26853. extra: 225 / 216,
  26854. bottom: 5.06 / 230
  26855. }
  26856. },
  26857. back: {
  26858. height: math.unit(5 + 10 / 12, "feet"),
  26859. weight: math.unit(197, "lb"),
  26860. name: "Back",
  26861. image: {
  26862. source: "./media/characters/jabaro/back.svg",
  26863. extra: 225 / 219,
  26864. bottom: 1.9 / 227
  26865. }
  26866. },
  26867. },
  26868. [
  26869. {
  26870. name: "Normal",
  26871. height: math.unit(5 + 10 / 12, "feet"),
  26872. default: true
  26873. },
  26874. ]
  26875. ))
  26876. characterMakers.push(() => makeCharacter(
  26877. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26878. {
  26879. front: {
  26880. height: math.unit(5 + 8 / 12, "feet"),
  26881. weight: math.unit(139, "lb"),
  26882. name: "Front",
  26883. image: {
  26884. source: "./media/characters/risa/front.svg",
  26885. extra: 270 / 260,
  26886. bottom: 11.2 / 282
  26887. }
  26888. },
  26889. back: {
  26890. height: math.unit(5 + 8 / 12, "feet"),
  26891. weight: math.unit(139, "lb"),
  26892. name: "Back",
  26893. image: {
  26894. source: "./media/characters/risa/back.svg",
  26895. extra: 264 / 255,
  26896. bottom: 4 / 268
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Normal",
  26903. height: math.unit(5 + 8 / 12, "feet"),
  26904. default: true
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26910. {
  26911. front: {
  26912. height: math.unit(2 + 11 / 12, "feet"),
  26913. weight: math.unit(30, "lb"),
  26914. name: "Front",
  26915. image: {
  26916. source: "./media/characters/weatley/front.svg",
  26917. bottom: 10.7 / 414,
  26918. extra: 403.5 / 362
  26919. }
  26920. },
  26921. back: {
  26922. height: math.unit(2 + 11 / 12, "feet"),
  26923. weight: math.unit(30, "lb"),
  26924. name: "Back",
  26925. image: {
  26926. source: "./media/characters/weatley/back.svg",
  26927. bottom: 10.7 / 414,
  26928. extra: 403.5 / 362
  26929. }
  26930. },
  26931. },
  26932. [
  26933. {
  26934. name: "Normal",
  26935. height: math.unit(2 + 11 / 12, "feet"),
  26936. default: true
  26937. },
  26938. ]
  26939. ))
  26940. characterMakers.push(() => makeCharacter(
  26941. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26942. {
  26943. front: {
  26944. height: math.unit(5 + 2 / 12, "feet"),
  26945. weight: math.unit(50, "kg"),
  26946. name: "Front",
  26947. image: {
  26948. source: "./media/characters/mercury-crescent/front.svg",
  26949. extra: 1088 / 1033,
  26950. bottom: 18.9 / 1109
  26951. }
  26952. },
  26953. },
  26954. [
  26955. {
  26956. name: "Normal",
  26957. height: math.unit(5 + 2 / 12, "feet"),
  26958. default: true
  26959. },
  26960. ]
  26961. ))
  26962. characterMakers.push(() => makeCharacter(
  26963. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26964. {
  26965. front: {
  26966. height: math.unit(2, "feet"),
  26967. weight: math.unit(15, "kg"),
  26968. name: "Front",
  26969. image: {
  26970. source: "./media/characters/diamond-jones/front.svg",
  26971. extra: 727/723,
  26972. bottom: 46/773
  26973. }
  26974. },
  26975. },
  26976. [
  26977. {
  26978. name: "Normal",
  26979. height: math.unit(2, "feet"),
  26980. default: true
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26986. {
  26987. front: {
  26988. height: math.unit(3, "feet"),
  26989. weight: math.unit(30, "kg"),
  26990. name: "Front",
  26991. image: {
  26992. source: "./media/characters/sweet-bit/front.svg",
  26993. extra: 675 / 567,
  26994. bottom: 27.7 / 703
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(3, "feet"),
  27002. default: true
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27008. {
  27009. side: {
  27010. height: math.unit(9.178, "feet"),
  27011. weight: math.unit(500, "lb"),
  27012. name: "Side",
  27013. image: {
  27014. source: "./media/characters/umbrazen/side.svg",
  27015. extra: 1730 / 1473,
  27016. bottom: 34.6 / 1765
  27017. }
  27018. },
  27019. },
  27020. [
  27021. {
  27022. name: "Normal",
  27023. height: math.unit(9.178, "feet"),
  27024. default: true
  27025. },
  27026. ]
  27027. ))
  27028. characterMakers.push(() => makeCharacter(
  27029. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27030. {
  27031. front: {
  27032. height: math.unit(10, "feet"),
  27033. weight: math.unit(750, "lb"),
  27034. name: "Front",
  27035. image: {
  27036. source: "./media/characters/arlist/front.svg",
  27037. extra: 961 / 778,
  27038. bottom: 6.2 / 986
  27039. }
  27040. },
  27041. },
  27042. [
  27043. {
  27044. name: "Normal",
  27045. height: math.unit(10, "feet"),
  27046. default: true
  27047. },
  27048. ]
  27049. ))
  27050. characterMakers.push(() => makeCharacter(
  27051. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27052. {
  27053. front: {
  27054. height: math.unit(5 + 1 / 12, "feet"),
  27055. weight: math.unit(110, "lb"),
  27056. name: "Front",
  27057. image: {
  27058. source: "./media/characters/aradel/front.svg",
  27059. extra: 324 / 303,
  27060. bottom: 3.6 / 329.4
  27061. }
  27062. },
  27063. },
  27064. [
  27065. {
  27066. name: "Normal",
  27067. height: math.unit(5 + 1 / 12, "feet"),
  27068. default: true
  27069. },
  27070. ]
  27071. ))
  27072. characterMakers.push(() => makeCharacter(
  27073. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27074. {
  27075. dressed: {
  27076. height: math.unit(3 + 8 / 12, "feet"),
  27077. weight: math.unit(50, "lb"),
  27078. name: "Dressed",
  27079. image: {
  27080. source: "./media/characters/serryn/dressed.svg",
  27081. extra: 1792 / 1656,
  27082. bottom: 43.5 / 1840
  27083. }
  27084. },
  27085. nude: {
  27086. height: math.unit(3 + 8 / 12, "feet"),
  27087. weight: math.unit(50, "lb"),
  27088. name: "Nude",
  27089. image: {
  27090. source: "./media/characters/serryn/nude.svg",
  27091. extra: 1792 / 1656,
  27092. bottom: 43.5 / 1840
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(3 + 8 / 12, "feet"),
  27100. default: true
  27101. },
  27102. ]
  27103. ))
  27104. characterMakers.push(() => makeCharacter(
  27105. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27106. {
  27107. front: {
  27108. height: math.unit(7 + 10 / 12, "feet"),
  27109. weight: math.unit(255, "lb"),
  27110. name: "Front",
  27111. image: {
  27112. source: "./media/characters/xavier-thyme/front.svg",
  27113. extra: 3733 / 3642,
  27114. bottom: 131 / 3869
  27115. }
  27116. },
  27117. frontRaven: {
  27118. height: math.unit(7 + 10 / 12, "feet"),
  27119. weight: math.unit(255, "lb"),
  27120. name: "Front (Raven)",
  27121. image: {
  27122. source: "./media/characters/xavier-thyme/front-raven.svg",
  27123. extra: 4385 / 3642,
  27124. bottom: 131 / 4517
  27125. }
  27126. },
  27127. },
  27128. [
  27129. {
  27130. name: "Normal",
  27131. height: math.unit(7 + 10 / 12, "feet"),
  27132. default: true
  27133. },
  27134. ]
  27135. ))
  27136. characterMakers.push(() => makeCharacter(
  27137. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27138. {
  27139. front: {
  27140. height: math.unit(1.6, "m"),
  27141. weight: math.unit(50, "kg"),
  27142. name: "Front",
  27143. image: {
  27144. source: "./media/characters/kiki/front.svg",
  27145. extra: 4682 / 3610,
  27146. bottom: 115 / 4777
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(1.6, "meters"),
  27154. default: true
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(50, "m"),
  27163. weight: math.unit(500, "tonnes"),
  27164. name: "Front",
  27165. image: {
  27166. source: "./media/characters/ryoko/front.svg",
  27167. extra: 4632 / 3926,
  27168. bottom: 193 / 4823
  27169. }
  27170. },
  27171. },
  27172. [
  27173. {
  27174. name: "Normal",
  27175. height: math.unit(50, "meters"),
  27176. default: true
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27182. {
  27183. front: {
  27184. height: math.unit(30, "m"),
  27185. weight: math.unit(22, "tonnes"),
  27186. name: "Front",
  27187. image: {
  27188. source: "./media/characters/elio/front.svg",
  27189. extra: 4582 / 3720,
  27190. bottom: 236 / 4828
  27191. }
  27192. },
  27193. },
  27194. [
  27195. {
  27196. name: "Normal",
  27197. height: math.unit(30, "meters"),
  27198. default: true
  27199. },
  27200. ]
  27201. ))
  27202. characterMakers.push(() => makeCharacter(
  27203. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27204. {
  27205. front: {
  27206. height: math.unit(6 + 3 / 12, "feet"),
  27207. weight: math.unit(120, "lb"),
  27208. name: "Front",
  27209. image: {
  27210. source: "./media/characters/azura/front.svg",
  27211. extra: 1149 / 1135,
  27212. bottom: 45 / 1194
  27213. }
  27214. },
  27215. frontClothed: {
  27216. height: math.unit(6 + 3 / 12, "feet"),
  27217. weight: math.unit(120, "lb"),
  27218. name: "Front (Clothed)",
  27219. image: {
  27220. source: "./media/characters/azura/front-clothed.svg",
  27221. extra: 1149 / 1135,
  27222. bottom: 45 / 1194
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(6 + 3 / 12, "feet"),
  27230. default: true
  27231. },
  27232. {
  27233. name: "Macro",
  27234. height: math.unit(20 + 6 / 12, "feet")
  27235. },
  27236. {
  27237. name: "Megamacro",
  27238. height: math.unit(12, "miles")
  27239. },
  27240. {
  27241. name: "Gigamacro",
  27242. height: math.unit(10000, "miles")
  27243. },
  27244. {
  27245. name: "Teramacro",
  27246. height: math.unit(900000, "miles")
  27247. },
  27248. ]
  27249. ))
  27250. characterMakers.push(() => makeCharacter(
  27251. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27252. {
  27253. front: {
  27254. height: math.unit(12, "feet"),
  27255. weight: math.unit(1, "ton"),
  27256. capacity: math.unit(660000, "gallons"),
  27257. name: "Front",
  27258. image: {
  27259. source: "./media/characters/zeus/front.svg",
  27260. extra: 5005 / 4717,
  27261. bottom: 363 / 5388
  27262. }
  27263. },
  27264. },
  27265. [
  27266. {
  27267. name: "Normal",
  27268. height: math.unit(12, "feet")
  27269. },
  27270. {
  27271. name: "Preferred Size",
  27272. height: math.unit(0.5, "miles"),
  27273. default: true
  27274. },
  27275. {
  27276. name: "Giga Horse",
  27277. height: math.unit(300, "miles")
  27278. },
  27279. {
  27280. name: "Riding Planets",
  27281. height: math.unit(30, "megameters")
  27282. },
  27283. {
  27284. name: "Cosmic Giant",
  27285. height: math.unit(3, "zettameters")
  27286. },
  27287. {
  27288. name: "Breeding God",
  27289. height: math.unit(9.92e22, "yottameters")
  27290. },
  27291. ]
  27292. ))
  27293. characterMakers.push(() => makeCharacter(
  27294. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27295. {
  27296. side: {
  27297. height: math.unit(9, "feet"),
  27298. weight: math.unit(1500, "kg"),
  27299. name: "Side",
  27300. image: {
  27301. source: "./media/characters/fang/side.svg",
  27302. extra: 924 / 866,
  27303. bottom: 47.5 / 972.3
  27304. }
  27305. },
  27306. },
  27307. [
  27308. {
  27309. name: "Normal",
  27310. height: math.unit(9, "feet"),
  27311. default: true
  27312. },
  27313. {
  27314. name: "Macro",
  27315. height: math.unit(75 + 6 / 12, "feet")
  27316. },
  27317. {
  27318. name: "Teramacro",
  27319. height: math.unit(50000, "miles")
  27320. },
  27321. ]
  27322. ))
  27323. characterMakers.push(() => makeCharacter(
  27324. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27325. {
  27326. front: {
  27327. height: math.unit(10, "feet"),
  27328. weight: math.unit(2, "tons"),
  27329. name: "Front",
  27330. image: {
  27331. source: "./media/characters/rekhit/front.svg",
  27332. extra: 2796 / 2590,
  27333. bottom: 225 / 3022
  27334. }
  27335. },
  27336. },
  27337. [
  27338. {
  27339. name: "Normal",
  27340. height: math.unit(10, "feet"),
  27341. default: true
  27342. },
  27343. {
  27344. name: "Macro",
  27345. height: math.unit(500, "feet")
  27346. },
  27347. ]
  27348. ))
  27349. characterMakers.push(() => makeCharacter(
  27350. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27351. {
  27352. front: {
  27353. height: math.unit(7 + 6.451 / 12, "feet"),
  27354. weight: math.unit(310, "lb"),
  27355. name: "Front",
  27356. image: {
  27357. source: "./media/characters/dahlia-verrick/front.svg",
  27358. extra: 1488 / 1365,
  27359. bottom: 6.2 / 1495
  27360. }
  27361. },
  27362. back: {
  27363. height: math.unit(7 + 6.451 / 12, "feet"),
  27364. weight: math.unit(310, "lb"),
  27365. name: "Back",
  27366. image: {
  27367. source: "./media/characters/dahlia-verrick/back.svg",
  27368. extra: 1472 / 1351,
  27369. bottom: 5.28 / 1477
  27370. }
  27371. },
  27372. frontBusiness: {
  27373. height: math.unit(7 + 6.451 / 12, "feet"),
  27374. weight: math.unit(200, "lb"),
  27375. name: "Front (Business)",
  27376. image: {
  27377. source: "./media/characters/dahlia-verrick/front-business.svg",
  27378. extra: 1478 / 1381,
  27379. bottom: 5.5 / 1484
  27380. }
  27381. },
  27382. frontCasual: {
  27383. height: math.unit(7 + 6.451 / 12, "feet"),
  27384. weight: math.unit(200, "lb"),
  27385. name: "Front (Casual)",
  27386. image: {
  27387. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27388. extra: 1478 / 1381,
  27389. bottom: 5.5 / 1484
  27390. }
  27391. },
  27392. },
  27393. [
  27394. {
  27395. name: "Travel-Sized",
  27396. height: math.unit(7.45, "inches")
  27397. },
  27398. {
  27399. name: "Normal",
  27400. height: math.unit(7 + 6.451 / 12, "feet"),
  27401. default: true
  27402. },
  27403. {
  27404. name: "Hitting the Town",
  27405. height: math.unit(37 + 8 / 12, "feet")
  27406. },
  27407. {
  27408. name: "Stomp in the Suburbs",
  27409. height: math.unit(964 + 9.728 / 12, "feet")
  27410. },
  27411. {
  27412. name: "Sit on the City",
  27413. height: math.unit(61747 + 10.592 / 12, "feet")
  27414. },
  27415. {
  27416. name: "Glomp the Globe",
  27417. height: math.unit(252919327 + 4.832 / 12, "feet")
  27418. },
  27419. ]
  27420. ))
  27421. characterMakers.push(() => makeCharacter(
  27422. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27423. {
  27424. front: {
  27425. height: math.unit(6 + 4 / 12, "feet"),
  27426. weight: math.unit(320, "lb"),
  27427. name: "Front",
  27428. image: {
  27429. source: "./media/characters/balina-mahigan/front.svg",
  27430. extra: 447 / 428,
  27431. bottom: 18 / 466
  27432. }
  27433. },
  27434. back: {
  27435. height: math.unit(6 + 4 / 12, "feet"),
  27436. weight: math.unit(320, "lb"),
  27437. name: "Back",
  27438. image: {
  27439. source: "./media/characters/balina-mahigan/back.svg",
  27440. extra: 445 / 428,
  27441. bottom: 4.07 / 448
  27442. }
  27443. },
  27444. arm: {
  27445. height: math.unit(1.88, "feet"),
  27446. name: "Arm",
  27447. image: {
  27448. source: "./media/characters/balina-mahigan/arm.svg"
  27449. }
  27450. },
  27451. backPort: {
  27452. height: math.unit(0.685, "feet"),
  27453. name: "Back Port",
  27454. image: {
  27455. source: "./media/characters/balina-mahigan/back-port.svg"
  27456. }
  27457. },
  27458. hoofpaw: {
  27459. height: math.unit(1.41, "feet"),
  27460. name: "Hoofpaw",
  27461. image: {
  27462. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27463. }
  27464. },
  27465. leftHandBack: {
  27466. height: math.unit(0.938, "feet"),
  27467. name: "Left Hand (Back)",
  27468. image: {
  27469. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27470. }
  27471. },
  27472. leftHandFront: {
  27473. height: math.unit(0.938, "feet"),
  27474. name: "Left Hand (Front)",
  27475. image: {
  27476. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27477. }
  27478. },
  27479. rightHandBack: {
  27480. height: math.unit(0.95, "feet"),
  27481. name: "Right Hand (Back)",
  27482. image: {
  27483. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27484. }
  27485. },
  27486. rightHandFront: {
  27487. height: math.unit(0.95, "feet"),
  27488. name: "Right Hand (Front)",
  27489. image: {
  27490. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27491. }
  27492. },
  27493. },
  27494. [
  27495. {
  27496. name: "Normal",
  27497. height: math.unit(6 + 4 / 12, "feet"),
  27498. default: true
  27499. },
  27500. ]
  27501. ))
  27502. characterMakers.push(() => makeCharacter(
  27503. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27504. {
  27505. front: {
  27506. height: math.unit(6, "feet"),
  27507. weight: math.unit(320, "lb"),
  27508. name: "Front",
  27509. image: {
  27510. source: "./media/characters/balina-mejeri/front.svg",
  27511. extra: 517 / 488,
  27512. bottom: 44.2 / 561
  27513. }
  27514. },
  27515. },
  27516. [
  27517. {
  27518. name: "Normal",
  27519. height: math.unit(6 + 4 / 12, "feet")
  27520. },
  27521. {
  27522. name: "Business",
  27523. height: math.unit(155, "feet"),
  27524. default: true
  27525. },
  27526. ]
  27527. ))
  27528. characterMakers.push(() => makeCharacter(
  27529. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27530. {
  27531. kneeling: {
  27532. height: math.unit(6 + 4 / 12, "feet"),
  27533. weight: math.unit(300 * 20, "lb"),
  27534. name: "Kneeling",
  27535. image: {
  27536. source: "./media/characters/balbarian/kneeling.svg",
  27537. extra: 922 / 862,
  27538. bottom: 42.4 / 965
  27539. }
  27540. },
  27541. },
  27542. [
  27543. {
  27544. name: "Normal",
  27545. height: math.unit(6 + 4 / 12, "feet")
  27546. },
  27547. {
  27548. name: "Treasured",
  27549. height: math.unit(18 + 9 / 12, "feet"),
  27550. default: true
  27551. },
  27552. {
  27553. name: "Macro",
  27554. height: math.unit(900, "feet")
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(6 + 4 / 12, "feet"),
  27563. weight: math.unit(325, "lb"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/balina-amarini/front.svg",
  27567. extra: 415 / 403,
  27568. bottom: 19 / 433.4
  27569. }
  27570. },
  27571. back: {
  27572. height: math.unit(6 + 4 / 12, "feet"),
  27573. weight: math.unit(325, "lb"),
  27574. name: "Back",
  27575. image: {
  27576. source: "./media/characters/balina-amarini/back.svg",
  27577. extra: 415 / 403,
  27578. bottom: 13.5 / 432
  27579. }
  27580. },
  27581. overdrive: {
  27582. height: math.unit(6 + 4 / 12, "feet"),
  27583. weight: math.unit(400, "lb"),
  27584. name: "Overdrive",
  27585. image: {
  27586. source: "./media/characters/balina-amarini/overdrive.svg",
  27587. extra: 269 / 259,
  27588. bottom: 12 / 282
  27589. }
  27590. },
  27591. },
  27592. [
  27593. {
  27594. name: "Boom",
  27595. height: math.unit(9 + 10 / 12, "feet"),
  27596. default: true
  27597. },
  27598. {
  27599. name: "Macro",
  27600. height: math.unit(280, "feet")
  27601. },
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27606. {
  27607. goddess: {
  27608. height: math.unit(600, "feet"),
  27609. weight: math.unit(2000000, "tons"),
  27610. name: "Goddess",
  27611. image: {
  27612. source: "./media/characters/lady-kubwa/goddess.svg",
  27613. extra: 1240.5 / 1223,
  27614. bottom: 22 / 1263
  27615. }
  27616. },
  27617. goddesser: {
  27618. height: math.unit(900, "feet"),
  27619. weight: math.unit(20000000, "lb"),
  27620. name: "Goddess-er",
  27621. image: {
  27622. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27623. extra: 899 / 888,
  27624. bottom: 12.6 / 912
  27625. }
  27626. },
  27627. },
  27628. [
  27629. {
  27630. name: "Macro",
  27631. height: math.unit(600, "feet"),
  27632. default: true
  27633. },
  27634. {
  27635. name: "Megamacro",
  27636. height: math.unit(250, "miles")
  27637. },
  27638. ]
  27639. ))
  27640. characterMakers.push(() => makeCharacter(
  27641. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27642. {
  27643. front: {
  27644. height: math.unit(7 + 7 / 12, "feet"),
  27645. weight: math.unit(250, "lb"),
  27646. name: "Front",
  27647. image: {
  27648. source: "./media/characters/tala-grovehorn/front.svg",
  27649. extra: 2636 / 2525,
  27650. bottom: 147 / 2781
  27651. }
  27652. },
  27653. back: {
  27654. height: math.unit(7 + 7 / 12, "feet"),
  27655. weight: math.unit(250, "lb"),
  27656. name: "Back",
  27657. image: {
  27658. source: "./media/characters/tala-grovehorn/back.svg",
  27659. extra: 2635 / 2539,
  27660. bottom: 100 / 2732.8
  27661. }
  27662. },
  27663. mouth: {
  27664. height: math.unit(1.15, "feet"),
  27665. name: "Mouth",
  27666. image: {
  27667. source: "./media/characters/tala-grovehorn/mouth.svg"
  27668. }
  27669. },
  27670. dick: {
  27671. height: math.unit(2.36, "feet"),
  27672. name: "Dick",
  27673. image: {
  27674. source: "./media/characters/tala-grovehorn/dick.svg"
  27675. }
  27676. },
  27677. slit: {
  27678. height: math.unit(0.61, "feet"),
  27679. name: "Slit",
  27680. image: {
  27681. source: "./media/characters/tala-grovehorn/slit.svg"
  27682. }
  27683. },
  27684. },
  27685. [
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27690. {
  27691. front: {
  27692. height: math.unit(7 + 7 / 12, "feet"),
  27693. weight: math.unit(225, "lb"),
  27694. name: "Front",
  27695. image: {
  27696. source: "./media/characters/epona/front.svg",
  27697. extra: 2445 / 2290,
  27698. bottom: 251 / 2696
  27699. }
  27700. },
  27701. back: {
  27702. height: math.unit(7 + 7 / 12, "feet"),
  27703. weight: math.unit(225, "lb"),
  27704. name: "Back",
  27705. image: {
  27706. source: "./media/characters/epona/back.svg",
  27707. extra: 2546 / 2408,
  27708. bottom: 44 / 2589
  27709. }
  27710. },
  27711. genitals: {
  27712. height: math.unit(1.5, "feet"),
  27713. name: "Genitals",
  27714. image: {
  27715. source: "./media/characters/epona/genitals.svg"
  27716. }
  27717. },
  27718. },
  27719. [
  27720. {
  27721. name: "Normal",
  27722. height: math.unit(7 + 7 / 12, "feet"),
  27723. default: true
  27724. },
  27725. ]
  27726. ))
  27727. characterMakers.push(() => makeCharacter(
  27728. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27729. {
  27730. front: {
  27731. height: math.unit(7, "feet"),
  27732. weight: math.unit(518, "lb"),
  27733. name: "Front",
  27734. image: {
  27735. source: "./media/characters/avia-bloodbourn/front.svg",
  27736. extra: 1466 / 1350,
  27737. bottom: 65 / 1527
  27738. }
  27739. },
  27740. },
  27741. [
  27742. ]
  27743. ))
  27744. characterMakers.push(() => makeCharacter(
  27745. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27746. {
  27747. front: {
  27748. height: math.unit(9.35, "feet"),
  27749. weight: math.unit(600, "lb"),
  27750. name: "Front",
  27751. image: {
  27752. source: "./media/characters/amera/front.svg",
  27753. extra: 891 / 818,
  27754. bottom: 30 / 922.7
  27755. }
  27756. },
  27757. back: {
  27758. height: math.unit(9.35, "feet"),
  27759. weight: math.unit(600, "lb"),
  27760. name: "Back",
  27761. image: {
  27762. source: "./media/characters/amera/back.svg",
  27763. extra: 876 / 824,
  27764. bottom: 6.8 / 884
  27765. }
  27766. },
  27767. dick: {
  27768. height: math.unit(2.14, "feet"),
  27769. name: "Dick",
  27770. image: {
  27771. source: "./media/characters/amera/dick.svg"
  27772. }
  27773. },
  27774. },
  27775. [
  27776. {
  27777. name: "Normal",
  27778. height: math.unit(9.35, "feet"),
  27779. default: true
  27780. },
  27781. ]
  27782. ))
  27783. characterMakers.push(() => makeCharacter(
  27784. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27785. {
  27786. kneeling: {
  27787. height: math.unit(3 + 4 / 12, "feet"),
  27788. weight: math.unit(90, "lb"),
  27789. name: "Kneeling",
  27790. image: {
  27791. source: "./media/characters/rosewen/kneeling.svg",
  27792. extra: 1835 / 1571,
  27793. bottom: 27.7 / 1862
  27794. }
  27795. },
  27796. },
  27797. [
  27798. {
  27799. name: "Normal",
  27800. height: math.unit(3 + 4 / 12, "feet"),
  27801. default: true
  27802. },
  27803. ]
  27804. ))
  27805. characterMakers.push(() => makeCharacter(
  27806. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27807. {
  27808. front: {
  27809. height: math.unit(5 + 10 / 12, "feet"),
  27810. weight: math.unit(200, "lb"),
  27811. name: "Front",
  27812. image: {
  27813. source: "./media/characters/sabah/front.svg",
  27814. extra: 849 / 763,
  27815. bottom: 33.9 / 881
  27816. }
  27817. },
  27818. },
  27819. [
  27820. {
  27821. name: "Normal",
  27822. height: math.unit(5 + 10 / 12, "feet"),
  27823. default: true
  27824. },
  27825. ]
  27826. ))
  27827. characterMakers.push(() => makeCharacter(
  27828. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27829. {
  27830. front: {
  27831. height: math.unit(3 + 5 / 12, "feet"),
  27832. weight: math.unit(40, "kg"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/purple-flame/front.svg",
  27836. extra: 1577 / 1412,
  27837. bottom: 97 / 1694
  27838. }
  27839. },
  27840. frontDressed: {
  27841. height: math.unit(3 + 5 / 12, "feet"),
  27842. weight: math.unit(40, "kg"),
  27843. name: "Front (Dressed)",
  27844. image: {
  27845. source: "./media/characters/purple-flame/front-dressed.svg",
  27846. extra: 1577 / 1412,
  27847. bottom: 97 / 1694
  27848. }
  27849. },
  27850. headphones: {
  27851. height: math.unit(0.85, "feet"),
  27852. name: "Headphones",
  27853. image: {
  27854. source: "./media/characters/purple-flame/headphones.svg"
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Really Small",
  27861. height: math.unit(5, "cm")
  27862. },
  27863. {
  27864. name: "Micro",
  27865. height: math.unit(1 + 5 / 12, "feet")
  27866. },
  27867. {
  27868. name: "Normal",
  27869. height: math.unit(3 + 5 / 12, "feet"),
  27870. default: true
  27871. },
  27872. {
  27873. name: "Minimacro",
  27874. height: math.unit(125, "feet")
  27875. },
  27876. {
  27877. name: "Macro",
  27878. height: math.unit(0.5, "miles")
  27879. },
  27880. {
  27881. name: "Megamacro",
  27882. height: math.unit(50, "miles")
  27883. },
  27884. {
  27885. name: "Gigantic",
  27886. height: math.unit(750, "miles")
  27887. },
  27888. {
  27889. name: "Planetary",
  27890. height: math.unit(15000, "miles")
  27891. },
  27892. ]
  27893. ))
  27894. characterMakers.push(() => makeCharacter(
  27895. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27896. {
  27897. front: {
  27898. height: math.unit(14, "feet"),
  27899. weight: math.unit(959, "lb"),
  27900. name: "Front",
  27901. image: {
  27902. source: "./media/characters/arsenal/front.svg",
  27903. extra: 2357 / 2157,
  27904. bottom: 93 / 2458
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(14, "feet"),
  27912. default: true
  27913. },
  27914. ]
  27915. ))
  27916. characterMakers.push(() => makeCharacter(
  27917. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27918. {
  27919. front: {
  27920. height: math.unit(6, "feet"),
  27921. weight: math.unit(150, "lb"),
  27922. name: "Front",
  27923. image: {
  27924. source: "./media/characters/adira/front.svg",
  27925. extra: 1078 / 1029,
  27926. bottom: 87 / 1166
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Micro",
  27933. height: math.unit(4, "inches"),
  27934. default: true
  27935. },
  27936. {
  27937. name: "Macro",
  27938. height: math.unit(50, "feet")
  27939. },
  27940. ]
  27941. ))
  27942. characterMakers.push(() => makeCharacter(
  27943. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27944. {
  27945. front: {
  27946. height: math.unit(16, "feet"),
  27947. weight: math.unit(1000, "lb"),
  27948. name: "Front",
  27949. image: {
  27950. source: "./media/characters/grim/front.svg",
  27951. extra: 622 / 614,
  27952. bottom: 18.1 / 642
  27953. }
  27954. },
  27955. back: {
  27956. height: math.unit(16, "feet"),
  27957. weight: math.unit(1000, "lb"),
  27958. name: "Back",
  27959. image: {
  27960. source: "./media/characters/grim/back.svg",
  27961. extra: 610.6 / 602,
  27962. bottom: 40.8 / 652
  27963. }
  27964. },
  27965. hunched: {
  27966. height: math.unit(9.75, "feet"),
  27967. weight: math.unit(1000, "lb"),
  27968. name: "Hunched",
  27969. image: {
  27970. source: "./media/characters/grim/hunched.svg",
  27971. extra: 304 / 297,
  27972. bottom: 35.4 / 394
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Normal",
  27979. height: math.unit(16, "feet"),
  27980. default: true
  27981. },
  27982. ]
  27983. ))
  27984. characterMakers.push(() => makeCharacter(
  27985. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27986. {
  27987. front: {
  27988. height: math.unit(2.3, "meters"),
  27989. weight: math.unit(300, "lb"),
  27990. name: "Front",
  27991. image: {
  27992. source: "./media/characters/sinja/front-sfw.svg",
  27993. extra: 1393 / 1294,
  27994. bottom: 70 / 1463
  27995. }
  27996. },
  27997. frontNsfw: {
  27998. height: math.unit(2.3, "meters"),
  27999. weight: math.unit(300, "lb"),
  28000. name: "Front (NSFW)",
  28001. image: {
  28002. source: "./media/characters/sinja/front-nsfw.svg",
  28003. extra: 1393 / 1294,
  28004. bottom: 70 / 1463
  28005. }
  28006. },
  28007. back: {
  28008. height: math.unit(2.3, "meters"),
  28009. weight: math.unit(300, "lb"),
  28010. name: "Back",
  28011. image: {
  28012. source: "./media/characters/sinja/back.svg",
  28013. extra: 1393 / 1294,
  28014. bottom: 70 / 1463
  28015. }
  28016. },
  28017. head: {
  28018. height: math.unit(1.771, "feet"),
  28019. name: "Head",
  28020. image: {
  28021. source: "./media/characters/sinja/head.svg"
  28022. }
  28023. },
  28024. slit: {
  28025. height: math.unit(0.8, "feet"),
  28026. name: "Slit",
  28027. image: {
  28028. source: "./media/characters/sinja/slit.svg"
  28029. }
  28030. },
  28031. },
  28032. [
  28033. {
  28034. name: "Normal",
  28035. height: math.unit(2.3, "meters")
  28036. },
  28037. {
  28038. name: "Macro",
  28039. height: math.unit(91, "meters"),
  28040. default: true
  28041. },
  28042. {
  28043. name: "Megamacro",
  28044. height: math.unit(91440, "meters")
  28045. },
  28046. {
  28047. name: "Gigamacro",
  28048. height: math.unit(60960000, "meters")
  28049. },
  28050. {
  28051. name: "Teramacro",
  28052. height: math.unit(9144000000, "meters")
  28053. },
  28054. ]
  28055. ))
  28056. characterMakers.push(() => makeCharacter(
  28057. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28058. {
  28059. front: {
  28060. height: math.unit(1.7, "meters"),
  28061. weight: math.unit(130, "lb"),
  28062. name: "Front",
  28063. image: {
  28064. source: "./media/characters/kyu/front.svg",
  28065. extra: 415 / 395,
  28066. bottom: 5 / 420
  28067. }
  28068. },
  28069. head: {
  28070. height: math.unit(1.75, "feet"),
  28071. name: "Head",
  28072. image: {
  28073. source: "./media/characters/kyu/head.svg"
  28074. }
  28075. },
  28076. foot: {
  28077. height: math.unit(0.81, "feet"),
  28078. name: "Foot",
  28079. image: {
  28080. source: "./media/characters/kyu/foot.svg"
  28081. }
  28082. },
  28083. },
  28084. [
  28085. {
  28086. name: "Normal",
  28087. height: math.unit(1.7, "meters")
  28088. },
  28089. {
  28090. name: "Macro",
  28091. height: math.unit(131, "feet"),
  28092. default: true
  28093. },
  28094. {
  28095. name: "Megamacro",
  28096. height: math.unit(91440, "meters")
  28097. },
  28098. {
  28099. name: "Gigamacro",
  28100. height: math.unit(60960000, "meters")
  28101. },
  28102. {
  28103. name: "Teramacro",
  28104. height: math.unit(9144000000, "meters")
  28105. },
  28106. ]
  28107. ))
  28108. characterMakers.push(() => makeCharacter(
  28109. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28110. {
  28111. front: {
  28112. height: math.unit(7 + 1 / 12, "feet"),
  28113. weight: math.unit(250, "lb"),
  28114. name: "Front",
  28115. image: {
  28116. source: "./media/characters/joey/front.svg",
  28117. extra: 1791 / 1537,
  28118. bottom: 28 / 1816
  28119. }
  28120. },
  28121. },
  28122. [
  28123. {
  28124. name: "Micro",
  28125. height: math.unit(3, "inches")
  28126. },
  28127. {
  28128. name: "Normal",
  28129. height: math.unit(7 + 1 / 12, "feet"),
  28130. default: true
  28131. },
  28132. ]
  28133. ))
  28134. characterMakers.push(() => makeCharacter(
  28135. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28136. {
  28137. front: {
  28138. height: math.unit(165, "cm"),
  28139. weight: math.unit(140, "lb"),
  28140. name: "Front",
  28141. image: {
  28142. source: "./media/characters/sam-evans/front.svg",
  28143. extra: 3417 / 3230,
  28144. bottom: 41.3 / 3417
  28145. }
  28146. },
  28147. frontSixTails: {
  28148. height: math.unit(165, "cm"),
  28149. weight: math.unit(140, "lb"),
  28150. name: "Front-six-tails",
  28151. image: {
  28152. source: "./media/characters/sam-evans/front-six-tails.svg",
  28153. extra: 3417 / 3230,
  28154. bottom: 41.3 / 3417
  28155. }
  28156. },
  28157. back: {
  28158. height: math.unit(165, "cm"),
  28159. weight: math.unit(140, "lb"),
  28160. name: "Back",
  28161. image: {
  28162. source: "./media/characters/sam-evans/back.svg",
  28163. extra: 3227 / 3032,
  28164. bottom: 6.8 / 3234
  28165. }
  28166. },
  28167. face: {
  28168. height: math.unit(0.68, "feet"),
  28169. name: "Face",
  28170. image: {
  28171. source: "./media/characters/sam-evans/face.svg"
  28172. }
  28173. },
  28174. },
  28175. [
  28176. {
  28177. name: "Normal",
  28178. height: math.unit(165, "cm"),
  28179. default: true
  28180. },
  28181. {
  28182. name: "Macro",
  28183. height: math.unit(100, "meters")
  28184. },
  28185. {
  28186. name: "Macro+",
  28187. height: math.unit(800, "meters")
  28188. },
  28189. {
  28190. name: "Macro++",
  28191. height: math.unit(3, "km")
  28192. },
  28193. {
  28194. name: "Macro+++",
  28195. height: math.unit(30, "km")
  28196. },
  28197. ]
  28198. ))
  28199. characterMakers.push(() => makeCharacter(
  28200. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28201. {
  28202. front: {
  28203. height: math.unit(10, "feet"),
  28204. weight: math.unit(750, "lb"),
  28205. name: "Front",
  28206. image: {
  28207. source: "./media/characters/juliet-a/front.svg",
  28208. extra: 1766 / 1720,
  28209. bottom: 43 / 1809
  28210. }
  28211. },
  28212. back: {
  28213. height: math.unit(10, "feet"),
  28214. weight: math.unit(750, "lb"),
  28215. name: "Back",
  28216. image: {
  28217. source: "./media/characters/juliet-a/back.svg",
  28218. extra: 1781 / 1734,
  28219. bottom: 35 / 1810,
  28220. }
  28221. },
  28222. },
  28223. [
  28224. {
  28225. name: "Normal",
  28226. height: math.unit(10, "feet"),
  28227. default: true
  28228. },
  28229. {
  28230. name: "Dragon Form",
  28231. height: math.unit(250, "feet")
  28232. },
  28233. {
  28234. name: "Macro",
  28235. height: math.unit(1000, "feet")
  28236. },
  28237. {
  28238. name: "Megamacro",
  28239. height: math.unit(10000, "feet")
  28240. }
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28245. {
  28246. regular: {
  28247. height: math.unit(7 + 3 / 12, "feet"),
  28248. weight: math.unit(260, "lb"),
  28249. name: "Regular",
  28250. image: {
  28251. source: "./media/characters/wild/regular.svg",
  28252. extra: 97.45 / 92,
  28253. bottom: 6.8 / 104.3
  28254. }
  28255. },
  28256. biggums: {
  28257. height: math.unit(8 + 6 / 12, "feet"),
  28258. weight: math.unit(425, "lb"),
  28259. name: "Biggums",
  28260. image: {
  28261. source: "./media/characters/wild/biggums.svg",
  28262. extra: 97.45 / 92,
  28263. bottom: 7.5 / 132.34
  28264. }
  28265. },
  28266. mawRegular: {
  28267. height: math.unit(1.24, "feet"),
  28268. name: "Maw (Regular)",
  28269. image: {
  28270. source: "./media/characters/wild/maw.svg"
  28271. }
  28272. },
  28273. mawBiggums: {
  28274. height: math.unit(1.47, "feet"),
  28275. name: "Maw (Biggums)",
  28276. image: {
  28277. source: "./media/characters/wild/maw.svg"
  28278. }
  28279. },
  28280. },
  28281. [
  28282. {
  28283. name: "Normal",
  28284. height: math.unit(7 + 3 / 12, "feet"),
  28285. default: true
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28291. {
  28292. front: {
  28293. height: math.unit(2.5, "meters"),
  28294. weight: math.unit(200, "kg"),
  28295. name: "Front",
  28296. image: {
  28297. source: "./media/characters/vidar/front.svg",
  28298. extra: 2994 / 2795,
  28299. bottom: 56 / 3061
  28300. }
  28301. },
  28302. back: {
  28303. height: math.unit(2.5, "meters"),
  28304. weight: math.unit(200, "kg"),
  28305. name: "Back",
  28306. image: {
  28307. source: "./media/characters/vidar/back.svg",
  28308. extra: 3131 / 2928,
  28309. bottom: 13.5 / 3141.5
  28310. }
  28311. },
  28312. feral: {
  28313. height: math.unit(2.5, "meters"),
  28314. weight: math.unit(2000, "kg"),
  28315. name: "Feral",
  28316. image: {
  28317. source: "./media/characters/vidar/feral.svg",
  28318. extra: 2790 / 1765,
  28319. bottom: 6 / 2796
  28320. }
  28321. },
  28322. },
  28323. [
  28324. {
  28325. name: "Normal",
  28326. height: math.unit(2.5, "meters"),
  28327. default: true
  28328. },
  28329. {
  28330. name: "Macro",
  28331. height: math.unit(100, "meters")
  28332. },
  28333. ]
  28334. ))
  28335. characterMakers.push(() => makeCharacter(
  28336. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28337. {
  28338. front: {
  28339. height: math.unit(5 + 9 / 12, "feet"),
  28340. weight: math.unit(120, "lb"),
  28341. name: "Front",
  28342. image: {
  28343. source: "./media/characters/ash/front.svg",
  28344. extra: 2189 / 1961,
  28345. bottom: 5.2 / 2194
  28346. }
  28347. },
  28348. },
  28349. [
  28350. {
  28351. name: "Normal",
  28352. height: math.unit(5 + 9 / 12, "feet"),
  28353. default: true
  28354. },
  28355. ]
  28356. ))
  28357. characterMakers.push(() => makeCharacter(
  28358. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28359. {
  28360. front: {
  28361. height: math.unit(9, "feet"),
  28362. weight: math.unit(10000, "lb"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/gygabite/front.svg",
  28366. bottom: 31.7 / 537.8,
  28367. extra: 505 / 370
  28368. }
  28369. },
  28370. },
  28371. [
  28372. {
  28373. name: "Normal",
  28374. height: math.unit(9, "feet"),
  28375. default: true
  28376. },
  28377. ]
  28378. ))
  28379. characterMakers.push(() => makeCharacter(
  28380. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28381. {
  28382. front: {
  28383. height: math.unit(12, "feet"),
  28384. weight: math.unit(35000, "lb"),
  28385. name: "Front",
  28386. image: {
  28387. source: "./media/characters/p0tat0/front.svg",
  28388. extra: 1065 / 921,
  28389. bottom: 55.7 / 1121.25
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(12, "feet"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28403. {
  28404. side: {
  28405. height: math.unit(6.5, "feet"),
  28406. weight: math.unit(800, "lb"),
  28407. name: "Side",
  28408. image: {
  28409. source: "./media/characters/dusk/side.svg",
  28410. extra: 615 / 373,
  28411. bottom: 53 / 664
  28412. }
  28413. },
  28414. sitting: {
  28415. height: math.unit(7, "feet"),
  28416. weight: math.unit(800, "lb"),
  28417. name: "Sitting",
  28418. image: {
  28419. source: "./media/characters/dusk/sitting.svg",
  28420. extra: 753 / 425,
  28421. bottom: 33 / 774
  28422. }
  28423. },
  28424. head: {
  28425. height: math.unit(6.1, "feet"),
  28426. name: "Head",
  28427. image: {
  28428. source: "./media/characters/dusk/head.svg"
  28429. }
  28430. },
  28431. },
  28432. [
  28433. {
  28434. name: "Normal",
  28435. height: math.unit(7, "feet"),
  28436. default: true
  28437. },
  28438. ]
  28439. ))
  28440. characterMakers.push(() => makeCharacter(
  28441. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28442. {
  28443. front: {
  28444. height: math.unit(15, "feet"),
  28445. weight: math.unit(7000, "lb"),
  28446. name: "Front",
  28447. image: {
  28448. source: "./media/characters/jay-direwolf/front.svg",
  28449. extra: 1810 / 1732,
  28450. bottom: 66 / 1892
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(15, "feet"),
  28458. default: true
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28464. {
  28465. front: {
  28466. height: math.unit(4 + 9 / 12, "feet"),
  28467. weight: math.unit(130, "lb"),
  28468. name: "Front",
  28469. image: {
  28470. source: "./media/characters/anchovie/front.svg",
  28471. extra: 382 / 350,
  28472. bottom: 25 / 409
  28473. }
  28474. },
  28475. back: {
  28476. height: math.unit(4 + 9 / 12, "feet"),
  28477. weight: math.unit(130, "lb"),
  28478. name: "Back",
  28479. image: {
  28480. source: "./media/characters/anchovie/back.svg",
  28481. extra: 385 / 352,
  28482. bottom: 16.6 / 402
  28483. }
  28484. },
  28485. frontDressed: {
  28486. height: math.unit(4 + 9 / 12, "feet"),
  28487. weight: math.unit(130, "lb"),
  28488. name: "Front (Dressed)",
  28489. image: {
  28490. source: "./media/characters/anchovie/front-dressed.svg",
  28491. extra: 382 / 350,
  28492. bottom: 25 / 409
  28493. }
  28494. },
  28495. backDressed: {
  28496. height: math.unit(4 + 9 / 12, "feet"),
  28497. weight: math.unit(130, "lb"),
  28498. name: "Back (Dressed)",
  28499. image: {
  28500. source: "./media/characters/anchovie/back-dressed.svg",
  28501. extra: 385 / 352,
  28502. bottom: 16.6 / 402
  28503. }
  28504. },
  28505. },
  28506. [
  28507. {
  28508. name: "Micro",
  28509. height: math.unit(6.4, "inches")
  28510. },
  28511. {
  28512. name: "Normal",
  28513. height: math.unit(4 + 9 / 12, "feet"),
  28514. default: true
  28515. },
  28516. ]
  28517. ))
  28518. characterMakers.push(() => makeCharacter(
  28519. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28520. {
  28521. front: {
  28522. height: math.unit(2, "meters"),
  28523. weight: math.unit(180, "lb"),
  28524. name: "Front",
  28525. image: {
  28526. source: "./media/characters/acidrenamon/front.svg",
  28527. extra: 987 / 890,
  28528. bottom: 22.8 / 1009
  28529. }
  28530. },
  28531. back: {
  28532. height: math.unit(2, "meters"),
  28533. weight: math.unit(180, "lb"),
  28534. name: "Back",
  28535. image: {
  28536. source: "./media/characters/acidrenamon/back.svg",
  28537. extra: 983 / 891,
  28538. bottom: 8.4 / 992
  28539. }
  28540. },
  28541. head: {
  28542. height: math.unit(1.92, "feet"),
  28543. name: "Head",
  28544. image: {
  28545. source: "./media/characters/acidrenamon/head.svg"
  28546. }
  28547. },
  28548. rump: {
  28549. height: math.unit(1.72, "feet"),
  28550. name: "Rump",
  28551. image: {
  28552. source: "./media/characters/acidrenamon/rump.svg"
  28553. }
  28554. },
  28555. tail: {
  28556. height: math.unit(4.2, "feet"),
  28557. name: "Tail",
  28558. image: {
  28559. source: "./media/characters/acidrenamon/tail.svg"
  28560. }
  28561. },
  28562. },
  28563. [
  28564. {
  28565. name: "Normal",
  28566. height: math.unit(2, "meters"),
  28567. default: true
  28568. },
  28569. {
  28570. name: "Minimacro",
  28571. height: math.unit(7, "meters")
  28572. },
  28573. {
  28574. name: "Macro",
  28575. height: math.unit(200, "meters")
  28576. },
  28577. {
  28578. name: "Gigamacro",
  28579. height: math.unit(0.2, "earths")
  28580. },
  28581. ]
  28582. ))
  28583. characterMakers.push(() => makeCharacter(
  28584. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28585. {
  28586. front: {
  28587. height: math.unit(152, "feet"),
  28588. name: "Front",
  28589. image: {
  28590. source: "./media/characters/kenzie-lee/front.svg",
  28591. extra: 1869/1774,
  28592. bottom: 128/1997
  28593. }
  28594. },
  28595. side: {
  28596. height: math.unit(86, "feet"),
  28597. name: "Side",
  28598. image: {
  28599. source: "./media/characters/kenzie-lee/side.svg",
  28600. extra: 930/815,
  28601. bottom: 177/1107
  28602. }
  28603. },
  28604. paw: {
  28605. height: math.unit(15, "feet"),
  28606. name: "Paw",
  28607. image: {
  28608. source: "./media/characters/kenzie-lee/paw.svg"
  28609. }
  28610. },
  28611. },
  28612. [
  28613. {
  28614. name: "Kenzie Flea",
  28615. height: math.unit(2, "mm"),
  28616. default: true
  28617. },
  28618. {
  28619. name: "Micro",
  28620. height: math.unit(2, "inches")
  28621. },
  28622. {
  28623. name: "Normal",
  28624. height: math.unit(152, "feet")
  28625. },
  28626. {
  28627. name: "Megamacro",
  28628. height: math.unit(7, "miles")
  28629. },
  28630. {
  28631. name: "Gigamacro",
  28632. height: math.unit(8000, "miles")
  28633. },
  28634. ]
  28635. ))
  28636. characterMakers.push(() => makeCharacter(
  28637. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28638. {
  28639. front: {
  28640. height: math.unit(6, "feet"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/withers/front.svg",
  28644. extra: 1935/1760,
  28645. bottom: 72/2007
  28646. }
  28647. },
  28648. back: {
  28649. height: math.unit(6, "feet"),
  28650. name: "Back",
  28651. image: {
  28652. source: "./media/characters/withers/back.svg",
  28653. extra: 1944/1792,
  28654. bottom: 12/1956
  28655. }
  28656. },
  28657. dressed: {
  28658. height: math.unit(6, "feet"),
  28659. name: "Dressed",
  28660. image: {
  28661. source: "./media/characters/withers/dressed.svg",
  28662. extra: 1937/1765,
  28663. bottom: 73/2010
  28664. }
  28665. },
  28666. phase1: {
  28667. height: math.unit(1.1, "feet"),
  28668. name: "Phase 1",
  28669. image: {
  28670. source: "./media/characters/withers/phase-1.svg",
  28671. extra: 1885/1232,
  28672. bottom: 0/1885
  28673. }
  28674. },
  28675. phase2: {
  28676. height: math.unit(1.05, "feet"),
  28677. name: "Phase 2",
  28678. image: {
  28679. source: "./media/characters/withers/phase-2.svg",
  28680. extra: 1792/1090,
  28681. bottom: 0/1792
  28682. }
  28683. },
  28684. partyWipe: {
  28685. height: math.unit(1.1, "feet"),
  28686. name: "Party Wipe",
  28687. image: {
  28688. source: "./media/characters/withers/party-wipe.svg",
  28689. extra: 1864/1207,
  28690. bottom: 0/1864
  28691. }
  28692. },
  28693. },
  28694. [
  28695. {
  28696. name: "Macro",
  28697. height: math.unit(167, "feet"),
  28698. default: true
  28699. },
  28700. {
  28701. name: "Megamacro",
  28702. height: math.unit(15, "miles")
  28703. }
  28704. ]
  28705. ))
  28706. characterMakers.push(() => makeCharacter(
  28707. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28708. {
  28709. front: {
  28710. height: math.unit(6 + 7 / 12, "feet"),
  28711. weight: math.unit(250, "lb"),
  28712. name: "Front",
  28713. image: {
  28714. source: "./media/characters/nemoskii/front.svg",
  28715. extra: 2270 / 1734,
  28716. bottom: 86 / 2354
  28717. }
  28718. },
  28719. back: {
  28720. height: math.unit(6 + 7 / 12, "feet"),
  28721. weight: math.unit(250, "lb"),
  28722. name: "Back",
  28723. image: {
  28724. source: "./media/characters/nemoskii/back.svg",
  28725. extra: 1845 / 1788,
  28726. bottom: 10.5 / 1852
  28727. }
  28728. },
  28729. head: {
  28730. height: math.unit(1.31, "feet"),
  28731. name: "Head",
  28732. image: {
  28733. source: "./media/characters/nemoskii/head.svg"
  28734. }
  28735. },
  28736. },
  28737. [
  28738. {
  28739. name: "Micro",
  28740. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28741. },
  28742. {
  28743. name: "Normal",
  28744. height: math.unit(6 + 7 / 12, "feet"),
  28745. default: true
  28746. },
  28747. {
  28748. name: "Macro",
  28749. height: math.unit((6 + 7 / 12) * 150, "feet")
  28750. },
  28751. {
  28752. name: "Macro+",
  28753. height: math.unit((6 + 7 / 12) * 500, "feet")
  28754. },
  28755. {
  28756. name: "Megamacro",
  28757. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28763. {
  28764. front: {
  28765. height: math.unit(1, "mile"),
  28766. weight: math.unit(265261.9, "lb"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/shui/front.svg",
  28770. extra: 1633 / 1564,
  28771. bottom: 91.5 / 1726
  28772. }
  28773. },
  28774. },
  28775. [
  28776. {
  28777. name: "Macro",
  28778. height: math.unit(1, "mile"),
  28779. default: true
  28780. },
  28781. ]
  28782. ))
  28783. characterMakers.push(() => makeCharacter(
  28784. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28785. {
  28786. front: {
  28787. height: math.unit(12 + 6 / 12, "feet"),
  28788. weight: math.unit(1342, "lb"),
  28789. name: "Front",
  28790. image: {
  28791. source: "./media/characters/arokh-takakura/front.svg",
  28792. extra: 1089 / 1043,
  28793. bottom: 77.4 / 1176.7
  28794. }
  28795. },
  28796. back: {
  28797. height: math.unit(12 + 6 / 12, "feet"),
  28798. weight: math.unit(1342, "lb"),
  28799. name: "Back",
  28800. image: {
  28801. source: "./media/characters/arokh-takakura/back.svg",
  28802. extra: 1046 / 1019,
  28803. bottom: 102 / 1150
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Big",
  28810. height: math.unit(12 + 6 / 12, "feet"),
  28811. default: true
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28817. {
  28818. front: {
  28819. height: math.unit(5 + 6 / 12, "feet"),
  28820. weight: math.unit(150, "lb"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/theo/front.svg",
  28824. extra: 1184 / 1131,
  28825. bottom: 7.4 / 1191
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Micro",
  28832. height: math.unit(5, "inches")
  28833. },
  28834. {
  28835. name: "Normal",
  28836. height: math.unit(5 + 6 / 12, "feet"),
  28837. default: true
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(5 + 9 / 12, "feet"),
  28846. weight: math.unit(130, "lb"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/cecelia-swift/front.svg",
  28850. extra: 502 / 484,
  28851. bottom: 23 / 523
  28852. }
  28853. },
  28854. back: {
  28855. height: math.unit(5 + 9 / 12, "feet"),
  28856. weight: math.unit(130, "lb"),
  28857. name: "Back",
  28858. image: {
  28859. source: "./media/characters/cecelia-swift/back.svg",
  28860. extra: 499 / 485,
  28861. bottom: 12 / 511
  28862. }
  28863. },
  28864. head: {
  28865. height: math.unit(0.90, "feet"),
  28866. name: "Head",
  28867. image: {
  28868. source: "./media/characters/cecelia-swift/head.svg"
  28869. }
  28870. },
  28871. rump: {
  28872. height: math.unit(1.75, "feet"),
  28873. name: "Rump",
  28874. image: {
  28875. source: "./media/characters/cecelia-swift/rump.svg"
  28876. }
  28877. },
  28878. },
  28879. [
  28880. {
  28881. name: "Normal",
  28882. height: math.unit(5 + 9 / 12, "feet"),
  28883. default: true
  28884. },
  28885. {
  28886. name: "Big",
  28887. height: math.unit(50, "feet")
  28888. },
  28889. {
  28890. name: "Macro",
  28891. height: math.unit(100, "feet")
  28892. },
  28893. {
  28894. name: "Macro+",
  28895. height: math.unit(500, "feet")
  28896. },
  28897. {
  28898. name: "Macro++",
  28899. height: math.unit(1000, "feet")
  28900. },
  28901. ]
  28902. ))
  28903. characterMakers.push(() => makeCharacter(
  28904. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28905. {
  28906. front: {
  28907. height: math.unit(6, "feet"),
  28908. weight: math.unit(150, "lb"),
  28909. name: "Front",
  28910. image: {
  28911. source: "./media/characters/kaunan/front.svg",
  28912. extra: 2890 / 2523,
  28913. bottom: 49 / 2939
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Macro",
  28920. height: math.unit(150, "feet"),
  28921. default: true
  28922. },
  28923. ]
  28924. ))
  28925. characterMakers.push(() => makeCharacter(
  28926. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28927. {
  28928. front: {
  28929. height: math.unit(175, "cm"),
  28930. weight: math.unit(60, "kg"),
  28931. name: "Front",
  28932. image: {
  28933. source: "./media/characters/fei/front.svg",
  28934. extra: 1873/1723,
  28935. bottom: 53/1926
  28936. }
  28937. },
  28938. },
  28939. [
  28940. {
  28941. name: "Mortal",
  28942. height: math.unit(175, "cm")
  28943. },
  28944. {
  28945. name: "Normal",
  28946. height: math.unit(3500, "m"),
  28947. default: true
  28948. },
  28949. {
  28950. name: "Stroll",
  28951. height: math.unit(17.5, "km")
  28952. },
  28953. {
  28954. name: "Showoff",
  28955. height: math.unit(175, "km")
  28956. },
  28957. ]
  28958. ))
  28959. characterMakers.push(() => makeCharacter(
  28960. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28961. {
  28962. front: {
  28963. height: math.unit(7, "feet"),
  28964. weight: math.unit(1000, "kg"),
  28965. name: "Front",
  28966. image: {
  28967. source: "./media/characters/edrax/front.svg",
  28968. extra: 2838 / 2550,
  28969. bottom: 130 / 2968
  28970. }
  28971. },
  28972. },
  28973. [
  28974. {
  28975. name: "Small",
  28976. height: math.unit(7, "feet")
  28977. },
  28978. {
  28979. name: "Normal",
  28980. height: math.unit(1500, "meters")
  28981. },
  28982. {
  28983. name: "Mega",
  28984. height: math.unit(12000000, "km"),
  28985. default: true
  28986. },
  28987. {
  28988. name: "Megamacro",
  28989. height: math.unit(10600000, "lightyears")
  28990. },
  28991. {
  28992. name: "Hypermacro",
  28993. height: math.unit(256, "yottameters")
  28994. },
  28995. ]
  28996. ))
  28997. characterMakers.push(() => makeCharacter(
  28998. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28999. {
  29000. front: {
  29001. height: math.unit(10, "feet"),
  29002. weight: math.unit(750, "lb"),
  29003. name: "Front",
  29004. image: {
  29005. source: "./media/characters/clove/front.svg",
  29006. extra: 1918/1751,
  29007. bottom: 52/1970
  29008. }
  29009. },
  29010. back: {
  29011. height: math.unit(10, "feet"),
  29012. weight: math.unit(750, "lb"),
  29013. name: "Back",
  29014. image: {
  29015. source: "./media/characters/clove/back.svg",
  29016. extra: 1912/1747,
  29017. bottom: 50/1962
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Normal",
  29024. height: math.unit(10, "feet"),
  29025. default: true
  29026. },
  29027. ]
  29028. ))
  29029. characterMakers.push(() => makeCharacter(
  29030. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29031. {
  29032. front: {
  29033. height: math.unit(4, "feet"),
  29034. weight: math.unit(50, "lb"),
  29035. name: "Front",
  29036. image: {
  29037. source: "./media/characters/alex-rabbit/front.svg",
  29038. extra: 507 / 458,
  29039. bottom: 18.5 / 527
  29040. }
  29041. },
  29042. back: {
  29043. height: math.unit(4, "feet"),
  29044. weight: math.unit(50, "lb"),
  29045. name: "Back",
  29046. image: {
  29047. source: "./media/characters/alex-rabbit/back.svg",
  29048. extra: 502 / 460,
  29049. bottom: 18.9 / 521
  29050. }
  29051. },
  29052. },
  29053. [
  29054. {
  29055. name: "Normal",
  29056. height: math.unit(4, "feet"),
  29057. default: true
  29058. },
  29059. ]
  29060. ))
  29061. characterMakers.push(() => makeCharacter(
  29062. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29063. {
  29064. front: {
  29065. height: math.unit(1 + 3 / 12, "feet"),
  29066. weight: math.unit(80, "lb"),
  29067. name: "Front",
  29068. image: {
  29069. source: "./media/characters/zander-rose/front.svg",
  29070. extra: 916 / 797,
  29071. bottom: 17 / 933
  29072. }
  29073. },
  29074. back: {
  29075. height: math.unit(1 + 3 / 12, "feet"),
  29076. weight: math.unit(80, "lb"),
  29077. name: "Back",
  29078. image: {
  29079. source: "./media/characters/zander-rose/back.svg",
  29080. extra: 903 / 779,
  29081. bottom: 31 / 934
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Normal",
  29088. height: math.unit(1 + 3 / 12, "feet"),
  29089. default: true
  29090. },
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29095. {
  29096. anthro: {
  29097. height: math.unit(6, "feet"),
  29098. weight: math.unit(150, "lb"),
  29099. name: "Anthro",
  29100. image: {
  29101. source: "./media/characters/razz/anthro.svg",
  29102. extra: 1437 / 1343,
  29103. bottom: 48 / 1485
  29104. }
  29105. },
  29106. feral: {
  29107. height: math.unit(6, "feet"),
  29108. weight: math.unit(150, "lb"),
  29109. name: "Feral",
  29110. image: {
  29111. source: "./media/characters/razz/feral.svg",
  29112. extra: 2569 / 1385,
  29113. bottom: 95 / 2664
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Normal",
  29120. height: math.unit(6, "feet"),
  29121. default: true
  29122. },
  29123. ]
  29124. ))
  29125. characterMakers.push(() => makeCharacter(
  29126. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29127. {
  29128. front: {
  29129. height: math.unit(9 + 4 / 12, "feet"),
  29130. weight: math.unit(500, "lb"),
  29131. name: "Front",
  29132. image: {
  29133. source: "./media/characters/morrigan/front.svg",
  29134. extra: 2707 / 2579,
  29135. bottom: 156 / 2863
  29136. }
  29137. },
  29138. },
  29139. [
  29140. {
  29141. name: "Normal",
  29142. height: math.unit(9 + 4 / 12, "feet"),
  29143. default: true
  29144. },
  29145. ]
  29146. ))
  29147. characterMakers.push(() => makeCharacter(
  29148. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29149. {
  29150. front: {
  29151. height: math.unit(5, "stories"),
  29152. weight: math.unit(4000, "lb"),
  29153. name: "Front",
  29154. image: {
  29155. source: "./media/characters/jenene/front.svg",
  29156. extra: 1780 / 1710,
  29157. bottom: 57 / 1837
  29158. }
  29159. },
  29160. },
  29161. [
  29162. {
  29163. name: "Normal",
  29164. height: math.unit(5, "stories"),
  29165. default: true
  29166. },
  29167. ]
  29168. ))
  29169. characterMakers.push(() => makeCharacter(
  29170. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29171. {
  29172. taurSfw: {
  29173. height: math.unit(10, "meters"),
  29174. weight: math.unit(17500, "kg"),
  29175. name: "Taur",
  29176. image: {
  29177. source: "./media/characters/faey/taur-sfw.svg",
  29178. extra: 1200 / 968,
  29179. bottom: 41 / 1241
  29180. }
  29181. },
  29182. chestmaw: {
  29183. height: math.unit(2.01, "meters"),
  29184. name: "Chestmaw",
  29185. image: {
  29186. source: "./media/characters/faey/chestmaw.svg"
  29187. }
  29188. },
  29189. foot: {
  29190. height: math.unit(2.43, "meters"),
  29191. name: "Foot",
  29192. image: {
  29193. source: "./media/characters/faey/foot.svg"
  29194. }
  29195. },
  29196. jaws: {
  29197. height: math.unit(1.66, "meters"),
  29198. name: "Jaws",
  29199. image: {
  29200. source: "./media/characters/faey/jaws.svg"
  29201. }
  29202. },
  29203. tongues: {
  29204. height: math.unit(2.01, "meters"),
  29205. name: "Tongues",
  29206. image: {
  29207. source: "./media/characters/faey/tongues.svg"
  29208. }
  29209. },
  29210. },
  29211. [
  29212. {
  29213. name: "Small",
  29214. height: math.unit(10, "meters"),
  29215. default: true
  29216. },
  29217. {
  29218. name: "Big",
  29219. height: math.unit(500000, "km")
  29220. },
  29221. ]
  29222. ))
  29223. characterMakers.push(() => makeCharacter(
  29224. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29225. {
  29226. front: {
  29227. height: math.unit(7, "feet"),
  29228. weight: math.unit(275, "lb"),
  29229. name: "Front",
  29230. image: {
  29231. source: "./media/characters/roku/front.svg",
  29232. extra: 903 / 878,
  29233. bottom: 37 / 940
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "Normal",
  29240. height: math.unit(7, "feet"),
  29241. default: true
  29242. },
  29243. {
  29244. name: "Macro",
  29245. height: math.unit(500, "feet")
  29246. },
  29247. {
  29248. name: "Megamacro",
  29249. height: math.unit(200, "miles")
  29250. },
  29251. ]
  29252. ))
  29253. characterMakers.push(() => makeCharacter(
  29254. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29255. {
  29256. front: {
  29257. height: math.unit(6 + 2 / 12, "feet"),
  29258. weight: math.unit(150, "lb"),
  29259. name: "Front",
  29260. image: {
  29261. source: "./media/characters/lira/front.svg",
  29262. extra: 1727 / 1605,
  29263. bottom: 26 / 1753
  29264. }
  29265. },
  29266. back: {
  29267. height: math.unit(6 + 2 / 12, "feet"),
  29268. weight: math.unit(150, "lb"),
  29269. name: "Back",
  29270. image: {
  29271. source: "./media/characters/lira/back.svg",
  29272. extra: 1713/1621,
  29273. bottom: 20/1733
  29274. }
  29275. },
  29276. hand: {
  29277. height: math.unit(0.75, "feet"),
  29278. name: "Hand",
  29279. image: {
  29280. source: "./media/characters/lira/hand.svg"
  29281. }
  29282. },
  29283. maw: {
  29284. height: math.unit(0.65, "feet"),
  29285. name: "Maw",
  29286. image: {
  29287. source: "./media/characters/lira/maw.svg"
  29288. }
  29289. },
  29290. pawDigi: {
  29291. height: math.unit(1.6, "feet"),
  29292. name: "Paw Digi",
  29293. image: {
  29294. source: "./media/characters/lira/paw-digi.svg"
  29295. }
  29296. },
  29297. pawPlanti: {
  29298. height: math.unit(1.4, "feet"),
  29299. name: "Paw Planti",
  29300. image: {
  29301. source: "./media/characters/lira/paw-planti.svg"
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Normal",
  29308. height: math.unit(6 + 2 / 12, "feet"),
  29309. default: true
  29310. },
  29311. {
  29312. name: "Macro",
  29313. height: math.unit(100, "feet")
  29314. },
  29315. {
  29316. name: "Macro²",
  29317. height: math.unit(1600, "feet")
  29318. },
  29319. {
  29320. name: "Planetary",
  29321. height: math.unit(20, "earths")
  29322. },
  29323. ]
  29324. ))
  29325. characterMakers.push(() => makeCharacter(
  29326. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29327. {
  29328. front: {
  29329. height: math.unit(6, "feet"),
  29330. weight: math.unit(150, "lb"),
  29331. name: "Front",
  29332. image: {
  29333. source: "./media/characters/hadjet/front.svg",
  29334. extra: 1480 / 1346,
  29335. bottom: 26 / 1506
  29336. }
  29337. },
  29338. frontNsfw: {
  29339. height: math.unit(6, "feet"),
  29340. weight: math.unit(150, "lb"),
  29341. name: "Front (NSFW)",
  29342. image: {
  29343. source: "./media/characters/hadjet/front-nsfw.svg",
  29344. extra: 1440 / 1358,
  29345. bottom: 52 / 1492
  29346. }
  29347. },
  29348. },
  29349. [
  29350. {
  29351. name: "Macro",
  29352. height: math.unit(10, "stories"),
  29353. default: true
  29354. },
  29355. {
  29356. name: "Megamacro",
  29357. height: math.unit(1.5, "miles")
  29358. },
  29359. {
  29360. name: "Megamacro+",
  29361. height: math.unit(5, "miles")
  29362. },
  29363. ]
  29364. ))
  29365. characterMakers.push(() => makeCharacter(
  29366. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29367. {
  29368. side: {
  29369. height: math.unit(106, "feet"),
  29370. weight: math.unit(500, "tonnes"),
  29371. name: "Side",
  29372. image: {
  29373. source: "./media/characters/kodran/side.svg",
  29374. extra: 553 / 480,
  29375. bottom: 33 / 586
  29376. }
  29377. },
  29378. front: {
  29379. height: math.unit(132, "feet"),
  29380. weight: math.unit(500, "tonnes"),
  29381. name: "Front",
  29382. image: {
  29383. source: "./media/characters/kodran/front.svg",
  29384. extra: 667 / 643,
  29385. bottom: 42 / 709
  29386. }
  29387. },
  29388. flying: {
  29389. height: math.unit(350, "feet"),
  29390. weight: math.unit(500, "tonnes"),
  29391. name: "Flying",
  29392. image: {
  29393. source: "./media/characters/kodran/flying.svg"
  29394. }
  29395. },
  29396. foot: {
  29397. height: math.unit(33, "feet"),
  29398. name: "Foot",
  29399. image: {
  29400. source: "./media/characters/kodran/foot.svg"
  29401. }
  29402. },
  29403. footFront: {
  29404. height: math.unit(19, "feet"),
  29405. name: "Foot (Front)",
  29406. image: {
  29407. source: "./media/characters/kodran/foot-front.svg",
  29408. extra: 261 / 261,
  29409. bottom: 91 / 352
  29410. }
  29411. },
  29412. headFront: {
  29413. height: math.unit(53, "feet"),
  29414. name: "Head (Front)",
  29415. image: {
  29416. source: "./media/characters/kodran/head-front.svg"
  29417. }
  29418. },
  29419. headSide: {
  29420. height: math.unit(65, "feet"),
  29421. name: "Head (Side)",
  29422. image: {
  29423. source: "./media/characters/kodran/head-side.svg"
  29424. }
  29425. },
  29426. throat: {
  29427. height: math.unit(79, "feet"),
  29428. name: "Throat",
  29429. image: {
  29430. source: "./media/characters/kodran/throat.svg"
  29431. }
  29432. },
  29433. },
  29434. [
  29435. {
  29436. name: "Large",
  29437. height: math.unit(106, "feet"),
  29438. default: true
  29439. },
  29440. ]
  29441. ))
  29442. characterMakers.push(() => makeCharacter(
  29443. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29444. {
  29445. side: {
  29446. height: math.unit(11, "feet"),
  29447. weight: math.unit(150, "lb"),
  29448. name: "Side",
  29449. image: {
  29450. source: "./media/characters/pyxaron/side.svg",
  29451. extra: 305 / 195,
  29452. bottom: 17 / 322
  29453. }
  29454. },
  29455. },
  29456. [
  29457. {
  29458. name: "Normal",
  29459. height: math.unit(11, "feet"),
  29460. default: true
  29461. },
  29462. ]
  29463. ))
  29464. characterMakers.push(() => makeCharacter(
  29465. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29466. {
  29467. front: {
  29468. height: math.unit(6, "feet"),
  29469. weight: math.unit(150, "lb"),
  29470. name: "Front",
  29471. image: {
  29472. source: "./media/characters/meep/front.svg",
  29473. extra: 88 / 80,
  29474. bottom: 6 / 94
  29475. }
  29476. },
  29477. },
  29478. [
  29479. {
  29480. name: "Fun Sized",
  29481. height: math.unit(2, "inches"),
  29482. default: true
  29483. },
  29484. {
  29485. name: "Friend Sized",
  29486. height: math.unit(8, "inches")
  29487. },
  29488. ]
  29489. ))
  29490. characterMakers.push(() => makeCharacter(
  29491. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29492. {
  29493. front: {
  29494. height: math.unit(15, "feet"),
  29495. weight: math.unit(2500, "lb"),
  29496. name: "Front",
  29497. image: {
  29498. source: "./media/characters/holly-rabbit/front.svg",
  29499. extra: 1433 / 1233,
  29500. bottom: 125 / 1558
  29501. }
  29502. },
  29503. dick: {
  29504. height: math.unit(4.6, "feet"),
  29505. name: "Dick",
  29506. image: {
  29507. source: "./media/characters/holly-rabbit/dick.svg"
  29508. }
  29509. },
  29510. },
  29511. [
  29512. {
  29513. name: "Normal",
  29514. height: math.unit(15, "feet"),
  29515. default: true
  29516. },
  29517. {
  29518. name: "Macro",
  29519. height: math.unit(250, "feet")
  29520. },
  29521. {
  29522. name: "Macro+",
  29523. height: math.unit(2500, "feet")
  29524. },
  29525. ]
  29526. ))
  29527. characterMakers.push(() => makeCharacter(
  29528. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29529. {
  29530. front: {
  29531. height: math.unit(3.02, "meters"),
  29532. weight: math.unit(500, "kg"),
  29533. name: "Front",
  29534. image: {
  29535. source: "./media/characters/drena/front.svg",
  29536. extra: 282 / 243,
  29537. bottom: 8 / 290
  29538. }
  29539. },
  29540. side: {
  29541. height: math.unit(3.02, "meters"),
  29542. weight: math.unit(500, "kg"),
  29543. name: "Side",
  29544. image: {
  29545. source: "./media/characters/drena/side.svg",
  29546. extra: 280 / 245,
  29547. bottom: 10 / 290
  29548. }
  29549. },
  29550. back: {
  29551. height: math.unit(3.02, "meters"),
  29552. weight: math.unit(500, "kg"),
  29553. name: "Back",
  29554. image: {
  29555. source: "./media/characters/drena/back.svg",
  29556. extra: 278 / 243,
  29557. bottom: 2 / 280
  29558. }
  29559. },
  29560. foot: {
  29561. height: math.unit(0.75, "meters"),
  29562. name: "Foot",
  29563. image: {
  29564. source: "./media/characters/drena/foot.svg"
  29565. }
  29566. },
  29567. maw: {
  29568. height: math.unit(0.82, "meters"),
  29569. name: "Maw",
  29570. image: {
  29571. source: "./media/characters/drena/maw.svg"
  29572. }
  29573. },
  29574. eating: {
  29575. height: math.unit(0.75, "meters"),
  29576. name: "Eating",
  29577. image: {
  29578. source: "./media/characters/drena/eating.svg"
  29579. }
  29580. },
  29581. rump: {
  29582. height: math.unit(0.93, "meters"),
  29583. name: "Rump",
  29584. image: {
  29585. source: "./media/characters/drena/rump.svg"
  29586. }
  29587. },
  29588. },
  29589. [
  29590. {
  29591. name: "Normal",
  29592. height: math.unit(3.02, "meters"),
  29593. default: true
  29594. },
  29595. ]
  29596. ))
  29597. characterMakers.push(() => makeCharacter(
  29598. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29599. {
  29600. front: {
  29601. height: math.unit(6 + 4 / 12, "feet"),
  29602. weight: math.unit(250, "lb"),
  29603. name: "Front",
  29604. image: {
  29605. source: "./media/characters/remmyzilla/front.svg",
  29606. extra: 4033 / 3588,
  29607. bottom: 123 / 4156
  29608. }
  29609. },
  29610. back: {
  29611. height: math.unit(6 + 4 / 12, "feet"),
  29612. weight: math.unit(250, "lb"),
  29613. name: "Back",
  29614. image: {
  29615. source: "./media/characters/remmyzilla/back.svg",
  29616. extra: 2687 / 2555,
  29617. bottom: 48 / 2735
  29618. }
  29619. },
  29620. paw: {
  29621. height: math.unit(1.73, "feet"),
  29622. name: "Paw",
  29623. image: {
  29624. source: "./media/characters/remmyzilla/paw.svg"
  29625. }
  29626. },
  29627. maw: {
  29628. height: math.unit(1.73, "feet"),
  29629. name: "Maw",
  29630. image: {
  29631. source: "./media/characters/remmyzilla/maw.svg"
  29632. }
  29633. },
  29634. },
  29635. [
  29636. {
  29637. name: "Normal",
  29638. height: math.unit(6 + 4 / 12, "feet")
  29639. },
  29640. {
  29641. name: "Minimacro",
  29642. height: math.unit(12 + 8 / 12, "feet")
  29643. },
  29644. {
  29645. name: "Normal",
  29646. height: math.unit(640, "feet"),
  29647. default: true
  29648. },
  29649. {
  29650. name: "Megamacro",
  29651. height: math.unit(6400, "feet")
  29652. },
  29653. {
  29654. name: "Gigamacro",
  29655. height: math.unit(64000, "miles")
  29656. },
  29657. ]
  29658. ))
  29659. characterMakers.push(() => makeCharacter(
  29660. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29661. {
  29662. front: {
  29663. height: math.unit(2.5, "meters"),
  29664. weight: math.unit(300, "lb"),
  29665. name: "Front",
  29666. image: {
  29667. source: "./media/characters/lawrence/front.svg",
  29668. extra: 357 / 335,
  29669. bottom: 30 / 387
  29670. }
  29671. },
  29672. back: {
  29673. height: math.unit(2.5, "meters"),
  29674. weight: math.unit(300, "lb"),
  29675. name: "Back",
  29676. image: {
  29677. source: "./media/characters/lawrence/back.svg",
  29678. extra: 357 / 338,
  29679. bottom: 16 / 373
  29680. }
  29681. },
  29682. head: {
  29683. height: math.unit(0.9, "meter"),
  29684. name: "Head",
  29685. image: {
  29686. source: "./media/characters/lawrence/head.svg"
  29687. }
  29688. },
  29689. maw: {
  29690. height: math.unit(0.7, "meter"),
  29691. name: "Maw",
  29692. image: {
  29693. source: "./media/characters/lawrence/maw.svg"
  29694. }
  29695. },
  29696. footBottom: {
  29697. height: math.unit(0.5, "meter"),
  29698. name: "Foot (Bottom)",
  29699. image: {
  29700. source: "./media/characters/lawrence/foot-bottom.svg"
  29701. }
  29702. },
  29703. footTop: {
  29704. height: math.unit(0.5, "meter"),
  29705. name: "Foot (Top)",
  29706. image: {
  29707. source: "./media/characters/lawrence/foot-top.svg"
  29708. }
  29709. },
  29710. },
  29711. [
  29712. {
  29713. name: "Normal",
  29714. height: math.unit(2.5, "meters"),
  29715. default: true
  29716. },
  29717. {
  29718. name: "Macro",
  29719. height: math.unit(95, "meters")
  29720. },
  29721. {
  29722. name: "Megamacro",
  29723. height: math.unit(150, "km")
  29724. },
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29729. {
  29730. front: {
  29731. height: math.unit(4.2, "meters"),
  29732. name: "Front",
  29733. image: {
  29734. source: "./media/characters/sydney/front.svg",
  29735. extra: 1323 / 1277,
  29736. bottom: 111 / 1434
  29737. }
  29738. },
  29739. },
  29740. [
  29741. {
  29742. name: "Normal",
  29743. height: math.unit(4.2, "meters"),
  29744. default: true
  29745. },
  29746. ]
  29747. ))
  29748. characterMakers.push(() => makeCharacter(
  29749. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29750. {
  29751. back: {
  29752. height: math.unit(201, "feet"),
  29753. name: "Back",
  29754. image: {
  29755. source: "./media/characters/jessica/back.svg",
  29756. extra: 273 / 259,
  29757. bottom: 7 / 280
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Normal",
  29764. height: math.unit(201, "feet"),
  29765. default: true
  29766. },
  29767. {
  29768. name: "Megamacro",
  29769. height: math.unit(8, "miles")
  29770. },
  29771. ]
  29772. ))
  29773. characterMakers.push(() => makeCharacter(
  29774. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29775. {
  29776. side: {
  29777. height: math.unit(5.6, "m"),
  29778. weight: math.unit(8000, "kg"),
  29779. name: "Side",
  29780. image: {
  29781. source: "./media/characters/victoria/side.svg",
  29782. extra: 1542/1229,
  29783. bottom: 124/1666
  29784. }
  29785. },
  29786. maw: {
  29787. height: math.unit(7.14, "feet"),
  29788. name: "Maw",
  29789. image: {
  29790. source: "./media/characters/victoria/maw.svg"
  29791. }
  29792. },
  29793. },
  29794. [
  29795. {
  29796. name: "Normal",
  29797. height: math.unit(5.6, "m"),
  29798. default: true
  29799. },
  29800. ]
  29801. ))
  29802. characterMakers.push(() => makeCharacter(
  29803. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29804. {
  29805. front: {
  29806. height: math.unit(5 + 6 / 12, "feet"),
  29807. name: "Front",
  29808. image: {
  29809. source: "./media/characters/cat/front.svg",
  29810. extra: 1449/1295,
  29811. bottom: 34/1483
  29812. },
  29813. form: "cat",
  29814. default: true
  29815. },
  29816. back: {
  29817. height: math.unit(5 + 6 / 12, "feet"),
  29818. name: "Back",
  29819. image: {
  29820. source: "./media/characters/cat/back.svg",
  29821. extra: 1466/1301,
  29822. bottom: 19/1485
  29823. },
  29824. form: "cat"
  29825. },
  29826. taur: {
  29827. height: math.unit(7, "feet"),
  29828. name: "Taur",
  29829. image: {
  29830. source: "./media/characters/cat/taur.svg",
  29831. extra: 1389/1233,
  29832. bottom: 83/1472
  29833. },
  29834. form: "taur",
  29835. default: true
  29836. },
  29837. lucarioFront: {
  29838. height: math.unit(4, "feet"),
  29839. name: "Lucario (Front)",
  29840. image: {
  29841. source: "./media/characters/cat/lucario-front.svg",
  29842. extra: 1149/1019,
  29843. bottom: 84/1233
  29844. },
  29845. form: "lucario",
  29846. default: true
  29847. },
  29848. lucarioBack: {
  29849. height: math.unit(4, "feet"),
  29850. name: "Lucario (Back)",
  29851. image: {
  29852. source: "./media/characters/cat/lucario-back.svg",
  29853. extra: 1190/1059,
  29854. bottom: 33/1223
  29855. },
  29856. form: "lucario"
  29857. },
  29858. megaLucario: {
  29859. height: math.unit(4, "feet"),
  29860. name: "Mega Lucario",
  29861. image: {
  29862. source: "./media/characters/cat/mega-lucario.svg",
  29863. extra: 1515 / 1319,
  29864. bottom: 63 / 1578
  29865. },
  29866. form: "lucario"
  29867. },
  29868. nickit: {
  29869. height: math.unit(2, "feet"),
  29870. name: "Nickit",
  29871. image: {
  29872. source: "./media/characters/cat/nickit.svg",
  29873. extra: 1980 / 1585,
  29874. bottom: 102 / 2082
  29875. },
  29876. form: "nickit",
  29877. default: true
  29878. },
  29879. lopunnyFront: {
  29880. height: math.unit(5, "feet"),
  29881. name: "Lopunny (Front)",
  29882. image: {
  29883. source: "./media/characters/cat/lopunny-front.svg",
  29884. extra: 1782 / 1469,
  29885. bottom: 38 / 1820
  29886. },
  29887. form: "lopunny",
  29888. default: true
  29889. },
  29890. lopunnyBack: {
  29891. height: math.unit(5, "feet"),
  29892. name: "Lopunny (Back)",
  29893. image: {
  29894. source: "./media/characters/cat/lopunny-back.svg",
  29895. extra: 1660 / 1490,
  29896. bottom: 25 / 1685
  29897. },
  29898. form: "lopunny"
  29899. },
  29900. },
  29901. [
  29902. {
  29903. name: "Really small",
  29904. height: math.unit(1, "nm")
  29905. },
  29906. {
  29907. name: "Micro",
  29908. height: math.unit(5, "inches")
  29909. },
  29910. {
  29911. name: "Normal",
  29912. height: math.unit(5 + 6 / 12, "feet"),
  29913. default: true
  29914. },
  29915. {
  29916. name: "Macro",
  29917. height: math.unit(50, "feet")
  29918. },
  29919. {
  29920. name: "Macro+",
  29921. height: math.unit(150, "feet")
  29922. },
  29923. {
  29924. name: "Megamacro",
  29925. height: math.unit(100, "miles")
  29926. },
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29931. {
  29932. front: {
  29933. height: math.unit(63.4, "meters"),
  29934. weight: math.unit(3.28349e+6, "kilograms"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/kirina-violet/front.svg",
  29938. extra: 2812 / 2725,
  29939. bottom: 0 / 2812
  29940. }
  29941. },
  29942. back: {
  29943. height: math.unit(63.4, "meters"),
  29944. weight: math.unit(3.28349e+6, "kilograms"),
  29945. name: "Back",
  29946. image: {
  29947. source: "./media/characters/kirina-violet/back.svg",
  29948. extra: 2812 / 2725,
  29949. bottom: 0 / 2812
  29950. }
  29951. },
  29952. mouth: {
  29953. height: math.unit(4.35, "meters"),
  29954. name: "Mouth",
  29955. image: {
  29956. source: "./media/characters/kirina-violet/mouth.svg"
  29957. }
  29958. },
  29959. paw: {
  29960. height: math.unit(5.6, "meters"),
  29961. name: "Paw",
  29962. image: {
  29963. source: "./media/characters/kirina-violet/paw.svg"
  29964. }
  29965. },
  29966. tail: {
  29967. height: math.unit(18, "meters"),
  29968. name: "Tail",
  29969. image: {
  29970. source: "./media/characters/kirina-violet/tail.svg"
  29971. }
  29972. },
  29973. },
  29974. [
  29975. {
  29976. name: "Macro",
  29977. height: math.unit(63.4, "meters"),
  29978. default: true
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29984. {
  29985. front: {
  29986. height: math.unit(75, "feet"),
  29987. name: "Front",
  29988. image: {
  29989. source: "./media/characters/cat-gigachu/front.svg",
  29990. extra: 1239/1027,
  29991. bottom: 32/1271
  29992. }
  29993. },
  29994. back: {
  29995. height: math.unit(75, "feet"),
  29996. name: "Back",
  29997. image: {
  29998. source: "./media/characters/cat-gigachu/back.svg",
  29999. extra: 1229/1030,
  30000. bottom: 9/1238
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Dynamax",
  30007. height: math.unit(75, "feet"),
  30008. default: true
  30009. },
  30010. ]
  30011. ))
  30012. characterMakers.push(() => makeCharacter(
  30013. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30014. {
  30015. front: {
  30016. height: math.unit(6, "feet"),
  30017. weight: math.unit(150, "lb"),
  30018. name: "Front",
  30019. image: {
  30020. source: "./media/characters/sfaiyan/front.svg",
  30021. extra: 999 / 978,
  30022. bottom: 5 / 1004
  30023. }
  30024. },
  30025. },
  30026. [
  30027. {
  30028. name: "Normal",
  30029. height: math.unit(1.82, "meters")
  30030. },
  30031. {
  30032. name: "Giant",
  30033. height: math.unit(2.27, "km"),
  30034. default: true
  30035. },
  30036. ]
  30037. ))
  30038. characterMakers.push(() => makeCharacter(
  30039. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30040. {
  30041. front: {
  30042. height: math.unit(179, "cm"),
  30043. weight: math.unit(100, "kg"),
  30044. name: "Front",
  30045. image: {
  30046. source: "./media/characters/raunehkeli/front.svg",
  30047. extra: 1934 / 1926,
  30048. bottom: 0 / 1934
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Normal",
  30055. height: math.unit(179, "cm")
  30056. },
  30057. {
  30058. name: "Maximum",
  30059. height: math.unit(575, "meters"),
  30060. default: true
  30061. },
  30062. ]
  30063. ))
  30064. characterMakers.push(() => makeCharacter(
  30065. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30066. {
  30067. front: {
  30068. height: math.unit(6, "feet"),
  30069. weight: math.unit(150, "lb"),
  30070. name: "Front",
  30071. image: {
  30072. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30073. extra: 2625 / 2518,
  30074. bottom: 60 / 2685
  30075. }
  30076. },
  30077. },
  30078. [
  30079. {
  30080. name: "Normal",
  30081. height: math.unit(6 + 2 / 12, "feet")
  30082. },
  30083. {
  30084. name: "Macro",
  30085. height: math.unit(1180, "feet"),
  30086. default: true
  30087. },
  30088. ]
  30089. ))
  30090. characterMakers.push(() => makeCharacter(
  30091. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30092. {
  30093. front: {
  30094. height: math.unit(5 + 6 / 12, "feet"),
  30095. weight: math.unit(108, "lb"),
  30096. name: "Front",
  30097. image: {
  30098. source: "./media/characters/lilith-zott/front.svg",
  30099. extra: 2510 / 2238,
  30100. bottom: 100 / 2610
  30101. }
  30102. },
  30103. frontDressed: {
  30104. height: math.unit(5 + 6 / 12, "feet"),
  30105. weight: math.unit(108, "lb"),
  30106. name: "Front (Dressed)",
  30107. image: {
  30108. source: "./media/characters/lilith-zott/front-dressed.svg",
  30109. extra: 2510 / 2238,
  30110. bottom: 100 / 2610
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Normal",
  30117. height: math.unit(5 + 6 / 12, "feet")
  30118. },
  30119. {
  30120. name: "Macro",
  30121. height: math.unit(1030, "feet"),
  30122. default: true
  30123. },
  30124. ]
  30125. ))
  30126. characterMakers.push(() => makeCharacter(
  30127. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30128. {
  30129. front: {
  30130. height: math.unit(6, "feet"),
  30131. weight: math.unit(150, "lb"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30135. extra: 2567 / 2435,
  30136. bottom: 39 / 2606
  30137. }
  30138. },
  30139. frontSuper: {
  30140. height: math.unit(6, "feet"),
  30141. name: "Front (Super)",
  30142. image: {
  30143. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30144. extra: 2567 / 2435,
  30145. bottom: 39 / 2606
  30146. }
  30147. },
  30148. },
  30149. [
  30150. {
  30151. name: "Normal",
  30152. height: math.unit(5 + 10 / 12, "feet")
  30153. },
  30154. {
  30155. name: "Macro",
  30156. height: math.unit(1100, "feet"),
  30157. default: true
  30158. },
  30159. ]
  30160. ))
  30161. characterMakers.push(() => makeCharacter(
  30162. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30163. {
  30164. front: {
  30165. height: math.unit(100, "miles"),
  30166. name: "Front",
  30167. image: {
  30168. source: "./media/characters/sona/front.svg",
  30169. extra: 2433 / 2201,
  30170. bottom: 53 / 2486
  30171. }
  30172. },
  30173. foot: {
  30174. height: math.unit(16.1, "miles"),
  30175. name: "Foot",
  30176. image: {
  30177. source: "./media/characters/sona/foot.svg"
  30178. }
  30179. },
  30180. },
  30181. [
  30182. {
  30183. name: "Macro",
  30184. height: math.unit(100, "miles"),
  30185. default: true
  30186. },
  30187. ]
  30188. ))
  30189. characterMakers.push(() => makeCharacter(
  30190. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30191. {
  30192. front: {
  30193. height: math.unit(6, "feet"),
  30194. weight: math.unit(150, "lb"),
  30195. name: "Front",
  30196. image: {
  30197. source: "./media/characters/bailey/front.svg",
  30198. extra: 1778 / 1724,
  30199. bottom: 30 / 1808
  30200. }
  30201. },
  30202. },
  30203. [
  30204. {
  30205. name: "Micro",
  30206. height: math.unit(4, "inches")
  30207. },
  30208. {
  30209. name: "Normal",
  30210. height: math.unit(5 + 5 / 12, "feet"),
  30211. default: true
  30212. },
  30213. {
  30214. name: "Macro",
  30215. height: math.unit(250, "feet")
  30216. },
  30217. {
  30218. name: "Megamacro",
  30219. height: math.unit(100, "miles")
  30220. },
  30221. ]
  30222. ))
  30223. characterMakers.push(() => makeCharacter(
  30224. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30225. {
  30226. front: {
  30227. height: math.unit(5 + 2 / 12, "feet"),
  30228. weight: math.unit(120, "lb"),
  30229. name: "Front",
  30230. image: {
  30231. source: "./media/characters/snaps/front.svg",
  30232. extra: 2370 / 2177,
  30233. bottom: 48 / 2418
  30234. }
  30235. },
  30236. back: {
  30237. height: math.unit(5 + 2 / 12, "feet"),
  30238. weight: math.unit(120, "lb"),
  30239. name: "Back",
  30240. image: {
  30241. source: "./media/characters/snaps/back.svg",
  30242. extra: 2408 / 2258,
  30243. bottom: 15 / 2423
  30244. }
  30245. },
  30246. },
  30247. [
  30248. {
  30249. name: "Micro",
  30250. height: math.unit(9, "inches")
  30251. },
  30252. {
  30253. name: "Normal",
  30254. height: math.unit(5 + 2 / 12, "feet"),
  30255. default: true
  30256. },
  30257. {
  30258. name: "Mini Macro",
  30259. height: math.unit(10, "feet")
  30260. },
  30261. ]
  30262. ))
  30263. characterMakers.push(() => makeCharacter(
  30264. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30265. {
  30266. front: {
  30267. height: math.unit(1.8, "meters"),
  30268. weight: math.unit(85, "kg"),
  30269. name: "Front",
  30270. image: {
  30271. source: "./media/characters/azteck/front.svg",
  30272. extra: 2815 / 2625,
  30273. bottom: 89 / 2904
  30274. }
  30275. },
  30276. back: {
  30277. height: math.unit(1.8, "meters"),
  30278. weight: math.unit(85, "kg"),
  30279. name: "Back",
  30280. image: {
  30281. source: "./media/characters/azteck/back.svg",
  30282. extra: 2856 / 2648,
  30283. bottom: 85 / 2941
  30284. }
  30285. },
  30286. frontDressed: {
  30287. height: math.unit(1.8, "meters"),
  30288. weight: math.unit(85, "kg"),
  30289. name: "Front (Dressed)",
  30290. image: {
  30291. source: "./media/characters/azteck/front-dressed.svg",
  30292. extra: 2147 / 2003,
  30293. bottom: 68 / 2215
  30294. }
  30295. },
  30296. head: {
  30297. height: math.unit(0.47, "meters"),
  30298. weight: math.unit(85, "kg"),
  30299. name: "Head",
  30300. image: {
  30301. source: "./media/characters/azteck/head.svg"
  30302. }
  30303. },
  30304. },
  30305. [
  30306. {
  30307. name: "Bite sized",
  30308. height: math.unit(16, "cm")
  30309. },
  30310. {
  30311. name: "Normal",
  30312. height: math.unit(1.8, "meters"),
  30313. default: true
  30314. },
  30315. ]
  30316. ))
  30317. characterMakers.push(() => makeCharacter(
  30318. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30319. {
  30320. front: {
  30321. height: math.unit(6, "feet"),
  30322. weight: math.unit(150, "lb"),
  30323. name: "Front",
  30324. image: {
  30325. source: "./media/characters/pidge/front.svg",
  30326. extra: 1936/1820,
  30327. bottom: 0/1936
  30328. }
  30329. },
  30330. back: {
  30331. height: math.unit(6, "feet"),
  30332. weight: math.unit(150, "lb"),
  30333. name: "Back",
  30334. image: {
  30335. source: "./media/characters/pidge/back.svg",
  30336. extra: 1938/1843,
  30337. bottom: 0/1938
  30338. }
  30339. },
  30340. casual: {
  30341. height: math.unit(6, "feet"),
  30342. weight: math.unit(150, "lb"),
  30343. name: "Casual",
  30344. image: {
  30345. source: "./media/characters/pidge/casual.svg",
  30346. extra: 1936/1820,
  30347. bottom: 0/1936
  30348. }
  30349. },
  30350. tech: {
  30351. height: math.unit(6, "feet"),
  30352. weight: math.unit(150, "lb"),
  30353. name: "Tech",
  30354. image: {
  30355. source: "./media/characters/pidge/tech.svg",
  30356. extra: 1802/1682,
  30357. bottom: 0/1802
  30358. }
  30359. },
  30360. head: {
  30361. height: math.unit(1.61, "feet"),
  30362. name: "Head",
  30363. image: {
  30364. source: "./media/characters/pidge/head.svg"
  30365. }
  30366. },
  30367. collar: {
  30368. height: math.unit(0.82, "feet"),
  30369. name: "Collar",
  30370. image: {
  30371. source: "./media/characters/pidge/collar.svg"
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Macro",
  30378. height: math.unit(2, "mile"),
  30379. default: true
  30380. },
  30381. {
  30382. name: "PUPPY",
  30383. height: math.unit(20, "miles")
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(6, "feet"),
  30392. weight: math.unit(150, "lb"),
  30393. name: "Front",
  30394. image: {
  30395. source: "./media/characters/en/front.svg",
  30396. extra: 1697 / 1563,
  30397. bottom: 103 / 1800
  30398. }
  30399. },
  30400. back: {
  30401. height: math.unit(6, "feet"),
  30402. weight: math.unit(150, "lb"),
  30403. name: "Back",
  30404. image: {
  30405. source: "./media/characters/en/back.svg",
  30406. extra: 1700 / 1570,
  30407. bottom: 51 / 1751
  30408. }
  30409. },
  30410. frontDressed: {
  30411. height: math.unit(6, "feet"),
  30412. weight: math.unit(150, "lb"),
  30413. name: "Front (Dressed)",
  30414. image: {
  30415. source: "./media/characters/en/front-dressed.svg",
  30416. extra: 1697 / 1563,
  30417. bottom: 103 / 1800
  30418. }
  30419. },
  30420. backDressed: {
  30421. height: math.unit(6, "feet"),
  30422. weight: math.unit(150, "lb"),
  30423. name: "Back (Dressed)",
  30424. image: {
  30425. source: "./media/characters/en/back-dressed.svg",
  30426. extra: 1700 / 1570,
  30427. bottom: 51 / 1751
  30428. }
  30429. },
  30430. },
  30431. [
  30432. {
  30433. name: "Macro",
  30434. height: math.unit(210, "feet"),
  30435. default: true
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30441. {
  30442. front: {
  30443. height: math.unit(6, "feet"),
  30444. weight: math.unit(150, "lb"),
  30445. name: "Front",
  30446. image: {
  30447. source: "./media/characters/haze-orris/front.svg",
  30448. extra: 3975 / 3525,
  30449. bottom: 137 / 4112
  30450. }
  30451. },
  30452. },
  30453. [
  30454. {
  30455. name: "Micro",
  30456. height: math.unit(150, "mm"),
  30457. default: true
  30458. },
  30459. ]
  30460. ))
  30461. characterMakers.push(() => makeCharacter(
  30462. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30463. {
  30464. front: {
  30465. height: math.unit(6, "feet"),
  30466. weight: math.unit(150, "lb"),
  30467. name: "Front",
  30468. image: {
  30469. source: "./media/characters/casselene-yaro/front.svg",
  30470. extra: 4721 / 4541,
  30471. bottom: 82 / 4803
  30472. }
  30473. },
  30474. back: {
  30475. height: math.unit(6, "feet"),
  30476. weight: math.unit(150, "lb"),
  30477. name: "Back",
  30478. image: {
  30479. source: "./media/characters/casselene-yaro/back.svg",
  30480. extra: 4569 / 4377,
  30481. bottom: 69 / 4638
  30482. }
  30483. },
  30484. dressed: {
  30485. height: math.unit(6, "feet"),
  30486. weight: math.unit(150, "lb"),
  30487. name: "Dressed",
  30488. image: {
  30489. source: "./media/characters/casselene-yaro/dressed.svg",
  30490. extra: 4721 / 4541,
  30491. bottom: 82 / 4803
  30492. }
  30493. },
  30494. maw: {
  30495. height: math.unit(1, "feet"),
  30496. name: "Maw",
  30497. image: {
  30498. source: "./media/characters/casselene-yaro/maw.svg"
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Macro",
  30505. height: math.unit(190, "feet"),
  30506. default: true
  30507. },
  30508. ]
  30509. ))
  30510. characterMakers.push(() => makeCharacter(
  30511. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30512. {
  30513. front: {
  30514. height: math.unit(10, "feet"),
  30515. weight: math.unit(15015, "lb"),
  30516. name: "Front",
  30517. image: {
  30518. source: "./media/characters/platine/front.svg",
  30519. extra: 1428/1353,
  30520. bottom: 31/1459
  30521. }
  30522. },
  30523. },
  30524. [
  30525. {
  30526. name: "Normal",
  30527. height: math.unit(10, "feet"),
  30528. default: true
  30529. },
  30530. {
  30531. name: "Macro",
  30532. height: math.unit(100, "feet")
  30533. },
  30534. {
  30535. name: "Megamacro",
  30536. height: math.unit(1000, "feet")
  30537. },
  30538. ]
  30539. ))
  30540. characterMakers.push(() => makeCharacter(
  30541. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30542. {
  30543. front: {
  30544. height: math.unit(15 + 5 / 12, "feet"),
  30545. weight: math.unit(4600, "lb"),
  30546. name: "Front",
  30547. image: {
  30548. source: "./media/characters/neapolitan-ananassa/front.svg",
  30549. extra: 2903 / 2736,
  30550. bottom: 0 / 2903
  30551. }
  30552. },
  30553. side: {
  30554. height: math.unit(15 + 5 / 12, "feet"),
  30555. weight: math.unit(4600, "lb"),
  30556. name: "Side",
  30557. image: {
  30558. source: "./media/characters/neapolitan-ananassa/side.svg",
  30559. extra: 2925 / 2719,
  30560. bottom: 0 / 2925
  30561. }
  30562. },
  30563. back: {
  30564. height: math.unit(15 + 5 / 12, "feet"),
  30565. weight: math.unit(4600, "lb"),
  30566. name: "Back",
  30567. image: {
  30568. source: "./media/characters/neapolitan-ananassa/back.svg",
  30569. extra: 2903 / 2736,
  30570. bottom: 0 / 2903
  30571. }
  30572. },
  30573. },
  30574. [
  30575. {
  30576. name: "Normal",
  30577. height: math.unit(15 + 5 / 12, "feet"),
  30578. default: true
  30579. },
  30580. {
  30581. name: "Post-Millenium",
  30582. height: math.unit(35 + 5 / 12, "feet")
  30583. },
  30584. {
  30585. name: "Post-Era",
  30586. height: math.unit(450 + 5 / 12, "feet")
  30587. },
  30588. ]
  30589. ))
  30590. characterMakers.push(() => makeCharacter(
  30591. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30592. {
  30593. front: {
  30594. height: math.unit(300, "meters"),
  30595. weight: math.unit(125000, "tonnes"),
  30596. name: "Front",
  30597. image: {
  30598. source: "./media/characters/pazuzu/front.svg",
  30599. extra: 877 / 794,
  30600. bottom: 47 / 924
  30601. }
  30602. },
  30603. },
  30604. [
  30605. {
  30606. name: "Macro",
  30607. height: math.unit(300, "meters"),
  30608. default: true
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30614. {
  30615. side: {
  30616. height: math.unit(10 + 7 / 12, "feet"),
  30617. weight: math.unit(2.5, "tons"),
  30618. name: "Side",
  30619. image: {
  30620. source: "./media/characters/aasha/side.svg",
  30621. extra: 1345 / 1245,
  30622. bottom: 111 / 1456
  30623. }
  30624. },
  30625. back: {
  30626. height: math.unit(10 + 7 / 12, "feet"),
  30627. weight: math.unit(2.5, "tons"),
  30628. name: "Back",
  30629. image: {
  30630. source: "./media/characters/aasha/back.svg",
  30631. extra: 1133 / 1057,
  30632. bottom: 257 / 1390
  30633. }
  30634. },
  30635. },
  30636. [
  30637. {
  30638. name: "Normal",
  30639. height: math.unit(10 + 7 / 12, "feet"),
  30640. default: true
  30641. },
  30642. ]
  30643. ))
  30644. characterMakers.push(() => makeCharacter(
  30645. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30646. {
  30647. front: {
  30648. height: math.unit(6 + 3 / 12, "feet"),
  30649. name: "Front",
  30650. image: {
  30651. source: "./media/characters/nevan/front.svg",
  30652. extra: 704 / 704,
  30653. bottom: 28 / 732
  30654. }
  30655. },
  30656. back: {
  30657. height: math.unit(6 + 3 / 12, "feet"),
  30658. name: "Back",
  30659. image: {
  30660. source: "./media/characters/nevan/back.svg",
  30661. extra: 714 / 714,
  30662. bottom: 21 / 735
  30663. }
  30664. },
  30665. frontFlaccid: {
  30666. height: math.unit(6 + 3 / 12, "feet"),
  30667. name: "Front (Flaccid)",
  30668. image: {
  30669. source: "./media/characters/nevan/front-flaccid.svg",
  30670. extra: 704 / 704,
  30671. bottom: 28 / 732
  30672. }
  30673. },
  30674. frontErect: {
  30675. height: math.unit(6 + 3 / 12, "feet"),
  30676. name: "Front (Erect)",
  30677. image: {
  30678. source: "./media/characters/nevan/front-erect.svg",
  30679. extra: 704 / 704,
  30680. bottom: 28 / 732
  30681. }
  30682. },
  30683. backFlaccid: {
  30684. height: math.unit(6 + 3 / 12, "feet"),
  30685. name: "Back (Flaccid)",
  30686. image: {
  30687. source: "./media/characters/nevan/back-flaccid.svg",
  30688. extra: 714 / 714,
  30689. bottom: 21 / 735
  30690. }
  30691. },
  30692. },
  30693. [
  30694. {
  30695. name: "Normal",
  30696. height: math.unit(6 + 3 / 12, "feet"),
  30697. default: true
  30698. },
  30699. ]
  30700. ))
  30701. characterMakers.push(() => makeCharacter(
  30702. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30703. {
  30704. front: {
  30705. height: math.unit(4, "feet"),
  30706. name: "Front",
  30707. image: {
  30708. source: "./media/characters/arhan/front.svg",
  30709. extra: 3368 / 3133,
  30710. bottom: 0 / 3368
  30711. }
  30712. },
  30713. side: {
  30714. height: math.unit(4, "feet"),
  30715. name: "Side",
  30716. image: {
  30717. source: "./media/characters/arhan/side.svg",
  30718. extra: 3347 / 3105,
  30719. bottom: 0 / 3347
  30720. }
  30721. },
  30722. tongue: {
  30723. height: math.unit(1.42, "feet"),
  30724. name: "Tongue",
  30725. image: {
  30726. source: "./media/characters/arhan/tongue.svg"
  30727. }
  30728. },
  30729. head: {
  30730. height: math.unit(0.85, "feet"),
  30731. name: "Head",
  30732. image: {
  30733. source: "./media/characters/arhan/head.svg"
  30734. }
  30735. },
  30736. },
  30737. [
  30738. {
  30739. name: "Normal",
  30740. height: math.unit(4, "feet"),
  30741. default: true
  30742. },
  30743. ]
  30744. ))
  30745. characterMakers.push(() => makeCharacter(
  30746. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30747. {
  30748. front: {
  30749. height: math.unit(5 + 7.5 / 12, "feet"),
  30750. weight: math.unit(120, "lb"),
  30751. name: "Front",
  30752. image: {
  30753. source: "./media/characters/digi-duncan/front.svg",
  30754. extra: 330 / 326,
  30755. bottom: 16 / 346
  30756. }
  30757. },
  30758. side: {
  30759. height: math.unit(5 + 7.5 / 12, "feet"),
  30760. weight: math.unit(120, "lb"),
  30761. name: "Side",
  30762. image: {
  30763. source: "./media/characters/digi-duncan/side.svg",
  30764. extra: 341 / 337,
  30765. bottom: 1 / 342
  30766. }
  30767. },
  30768. back: {
  30769. height: math.unit(5 + 7.5 / 12, "feet"),
  30770. weight: math.unit(120, "lb"),
  30771. name: "Back",
  30772. image: {
  30773. source: "./media/characters/digi-duncan/back.svg",
  30774. extra: 330 / 326,
  30775. bottom: 12 / 342
  30776. }
  30777. },
  30778. },
  30779. [
  30780. {
  30781. name: "Speck",
  30782. height: math.unit(0.25, "mm")
  30783. },
  30784. {
  30785. name: "Micro",
  30786. height: math.unit(5, "mm")
  30787. },
  30788. {
  30789. name: "Tiny",
  30790. height: math.unit(0.5, "inches"),
  30791. default: true
  30792. },
  30793. {
  30794. name: "Human",
  30795. height: math.unit(5 + 7.5 / 12, "feet")
  30796. },
  30797. {
  30798. name: "Minigiant",
  30799. height: math.unit(8 + 5.25, "feet")
  30800. },
  30801. {
  30802. name: "Giant",
  30803. height: math.unit(2000, "feet")
  30804. },
  30805. {
  30806. name: "Mega",
  30807. height: math.unit(371.1, "miles")
  30808. },
  30809. ]
  30810. ))
  30811. characterMakers.push(() => makeCharacter(
  30812. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30813. {
  30814. front: {
  30815. height: math.unit(2, "meters"),
  30816. weight: math.unit(350, "kg"),
  30817. name: "Front",
  30818. image: {
  30819. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30820. extra: 898 / 838,
  30821. bottom: 9 / 907
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Micro",
  30828. height: math.unit(8, "meters")
  30829. },
  30830. {
  30831. name: "Normal",
  30832. height: math.unit(50, "meters"),
  30833. default: true
  30834. },
  30835. {
  30836. name: "Macro",
  30837. height: math.unit(500, "meters")
  30838. },
  30839. ]
  30840. ))
  30841. characterMakers.push(() => makeCharacter(
  30842. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30843. {
  30844. front: {
  30845. height: math.unit(6 + 6 / 12, "feet"),
  30846. name: "Front",
  30847. image: {
  30848. source: "./media/characters/khardesh/front.svg",
  30849. extra: 1788/1596,
  30850. bottom: 66/1854
  30851. }
  30852. },
  30853. back: {
  30854. height: math.unit(6 + 6 / 12, "feet"),
  30855. name: "Back",
  30856. image: {
  30857. source: "./media/characters/khardesh/back.svg",
  30858. extra: 1781/1584,
  30859. bottom: 68/1849
  30860. }
  30861. },
  30862. },
  30863. [
  30864. {
  30865. name: "Normal",
  30866. height: math.unit(6 + 6 / 12, "feet"),
  30867. default: true
  30868. },
  30869. {
  30870. name: "Normal+",
  30871. height: math.unit(4, "meters")
  30872. },
  30873. {
  30874. name: "Macro",
  30875. height: math.unit(50, "meters")
  30876. },
  30877. {
  30878. name: "Macro+",
  30879. height: math.unit(100, "meters")
  30880. },
  30881. {
  30882. name: "Megamacro",
  30883. height: math.unit(20, "km")
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(6, "feet"),
  30892. weight: math.unit(150, "lb"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/kosho/front.svg",
  30896. extra: 1847 / 1847,
  30897. bottom: 86 / 1933
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Second-stage micro",
  30904. height: math.unit(0.5, "inches")
  30905. },
  30906. {
  30907. name: "First-stage micro",
  30908. height: math.unit(6, "inches")
  30909. },
  30910. {
  30911. name: "Normal",
  30912. height: math.unit(6, "feet"),
  30913. default: true
  30914. },
  30915. {
  30916. name: "First-stage macro",
  30917. height: math.unit(72, "feet")
  30918. },
  30919. {
  30920. name: "Second-stage macro",
  30921. height: math.unit(864, "feet")
  30922. },
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30927. {
  30928. normal: {
  30929. height: math.unit(4 + 6 / 12, "feet"),
  30930. name: "Normal",
  30931. image: {
  30932. source: "./media/characters/hydra/normal.svg",
  30933. extra: 2833 / 2634,
  30934. bottom: 68 / 2901
  30935. }
  30936. },
  30937. smol: {
  30938. height: math.unit(0.705, "inches"),
  30939. name: "Smol",
  30940. image: {
  30941. source: "./media/characters/hydra/smol.svg",
  30942. extra: 2715 / 2540,
  30943. bottom: 0 / 2715
  30944. }
  30945. },
  30946. },
  30947. [
  30948. {
  30949. name: "Normal",
  30950. height: math.unit(4 + 6 / 12, "feet"),
  30951. default: true
  30952. }
  30953. ]
  30954. ))
  30955. characterMakers.push(() => makeCharacter(
  30956. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30957. {
  30958. front: {
  30959. height: math.unit(0.6, "cm"),
  30960. name: "Front",
  30961. image: {
  30962. source: "./media/characters/daz/front.svg",
  30963. extra: 1682 / 1164,
  30964. bottom: 42 / 1724
  30965. }
  30966. },
  30967. },
  30968. [
  30969. {
  30970. name: "Normal",
  30971. height: math.unit(0.6, "cm"),
  30972. default: true
  30973. },
  30974. ]
  30975. ))
  30976. characterMakers.push(() => makeCharacter(
  30977. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30978. {
  30979. front: {
  30980. height: math.unit(6, "feet"),
  30981. weight: math.unit(235, "lb"),
  30982. name: "Front",
  30983. image: {
  30984. source: "./media/characters/theo-pangolin/front.svg",
  30985. extra: 1996 / 1969,
  30986. bottom: 115 / 2111
  30987. }
  30988. },
  30989. back: {
  30990. height: math.unit(6, "feet"),
  30991. weight: math.unit(235, "lb"),
  30992. name: "Back",
  30993. image: {
  30994. source: "./media/characters/theo-pangolin/back.svg",
  30995. extra: 1979 / 1979,
  30996. bottom: 40 / 2019
  30997. }
  30998. },
  30999. feral: {
  31000. height: math.unit(2, "feet"),
  31001. weight: math.unit(30, "lb"),
  31002. name: "Feral",
  31003. image: {
  31004. source: "./media/characters/theo-pangolin/feral.svg",
  31005. extra: 803 / 791,
  31006. bottom: 181 / 984
  31007. }
  31008. },
  31009. footFive: {
  31010. height: math.unit(1.43, "feet"),
  31011. name: "Foot (Five Toes)",
  31012. image: {
  31013. source: "./media/characters/theo-pangolin/foot-five.svg"
  31014. }
  31015. },
  31016. footFour: {
  31017. height: math.unit(1.43, "feet"),
  31018. name: "Foot (Four Toes)",
  31019. image: {
  31020. source: "./media/characters/theo-pangolin/foot-four.svg"
  31021. }
  31022. },
  31023. handFour: {
  31024. height: math.unit(0.81, "feet"),
  31025. name: "Hand (Four Fingers)",
  31026. image: {
  31027. source: "./media/characters/theo-pangolin/hand-four.svg"
  31028. }
  31029. },
  31030. handThree: {
  31031. height: math.unit(0.81, "feet"),
  31032. name: "Hand (Three Fingers)",
  31033. image: {
  31034. source: "./media/characters/theo-pangolin/hand-three.svg"
  31035. }
  31036. },
  31037. headFront: {
  31038. height: math.unit(1.37, "feet"),
  31039. name: "Head (Front)",
  31040. image: {
  31041. source: "./media/characters/theo-pangolin/head-front.svg"
  31042. }
  31043. },
  31044. headSide: {
  31045. height: math.unit(1.43, "feet"),
  31046. name: "Head (Side)",
  31047. image: {
  31048. source: "./media/characters/theo-pangolin/head-side.svg"
  31049. }
  31050. },
  31051. tongue: {
  31052. height: math.unit(2.29, "feet"),
  31053. name: "Tongue",
  31054. image: {
  31055. source: "./media/characters/theo-pangolin/tongue.svg"
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Normal",
  31062. height: math.unit(6, "feet")
  31063. },
  31064. {
  31065. name: "Macro",
  31066. height: math.unit(400, "feet"),
  31067. default: true
  31068. },
  31069. ]
  31070. ))
  31071. characterMakers.push(() => makeCharacter(
  31072. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31073. {
  31074. front: {
  31075. height: math.unit(6, "inches"),
  31076. weight: math.unit(0.036, "kg"),
  31077. name: "Front",
  31078. image: {
  31079. source: "./media/characters/renée/front.svg",
  31080. extra: 900 / 886,
  31081. bottom: 8 / 908
  31082. }
  31083. },
  31084. },
  31085. [
  31086. {
  31087. name: "Nano",
  31088. height: math.unit(1, "nm")
  31089. },
  31090. {
  31091. name: "Micro",
  31092. height: math.unit(1, "mm")
  31093. },
  31094. {
  31095. name: "Normal",
  31096. height: math.unit(6, "inches")
  31097. },
  31098. {
  31099. name: "Macro",
  31100. height: math.unit(2000, "feet"),
  31101. default: true
  31102. },
  31103. {
  31104. name: "Megamacro",
  31105. height: math.unit(2, "km")
  31106. },
  31107. {
  31108. name: "Gigamacro",
  31109. height: math.unit(2000, "km")
  31110. },
  31111. {
  31112. name: "Teramacro",
  31113. height: math.unit(250000, "km")
  31114. },
  31115. ]
  31116. ))
  31117. characterMakers.push(() => makeCharacter(
  31118. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31119. {
  31120. front: {
  31121. height: math.unit(4, "meters"),
  31122. weight: math.unit(150, "kg"),
  31123. name: "Front",
  31124. image: {
  31125. source: "./media/characters/caledvwlch/front.svg",
  31126. extra: 1760 / 1551,
  31127. bottom: 28 / 1788
  31128. }
  31129. },
  31130. side: {
  31131. height: math.unit(4, "meters"),
  31132. weight: math.unit(150, "kg"),
  31133. name: "Side",
  31134. image: {
  31135. source: "./media/characters/caledvwlch/side.svg",
  31136. extra: 1605 / 1536,
  31137. bottom: 31 / 1636
  31138. }
  31139. },
  31140. back: {
  31141. height: math.unit(4, "meters"),
  31142. weight: math.unit(150, "kg"),
  31143. name: "Back",
  31144. image: {
  31145. source: "./media/characters/caledvwlch/back.svg",
  31146. extra: 1635 / 1565,
  31147. bottom: 27 / 1662
  31148. }
  31149. },
  31150. },
  31151. [
  31152. {
  31153. name: "\"Incognito\"",
  31154. height: math.unit(4, "meters")
  31155. },
  31156. {
  31157. name: "Small rampage",
  31158. height: math.unit(600, "meters")
  31159. },
  31160. {
  31161. name: "Mega",
  31162. height: math.unit(30, "km")
  31163. },
  31164. {
  31165. name: "Home-size",
  31166. height: math.unit(50, "km"),
  31167. default: true
  31168. },
  31169. {
  31170. name: "Giga",
  31171. height: math.unit(300, "km")
  31172. },
  31173. {
  31174. name: "Lounging",
  31175. height: math.unit(11000, "km")
  31176. },
  31177. {
  31178. name: "Planet snacking",
  31179. height: math.unit(2000000, "km")
  31180. },
  31181. ]
  31182. ))
  31183. characterMakers.push(() => makeCharacter(
  31184. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31185. {
  31186. front: {
  31187. height: math.unit(6, "feet"),
  31188. weight: math.unit(215, "lb"),
  31189. name: "Front",
  31190. image: {
  31191. source: "./media/characters/sapphire-svell/front.svg",
  31192. extra: 495 / 455,
  31193. bottom: 20 / 515
  31194. }
  31195. },
  31196. back: {
  31197. height: math.unit(6, "feet"),
  31198. weight: math.unit(216, "lb"),
  31199. name: "Back",
  31200. image: {
  31201. source: "./media/characters/sapphire-svell/back.svg",
  31202. extra: 497 / 477,
  31203. bottom: 7 / 504
  31204. }
  31205. },
  31206. maw: {
  31207. height: math.unit(1.57, "feet"),
  31208. name: "Maw",
  31209. image: {
  31210. source: "./media/characters/sapphire-svell/maw.svg"
  31211. }
  31212. },
  31213. foot: {
  31214. height: math.unit(1.07, "feet"),
  31215. name: "Foot",
  31216. image: {
  31217. source: "./media/characters/sapphire-svell/foot.svg"
  31218. }
  31219. },
  31220. toering: {
  31221. height: math.unit(1.7, "inch"),
  31222. name: "Toering",
  31223. image: {
  31224. source: "./media/characters/sapphire-svell/toering.svg"
  31225. }
  31226. },
  31227. },
  31228. [
  31229. {
  31230. name: "Normal",
  31231. height: math.unit(300, "feet"),
  31232. default: true
  31233. },
  31234. {
  31235. name: "Augmented",
  31236. height: math.unit(1250, "feet")
  31237. },
  31238. {
  31239. name: "Unleashed",
  31240. height: math.unit(3000, "feet")
  31241. },
  31242. ]
  31243. ))
  31244. characterMakers.push(() => makeCharacter(
  31245. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31246. {
  31247. side: {
  31248. height: math.unit(2 + 3 / 12, "feet"),
  31249. weight: math.unit(110, "lb"),
  31250. name: "Side",
  31251. image: {
  31252. source: "./media/characters/glitch-flux/side.svg",
  31253. extra: 997 / 805,
  31254. bottom: 20 / 1017
  31255. }
  31256. },
  31257. },
  31258. [
  31259. {
  31260. name: "Normal",
  31261. height: math.unit(2 + 3 / 12, "feet"),
  31262. default: true
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(4, "meters"),
  31271. name: "Front",
  31272. image: {
  31273. source: "./media/characters/mid/front.svg",
  31274. extra: 507 / 476,
  31275. bottom: 17 / 524
  31276. }
  31277. },
  31278. back: {
  31279. height: math.unit(4, "meters"),
  31280. name: "Back",
  31281. image: {
  31282. source: "./media/characters/mid/back.svg",
  31283. extra: 519 / 487,
  31284. bottom: 7 / 526
  31285. }
  31286. },
  31287. stuck: {
  31288. height: math.unit(2.2, "meters"),
  31289. name: "Stuck",
  31290. image: {
  31291. source: "./media/characters/mid/stuck.svg",
  31292. extra: 1951 / 1869,
  31293. bottom: 88 / 2039
  31294. }
  31295. }
  31296. },
  31297. [
  31298. {
  31299. name: "Normal",
  31300. height: math.unit(4, "meters"),
  31301. default: true
  31302. },
  31303. {
  31304. name: "Big",
  31305. height: math.unit(10, "meters")
  31306. },
  31307. {
  31308. name: "Macro",
  31309. height: math.unit(800, "meters")
  31310. },
  31311. {
  31312. name: "Megamacro",
  31313. height: math.unit(100, "km")
  31314. },
  31315. {
  31316. name: "Overgrown",
  31317. height: math.unit(1, "parsec")
  31318. },
  31319. ]
  31320. ))
  31321. characterMakers.push(() => makeCharacter(
  31322. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31323. {
  31324. front: {
  31325. height: math.unit(2.5, "meters"),
  31326. weight: math.unit(225, "kg"),
  31327. name: "Front",
  31328. image: {
  31329. source: "./media/characters/iris/front.svg",
  31330. extra: 3348 / 3251,
  31331. bottom: 205 / 3553
  31332. }
  31333. },
  31334. maw: {
  31335. height: math.unit(0.56, "meter"),
  31336. name: "Maw",
  31337. image: {
  31338. source: "./media/characters/iris/maw.svg"
  31339. }
  31340. },
  31341. },
  31342. [
  31343. {
  31344. name: "Mewter cat",
  31345. height: math.unit(1.2, "meters")
  31346. },
  31347. {
  31348. name: "Minimacro",
  31349. height: math.unit(2.5, "meters"),
  31350. default: true
  31351. },
  31352. {
  31353. name: "Macro",
  31354. height: math.unit(180, "meters")
  31355. },
  31356. {
  31357. name: "Megamacro",
  31358. height: math.unit(2746, "meters")
  31359. },
  31360. ]
  31361. ))
  31362. characterMakers.push(() => makeCharacter(
  31363. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31364. {
  31365. front: {
  31366. height: math.unit(6, "feet"),
  31367. weight: math.unit(135, "lb"),
  31368. name: "Front",
  31369. image: {
  31370. source: "./media/characters/axel/front.svg",
  31371. extra: 908 / 908,
  31372. bottom: 58 / 966
  31373. }
  31374. },
  31375. side: {
  31376. height: math.unit(6, "feet"),
  31377. weight: math.unit(135, "lb"),
  31378. name: "Side",
  31379. image: {
  31380. source: "./media/characters/axel/side.svg",
  31381. extra: 958 / 958,
  31382. bottom: 11 / 969
  31383. }
  31384. },
  31385. back: {
  31386. height: math.unit(6, "feet"),
  31387. weight: math.unit(135, "lb"),
  31388. name: "Back",
  31389. image: {
  31390. source: "./media/characters/axel/back.svg",
  31391. extra: 887 / 887,
  31392. bottom: 34 / 921
  31393. }
  31394. },
  31395. head: {
  31396. height: math.unit(1.07, "feet"),
  31397. name: "Head",
  31398. image: {
  31399. source: "./media/characters/axel/head.svg"
  31400. }
  31401. },
  31402. beak: {
  31403. height: math.unit(1.4, "feet"),
  31404. name: "Beak",
  31405. image: {
  31406. source: "./media/characters/axel/beak.svg"
  31407. }
  31408. },
  31409. beakSide: {
  31410. height: math.unit(1.4, "feet"),
  31411. name: "Beak Side",
  31412. image: {
  31413. source: "./media/characters/axel/beak-side.svg"
  31414. }
  31415. },
  31416. sheath: {
  31417. height: math.unit(0.5, "feet"),
  31418. name: "Sheath",
  31419. image: {
  31420. source: "./media/characters/axel/sheath.svg"
  31421. }
  31422. },
  31423. dick: {
  31424. height: math.unit(0.98, "feet"),
  31425. name: "Dick",
  31426. image: {
  31427. source: "./media/characters/axel/dick.svg"
  31428. }
  31429. },
  31430. },
  31431. [
  31432. {
  31433. name: "Macro",
  31434. height: math.unit(68, "meters"),
  31435. default: true
  31436. },
  31437. ]
  31438. ))
  31439. characterMakers.push(() => makeCharacter(
  31440. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31441. {
  31442. front: {
  31443. height: math.unit(3.5, "meters"),
  31444. weight: math.unit(1200, "kg"),
  31445. name: "Front",
  31446. image: {
  31447. source: "./media/characters/joanna/front.svg",
  31448. extra: 1596 / 1488,
  31449. bottom: 29 / 1625
  31450. }
  31451. },
  31452. back: {
  31453. height: math.unit(3.5, "meters"),
  31454. weight: math.unit(1200, "kg"),
  31455. name: "Back",
  31456. image: {
  31457. source: "./media/characters/joanna/back.svg",
  31458. extra: 1594 / 1495,
  31459. bottom: 26 / 1620
  31460. }
  31461. },
  31462. frontShorts: {
  31463. height: math.unit(3.5, "meters"),
  31464. weight: math.unit(1200, "kg"),
  31465. name: "Front (Shorts)",
  31466. image: {
  31467. source: "./media/characters/joanna/front-shorts.svg",
  31468. extra: 1596 / 1488,
  31469. bottom: 29 / 1625
  31470. }
  31471. },
  31472. frontBiker: {
  31473. height: math.unit(3.5, "meters"),
  31474. weight: math.unit(1200, "kg"),
  31475. name: "Front (Biker)",
  31476. image: {
  31477. source: "./media/characters/joanna/front-biker.svg",
  31478. extra: 1596 / 1488,
  31479. bottom: 29 / 1625
  31480. }
  31481. },
  31482. backBiker: {
  31483. height: math.unit(3.5, "meters"),
  31484. weight: math.unit(1200, "kg"),
  31485. name: "Back (Biker)",
  31486. image: {
  31487. source: "./media/characters/joanna/back-biker.svg",
  31488. extra: 1594 / 1495,
  31489. bottom: 88 / 1682
  31490. }
  31491. },
  31492. bikeLeft: {
  31493. height: math.unit(2.4, "meters"),
  31494. weight: math.unit(1600, "kg"),
  31495. name: "Bike (Left)",
  31496. image: {
  31497. source: "./media/characters/joanna/bike-left.svg",
  31498. extra: 720 / 720,
  31499. bottom: 8 / 728
  31500. }
  31501. },
  31502. bikeRight: {
  31503. height: math.unit(2.4, "meters"),
  31504. weight: math.unit(1600, "kg"),
  31505. name: "Bike (Right)",
  31506. image: {
  31507. source: "./media/characters/joanna/bike-right.svg",
  31508. extra: 720 / 720,
  31509. bottom: 8 / 728
  31510. }
  31511. },
  31512. },
  31513. [
  31514. {
  31515. name: "Incognito",
  31516. height: math.unit(3.5, "meters")
  31517. },
  31518. {
  31519. name: "Casual Big",
  31520. height: math.unit(200, "meters")
  31521. },
  31522. {
  31523. name: "Macro",
  31524. height: math.unit(600, "meters")
  31525. },
  31526. {
  31527. name: "Original",
  31528. height: math.unit(20, "km"),
  31529. default: true
  31530. },
  31531. {
  31532. name: "Giga",
  31533. height: math.unit(400, "km")
  31534. },
  31535. {
  31536. name: "Lounging",
  31537. height: math.unit(1500, "km")
  31538. },
  31539. {
  31540. name: "Planetary",
  31541. height: math.unit(200000, "km")
  31542. },
  31543. ]
  31544. ))
  31545. characterMakers.push(() => makeCharacter(
  31546. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31547. {
  31548. front: {
  31549. height: math.unit(6, "feet"),
  31550. weight: math.unit(150, "lb"),
  31551. name: "Front",
  31552. image: {
  31553. source: "./media/characters/hugo-sigil/front.svg",
  31554. extra: 522 / 500,
  31555. bottom: 2 / 524
  31556. }
  31557. },
  31558. back: {
  31559. height: math.unit(6, "feet"),
  31560. weight: math.unit(150, "lb"),
  31561. name: "Back",
  31562. image: {
  31563. source: "./media/characters/hugo-sigil/back.svg",
  31564. extra: 519 / 495,
  31565. bottom: 5 / 524
  31566. }
  31567. },
  31568. maw: {
  31569. height: math.unit(1.4, "feet"),
  31570. weight: math.unit(150, "lb"),
  31571. name: "Maw",
  31572. image: {
  31573. source: "./media/characters/hugo-sigil/maw.svg"
  31574. }
  31575. },
  31576. feet: {
  31577. height: math.unit(1.56, "feet"),
  31578. weight: math.unit(150, "lb"),
  31579. name: "Feet",
  31580. image: {
  31581. source: "./media/characters/hugo-sigil/feet.svg",
  31582. extra: 177 / 177,
  31583. bottom: 12 / 189
  31584. }
  31585. },
  31586. },
  31587. [
  31588. {
  31589. name: "Normal",
  31590. height: math.unit(6, "feet")
  31591. },
  31592. {
  31593. name: "Macro",
  31594. height: math.unit(200, "feet"),
  31595. default: true
  31596. },
  31597. ]
  31598. ))
  31599. characterMakers.push(() => makeCharacter(
  31600. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31601. {
  31602. front: {
  31603. height: math.unit(6, "feet"),
  31604. weight: math.unit(150, "lb"),
  31605. name: "Front",
  31606. image: {
  31607. source: "./media/characters/peri/front.svg",
  31608. extra: 2354 / 2233,
  31609. bottom: 49 / 2403
  31610. }
  31611. },
  31612. },
  31613. [
  31614. {
  31615. name: "Really Small",
  31616. height: math.unit(1, "nm")
  31617. },
  31618. {
  31619. name: "Micro",
  31620. height: math.unit(4, "inches")
  31621. },
  31622. {
  31623. name: "Normal",
  31624. height: math.unit(7, "inches"),
  31625. default: true
  31626. },
  31627. {
  31628. name: "Macro",
  31629. height: math.unit(400, "feet")
  31630. },
  31631. {
  31632. name: "Megamacro",
  31633. height: math.unit(100, "miles")
  31634. },
  31635. ]
  31636. ))
  31637. characterMakers.push(() => makeCharacter(
  31638. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31639. {
  31640. frontSlim: {
  31641. height: math.unit(7, "feet"),
  31642. name: "Front (Slim)",
  31643. image: {
  31644. source: "./media/characters/issilora/front-slim.svg",
  31645. extra: 529 / 449,
  31646. bottom: 53 / 582
  31647. }
  31648. },
  31649. sideSlim: {
  31650. height: math.unit(7, "feet"),
  31651. name: "Side (Slim)",
  31652. image: {
  31653. source: "./media/characters/issilora/side-slim.svg",
  31654. extra: 570 / 480,
  31655. bottom: 30 / 600
  31656. }
  31657. },
  31658. backSlim: {
  31659. height: math.unit(7, "feet"),
  31660. name: "Back (Slim)",
  31661. image: {
  31662. source: "./media/characters/issilora/back-slim.svg",
  31663. extra: 537 / 455,
  31664. bottom: 46 / 583
  31665. }
  31666. },
  31667. frontBuff: {
  31668. height: math.unit(7, "feet"),
  31669. name: "Front (Buff)",
  31670. image: {
  31671. source: "./media/characters/issilora/front-buff.svg",
  31672. extra: 2310 / 2035,
  31673. bottom: 335 / 2645
  31674. }
  31675. },
  31676. head: {
  31677. height: math.unit(1.94, "feet"),
  31678. name: "Head",
  31679. image: {
  31680. source: "./media/characters/issilora/head.svg"
  31681. }
  31682. },
  31683. },
  31684. [
  31685. {
  31686. name: "Minimum",
  31687. height: math.unit(7, "feet")
  31688. },
  31689. {
  31690. name: "Comfortable",
  31691. height: math.unit(17, "feet")
  31692. },
  31693. {
  31694. name: "Fun Size",
  31695. height: math.unit(47, "feet")
  31696. },
  31697. {
  31698. name: "Natural Macro",
  31699. height: math.unit(137, "feet"),
  31700. default: true
  31701. },
  31702. {
  31703. name: "Maximum Kaiju",
  31704. height: math.unit(397, "feet")
  31705. },
  31706. ]
  31707. ))
  31708. characterMakers.push(() => makeCharacter(
  31709. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31710. {
  31711. front: {
  31712. height: math.unit(50 + 9/12, "feet"),
  31713. weight: math.unit(32.8, "tons"),
  31714. name: "Front",
  31715. image: {
  31716. source: "./media/characters/irb'iiritaahn/front.svg",
  31717. extra: 1878/1826,
  31718. bottom: 326/2204
  31719. }
  31720. },
  31721. back: {
  31722. height: math.unit(50 + 9/12, "feet"),
  31723. weight: math.unit(32.8, "tons"),
  31724. name: "Back",
  31725. image: {
  31726. source: "./media/characters/irb'iiritaahn/back.svg",
  31727. extra: 2052/2018,
  31728. bottom: 152/2204
  31729. }
  31730. },
  31731. head: {
  31732. height: math.unit(12.86, "feet"),
  31733. name: "Head",
  31734. image: {
  31735. source: "./media/characters/irb'iiritaahn/head.svg"
  31736. }
  31737. },
  31738. maw: {
  31739. height: math.unit(9.66, "feet"),
  31740. name: "Maw",
  31741. image: {
  31742. source: "./media/characters/irb'iiritaahn/maw.svg"
  31743. }
  31744. },
  31745. frontDick: {
  31746. height: math.unit(8.78461, "feet"),
  31747. name: "Front Dick",
  31748. image: {
  31749. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31750. }
  31751. },
  31752. rearDick: {
  31753. height: math.unit(8.78461, "feet"),
  31754. name: "Rear Dick",
  31755. image: {
  31756. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31757. }
  31758. },
  31759. rearDickUnfolded: {
  31760. height: math.unit(8.78, "feet"),
  31761. name: "Rear Dick (Unfolded)",
  31762. image: {
  31763. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31764. }
  31765. },
  31766. wings: {
  31767. height: math.unit(43, "feet"),
  31768. name: "Wings",
  31769. image: {
  31770. source: "./media/characters/irb'iiritaahn/wings.svg"
  31771. }
  31772. },
  31773. },
  31774. [
  31775. {
  31776. name: "Macro",
  31777. height: math.unit(50 + 9/12, "feet"),
  31778. default: true
  31779. },
  31780. ]
  31781. ))
  31782. characterMakers.push(() => makeCharacter(
  31783. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31784. {
  31785. front: {
  31786. height: math.unit(205, "cm"),
  31787. weight: math.unit(102, "kg"),
  31788. name: "Front",
  31789. image: {
  31790. source: "./media/characters/irbisgreif/front.svg",
  31791. extra: 785/706,
  31792. bottom: 13/798
  31793. }
  31794. },
  31795. back: {
  31796. height: math.unit(205, "cm"),
  31797. weight: math.unit(102, "kg"),
  31798. name: "Back",
  31799. image: {
  31800. source: "./media/characters/irbisgreif/back.svg",
  31801. extra: 713/701,
  31802. bottom: 26/739
  31803. }
  31804. },
  31805. frontDressed: {
  31806. height: math.unit(216, "cm"),
  31807. weight: math.unit(102, "kg"),
  31808. name: "Front-dressed",
  31809. image: {
  31810. source: "./media/characters/irbisgreif/front-dressed.svg",
  31811. extra: 902/776,
  31812. bottom: 14/916
  31813. }
  31814. },
  31815. sideDressed: {
  31816. height: math.unit(195, "cm"),
  31817. weight: math.unit(102, "kg"),
  31818. name: "Side-dressed",
  31819. image: {
  31820. source: "./media/characters/irbisgreif/side-dressed.svg",
  31821. extra: 788/688,
  31822. bottom: 21/809
  31823. }
  31824. },
  31825. backDressed: {
  31826. height: math.unit(216, "cm"),
  31827. weight: math.unit(102, "kg"),
  31828. name: "Back-dressed",
  31829. image: {
  31830. source: "./media/characters/irbisgreif/back-dressed.svg",
  31831. extra: 901/783,
  31832. bottom: 10/911
  31833. }
  31834. },
  31835. dick: {
  31836. height: math.unit(0.49, "feet"),
  31837. name: "Dick",
  31838. image: {
  31839. source: "./media/characters/irbisgreif/dick.svg"
  31840. }
  31841. },
  31842. wingTop: {
  31843. height: math.unit(1.93 , "feet"),
  31844. name: "Wing-top",
  31845. image: {
  31846. source: "./media/characters/irbisgreif/wing-top.svg"
  31847. }
  31848. },
  31849. wingBottom: {
  31850. height: math.unit(1.93 , "feet"),
  31851. name: "Wing-bottom",
  31852. image: {
  31853. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31854. }
  31855. },
  31856. },
  31857. [
  31858. {
  31859. name: "Normal",
  31860. height: math.unit(216, "cm"),
  31861. default: true
  31862. },
  31863. ]
  31864. ))
  31865. characterMakers.push(() => makeCharacter(
  31866. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31867. {
  31868. front: {
  31869. height: math.unit(6, "feet"),
  31870. weight: math.unit(150, "lb"),
  31871. name: "Front",
  31872. image: {
  31873. source: "./media/characters/pride/front.svg",
  31874. extra: 1299/1230,
  31875. bottom: 18/1317
  31876. }
  31877. },
  31878. },
  31879. [
  31880. {
  31881. name: "Normal",
  31882. height: math.unit(7, "feet")
  31883. },
  31884. {
  31885. name: "Mini-macro",
  31886. height: math.unit(11, "feet")
  31887. },
  31888. {
  31889. name: "Macro",
  31890. height: math.unit(15, "meters"),
  31891. default: true
  31892. },
  31893. {
  31894. name: "Macro+",
  31895. height: math.unit(40, "meters")
  31896. },
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31901. {
  31902. front: {
  31903. height: math.unit(4 + 2 / 12, "feet"),
  31904. weight: math.unit(95, "lb"),
  31905. name: "Front",
  31906. image: {
  31907. source: "./media/characters/vaelophis-nyx/front.svg",
  31908. extra: 2532/2330,
  31909. bottom: 0/2532
  31910. }
  31911. },
  31912. back: {
  31913. height: math.unit(4 + 2 / 12, "feet"),
  31914. weight: math.unit(95, "lb"),
  31915. name: "Back",
  31916. image: {
  31917. source: "./media/characters/vaelophis-nyx/back.svg",
  31918. extra: 2484/2361,
  31919. bottom: 0/2484
  31920. }
  31921. },
  31922. feralSide: {
  31923. height: math.unit(2 + 1/12, "feet"),
  31924. weight: math.unit(20, "lb"),
  31925. name: "Feral (Side)",
  31926. image: {
  31927. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31928. extra: 1721/1581,
  31929. bottom: 70/1791
  31930. }
  31931. },
  31932. feralLazing: {
  31933. height: math.unit(1.08, "feet"),
  31934. weight: math.unit(20, "lb"),
  31935. name: "Feral (Lazing)",
  31936. image: {
  31937. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31938. extra: 822/822,
  31939. bottom: 248/1070
  31940. }
  31941. },
  31942. ear: {
  31943. height: math.unit(0.416, "feet"),
  31944. name: "Ear",
  31945. image: {
  31946. source: "./media/characters/vaelophis-nyx/ear.svg"
  31947. }
  31948. },
  31949. eye: {
  31950. height: math.unit(0.0748, "feet"),
  31951. name: "Eye",
  31952. image: {
  31953. source: "./media/characters/vaelophis-nyx/eye.svg"
  31954. }
  31955. },
  31956. mouth: {
  31957. height: math.unit(0.378, "feet"),
  31958. name: "Mouth",
  31959. image: {
  31960. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31961. }
  31962. },
  31963. spade: {
  31964. height: math.unit(0.55, "feet"),
  31965. name: "Spade",
  31966. image: {
  31967. source: "./media/characters/vaelophis-nyx/spade.svg"
  31968. }
  31969. },
  31970. },
  31971. [
  31972. {
  31973. name: "Normal",
  31974. height: math.unit(4 + 2/12, "feet"),
  31975. default: true
  31976. },
  31977. ]
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31981. {
  31982. front: {
  31983. height: math.unit(7, "feet"),
  31984. weight: math.unit(231, "lb"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/flux/front.svg",
  31988. extra: 919/871,
  31989. bottom: 0/919
  31990. }
  31991. },
  31992. back: {
  31993. height: math.unit(7, "feet"),
  31994. weight: math.unit(231, "lb"),
  31995. name: "Back",
  31996. image: {
  31997. source: "./media/characters/flux/back.svg",
  31998. extra: 1040/992,
  31999. bottom: 0/1040
  32000. }
  32001. },
  32002. frontDressed: {
  32003. height: math.unit(7, "feet"),
  32004. weight: math.unit(231, "lb"),
  32005. name: "Front (Dressed)",
  32006. image: {
  32007. source: "./media/characters/flux/front-dressed.svg",
  32008. extra: 919/871,
  32009. bottom: 0/919
  32010. }
  32011. },
  32012. feralSide: {
  32013. height: math.unit(5, "feet"),
  32014. weight: math.unit(150, "lb"),
  32015. name: "Feral (Side)",
  32016. image: {
  32017. source: "./media/characters/flux/feral-side.svg",
  32018. extra: 598/528,
  32019. bottom: 28/626
  32020. }
  32021. },
  32022. head: {
  32023. height: math.unit(1.585, "feet"),
  32024. name: "Head",
  32025. image: {
  32026. source: "./media/characters/flux/head.svg"
  32027. }
  32028. },
  32029. headSide: {
  32030. height: math.unit(1.74, "feet"),
  32031. name: "Head (Side)",
  32032. image: {
  32033. source: "./media/characters/flux/head-side.svg"
  32034. }
  32035. },
  32036. headSideFire: {
  32037. height: math.unit(1.76, "feet"),
  32038. name: "Head (Side, Fire)",
  32039. image: {
  32040. source: "./media/characters/flux/head-side-fire.svg"
  32041. }
  32042. },
  32043. },
  32044. [
  32045. {
  32046. name: "Normal",
  32047. height: math.unit(7, "feet"),
  32048. default: true
  32049. },
  32050. ]
  32051. ))
  32052. characterMakers.push(() => makeCharacter(
  32053. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32054. {
  32055. front: {
  32056. height: math.unit(9, "feet"),
  32057. weight: math.unit(1012, "lb"),
  32058. name: "Front",
  32059. image: {
  32060. source: "./media/characters/ulfra-lupae/front.svg",
  32061. extra: 1083/1011,
  32062. bottom: 67/1150
  32063. }
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "Micro",
  32069. height: math.unit(6, "inches")
  32070. },
  32071. {
  32072. name: "Socializing",
  32073. height: math.unit(6 + 5/12, "feet")
  32074. },
  32075. {
  32076. name: "Normal",
  32077. height: math.unit(9, "feet"),
  32078. default: true
  32079. },
  32080. {
  32081. name: "Macro",
  32082. height: math.unit(150, "feet")
  32083. },
  32084. ]
  32085. ))
  32086. characterMakers.push(() => makeCharacter(
  32087. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32088. {
  32089. front: {
  32090. height: math.unit(5 + 2/12, "feet"),
  32091. weight: math.unit(120, "lb"),
  32092. name: "Front",
  32093. image: {
  32094. source: "./media/characters/timber/front.svg",
  32095. extra: 2814/2705,
  32096. bottom: 181/2995
  32097. }
  32098. },
  32099. },
  32100. [
  32101. {
  32102. name: "Normal",
  32103. height: math.unit(5 + 2/12, "feet"),
  32104. default: true
  32105. },
  32106. ]
  32107. ))
  32108. characterMakers.push(() => makeCharacter(
  32109. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32110. {
  32111. front: {
  32112. height: math.unit(9, "feet"),
  32113. name: "Front",
  32114. image: {
  32115. source: "./media/characters/nicki/front.svg",
  32116. extra: 1240/990,
  32117. bottom: 45/1285
  32118. },
  32119. form: "anthro",
  32120. default: true
  32121. },
  32122. side: {
  32123. height: math.unit(9, "feet"),
  32124. name: "Side",
  32125. image: {
  32126. source: "./media/characters/nicki/side.svg",
  32127. extra: 1047/973,
  32128. bottom: 61/1108
  32129. },
  32130. form: "anthro"
  32131. },
  32132. back: {
  32133. height: math.unit(9, "feet"),
  32134. name: "Back",
  32135. image: {
  32136. source: "./media/characters/nicki/back.svg",
  32137. extra: 1006/965,
  32138. bottom: 39/1045
  32139. },
  32140. form: "anthro"
  32141. },
  32142. taur: {
  32143. height: math.unit(15, "feet"),
  32144. name: "Taur",
  32145. image: {
  32146. source: "./media/characters/nicki/taur.svg",
  32147. extra: 1592/1347,
  32148. bottom: 0/1592
  32149. },
  32150. form: "taur",
  32151. default: true
  32152. },
  32153. },
  32154. [
  32155. {
  32156. name: "Normal",
  32157. height: math.unit(9, "feet"),
  32158. form: "anthro",
  32159. default: true
  32160. },
  32161. {
  32162. name: "Normal",
  32163. height: math.unit(15, "feet"),
  32164. form: "taur",
  32165. default: true
  32166. }
  32167. ],
  32168. {
  32169. "anthro": {
  32170. name: "Anthro",
  32171. default: true
  32172. },
  32173. "taur": {
  32174. name: "Taur"
  32175. }
  32176. }
  32177. ))
  32178. characterMakers.push(() => makeCharacter(
  32179. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32180. {
  32181. front: {
  32182. height: math.unit(7 + 10/12, "feet"),
  32183. weight: math.unit(3.5, "tons"),
  32184. name: "Front",
  32185. image: {
  32186. source: "./media/characters/lee/front.svg",
  32187. extra: 1773/1615,
  32188. bottom: 86/1859
  32189. }
  32190. },
  32191. hand: {
  32192. height: math.unit(1.78, "feet"),
  32193. name: "Hand",
  32194. image: {
  32195. source: "./media/characters/lee/hand.svg"
  32196. }
  32197. },
  32198. maw: {
  32199. height: math.unit(1.18, "feet"),
  32200. name: "Maw",
  32201. image: {
  32202. source: "./media/characters/lee/maw.svg"
  32203. }
  32204. },
  32205. },
  32206. [
  32207. {
  32208. name: "Normal",
  32209. height: math.unit(7 + 10/12, "feet"),
  32210. default: true
  32211. },
  32212. ]
  32213. ))
  32214. characterMakers.push(() => makeCharacter(
  32215. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32216. {
  32217. front: {
  32218. height: math.unit(9, "feet"),
  32219. name: "Front",
  32220. image: {
  32221. source: "./media/characters/guti/front.svg",
  32222. extra: 4551/4355,
  32223. bottom: 123/4674
  32224. }
  32225. },
  32226. tongue: {
  32227. height: math.unit(1, "feet"),
  32228. name: "Tongue",
  32229. image: {
  32230. source: "./media/characters/guti/tongue.svg"
  32231. }
  32232. },
  32233. paw: {
  32234. height: math.unit(1.18, "feet"),
  32235. name: "Paw",
  32236. image: {
  32237. source: "./media/characters/guti/paw.svg"
  32238. }
  32239. },
  32240. },
  32241. [
  32242. {
  32243. name: "Normal",
  32244. height: math.unit(9, "feet"),
  32245. default: true
  32246. },
  32247. ]
  32248. ))
  32249. characterMakers.push(() => makeCharacter(
  32250. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32251. {
  32252. side: {
  32253. height: math.unit(5, "meters"),
  32254. name: "Side",
  32255. image: {
  32256. source: "./media/characters/vesper/side.svg",
  32257. extra: 1605/1518,
  32258. bottom: 0/1605
  32259. }
  32260. },
  32261. },
  32262. [
  32263. {
  32264. name: "Small",
  32265. height: math.unit(5, "meters")
  32266. },
  32267. {
  32268. name: "Sage",
  32269. height: math.unit(100, "meters"),
  32270. default: true
  32271. },
  32272. {
  32273. name: "Fun Size",
  32274. height: math.unit(600, "meters")
  32275. },
  32276. {
  32277. name: "Goddess",
  32278. height: math.unit(20000, "km")
  32279. },
  32280. {
  32281. name: "Maximum",
  32282. height: math.unit(5, "galaxies")
  32283. },
  32284. ]
  32285. ))
  32286. characterMakers.push(() => makeCharacter(
  32287. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32288. {
  32289. front: {
  32290. height: math.unit(6 + 3/12, "feet"),
  32291. weight: math.unit(190, "lb"),
  32292. name: "Front",
  32293. image: {
  32294. source: "./media/characters/gawain/front.svg",
  32295. extra: 2222/2139,
  32296. bottom: 90/2312
  32297. }
  32298. },
  32299. back: {
  32300. height: math.unit(6 + 3/12, "feet"),
  32301. weight: math.unit(190, "lb"),
  32302. name: "Back",
  32303. image: {
  32304. source: "./media/characters/gawain/back.svg",
  32305. extra: 2199/2111,
  32306. bottom: 73/2272
  32307. }
  32308. },
  32309. },
  32310. [
  32311. {
  32312. name: "Normal",
  32313. height: math.unit(6 + 3/12, "feet"),
  32314. default: true
  32315. },
  32316. ]
  32317. ))
  32318. characterMakers.push(() => makeCharacter(
  32319. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32320. {
  32321. side: {
  32322. height: math.unit(3.5, "meters"),
  32323. weight: math.unit(16000, "lb"),
  32324. name: "Side",
  32325. image: {
  32326. source: "./media/characters/dascalti/side.svg",
  32327. extra: 392/273,
  32328. bottom: 47/439
  32329. }
  32330. },
  32331. breath: {
  32332. height: math.unit(7.4, "feet"),
  32333. name: "Breath",
  32334. image: {
  32335. source: "./media/characters/dascalti/breath.svg"
  32336. }
  32337. },
  32338. fed: {
  32339. height: math.unit(3.6, "meters"),
  32340. weight: math.unit(16000, "lb"),
  32341. name: "Fed",
  32342. image: {
  32343. source: "./media/characters/dascalti/fed.svg",
  32344. extra: 1419/820,
  32345. bottom: 95/1514
  32346. }
  32347. },
  32348. },
  32349. [
  32350. {
  32351. name: "Normal",
  32352. height: math.unit(3.5, "meters"),
  32353. default: true
  32354. },
  32355. ]
  32356. ))
  32357. characterMakers.push(() => makeCharacter(
  32358. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32359. {
  32360. front: {
  32361. height: math.unit(3 + 5/12, "feet"),
  32362. name: "Front",
  32363. image: {
  32364. source: "./media/characters/mauve/front.svg",
  32365. extra: 1126/1033,
  32366. bottom: 65/1191
  32367. }
  32368. },
  32369. side: {
  32370. height: math.unit(3 + 5/12, "feet"),
  32371. name: "Side",
  32372. image: {
  32373. source: "./media/characters/mauve/side.svg",
  32374. extra: 1089/1001,
  32375. bottom: 29/1118
  32376. }
  32377. },
  32378. back: {
  32379. height: math.unit(3 + 5/12, "feet"),
  32380. name: "Back",
  32381. image: {
  32382. source: "./media/characters/mauve/back.svg",
  32383. extra: 1173/1053,
  32384. bottom: 109/1282
  32385. }
  32386. },
  32387. },
  32388. [
  32389. {
  32390. name: "Normal",
  32391. height: math.unit(3 + 5/12, "feet"),
  32392. default: true
  32393. },
  32394. ]
  32395. ))
  32396. characterMakers.push(() => makeCharacter(
  32397. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32398. {
  32399. front: {
  32400. height: math.unit(6 + 3/12, "feet"),
  32401. weight: math.unit(430, "lb"),
  32402. name: "Front",
  32403. image: {
  32404. source: "./media/characters/carlos/front.svg",
  32405. extra: 1964/1913,
  32406. bottom: 70/2034
  32407. }
  32408. },
  32409. },
  32410. [
  32411. {
  32412. name: "Normal",
  32413. height: math.unit(6 + 3/12, "feet"),
  32414. default: true
  32415. },
  32416. ]
  32417. ))
  32418. characterMakers.push(() => makeCharacter(
  32419. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32420. {
  32421. back: {
  32422. height: math.unit(5 + 10/12, "feet"),
  32423. weight: math.unit(200, "lb"),
  32424. name: "Back",
  32425. image: {
  32426. source: "./media/characters/jax/back.svg",
  32427. extra: 764/739,
  32428. bottom: 25/789
  32429. }
  32430. },
  32431. },
  32432. [
  32433. {
  32434. name: "Normal",
  32435. height: math.unit(5 + 10/12, "feet"),
  32436. default: true
  32437. },
  32438. ]
  32439. ))
  32440. characterMakers.push(() => makeCharacter(
  32441. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32442. {
  32443. front: {
  32444. height: math.unit(8, "feet"),
  32445. weight: math.unit(250, "lb"),
  32446. name: "Front",
  32447. image: {
  32448. source: "./media/characters/eikthynir/front.svg",
  32449. extra: 1332/1166,
  32450. bottom: 82/1414
  32451. }
  32452. },
  32453. back: {
  32454. height: math.unit(8, "feet"),
  32455. weight: math.unit(250, "lb"),
  32456. name: "Back",
  32457. image: {
  32458. source: "./media/characters/eikthynir/back.svg",
  32459. extra: 1342/1190,
  32460. bottom: 19/1361
  32461. }
  32462. },
  32463. dick: {
  32464. height: math.unit(2.35, "feet"),
  32465. name: "Dick",
  32466. image: {
  32467. source: "./media/characters/eikthynir/dick.svg"
  32468. }
  32469. },
  32470. },
  32471. [
  32472. {
  32473. name: "Normal",
  32474. height: math.unit(8, "feet"),
  32475. default: true
  32476. },
  32477. ]
  32478. ))
  32479. characterMakers.push(() => makeCharacter(
  32480. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32481. {
  32482. front: {
  32483. height: math.unit(99, "meters"),
  32484. weight: math.unit(13000, "tons"),
  32485. name: "Front",
  32486. image: {
  32487. source: "./media/characters/zlmos/front.svg",
  32488. extra: 2202/1992,
  32489. bottom: 315/2517
  32490. }
  32491. },
  32492. },
  32493. [
  32494. {
  32495. name: "Macro",
  32496. height: math.unit(99, "meters"),
  32497. default: true
  32498. },
  32499. ]
  32500. ))
  32501. characterMakers.push(() => makeCharacter(
  32502. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32503. {
  32504. front: {
  32505. height: math.unit(6 + 5/12, "feet"),
  32506. name: "Front",
  32507. image: {
  32508. source: "./media/characters/purri/front.svg",
  32509. extra: 1698/1610,
  32510. bottom: 32/1730
  32511. }
  32512. },
  32513. frontAlt: {
  32514. height: math.unit(6 + 5/12, "feet"),
  32515. name: "Front (Alt)",
  32516. image: {
  32517. source: "./media/characters/purri/front-alt.svg",
  32518. extra: 450/420,
  32519. bottom: 26/476
  32520. }
  32521. },
  32522. boots: {
  32523. height: math.unit(5.5, "feet"),
  32524. name: "Boots",
  32525. image: {
  32526. source: "./media/characters/purri/boots.svg",
  32527. extra: 905/853,
  32528. bottom: 18/923
  32529. }
  32530. },
  32531. lying: {
  32532. height: math.unit(2, "feet"),
  32533. name: "Lying",
  32534. image: {
  32535. source: "./media/characters/purri/lying.svg",
  32536. extra: 940/843,
  32537. bottom: 146/1086
  32538. }
  32539. },
  32540. devious: {
  32541. height: math.unit(1.77, "feet"),
  32542. name: "Devious",
  32543. image: {
  32544. source: "./media/characters/purri/devious.svg",
  32545. extra: 1440/1155,
  32546. bottom: 147/1587
  32547. }
  32548. },
  32549. bean: {
  32550. height: math.unit(1.94, "feet"),
  32551. name: "Bean",
  32552. image: {
  32553. source: "./media/characters/purri/bean.svg"
  32554. }
  32555. },
  32556. },
  32557. [
  32558. {
  32559. name: "Micro",
  32560. height: math.unit(1, "mm")
  32561. },
  32562. {
  32563. name: "Normal",
  32564. height: math.unit(6 + 5/12, "feet"),
  32565. default: true
  32566. },
  32567. {
  32568. name: "Macro :3c",
  32569. height: math.unit(2, "miles")
  32570. },
  32571. ]
  32572. ))
  32573. characterMakers.push(() => makeCharacter(
  32574. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32575. {
  32576. front: {
  32577. height: math.unit(6 + 2/12, "feet"),
  32578. weight: math.unit(250, "lb"),
  32579. name: "Front",
  32580. image: {
  32581. source: "./media/characters/moonlight/front.svg",
  32582. extra: 1044/908,
  32583. bottom: 56/1100
  32584. }
  32585. },
  32586. feral: {
  32587. height: math.unit(3 + 1/12, "feet"),
  32588. weight: math.unit(50, "kg"),
  32589. name: "Feral",
  32590. image: {
  32591. source: "./media/characters/moonlight/feral.svg",
  32592. extra: 3705/2791,
  32593. bottom: 145/3850
  32594. }
  32595. },
  32596. paw: {
  32597. height: math.unit(1, "feet"),
  32598. name: "Paw",
  32599. image: {
  32600. source: "./media/characters/moonlight/paw.svg"
  32601. }
  32602. },
  32603. paws: {
  32604. height: math.unit(0.98, "feet"),
  32605. name: "Paws",
  32606. image: {
  32607. source: "./media/characters/moonlight/paws.svg",
  32608. extra: 939/939,
  32609. bottom: 50/989
  32610. }
  32611. },
  32612. mouth: {
  32613. height: math.unit(0.48, "feet"),
  32614. name: "Mouth",
  32615. image: {
  32616. source: "./media/characters/moonlight/mouth.svg"
  32617. }
  32618. },
  32619. dick: {
  32620. height: math.unit(1.46, "feet"),
  32621. name: "Dick",
  32622. image: {
  32623. source: "./media/characters/moonlight/dick.svg"
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(6 + 2/12, "feet"),
  32631. default: true
  32632. },
  32633. {
  32634. name: "Macro",
  32635. height: math.unit(300, "feet")
  32636. },
  32637. {
  32638. name: "Macro+",
  32639. height: math.unit(1, "mile")
  32640. },
  32641. {
  32642. name: "Mt. Moon",
  32643. height: math.unit(5, "miles")
  32644. },
  32645. {
  32646. name: "Megamacro",
  32647. height: math.unit(15, "miles")
  32648. },
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32653. {
  32654. back: {
  32655. height: math.unit(6, "feet"),
  32656. weight: math.unit(150, "lb"),
  32657. name: "Back",
  32658. image: {
  32659. source: "./media/characters/sylen/back.svg",
  32660. extra: 1335/1273,
  32661. bottom: 107/1442
  32662. }
  32663. },
  32664. },
  32665. [
  32666. {
  32667. name: "Normal",
  32668. height: math.unit(5 + 5/12, "feet")
  32669. },
  32670. {
  32671. name: "Megamacro",
  32672. height: math.unit(3, "miles"),
  32673. default: true
  32674. },
  32675. ]
  32676. ))
  32677. characterMakers.push(() => makeCharacter(
  32678. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32679. {
  32680. front: {
  32681. height: math.unit(6, "feet"),
  32682. weight: math.unit(190, "lb"),
  32683. name: "Front",
  32684. image: {
  32685. source: "./media/characters/huttser/front.svg",
  32686. extra: 1152/1058,
  32687. bottom: 23/1175
  32688. }
  32689. },
  32690. side: {
  32691. height: math.unit(6, "feet"),
  32692. weight: math.unit(190, "lb"),
  32693. name: "Side",
  32694. image: {
  32695. source: "./media/characters/huttser/side.svg",
  32696. extra: 1174/1065,
  32697. bottom: 18/1192
  32698. }
  32699. },
  32700. back: {
  32701. height: math.unit(6, "feet"),
  32702. weight: math.unit(190, "lb"),
  32703. name: "Back",
  32704. image: {
  32705. source: "./media/characters/huttser/back.svg",
  32706. extra: 1158/1056,
  32707. bottom: 12/1170
  32708. }
  32709. },
  32710. },
  32711. [
  32712. ]
  32713. ))
  32714. characterMakers.push(() => makeCharacter(
  32715. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32716. {
  32717. side: {
  32718. height: math.unit(12 + 9/12, "feet"),
  32719. weight: math.unit(15000, "lb"),
  32720. name: "Side",
  32721. image: {
  32722. source: "./media/characters/faan/side.svg",
  32723. extra: 2747/2697,
  32724. bottom: 0/2747
  32725. }
  32726. },
  32727. front: {
  32728. height: math.unit(12 + 9/12, "feet"),
  32729. weight: math.unit(15000, "lb"),
  32730. name: "Front",
  32731. image: {
  32732. source: "./media/characters/faan/front.svg",
  32733. extra: 607/571,
  32734. bottom: 24/631
  32735. }
  32736. },
  32737. head: {
  32738. height: math.unit(2.85, "feet"),
  32739. name: "Head",
  32740. image: {
  32741. source: "./media/characters/faan/head.svg"
  32742. }
  32743. },
  32744. headAlt: {
  32745. height: math.unit(3.13, "feet"),
  32746. name: "Head-alt",
  32747. image: {
  32748. source: "./media/characters/faan/head-alt.svg"
  32749. }
  32750. },
  32751. },
  32752. [
  32753. {
  32754. name: "Normal",
  32755. height: math.unit(12 + 9/12, "feet"),
  32756. default: true
  32757. },
  32758. ]
  32759. ))
  32760. characterMakers.push(() => makeCharacter(
  32761. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32762. {
  32763. front: {
  32764. height: math.unit(6, "feet"),
  32765. weight: math.unit(300, "lb"),
  32766. name: "Front",
  32767. image: {
  32768. source: "./media/characters/tanio/front.svg",
  32769. extra: 711/673,
  32770. bottom: 25/736
  32771. }
  32772. },
  32773. },
  32774. [
  32775. {
  32776. name: "Normal",
  32777. height: math.unit(6, "feet"),
  32778. default: true
  32779. },
  32780. ]
  32781. ))
  32782. characterMakers.push(() => makeCharacter(
  32783. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32784. {
  32785. front: {
  32786. height: math.unit(3, "inches"),
  32787. name: "Front",
  32788. image: {
  32789. source: "./media/characters/noboru/front.svg",
  32790. extra: 1039/932,
  32791. bottom: 18/1057
  32792. }
  32793. },
  32794. },
  32795. [
  32796. {
  32797. name: "Micro",
  32798. height: math.unit(3, "inches"),
  32799. default: true
  32800. },
  32801. ]
  32802. ))
  32803. characterMakers.push(() => makeCharacter(
  32804. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32805. {
  32806. front: {
  32807. height: math.unit(1.85, "meters"),
  32808. weight: math.unit(80, "kg"),
  32809. name: "Front",
  32810. image: {
  32811. source: "./media/characters/daniel-barrett/front.svg",
  32812. extra: 355/337,
  32813. bottom: 9/364
  32814. }
  32815. },
  32816. },
  32817. [
  32818. {
  32819. name: "Pico",
  32820. height: math.unit(0.0433, "mm")
  32821. },
  32822. {
  32823. name: "Nano",
  32824. height: math.unit(1.5, "mm")
  32825. },
  32826. {
  32827. name: "Micro",
  32828. height: math.unit(5.3, "cm"),
  32829. default: true
  32830. },
  32831. {
  32832. name: "Normal",
  32833. height: math.unit(1.85, "meters")
  32834. },
  32835. {
  32836. name: "Macro",
  32837. height: math.unit(64.7, "meters")
  32838. },
  32839. {
  32840. name: "Megamacro",
  32841. height: math.unit(2.26, "km")
  32842. },
  32843. {
  32844. name: "Gigamacro",
  32845. height: math.unit(79, "km")
  32846. },
  32847. {
  32848. name: "Teramacro",
  32849. height: math.unit(2765, "km")
  32850. },
  32851. {
  32852. name: "Petamacro",
  32853. height: math.unit(96678, "km")
  32854. },
  32855. ]
  32856. ))
  32857. characterMakers.push(() => makeCharacter(
  32858. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32859. {
  32860. front: {
  32861. height: math.unit(30, "meters"),
  32862. weight: math.unit(400, "tons"),
  32863. name: "Front",
  32864. image: {
  32865. source: "./media/characters/zeel/front.svg",
  32866. extra: 2599/2599,
  32867. bottom: 226/2825
  32868. }
  32869. },
  32870. },
  32871. [
  32872. {
  32873. name: "Macro",
  32874. height: math.unit(30, "meters"),
  32875. default: true
  32876. },
  32877. ]
  32878. ))
  32879. characterMakers.push(() => makeCharacter(
  32880. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32881. {
  32882. front: {
  32883. height: math.unit(6 + 7/12, "feet"),
  32884. weight: math.unit(210, "lb"),
  32885. name: "Front",
  32886. image: {
  32887. source: "./media/characters/tarn/front.svg",
  32888. extra: 3517/3220,
  32889. bottom: 91/3608
  32890. }
  32891. },
  32892. back: {
  32893. height: math.unit(6 + 7/12, "feet"),
  32894. weight: math.unit(210, "lb"),
  32895. name: "Back",
  32896. image: {
  32897. source: "./media/characters/tarn/back.svg",
  32898. extra: 3566/3241,
  32899. bottom: 34/3600
  32900. }
  32901. },
  32902. dick: {
  32903. height: math.unit(1.65, "feet"),
  32904. name: "Dick",
  32905. image: {
  32906. source: "./media/characters/tarn/dick.svg"
  32907. }
  32908. },
  32909. paw: {
  32910. height: math.unit(1.80, "feet"),
  32911. name: "Paw",
  32912. image: {
  32913. source: "./media/characters/tarn/paw.svg"
  32914. }
  32915. },
  32916. tongue: {
  32917. height: math.unit(0.97, "feet"),
  32918. name: "Tongue",
  32919. image: {
  32920. source: "./media/characters/tarn/tongue.svg"
  32921. }
  32922. },
  32923. },
  32924. [
  32925. {
  32926. name: "Micro",
  32927. height: math.unit(4, "inches")
  32928. },
  32929. {
  32930. name: "Normal",
  32931. height: math.unit(6 + 7/12, "feet"),
  32932. default: true
  32933. },
  32934. {
  32935. name: "Macro",
  32936. height: math.unit(300, "feet")
  32937. },
  32938. ]
  32939. ))
  32940. characterMakers.push(() => makeCharacter(
  32941. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32942. {
  32943. front: {
  32944. height: math.unit(5 + 7/12, "feet"),
  32945. weight: math.unit(80, "kg"),
  32946. name: "Front",
  32947. image: {
  32948. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32949. extra: 3023/2865,
  32950. bottom: 33/3056
  32951. }
  32952. },
  32953. back: {
  32954. height: math.unit(5 + 7/12, "feet"),
  32955. weight: math.unit(80, "kg"),
  32956. name: "Back",
  32957. image: {
  32958. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32959. extra: 3020/2886,
  32960. bottom: 30/3050
  32961. }
  32962. },
  32963. dick: {
  32964. height: math.unit(0.98, "feet"),
  32965. name: "Dick",
  32966. image: {
  32967. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32968. }
  32969. },
  32970. anatomy: {
  32971. height: math.unit(2.86, "feet"),
  32972. name: "Anatomy",
  32973. image: {
  32974. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32975. }
  32976. },
  32977. },
  32978. [
  32979. {
  32980. name: "Really Small",
  32981. height: math.unit(2, "inches")
  32982. },
  32983. {
  32984. name: "Micro",
  32985. height: math.unit(5.583, "inches")
  32986. },
  32987. {
  32988. name: "Normal",
  32989. height: math.unit(5 + 7/12, "feet"),
  32990. default: true
  32991. },
  32992. {
  32993. name: "Macro",
  32994. height: math.unit(67, "feet")
  32995. },
  32996. {
  32997. name: "Megamacro",
  32998. height: math.unit(134, "feet")
  32999. },
  33000. ]
  33001. ))
  33002. characterMakers.push(() => makeCharacter(
  33003. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33004. {
  33005. front: {
  33006. height: math.unit(9, "feet"),
  33007. weight: math.unit(120, "lb"),
  33008. name: "Front",
  33009. image: {
  33010. source: "./media/characters/sally/front.svg",
  33011. extra: 1506/1349,
  33012. bottom: 66/1572
  33013. }
  33014. },
  33015. },
  33016. [
  33017. {
  33018. name: "Normal",
  33019. height: math.unit(9, "feet"),
  33020. default: true
  33021. },
  33022. ]
  33023. ))
  33024. characterMakers.push(() => makeCharacter(
  33025. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33026. {
  33027. front: {
  33028. height: math.unit(8, "feet"),
  33029. weight: math.unit(900, "lb"),
  33030. name: "Front",
  33031. image: {
  33032. source: "./media/characters/owen/front.svg",
  33033. extra: 1761/1657,
  33034. bottom: 74/1835
  33035. }
  33036. },
  33037. side: {
  33038. height: math.unit(8, "feet"),
  33039. weight: math.unit(900, "lb"),
  33040. name: "Side",
  33041. image: {
  33042. source: "./media/characters/owen/side.svg",
  33043. extra: 1797/1734,
  33044. bottom: 30/1827
  33045. }
  33046. },
  33047. back: {
  33048. height: math.unit(8, "feet"),
  33049. weight: math.unit(900, "lb"),
  33050. name: "Back",
  33051. image: {
  33052. source: "./media/characters/owen/back.svg",
  33053. extra: 1796/1706,
  33054. bottom: 59/1855
  33055. }
  33056. },
  33057. maw: {
  33058. height: math.unit(1.76, "feet"),
  33059. name: "Maw",
  33060. image: {
  33061. source: "./media/characters/owen/maw.svg"
  33062. }
  33063. },
  33064. },
  33065. [
  33066. {
  33067. name: "Normal",
  33068. height: math.unit(8, "feet"),
  33069. default: true
  33070. },
  33071. ]
  33072. ))
  33073. characterMakers.push(() => makeCharacter(
  33074. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33075. {
  33076. front: {
  33077. height: math.unit(4, "feet"),
  33078. weight: math.unit(400, "lb"),
  33079. name: "Front",
  33080. image: {
  33081. source: "./media/characters/ryth/front.svg",
  33082. extra: 1920/1748,
  33083. bottom: 42/1962
  33084. }
  33085. },
  33086. back: {
  33087. height: math.unit(4, "feet"),
  33088. weight: math.unit(400, "lb"),
  33089. name: "Back",
  33090. image: {
  33091. source: "./media/characters/ryth/back.svg",
  33092. extra: 1897/1690,
  33093. bottom: 89/1986
  33094. }
  33095. },
  33096. mouth: {
  33097. height: math.unit(1.39, "feet"),
  33098. name: "Mouth",
  33099. image: {
  33100. source: "./media/characters/ryth/mouth.svg"
  33101. }
  33102. },
  33103. tailmaw: {
  33104. height: math.unit(1.23, "feet"),
  33105. name: "Tailmaw",
  33106. image: {
  33107. source: "./media/characters/ryth/tailmaw.svg"
  33108. }
  33109. },
  33110. goia: {
  33111. height: math.unit(4, "meters"),
  33112. weight: math.unit(10800, "lb"),
  33113. name: "Goia",
  33114. image: {
  33115. source: "./media/characters/ryth/goia.svg",
  33116. extra: 745/640,
  33117. bottom: 107/852
  33118. }
  33119. },
  33120. goiaFront: {
  33121. height: math.unit(4, "meters"),
  33122. weight: math.unit(10800, "lb"),
  33123. name: "Goia (Front)",
  33124. image: {
  33125. source: "./media/characters/ryth/goia-front.svg",
  33126. extra: 750/586,
  33127. bottom: 114/864
  33128. }
  33129. },
  33130. goiaMaw: {
  33131. height: math.unit(5.55, "feet"),
  33132. name: "Goia Maw",
  33133. image: {
  33134. source: "./media/characters/ryth/goia-maw.svg"
  33135. }
  33136. },
  33137. goiaForepaw: {
  33138. height: math.unit(3.5, "feet"),
  33139. name: "Goia Forepaw",
  33140. image: {
  33141. source: "./media/characters/ryth/goia-forepaw.svg"
  33142. }
  33143. },
  33144. goiaHindpaw: {
  33145. height: math.unit(5.55, "feet"),
  33146. name: "Goia Hindpaw",
  33147. image: {
  33148. source: "./media/characters/ryth/goia-hindpaw.svg"
  33149. }
  33150. },
  33151. },
  33152. [
  33153. {
  33154. name: "Normal",
  33155. height: math.unit(4, "feet"),
  33156. default: true
  33157. },
  33158. ]
  33159. ))
  33160. characterMakers.push(() => makeCharacter(
  33161. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33162. {
  33163. front: {
  33164. height: math.unit(7, "feet"),
  33165. weight: math.unit(180, "lb"),
  33166. name: "Front",
  33167. image: {
  33168. source: "./media/characters/necrolance/front.svg",
  33169. extra: 1062/947,
  33170. bottom: 41/1103
  33171. }
  33172. },
  33173. back: {
  33174. height: math.unit(7, "feet"),
  33175. weight: math.unit(180, "lb"),
  33176. name: "Back",
  33177. image: {
  33178. source: "./media/characters/necrolance/back.svg",
  33179. extra: 1045/984,
  33180. bottom: 14/1059
  33181. }
  33182. },
  33183. wing: {
  33184. height: math.unit(2.67, "feet"),
  33185. name: "Wing",
  33186. image: {
  33187. source: "./media/characters/necrolance/wing.svg"
  33188. }
  33189. },
  33190. },
  33191. [
  33192. {
  33193. name: "Normal",
  33194. height: math.unit(7, "feet"),
  33195. default: true
  33196. },
  33197. ]
  33198. ))
  33199. characterMakers.push(() => makeCharacter(
  33200. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33201. {
  33202. front: {
  33203. height: math.unit(76, "meters"),
  33204. weight: math.unit(30000, "tons"),
  33205. name: "Front",
  33206. image: {
  33207. source: "./media/characters/tyler/front.svg",
  33208. extra: 1640/1640,
  33209. bottom: 114/1754
  33210. }
  33211. },
  33212. },
  33213. [
  33214. {
  33215. name: "Macro",
  33216. height: math.unit(76, "meters"),
  33217. default: true
  33218. },
  33219. ]
  33220. ))
  33221. characterMakers.push(() => makeCharacter(
  33222. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33223. {
  33224. front: {
  33225. height: math.unit(4 + 11/12, "feet"),
  33226. weight: math.unit(132, "lb"),
  33227. name: "Front",
  33228. image: {
  33229. source: "./media/characters/icey/front.svg",
  33230. extra: 2750/2550,
  33231. bottom: 33/2783
  33232. }
  33233. },
  33234. back: {
  33235. height: math.unit(4 + 11/12, "feet"),
  33236. weight: math.unit(132, "lb"),
  33237. name: "Back",
  33238. image: {
  33239. source: "./media/characters/icey/back.svg",
  33240. extra: 2624/2481,
  33241. bottom: 35/2659
  33242. }
  33243. },
  33244. },
  33245. [
  33246. {
  33247. name: "Normal",
  33248. height: math.unit(4 + 11/12, "feet"),
  33249. default: true
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33255. {
  33256. front: {
  33257. height: math.unit(100, "feet"),
  33258. weight: math.unit(0, "lb"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/smile/front.svg",
  33262. extra: 2983/2912,
  33263. bottom: 162/3145
  33264. }
  33265. },
  33266. back: {
  33267. height: math.unit(100, "feet"),
  33268. weight: math.unit(0, "lb"),
  33269. name: "Back",
  33270. image: {
  33271. source: "./media/characters/smile/back.svg",
  33272. extra: 3143/3031,
  33273. bottom: 91/3234
  33274. }
  33275. },
  33276. head: {
  33277. height: math.unit(26.3, "feet"),
  33278. weight: math.unit(0, "lb"),
  33279. name: "Head",
  33280. image: {
  33281. source: "./media/characters/smile/head.svg"
  33282. }
  33283. },
  33284. collar: {
  33285. height: math.unit(5.3, "feet"),
  33286. weight: math.unit(0, "lb"),
  33287. name: "Collar",
  33288. image: {
  33289. source: "./media/characters/smile/collar.svg"
  33290. }
  33291. },
  33292. },
  33293. [
  33294. {
  33295. name: "Macro",
  33296. height: math.unit(100, "feet"),
  33297. default: true
  33298. },
  33299. ]
  33300. ))
  33301. characterMakers.push(() => makeCharacter(
  33302. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33303. {
  33304. dragon: {
  33305. height: math.unit(26, "feet"),
  33306. weight: math.unit(36, "tons"),
  33307. name: "Dragon",
  33308. image: {
  33309. source: "./media/characters/arimphae/dragon.svg",
  33310. extra: 1574/983,
  33311. bottom: 357/1931
  33312. }
  33313. },
  33314. drake: {
  33315. height: math.unit(9, "feet"),
  33316. weight: math.unit(1.5, "tons"),
  33317. name: "Drake",
  33318. image: {
  33319. source: "./media/characters/arimphae/drake.svg",
  33320. extra: 1120/925,
  33321. bottom: 435/1555
  33322. }
  33323. },
  33324. },
  33325. [
  33326. {
  33327. name: "Small",
  33328. height: math.unit(26*5/9, "feet")
  33329. },
  33330. {
  33331. name: "Normal",
  33332. height: math.unit(26, "feet"),
  33333. default: true
  33334. },
  33335. ]
  33336. ))
  33337. characterMakers.push(() => makeCharacter(
  33338. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33339. {
  33340. front: {
  33341. height: math.unit(8 + 9/12, "feet"),
  33342. name: "Front",
  33343. image: {
  33344. source: "./media/characters/xander/front.svg",
  33345. extra: 1237/974,
  33346. bottom: 94/1331
  33347. }
  33348. },
  33349. },
  33350. [
  33351. {
  33352. name: "Normal",
  33353. height: math.unit(8 + 9/12, "feet"),
  33354. default: true
  33355. },
  33356. {
  33357. name: "Gaze Grabber",
  33358. height: math.unit(13 + 8/12, "feet")
  33359. },
  33360. {
  33361. name: "Jaw Dropper",
  33362. height: math.unit(27, "feet")
  33363. },
  33364. {
  33365. name: "Show Stopper",
  33366. height: math.unit(136, "feet")
  33367. },
  33368. {
  33369. name: "Superstar",
  33370. height: math.unit(1.9e6, "miles")
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33376. {
  33377. side: {
  33378. height: math.unit(2100, "feet"),
  33379. name: "Side",
  33380. image: {
  33381. source: "./media/characters/osiris/side.svg",
  33382. extra: 1105/939,
  33383. bottom: 167/1272
  33384. }
  33385. },
  33386. },
  33387. [
  33388. {
  33389. name: "Macro",
  33390. height: math.unit(2100, "feet"),
  33391. default: true
  33392. },
  33393. ]
  33394. ))
  33395. characterMakers.push(() => makeCharacter(
  33396. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33397. {
  33398. front: {
  33399. height: math.unit(6 + 8/12, "feet"),
  33400. weight: math.unit(225, "lb"),
  33401. name: "Front",
  33402. image: {
  33403. source: "./media/characters/rhys-londe/front.svg",
  33404. extra: 2258/2141,
  33405. bottom: 188/2446
  33406. }
  33407. },
  33408. back: {
  33409. height: math.unit(6 + 8/12, "feet"),
  33410. weight: math.unit(225, "lb"),
  33411. name: "Back",
  33412. image: {
  33413. source: "./media/characters/rhys-londe/back.svg",
  33414. extra: 2237/2137,
  33415. bottom: 63/2300
  33416. }
  33417. },
  33418. frontNsfw: {
  33419. height: math.unit(6 + 8/12, "feet"),
  33420. weight: math.unit(225, "lb"),
  33421. name: "Front (NSFW)",
  33422. image: {
  33423. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33424. extra: 2258/2141,
  33425. bottom: 188/2446
  33426. }
  33427. },
  33428. backNsfw: {
  33429. height: math.unit(6 + 8/12, "feet"),
  33430. weight: math.unit(225, "lb"),
  33431. name: "Back (NSFW)",
  33432. image: {
  33433. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33434. extra: 2237/2137,
  33435. bottom: 63/2300
  33436. }
  33437. },
  33438. dick: {
  33439. height: math.unit(30, "inches"),
  33440. name: "Dick",
  33441. image: {
  33442. source: "./media/characters/rhys-londe/dick.svg"
  33443. }
  33444. },
  33445. maw: {
  33446. height: math.unit(1.6, "feet"),
  33447. name: "Maw",
  33448. image: {
  33449. source: "./media/characters/rhys-londe/maw.svg"
  33450. }
  33451. },
  33452. },
  33453. [
  33454. {
  33455. name: "Normal",
  33456. height: math.unit(6 + 8/12, "feet"),
  33457. default: true
  33458. },
  33459. ]
  33460. ))
  33461. characterMakers.push(() => makeCharacter(
  33462. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33463. {
  33464. front: {
  33465. height: math.unit(3 + 10/12, "feet"),
  33466. weight: math.unit(90, "lb"),
  33467. name: "Front",
  33468. image: {
  33469. source: "./media/characters/taivas-ensim/front.svg",
  33470. extra: 1327/1216,
  33471. bottom: 96/1423
  33472. }
  33473. },
  33474. back: {
  33475. height: math.unit(3 + 10/12, "feet"),
  33476. weight: math.unit(90, "lb"),
  33477. name: "Back",
  33478. image: {
  33479. source: "./media/characters/taivas-ensim/back.svg",
  33480. extra: 1355/1247,
  33481. bottom: 11/1366
  33482. }
  33483. },
  33484. frontNsfw: {
  33485. height: math.unit(3 + 10/12, "feet"),
  33486. weight: math.unit(90, "lb"),
  33487. name: "Front (NSFW)",
  33488. image: {
  33489. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33490. extra: 1327/1216,
  33491. bottom: 96/1423
  33492. }
  33493. },
  33494. backNsfw: {
  33495. height: math.unit(3 + 10/12, "feet"),
  33496. weight: math.unit(90, "lb"),
  33497. name: "Back (NSFW)",
  33498. image: {
  33499. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33500. extra: 1355/1247,
  33501. bottom: 11/1366
  33502. }
  33503. },
  33504. },
  33505. [
  33506. {
  33507. name: "Normal",
  33508. height: math.unit(3 + 10/12, "feet"),
  33509. default: true
  33510. },
  33511. ]
  33512. ))
  33513. characterMakers.push(() => makeCharacter(
  33514. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33515. {
  33516. front: {
  33517. height: math.unit(9 + 6/12, "feet"),
  33518. weight: math.unit(940, "lb"),
  33519. name: "Front",
  33520. image: {
  33521. source: "./media/characters/byliss/front.svg",
  33522. extra: 1327/1290,
  33523. bottom: 82/1409
  33524. }
  33525. },
  33526. back: {
  33527. height: math.unit(9 + 6/12, "feet"),
  33528. weight: math.unit(940, "lb"),
  33529. name: "Back",
  33530. image: {
  33531. source: "./media/characters/byliss/back.svg",
  33532. extra: 1376/1349,
  33533. bottom: 9/1385
  33534. }
  33535. },
  33536. frontNsfw: {
  33537. height: math.unit(9 + 6/12, "feet"),
  33538. weight: math.unit(940, "lb"),
  33539. name: "Front (NSFW)",
  33540. image: {
  33541. source: "./media/characters/byliss/front-nsfw.svg",
  33542. extra: 1327/1290,
  33543. bottom: 82/1409
  33544. }
  33545. },
  33546. backNsfw: {
  33547. height: math.unit(9 + 6/12, "feet"),
  33548. weight: math.unit(940, "lb"),
  33549. name: "Back (NSFW)",
  33550. image: {
  33551. source: "./media/characters/byliss/back-nsfw.svg",
  33552. extra: 1376/1349,
  33553. bottom: 9/1385
  33554. }
  33555. },
  33556. },
  33557. [
  33558. {
  33559. name: "Normal",
  33560. height: math.unit(9 + 6/12, "feet"),
  33561. default: true
  33562. },
  33563. ]
  33564. ))
  33565. characterMakers.push(() => makeCharacter(
  33566. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33567. {
  33568. front: {
  33569. height: math.unit(5 + 2/12, "feet"),
  33570. weight: math.unit(200, "lb"),
  33571. name: "Front",
  33572. image: {
  33573. source: "./media/characters/noraly/front.svg",
  33574. extra: 4985/4773,
  33575. bottom: 150/5135
  33576. }
  33577. },
  33578. full: {
  33579. height: math.unit(5 + 2/12, "feet"),
  33580. weight: math.unit(164, "lb"),
  33581. name: "Full",
  33582. image: {
  33583. source: "./media/characters/noraly/full.svg",
  33584. extra: 1114/1059,
  33585. bottom: 35/1149
  33586. }
  33587. },
  33588. fuller: {
  33589. height: math.unit(5 + 2/12, "feet"),
  33590. weight: math.unit(230, "lb"),
  33591. name: "Fuller",
  33592. image: {
  33593. source: "./media/characters/noraly/fuller.svg",
  33594. extra: 1114/1059,
  33595. bottom: 35/1149
  33596. }
  33597. },
  33598. fullest: {
  33599. height: math.unit(5 + 2/12, "feet"),
  33600. weight: math.unit(300, "lb"),
  33601. name: "Fullest",
  33602. image: {
  33603. source: "./media/characters/noraly/fullest.svg",
  33604. extra: 1114/1059,
  33605. bottom: 35/1149
  33606. }
  33607. },
  33608. },
  33609. [
  33610. {
  33611. name: "Normal",
  33612. height: math.unit(5 + 2/12, "feet"),
  33613. default: true
  33614. },
  33615. ]
  33616. ))
  33617. characterMakers.push(() => makeCharacter(
  33618. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33619. {
  33620. front: {
  33621. height: math.unit(5 + 2/12, "feet"),
  33622. weight: math.unit(210, "lb"),
  33623. name: "Front",
  33624. image: {
  33625. source: "./media/characters/pera/front.svg",
  33626. extra: 1560/1531,
  33627. bottom: 165/1725
  33628. }
  33629. },
  33630. back: {
  33631. height: math.unit(5 + 2/12, "feet"),
  33632. weight: math.unit(210, "lb"),
  33633. name: "Back",
  33634. image: {
  33635. source: "./media/characters/pera/back.svg",
  33636. extra: 1523/1493,
  33637. bottom: 152/1675
  33638. }
  33639. },
  33640. dick: {
  33641. height: math.unit(2.4, "feet"),
  33642. name: "Dick",
  33643. image: {
  33644. source: "./media/characters/pera/dick.svg"
  33645. }
  33646. },
  33647. },
  33648. [
  33649. {
  33650. name: "Normal",
  33651. height: math.unit(5 + 2/12, "feet"),
  33652. default: true
  33653. },
  33654. ]
  33655. ))
  33656. characterMakers.push(() => makeCharacter(
  33657. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33658. {
  33659. front: {
  33660. height: math.unit(12, "feet"),
  33661. weight: math.unit(3200, "lb"),
  33662. name: "Front",
  33663. image: {
  33664. source: "./media/characters/julian/front.svg",
  33665. extra: 2962/2701,
  33666. bottom: 184/3146
  33667. }
  33668. },
  33669. maw: {
  33670. height: math.unit(5.35, "feet"),
  33671. name: "Maw",
  33672. image: {
  33673. source: "./media/characters/julian/maw.svg"
  33674. }
  33675. },
  33676. paw: {
  33677. height: math.unit(3.07, "feet"),
  33678. name: "Paw",
  33679. image: {
  33680. source: "./media/characters/julian/paw.svg"
  33681. }
  33682. },
  33683. },
  33684. [
  33685. {
  33686. name: "Default",
  33687. height: math.unit(12, "feet"),
  33688. default: true
  33689. },
  33690. {
  33691. name: "Big",
  33692. height: math.unit(50, "feet")
  33693. },
  33694. {
  33695. name: "Really Big",
  33696. height: math.unit(1, "mile")
  33697. },
  33698. {
  33699. name: "Extremely Big",
  33700. height: math.unit(100, "miles")
  33701. },
  33702. {
  33703. name: "Planet Hugger",
  33704. height: math.unit(200, "megameters")
  33705. },
  33706. {
  33707. name: "Unreasonably Big",
  33708. height: math.unit(1e300, "meters")
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33714. {
  33715. solgooleo: {
  33716. height: math.unit(4, "meters"),
  33717. weight: math.unit(6000*1.5, "kg"),
  33718. volume: math.unit(6000, "liters"),
  33719. name: "Solgooleo",
  33720. image: {
  33721. source: "./media/characters/pi/solgooleo.svg",
  33722. extra: 388/331,
  33723. bottom: 29/417
  33724. }
  33725. },
  33726. },
  33727. [
  33728. {
  33729. name: "Normal",
  33730. height: math.unit(4, "meters"),
  33731. default: true
  33732. },
  33733. ]
  33734. ))
  33735. characterMakers.push(() => makeCharacter(
  33736. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33737. {
  33738. front: {
  33739. height: math.unit(8, "feet"),
  33740. weight: math.unit(4, "tons"),
  33741. name: "Front",
  33742. image: {
  33743. source: "./media/characters/shaun/front.svg",
  33744. extra: 503/495,
  33745. bottom: 20/523
  33746. }
  33747. },
  33748. back: {
  33749. height: math.unit(8, "feet"),
  33750. weight: math.unit(4, "tons"),
  33751. name: "Back",
  33752. image: {
  33753. source: "./media/characters/shaun/back.svg",
  33754. extra: 487/480,
  33755. bottom: 20/507
  33756. }
  33757. },
  33758. },
  33759. [
  33760. {
  33761. name: "Lorg",
  33762. height: math.unit(8, "feet"),
  33763. default: true
  33764. },
  33765. ]
  33766. ))
  33767. characterMakers.push(() => makeCharacter(
  33768. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33769. {
  33770. frontAnthro: {
  33771. height: math.unit(7, "feet"),
  33772. name: "Front",
  33773. image: {
  33774. source: "./media/characters/sini/front-anthro.svg",
  33775. extra: 726/678,
  33776. bottom: 35/761
  33777. },
  33778. form: "anthro",
  33779. default: true
  33780. },
  33781. backAnthro: {
  33782. height: math.unit(7, "feet"),
  33783. name: "Back",
  33784. image: {
  33785. source: "./media/characters/sini/back-anthro.svg",
  33786. extra: 743/701,
  33787. bottom: 12/755
  33788. },
  33789. form: "anthro",
  33790. },
  33791. frontAnthroNsfw: {
  33792. height: math.unit(7, "feet"),
  33793. name: "Front (NSFW)",
  33794. image: {
  33795. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33796. extra: 726/678,
  33797. bottom: 35/761
  33798. },
  33799. form: "anthro"
  33800. },
  33801. backAnthroNsfw: {
  33802. height: math.unit(7, "feet"),
  33803. name: "Back (NSFW)",
  33804. image: {
  33805. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33806. extra: 743/701,
  33807. bottom: 12/755
  33808. },
  33809. form: "anthro",
  33810. },
  33811. mawAnthro: {
  33812. height: math.unit(2.14, "feet"),
  33813. name: "Maw",
  33814. image: {
  33815. source: "./media/characters/sini/maw-anthro.svg"
  33816. },
  33817. form: "anthro"
  33818. },
  33819. dick: {
  33820. height: math.unit(1.45, "feet"),
  33821. name: "Dick",
  33822. image: {
  33823. source: "./media/characters/sini/dick-anthro.svg"
  33824. },
  33825. form: "anthro"
  33826. },
  33827. feral: {
  33828. height: math.unit(16, "feet"),
  33829. name: "Feral",
  33830. image: {
  33831. source: "./media/characters/sini/feral.svg",
  33832. extra: 814/605,
  33833. bottom: 11/825
  33834. },
  33835. form: "feral",
  33836. default: true
  33837. },
  33838. feralNsfw: {
  33839. height: math.unit(16, "feet"),
  33840. name: "Feral (NSFW)",
  33841. image: {
  33842. source: "./media/characters/sini/feral-nsfw.svg",
  33843. extra: 814/605,
  33844. bottom: 11/825
  33845. },
  33846. form: "feral"
  33847. },
  33848. mawFeral: {
  33849. height: math.unit(5.66, "feet"),
  33850. name: "Maw",
  33851. image: {
  33852. source: "./media/characters/sini/maw-feral.svg"
  33853. },
  33854. form: "feral",
  33855. },
  33856. pawFeral: {
  33857. height: math.unit(5.17, "feet"),
  33858. name: "Paw",
  33859. image: {
  33860. source: "./media/characters/sini/paw-feral.svg"
  33861. },
  33862. form: "feral",
  33863. },
  33864. rumpFeral: {
  33865. height: math.unit(13.11, "feet"),
  33866. name: "Rump",
  33867. image: {
  33868. source: "./media/characters/sini/rump-feral.svg"
  33869. },
  33870. form: "feral",
  33871. },
  33872. dickFeral: {
  33873. height: math.unit(1, "feet"),
  33874. name: "Dick",
  33875. image: {
  33876. source: "./media/characters/sini/dick-feral.svg"
  33877. },
  33878. form: "feral",
  33879. },
  33880. eyeFeral: {
  33881. height: math.unit(1.23, "feet"),
  33882. name: "Eye",
  33883. image: {
  33884. source: "./media/characters/sini/eye-feral.svg"
  33885. },
  33886. form: "feral",
  33887. },
  33888. },
  33889. [
  33890. {
  33891. name: "Normal",
  33892. height: math.unit(7, "feet"),
  33893. default: true,
  33894. form: "anthro"
  33895. },
  33896. {
  33897. name: "Normal",
  33898. height: math.unit(16, "feet"),
  33899. default: true,
  33900. form: "feral"
  33901. },
  33902. ],
  33903. {
  33904. "anthro": {
  33905. name: "Anthro",
  33906. default: true
  33907. },
  33908. "feral": {
  33909. name: "Feral",
  33910. }
  33911. }
  33912. ))
  33913. characterMakers.push(() => makeCharacter(
  33914. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33915. {
  33916. side: {
  33917. height: math.unit(47.2, "meters"),
  33918. weight: math.unit(10000, "tons"),
  33919. name: "Side",
  33920. image: {
  33921. source: "./media/characters/raylldo/side.svg",
  33922. extra: 2363/642,
  33923. bottom: 221/2584
  33924. }
  33925. },
  33926. top: {
  33927. height: math.unit(240, "meters"),
  33928. weight: math.unit(10000, "tons"),
  33929. name: "Top",
  33930. image: {
  33931. source: "./media/characters/raylldo/top.svg"
  33932. }
  33933. },
  33934. bottom: {
  33935. height: math.unit(240, "meters"),
  33936. weight: math.unit(10000, "tons"),
  33937. name: "Bottom",
  33938. image: {
  33939. source: "./media/characters/raylldo/bottom.svg"
  33940. }
  33941. },
  33942. head: {
  33943. height: math.unit(38.6, "meters"),
  33944. name: "Head",
  33945. image: {
  33946. source: "./media/characters/raylldo/head.svg",
  33947. extra: 1335/1112,
  33948. bottom: 0/1335
  33949. }
  33950. },
  33951. maw: {
  33952. height: math.unit(16.37, "meters"),
  33953. name: "Maw",
  33954. image: {
  33955. source: "./media/characters/raylldo/maw.svg",
  33956. extra: 883/660,
  33957. bottom: 0/883
  33958. },
  33959. extraAttributes: {
  33960. preyCapacity: {
  33961. name: "Capacity",
  33962. power: 3,
  33963. type: "volume",
  33964. base: math.unit(1000, "people")
  33965. },
  33966. tongueSize: {
  33967. name: "Tongue Size",
  33968. power: 2,
  33969. type: "area",
  33970. base: math.unit(21, "m^2")
  33971. }
  33972. }
  33973. },
  33974. forepaw: {
  33975. height: math.unit(18, "meters"),
  33976. name: "Forepaw",
  33977. image: {
  33978. source: "./media/characters/raylldo/forepaw.svg"
  33979. }
  33980. },
  33981. hindpaw: {
  33982. height: math.unit(23, "meters"),
  33983. name: "Hindpaw",
  33984. image: {
  33985. source: "./media/characters/raylldo/hindpaw.svg"
  33986. }
  33987. },
  33988. genitals: {
  33989. height: math.unit(42, "meters"),
  33990. name: "Genitals",
  33991. image: {
  33992. source: "./media/characters/raylldo/genitals.svg"
  33993. }
  33994. },
  33995. },
  33996. [
  33997. {
  33998. name: "Normal",
  33999. height: math.unit(47.2, "meters"),
  34000. default: true
  34001. },
  34002. ]
  34003. ))
  34004. characterMakers.push(() => makeCharacter(
  34005. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34006. {
  34007. anthroFront: {
  34008. height: math.unit(9, "feet"),
  34009. weight: math.unit(600, "lb"),
  34010. name: "Anthro (Front)",
  34011. image: {
  34012. source: "./media/characters/glint/anthro-front.svg",
  34013. extra: 1097/1018,
  34014. bottom: 28/1125
  34015. }
  34016. },
  34017. anthroBack: {
  34018. height: math.unit(9, "feet"),
  34019. weight: math.unit(600, "lb"),
  34020. name: "Anthro (Back)",
  34021. image: {
  34022. source: "./media/characters/glint/anthro-back.svg",
  34023. extra: 1154/997,
  34024. bottom: 36/1190
  34025. }
  34026. },
  34027. feral: {
  34028. height: math.unit(11, "feet"),
  34029. weight: math.unit(50000, "lb"),
  34030. name: "Feral",
  34031. image: {
  34032. source: "./media/characters/glint/feral.svg",
  34033. extra: 3035/1585,
  34034. bottom: 1169/4204
  34035. }
  34036. },
  34037. dickAnthro: {
  34038. height: math.unit(0.7, "meters"),
  34039. name: "Dick (Anthro)",
  34040. image: {
  34041. source: "./media/characters/glint/dick-anthro.svg"
  34042. }
  34043. },
  34044. dickFeral: {
  34045. height: math.unit(2.65, "meters"),
  34046. name: "Dick (Feral)",
  34047. image: {
  34048. source: "./media/characters/glint/dick-feral.svg"
  34049. }
  34050. },
  34051. slitHidden: {
  34052. height: math.unit(5.85, "meters"),
  34053. name: "Slit (Hidden)",
  34054. image: {
  34055. source: "./media/characters/glint/slit-hidden.svg"
  34056. }
  34057. },
  34058. slitErect: {
  34059. height: math.unit(5.85, "meters"),
  34060. name: "Slit (Erect)",
  34061. image: {
  34062. source: "./media/characters/glint/slit-erect.svg"
  34063. }
  34064. },
  34065. mawAnthro: {
  34066. height: math.unit(0.63, "meters"),
  34067. name: "Maw (Anthro)",
  34068. image: {
  34069. source: "./media/characters/glint/maw.svg"
  34070. }
  34071. },
  34072. mawFeral: {
  34073. height: math.unit(2.89, "meters"),
  34074. name: "Maw (Feral)",
  34075. image: {
  34076. source: "./media/characters/glint/maw.svg"
  34077. }
  34078. },
  34079. },
  34080. [
  34081. {
  34082. name: "Normal",
  34083. height: math.unit(9, "feet"),
  34084. default: true
  34085. },
  34086. ]
  34087. ))
  34088. characterMakers.push(() => makeCharacter(
  34089. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34090. {
  34091. side: {
  34092. height: math.unit(15, "feet"),
  34093. weight: math.unit(5000, "kg"),
  34094. name: "Side",
  34095. image: {
  34096. source: "./media/characters/kairne/side.svg",
  34097. extra: 979/811,
  34098. bottom: 13/992
  34099. }
  34100. },
  34101. front: {
  34102. height: math.unit(15, "feet"),
  34103. weight: math.unit(5000, "kg"),
  34104. name: "Front",
  34105. image: {
  34106. source: "./media/characters/kairne/front.svg",
  34107. extra: 908/814,
  34108. bottom: 26/934
  34109. }
  34110. },
  34111. sideNsfw: {
  34112. height: math.unit(15, "feet"),
  34113. weight: math.unit(5000, "kg"),
  34114. name: "Side (NSFW)",
  34115. image: {
  34116. source: "./media/characters/kairne/side-nsfw.svg",
  34117. extra: 979/811,
  34118. bottom: 13/992
  34119. }
  34120. },
  34121. frontNsfw: {
  34122. height: math.unit(15, "feet"),
  34123. weight: math.unit(5000, "kg"),
  34124. name: "Front (NSFW)",
  34125. image: {
  34126. source: "./media/characters/kairne/front-nsfw.svg",
  34127. extra: 908/814,
  34128. bottom: 26/934
  34129. }
  34130. },
  34131. dickCaged: {
  34132. height: math.unit(0.65, "meters"),
  34133. name: "Dick-caged",
  34134. image: {
  34135. source: "./media/characters/kairne/dick-caged.svg"
  34136. }
  34137. },
  34138. dick: {
  34139. height: math.unit(0.79, "meters"),
  34140. name: "Dick",
  34141. image: {
  34142. source: "./media/characters/kairne/dick.svg"
  34143. }
  34144. },
  34145. genitals: {
  34146. height: math.unit(1.29, "meters"),
  34147. name: "Genitals",
  34148. image: {
  34149. source: "./media/characters/kairne/genitals.svg"
  34150. }
  34151. },
  34152. maw: {
  34153. height: math.unit(1.73, "meters"),
  34154. name: "Maw",
  34155. image: {
  34156. source: "./media/characters/kairne/maw.svg"
  34157. }
  34158. },
  34159. },
  34160. [
  34161. {
  34162. name: "Normal",
  34163. height: math.unit(15, "feet"),
  34164. default: true
  34165. },
  34166. ]
  34167. ))
  34168. characterMakers.push(() => makeCharacter(
  34169. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34170. {
  34171. front: {
  34172. height: math.unit(5 + 8/12, "feet"),
  34173. weight: math.unit(139, "lb"),
  34174. name: "Front",
  34175. image: {
  34176. source: "./media/characters/biscuit-jackal/front.svg",
  34177. extra: 2106/1961,
  34178. bottom: 58/2164
  34179. }
  34180. },
  34181. back: {
  34182. height: math.unit(5 + 8/12, "feet"),
  34183. weight: math.unit(139, "lb"),
  34184. name: "Back",
  34185. image: {
  34186. source: "./media/characters/biscuit-jackal/back.svg",
  34187. extra: 2132/1976,
  34188. bottom: 57/2189
  34189. }
  34190. },
  34191. werejackal: {
  34192. height: math.unit(6 + 3/12, "feet"),
  34193. weight: math.unit(188, "lb"),
  34194. name: "Werejackal",
  34195. image: {
  34196. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34197. extra: 2373/2178,
  34198. bottom: 53/2426
  34199. }
  34200. },
  34201. },
  34202. [
  34203. {
  34204. name: "Normal",
  34205. height: math.unit(5 + 8/12, "feet"),
  34206. default: true
  34207. },
  34208. ]
  34209. ))
  34210. characterMakers.push(() => makeCharacter(
  34211. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34212. {
  34213. front: {
  34214. height: math.unit(140, "cm"),
  34215. weight: math.unit(45, "kg"),
  34216. name: "Front",
  34217. image: {
  34218. source: "./media/characters/tayra-white/front.svg",
  34219. extra: 2229/2192,
  34220. bottom: 75/2304
  34221. }
  34222. },
  34223. },
  34224. [
  34225. {
  34226. name: "Normal",
  34227. height: math.unit(140, "cm"),
  34228. default: true
  34229. },
  34230. ]
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34234. {
  34235. front: {
  34236. height: math.unit(4 + 5/12, "feet"),
  34237. name: "Front",
  34238. image: {
  34239. source: "./media/characters/scoop/front.svg",
  34240. extra: 1257/1136,
  34241. bottom: 69/1326
  34242. }
  34243. },
  34244. back: {
  34245. height: math.unit(4 + 5/12, "feet"),
  34246. name: "Back",
  34247. image: {
  34248. source: "./media/characters/scoop/back.svg",
  34249. extra: 1321/1152,
  34250. bottom: 32/1353
  34251. }
  34252. },
  34253. maw: {
  34254. height: math.unit(0.68, "feet"),
  34255. name: "Maw",
  34256. image: {
  34257. source: "./media/characters/scoop/maw.svg"
  34258. }
  34259. },
  34260. },
  34261. [
  34262. {
  34263. name: "Really Small",
  34264. height: math.unit(1, "mm")
  34265. },
  34266. {
  34267. name: "Micro",
  34268. height: math.unit(1, "inch")
  34269. },
  34270. {
  34271. name: "Normal",
  34272. height: math.unit(4 + 5/12, "feet"),
  34273. default: true
  34274. },
  34275. {
  34276. name: "Macro",
  34277. height: math.unit(200, "feet")
  34278. },
  34279. {
  34280. name: "Megamacro",
  34281. height: math.unit(3240, "feet")
  34282. },
  34283. {
  34284. name: "Teramacro",
  34285. height: math.unit(2500, "miles")
  34286. },
  34287. ]
  34288. ))
  34289. characterMakers.push(() => makeCharacter(
  34290. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34291. {
  34292. front: {
  34293. height: math.unit(15 + 7/12, "feet"),
  34294. weight: math.unit(1150, "tons"),
  34295. name: "Front",
  34296. image: {
  34297. source: "./media/characters/saphinara/front.svg",
  34298. extra: 1837/1643,
  34299. bottom: 84/1921
  34300. },
  34301. form: "normal",
  34302. default: true
  34303. },
  34304. side: {
  34305. height: math.unit(15 + 7/12, "feet"),
  34306. weight: math.unit(1150, "tons"),
  34307. name: "Side",
  34308. image: {
  34309. source: "./media/characters/saphinara/side.svg",
  34310. extra: 605/547,
  34311. bottom: 6/611
  34312. },
  34313. form: "normal"
  34314. },
  34315. back: {
  34316. height: math.unit(15 + 7/12, "feet"),
  34317. weight: math.unit(1150, "tons"),
  34318. name: "Back",
  34319. image: {
  34320. source: "./media/characters/saphinara/back.svg",
  34321. extra: 591/531,
  34322. bottom: 13/604
  34323. },
  34324. form: "normal"
  34325. },
  34326. frontTail: {
  34327. height: math.unit(15 + 7/12, "feet"),
  34328. weight: math.unit(1150, "tons"),
  34329. name: "Front (Full Tail)",
  34330. image: {
  34331. source: "./media/characters/saphinara/front-tail.svg",
  34332. extra: 2256/1630,
  34333. bottom: 261/2517
  34334. },
  34335. form: "normal"
  34336. },
  34337. insides: {
  34338. height: math.unit(11.92, "feet"),
  34339. name: "Insides",
  34340. image: {
  34341. source: "./media/characters/saphinara/insides.svg"
  34342. },
  34343. form: "normal"
  34344. },
  34345. head: {
  34346. height: math.unit(4.17, "feet"),
  34347. name: "Head",
  34348. image: {
  34349. source: "./media/characters/saphinara/head.svg"
  34350. },
  34351. form: "normal"
  34352. },
  34353. tongue: {
  34354. height: math.unit(4.60, "feet"),
  34355. name: "Tongue",
  34356. image: {
  34357. source: "./media/characters/saphinara/tongue.svg"
  34358. },
  34359. form: "normal"
  34360. },
  34361. headEnraged: {
  34362. height: math.unit(5.55, "feet"),
  34363. name: "Head (Enraged)",
  34364. image: {
  34365. source: "./media/characters/saphinara/head-enraged.svg"
  34366. },
  34367. form: "normal"
  34368. },
  34369. wings: {
  34370. height: math.unit(11.95, "feet"),
  34371. name: "Wings",
  34372. image: {
  34373. source: "./media/characters/saphinara/wings.svg"
  34374. },
  34375. form: "normal"
  34376. },
  34377. feathers: {
  34378. height: math.unit(8.92, "feet"),
  34379. name: "Feathers",
  34380. image: {
  34381. source: "./media/characters/saphinara/feathers.svg"
  34382. },
  34383. form: "normal"
  34384. },
  34385. shackles: {
  34386. height: math.unit(2, "feet"),
  34387. name: "Shackles",
  34388. image: {
  34389. source: "./media/characters/saphinara/shackles.svg"
  34390. },
  34391. form: "normal"
  34392. },
  34393. eyes: {
  34394. height: math.unit(1.331, "feet"),
  34395. name: "Eyes",
  34396. image: {
  34397. source: "./media/characters/saphinara/eyes.svg"
  34398. },
  34399. form: "normal"
  34400. },
  34401. eyesEnraged: {
  34402. height: math.unit(1.331, "feet"),
  34403. name: "Eyes (Enraged)",
  34404. image: {
  34405. source: "./media/characters/saphinara/eyes-enraged.svg"
  34406. },
  34407. form: "normal"
  34408. },
  34409. trueFormSide: {
  34410. height: math.unit(200, "feet"),
  34411. weight: math.unit(1e7, "tons"),
  34412. name: "Side",
  34413. image: {
  34414. source: "./media/characters/saphinara/true-form-side.svg",
  34415. extra: 1399/770,
  34416. bottom: 97/1496
  34417. },
  34418. form: "true-form",
  34419. default: true
  34420. },
  34421. trueFormMaw: {
  34422. height: math.unit(71.5, "feet"),
  34423. name: "Maw",
  34424. image: {
  34425. source: "./media/characters/saphinara/true-form-maw.svg",
  34426. extra: 2302/1453,
  34427. bottom: 0/2302
  34428. },
  34429. form: "true-form"
  34430. },
  34431. },
  34432. [
  34433. {
  34434. name: "Normal",
  34435. height: math.unit(15 + 7/12, "feet"),
  34436. default: true,
  34437. form: "normal"
  34438. },
  34439. {
  34440. name: "Angry",
  34441. height: math.unit(30 + 6/12, "feet"),
  34442. form: "normal"
  34443. },
  34444. {
  34445. name: "Enraged",
  34446. height: math.unit(102 + 1/12, "feet"),
  34447. form: "normal"
  34448. },
  34449. {
  34450. name: "True",
  34451. height: math.unit(200, "feet"),
  34452. default: true,
  34453. form: "true-form"
  34454. }
  34455. ],
  34456. {
  34457. "normal": {
  34458. name: "Normal",
  34459. default: true
  34460. },
  34461. "true-form": {
  34462. name: "True Form"
  34463. }
  34464. }
  34465. ))
  34466. characterMakers.push(() => makeCharacter(
  34467. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34468. {
  34469. front: {
  34470. height: math.unit(6 + 8/12, "feet"),
  34471. weight: math.unit(300, "lb"),
  34472. name: "Front",
  34473. image: {
  34474. source: "./media/characters/jrain/front.svg",
  34475. extra: 3039/2865,
  34476. bottom: 399/3438
  34477. }
  34478. },
  34479. back: {
  34480. height: math.unit(6 + 8/12, "feet"),
  34481. weight: math.unit(300, "lb"),
  34482. name: "Back",
  34483. image: {
  34484. source: "./media/characters/jrain/back.svg",
  34485. extra: 3089/2938,
  34486. bottom: 172/3261
  34487. }
  34488. },
  34489. head: {
  34490. height: math.unit(2.14, "feet"),
  34491. name: "Head",
  34492. image: {
  34493. source: "./media/characters/jrain/head.svg"
  34494. }
  34495. },
  34496. maw: {
  34497. height: math.unit(1.77, "feet"),
  34498. name: "Maw",
  34499. image: {
  34500. source: "./media/characters/jrain/maw.svg"
  34501. }
  34502. },
  34503. leftHand: {
  34504. height: math.unit(1.1, "feet"),
  34505. name: "Left Hand",
  34506. image: {
  34507. source: "./media/characters/jrain/left-hand.svg"
  34508. }
  34509. },
  34510. rightHand: {
  34511. height: math.unit(1.1, "feet"),
  34512. name: "Right Hand",
  34513. image: {
  34514. source: "./media/characters/jrain/right-hand.svg"
  34515. }
  34516. },
  34517. eye: {
  34518. height: math.unit(0.35, "feet"),
  34519. name: "Eye",
  34520. image: {
  34521. source: "./media/characters/jrain/eye.svg"
  34522. }
  34523. },
  34524. },
  34525. [
  34526. {
  34527. name: "Normal",
  34528. height: math.unit(6 + 8/12, "feet"),
  34529. default: true
  34530. },
  34531. {
  34532. name: "Casually Large",
  34533. height: math.unit(25, "feet")
  34534. },
  34535. {
  34536. name: "Giant",
  34537. height: math.unit(100, "feet")
  34538. },
  34539. {
  34540. name: "Kaiju",
  34541. height: math.unit(300, "feet")
  34542. },
  34543. ]
  34544. ))
  34545. characterMakers.push(() => makeCharacter(
  34546. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34547. {
  34548. dragon: {
  34549. height: math.unit(5, "meters"),
  34550. name: "Dragon",
  34551. image: {
  34552. source: "./media/characters/sabrina/dragon.svg",
  34553. extra: 3670 / 2365,
  34554. bottom: 333 / 4003
  34555. }
  34556. },
  34557. gryphon: {
  34558. height: math.unit(3, "meters"),
  34559. name: "Gryphon",
  34560. image: {
  34561. source: "./media/characters/sabrina/gryphon.svg",
  34562. extra: 1576 / 945,
  34563. bottom: 71 / 1647
  34564. }
  34565. },
  34566. snake: {
  34567. height: math.unit(12, "meters"),
  34568. name: "Snake",
  34569. image: {
  34570. source: "./media/characters/sabrina/snake.svg",
  34571. extra: 1758 / 1320,
  34572. bottom: 186 / 1944
  34573. }
  34574. },
  34575. collar: {
  34576. height: math.unit(1.86, "meters"),
  34577. name: "Collar",
  34578. image: {
  34579. source: "./media/characters/sabrina/collar.svg"
  34580. }
  34581. },
  34582. eye: {
  34583. height: math.unit(0.53, "meters"),
  34584. name: "Eye",
  34585. image: {
  34586. source: "./media/characters/sabrina/eye.svg"
  34587. }
  34588. },
  34589. foot: {
  34590. height: math.unit(1.86, "meters"),
  34591. name: "Foot",
  34592. image: {
  34593. source: "./media/characters/sabrina/foot.svg"
  34594. }
  34595. },
  34596. hand: {
  34597. height: math.unit(1.32, "meters"),
  34598. name: "Hand",
  34599. image: {
  34600. source: "./media/characters/sabrina/hand.svg"
  34601. }
  34602. },
  34603. head: {
  34604. height: math.unit(2.44, "meters"),
  34605. name: "Head",
  34606. image: {
  34607. source: "./media/characters/sabrina/head.svg"
  34608. }
  34609. },
  34610. headAngry: {
  34611. height: math.unit(2.44, "meters"),
  34612. name: "Head (Angry))",
  34613. image: {
  34614. source: "./media/characters/sabrina/head-angry.svg"
  34615. }
  34616. },
  34617. maw: {
  34618. height: math.unit(1.65, "meters"),
  34619. name: "Maw",
  34620. image: {
  34621. source: "./media/characters/sabrina/maw.svg"
  34622. }
  34623. },
  34624. spikes: {
  34625. height: math.unit(1.69, "meters"),
  34626. name: "Spikes",
  34627. image: {
  34628. source: "./media/characters/sabrina/spikes.svg"
  34629. }
  34630. },
  34631. stomach: {
  34632. height: math.unit(1.15, "meters"),
  34633. name: "Stomach",
  34634. image: {
  34635. source: "./media/characters/sabrina/stomach.svg"
  34636. }
  34637. },
  34638. tongue: {
  34639. height: math.unit(1.27, "meters"),
  34640. name: "Tongue",
  34641. image: {
  34642. source: "./media/characters/sabrina/tongue.svg"
  34643. }
  34644. },
  34645. wingDorsal: {
  34646. height: math.unit(4.85, "meters"),
  34647. name: "Wing (Dorsal)",
  34648. image: {
  34649. source: "./media/characters/sabrina/wing-dorsal.svg"
  34650. }
  34651. },
  34652. wingVentral: {
  34653. height: math.unit(4.85, "meters"),
  34654. name: "Wing (Ventral)",
  34655. image: {
  34656. source: "./media/characters/sabrina/wing-ventral.svg"
  34657. }
  34658. },
  34659. },
  34660. [
  34661. {
  34662. name: "Normal",
  34663. height: math.unit(5, "meters"),
  34664. default: true
  34665. },
  34666. ]
  34667. ))
  34668. characterMakers.push(() => makeCharacter(
  34669. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34670. {
  34671. frontMaid: {
  34672. height: math.unit(5 + 5/12, "feet"),
  34673. weight: math.unit(130, "lb"),
  34674. name: "Front (Maid)",
  34675. image: {
  34676. source: "./media/characters/midnight-tales/front-maid.svg",
  34677. extra: 489/454,
  34678. bottom: 61/550
  34679. }
  34680. },
  34681. frontFormal: {
  34682. height: math.unit(5 + 5/12, "feet"),
  34683. weight: math.unit(130, "lb"),
  34684. name: "Front (Formal)",
  34685. image: {
  34686. source: "./media/characters/midnight-tales/front-formal.svg",
  34687. extra: 489/454,
  34688. bottom: 61/550
  34689. }
  34690. },
  34691. back: {
  34692. height: math.unit(5 + 5/12, "feet"),
  34693. weight: math.unit(130, "lb"),
  34694. name: "Back",
  34695. image: {
  34696. source: "./media/characters/midnight-tales/back.svg",
  34697. extra: 498/456,
  34698. bottom: 33/531
  34699. }
  34700. },
  34701. frontBeast: {
  34702. height: math.unit(40, "feet"),
  34703. weight: math.unit(64000, "lb"),
  34704. name: "Front (Beast)",
  34705. image: {
  34706. source: "./media/characters/midnight-tales/front-beast.svg",
  34707. extra: 927/860,
  34708. bottom: 53/980
  34709. }
  34710. },
  34711. backBeast: {
  34712. height: math.unit(40, "feet"),
  34713. weight: math.unit(64000, "lb"),
  34714. name: "Back (Beast)",
  34715. image: {
  34716. source: "./media/characters/midnight-tales/back-beast.svg",
  34717. extra: 929/855,
  34718. bottom: 16/945
  34719. }
  34720. },
  34721. footBeast: {
  34722. height: math.unit(6.7, "feet"),
  34723. name: "Foot (Beast)",
  34724. image: {
  34725. source: "./media/characters/midnight-tales/foot-beast.svg"
  34726. }
  34727. },
  34728. headBeast: {
  34729. height: math.unit(8, "feet"),
  34730. name: "Head (Beast)",
  34731. image: {
  34732. source: "./media/characters/midnight-tales/head-beast.svg"
  34733. }
  34734. },
  34735. },
  34736. [
  34737. {
  34738. name: "Normal",
  34739. height: math.unit(5 + 5 / 12, "feet"),
  34740. default: true
  34741. },
  34742. {
  34743. name: "Macro",
  34744. height: math.unit(25, "feet")
  34745. },
  34746. ]
  34747. ))
  34748. characterMakers.push(() => makeCharacter(
  34749. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34750. {
  34751. front: {
  34752. height: math.unit(5 + 10/12, "feet"),
  34753. name: "Front",
  34754. image: {
  34755. source: "./media/characters/argon/front.svg",
  34756. extra: 2009/1935,
  34757. bottom: 118/2127
  34758. }
  34759. },
  34760. back: {
  34761. height: math.unit(5 + 10/12, "feet"),
  34762. name: "Back",
  34763. image: {
  34764. source: "./media/characters/argon/back.svg",
  34765. extra: 2047/1992,
  34766. bottom: 20/2067
  34767. }
  34768. },
  34769. frontDressed: {
  34770. height: math.unit(5 + 10/12, "feet"),
  34771. name: "Front (Dressed)",
  34772. image: {
  34773. source: "./media/characters/argon/front-dressed.svg",
  34774. extra: 2009/1935,
  34775. bottom: 118/2127
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Normal",
  34782. height: math.unit(5 + 10/12, "feet"),
  34783. default: true
  34784. },
  34785. ]
  34786. ))
  34787. characterMakers.push(() => makeCharacter(
  34788. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34789. {
  34790. front: {
  34791. height: math.unit(8 + 6/12, "feet"),
  34792. weight: math.unit(1150, "lb"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/kichi/front.svg",
  34796. extra: 1267/1164,
  34797. bottom: 61/1328
  34798. }
  34799. },
  34800. back: {
  34801. height: math.unit(8 + 6/12, "feet"),
  34802. weight: math.unit(1150, "lb"),
  34803. name: "Back",
  34804. image: {
  34805. source: "./media/characters/kichi/back.svg",
  34806. extra: 1273/1166,
  34807. bottom: 33/1306
  34808. }
  34809. },
  34810. },
  34811. [
  34812. {
  34813. name: "Normal",
  34814. height: math.unit(8 + 6/12, "feet"),
  34815. default: true
  34816. },
  34817. ]
  34818. ))
  34819. characterMakers.push(() => makeCharacter(
  34820. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34821. {
  34822. front: {
  34823. height: math.unit(6, "feet"),
  34824. weight: math.unit(210, "lb"),
  34825. name: "Front",
  34826. image: {
  34827. source: "./media/characters/manetel-greyscale/front.svg",
  34828. extra: 350/312,
  34829. bottom: 8/358
  34830. }
  34831. },
  34832. },
  34833. [
  34834. {
  34835. name: "Micro",
  34836. height: math.unit(2, "inches")
  34837. },
  34838. {
  34839. name: "Normal",
  34840. height: math.unit(6, "feet"),
  34841. default: true
  34842. },
  34843. {
  34844. name: "Minimacro",
  34845. height: math.unit(17, "feet")
  34846. },
  34847. {
  34848. name: "Macro",
  34849. height: math.unit(117, "feet")
  34850. },
  34851. ]
  34852. ))
  34853. characterMakers.push(() => makeCharacter(
  34854. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34855. {
  34856. side: {
  34857. height: math.unit(5 + 1/12, "feet"),
  34858. weight: math.unit(418, "lb"),
  34859. name: "Side",
  34860. image: {
  34861. source: "./media/characters/softpurr/side.svg",
  34862. extra: 1993/1945,
  34863. bottom: 134/2127
  34864. }
  34865. },
  34866. front: {
  34867. height: math.unit(5 + 1/12, "feet"),
  34868. weight: math.unit(418, "lb"),
  34869. name: "Front",
  34870. image: {
  34871. source: "./media/characters/softpurr/front.svg",
  34872. extra: 1950/1856,
  34873. bottom: 174/2124
  34874. }
  34875. },
  34876. paw: {
  34877. height: math.unit(1, "feet"),
  34878. name: "Paw",
  34879. image: {
  34880. source: "./media/characters/softpurr/paw.svg"
  34881. }
  34882. },
  34883. },
  34884. [
  34885. {
  34886. name: "Normal",
  34887. height: math.unit(5 + 1/12, "feet"),
  34888. default: true
  34889. },
  34890. ]
  34891. ))
  34892. characterMakers.push(() => makeCharacter(
  34893. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34894. {
  34895. front: {
  34896. height: math.unit(260, "meters"),
  34897. name: "Front",
  34898. image: {
  34899. source: "./media/characters/anahita/front.svg",
  34900. extra: 665/635,
  34901. bottom: 89/754
  34902. }
  34903. },
  34904. },
  34905. [
  34906. {
  34907. name: "Macro",
  34908. height: math.unit(260, "meters"),
  34909. default: true
  34910. },
  34911. ]
  34912. ))
  34913. characterMakers.push(() => makeCharacter(
  34914. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34915. {
  34916. front: {
  34917. height: math.unit(4 + 10/12, "feet"),
  34918. weight: math.unit(160, "lb"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/chip-mouse/front.svg",
  34922. extra: 3528/3408,
  34923. bottom: 0/3528
  34924. }
  34925. },
  34926. frontNsfw: {
  34927. height: math.unit(4 + 10/12, "feet"),
  34928. weight: math.unit(160, "lb"),
  34929. name: "Front (NSFW)",
  34930. image: {
  34931. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34932. extra: 3528/3408,
  34933. bottom: 0/3528
  34934. }
  34935. },
  34936. },
  34937. [
  34938. {
  34939. name: "Normal",
  34940. height: math.unit(4 + 10/12, "feet"),
  34941. default: true
  34942. },
  34943. ]
  34944. ))
  34945. characterMakers.push(() => makeCharacter(
  34946. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34947. {
  34948. side: {
  34949. height: math.unit(10, "feet"),
  34950. weight: math.unit(14000, "lb"),
  34951. name: "Side",
  34952. image: {
  34953. source: "./media/characters/kremm/side.svg",
  34954. extra: 1390/1053,
  34955. bottom: 90/1480
  34956. }
  34957. },
  34958. gut: {
  34959. height: math.unit(5.8, "feet"),
  34960. name: "Gut",
  34961. image: {
  34962. source: "./media/characters/kremm/gut.svg"
  34963. }
  34964. },
  34965. ass: {
  34966. height: math.unit(6.1, "feet"),
  34967. name: "Ass",
  34968. image: {
  34969. source: "./media/characters/kremm/ass.svg"
  34970. }
  34971. },
  34972. jaws: {
  34973. height: math.unit(2.2, "feet"),
  34974. name: "Jaws",
  34975. image: {
  34976. source: "./media/characters/kremm/jaws.svg"
  34977. }
  34978. },
  34979. dick: {
  34980. height: math.unit(4.26, "feet"),
  34981. name: "Dick",
  34982. image: {
  34983. source: "./media/characters/kremm/dick.svg"
  34984. }
  34985. },
  34986. },
  34987. [
  34988. {
  34989. name: "Normal",
  34990. height: math.unit(10, "feet"),
  34991. default: true
  34992. },
  34993. ]
  34994. ))
  34995. characterMakers.push(() => makeCharacter(
  34996. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34997. {
  34998. front: {
  34999. height: math.unit(30, "stories"),
  35000. name: "Front",
  35001. image: {
  35002. source: "./media/characters/kai/front.svg",
  35003. extra: 1892/1718,
  35004. bottom: 162/2054
  35005. }
  35006. },
  35007. },
  35008. [
  35009. {
  35010. name: "Macro",
  35011. height: math.unit(30, "stories"),
  35012. default: true
  35013. },
  35014. ]
  35015. ))
  35016. characterMakers.push(() => makeCharacter(
  35017. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35018. {
  35019. front: {
  35020. height: math.unit(6 + 4/12, "feet"),
  35021. weight: math.unit(145, "lb"),
  35022. name: "Front",
  35023. image: {
  35024. source: "./media/characters/sykes/front.svg",
  35025. extra: 1321 / 1187,
  35026. bottom: 66 / 1387
  35027. }
  35028. },
  35029. back: {
  35030. height: math.unit(6 + 4/12, "feet"),
  35031. weight: math.unit(145, "lb"),
  35032. name: "Back",
  35033. image: {
  35034. source: "./media/characters/sykes/back.svg",
  35035. extra: 1326/1181,
  35036. bottom: 31/1357
  35037. }
  35038. },
  35039. traditionalOutfit: {
  35040. height: math.unit(6 + 4/12, "feet"),
  35041. weight: math.unit(145, "lb"),
  35042. name: "Traditional Outfit",
  35043. image: {
  35044. source: "./media/characters/sykes/traditional-outfit.svg",
  35045. extra: 1321 / 1187,
  35046. bottom: 66 / 1387
  35047. }
  35048. },
  35049. adventureOutfit: {
  35050. height: math.unit(6 + 4/12, "feet"),
  35051. weight: math.unit(145, "lb"),
  35052. name: "Adventure Outfit",
  35053. image: {
  35054. source: "./media/characters/sykes/adventure-outfit.svg",
  35055. extra: 1321 / 1187,
  35056. bottom: 66 / 1387
  35057. }
  35058. },
  35059. handLeft: {
  35060. height: math.unit(0.9, "feet"),
  35061. name: "Hand (Left)",
  35062. image: {
  35063. source: "./media/characters/sykes/hand-left.svg"
  35064. }
  35065. },
  35066. handRight: {
  35067. height: math.unit(0.839, "feet"),
  35068. name: "Hand (Right)",
  35069. image: {
  35070. source: "./media/characters/sykes/hand-right.svg"
  35071. }
  35072. },
  35073. leftFoot: {
  35074. height: math.unit(1.2, "feet"),
  35075. name: "Foot (Left)",
  35076. image: {
  35077. source: "./media/characters/sykes/foot-left.svg"
  35078. }
  35079. },
  35080. rightFoot: {
  35081. height: math.unit(1.2, "feet"),
  35082. name: "Foot (Right)",
  35083. image: {
  35084. source: "./media/characters/sykes/foot-right.svg"
  35085. }
  35086. },
  35087. maw: {
  35088. height: math.unit(1.93, "feet"),
  35089. name: "Maw",
  35090. image: {
  35091. source: "./media/characters/sykes/maw.svg"
  35092. }
  35093. },
  35094. teeth: {
  35095. height: math.unit(0.51, "feet"),
  35096. name: "Teeth",
  35097. image: {
  35098. source: "./media/characters/sykes/teeth.svg"
  35099. }
  35100. },
  35101. tongue: {
  35102. height: math.unit(2.13, "feet"),
  35103. name: "Tongue",
  35104. image: {
  35105. source: "./media/characters/sykes/tongue.svg"
  35106. }
  35107. },
  35108. uvula: {
  35109. height: math.unit(0.16, "feet"),
  35110. name: "Uvula",
  35111. image: {
  35112. source: "./media/characters/sykes/uvula.svg"
  35113. }
  35114. },
  35115. collar: {
  35116. height: math.unit(0.287, "feet"),
  35117. name: "Collar",
  35118. image: {
  35119. source: "./media/characters/sykes/collar.svg"
  35120. }
  35121. },
  35122. tail: {
  35123. height: math.unit(3.8, "feet"),
  35124. name: "Tail",
  35125. image: {
  35126. source: "./media/characters/sykes/tail.svg"
  35127. }
  35128. },
  35129. },
  35130. [
  35131. {
  35132. name: "Shrunken",
  35133. height: math.unit(5, "inches")
  35134. },
  35135. {
  35136. name: "Normal",
  35137. height: math.unit(6 + 4 / 12, "feet"),
  35138. default: true
  35139. },
  35140. {
  35141. name: "Big",
  35142. height: math.unit(15, "feet")
  35143. },
  35144. ]
  35145. ))
  35146. characterMakers.push(() => makeCharacter(
  35147. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35148. {
  35149. front: {
  35150. height: math.unit(5 + 8/12, "feet"),
  35151. weight: math.unit(190, "lb"),
  35152. name: "Front",
  35153. image: {
  35154. source: "./media/characters/oven-otter/front.svg",
  35155. extra: 1809/1740,
  35156. bottom: 181/1990
  35157. }
  35158. },
  35159. back: {
  35160. height: math.unit(5 + 8/12, "feet"),
  35161. weight: math.unit(190, "lb"),
  35162. name: "Back",
  35163. image: {
  35164. source: "./media/characters/oven-otter/back.svg",
  35165. extra: 1709/1635,
  35166. bottom: 118/1827
  35167. }
  35168. },
  35169. hand: {
  35170. height: math.unit(1.07, "feet"),
  35171. name: "Hand",
  35172. image: {
  35173. source: "./media/characters/oven-otter/hand.svg"
  35174. }
  35175. },
  35176. beans: {
  35177. height: math.unit(1.74, "feet"),
  35178. name: "Beans",
  35179. image: {
  35180. source: "./media/characters/oven-otter/beans.svg"
  35181. }
  35182. },
  35183. },
  35184. [
  35185. {
  35186. name: "Micro",
  35187. height: math.unit(0.5, "inches")
  35188. },
  35189. {
  35190. name: "Normal",
  35191. height: math.unit(5 + 8/12, "feet"),
  35192. default: true
  35193. },
  35194. {
  35195. name: "Macro",
  35196. height: math.unit(250, "feet")
  35197. },
  35198. {
  35199. name: "Really High",
  35200. height: math.unit(420, "feet")
  35201. },
  35202. ]
  35203. ))
  35204. characterMakers.push(() => makeCharacter(
  35205. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35206. {
  35207. front: {
  35208. height: math.unit(5, "meters"),
  35209. weight: math.unit(292000000000000, "kg"),
  35210. name: "Front",
  35211. image: {
  35212. source: "./media/characters/devourer/front.svg",
  35213. extra: 1800/1733,
  35214. bottom: 211/2011
  35215. }
  35216. },
  35217. maw: {
  35218. height: math.unit(1.1, "meter"),
  35219. name: "Maw",
  35220. image: {
  35221. source: "./media/characters/devourer/maw.svg"
  35222. }
  35223. },
  35224. },
  35225. [
  35226. {
  35227. name: "Small",
  35228. height: math.unit(3, "meters")
  35229. },
  35230. {
  35231. name: "Large",
  35232. height: math.unit(5, "meters"),
  35233. default: true
  35234. },
  35235. ]
  35236. ))
  35237. characterMakers.push(() => makeCharacter(
  35238. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35239. {
  35240. front: {
  35241. height: math.unit(6, "feet"),
  35242. weight: math.unit(400, "lb"),
  35243. name: "Front",
  35244. image: {
  35245. source: "./media/characters/ellarby/front.svg",
  35246. extra: 1909/1763,
  35247. bottom: 80/1989
  35248. }
  35249. },
  35250. back: {
  35251. height: math.unit(6, "feet"),
  35252. weight: math.unit(400, "lb"),
  35253. name: "Back",
  35254. image: {
  35255. source: "./media/characters/ellarby/back.svg",
  35256. extra: 1914/1784,
  35257. bottom: 172/2086
  35258. }
  35259. },
  35260. },
  35261. [
  35262. {
  35263. name: "Mischief",
  35264. height: math.unit(18, "inches")
  35265. },
  35266. {
  35267. name: "Trouble",
  35268. height: math.unit(12, "feet")
  35269. },
  35270. {
  35271. name: "Havoc",
  35272. height: math.unit(200, "feet"),
  35273. default: true
  35274. },
  35275. {
  35276. name: "Pandemonium",
  35277. height: math.unit(1, "mile")
  35278. },
  35279. {
  35280. name: "Catastrophe",
  35281. height: math.unit(100, "miles")
  35282. },
  35283. ]
  35284. ))
  35285. characterMakers.push(() => makeCharacter(
  35286. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35287. {
  35288. front: {
  35289. height: math.unit(4.7, "meters"),
  35290. weight: math.unit(6500, "kg"),
  35291. name: "Front",
  35292. image: {
  35293. source: "./media/characters/vex/front.svg",
  35294. extra: 1288/1140,
  35295. bottom: 100/1388
  35296. }
  35297. },
  35298. },
  35299. [
  35300. {
  35301. name: "Normal",
  35302. height: math.unit(4.7, "meters"),
  35303. default: true
  35304. },
  35305. ]
  35306. ))
  35307. characterMakers.push(() => makeCharacter(
  35308. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35309. {
  35310. normal: {
  35311. height: math.unit(6, "feet"),
  35312. weight: math.unit(350, "lb"),
  35313. name: "Normal",
  35314. image: {
  35315. source: "./media/characters/teshy/normal.svg",
  35316. extra: 1795/1735,
  35317. bottom: 16/1811
  35318. }
  35319. },
  35320. monsterFront: {
  35321. height: math.unit(12, "feet"),
  35322. weight: math.unit(4700, "lb"),
  35323. name: "Monster (Front)",
  35324. image: {
  35325. source: "./media/characters/teshy/monster-front.svg",
  35326. extra: 2042/2034,
  35327. bottom: 128/2170
  35328. }
  35329. },
  35330. monsterSide: {
  35331. height: math.unit(12, "feet"),
  35332. weight: math.unit(4700, "lb"),
  35333. name: "Monster (Side)",
  35334. image: {
  35335. source: "./media/characters/teshy/monster-side.svg",
  35336. extra: 2067/2056,
  35337. bottom: 70/2137
  35338. }
  35339. },
  35340. monsterBack: {
  35341. height: math.unit(12, "feet"),
  35342. weight: math.unit(4700, "lb"),
  35343. name: "Monster (Back)",
  35344. image: {
  35345. source: "./media/characters/teshy/monster-back.svg",
  35346. extra: 1921/1914,
  35347. bottom: 171/2092
  35348. }
  35349. },
  35350. },
  35351. [
  35352. {
  35353. name: "Normal",
  35354. height: math.unit(6, "feet"),
  35355. default: true
  35356. },
  35357. ]
  35358. ))
  35359. characterMakers.push(() => makeCharacter(
  35360. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35361. {
  35362. front: {
  35363. height: math.unit(6, "feet"),
  35364. name: "Front",
  35365. image: {
  35366. source: "./media/characters/ramey/front.svg",
  35367. extra: 790/787,
  35368. bottom: 27/817
  35369. }
  35370. },
  35371. },
  35372. [
  35373. {
  35374. name: "Normal",
  35375. height: math.unit(6, "feet"),
  35376. default: true
  35377. },
  35378. ]
  35379. ))
  35380. characterMakers.push(() => makeCharacter(
  35381. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35382. {
  35383. front: {
  35384. height: math.unit(5 + 5/12, "feet"),
  35385. weight: math.unit(120, "lb"),
  35386. name: "Front",
  35387. image: {
  35388. source: "./media/characters/phirae/front.svg",
  35389. extra: 2491/2436,
  35390. bottom: 38/2529
  35391. }
  35392. },
  35393. },
  35394. [
  35395. {
  35396. name: "Normal",
  35397. height: math.unit(5 + 5/12, "feet"),
  35398. default: true
  35399. },
  35400. ]
  35401. ))
  35402. characterMakers.push(() => makeCharacter(
  35403. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35404. {
  35405. front: {
  35406. height: math.unit(5 + 3/12, "feet"),
  35407. name: "Front",
  35408. image: {
  35409. source: "./media/characters/stagglas/front.svg",
  35410. extra: 962/882,
  35411. bottom: 53/1015
  35412. }
  35413. },
  35414. feral: {
  35415. height: math.unit(335, "cm"),
  35416. name: "Feral",
  35417. image: {
  35418. source: "./media/characters/stagglas/feral.svg",
  35419. extra: 1732/1090,
  35420. bottom: 48/1780
  35421. }
  35422. },
  35423. },
  35424. [
  35425. {
  35426. name: "Normal",
  35427. height: math.unit(5 + 3/12, "feet"),
  35428. default: true
  35429. },
  35430. ]
  35431. ))
  35432. characterMakers.push(() => makeCharacter(
  35433. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35434. {
  35435. front: {
  35436. height: math.unit(5 + 4/12, "feet"),
  35437. weight: math.unit(145, "lb"),
  35438. name: "Front",
  35439. image: {
  35440. source: "./media/characters/starra/front.svg",
  35441. extra: 1790/1691,
  35442. bottom: 91/1881
  35443. }
  35444. },
  35445. },
  35446. [
  35447. {
  35448. name: "Normal",
  35449. height: math.unit(5 + 4/12, "feet"),
  35450. default: true
  35451. },
  35452. ]
  35453. ))
  35454. characterMakers.push(() => makeCharacter(
  35455. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35456. {
  35457. front: {
  35458. height: math.unit(2.2, "meters"),
  35459. name: "Front",
  35460. image: {
  35461. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35462. extra: 1194/1005,
  35463. bottom: 25/1219
  35464. }
  35465. },
  35466. },
  35467. [
  35468. {
  35469. name: "Normal",
  35470. height: math.unit(2.2, "meters"),
  35471. default: true
  35472. },
  35473. ]
  35474. ))
  35475. characterMakers.push(() => makeCharacter(
  35476. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35477. {
  35478. side: {
  35479. height: math.unit(8 + 2/12, "feet"),
  35480. weight: math.unit(1240, "lb"),
  35481. name: "Side",
  35482. image: {
  35483. source: "./media/characters/mika-valentine/side.svg",
  35484. extra: 2670/2501,
  35485. bottom: 250/2920
  35486. }
  35487. },
  35488. },
  35489. [
  35490. {
  35491. name: "Normal",
  35492. height: math.unit(8 + 2/12, "feet"),
  35493. default: true
  35494. },
  35495. ]
  35496. ))
  35497. characterMakers.push(() => makeCharacter(
  35498. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35499. {
  35500. front: {
  35501. height: math.unit(7 + 2/12, "feet"),
  35502. name: "Front",
  35503. image: {
  35504. source: "./media/characters/xoltol/front.svg",
  35505. extra: 2212/2124,
  35506. bottom: 84/2296
  35507. }
  35508. },
  35509. side: {
  35510. height: math.unit(7 + 2/12, "feet"),
  35511. name: "Side",
  35512. image: {
  35513. source: "./media/characters/xoltol/side.svg",
  35514. extra: 2273/2197,
  35515. bottom: 26/2299
  35516. }
  35517. },
  35518. hand: {
  35519. height: math.unit(2.5, "feet"),
  35520. name: "Hand",
  35521. image: {
  35522. source: "./media/characters/xoltol/hand.svg"
  35523. }
  35524. },
  35525. },
  35526. [
  35527. {
  35528. name: "Small-ish",
  35529. height: math.unit(5 + 11/12, "feet")
  35530. },
  35531. {
  35532. name: "Normal",
  35533. height: math.unit(7 + 2/12, "feet")
  35534. },
  35535. {
  35536. name: "\"Macro\"",
  35537. height: math.unit(14 + 9/12, "feet"),
  35538. default: true
  35539. },
  35540. {
  35541. name: "Alternate Height",
  35542. height: math.unit(20, "feet")
  35543. },
  35544. {
  35545. name: "Actually Macro",
  35546. height: math.unit(100, "feet")
  35547. },
  35548. ]
  35549. ))
  35550. characterMakers.push(() => makeCharacter(
  35551. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35552. {
  35553. front: {
  35554. height: math.unit(5 + 2/12, "feet"),
  35555. name: "Front",
  35556. image: {
  35557. source: "./media/characters/kotetsu-redwood/front.svg",
  35558. extra: 1053/942,
  35559. bottom: 60/1113
  35560. }
  35561. },
  35562. },
  35563. [
  35564. {
  35565. name: "Normal",
  35566. height: math.unit(5 + 2/12, "feet"),
  35567. default: true
  35568. },
  35569. ]
  35570. ))
  35571. characterMakers.push(() => makeCharacter(
  35572. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35573. {
  35574. front: {
  35575. height: math.unit(2.4, "meters"),
  35576. weight: math.unit(125, "kg"),
  35577. name: "Front",
  35578. image: {
  35579. source: "./media/characters/lilith/front.svg",
  35580. extra: 1590/1513,
  35581. bottom: 203/1793
  35582. }
  35583. },
  35584. },
  35585. [
  35586. {
  35587. name: "Humanoid",
  35588. height: math.unit(2.4, "meters")
  35589. },
  35590. {
  35591. name: "Normal",
  35592. height: math.unit(6, "meters"),
  35593. default: true
  35594. },
  35595. {
  35596. name: "Largest",
  35597. height: math.unit(55, "meters")
  35598. },
  35599. ]
  35600. ))
  35601. characterMakers.push(() => makeCharacter(
  35602. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35603. {
  35604. front: {
  35605. height: math.unit(8 + 4/12, "feet"),
  35606. weight: math.unit(535, "lb"),
  35607. name: "Front",
  35608. image: {
  35609. source: "./media/characters/beh'kah-bolger/front.svg",
  35610. extra: 1660/1603,
  35611. bottom: 37/1697
  35612. }
  35613. },
  35614. },
  35615. [
  35616. {
  35617. name: "Normal",
  35618. height: math.unit(8 + 4/12, "feet"),
  35619. default: true
  35620. },
  35621. {
  35622. name: "Kaiju",
  35623. height: math.unit(250, "feet")
  35624. },
  35625. {
  35626. name: "Still Growing",
  35627. height: math.unit(10, "miles")
  35628. },
  35629. {
  35630. name: "Continental",
  35631. height: math.unit(5000, "miles")
  35632. },
  35633. {
  35634. name: "Final Form",
  35635. height: math.unit(2500000, "miles")
  35636. },
  35637. ]
  35638. ))
  35639. characterMakers.push(() => makeCharacter(
  35640. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35641. {
  35642. front: {
  35643. height: math.unit(7 + 2/12, "feet"),
  35644. weight: math.unit(230, "kg"),
  35645. name: "Front",
  35646. image: {
  35647. source: "./media/characters/tatyana-milewska/front.svg",
  35648. extra: 1199/1150,
  35649. bottom: 86/1285
  35650. }
  35651. },
  35652. },
  35653. [
  35654. {
  35655. name: "Normal",
  35656. height: math.unit(7 + 2/12, "feet"),
  35657. default: true
  35658. },
  35659. {
  35660. name: "Big",
  35661. height: math.unit(12, "feet")
  35662. },
  35663. {
  35664. name: "Minimacro",
  35665. height: math.unit(20, "feet")
  35666. },
  35667. {
  35668. name: "Macro",
  35669. height: math.unit(120, "feet")
  35670. },
  35671. ]
  35672. ))
  35673. characterMakers.push(() => makeCharacter(
  35674. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35675. {
  35676. front: {
  35677. height: math.unit(7 + 8/12, "feet"),
  35678. weight: math.unit(152, "kg"),
  35679. name: "Front",
  35680. image: {
  35681. source: "./media/characters/helen-arri/front.svg",
  35682. extra: 440/423,
  35683. bottom: 14/454
  35684. }
  35685. },
  35686. back: {
  35687. height: math.unit(7 + 8/12, "feet"),
  35688. weight: math.unit(152, "kg"),
  35689. name: "Back",
  35690. image: {
  35691. source: "./media/characters/helen-arri/back.svg",
  35692. extra: 443/426,
  35693. bottom: 8/451
  35694. }
  35695. },
  35696. },
  35697. [
  35698. {
  35699. name: "Normal",
  35700. height: math.unit(7 + 8/12, "feet"),
  35701. default: true
  35702. },
  35703. {
  35704. name: "Big",
  35705. height: math.unit(14, "feet")
  35706. },
  35707. {
  35708. name: "Minimacro",
  35709. height: math.unit(24, "feet")
  35710. },
  35711. {
  35712. name: "Macro",
  35713. height: math.unit(140, "feet")
  35714. },
  35715. ]
  35716. ))
  35717. characterMakers.push(() => makeCharacter(
  35718. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35719. {
  35720. front: {
  35721. height: math.unit(6, "meters"),
  35722. name: "Front",
  35723. image: {
  35724. source: "./media/characters/ehanu-rehu/front.svg",
  35725. extra: 1800/1800,
  35726. bottom: 59/1859
  35727. }
  35728. },
  35729. },
  35730. [
  35731. {
  35732. name: "Normal",
  35733. height: math.unit(6, "meters"),
  35734. default: true
  35735. },
  35736. ]
  35737. ))
  35738. characterMakers.push(() => makeCharacter(
  35739. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35740. {
  35741. front: {
  35742. height: math.unit(7 + 3/12, "feet"),
  35743. name: "Front",
  35744. image: {
  35745. source: "./media/characters/renholder/front.svg",
  35746. extra: 3096/2960,
  35747. bottom: 250/3346
  35748. }
  35749. },
  35750. },
  35751. [
  35752. {
  35753. name: "Normal Bat",
  35754. height: math.unit(7 + 3/12, "feet"),
  35755. default: true
  35756. },
  35757. {
  35758. name: "Slightly Tall Bat",
  35759. height: math.unit(100, "feet")
  35760. },
  35761. {
  35762. name: "Big Bat",
  35763. height: math.unit(1000, "feet")
  35764. },
  35765. {
  35766. name: "City-Sized Bat",
  35767. height: math.unit(200000, "feet")
  35768. },
  35769. {
  35770. name: "Bigger Bat",
  35771. height: math.unit(10000, "miles")
  35772. },
  35773. {
  35774. name: "Solar Sized Bat",
  35775. height: math.unit(100, "AU")
  35776. },
  35777. {
  35778. name: "Galactic Bat",
  35779. height: math.unit(200000, "lightyears")
  35780. },
  35781. {
  35782. name: "Universally Known Bat",
  35783. height: math.unit(1, "universe")
  35784. },
  35785. ]
  35786. ))
  35787. characterMakers.push(() => makeCharacter(
  35788. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35789. {
  35790. front: {
  35791. height: math.unit(6 + 11/12, "feet"),
  35792. weight: math.unit(250, "lb"),
  35793. name: "Front",
  35794. image: {
  35795. source: "./media/characters/cookiecat/front.svg",
  35796. extra: 893/827,
  35797. bottom: 14/907
  35798. }
  35799. },
  35800. },
  35801. [
  35802. {
  35803. name: "Micro",
  35804. height: math.unit(3, "inches")
  35805. },
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(6 + 11/12, "feet"),
  35809. default: true
  35810. },
  35811. {
  35812. name: "Macro",
  35813. height: math.unit(100, "feet")
  35814. },
  35815. {
  35816. name: "Macro+",
  35817. height: math.unit(404, "feet")
  35818. },
  35819. {
  35820. name: "Megamacro",
  35821. height: math.unit(165, "miles")
  35822. },
  35823. {
  35824. name: "Planetary",
  35825. height: math.unit(4600, "miles")
  35826. },
  35827. ]
  35828. ))
  35829. characterMakers.push(() => makeCharacter(
  35830. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35831. {
  35832. front: {
  35833. height: math.unit(10 + 3/12, "feet"),
  35834. weight: math.unit(1500, "lb"),
  35835. name: "Front",
  35836. image: {
  35837. source: "./media/characters/tux-kusanagi/front.svg",
  35838. extra: 944/840,
  35839. bottom: 39/983
  35840. }
  35841. },
  35842. back: {
  35843. height: math.unit(10 + 3/12, "feet"),
  35844. weight: math.unit(1500, "lb"),
  35845. name: "Back",
  35846. image: {
  35847. source: "./media/characters/tux-kusanagi/back.svg",
  35848. extra: 941/842,
  35849. bottom: 28/969
  35850. }
  35851. },
  35852. rump: {
  35853. height: math.unit(5.25, "feet"),
  35854. name: "Rump",
  35855. image: {
  35856. source: "./media/characters/tux-kusanagi/rump.svg"
  35857. }
  35858. },
  35859. beak: {
  35860. height: math.unit(1.54, "feet"),
  35861. name: "Beak",
  35862. image: {
  35863. source: "./media/characters/tux-kusanagi/beak.svg"
  35864. }
  35865. },
  35866. },
  35867. [
  35868. {
  35869. name: "Normal",
  35870. height: math.unit(10 + 3/12, "feet"),
  35871. default: true
  35872. },
  35873. ]
  35874. ))
  35875. characterMakers.push(() => makeCharacter(
  35876. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35877. {
  35878. front: {
  35879. height: math.unit(58, "feet"),
  35880. weight: math.unit(200, "tons"),
  35881. name: "Front",
  35882. image: {
  35883. source: "./media/characters/uzarmazari/front.svg",
  35884. extra: 1575/1455,
  35885. bottom: 152/1727
  35886. }
  35887. },
  35888. back: {
  35889. height: math.unit(58, "feet"),
  35890. weight: math.unit(200, "tons"),
  35891. name: "Back",
  35892. image: {
  35893. source: "./media/characters/uzarmazari/back.svg",
  35894. extra: 1585/1510,
  35895. bottom: 157/1742
  35896. }
  35897. },
  35898. head: {
  35899. height: math.unit(26, "feet"),
  35900. name: "Head",
  35901. image: {
  35902. source: "./media/characters/uzarmazari/head.svg"
  35903. }
  35904. },
  35905. },
  35906. [
  35907. {
  35908. name: "Normal",
  35909. height: math.unit(58, "feet"),
  35910. default: true
  35911. },
  35912. ]
  35913. ))
  35914. characterMakers.push(() => makeCharacter(
  35915. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35916. {
  35917. side: {
  35918. height: math.unit(15, "feet"),
  35919. name: "Side",
  35920. image: {
  35921. source: "./media/characters/akitu/side.svg",
  35922. extra: 1421/1321,
  35923. bottom: 157/1578
  35924. }
  35925. },
  35926. front: {
  35927. height: math.unit(15, "feet"),
  35928. name: "Front",
  35929. image: {
  35930. source: "./media/characters/akitu/front.svg",
  35931. extra: 1435/1326,
  35932. bottom: 232/1667
  35933. }
  35934. },
  35935. },
  35936. [
  35937. {
  35938. name: "Normal",
  35939. height: math.unit(15, "feet"),
  35940. default: true
  35941. },
  35942. ]
  35943. ))
  35944. characterMakers.push(() => makeCharacter(
  35945. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35946. {
  35947. front: {
  35948. height: math.unit(10 + 8/12, "feet"),
  35949. name: "Front",
  35950. image: {
  35951. source: "./media/characters/azalie-croixland/front.svg",
  35952. extra: 1972/1856,
  35953. bottom: 31/2003
  35954. }
  35955. },
  35956. },
  35957. [
  35958. {
  35959. name: "Original Height",
  35960. height: math.unit(5 + 4/12, "feet")
  35961. },
  35962. {
  35963. name: "Normal Height",
  35964. height: math.unit(10 + 8/12, "feet"),
  35965. default: true
  35966. },
  35967. ]
  35968. ))
  35969. characterMakers.push(() => makeCharacter(
  35970. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35971. {
  35972. side: {
  35973. height: math.unit(7 + 1/12, "feet"),
  35974. weight: math.unit(245, "lb"),
  35975. name: "Side",
  35976. image: {
  35977. source: "./media/characters/kavus-kazian/side.svg",
  35978. extra: 349/342,
  35979. bottom: 15/364
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(7 + 1/12, "feet"),
  35987. default: true
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35993. {
  35994. normalFront: {
  35995. height: math.unit(5 + 11/12, "feet"),
  35996. name: "Front",
  35997. image: {
  35998. source: "./media/characters/moonlight-rose/normal-front.svg",
  35999. extra: 1980/1825,
  36000. bottom: 18/1998
  36001. },
  36002. form: "normal",
  36003. default: true
  36004. },
  36005. normalBack: {
  36006. height: math.unit(5 + 11/12, "feet"),
  36007. name: "Back",
  36008. image: {
  36009. source: "./media/characters/moonlight-rose/normal-back.svg",
  36010. extra: 2010/1839,
  36011. bottom: 10/2020
  36012. },
  36013. form: "normal"
  36014. },
  36015. demonFront: {
  36016. height: math.unit(1.5, "earths"),
  36017. name: "Front",
  36018. image: {
  36019. source: "./media/characters/moonlight-rose/demon.svg",
  36020. extra: 1400/1294,
  36021. bottom: 45/1445
  36022. },
  36023. form: "demon",
  36024. default: true
  36025. },
  36026. terraFront: {
  36027. height: math.unit(1.5, "earths"),
  36028. name: "Front",
  36029. image: {
  36030. source: "./media/characters/moonlight-rose/terra.svg"
  36031. },
  36032. form: "terra",
  36033. default: true
  36034. },
  36035. jupiterFront: {
  36036. height: math.unit(69911*2, "km"),
  36037. name: "Front",
  36038. image: {
  36039. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36040. extra: 1367/1286,
  36041. bottom: 55/1422
  36042. },
  36043. form: "jupiter",
  36044. default: true
  36045. },
  36046. neptuneFront: {
  36047. height: math.unit(24622*2, "feet"),
  36048. name: "Front",
  36049. image: {
  36050. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36051. extra: 1851/1712,
  36052. bottom: 0/1851
  36053. },
  36054. form: "neptune",
  36055. default: true
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "\"Natural\" Height",
  36061. height: math.unit(5 + 11/12, "feet"),
  36062. form: "normal"
  36063. },
  36064. {
  36065. name: "Smallest comfortable size",
  36066. height: math.unit(40, "meters"),
  36067. form: "normal"
  36068. },
  36069. {
  36070. name: "Common size",
  36071. height: math.unit(50, "km"),
  36072. form: "normal",
  36073. default: true
  36074. },
  36075. {
  36076. name: "Normal",
  36077. height: math.unit(1.5, "earths"),
  36078. form: "demon",
  36079. default: true
  36080. },
  36081. {
  36082. name: "Universal",
  36083. height: math.unit(15, "universes"),
  36084. form: "demon"
  36085. },
  36086. {
  36087. name: "Earth",
  36088. height: math.unit(1.5, "earths"),
  36089. form: "terra",
  36090. default: true
  36091. },
  36092. {
  36093. name: "Super Earth",
  36094. height: math.unit(67.5, "earths"),
  36095. form: "terra"
  36096. },
  36097. {
  36098. name: "Doesn't fit in a solar system...",
  36099. height: math.unit(1, "galaxy"),
  36100. form: "terra"
  36101. },
  36102. {
  36103. name: "Saturn",
  36104. height: math.unit(58232*2, "km"),
  36105. form: "jupiter"
  36106. },
  36107. {
  36108. name: "Jupiter",
  36109. height: math.unit(69911*2, "km"),
  36110. form: "jupiter",
  36111. default: true
  36112. },
  36113. {
  36114. name: "HD 100546 b",
  36115. height: math.unit(482938, "km"),
  36116. form: "jupiter"
  36117. },
  36118. {
  36119. name: "Enceladus",
  36120. height: math.unit(513*2, "km"),
  36121. form: "neptune"
  36122. },
  36123. {
  36124. name: "Europe",
  36125. height: math.unit(1560*2, "km"),
  36126. form: "neptune"
  36127. },
  36128. {
  36129. name: "Neptune",
  36130. height: math.unit(24622*2, "km"),
  36131. form: "neptune",
  36132. default: true
  36133. },
  36134. {
  36135. name: "CoRoT-9b",
  36136. height: math.unit(75067*2, "km"),
  36137. form: "neptune"
  36138. },
  36139. ],
  36140. {
  36141. "normal": {
  36142. name: "Normal",
  36143. default: true
  36144. },
  36145. "demon": {
  36146. name: "Demon"
  36147. },
  36148. "terra": {
  36149. name: "Terra"
  36150. },
  36151. "jupiter": {
  36152. name: "Jupiter"
  36153. },
  36154. "neptune": {
  36155. name: "Neptune"
  36156. }
  36157. }
  36158. ))
  36159. characterMakers.push(() => makeCharacter(
  36160. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36161. {
  36162. front: {
  36163. height: math.unit(16, "feet"),
  36164. weight: math.unit(610, "kg"),
  36165. name: "Front",
  36166. image: {
  36167. source: "./media/characters/huckle/front.svg",
  36168. extra: 1731/1625,
  36169. bottom: 33/1764
  36170. }
  36171. },
  36172. back: {
  36173. height: math.unit(16, "feet"),
  36174. weight: math.unit(610, "kg"),
  36175. name: "Back",
  36176. image: {
  36177. source: "./media/characters/huckle/back.svg",
  36178. extra: 1738/1651,
  36179. bottom: 37/1775
  36180. }
  36181. },
  36182. laughing: {
  36183. height: math.unit(3.75, "feet"),
  36184. name: "Laughing",
  36185. image: {
  36186. source: "./media/characters/huckle/laughing.svg"
  36187. }
  36188. },
  36189. angry: {
  36190. height: math.unit(4.15, "feet"),
  36191. name: "Angry",
  36192. image: {
  36193. source: "./media/characters/huckle/angry.svg"
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Normal",
  36200. height: math.unit(16, "feet"),
  36201. default: true
  36202. },
  36203. {
  36204. name: "Mini Macro",
  36205. height: math.unit(463, "feet")
  36206. },
  36207. {
  36208. name: "Macro",
  36209. height: math.unit(1680, "meters")
  36210. },
  36211. {
  36212. name: "Mega Macro",
  36213. height: math.unit(175, "km")
  36214. },
  36215. {
  36216. name: "Terra Macro",
  36217. height: math.unit(32, "gigameters")
  36218. },
  36219. {
  36220. name: "Multiverse+",
  36221. height: math.unit(2.56e23, "yottameters")
  36222. },
  36223. ]
  36224. ))
  36225. characterMakers.push(() => makeCharacter(
  36226. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36227. {
  36228. front: {
  36229. height: math.unit(6 + 9/12, "feet"),
  36230. weight: math.unit(280, "lb"),
  36231. name: "Front",
  36232. image: {
  36233. source: "./media/characters/candy/front.svg",
  36234. extra: 234/217,
  36235. bottom: 11/245
  36236. }
  36237. },
  36238. },
  36239. [
  36240. {
  36241. name: "Really Small",
  36242. height: math.unit(0.1, "nm")
  36243. },
  36244. {
  36245. name: "Micro",
  36246. height: math.unit(2, "inches")
  36247. },
  36248. {
  36249. name: "Normal",
  36250. height: math.unit(6 + 9/12, "feet"),
  36251. default: true
  36252. },
  36253. {
  36254. name: "Small Macro",
  36255. height: math.unit(69, "feet")
  36256. },
  36257. {
  36258. name: "Macro",
  36259. height: math.unit(160, "feet")
  36260. },
  36261. {
  36262. name: "Megamacro",
  36263. height: math.unit(22000, "miles")
  36264. },
  36265. {
  36266. name: "Gigamacro",
  36267. height: math.unit(50000, "miles")
  36268. },
  36269. ]
  36270. ))
  36271. characterMakers.push(() => makeCharacter(
  36272. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36273. {
  36274. front: {
  36275. height: math.unit(4, "feet"),
  36276. weight: math.unit(90, "lb"),
  36277. name: "Front",
  36278. image: {
  36279. source: "./media/characters/joey-mcdonald/front.svg",
  36280. extra: 1059/852,
  36281. bottom: 33/1092
  36282. }
  36283. },
  36284. back: {
  36285. height: math.unit(4, "feet"),
  36286. weight: math.unit(90, "lb"),
  36287. name: "Back",
  36288. image: {
  36289. source: "./media/characters/joey-mcdonald/back.svg",
  36290. extra: 1077/879,
  36291. bottom: 5/1082
  36292. }
  36293. },
  36294. frontKobold: {
  36295. height: math.unit(4, "feet"),
  36296. weight: math.unit(100, "lb"),
  36297. name: "Front-kobold",
  36298. image: {
  36299. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36300. extra: 1480/1367,
  36301. bottom: 0/1480
  36302. }
  36303. },
  36304. backKobold: {
  36305. height: math.unit(4, "feet"),
  36306. weight: math.unit(100, "lb"),
  36307. name: "Back-kobold",
  36308. image: {
  36309. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36310. extra: 1449/1361,
  36311. bottom: 0/1449
  36312. }
  36313. },
  36314. },
  36315. [
  36316. {
  36317. name: "Normal",
  36318. height: math.unit(4, "feet"),
  36319. default: true
  36320. },
  36321. ]
  36322. ))
  36323. characterMakers.push(() => makeCharacter(
  36324. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36325. {
  36326. front: {
  36327. height: math.unit(12 + 6/12, "feet"),
  36328. name: "Front",
  36329. image: {
  36330. source: "./media/characters/kass-lockheed/front.svg",
  36331. extra: 354/343,
  36332. bottom: 9/363
  36333. }
  36334. },
  36335. back: {
  36336. height: math.unit(12 + 6/12, "feet"),
  36337. name: "Back",
  36338. image: {
  36339. source: "./media/characters/kass-lockheed/back.svg",
  36340. extra: 364/352,
  36341. bottom: 3/367
  36342. }
  36343. },
  36344. dick: {
  36345. height: math.unit(3.12, "feet"),
  36346. name: "Dick",
  36347. image: {
  36348. source: "./media/characters/kass-lockheed/dick.svg"
  36349. }
  36350. },
  36351. head: {
  36352. height: math.unit(2.6, "feet"),
  36353. name: "Head",
  36354. image: {
  36355. source: "./media/characters/kass-lockheed/head.svg"
  36356. }
  36357. },
  36358. bleh: {
  36359. height: math.unit(2.85, "feet"),
  36360. name: "Bleh",
  36361. image: {
  36362. source: "./media/characters/kass-lockheed/bleh.svg"
  36363. }
  36364. },
  36365. smug: {
  36366. height: math.unit(2.85, "feet"),
  36367. name: "Smug",
  36368. image: {
  36369. source: "./media/characters/kass-lockheed/smug.svg"
  36370. }
  36371. },
  36372. },
  36373. [
  36374. {
  36375. name: "Normal",
  36376. height: math.unit(12 + 6/12, "feet"),
  36377. default: true
  36378. },
  36379. ]
  36380. ))
  36381. characterMakers.push(() => makeCharacter(
  36382. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36383. {
  36384. front: {
  36385. height: math.unit(6 + 2/12, "feet"),
  36386. name: "Front",
  36387. image: {
  36388. source: "./media/characters/taylor/front.svg",
  36389. extra: 639/495,
  36390. bottom: 12/651
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Normal",
  36397. height: math.unit(6 + 2/12, "feet"),
  36398. default: true
  36399. },
  36400. {
  36401. name: "Big",
  36402. height: math.unit(15, "feet")
  36403. },
  36404. {
  36405. name: "Lorg",
  36406. height: math.unit(80, "feet")
  36407. },
  36408. {
  36409. name: "Too Lorg",
  36410. height: math.unit(120, "feet")
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36416. {
  36417. front: {
  36418. height: math.unit(15, "feet"),
  36419. name: "Front",
  36420. image: {
  36421. source: "./media/characters/kaizer/front.svg",
  36422. extra: 1612/1436,
  36423. bottom: 43/1655
  36424. }
  36425. },
  36426. },
  36427. [
  36428. {
  36429. name: "Normal",
  36430. height: math.unit(15, "feet"),
  36431. default: true
  36432. },
  36433. ]
  36434. ))
  36435. characterMakers.push(() => makeCharacter(
  36436. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36437. {
  36438. front: {
  36439. height: math.unit(2, "feet"),
  36440. weight: math.unit(30, "lb"),
  36441. name: "Front",
  36442. image: {
  36443. source: "./media/characters/sandy/front.svg",
  36444. extra: 1439/1307,
  36445. bottom: 194/1633
  36446. }
  36447. },
  36448. },
  36449. [
  36450. {
  36451. name: "Normal",
  36452. height: math.unit(2, "feet"),
  36453. default: true
  36454. },
  36455. ]
  36456. ))
  36457. characterMakers.push(() => makeCharacter(
  36458. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36459. {
  36460. front: {
  36461. height: math.unit(3, "feet"),
  36462. name: "Front",
  36463. image: {
  36464. source: "./media/characters/mellvi/front.svg",
  36465. extra: 1831/1630,
  36466. bottom: 58/1889
  36467. }
  36468. },
  36469. },
  36470. [
  36471. {
  36472. name: "Normal",
  36473. height: math.unit(3, "feet"),
  36474. default: true
  36475. },
  36476. ]
  36477. ))
  36478. characterMakers.push(() => makeCharacter(
  36479. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36480. {
  36481. front: {
  36482. height: math.unit(5 + 11/12, "feet"),
  36483. weight: math.unit(200, "lb"),
  36484. name: "Front",
  36485. image: {
  36486. source: "./media/characters/shirou/front.svg",
  36487. extra: 2491/2383,
  36488. bottom: 189/2680
  36489. }
  36490. },
  36491. back: {
  36492. height: math.unit(5 + 11/12, "feet"),
  36493. weight: math.unit(200, "lb"),
  36494. name: "Back",
  36495. image: {
  36496. source: "./media/characters/shirou/back.svg",
  36497. extra: 2554/2450,
  36498. bottom: 76/2630
  36499. }
  36500. },
  36501. },
  36502. [
  36503. {
  36504. name: "Normal",
  36505. height: math.unit(5 + 11/12, "feet"),
  36506. default: true
  36507. },
  36508. ]
  36509. ))
  36510. characterMakers.push(() => makeCharacter(
  36511. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36512. {
  36513. front: {
  36514. height: math.unit(6 + 3/12, "feet"),
  36515. weight: math.unit(177, "lb"),
  36516. name: "Front",
  36517. image: {
  36518. source: "./media/characters/noryu/front.svg",
  36519. extra: 973/885,
  36520. bottom: 10/983
  36521. }
  36522. },
  36523. },
  36524. [
  36525. {
  36526. name: "Normal",
  36527. height: math.unit(6 + 3/12, "feet"),
  36528. default: true
  36529. },
  36530. ]
  36531. ))
  36532. characterMakers.push(() => makeCharacter(
  36533. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36534. {
  36535. front: {
  36536. height: math.unit(5 + 6/12, "feet"),
  36537. weight: math.unit(170, "lb"),
  36538. name: "Front",
  36539. image: {
  36540. source: "./media/characters/mevolas-rubenido/front.svg",
  36541. extra: 2109/1901,
  36542. bottom: 96/2205
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(5 + 6/12, "feet"),
  36550. default: true
  36551. },
  36552. ]
  36553. ))
  36554. characterMakers.push(() => makeCharacter(
  36555. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36556. {
  36557. front: {
  36558. height: math.unit(100, "feet"),
  36559. name: "Front",
  36560. image: {
  36561. source: "./media/characters/dee/front.svg",
  36562. extra: 2153/2036,
  36563. bottom: 59/2212
  36564. }
  36565. },
  36566. back: {
  36567. height: math.unit(100, "feet"),
  36568. name: "Back",
  36569. image: {
  36570. source: "./media/characters/dee/back.svg",
  36571. extra: 2183/2058,
  36572. bottom: 75/2258
  36573. }
  36574. },
  36575. foot: {
  36576. height: math.unit(19.43, "feet"),
  36577. name: "Foot",
  36578. image: {
  36579. source: "./media/characters/dee/foot.svg"
  36580. }
  36581. },
  36582. hoof: {
  36583. height: math.unit(20.6, "feet"),
  36584. name: "Hoof",
  36585. image: {
  36586. source: "./media/characters/dee/hoof.svg"
  36587. }
  36588. },
  36589. },
  36590. [
  36591. {
  36592. name: "Macro",
  36593. height: math.unit(100, "feet"),
  36594. default: true
  36595. },
  36596. ]
  36597. ))
  36598. characterMakers.push(() => makeCharacter(
  36599. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36600. {
  36601. front: {
  36602. height: math.unit(5 + 6/12, "feet"),
  36603. name: "Front",
  36604. image: {
  36605. source: "./media/characters/teh/front.svg",
  36606. extra: 1002/847,
  36607. bottom: 62/1064
  36608. }
  36609. },
  36610. },
  36611. [
  36612. {
  36613. name: "Normal",
  36614. height: math.unit(5 + 6/12, "feet"),
  36615. default: true
  36616. },
  36617. ]
  36618. ))
  36619. characterMakers.push(() => makeCharacter(
  36620. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36621. {
  36622. side: {
  36623. height: math.unit(6 + 1/12, "feet"),
  36624. weight: math.unit(204, "lb"),
  36625. name: "Side",
  36626. image: {
  36627. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36628. extra: 974/775,
  36629. bottom: 169/1143
  36630. }
  36631. },
  36632. sitting: {
  36633. height: math.unit(6 + 2/12, "feet"),
  36634. weight: math.unit(204, "lb"),
  36635. name: "Sitting",
  36636. image: {
  36637. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36638. extra: 1175/964,
  36639. bottom: 378/1553
  36640. }
  36641. },
  36642. },
  36643. [
  36644. {
  36645. name: "Normal",
  36646. height: math.unit(6 + 1/12, "feet"),
  36647. default: true
  36648. },
  36649. ]
  36650. ))
  36651. characterMakers.push(() => makeCharacter(
  36652. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36653. {
  36654. front: {
  36655. height: math.unit(6, "inches"),
  36656. name: "Front",
  36657. image: {
  36658. source: "./media/characters/tululi/front.svg",
  36659. extra: 1997/1876,
  36660. bottom: 20/2017
  36661. }
  36662. },
  36663. },
  36664. [
  36665. {
  36666. name: "Normal",
  36667. height: math.unit(6, "inches"),
  36668. default: true
  36669. },
  36670. ]
  36671. ))
  36672. characterMakers.push(() => makeCharacter(
  36673. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36674. {
  36675. front: {
  36676. height: math.unit(4 + 1/12, "feet"),
  36677. name: "Front",
  36678. image: {
  36679. source: "./media/characters/star/front.svg",
  36680. extra: 1493/1189,
  36681. bottom: 48/1541
  36682. }
  36683. },
  36684. },
  36685. [
  36686. {
  36687. name: "Normal",
  36688. height: math.unit(4 + 1/12, "feet"),
  36689. default: true
  36690. },
  36691. ]
  36692. ))
  36693. characterMakers.push(() => makeCharacter(
  36694. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36695. {
  36696. front: {
  36697. height: math.unit(6 + 3/12, "feet"),
  36698. name: "Front",
  36699. image: {
  36700. source: "./media/characters/comet/front.svg",
  36701. extra: 1681/1462,
  36702. bottom: 26/1707
  36703. }
  36704. },
  36705. },
  36706. [
  36707. {
  36708. name: "Normal",
  36709. height: math.unit(6 + 3/12, "feet"),
  36710. default: true
  36711. },
  36712. ]
  36713. ))
  36714. characterMakers.push(() => makeCharacter(
  36715. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36716. {
  36717. front: {
  36718. height: math.unit(950, "feet"),
  36719. name: "Front",
  36720. image: {
  36721. source: "./media/characters/vortex/front.svg",
  36722. extra: 1497/1434,
  36723. bottom: 56/1553
  36724. }
  36725. },
  36726. maw: {
  36727. height: math.unit(285, "feet"),
  36728. name: "Maw",
  36729. image: {
  36730. source: "./media/characters/vortex/maw.svg"
  36731. }
  36732. },
  36733. },
  36734. [
  36735. {
  36736. name: "Macro",
  36737. height: math.unit(950, "feet"),
  36738. default: true
  36739. },
  36740. ]
  36741. ))
  36742. characterMakers.push(() => makeCharacter(
  36743. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36744. {
  36745. front: {
  36746. height: math.unit(600, "feet"),
  36747. weight: math.unit(0.02, "grams"),
  36748. name: "Front",
  36749. image: {
  36750. source: "./media/characters/doodle/front.svg",
  36751. extra: 1578/1413,
  36752. bottom: 37/1615
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Macro",
  36759. height: math.unit(600, "feet"),
  36760. default: true
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(6 + 6/12, "feet"),
  36769. name: "Front",
  36770. image: {
  36771. source: "./media/characters/jai/front.svg",
  36772. extra: 1645/1534,
  36773. bottom: 115/1760
  36774. }
  36775. },
  36776. },
  36777. [
  36778. {
  36779. name: "Normal",
  36780. height: math.unit(6 + 6/12, "feet"),
  36781. default: true
  36782. },
  36783. ]
  36784. ))
  36785. characterMakers.push(() => makeCharacter(
  36786. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36787. {
  36788. front: {
  36789. height: math.unit(6 + 8/12, "feet"),
  36790. name: "Front",
  36791. image: {
  36792. source: "./media/characters/pixel/front.svg",
  36793. extra: 1900/1735,
  36794. bottom: 63/1963
  36795. }
  36796. },
  36797. },
  36798. [
  36799. {
  36800. name: "Normal",
  36801. height: math.unit(6 + 8/12, "feet"),
  36802. default: true
  36803. },
  36804. ]
  36805. ))
  36806. characterMakers.push(() => makeCharacter(
  36807. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36808. {
  36809. back: {
  36810. height: math.unit(4 + 1/12, "feet"),
  36811. weight: math.unit(75, "lb"),
  36812. name: "Back",
  36813. image: {
  36814. source: "./media/characters/rhett/back.svg",
  36815. extra: 930/878,
  36816. bottom: 25/955
  36817. }
  36818. },
  36819. front: {
  36820. height: math.unit(4 + 1/12, "feet"),
  36821. weight: math.unit(75, "lb"),
  36822. name: "Front",
  36823. image: {
  36824. source: "./media/characters/rhett/front.svg",
  36825. extra: 1682/1586,
  36826. bottom: 92/1774
  36827. }
  36828. },
  36829. },
  36830. [
  36831. {
  36832. name: "Micro",
  36833. height: math.unit(8, "inches")
  36834. },
  36835. {
  36836. name: "Tiny",
  36837. height: math.unit(2, "feet")
  36838. },
  36839. {
  36840. name: "Normal",
  36841. height: math.unit(4 + 1/12, "feet"),
  36842. default: true
  36843. },
  36844. ]
  36845. ))
  36846. characterMakers.push(() => makeCharacter(
  36847. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36848. {
  36849. front: {
  36850. height: math.unit(3 + 3/12, "feet"),
  36851. name: "Front",
  36852. image: {
  36853. source: "./media/characters/penny/front.svg",
  36854. extra: 1406/1311,
  36855. bottom: 26/1432
  36856. }
  36857. },
  36858. },
  36859. [
  36860. {
  36861. name: "Normal",
  36862. height: math.unit(3 + 3/12, "feet"),
  36863. default: true
  36864. },
  36865. ]
  36866. ))
  36867. characterMakers.push(() => makeCharacter(
  36868. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36869. {
  36870. front: {
  36871. height: math.unit(4 + 11/12, "feet"),
  36872. name: "Front",
  36873. image: {
  36874. source: "./media/characters/monty/front.svg",
  36875. extra: 1479/1209,
  36876. bottom: 0/1479
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Normal",
  36883. height: math.unit(4 + 11/12, "feet"),
  36884. default: true
  36885. },
  36886. ]
  36887. ))
  36888. characterMakers.push(() => makeCharacter(
  36889. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36890. {
  36891. front: {
  36892. height: math.unit(8 + 4/12, "feet"),
  36893. name: "Front",
  36894. image: {
  36895. source: "./media/characters/sterling/front.svg",
  36896. extra: 1420/1236,
  36897. bottom: 27/1447
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(8 + 4/12, "feet"),
  36905. default: true
  36906. },
  36907. ]
  36908. ))
  36909. characterMakers.push(() => makeCharacter(
  36910. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36911. {
  36912. front: {
  36913. height: math.unit(15, "feet"),
  36914. name: "Front",
  36915. image: {
  36916. source: "./media/characters/marble/front.svg",
  36917. extra: 973/937,
  36918. bottom: 32/1005
  36919. }
  36920. },
  36921. },
  36922. [
  36923. {
  36924. name: "Normal",
  36925. height: math.unit(15, "feet"),
  36926. default: true
  36927. },
  36928. ]
  36929. ))
  36930. characterMakers.push(() => makeCharacter(
  36931. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36932. {
  36933. front: {
  36934. height: math.unit(3, "inches"),
  36935. name: "Front",
  36936. image: {
  36937. source: "./media/characters/powder/front.svg",
  36938. extra: 1504/1334,
  36939. bottom: 518/2022
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(3, "inches"),
  36947. default: true
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36953. {
  36954. front: {
  36955. height: math.unit(4 + 5/12, "feet"),
  36956. name: "Front",
  36957. image: {
  36958. source: "./media/characters/joey-raccoon/front.svg",
  36959. extra: 1273/1197,
  36960. bottom: 0/1273
  36961. }
  36962. },
  36963. },
  36964. [
  36965. {
  36966. name: "Normal",
  36967. height: math.unit(4 + 5/12, "feet"),
  36968. default: true
  36969. },
  36970. ]
  36971. ))
  36972. characterMakers.push(() => makeCharacter(
  36973. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36974. {
  36975. front: {
  36976. height: math.unit(8 + 4/12, "feet"),
  36977. name: "Front",
  36978. image: {
  36979. source: "./media/characters/vick/front.svg",
  36980. extra: 2187/2118,
  36981. bottom: 47/2234
  36982. }
  36983. },
  36984. },
  36985. [
  36986. {
  36987. name: "Normal",
  36988. height: math.unit(8 + 4/12, "feet"),
  36989. default: true
  36990. },
  36991. ]
  36992. ))
  36993. characterMakers.push(() => makeCharacter(
  36994. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36995. {
  36996. front: {
  36997. height: math.unit(5 + 5/12, "feet"),
  36998. name: "Front",
  36999. image: {
  37000. source: "./media/characters/mitsy/front.svg",
  37001. extra: 1842/1695,
  37002. bottom: 0/1842
  37003. }
  37004. },
  37005. },
  37006. [
  37007. {
  37008. name: "Normal",
  37009. height: math.unit(5 + 5/12, "feet"),
  37010. default: true
  37011. },
  37012. ]
  37013. ))
  37014. characterMakers.push(() => makeCharacter(
  37015. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37016. {
  37017. front: {
  37018. height: math.unit(6 + 3/12, "feet"),
  37019. name: "Front",
  37020. image: {
  37021. source: "./media/characters/silvy/front.svg",
  37022. extra: 1995/1836,
  37023. bottom: 225/2220
  37024. }
  37025. },
  37026. },
  37027. [
  37028. {
  37029. name: "Normal",
  37030. height: math.unit(6 + 3/12, "feet"),
  37031. default: true
  37032. },
  37033. ]
  37034. ))
  37035. characterMakers.push(() => makeCharacter(
  37036. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37037. {
  37038. front: {
  37039. height: math.unit(3 + 8/12, "feet"),
  37040. name: "Front",
  37041. image: {
  37042. source: "./media/characters/rodney/front.svg",
  37043. extra: 1956/1747,
  37044. bottom: 31/1987
  37045. }
  37046. },
  37047. frontDressed: {
  37048. height: math.unit(2.9, "feet"),
  37049. name: "Front (Dressed)",
  37050. image: {
  37051. source: "./media/characters/rodney/front-dressed.svg",
  37052. extra: 1382/1241,
  37053. bottom: 385/1767
  37054. }
  37055. },
  37056. },
  37057. [
  37058. {
  37059. name: "Normal",
  37060. height: math.unit(3 + 8/12, "feet"),
  37061. default: true
  37062. },
  37063. ]
  37064. ))
  37065. characterMakers.push(() => makeCharacter(
  37066. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37067. {
  37068. front: {
  37069. height: math.unit(5 + 9/12, "feet"),
  37070. weight: math.unit(194, "lbs"),
  37071. name: "Front",
  37072. image: {
  37073. source: "./media/characters/zakail-sudekai/front.svg",
  37074. extra: 2696/2533,
  37075. bottom: 248/2944
  37076. }
  37077. },
  37078. maw: {
  37079. height: math.unit(1.35, "feet"),
  37080. name: "Maw",
  37081. image: {
  37082. source: "./media/characters/zakail-sudekai/maw.svg"
  37083. }
  37084. },
  37085. },
  37086. [
  37087. {
  37088. name: "Normal",
  37089. height: math.unit(5 + 9/12, "feet"),
  37090. default: true
  37091. },
  37092. ]
  37093. ))
  37094. characterMakers.push(() => makeCharacter(
  37095. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37096. {
  37097. front: {
  37098. height: math.unit(8 + 4/12, "feet"),
  37099. weight: math.unit(1200, "lb"),
  37100. name: "Front",
  37101. image: {
  37102. source: "./media/characters/eleanor/front.svg",
  37103. extra: 1226/1192,
  37104. bottom: 52/1278
  37105. }
  37106. },
  37107. back: {
  37108. height: math.unit(8 + 4/12, "feet"),
  37109. weight: math.unit(1200, "lb"),
  37110. name: "Back",
  37111. image: {
  37112. source: "./media/characters/eleanor/back.svg",
  37113. extra: 1242/1184,
  37114. bottom: 60/1302
  37115. }
  37116. },
  37117. head: {
  37118. height: math.unit(2.62, "feet"),
  37119. name: "Head",
  37120. image: {
  37121. source: "./media/characters/eleanor/head.svg"
  37122. }
  37123. },
  37124. },
  37125. [
  37126. {
  37127. name: "Normal",
  37128. height: math.unit(8 + 4/12, "feet"),
  37129. default: true
  37130. },
  37131. ]
  37132. ))
  37133. characterMakers.push(() => makeCharacter(
  37134. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37135. {
  37136. front: {
  37137. height: math.unit(8 + 4/12, "feet"),
  37138. weight: math.unit(750, "lb"),
  37139. name: "Front",
  37140. image: {
  37141. source: "./media/characters/tanya/front.svg",
  37142. extra: 1749/1615,
  37143. bottom: 33/1782
  37144. }
  37145. },
  37146. },
  37147. [
  37148. {
  37149. name: "Normal",
  37150. height: math.unit(8 + 4/12, "feet"),
  37151. default: true
  37152. },
  37153. ]
  37154. ))
  37155. characterMakers.push(() => makeCharacter(
  37156. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37157. {
  37158. front: {
  37159. height: math.unit(5, "feet"),
  37160. weight: math.unit(225, "lb"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/cindy/front.svg",
  37164. extra: 1320/1250,
  37165. bottom: 42/1362
  37166. }
  37167. },
  37168. frontDressed: {
  37169. height: math.unit(5, "feet"),
  37170. weight: math.unit(225, "lb"),
  37171. name: "Front (Dressed)",
  37172. image: {
  37173. source: "./media/characters/cindy/front-dressed.svg",
  37174. extra: 1320/1250,
  37175. bottom: 42/1362
  37176. }
  37177. },
  37178. back: {
  37179. height: math.unit(5, "feet"),
  37180. weight: math.unit(225, "lb"),
  37181. name: "Back",
  37182. image: {
  37183. source: "./media/characters/cindy/back.svg",
  37184. extra: 1384/1346,
  37185. bottom: 14/1398
  37186. }
  37187. },
  37188. },
  37189. [
  37190. {
  37191. name: "Normal",
  37192. height: math.unit(5, "feet"),
  37193. default: true
  37194. },
  37195. ]
  37196. ))
  37197. characterMakers.push(() => makeCharacter(
  37198. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37199. {
  37200. front: {
  37201. height: math.unit(6 + 9/12, "feet"),
  37202. weight: math.unit(440, "lb"),
  37203. name: "Front",
  37204. image: {
  37205. source: "./media/characters/wilbur-owen/front.svg",
  37206. extra: 1575/1448,
  37207. bottom: 72/1647
  37208. }
  37209. },
  37210. back: {
  37211. height: math.unit(6 + 9/12, "feet"),
  37212. weight: math.unit(440, "lb"),
  37213. name: "Back",
  37214. image: {
  37215. source: "./media/characters/wilbur-owen/back.svg",
  37216. extra: 1578/1445,
  37217. bottom: 36/1614
  37218. }
  37219. },
  37220. },
  37221. [
  37222. {
  37223. name: "Normal",
  37224. height: math.unit(6 + 9/12, "feet"),
  37225. default: true
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37231. {
  37232. front: {
  37233. height: math.unit(6 + 5/12, "feet"),
  37234. weight: math.unit(650, "lb"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/keegan/front.svg",
  37238. extra: 2387/2198,
  37239. bottom: 33/2420
  37240. }
  37241. },
  37242. side: {
  37243. height: math.unit(6 + 5/12, "feet"),
  37244. weight: math.unit(650, "lb"),
  37245. name: "Side",
  37246. image: {
  37247. source: "./media/characters/keegan/side.svg",
  37248. extra: 2390/2202,
  37249. bottom: 47/2437
  37250. }
  37251. },
  37252. back: {
  37253. height: math.unit(6 + 5/12, "feet"),
  37254. weight: math.unit(650, "lb"),
  37255. name: "Back",
  37256. image: {
  37257. source: "./media/characters/keegan/back.svg",
  37258. extra: 2418/2268,
  37259. bottom: 15/2433
  37260. }
  37261. },
  37262. frontSfw: {
  37263. height: math.unit(6 + 5/12, "feet"),
  37264. weight: math.unit(650, "lb"),
  37265. name: "Front (SFW)",
  37266. image: {
  37267. source: "./media/characters/keegan/front-sfw.svg",
  37268. extra: 2387/2198,
  37269. bottom: 33/2420
  37270. }
  37271. },
  37272. beans: {
  37273. height: math.unit(1.85, "feet"),
  37274. name: "Beans",
  37275. image: {
  37276. source: "./media/characters/keegan/beans.svg"
  37277. }
  37278. },
  37279. },
  37280. [
  37281. {
  37282. name: "Normal",
  37283. height: math.unit(6 + 5/12, "feet"),
  37284. default: true
  37285. },
  37286. ]
  37287. ))
  37288. characterMakers.push(() => makeCharacter(
  37289. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37290. {
  37291. front: {
  37292. height: math.unit(9, "feet"),
  37293. name: "Front",
  37294. image: {
  37295. source: "./media/characters/colton/front.svg",
  37296. extra: 1589/1326,
  37297. bottom: 139/1728
  37298. }
  37299. },
  37300. },
  37301. [
  37302. {
  37303. name: "Normal",
  37304. height: math.unit(9, "feet"),
  37305. default: true
  37306. },
  37307. ]
  37308. ))
  37309. characterMakers.push(() => makeCharacter(
  37310. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37311. {
  37312. front: {
  37313. height: math.unit(2 + 9/12, "feet"),
  37314. name: "Front",
  37315. image: {
  37316. source: "./media/characters/bora/front.svg",
  37317. extra: 1265/1250,
  37318. bottom: 24/1289
  37319. }
  37320. },
  37321. },
  37322. [
  37323. {
  37324. name: "Normal",
  37325. height: math.unit(2 + 9/12, "feet"),
  37326. default: true
  37327. },
  37328. ]
  37329. ))
  37330. characterMakers.push(() => makeCharacter(
  37331. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37332. {
  37333. front: {
  37334. height: math.unit(8, "feet"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/myu-myu/front.svg",
  37338. extra: 1949/1857,
  37339. bottom: 90/2039
  37340. }
  37341. },
  37342. },
  37343. [
  37344. {
  37345. name: "Normal",
  37346. height: math.unit(8, "feet"),
  37347. default: true
  37348. },
  37349. {
  37350. name: "Big",
  37351. height: math.unit(15, "feet")
  37352. },
  37353. {
  37354. name: "BIG",
  37355. height: math.unit(25, "feet")
  37356. },
  37357. ]
  37358. ))
  37359. characterMakers.push(() => makeCharacter(
  37360. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37361. {
  37362. side: {
  37363. height: math.unit(7 + 5/12, "feet"),
  37364. weight: math.unit(2800, "lb"),
  37365. name: "Side",
  37366. image: {
  37367. source: "./media/characters/haloren/side.svg",
  37368. extra: 1793/409,
  37369. bottom: 59/1852
  37370. }
  37371. },
  37372. frontPaw: {
  37373. height: math.unit(2.36, "feet"),
  37374. name: "Front paw",
  37375. image: {
  37376. source: "./media/characters/haloren/front-paw.svg"
  37377. }
  37378. },
  37379. hindPaw: {
  37380. height: math.unit(3.18, "feet"),
  37381. name: "Hind paw",
  37382. image: {
  37383. source: "./media/characters/haloren/hind-paw.svg"
  37384. }
  37385. },
  37386. maw: {
  37387. height: math.unit(5.05, "feet"),
  37388. name: "Maw",
  37389. image: {
  37390. source: "./media/characters/haloren/maw.svg"
  37391. }
  37392. },
  37393. dick: {
  37394. height: math.unit(2.90, "feet"),
  37395. name: "Dick",
  37396. image: {
  37397. source: "./media/characters/haloren/dick.svg"
  37398. }
  37399. },
  37400. },
  37401. [
  37402. {
  37403. name: "Normal",
  37404. height: math.unit(7 + 5/12, "feet"),
  37405. default: true
  37406. },
  37407. {
  37408. name: "Enhanced",
  37409. height: math.unit(14 + 3/12, "feet")
  37410. },
  37411. ]
  37412. ))
  37413. characterMakers.push(() => makeCharacter(
  37414. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37415. {
  37416. front: {
  37417. height: math.unit(171, "cm"),
  37418. name: "Front",
  37419. image: {
  37420. source: "./media/characters/kimmy/front.svg",
  37421. extra: 1491/1435,
  37422. bottom: 53/1544
  37423. }
  37424. },
  37425. },
  37426. [
  37427. {
  37428. name: "Small",
  37429. height: math.unit(9, "cm")
  37430. },
  37431. {
  37432. name: "Normal",
  37433. height: math.unit(171, "cm"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37440. {
  37441. front: {
  37442. height: math.unit(8, "feet"),
  37443. weight: math.unit(300, "lb"),
  37444. name: "Front",
  37445. image: {
  37446. source: "./media/characters/galeboomer/front.svg",
  37447. extra: 4651/4415,
  37448. bottom: 162/4813
  37449. }
  37450. },
  37451. back: {
  37452. height: math.unit(8, "feet"),
  37453. weight: math.unit(300, "lb"),
  37454. name: "Back",
  37455. image: {
  37456. source: "./media/characters/galeboomer/back.svg",
  37457. extra: 4544/4314,
  37458. bottom: 16/4560
  37459. }
  37460. },
  37461. frontAlt: {
  37462. height: math.unit(8, "feet"),
  37463. weight: math.unit(300, "lb"),
  37464. name: "Front (Alt)",
  37465. image: {
  37466. source: "./media/characters/galeboomer/front-alt.svg",
  37467. extra: 4458/4228,
  37468. bottom: 68/4526
  37469. }
  37470. },
  37471. maw: {
  37472. height: math.unit(1.2, "feet"),
  37473. name: "Maw",
  37474. image: {
  37475. source: "./media/characters/galeboomer/maw.svg"
  37476. }
  37477. },
  37478. },
  37479. [
  37480. {
  37481. name: "Normal",
  37482. height: math.unit(8, "feet"),
  37483. default: true
  37484. },
  37485. ]
  37486. ))
  37487. characterMakers.push(() => makeCharacter(
  37488. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37489. {
  37490. front: {
  37491. height: math.unit(5 + 9/12, "feet"),
  37492. weight: math.unit(120, "lb"),
  37493. name: "Front",
  37494. image: {
  37495. source: "./media/characters/chyr/front.svg",
  37496. extra: 1323/1254,
  37497. bottom: 63/1386
  37498. }
  37499. },
  37500. back: {
  37501. height: math.unit(5 + 9/12, "feet"),
  37502. weight: math.unit(120, "lb"),
  37503. name: "Back",
  37504. image: {
  37505. source: "./media/characters/chyr/back.svg",
  37506. extra: 1323/1252,
  37507. bottom: 48/1371
  37508. }
  37509. },
  37510. },
  37511. [
  37512. {
  37513. name: "Normal",
  37514. height: math.unit(5 + 9/12, "feet"),
  37515. default: true
  37516. },
  37517. ]
  37518. ))
  37519. characterMakers.push(() => makeCharacter(
  37520. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37521. {
  37522. front: {
  37523. height: math.unit(7, "feet"),
  37524. weight: math.unit(310, "lb"),
  37525. name: "Front",
  37526. image: {
  37527. source: "./media/characters/solarus/front.svg",
  37528. extra: 2415/2021,
  37529. bottom: 103/2518
  37530. }
  37531. },
  37532. back: {
  37533. height: math.unit(7, "feet"),
  37534. weight: math.unit(310, "lb"),
  37535. name: "Back",
  37536. image: {
  37537. source: "./media/characters/solarus/back.svg",
  37538. extra: 2463/2089,
  37539. bottom: 79/2542
  37540. }
  37541. },
  37542. },
  37543. [
  37544. {
  37545. name: "Normal",
  37546. height: math.unit(7, "feet"),
  37547. default: true
  37548. },
  37549. ]
  37550. ))
  37551. characterMakers.push(() => makeCharacter(
  37552. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37553. {
  37554. front: {
  37555. height: math.unit(16, "feet"),
  37556. name: "Front",
  37557. image: {
  37558. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37559. extra: 1844/1780,
  37560. bottom: 58/1902
  37561. }
  37562. },
  37563. winterCoat: {
  37564. height: math.unit(16, "feet"),
  37565. name: "Winter Coat",
  37566. image: {
  37567. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37568. extra: 1807/1775,
  37569. bottom: 69/1876
  37570. }
  37571. },
  37572. },
  37573. [
  37574. {
  37575. name: "Normal",
  37576. height: math.unit(16, "feet"),
  37577. default: true
  37578. },
  37579. {
  37580. name: "Chicago Size",
  37581. height: math.unit(560, "feet")
  37582. },
  37583. ]
  37584. ))
  37585. characterMakers.push(() => makeCharacter(
  37586. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37587. {
  37588. front: {
  37589. height: math.unit(11 + 6/12, "feet"),
  37590. weight: math.unit(1366, "lb"),
  37591. name: "Front",
  37592. image: {
  37593. source: "./media/characters/lexor/front.svg",
  37594. extra: 1560/1481,
  37595. bottom: 211/1771
  37596. }
  37597. },
  37598. back: {
  37599. height: math.unit(11 + 6/12, "feet"),
  37600. weight: math.unit(1366, "lb"),
  37601. name: "Back",
  37602. image: {
  37603. source: "./media/characters/lexor/back.svg",
  37604. extra: 1614/1533,
  37605. bottom: 76/1690
  37606. }
  37607. },
  37608. maw: {
  37609. height: math.unit(3, "feet"),
  37610. name: "Maw",
  37611. image: {
  37612. source: "./media/characters/lexor/maw.svg"
  37613. }
  37614. },
  37615. dick: {
  37616. height: math.unit(2.59, "feet"),
  37617. name: "Dick",
  37618. image: {
  37619. source: "./media/characters/lexor/dick.svg"
  37620. }
  37621. },
  37622. },
  37623. [
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(11 + 6/12, "feet"),
  37627. default: true
  37628. },
  37629. ]
  37630. ))
  37631. characterMakers.push(() => makeCharacter(
  37632. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37633. {
  37634. front: {
  37635. height: math.unit(5 + 8/12, "feet"),
  37636. name: "Front",
  37637. image: {
  37638. source: "./media/characters/magnum/front.svg",
  37639. extra: 942/855,
  37640. bottom: 26/968
  37641. }
  37642. },
  37643. },
  37644. [
  37645. {
  37646. name: "Normal",
  37647. height: math.unit(5 + 8/12, "feet"),
  37648. default: true
  37649. },
  37650. ]
  37651. ))
  37652. characterMakers.push(() => makeCharacter(
  37653. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37654. {
  37655. front: {
  37656. height: math.unit(18 + 4/12, "feet"),
  37657. weight: math.unit(1500, "kg"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/solas-sharpsman/front.svg",
  37661. extra: 1698/1589,
  37662. bottom: 0/1698
  37663. }
  37664. },
  37665. },
  37666. [
  37667. {
  37668. name: "Normal",
  37669. height: math.unit(18 + 4/12, "feet"),
  37670. default: true
  37671. },
  37672. ]
  37673. ))
  37674. characterMakers.push(() => makeCharacter(
  37675. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37676. {
  37677. front: {
  37678. height: math.unit(5 + 5/12, "feet"),
  37679. weight: math.unit(180, "lb"),
  37680. name: "Front",
  37681. image: {
  37682. source: "./media/characters/october/front.svg",
  37683. extra: 1800/1650,
  37684. bottom: 0/1800
  37685. }
  37686. },
  37687. frontNsfw: {
  37688. height: math.unit(5 + 5/12, "feet"),
  37689. weight: math.unit(180, "lb"),
  37690. name: "Front (NSFW)",
  37691. image: {
  37692. source: "./media/characters/october/front-nsfw.svg",
  37693. extra: 1392/1307,
  37694. bottom: 42/1434
  37695. }
  37696. },
  37697. },
  37698. [
  37699. {
  37700. name: "Normal",
  37701. height: math.unit(5 + 5/12, "feet"),
  37702. default: true
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(8 + 6/12, "feet"),
  37711. name: "Front",
  37712. image: {
  37713. source: "./media/characters/essynkardi/front.svg",
  37714. extra: 1914/1846,
  37715. bottom: 22/1936
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(8 + 6/12, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(6 + 6/12, "feet"),
  37732. weight: math.unit(7, "lb"),
  37733. name: "Front",
  37734. image: {
  37735. source: "./media/characters/icky/front.svg",
  37736. extra: 813/782,
  37737. bottom: 66/879
  37738. }
  37739. },
  37740. back: {
  37741. height: math.unit(6 + 6/12, "feet"),
  37742. weight: math.unit(7, "lb"),
  37743. name: "Back",
  37744. image: {
  37745. source: "./media/characters/icky/back.svg",
  37746. extra: 754/735,
  37747. bottom: 56/810
  37748. }
  37749. },
  37750. },
  37751. [
  37752. {
  37753. name: "Normal",
  37754. height: math.unit(6 + 6/12, "feet"),
  37755. default: true
  37756. },
  37757. ]
  37758. ))
  37759. characterMakers.push(() => makeCharacter(
  37760. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37761. {
  37762. front: {
  37763. height: math.unit(15, "feet"),
  37764. name: "Front",
  37765. image: {
  37766. source: "./media/characters/rojas/front.svg",
  37767. extra: 1462/1408,
  37768. bottom: 95/1557
  37769. }
  37770. },
  37771. back: {
  37772. height: math.unit(15, "feet"),
  37773. name: "Back",
  37774. image: {
  37775. source: "./media/characters/rojas/back.svg",
  37776. extra: 1023/954,
  37777. bottom: 28/1051
  37778. }
  37779. },
  37780. },
  37781. [
  37782. {
  37783. name: "Normal",
  37784. height: math.unit(15, "feet"),
  37785. default: true
  37786. },
  37787. ]
  37788. ))
  37789. characterMakers.push(() => makeCharacter(
  37790. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37791. {
  37792. frontHuman: {
  37793. height: math.unit(5 + 7/12, "feet"),
  37794. name: "Front (Human)",
  37795. image: {
  37796. source: "./media/characters/alek-dryagan/front-human.svg",
  37797. extra: 1687/1667,
  37798. bottom: 69/1756
  37799. }
  37800. },
  37801. backHuman: {
  37802. height: math.unit(5 + 7/12, "feet"),
  37803. name: "Back (Human)",
  37804. image: {
  37805. source: "./media/characters/alek-dryagan/back-human.svg",
  37806. extra: 1670/1649,
  37807. bottom: 65/1735
  37808. }
  37809. },
  37810. frontDemi: {
  37811. height: math.unit(65, "feet"),
  37812. name: "Front (Demi)",
  37813. image: {
  37814. source: "./media/characters/alek-dryagan/front-demi.svg",
  37815. extra: 1669/1642,
  37816. bottom: 49/1718
  37817. }
  37818. },
  37819. backDemi: {
  37820. height: math.unit(65, "feet"),
  37821. name: "Back (Demi)",
  37822. image: {
  37823. source: "./media/characters/alek-dryagan/back-demi.svg",
  37824. extra: 1658/1637,
  37825. bottom: 40/1698
  37826. }
  37827. },
  37828. mawHuman: {
  37829. height: math.unit(0.3, "feet"),
  37830. name: "Maw (Human)",
  37831. image: {
  37832. source: "./media/characters/alek-dryagan/maw-human.svg"
  37833. }
  37834. },
  37835. mawDemi: {
  37836. height: math.unit(3.8, "feet"),
  37837. name: "Maw (Demi)",
  37838. image: {
  37839. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37840. }
  37841. },
  37842. },
  37843. [
  37844. {
  37845. name: "Normal",
  37846. height: math.unit(5 + 7/12, "feet"),
  37847. default: true
  37848. },
  37849. ]
  37850. ))
  37851. characterMakers.push(() => makeCharacter(
  37852. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37853. {
  37854. frontHuman: {
  37855. height: math.unit(5 + 2/12, "feet"),
  37856. name: "Front (Human)",
  37857. image: {
  37858. source: "./media/characters/gen/front-human.svg",
  37859. extra: 1627/1538,
  37860. bottom: 71/1698
  37861. }
  37862. },
  37863. backHuman: {
  37864. height: math.unit(5 + 2/12, "feet"),
  37865. name: "Back (Human)",
  37866. image: {
  37867. source: "./media/characters/gen/back-human.svg",
  37868. extra: 1638/1548,
  37869. bottom: 69/1707
  37870. }
  37871. },
  37872. frontDemi: {
  37873. height: math.unit(5 + 2/12, "feet"),
  37874. name: "Front (Demi)",
  37875. image: {
  37876. source: "./media/characters/gen/front-demi.svg",
  37877. extra: 1627/1538,
  37878. bottom: 71/1698
  37879. }
  37880. },
  37881. backDemi: {
  37882. height: math.unit(5 + 2/12, "feet"),
  37883. name: "Back (Demi)",
  37884. image: {
  37885. source: "./media/characters/gen/back-demi.svg",
  37886. extra: 1638/1548,
  37887. bottom: 69/1707
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(5 + 2/12, "feet"),
  37895. default: true
  37896. },
  37897. ]
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37901. {
  37902. frontImp: {
  37903. height: math.unit(1 + 11/12, "feet"),
  37904. name: "Front (Imp)",
  37905. image: {
  37906. source: "./media/characters/max-kobold/front-imp.svg",
  37907. extra: 1238/1134,
  37908. bottom: 81/1319
  37909. }
  37910. },
  37911. backImp: {
  37912. height: math.unit(1 + 11/12, "feet"),
  37913. name: "Back (Imp)",
  37914. image: {
  37915. source: "./media/characters/max-kobold/back-imp.svg",
  37916. extra: 1334/1175,
  37917. bottom: 34/1368
  37918. }
  37919. },
  37920. frontDemi: {
  37921. height: math.unit(5 + 9/12, "feet"),
  37922. name: "Front (Demi)",
  37923. image: {
  37924. source: "./media/characters/max-kobold/front-demi.svg",
  37925. extra: 1715/1685,
  37926. bottom: 54/1769
  37927. }
  37928. },
  37929. backDemi: {
  37930. height: math.unit(5 + 9/12, "feet"),
  37931. name: "Back (Demi)",
  37932. image: {
  37933. source: "./media/characters/max-kobold/back-demi.svg",
  37934. extra: 1752/1729,
  37935. bottom: 41/1793
  37936. }
  37937. },
  37938. handImp: {
  37939. height: math.unit(0.45, "feet"),
  37940. name: "Hand (Imp)",
  37941. image: {
  37942. source: "./media/characters/max-kobold/hand.svg"
  37943. }
  37944. },
  37945. pawImp: {
  37946. height: math.unit(0.46, "feet"),
  37947. name: "Paw (Imp)",
  37948. image: {
  37949. source: "./media/characters/max-kobold/paw.svg"
  37950. }
  37951. },
  37952. handDemi: {
  37953. height: math.unit(0.80, "feet"),
  37954. name: "Hand (Demi)",
  37955. image: {
  37956. source: "./media/characters/max-kobold/hand.svg"
  37957. }
  37958. },
  37959. pawDemi: {
  37960. height: math.unit(1.1, "feet"),
  37961. name: "Paw (Demi)",
  37962. image: {
  37963. source: "./media/characters/max-kobold/paw.svg"
  37964. }
  37965. },
  37966. headImp: {
  37967. height: math.unit(1.33, "feet"),
  37968. name: "Head (Imp)",
  37969. image: {
  37970. source: "./media/characters/max-kobold/head-imp.svg"
  37971. }
  37972. },
  37973. mawImp: {
  37974. height: math.unit(0.75, "feet"),
  37975. name: "Maw (Imp)",
  37976. image: {
  37977. source: "./media/characters/max-kobold/maw-imp.svg"
  37978. }
  37979. },
  37980. mawDemi: {
  37981. height: math.unit(0.42, "feet"),
  37982. name: "Maw (Demi)",
  37983. image: {
  37984. source: "./media/characters/max-kobold/maw-demi.svg"
  37985. }
  37986. },
  37987. },
  37988. [
  37989. {
  37990. name: "Normal",
  37991. height: math.unit(1 + 11/12, "feet"),
  37992. default: true
  37993. },
  37994. ]
  37995. ))
  37996. characterMakers.push(() => makeCharacter(
  37997. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37998. {
  37999. front: {
  38000. height: math.unit(7 + 5/12, "feet"),
  38001. name: "Front",
  38002. image: {
  38003. source: "./media/characters/carbon/front.svg",
  38004. extra: 1754/1689,
  38005. bottom: 65/1819
  38006. }
  38007. },
  38008. back: {
  38009. height: math.unit(7 + 5/12, "feet"),
  38010. name: "Back",
  38011. image: {
  38012. source: "./media/characters/carbon/back.svg",
  38013. extra: 1762/1695,
  38014. bottom: 24/1786
  38015. }
  38016. },
  38017. frontGigantamax: {
  38018. height: math.unit(150, "feet"),
  38019. name: "Front (Gigantamax)",
  38020. image: {
  38021. source: "./media/characters/carbon/front-gigantamax.svg",
  38022. extra: 1826/1669,
  38023. bottom: 59/1885
  38024. }
  38025. },
  38026. backGigantamax: {
  38027. height: math.unit(150, "feet"),
  38028. name: "Back (Gigantamax)",
  38029. image: {
  38030. source: "./media/characters/carbon/back-gigantamax.svg",
  38031. extra: 1796/1653,
  38032. bottom: 53/1849
  38033. }
  38034. },
  38035. maw: {
  38036. height: math.unit(0.48, "feet"),
  38037. name: "Maw",
  38038. image: {
  38039. source: "./media/characters/carbon/maw.svg"
  38040. }
  38041. },
  38042. mawGigantamax: {
  38043. height: math.unit(7.5, "feet"),
  38044. name: "Maw (Gigantamax)",
  38045. image: {
  38046. source: "./media/characters/carbon/maw-gigantamax.svg"
  38047. }
  38048. },
  38049. },
  38050. [
  38051. {
  38052. name: "Normal",
  38053. height: math.unit(7 + 5/12, "feet"),
  38054. default: true
  38055. },
  38056. ]
  38057. ))
  38058. characterMakers.push(() => makeCharacter(
  38059. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38060. {
  38061. front: {
  38062. height: math.unit(6, "feet"),
  38063. name: "Front",
  38064. image: {
  38065. source: "./media/characters/maverick/front.svg",
  38066. extra: 1672/1661,
  38067. bottom: 85/1757
  38068. }
  38069. },
  38070. back: {
  38071. height: math.unit(6, "feet"),
  38072. name: "Back",
  38073. image: {
  38074. source: "./media/characters/maverick/back.svg",
  38075. extra: 1642/1631,
  38076. bottom: 38/1680
  38077. }
  38078. },
  38079. },
  38080. [
  38081. {
  38082. name: "Normal",
  38083. height: math.unit(6, "feet"),
  38084. default: true
  38085. },
  38086. ]
  38087. ))
  38088. characterMakers.push(() => makeCharacter(
  38089. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38090. {
  38091. front: {
  38092. height: math.unit(15, "feet"),
  38093. weight: math.unit(615, "lb"),
  38094. name: "Front",
  38095. image: {
  38096. source: "./media/characters/grockle/front.svg",
  38097. extra: 1535/1427,
  38098. bottom: 56/1591
  38099. }
  38100. },
  38101. },
  38102. [
  38103. {
  38104. name: "Normal",
  38105. height: math.unit(15, "feet"),
  38106. default: true
  38107. },
  38108. {
  38109. name: "Large",
  38110. height: math.unit(150, "feet")
  38111. },
  38112. {
  38113. name: "Macro",
  38114. height: math.unit(1876, "feet")
  38115. },
  38116. {
  38117. name: "Mega Macro",
  38118. height: math.unit(121940, "feet")
  38119. },
  38120. {
  38121. name: "Giga Macro",
  38122. height: math.unit(750, "km")
  38123. },
  38124. {
  38125. name: "Tera Macro",
  38126. height: math.unit(750000, "km")
  38127. },
  38128. {
  38129. name: "Galactic",
  38130. height: math.unit(1.4e5, "km")
  38131. },
  38132. {
  38133. name: "Godlike",
  38134. height: math.unit(9.8e280, "galaxies")
  38135. },
  38136. ]
  38137. ))
  38138. characterMakers.push(() => makeCharacter(
  38139. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38140. {
  38141. front: {
  38142. height: math.unit(11, "meters"),
  38143. weight: math.unit(20, "tonnes"),
  38144. name: "Front",
  38145. image: {
  38146. source: "./media/characters/alistair/front.svg",
  38147. extra: 1265/1009,
  38148. bottom: 93/1358
  38149. }
  38150. },
  38151. },
  38152. [
  38153. {
  38154. name: "Normal",
  38155. height: math.unit(11, "meters"),
  38156. default: true
  38157. },
  38158. ]
  38159. ))
  38160. characterMakers.push(() => makeCharacter(
  38161. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38162. {
  38163. front: {
  38164. height: math.unit(5 + 8/12, "feet"),
  38165. name: "Front",
  38166. image: {
  38167. source: "./media/characters/haruka/front.svg",
  38168. extra: 2012/1952,
  38169. bottom: 0/2012
  38170. }
  38171. },
  38172. },
  38173. [
  38174. {
  38175. name: "Normal",
  38176. height: math.unit(5 + 8/12, "feet"),
  38177. default: true
  38178. },
  38179. ]
  38180. ))
  38181. characterMakers.push(() => makeCharacter(
  38182. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38183. {
  38184. back: {
  38185. height: math.unit(9, "feet"),
  38186. name: "Back",
  38187. image: {
  38188. source: "./media/characters/vivian-sylveon/back.svg",
  38189. extra: 1853/1714,
  38190. bottom: 0/1853
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Normal",
  38197. height: math.unit(9, "feet"),
  38198. default: true
  38199. },
  38200. {
  38201. name: "Macro",
  38202. height: math.unit(500, "feet")
  38203. },
  38204. {
  38205. name: "Megamacro",
  38206. height: math.unit(600, "miles")
  38207. },
  38208. {
  38209. name: "Gigamacro",
  38210. height: math.unit(30000, "miles")
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38216. {
  38217. anthro: {
  38218. height: math.unit(5 + 10/12, "feet"),
  38219. weight: math.unit(100, "lb"),
  38220. name: "Anthro",
  38221. image: {
  38222. source: "./media/characters/daiki/anthro.svg",
  38223. extra: 1115/1027,
  38224. bottom: 69/1184
  38225. }
  38226. },
  38227. feral: {
  38228. height: math.unit(200, "feet"),
  38229. name: "Feral",
  38230. image: {
  38231. source: "./media/characters/daiki/feral.svg",
  38232. extra: 1256/313,
  38233. bottom: 39/1295
  38234. }
  38235. },
  38236. feralHead: {
  38237. height: math.unit(171, "feet"),
  38238. name: "Feral Head",
  38239. image: {
  38240. source: "./media/characters/daiki/feral-head.svg"
  38241. }
  38242. },
  38243. manaDragon: {
  38244. height: math.unit(170, "meters"),
  38245. name: "Mana-dragon",
  38246. image: {
  38247. source: "./media/characters/daiki/mana-dragon.svg",
  38248. extra: 763/420,
  38249. bottom: 97/860
  38250. }
  38251. },
  38252. },
  38253. [
  38254. {
  38255. name: "Normal",
  38256. height: math.unit(5 + 10/12, "feet"),
  38257. default: true
  38258. },
  38259. ]
  38260. ))
  38261. characterMakers.push(() => makeCharacter(
  38262. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38263. {
  38264. fullyEquippedFront: {
  38265. height: math.unit(3 + 1/12, "feet"),
  38266. weight: math.unit(24, "lb"),
  38267. name: "Fully Equipped (Front)",
  38268. image: {
  38269. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38270. extra: 687/605,
  38271. bottom: 18/705
  38272. }
  38273. },
  38274. fullyEquippedBack: {
  38275. height: math.unit(3 + 1/12, "feet"),
  38276. weight: math.unit(24, "lb"),
  38277. name: "Fully Equipped (Back)",
  38278. image: {
  38279. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38280. extra: 689/590,
  38281. bottom: 18/707
  38282. }
  38283. },
  38284. dailyWear: {
  38285. height: math.unit(3 + 1/12, "feet"),
  38286. weight: math.unit(24, "lb"),
  38287. name: "Daily Wear",
  38288. image: {
  38289. source: "./media/characters/tea-spot/daily-wear.svg",
  38290. extra: 701/620,
  38291. bottom: 21/722
  38292. }
  38293. },
  38294. maidWork: {
  38295. height: math.unit(3 + 1/12, "feet"),
  38296. weight: math.unit(24, "lb"),
  38297. name: "Maid Work",
  38298. image: {
  38299. source: "./media/characters/tea-spot/maid-work.svg",
  38300. extra: 693/609,
  38301. bottom: 15/708
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(3 + 1/12, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38315. {
  38316. front: {
  38317. height: math.unit(175, "cm"),
  38318. weight: math.unit(75, "kg"),
  38319. name: "Front",
  38320. image: {
  38321. source: "./media/characters/chee/front.svg",
  38322. extra: 1796/1740,
  38323. bottom: 40/1836
  38324. }
  38325. },
  38326. },
  38327. [
  38328. {
  38329. name: "Micro-Micro",
  38330. height: math.unit(1, "nm")
  38331. },
  38332. {
  38333. name: "Micro-erst",
  38334. height: math.unit(1, "micrometer")
  38335. },
  38336. {
  38337. name: "Micro-er",
  38338. height: math.unit(1, "cm")
  38339. },
  38340. {
  38341. name: "Normal",
  38342. height: math.unit(175, "cm"),
  38343. default: true
  38344. },
  38345. {
  38346. name: "Macro",
  38347. height: math.unit(100, "m")
  38348. },
  38349. {
  38350. name: "Macro-er",
  38351. height: math.unit(1, "km")
  38352. },
  38353. {
  38354. name: "Macro-erst",
  38355. height: math.unit(10, "km")
  38356. },
  38357. {
  38358. name: "Macro-Macro",
  38359. height: math.unit(100, "km")
  38360. },
  38361. ]
  38362. ))
  38363. characterMakers.push(() => makeCharacter(
  38364. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38365. {
  38366. front: {
  38367. height: math.unit(11 + 9/12, "feet"),
  38368. weight: math.unit(935, "lb"),
  38369. name: "Front",
  38370. image: {
  38371. source: "./media/characters/kingsley/front.svg",
  38372. extra: 1803/1674,
  38373. bottom: 127/1930
  38374. }
  38375. },
  38376. frontNude: {
  38377. height: math.unit(11 + 9/12, "feet"),
  38378. weight: math.unit(935, "lb"),
  38379. name: "Front (Nude)",
  38380. image: {
  38381. source: "./media/characters/kingsley/front-nude.svg",
  38382. extra: 1803/1674,
  38383. bottom: 127/1930
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Normal",
  38390. height: math.unit(11 + 9/12, "feet"),
  38391. default: true
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38397. {
  38398. side: {
  38399. height: math.unit(9, "feet"),
  38400. name: "Side",
  38401. image: {
  38402. source: "./media/characters/rymel/side.svg",
  38403. extra: 792/469,
  38404. bottom: 121/913
  38405. }
  38406. },
  38407. maw: {
  38408. height: math.unit(2.4, "meters"),
  38409. name: "Maw",
  38410. image: {
  38411. source: "./media/characters/rymel/maw.svg"
  38412. }
  38413. },
  38414. },
  38415. [
  38416. {
  38417. name: "House Drake",
  38418. height: math.unit(2, "feet")
  38419. },
  38420. {
  38421. name: "Reduced",
  38422. height: math.unit(4.5, "feet")
  38423. },
  38424. {
  38425. name: "Normal",
  38426. height: math.unit(9, "feet"),
  38427. default: true
  38428. },
  38429. ]
  38430. ))
  38431. characterMakers.push(() => makeCharacter(
  38432. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38433. {
  38434. front: {
  38435. height: math.unit(1.74, "meters"),
  38436. weight: math.unit(55, "kg"),
  38437. name: "Front",
  38438. image: {
  38439. source: "./media/characters/rubus/front.svg",
  38440. extra: 1894/1742,
  38441. bottom: 44/1938
  38442. }
  38443. },
  38444. },
  38445. [
  38446. {
  38447. name: "Normal",
  38448. height: math.unit(1.74, "meters"),
  38449. default: true
  38450. },
  38451. ]
  38452. ))
  38453. characterMakers.push(() => makeCharacter(
  38454. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38455. {
  38456. front: {
  38457. height: math.unit(5 + 2/12, "feet"),
  38458. weight: math.unit(112, "lb"),
  38459. name: "Front",
  38460. image: {
  38461. source: "./media/characters/cassie-kingston/front.svg",
  38462. extra: 1438/1390,
  38463. bottom: 47/1485
  38464. }
  38465. },
  38466. },
  38467. [
  38468. {
  38469. name: "Normal",
  38470. height: math.unit(5 + 2/12, "feet"),
  38471. default: true
  38472. },
  38473. {
  38474. name: "Macro",
  38475. height: math.unit(128, "feet")
  38476. },
  38477. {
  38478. name: "Megamacro",
  38479. height: math.unit(2.56, "miles")
  38480. },
  38481. ]
  38482. ))
  38483. characterMakers.push(() => makeCharacter(
  38484. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38485. {
  38486. front: {
  38487. height: math.unit(7, "feet"),
  38488. name: "Front",
  38489. image: {
  38490. source: "./media/characters/fox/front.svg",
  38491. extra: 1798/1703,
  38492. bottom: 55/1853
  38493. }
  38494. },
  38495. back: {
  38496. height: math.unit(7, "feet"),
  38497. name: "Back",
  38498. image: {
  38499. source: "./media/characters/fox/back.svg",
  38500. extra: 1748/1649,
  38501. bottom: 32/1780
  38502. }
  38503. },
  38504. head: {
  38505. height: math.unit(1.95, "feet"),
  38506. name: "Head",
  38507. image: {
  38508. source: "./media/characters/fox/head.svg"
  38509. }
  38510. },
  38511. dick: {
  38512. height: math.unit(1.33, "feet"),
  38513. name: "Dick",
  38514. image: {
  38515. source: "./media/characters/fox/dick.svg"
  38516. }
  38517. },
  38518. foot: {
  38519. height: math.unit(1, "feet"),
  38520. name: "Foot",
  38521. image: {
  38522. source: "./media/characters/fox/foot.svg"
  38523. }
  38524. },
  38525. paw: {
  38526. height: math.unit(0.92, "feet"),
  38527. name: "Paw",
  38528. image: {
  38529. source: "./media/characters/fox/paw.svg"
  38530. }
  38531. },
  38532. },
  38533. [
  38534. {
  38535. name: "Small",
  38536. height: math.unit(3, "inches")
  38537. },
  38538. {
  38539. name: "\"Realistic\"",
  38540. height: math.unit(7, "feet")
  38541. },
  38542. {
  38543. name: "Normal",
  38544. height: math.unit(150, "feet"),
  38545. default: true
  38546. },
  38547. {
  38548. name: "BIG",
  38549. height: math.unit(1200, "feet")
  38550. },
  38551. {
  38552. name: "👀",
  38553. height: math.unit(5, "miles")
  38554. },
  38555. {
  38556. name: "👀👀👀",
  38557. height: math.unit(64, "miles")
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(625, "feet"),
  38566. name: "Front",
  38567. image: {
  38568. source: "./media/characters/asonja-rossa/front.svg",
  38569. extra: 1833/1686,
  38570. bottom: 24/1857
  38571. }
  38572. },
  38573. back: {
  38574. height: math.unit(625, "feet"),
  38575. name: "Back",
  38576. image: {
  38577. source: "./media/characters/asonja-rossa/back.svg",
  38578. extra: 1852/1753,
  38579. bottom: 26/1878
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Macro",
  38586. height: math.unit(625, "feet"),
  38587. default: true
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38593. {
  38594. side: {
  38595. height: math.unit(8, "feet"),
  38596. name: "Side",
  38597. image: {
  38598. source: "./media/characters/rezukii/side.svg",
  38599. extra: 979/542,
  38600. bottom: 87/1066
  38601. }
  38602. },
  38603. sitting: {
  38604. height: math.unit(14.6, "feet"),
  38605. name: "Sitting",
  38606. image: {
  38607. source: "./media/characters/rezukii/sitting.svg",
  38608. extra: 1023/813,
  38609. bottom: 45/1068
  38610. }
  38611. },
  38612. },
  38613. [
  38614. {
  38615. name: "Tiny",
  38616. height: math.unit(2, "feet")
  38617. },
  38618. {
  38619. name: "Smol",
  38620. height: math.unit(4, "feet")
  38621. },
  38622. {
  38623. name: "Normal",
  38624. height: math.unit(8, "feet"),
  38625. default: true
  38626. },
  38627. {
  38628. name: "Big",
  38629. height: math.unit(12, "feet")
  38630. },
  38631. {
  38632. name: "Macro",
  38633. height: math.unit(30, "feet")
  38634. },
  38635. ]
  38636. ))
  38637. characterMakers.push(() => makeCharacter(
  38638. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38639. {
  38640. front: {
  38641. height: math.unit(14, "feet"),
  38642. weight: math.unit(9.5, "tonnes"),
  38643. name: "Front",
  38644. image: {
  38645. source: "./media/characters/dawnheart/front.svg",
  38646. extra: 2792/2675,
  38647. bottom: 64/2856
  38648. }
  38649. },
  38650. },
  38651. [
  38652. {
  38653. name: "Normal",
  38654. height: math.unit(14, "feet"),
  38655. default: true
  38656. },
  38657. ]
  38658. ))
  38659. characterMakers.push(() => makeCharacter(
  38660. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38661. {
  38662. front: {
  38663. height: math.unit(1.7, "m"),
  38664. name: "Front",
  38665. image: {
  38666. source: "./media/characters/gladi/front.svg",
  38667. extra: 1460/1362,
  38668. bottom: 19/1479
  38669. }
  38670. },
  38671. back: {
  38672. height: math.unit(1.7, "m"),
  38673. name: "Back",
  38674. image: {
  38675. source: "./media/characters/gladi/back.svg",
  38676. extra: 1459/1357,
  38677. bottom: 12/1471
  38678. }
  38679. },
  38680. feral: {
  38681. height: math.unit(2.05, "m"),
  38682. name: "Feral",
  38683. image: {
  38684. source: "./media/characters/gladi/feral.svg",
  38685. extra: 821/557,
  38686. bottom: 91/912
  38687. }
  38688. },
  38689. },
  38690. [
  38691. {
  38692. name: "Shortest",
  38693. height: math.unit(70, "cm")
  38694. },
  38695. {
  38696. name: "Normal",
  38697. height: math.unit(1.7, "m")
  38698. },
  38699. {
  38700. name: "Macro",
  38701. height: math.unit(10, "m"),
  38702. default: true
  38703. },
  38704. {
  38705. name: "Tallest",
  38706. height: math.unit(200, "m")
  38707. },
  38708. ]
  38709. ))
  38710. characterMakers.push(() => makeCharacter(
  38711. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38712. {
  38713. front: {
  38714. height: math.unit(5 + 7/12, "feet"),
  38715. weight: math.unit(2, "tons"),
  38716. name: "Front",
  38717. image: {
  38718. source: "./media/characters/erdno/front.svg",
  38719. extra: 1234/1129,
  38720. bottom: 35/1269
  38721. }
  38722. },
  38723. angled: {
  38724. height: math.unit(5 + 7/12, "feet"),
  38725. weight: math.unit(2, "tons"),
  38726. name: "Angled",
  38727. image: {
  38728. source: "./media/characters/erdno/angled.svg",
  38729. extra: 1185/1139,
  38730. bottom: 36/1221
  38731. }
  38732. },
  38733. side: {
  38734. height: math.unit(5 + 7/12, "feet"),
  38735. weight: math.unit(2, "tons"),
  38736. name: "Side",
  38737. image: {
  38738. source: "./media/characters/erdno/side.svg",
  38739. extra: 1191/1144,
  38740. bottom: 40/1231
  38741. }
  38742. },
  38743. back: {
  38744. height: math.unit(5 + 7/12, "feet"),
  38745. weight: math.unit(2, "tons"),
  38746. name: "Back",
  38747. image: {
  38748. source: "./media/characters/erdno/back.svg",
  38749. extra: 1202/1146,
  38750. bottom: 17/1219
  38751. }
  38752. },
  38753. frontNsfw: {
  38754. height: math.unit(5 + 7/12, "feet"),
  38755. weight: math.unit(2, "tons"),
  38756. name: "Front (NSFW)",
  38757. image: {
  38758. source: "./media/characters/erdno/front-nsfw.svg",
  38759. extra: 1234/1129,
  38760. bottom: 35/1269
  38761. }
  38762. },
  38763. angledNsfw: {
  38764. height: math.unit(5 + 7/12, "feet"),
  38765. weight: math.unit(2, "tons"),
  38766. name: "Angled (NSFW)",
  38767. image: {
  38768. source: "./media/characters/erdno/angled-nsfw.svg",
  38769. extra: 1185/1139,
  38770. bottom: 36/1221
  38771. }
  38772. },
  38773. sideNsfw: {
  38774. height: math.unit(5 + 7/12, "feet"),
  38775. weight: math.unit(2, "tons"),
  38776. name: "Side (NSFW)",
  38777. image: {
  38778. source: "./media/characters/erdno/side-nsfw.svg",
  38779. extra: 1191/1144,
  38780. bottom: 40/1231
  38781. }
  38782. },
  38783. backNsfw: {
  38784. height: math.unit(5 + 7/12, "feet"),
  38785. weight: math.unit(2, "tons"),
  38786. name: "Back (NSFW)",
  38787. image: {
  38788. source: "./media/characters/erdno/back-nsfw.svg",
  38789. extra: 1202/1146,
  38790. bottom: 17/1219
  38791. }
  38792. },
  38793. frontHyper: {
  38794. height: math.unit(5 + 7/12, "feet"),
  38795. weight: math.unit(2, "tons"),
  38796. name: "Front (Hyper)",
  38797. image: {
  38798. source: "./media/characters/erdno/front-hyper.svg",
  38799. extra: 1298/1136,
  38800. bottom: 35/1333
  38801. }
  38802. },
  38803. },
  38804. [
  38805. {
  38806. name: "Normal",
  38807. height: math.unit(5 + 7/12, "feet"),
  38808. default: true
  38809. },
  38810. {
  38811. name: "Big",
  38812. height: math.unit(5.7, "meters")
  38813. },
  38814. {
  38815. name: "Macro",
  38816. height: math.unit(5.7, "kilometers")
  38817. },
  38818. {
  38819. name: "Megamacro",
  38820. height: math.unit(5.7, "earths")
  38821. },
  38822. ]
  38823. ))
  38824. characterMakers.push(() => makeCharacter(
  38825. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38826. {
  38827. front: {
  38828. height: math.unit(5 + 10/12, "feet"),
  38829. weight: math.unit(150, "lb"),
  38830. name: "Front",
  38831. image: {
  38832. source: "./media/characters/jamie/front.svg",
  38833. extra: 1908/1768,
  38834. bottom: 19/1927
  38835. }
  38836. },
  38837. },
  38838. [
  38839. {
  38840. name: "Minimum",
  38841. height: math.unit(2, "cm")
  38842. },
  38843. {
  38844. name: "Micro",
  38845. height: math.unit(3, "inches")
  38846. },
  38847. {
  38848. name: "Normal",
  38849. height: math.unit(5 + 10/12, "feet"),
  38850. default: true
  38851. },
  38852. {
  38853. name: "Macro",
  38854. height: math.unit(150, "feet")
  38855. },
  38856. {
  38857. name: "Megamacro",
  38858. height: math.unit(10000, "m")
  38859. },
  38860. ]
  38861. ))
  38862. characterMakers.push(() => makeCharacter(
  38863. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38864. {
  38865. front: {
  38866. height: math.unit(2, "meters"),
  38867. weight: math.unit(100, "kg"),
  38868. name: "Front",
  38869. image: {
  38870. source: "./media/characters/shiron/front.svg",
  38871. extra: 2103/1985,
  38872. bottom: 98/2201
  38873. }
  38874. },
  38875. back: {
  38876. height: math.unit(2, "meters"),
  38877. weight: math.unit(100, "kg"),
  38878. name: "Back",
  38879. image: {
  38880. source: "./media/characters/shiron/back.svg",
  38881. extra: 2110/2015,
  38882. bottom: 89/2199
  38883. }
  38884. },
  38885. hand: {
  38886. height: math.unit(0.96, "feet"),
  38887. name: "Hand",
  38888. image: {
  38889. source: "./media/characters/shiron/hand.svg"
  38890. }
  38891. },
  38892. foot: {
  38893. height: math.unit(1.464, "feet"),
  38894. name: "Foot",
  38895. image: {
  38896. source: "./media/characters/shiron/foot.svg"
  38897. }
  38898. },
  38899. },
  38900. [
  38901. {
  38902. name: "Normal",
  38903. height: math.unit(2, "meters")
  38904. },
  38905. {
  38906. name: "Macro",
  38907. height: math.unit(500, "meters"),
  38908. default: true
  38909. },
  38910. {
  38911. name: "Megamacro",
  38912. height: math.unit(20, "km")
  38913. },
  38914. ]
  38915. ))
  38916. characterMakers.push(() => makeCharacter(
  38917. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38918. {
  38919. front: {
  38920. height: math.unit(6, "feet"),
  38921. name: "Front",
  38922. image: {
  38923. source: "./media/characters/sam/front.svg",
  38924. extra: 849/826,
  38925. bottom: 19/868
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Normal",
  38932. height: math.unit(6, "feet"),
  38933. default: true
  38934. },
  38935. ]
  38936. ))
  38937. characterMakers.push(() => makeCharacter(
  38938. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38939. {
  38940. front: {
  38941. height: math.unit(8 + 4/12, "feet"),
  38942. weight: math.unit(122, "kg"),
  38943. name: "Front",
  38944. image: {
  38945. source: "./media/characters/namori-kurogawa/front.svg",
  38946. extra: 1894/1576,
  38947. bottom: 34/1928
  38948. }
  38949. },
  38950. },
  38951. [
  38952. {
  38953. name: "Normal",
  38954. height: math.unit(8 + 4/12, "feet"),
  38955. default: true
  38956. },
  38957. ]
  38958. ))
  38959. characterMakers.push(() => makeCharacter(
  38960. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38961. {
  38962. front: {
  38963. height: math.unit(9, "feet"),
  38964. weight: math.unit(621, "lb"),
  38965. name: "Front",
  38966. image: {
  38967. source: "./media/characters/unmru/front.svg",
  38968. extra: 1853/1747,
  38969. bottom: 73/1926
  38970. }
  38971. },
  38972. side: {
  38973. height: math.unit(9, "feet"),
  38974. weight: math.unit(621, "lb"),
  38975. name: "Side",
  38976. image: {
  38977. source: "./media/characters/unmru/side.svg",
  38978. extra: 1781/1671,
  38979. bottom: 127/1908
  38980. }
  38981. },
  38982. back: {
  38983. height: math.unit(9, "feet"),
  38984. weight: math.unit(621, "lb"),
  38985. name: "Back",
  38986. image: {
  38987. source: "./media/characters/unmru/back.svg",
  38988. extra: 1894/1765,
  38989. bottom: 75/1969
  38990. }
  38991. },
  38992. dick: {
  38993. height: math.unit(3, "feet"),
  38994. weight: math.unit(35, "lb"),
  38995. name: "Dick",
  38996. image: {
  38997. source: "./media/characters/unmru/dick.svg"
  38998. }
  38999. },
  39000. },
  39001. [
  39002. {
  39003. name: "Normal",
  39004. height: math.unit(9, "feet")
  39005. },
  39006. {
  39007. name: "Natural",
  39008. height: math.unit(27, "feet"),
  39009. default: true
  39010. },
  39011. {
  39012. name: "Giant",
  39013. height: math.unit(90, "feet")
  39014. },
  39015. {
  39016. name: "Kaiju",
  39017. height: math.unit(270, "feet")
  39018. },
  39019. {
  39020. name: "Macro",
  39021. height: math.unit(900, "feet")
  39022. },
  39023. {
  39024. name: "Macro+",
  39025. height: math.unit(2700, "feet")
  39026. },
  39027. {
  39028. name: "Megamacro",
  39029. height: math.unit(9000, "feet")
  39030. },
  39031. {
  39032. name: "City-Crushing",
  39033. height: math.unit(27000, "feet")
  39034. },
  39035. {
  39036. name: "Mountain-Mashing",
  39037. height: math.unit(90000, "feet")
  39038. },
  39039. {
  39040. name: "Earth-Eclipsing",
  39041. height: math.unit(2.7e8, "feet")
  39042. },
  39043. {
  39044. name: "Sol-Swallowing",
  39045. height: math.unit(9e10, "feet")
  39046. },
  39047. {
  39048. name: "Majoris-Munching",
  39049. height: math.unit(2.7e13, "feet")
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39055. {
  39056. front: {
  39057. height: math.unit(1, "inch"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/squeaks-mouse/front.svg",
  39061. extra: 352/308,
  39062. bottom: 25/377
  39063. }
  39064. },
  39065. },
  39066. [
  39067. {
  39068. name: "Micro",
  39069. height: math.unit(1, "inch"),
  39070. default: true
  39071. },
  39072. ]
  39073. ))
  39074. characterMakers.push(() => makeCharacter(
  39075. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39076. {
  39077. side: {
  39078. height: math.unit(35, "feet"),
  39079. name: "Side",
  39080. image: {
  39081. source: "./media/characters/sayko/side.svg",
  39082. extra: 1697/1021,
  39083. bottom: 82/1779
  39084. }
  39085. },
  39086. head: {
  39087. height: math.unit(16, "feet"),
  39088. name: "Head",
  39089. image: {
  39090. source: "./media/characters/sayko/head.svg"
  39091. }
  39092. },
  39093. forepaw: {
  39094. height: math.unit(7.85, "feet"),
  39095. name: "Forepaw",
  39096. image: {
  39097. source: "./media/characters/sayko/forepaw.svg"
  39098. }
  39099. },
  39100. hindpaw: {
  39101. height: math.unit(8.8, "feet"),
  39102. name: "Hindpaw",
  39103. image: {
  39104. source: "./media/characters/sayko/hindpaw.svg"
  39105. }
  39106. },
  39107. },
  39108. [
  39109. {
  39110. name: "Normal",
  39111. height: math.unit(35, "feet"),
  39112. default: true
  39113. },
  39114. {
  39115. name: "Colossus",
  39116. height: math.unit(100, "meters")
  39117. },
  39118. {
  39119. name: "\"Small\" Deity",
  39120. height: math.unit(1, "km")
  39121. },
  39122. {
  39123. name: "\"Large\" Deity",
  39124. height: math.unit(15, "km")
  39125. },
  39126. ]
  39127. ))
  39128. characterMakers.push(() => makeCharacter(
  39129. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39130. {
  39131. front: {
  39132. height: math.unit(6, "feet"),
  39133. weight: math.unit(250, "lb"),
  39134. name: "Front",
  39135. image: {
  39136. source: "./media/characters/mukiro/front.svg",
  39137. extra: 1368/1310,
  39138. bottom: 34/1402
  39139. }
  39140. },
  39141. },
  39142. [
  39143. {
  39144. name: "Normal",
  39145. height: math.unit(6, "feet"),
  39146. default: true
  39147. },
  39148. ]
  39149. ))
  39150. characterMakers.push(() => makeCharacter(
  39151. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39152. {
  39153. front: {
  39154. height: math.unit(12 + 4/12, "feet"),
  39155. name: "Front",
  39156. image: {
  39157. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39158. extra: 1346/1311,
  39159. bottom: 65/1411
  39160. }
  39161. },
  39162. },
  39163. [
  39164. {
  39165. name: "Base",
  39166. height: math.unit(12 + 4/12, "feet"),
  39167. default: true
  39168. },
  39169. {
  39170. name: "Macro",
  39171. height: math.unit(150, "feet")
  39172. },
  39173. {
  39174. name: "Mega",
  39175. height: math.unit(2, "miles")
  39176. },
  39177. {
  39178. name: "Demi God",
  39179. height: math.unit(4, "AU")
  39180. },
  39181. {
  39182. name: "God Size",
  39183. height: math.unit(1, "universe")
  39184. },
  39185. ]
  39186. ))
  39187. characterMakers.push(() => makeCharacter(
  39188. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39189. {
  39190. front: {
  39191. height: math.unit(3 + 3/12, "feet"),
  39192. weight: math.unit(88, "lb"),
  39193. name: "Front",
  39194. image: {
  39195. source: "./media/characters/trey/front.svg",
  39196. extra: 1815/1509,
  39197. bottom: 60/1875
  39198. }
  39199. },
  39200. },
  39201. [
  39202. {
  39203. name: "Normal",
  39204. height: math.unit(3 + 3/12, "feet"),
  39205. default: true
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39211. {
  39212. front: {
  39213. height: math.unit(4, "meters"),
  39214. name: "Front",
  39215. image: {
  39216. source: "./media/characters/adelonda/front.svg",
  39217. extra: 1077/982,
  39218. bottom: 39/1116
  39219. }
  39220. },
  39221. back: {
  39222. height: math.unit(4, "meters"),
  39223. name: "Back",
  39224. image: {
  39225. source: "./media/characters/adelonda/back.svg",
  39226. extra: 1105/1003,
  39227. bottom: 25/1130
  39228. }
  39229. },
  39230. feral: {
  39231. height: math.unit(40/1.5, "meters"),
  39232. name: "Feral",
  39233. image: {
  39234. source: "./media/characters/adelonda/feral.svg",
  39235. extra: 597/271,
  39236. bottom: 387/984
  39237. }
  39238. },
  39239. },
  39240. [
  39241. {
  39242. name: "Normal",
  39243. height: math.unit(4, "meters"),
  39244. default: true
  39245. },
  39246. ]
  39247. ))
  39248. characterMakers.push(() => makeCharacter(
  39249. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39250. {
  39251. front: {
  39252. height: math.unit(8 + 4/12, "feet"),
  39253. weight: math.unit(670, "lb"),
  39254. name: "Front",
  39255. image: {
  39256. source: "./media/characters/acadiel/front.svg",
  39257. extra: 1901/1595,
  39258. bottom: 142/2043
  39259. }
  39260. },
  39261. },
  39262. [
  39263. {
  39264. name: "Normal",
  39265. height: math.unit(8 + 4/12, "feet"),
  39266. default: true
  39267. },
  39268. {
  39269. name: "Macro",
  39270. height: math.unit(200, "feet")
  39271. },
  39272. ]
  39273. ))
  39274. characterMakers.push(() => makeCharacter(
  39275. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39276. {
  39277. front: {
  39278. height: math.unit(6 + 2/12, "feet"),
  39279. weight: math.unit(185, "lb"),
  39280. name: "Front",
  39281. image: {
  39282. source: "./media/characters/kayne-ein/front.svg",
  39283. extra: 1780/1560,
  39284. bottom: 81/1861
  39285. }
  39286. },
  39287. },
  39288. [
  39289. {
  39290. name: "Normal",
  39291. height: math.unit(6 + 2/12, "feet"),
  39292. default: true
  39293. },
  39294. {
  39295. name: "Transformation Stage",
  39296. height: math.unit(15, "feet")
  39297. },
  39298. {
  39299. name: "Macro",
  39300. height: math.unit(150, "feet")
  39301. },
  39302. {
  39303. name: "Earth's Shadow",
  39304. height: math.unit(6200, "miles")
  39305. },
  39306. {
  39307. name: "Universal Demon",
  39308. height: math.unit(28e9, "parsecs")
  39309. },
  39310. {
  39311. name: "Multiverse God",
  39312. height: math.unit(3, "multiverses")
  39313. },
  39314. ]
  39315. ))
  39316. characterMakers.push(() => makeCharacter(
  39317. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39318. {
  39319. front: {
  39320. height: math.unit(5 + 5/12, "feet"),
  39321. name: "Front",
  39322. image: {
  39323. source: "./media/characters/fawn/front.svg",
  39324. extra: 1873/1731,
  39325. bottom: 95/1968
  39326. }
  39327. },
  39328. back: {
  39329. height: math.unit(5 + 5/12, "feet"),
  39330. name: "Back",
  39331. image: {
  39332. source: "./media/characters/fawn/back.svg",
  39333. extra: 1813/1700,
  39334. bottom: 14/1827
  39335. }
  39336. },
  39337. hoof: {
  39338. height: math.unit(1.45, "feet"),
  39339. name: "Hoof",
  39340. image: {
  39341. source: "./media/characters/fawn/hoof.svg"
  39342. }
  39343. },
  39344. },
  39345. [
  39346. {
  39347. name: "Normal",
  39348. height: math.unit(5 + 5/12, "feet"),
  39349. default: true
  39350. },
  39351. ]
  39352. ))
  39353. characterMakers.push(() => makeCharacter(
  39354. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39355. {
  39356. front: {
  39357. height: math.unit(2 + 5/12, "feet"),
  39358. name: "Front",
  39359. image: {
  39360. source: "./media/characters/orion/front.svg",
  39361. extra: 1366/1304,
  39362. bottom: 43/1409
  39363. }
  39364. },
  39365. paw: {
  39366. height: math.unit(0.52, "feet"),
  39367. name: "Paw",
  39368. image: {
  39369. source: "./media/characters/orion/paw.svg"
  39370. }
  39371. },
  39372. },
  39373. [
  39374. {
  39375. name: "Normal",
  39376. height: math.unit(2 + 5/12, "feet"),
  39377. default: true
  39378. },
  39379. ]
  39380. ))
  39381. characterMakers.push(() => makeCharacter(
  39382. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39383. {
  39384. front: {
  39385. height: math.unit(5 + 10/12, "feet"),
  39386. name: "Front",
  39387. image: {
  39388. source: "./media/characters/vera/front.svg",
  39389. extra: 1680/1575,
  39390. bottom: 49/1729
  39391. }
  39392. },
  39393. back: {
  39394. height: math.unit(5 + 10/12, "feet"),
  39395. name: "Back",
  39396. image: {
  39397. source: "./media/characters/vera/back.svg",
  39398. extra: 1700/1588,
  39399. bottom: 18/1718
  39400. }
  39401. },
  39402. arcanine: {
  39403. height: math.unit(6 + 8/12, "feet"),
  39404. name: "Arcanine",
  39405. image: {
  39406. source: "./media/characters/vera/arcanine.svg",
  39407. extra: 1590/1511,
  39408. bottom: 71/1661
  39409. }
  39410. },
  39411. maw: {
  39412. height: math.unit(0.82, "feet"),
  39413. name: "Maw",
  39414. image: {
  39415. source: "./media/characters/vera/maw.svg"
  39416. }
  39417. },
  39418. mawArcanine: {
  39419. height: math.unit(0.97, "feet"),
  39420. name: "Maw (Arcanine)",
  39421. image: {
  39422. source: "./media/characters/vera/maw-arcanine.svg"
  39423. }
  39424. },
  39425. paw: {
  39426. height: math.unit(0.75, "feet"),
  39427. name: "Paw",
  39428. image: {
  39429. source: "./media/characters/vera/paw.svg"
  39430. }
  39431. },
  39432. pawprint: {
  39433. height: math.unit(0.52, "feet"),
  39434. name: "Pawprint",
  39435. image: {
  39436. source: "./media/characters/vera/pawprint.svg"
  39437. }
  39438. },
  39439. },
  39440. [
  39441. {
  39442. name: "Normal",
  39443. height: math.unit(5 + 10/12, "feet"),
  39444. default: true
  39445. },
  39446. {
  39447. name: "Macro",
  39448. height: math.unit(75, "feet")
  39449. },
  39450. ]
  39451. ))
  39452. characterMakers.push(() => makeCharacter(
  39453. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39454. {
  39455. front: {
  39456. height: math.unit(4, "feet"),
  39457. weight: math.unit(40, "lb"),
  39458. name: "Front",
  39459. image: {
  39460. source: "./media/characters/orvan-rabbit/front.svg",
  39461. extra: 1896/1642,
  39462. bottom: 29/1925
  39463. }
  39464. },
  39465. },
  39466. [
  39467. {
  39468. name: "Normal",
  39469. height: math.unit(4, "feet"),
  39470. default: true
  39471. },
  39472. ]
  39473. ))
  39474. characterMakers.push(() => makeCharacter(
  39475. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39476. {
  39477. front: {
  39478. height: math.unit(6, "feet"),
  39479. weight: math.unit(168, "lb"),
  39480. name: "Front",
  39481. image: {
  39482. source: "./media/characters/lisa/front.svg",
  39483. extra: 2065/1867,
  39484. bottom: 46/2111
  39485. }
  39486. },
  39487. back: {
  39488. height: math.unit(6, "feet"),
  39489. weight: math.unit(168, "lb"),
  39490. name: "Back",
  39491. image: {
  39492. source: "./media/characters/lisa/back.svg",
  39493. extra: 1982/1838,
  39494. bottom: 29/2011
  39495. }
  39496. },
  39497. maw: {
  39498. height: math.unit(0.81, "feet"),
  39499. name: "Maw",
  39500. image: {
  39501. source: "./media/characters/lisa/maw.svg"
  39502. }
  39503. },
  39504. paw: {
  39505. height: math.unit(0.9, "feet"),
  39506. name: "Paw",
  39507. image: {
  39508. source: "./media/characters/lisa/paw.svg"
  39509. }
  39510. },
  39511. caribousune: {
  39512. height: math.unit(7 + 2/12, "feet"),
  39513. weight: math.unit(268, "lb"),
  39514. name: "Caribousune",
  39515. image: {
  39516. source: "./media/characters/lisa/caribousune.svg",
  39517. extra: 1843/1633,
  39518. bottom: 29/1872
  39519. }
  39520. },
  39521. frontCaribousune: {
  39522. height: math.unit(7 + 2/12, "feet"),
  39523. weight: math.unit(268, "lb"),
  39524. name: "Front (Caribousune)",
  39525. image: {
  39526. source: "./media/characters/lisa/front-caribousune.svg",
  39527. extra: 1818/1638,
  39528. bottom: 52/1870
  39529. }
  39530. },
  39531. sideCaribousune: {
  39532. height: math.unit(7 + 2/12, "feet"),
  39533. weight: math.unit(268, "lb"),
  39534. name: "Side (Caribousune)",
  39535. image: {
  39536. source: "./media/characters/lisa/side-caribousune.svg",
  39537. extra: 1851/1635,
  39538. bottom: 16/1867
  39539. }
  39540. },
  39541. backCaribousune: {
  39542. height: math.unit(7 + 2/12, "feet"),
  39543. weight: math.unit(268, "lb"),
  39544. name: "Back (Caribousune)",
  39545. image: {
  39546. source: "./media/characters/lisa/back-caribousune.svg",
  39547. extra: 1801/1604,
  39548. bottom: 44/1845
  39549. }
  39550. },
  39551. caribou: {
  39552. height: math.unit(7 + 2/12, "feet"),
  39553. weight: math.unit(268, "lb"),
  39554. name: "Caribou",
  39555. image: {
  39556. source: "./media/characters/lisa/caribou.svg",
  39557. extra: 1843/1633,
  39558. bottom: 29/1872
  39559. }
  39560. },
  39561. frontCaribou: {
  39562. height: math.unit(7 + 2/12, "feet"),
  39563. weight: math.unit(268, "lb"),
  39564. name: "Front (Caribou)",
  39565. image: {
  39566. source: "./media/characters/lisa/front-caribou.svg",
  39567. extra: 1818/1638,
  39568. bottom: 52/1870
  39569. }
  39570. },
  39571. sideCaribou: {
  39572. height: math.unit(7 + 2/12, "feet"),
  39573. weight: math.unit(268, "lb"),
  39574. name: "Side (Caribou)",
  39575. image: {
  39576. source: "./media/characters/lisa/side-caribou.svg",
  39577. extra: 1851/1635,
  39578. bottom: 16/1867
  39579. }
  39580. },
  39581. backCaribou: {
  39582. height: math.unit(7 + 2/12, "feet"),
  39583. weight: math.unit(268, "lb"),
  39584. name: "Back (Caribou)",
  39585. image: {
  39586. source: "./media/characters/lisa/back-caribou.svg",
  39587. extra: 1801/1604,
  39588. bottom: 44/1845
  39589. }
  39590. },
  39591. mawCaribou: {
  39592. height: math.unit(1.45, "feet"),
  39593. name: "Maw (Caribou)",
  39594. image: {
  39595. source: "./media/characters/lisa/maw-caribou.svg"
  39596. }
  39597. },
  39598. mawCaribousune: {
  39599. height: math.unit(1.45, "feet"),
  39600. name: "Maw (Caribousune)",
  39601. image: {
  39602. source: "./media/characters/lisa/maw-caribousune.svg"
  39603. }
  39604. },
  39605. pawCaribousune: {
  39606. height: math.unit(1.61, "feet"),
  39607. name: "Paw (Caribou)",
  39608. image: {
  39609. source: "./media/characters/lisa/paw-caribousune.svg"
  39610. }
  39611. },
  39612. },
  39613. [
  39614. {
  39615. name: "Normal",
  39616. height: math.unit(6, "feet")
  39617. },
  39618. {
  39619. name: "God Size",
  39620. height: math.unit(72, "feet"),
  39621. default: true
  39622. },
  39623. {
  39624. name: "Towering",
  39625. height: math.unit(288, "feet")
  39626. },
  39627. {
  39628. name: "City Size",
  39629. height: math.unit(48384, "feet")
  39630. },
  39631. {
  39632. name: "Continental",
  39633. height: math.unit(4200, "miles")
  39634. },
  39635. {
  39636. name: "Planet Eater",
  39637. height: math.unit(42, "earths")
  39638. },
  39639. {
  39640. name: "Star Swallower",
  39641. height: math.unit(42, "solarradii")
  39642. },
  39643. {
  39644. name: "System Swallower",
  39645. height: math.unit(84000, "AU")
  39646. },
  39647. {
  39648. name: "Galaxy Gobbler",
  39649. height: math.unit(42, "galaxies")
  39650. },
  39651. {
  39652. name: "Universe Devourer",
  39653. height: math.unit(42, "universes")
  39654. },
  39655. {
  39656. name: "Multiverse Muncher",
  39657. height: math.unit(42, "multiverses")
  39658. },
  39659. ]
  39660. ))
  39661. characterMakers.push(() => makeCharacter(
  39662. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39663. {
  39664. front: {
  39665. height: math.unit(36, "feet"),
  39666. name: "Front",
  39667. image: {
  39668. source: "./media/characters/shadow-rat/front.svg",
  39669. extra: 1845/1758,
  39670. bottom: 83/1928
  39671. }
  39672. },
  39673. },
  39674. [
  39675. {
  39676. name: "Macro",
  39677. height: math.unit(36, "feet"),
  39678. default: true
  39679. },
  39680. ]
  39681. ))
  39682. characterMakers.push(() => makeCharacter(
  39683. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39684. {
  39685. side: {
  39686. height: math.unit(8, "feet"),
  39687. weight: math.unit(2630, "lb"),
  39688. name: "Side",
  39689. image: {
  39690. source: "./media/characters/torallia/side.svg",
  39691. extra: 2164/2021,
  39692. bottom: 371/2535
  39693. }
  39694. },
  39695. },
  39696. [
  39697. {
  39698. name: "Mortal Interaction",
  39699. height: math.unit(8, "feet")
  39700. },
  39701. {
  39702. name: "Natural",
  39703. height: math.unit(24, "feet"),
  39704. default: true
  39705. },
  39706. {
  39707. name: "Giant",
  39708. height: math.unit(80, "feet")
  39709. },
  39710. {
  39711. name: "Kaiju",
  39712. height: math.unit(240, "feet")
  39713. },
  39714. {
  39715. name: "Macro",
  39716. height: math.unit(800, "feet")
  39717. },
  39718. {
  39719. name: "Macro+",
  39720. height: math.unit(2400, "feet")
  39721. },
  39722. {
  39723. name: "Macro++",
  39724. height: math.unit(8000, "feet")
  39725. },
  39726. {
  39727. name: "City-Crushing",
  39728. height: math.unit(24000, "feet")
  39729. },
  39730. {
  39731. name: "Mountain-Mashing",
  39732. height: math.unit(80000, "feet")
  39733. },
  39734. {
  39735. name: "District Demolisher",
  39736. height: math.unit(240000, "feet")
  39737. },
  39738. {
  39739. name: "Tri-County Terror",
  39740. height: math.unit(800000, "feet")
  39741. },
  39742. {
  39743. name: "State Smasher",
  39744. height: math.unit(2.4e6, "feet")
  39745. },
  39746. {
  39747. name: "Nation Nemesis",
  39748. height: math.unit(8e6, "feet")
  39749. },
  39750. {
  39751. name: "Continent Cracker",
  39752. height: math.unit(2.4e7, "feet")
  39753. },
  39754. {
  39755. name: "Planet-Pillaging",
  39756. height: math.unit(8e7, "feet")
  39757. },
  39758. {
  39759. name: "Earth-Eclipsing",
  39760. height: math.unit(2.4e8, "feet")
  39761. },
  39762. {
  39763. name: "Jovian-Jostling",
  39764. height: math.unit(8e8, "feet")
  39765. },
  39766. {
  39767. name: "Gas Giant Gulper",
  39768. height: math.unit(2.4e9, "feet")
  39769. },
  39770. {
  39771. name: "Astral Annihilator",
  39772. height: math.unit(8e9, "feet")
  39773. },
  39774. {
  39775. name: "Celestial Conqueror",
  39776. height: math.unit(2.4e10, "feet")
  39777. },
  39778. {
  39779. name: "Sol-Swallowing",
  39780. height: math.unit(8e10, "feet")
  39781. },
  39782. {
  39783. name: "Hunter of the Heavens",
  39784. height: math.unit(2.4e13, "feet")
  39785. },
  39786. ]
  39787. ))
  39788. characterMakers.push(() => makeCharacter(
  39789. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39790. {
  39791. front: {
  39792. height: math.unit(6 + 8/12, "feet"),
  39793. weight: math.unit(250, "kilograms"),
  39794. volume: math.unit(28, "liters"),
  39795. name: "Front",
  39796. image: {
  39797. source: "./media/characters/rebecca-pawlson/front.svg",
  39798. extra: 1737/1596,
  39799. bottom: 107/1844
  39800. }
  39801. },
  39802. back: {
  39803. height: math.unit(6 + 8/12, "feet"),
  39804. weight: math.unit(250, "kilograms"),
  39805. volume: math.unit(28, "liters"),
  39806. name: "Back",
  39807. image: {
  39808. source: "./media/characters/rebecca-pawlson/back.svg",
  39809. extra: 1702/1523,
  39810. bottom: 86/1788
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(6 + 8/12, "feet")
  39818. },
  39819. {
  39820. name: "Mini Macro",
  39821. height: math.unit(10, "feet"),
  39822. default: true
  39823. },
  39824. {
  39825. name: "Macro",
  39826. height: math.unit(100, "feet")
  39827. },
  39828. {
  39829. name: "Mega Macro",
  39830. height: math.unit(2500, "feet")
  39831. },
  39832. {
  39833. name: "Giga Macro",
  39834. height: math.unit(50, "miles")
  39835. },
  39836. ]
  39837. ))
  39838. characterMakers.push(() => makeCharacter(
  39839. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39840. {
  39841. front: {
  39842. height: math.unit(7 + 6/12, "feet"),
  39843. weight: math.unit(600, "lb"),
  39844. name: "Front",
  39845. image: {
  39846. source: "./media/characters/moxie-nova/front.svg",
  39847. extra: 1734/1652,
  39848. bottom: 41/1775
  39849. }
  39850. },
  39851. },
  39852. [
  39853. {
  39854. name: "Normal",
  39855. height: math.unit(7 + 6/12, "feet"),
  39856. default: true
  39857. },
  39858. ]
  39859. ))
  39860. characterMakers.push(() => makeCharacter(
  39861. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39862. {
  39863. goat: {
  39864. height: math.unit(4, "feet"),
  39865. weight: math.unit(180, "lb"),
  39866. name: "Goat",
  39867. image: {
  39868. source: "./media/characters/tiffany/goat.svg",
  39869. extra: 1845/1595,
  39870. bottom: 106/1951
  39871. }
  39872. },
  39873. front: {
  39874. height: math.unit(5, "feet"),
  39875. weight: math.unit(150, "lb"),
  39876. name: "Foxcoon",
  39877. image: {
  39878. source: "./media/characters/tiffany/foxcoon.svg",
  39879. extra: 1941/1845,
  39880. bottom: 58/1999
  39881. }
  39882. },
  39883. },
  39884. [
  39885. {
  39886. name: "Normal",
  39887. height: math.unit(5, "feet"),
  39888. default: true
  39889. },
  39890. ]
  39891. ))
  39892. characterMakers.push(() => makeCharacter(
  39893. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39894. {
  39895. front: {
  39896. height: math.unit(8, "feet"),
  39897. weight: math.unit(300, "lb"),
  39898. name: "Front",
  39899. image: {
  39900. source: "./media/characters/raxinath/front.svg",
  39901. extra: 1407/1309,
  39902. bottom: 39/1446
  39903. }
  39904. },
  39905. back: {
  39906. height: math.unit(8, "feet"),
  39907. weight: math.unit(300, "lb"),
  39908. name: "Back",
  39909. image: {
  39910. source: "./media/characters/raxinath/back.svg",
  39911. extra: 1405/1315,
  39912. bottom: 9/1414
  39913. }
  39914. },
  39915. },
  39916. [
  39917. {
  39918. name: "Speck",
  39919. height: math.unit(0.5, "nm")
  39920. },
  39921. {
  39922. name: "Micro",
  39923. height: math.unit(3, "inches")
  39924. },
  39925. {
  39926. name: "Kobold",
  39927. height: math.unit(3, "feet")
  39928. },
  39929. {
  39930. name: "Normal",
  39931. height: math.unit(8, "feet"),
  39932. default: true
  39933. },
  39934. {
  39935. name: "Giant",
  39936. height: math.unit(50, "feet")
  39937. },
  39938. {
  39939. name: "Macro",
  39940. height: math.unit(1000, "feet")
  39941. },
  39942. {
  39943. name: "Megamacro",
  39944. height: math.unit(1, "mile")
  39945. },
  39946. ]
  39947. ))
  39948. characterMakers.push(() => makeCharacter(
  39949. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39950. {
  39951. front: {
  39952. height: math.unit(10, "feet"),
  39953. weight: math.unit(1442, "lb"),
  39954. name: "Front",
  39955. image: {
  39956. source: "./media/characters/mal-dragon/front.svg",
  39957. extra: 1515/1444,
  39958. bottom: 113/1628
  39959. }
  39960. },
  39961. back: {
  39962. height: math.unit(10, "feet"),
  39963. weight: math.unit(1442, "lb"),
  39964. name: "Back",
  39965. image: {
  39966. source: "./media/characters/mal-dragon/back.svg",
  39967. extra: 1527/1434,
  39968. bottom: 25/1552
  39969. }
  39970. },
  39971. },
  39972. [
  39973. {
  39974. name: "Mortal Interaction",
  39975. height: math.unit(10, "feet"),
  39976. default: true
  39977. },
  39978. {
  39979. name: "Large",
  39980. height: math.unit(30, "feet")
  39981. },
  39982. {
  39983. name: "Kaiju",
  39984. height: math.unit(300, "feet")
  39985. },
  39986. {
  39987. name: "Megamacro",
  39988. height: math.unit(10000, "feet")
  39989. },
  39990. {
  39991. name: "Continent Cracker",
  39992. height: math.unit(30000000, "feet")
  39993. },
  39994. {
  39995. name: "Sol-Swallowing",
  39996. height: math.unit(1e11, "feet")
  39997. },
  39998. {
  39999. name: "Light Universal",
  40000. height: math.unit(5, "universes")
  40001. },
  40002. {
  40003. name: "Universe Atoms",
  40004. height: math.unit(1.829e9, "universes")
  40005. },
  40006. {
  40007. name: "Light Multiversal",
  40008. height: math.unit(5, "multiverses")
  40009. },
  40010. {
  40011. name: "Multiverse Atoms",
  40012. height: math.unit(1.829e9, "multiverses")
  40013. },
  40014. {
  40015. name: "Fabric of Time",
  40016. height: math.unit(1e262, "multiverses")
  40017. },
  40018. ]
  40019. ))
  40020. characterMakers.push(() => makeCharacter(
  40021. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40022. {
  40023. front: {
  40024. height: math.unit(9, "feet"),
  40025. weight: math.unit(1050, "lb"),
  40026. name: "Front",
  40027. image: {
  40028. source: "./media/characters/tabitha/front.svg",
  40029. extra: 2083/1994,
  40030. bottom: 68/2151
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Baseline",
  40037. height: math.unit(9, "feet"),
  40038. default: true
  40039. },
  40040. {
  40041. name: "Giant",
  40042. height: math.unit(90, "feet")
  40043. },
  40044. {
  40045. name: "Macro",
  40046. height: math.unit(900, "feet")
  40047. },
  40048. {
  40049. name: "Megamacro",
  40050. height: math.unit(9000, "feet")
  40051. },
  40052. {
  40053. name: "City-Crushing",
  40054. height: math.unit(27000, "feet")
  40055. },
  40056. {
  40057. name: "Mountain-Mashing",
  40058. height: math.unit(90000, "feet")
  40059. },
  40060. {
  40061. name: "Nation Nemesis",
  40062. height: math.unit(9e6, "feet")
  40063. },
  40064. {
  40065. name: "Continent Cracker",
  40066. height: math.unit(27e6, "feet")
  40067. },
  40068. {
  40069. name: "Earth-Eclipsing",
  40070. height: math.unit(2.7e8, "feet")
  40071. },
  40072. {
  40073. name: "Gas Giant Gulper",
  40074. height: math.unit(2.7e9, "feet")
  40075. },
  40076. {
  40077. name: "Sol-Swallowing",
  40078. height: math.unit(9e10, "feet")
  40079. },
  40080. {
  40081. name: "Galaxy Gulper",
  40082. height: math.unit(9, "galaxies")
  40083. },
  40084. {
  40085. name: "Cosmos Churner",
  40086. height: math.unit(9, "universes")
  40087. },
  40088. ]
  40089. ))
  40090. characterMakers.push(() => makeCharacter(
  40091. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40092. {
  40093. front: {
  40094. height: math.unit(160, "cm"),
  40095. weight: math.unit(55, "kg"),
  40096. name: "Front",
  40097. image: {
  40098. source: "./media/characters/tow/front.svg",
  40099. extra: 1751/1722,
  40100. bottom: 74/1825
  40101. }
  40102. },
  40103. },
  40104. [
  40105. {
  40106. name: "Norm",
  40107. height: math.unit(160, "cm")
  40108. },
  40109. {
  40110. name: "Casual",
  40111. height: math.unit(3200, "m"),
  40112. default: true
  40113. },
  40114. {
  40115. name: "Show-Off",
  40116. height: math.unit(160, "km")
  40117. },
  40118. ]
  40119. ))
  40120. characterMakers.push(() => makeCharacter(
  40121. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40122. {
  40123. front: {
  40124. height: math.unit(7 + 11/12, "feet"),
  40125. weight: math.unit(342.8, "lb"),
  40126. name: "Front",
  40127. image: {
  40128. source: "./media/characters/vivian-orca-dragon/front.svg",
  40129. extra: 1890/1865,
  40130. bottom: 28/1918
  40131. }
  40132. },
  40133. },
  40134. [
  40135. {
  40136. name: "Micro",
  40137. height: math.unit(5, "inches")
  40138. },
  40139. {
  40140. name: "Normal",
  40141. height: math.unit(7 + 11/12, "feet"),
  40142. default: true
  40143. },
  40144. {
  40145. name: "Macro",
  40146. height: math.unit(395 + 7/12, "feet")
  40147. },
  40148. ]
  40149. ))
  40150. characterMakers.push(() => makeCharacter(
  40151. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40152. {
  40153. side: {
  40154. height: math.unit(10, "feet"),
  40155. weight: math.unit(1442, "lb"),
  40156. name: "Side",
  40157. image: {
  40158. source: "./media/characters/lotherakon/side.svg",
  40159. extra: 1604/1497,
  40160. bottom: 89/1693
  40161. }
  40162. },
  40163. },
  40164. [
  40165. {
  40166. name: "Mortal Interaction",
  40167. height: math.unit(10, "feet")
  40168. },
  40169. {
  40170. name: "Large",
  40171. height: math.unit(30, "feet"),
  40172. default: true
  40173. },
  40174. {
  40175. name: "Giant",
  40176. height: math.unit(100, "feet")
  40177. },
  40178. {
  40179. name: "Kaiju",
  40180. height: math.unit(300, "feet")
  40181. },
  40182. {
  40183. name: "Macro",
  40184. height: math.unit(1000, "feet")
  40185. },
  40186. {
  40187. name: "Macro+",
  40188. height: math.unit(3000, "feet")
  40189. },
  40190. {
  40191. name: "Megamacro",
  40192. height: math.unit(10000, "feet")
  40193. },
  40194. {
  40195. name: "City-Crushing",
  40196. height: math.unit(30000, "feet")
  40197. },
  40198. {
  40199. name: "Continent Cracker",
  40200. height: math.unit(30e6, "feet")
  40201. },
  40202. {
  40203. name: "Earth Eclipsing",
  40204. height: math.unit(3e8, "feet")
  40205. },
  40206. {
  40207. name: "Gas Giant Gulper",
  40208. height: math.unit(3e9, "feet")
  40209. },
  40210. {
  40211. name: "Sol-Swallowing",
  40212. height: math.unit(1e11, "feet")
  40213. },
  40214. {
  40215. name: "System Swallower",
  40216. height: math.unit(3e14, "feet")
  40217. },
  40218. {
  40219. name: "Galaxy Gulper",
  40220. height: math.unit(10, "galaxies")
  40221. },
  40222. {
  40223. name: "Light Universal",
  40224. height: math.unit(5, "universes")
  40225. },
  40226. {
  40227. name: "Universe Palm",
  40228. height: math.unit(20, "universes")
  40229. },
  40230. {
  40231. name: "Light Multiversal",
  40232. height: math.unit(5, "multiverses")
  40233. },
  40234. {
  40235. name: "Multiverse Palm",
  40236. height: math.unit(20, "multiverses")
  40237. },
  40238. {
  40239. name: "Inferno Incarnate",
  40240. height: math.unit(1e7, "multiverses")
  40241. },
  40242. ]
  40243. ))
  40244. characterMakers.push(() => makeCharacter(
  40245. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40246. {
  40247. front: {
  40248. height: math.unit(8, "feet"),
  40249. weight: math.unit(1200, "lb"),
  40250. name: "Front",
  40251. image: {
  40252. source: "./media/characters/malithee/front.svg",
  40253. extra: 1675/1640,
  40254. bottom: 162/1837
  40255. }
  40256. },
  40257. },
  40258. [
  40259. {
  40260. name: "Mortal Interaction",
  40261. height: math.unit(8, "feet"),
  40262. default: true
  40263. },
  40264. {
  40265. name: "Large",
  40266. height: math.unit(24, "feet")
  40267. },
  40268. {
  40269. name: "Kaiju",
  40270. height: math.unit(240, "feet")
  40271. },
  40272. {
  40273. name: "Megamacro",
  40274. height: math.unit(8000, "feet")
  40275. },
  40276. {
  40277. name: "Continent Cracker",
  40278. height: math.unit(24e6, "feet")
  40279. },
  40280. {
  40281. name: "Earth-Eclipsing",
  40282. height: math.unit(2.4e8, "feet")
  40283. },
  40284. {
  40285. name: "Sol-Swallowing",
  40286. height: math.unit(8e10, "feet")
  40287. },
  40288. {
  40289. name: "Galaxy Gulper",
  40290. height: math.unit(8, "galaxies")
  40291. },
  40292. {
  40293. name: "Light Universal",
  40294. height: math.unit(4, "universes")
  40295. },
  40296. {
  40297. name: "Universe Atoms",
  40298. height: math.unit(1.829e9, "universes")
  40299. },
  40300. {
  40301. name: "Light Multiversal",
  40302. height: math.unit(4, "multiverses")
  40303. },
  40304. {
  40305. name: "Multiverse Atoms",
  40306. height: math.unit(1.829e9, "multiverses")
  40307. },
  40308. {
  40309. name: "Nigh-Omnipresence",
  40310. height: math.unit(8e261, "multiverses")
  40311. },
  40312. ]
  40313. ))
  40314. characterMakers.push(() => makeCharacter(
  40315. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40316. {
  40317. front: {
  40318. height: math.unit(10, "feet"),
  40319. weight: math.unit(1500, "lb"),
  40320. name: "Front",
  40321. image: {
  40322. source: "./media/characters/miles-thestia/front.svg",
  40323. extra: 1812/1727,
  40324. bottom: 86/1898
  40325. }
  40326. },
  40327. back: {
  40328. height: math.unit(10, "feet"),
  40329. weight: math.unit(1500, "lb"),
  40330. name: "Back",
  40331. image: {
  40332. source: "./media/characters/miles-thestia/back.svg",
  40333. extra: 1799/1690,
  40334. bottom: 47/1846
  40335. }
  40336. },
  40337. frontNsfw: {
  40338. height: math.unit(10, "feet"),
  40339. weight: math.unit(1500, "lb"),
  40340. name: "Front (NSFW)",
  40341. image: {
  40342. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40343. extra: 1812/1727,
  40344. bottom: 86/1898
  40345. }
  40346. },
  40347. },
  40348. [
  40349. {
  40350. name: "Mini-Macro",
  40351. height: math.unit(10, "feet"),
  40352. default: true
  40353. },
  40354. ]
  40355. ))
  40356. characterMakers.push(() => makeCharacter(
  40357. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40358. {
  40359. front: {
  40360. height: math.unit(25, "feet"),
  40361. name: "Front",
  40362. image: {
  40363. source: "./media/characters/titan-s-wulf/front.svg",
  40364. extra: 1560/1484,
  40365. bottom: 76/1636
  40366. }
  40367. },
  40368. },
  40369. [
  40370. {
  40371. name: "Smallest",
  40372. height: math.unit(25, "feet"),
  40373. default: true
  40374. },
  40375. {
  40376. name: "Normal",
  40377. height: math.unit(200, "feet")
  40378. },
  40379. {
  40380. name: "Macro",
  40381. height: math.unit(200000, "feet")
  40382. },
  40383. {
  40384. name: "Multiversal Original",
  40385. height: math.unit(10000, "multiverses")
  40386. },
  40387. ]
  40388. ))
  40389. characterMakers.push(() => makeCharacter(
  40390. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40391. {
  40392. front: {
  40393. height: math.unit(8, "feet"),
  40394. weight: math.unit(553, "lb"),
  40395. name: "Front",
  40396. image: {
  40397. source: "./media/characters/tawendeh/front.svg",
  40398. extra: 2365/2268,
  40399. bottom: 83/2448
  40400. }
  40401. },
  40402. frontClothed: {
  40403. height: math.unit(8, "feet"),
  40404. weight: math.unit(553, "lb"),
  40405. name: "Front (Clothed)",
  40406. image: {
  40407. source: "./media/characters/tawendeh/front-clothed.svg",
  40408. extra: 2365/2268,
  40409. bottom: 83/2448
  40410. }
  40411. },
  40412. back: {
  40413. height: math.unit(8, "feet"),
  40414. weight: math.unit(553, "lb"),
  40415. name: "Back",
  40416. image: {
  40417. source: "./media/characters/tawendeh/back.svg",
  40418. extra: 2397/2294,
  40419. bottom: 42/2439
  40420. }
  40421. },
  40422. },
  40423. [
  40424. {
  40425. name: "Mortal Interaction",
  40426. height: math.unit(8, "feet"),
  40427. default: true
  40428. },
  40429. {
  40430. name: "Giant",
  40431. height: math.unit(80, "feet")
  40432. },
  40433. {
  40434. name: "Macro",
  40435. height: math.unit(800, "feet")
  40436. },
  40437. {
  40438. name: "Megamacro",
  40439. height: math.unit(8000, "feet")
  40440. },
  40441. {
  40442. name: "City-Crushing",
  40443. height: math.unit(24000, "feet")
  40444. },
  40445. {
  40446. name: "Mountain-Mashing",
  40447. height: math.unit(80000, "feet")
  40448. },
  40449. {
  40450. name: "Nation Nemesis",
  40451. height: math.unit(8e6, "feet")
  40452. },
  40453. {
  40454. name: "Continent Cracker",
  40455. height: math.unit(24e6, "feet")
  40456. },
  40457. {
  40458. name: "Earth-Eclipsing",
  40459. height: math.unit(2.4e8, "feet")
  40460. },
  40461. {
  40462. name: "Gas Giant Gulper",
  40463. height: math.unit(2.4e9, "feet")
  40464. },
  40465. {
  40466. name: "Sol-Swallowing",
  40467. height: math.unit(8e10, "feet")
  40468. },
  40469. {
  40470. name: "Galaxy Gulper",
  40471. height: math.unit(8, "galaxies")
  40472. },
  40473. {
  40474. name: "Cosmos Churner",
  40475. height: math.unit(8, "universes")
  40476. },
  40477. {
  40478. name: "Omnipotent Otter",
  40479. height: math.unit(80, "universes")
  40480. },
  40481. ]
  40482. ))
  40483. characterMakers.push(() => makeCharacter(
  40484. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40485. {
  40486. front: {
  40487. height: math.unit(2.6, "meters"),
  40488. weight: math.unit(900, "kg"),
  40489. name: "Front",
  40490. image: {
  40491. source: "./media/characters/neesha/front.svg",
  40492. extra: 1803/1653,
  40493. bottom: 128/1931
  40494. }
  40495. },
  40496. },
  40497. [
  40498. {
  40499. name: "Normal",
  40500. height: math.unit(2.6, "meters"),
  40501. default: true
  40502. },
  40503. {
  40504. name: "Macro",
  40505. height: math.unit(50, "meters")
  40506. },
  40507. ]
  40508. ))
  40509. characterMakers.push(() => makeCharacter(
  40510. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40511. {
  40512. front: {
  40513. height: math.unit(5, "feet"),
  40514. weight: math.unit(185, "lb"),
  40515. name: "Front",
  40516. image: {
  40517. source: "./media/characters/kyera/front.svg",
  40518. extra: 1875/1790,
  40519. bottom: 96/1971
  40520. }
  40521. },
  40522. },
  40523. [
  40524. {
  40525. name: "Normal",
  40526. height: math.unit(5, "feet"),
  40527. default: true
  40528. },
  40529. ]
  40530. ))
  40531. characterMakers.push(() => makeCharacter(
  40532. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40533. {
  40534. front: {
  40535. height: math.unit(7 + 6/12, "feet"),
  40536. weight: math.unit(540, "lb"),
  40537. name: "Front",
  40538. image: {
  40539. source: "./media/characters/yuko/front.svg",
  40540. extra: 1282/1222,
  40541. bottom: 101/1383
  40542. }
  40543. },
  40544. frontClothed: {
  40545. height: math.unit(7 + 6/12, "feet"),
  40546. weight: math.unit(540, "lb"),
  40547. name: "Front (Clothed)",
  40548. image: {
  40549. source: "./media/characters/yuko/front-clothed.svg",
  40550. extra: 1282/1222,
  40551. bottom: 101/1383
  40552. }
  40553. },
  40554. },
  40555. [
  40556. {
  40557. name: "Normal",
  40558. height: math.unit(7 + 6/12, "feet"),
  40559. default: true
  40560. },
  40561. {
  40562. name: "Macro",
  40563. height: math.unit(26 + 9/12, "feet")
  40564. },
  40565. {
  40566. name: "Megamacro",
  40567. height: math.unit(300, "feet")
  40568. },
  40569. {
  40570. name: "Gigamacro",
  40571. height: math.unit(5000, "feet")
  40572. },
  40573. {
  40574. name: "Planetary",
  40575. height: math.unit(10000, "miles")
  40576. },
  40577. ]
  40578. ))
  40579. characterMakers.push(() => makeCharacter(
  40580. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40581. {
  40582. front: {
  40583. height: math.unit(8 + 2/12, "feet"),
  40584. weight: math.unit(600, "lb"),
  40585. name: "Front",
  40586. image: {
  40587. source: "./media/characters/deam-nitrel/front.svg",
  40588. extra: 1308/1234,
  40589. bottom: 125/1433
  40590. }
  40591. },
  40592. },
  40593. [
  40594. {
  40595. name: "Normal",
  40596. height: math.unit(8 + 2/12, "feet"),
  40597. default: true
  40598. },
  40599. ]
  40600. ))
  40601. characterMakers.push(() => makeCharacter(
  40602. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40603. {
  40604. front: {
  40605. height: math.unit(6.1, "feet"),
  40606. weight: math.unit(180, "lb"),
  40607. name: "Front",
  40608. image: {
  40609. source: "./media/characters/skyress/front.svg",
  40610. extra: 1045/915,
  40611. bottom: 28/1073
  40612. }
  40613. },
  40614. maw: {
  40615. height: math.unit(1, "feet"),
  40616. name: "Maw",
  40617. image: {
  40618. source: "./media/characters/skyress/maw.svg"
  40619. }
  40620. },
  40621. },
  40622. [
  40623. {
  40624. name: "Normal",
  40625. height: math.unit(6.1, "feet"),
  40626. default: true
  40627. },
  40628. {
  40629. name: "Macro",
  40630. height: math.unit(200, "feet")
  40631. },
  40632. ]
  40633. ))
  40634. characterMakers.push(() => makeCharacter(
  40635. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40636. {
  40637. front: {
  40638. height: math.unit(4 + 2/12, "feet"),
  40639. weight: math.unit(40, "kg"),
  40640. name: "Front",
  40641. image: {
  40642. source: "./media/characters/amethyst-jones/front.svg",
  40643. extra: 1220/1150,
  40644. bottom: 101/1321
  40645. }
  40646. },
  40647. },
  40648. [
  40649. {
  40650. name: "Normal",
  40651. height: math.unit(4 + 2/12, "feet"),
  40652. default: true
  40653. },
  40654. ]
  40655. ))
  40656. characterMakers.push(() => makeCharacter(
  40657. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40658. {
  40659. front: {
  40660. height: math.unit(1.7, "m"),
  40661. weight: math.unit(135, "lb"),
  40662. name: "Front",
  40663. image: {
  40664. source: "./media/characters/jade/front.svg",
  40665. extra: 1818/1767,
  40666. bottom: 32/1850
  40667. }
  40668. },
  40669. back: {
  40670. height: math.unit(1.7, "m"),
  40671. weight: math.unit(135, "lb"),
  40672. name: "Back",
  40673. image: {
  40674. source: "./media/characters/jade/back.svg",
  40675. extra: 1869/1809,
  40676. bottom: 35/1904
  40677. }
  40678. },
  40679. hand: {
  40680. height: math.unit(0.24, "m"),
  40681. name: "Hand",
  40682. image: {
  40683. source: "./media/characters/jade/hand.svg"
  40684. }
  40685. },
  40686. foot: {
  40687. height: math.unit(0.263, "m"),
  40688. name: "Foot",
  40689. image: {
  40690. source: "./media/characters/jade/foot.svg"
  40691. }
  40692. },
  40693. dick: {
  40694. height: math.unit(0.47, "m"),
  40695. name: "Dick",
  40696. image: {
  40697. source: "./media/characters/jade/dick.svg"
  40698. }
  40699. },
  40700. },
  40701. [
  40702. {
  40703. name: "Micro",
  40704. height: math.unit(22, "cm")
  40705. },
  40706. {
  40707. name: "Normal",
  40708. height: math.unit(1.7, "m"),
  40709. default: true
  40710. },
  40711. {
  40712. name: "Macro",
  40713. height: math.unit(152, "m")
  40714. },
  40715. ]
  40716. ))
  40717. characterMakers.push(() => makeCharacter(
  40718. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40719. {
  40720. front: {
  40721. height: math.unit(100, "miles"),
  40722. weight: math.unit(20000, "tons"),
  40723. name: "Front",
  40724. image: {
  40725. source: "./media/characters/cookie/front.svg",
  40726. extra: 1125/1070,
  40727. bottom: 30/1155
  40728. }
  40729. },
  40730. },
  40731. [
  40732. {
  40733. name: "Big",
  40734. height: math.unit(50, "feet")
  40735. },
  40736. {
  40737. name: "Macro",
  40738. height: math.unit(100, "miles"),
  40739. default: true
  40740. },
  40741. {
  40742. name: "Megamacro",
  40743. height: math.unit(90000, "miles")
  40744. },
  40745. ]
  40746. ))
  40747. characterMakers.push(() => makeCharacter(
  40748. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40749. {
  40750. front: {
  40751. height: math.unit(6, "feet"),
  40752. weight: math.unit(145, "lb"),
  40753. name: "Front",
  40754. image: {
  40755. source: "./media/characters/farzian/front.svg",
  40756. extra: 1902/1693,
  40757. bottom: 108/2010
  40758. }
  40759. },
  40760. },
  40761. [
  40762. {
  40763. name: "Macro",
  40764. height: math.unit(500, "feet"),
  40765. default: true
  40766. },
  40767. ]
  40768. ))
  40769. characterMakers.push(() => makeCharacter(
  40770. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40771. {
  40772. front: {
  40773. height: math.unit(3 + 6/12, "feet"),
  40774. weight: math.unit(50, "lb"),
  40775. name: "Front",
  40776. image: {
  40777. source: "./media/characters/kimberly-tilson/front.svg",
  40778. extra: 1400/1322,
  40779. bottom: 36/1436
  40780. }
  40781. },
  40782. back: {
  40783. height: math.unit(3 + 6/12, "feet"),
  40784. weight: math.unit(50, "lb"),
  40785. name: "Back",
  40786. image: {
  40787. source: "./media/characters/kimberly-tilson/back.svg",
  40788. extra: 1370/1307,
  40789. bottom: 20/1390
  40790. }
  40791. },
  40792. },
  40793. [
  40794. {
  40795. name: "Normal",
  40796. height: math.unit(3 + 6/12, "feet"),
  40797. default: true
  40798. },
  40799. ]
  40800. ))
  40801. characterMakers.push(() => makeCharacter(
  40802. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40803. {
  40804. front: {
  40805. height: math.unit(1148, "feet"),
  40806. weight: math.unit(34057, "lb"),
  40807. name: "Front",
  40808. image: {
  40809. source: "./media/characters/harthos/front.svg",
  40810. extra: 1391/1339,
  40811. bottom: 13/1404
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Macro",
  40818. height: math.unit(1148, "feet"),
  40819. default: true
  40820. },
  40821. ]
  40822. ))
  40823. characterMakers.push(() => makeCharacter(
  40824. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40825. {
  40826. front: {
  40827. height: math.unit(15, "feet"),
  40828. name: "Front",
  40829. image: {
  40830. source: "./media/characters/hypatia/front.svg",
  40831. extra: 1653/1591,
  40832. bottom: 79/1732
  40833. }
  40834. },
  40835. },
  40836. [
  40837. {
  40838. name: "Normal",
  40839. height: math.unit(15, "feet")
  40840. },
  40841. {
  40842. name: "Small",
  40843. height: math.unit(300, "feet")
  40844. },
  40845. {
  40846. name: "Macro",
  40847. height: math.unit(2500, "feet"),
  40848. default: true
  40849. },
  40850. {
  40851. name: "Mega Macro",
  40852. height: math.unit(1500, "miles")
  40853. },
  40854. {
  40855. name: "Giga Macro",
  40856. height: math.unit(1.5e6, "miles")
  40857. },
  40858. ]
  40859. ))
  40860. characterMakers.push(() => makeCharacter(
  40861. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40862. {
  40863. front: {
  40864. height: math.unit(6, "feet"),
  40865. weight: math.unit(200, "lb"),
  40866. name: "Front",
  40867. image: {
  40868. source: "./media/characters/wulver/front.svg",
  40869. extra: 1724/1632,
  40870. bottom: 130/1854
  40871. }
  40872. },
  40873. frontNsfw: {
  40874. height: math.unit(6, "feet"),
  40875. weight: math.unit(200, "lb"),
  40876. name: "Front (NSFW)",
  40877. image: {
  40878. source: "./media/characters/wulver/front-nsfw.svg",
  40879. extra: 1724/1632,
  40880. bottom: 130/1854
  40881. }
  40882. },
  40883. },
  40884. [
  40885. {
  40886. name: "Human-Sized",
  40887. height: math.unit(6, "feet")
  40888. },
  40889. {
  40890. name: "Normal",
  40891. height: math.unit(4, "meters"),
  40892. default: true
  40893. },
  40894. {
  40895. name: "Large",
  40896. height: math.unit(6, "m")
  40897. },
  40898. ]
  40899. ))
  40900. characterMakers.push(() => makeCharacter(
  40901. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40902. {
  40903. front: {
  40904. height: math.unit(7, "feet"),
  40905. name: "Front",
  40906. image: {
  40907. source: "./media/characters/maru/front.svg",
  40908. extra: 1595/1570,
  40909. bottom: 0/1595
  40910. }
  40911. },
  40912. },
  40913. [
  40914. {
  40915. name: "Normal",
  40916. height: math.unit(7, "feet"),
  40917. default: true
  40918. },
  40919. {
  40920. name: "Macro",
  40921. height: math.unit(700, "feet")
  40922. },
  40923. {
  40924. name: "Mega Macro",
  40925. height: math.unit(25, "miles")
  40926. },
  40927. ]
  40928. ))
  40929. characterMakers.push(() => makeCharacter(
  40930. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40931. {
  40932. front: {
  40933. height: math.unit(6, "feet"),
  40934. weight: math.unit(170, "lb"),
  40935. name: "Front",
  40936. image: {
  40937. source: "./media/characters/xenon/front.svg",
  40938. extra: 1376/1305,
  40939. bottom: 56/1432
  40940. }
  40941. },
  40942. back: {
  40943. height: math.unit(6, "feet"),
  40944. weight: math.unit(170, "lb"),
  40945. name: "Back",
  40946. image: {
  40947. source: "./media/characters/xenon/back.svg",
  40948. extra: 1328/1259,
  40949. bottom: 95/1423
  40950. }
  40951. },
  40952. maw: {
  40953. height: math.unit(0.52, "feet"),
  40954. name: "Maw",
  40955. image: {
  40956. source: "./media/characters/xenon/maw.svg"
  40957. }
  40958. },
  40959. hand: {
  40960. height: math.unit(0.82, "feet"),
  40961. name: "Hand",
  40962. image: {
  40963. source: "./media/characters/xenon/hand.svg"
  40964. }
  40965. },
  40966. foot: {
  40967. height: math.unit(1.13, "feet"),
  40968. name: "Foot",
  40969. image: {
  40970. source: "./media/characters/xenon/foot.svg"
  40971. }
  40972. },
  40973. },
  40974. [
  40975. {
  40976. name: "Micro",
  40977. height: math.unit(0.8, "inches")
  40978. },
  40979. {
  40980. name: "Normal",
  40981. height: math.unit(6, "feet")
  40982. },
  40983. {
  40984. name: "Macro",
  40985. height: math.unit(50, "feet"),
  40986. default: true
  40987. },
  40988. {
  40989. name: "Macro+",
  40990. height: math.unit(250, "feet")
  40991. },
  40992. {
  40993. name: "Megamacro",
  40994. height: math.unit(1500, "feet")
  40995. },
  40996. ]
  40997. ))
  40998. characterMakers.push(() => makeCharacter(
  40999. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41000. {
  41001. front: {
  41002. height: math.unit(7 + 5/12, "feet"),
  41003. name: "Front",
  41004. image: {
  41005. source: "./media/characters/zane/front.svg",
  41006. extra: 1260/1203,
  41007. bottom: 94/1354
  41008. }
  41009. },
  41010. back: {
  41011. height: math.unit(5.05, "feet"),
  41012. name: "Back",
  41013. image: {
  41014. source: "./media/characters/zane/back.svg",
  41015. extra: 893/829,
  41016. bottom: 30/923
  41017. }
  41018. },
  41019. werewolf: {
  41020. height: math.unit(11, "feet"),
  41021. name: "Werewolf",
  41022. image: {
  41023. source: "./media/characters/zane/werewolf.svg",
  41024. extra: 1383/1323,
  41025. bottom: 89/1472
  41026. }
  41027. },
  41028. foot: {
  41029. height: math.unit(1.46, "feet"),
  41030. name: "Foot",
  41031. image: {
  41032. source: "./media/characters/zane/foot.svg"
  41033. }
  41034. },
  41035. footFront: {
  41036. height: math.unit(0.784, "feet"),
  41037. name: "Foot (Front)",
  41038. image: {
  41039. source: "./media/characters/zane/foot-front.svg"
  41040. }
  41041. },
  41042. dick: {
  41043. height: math.unit(1.95, "feet"),
  41044. name: "Dick",
  41045. image: {
  41046. source: "./media/characters/zane/dick.svg"
  41047. }
  41048. },
  41049. dickWerewolf: {
  41050. height: math.unit(3.77, "feet"),
  41051. name: "Dick (Werewolf)",
  41052. image: {
  41053. source: "./media/characters/zane/dick.svg"
  41054. }
  41055. },
  41056. },
  41057. [
  41058. {
  41059. name: "Normal",
  41060. height: math.unit(7 + 5/12, "feet"),
  41061. default: true
  41062. },
  41063. ]
  41064. ))
  41065. characterMakers.push(() => makeCharacter(
  41066. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41067. {
  41068. front: {
  41069. height: math.unit(6 + 2/12, "feet"),
  41070. weight: math.unit(284, "lb"),
  41071. name: "Front",
  41072. image: {
  41073. source: "./media/characters/benni-desparque/front.svg",
  41074. extra: 1353/1126,
  41075. bottom: 69/1422
  41076. }
  41077. },
  41078. },
  41079. [
  41080. {
  41081. name: "Civilian",
  41082. height: math.unit(6 + 2/12, "feet")
  41083. },
  41084. {
  41085. name: "Normal",
  41086. height: math.unit(98, "feet"),
  41087. default: true
  41088. },
  41089. {
  41090. name: "Kaiju Fighter",
  41091. height: math.unit(268, "feet")
  41092. },
  41093. ]
  41094. ))
  41095. characterMakers.push(() => makeCharacter(
  41096. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41097. {
  41098. front: {
  41099. height: math.unit(5, "feet"),
  41100. weight: math.unit(105, "lb"),
  41101. name: "Front",
  41102. image: {
  41103. source: "./media/characters/maxine/front.svg",
  41104. extra: 1386/1250,
  41105. bottom: 71/1457
  41106. }
  41107. },
  41108. },
  41109. [
  41110. {
  41111. name: "Normal",
  41112. height: math.unit(5, "feet"),
  41113. default: true
  41114. },
  41115. ]
  41116. ))
  41117. characterMakers.push(() => makeCharacter(
  41118. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41119. {
  41120. front: {
  41121. height: math.unit(11 + 7/12, "feet"),
  41122. weight: math.unit(9576, "lb"),
  41123. name: "Front",
  41124. image: {
  41125. source: "./media/characters/scaly/front.svg",
  41126. extra: 888/867,
  41127. bottom: 36/924
  41128. }
  41129. },
  41130. },
  41131. [
  41132. {
  41133. name: "Normal",
  41134. height: math.unit(11 + 7/12, "feet"),
  41135. default: true
  41136. },
  41137. ]
  41138. ))
  41139. characterMakers.push(() => makeCharacter(
  41140. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41141. {
  41142. front: {
  41143. height: math.unit(6 + 3/12, "feet"),
  41144. name: "Front",
  41145. image: {
  41146. source: "./media/characters/saelria/front.svg",
  41147. extra: 1243/1138,
  41148. bottom: 46/1289
  41149. }
  41150. },
  41151. },
  41152. [
  41153. {
  41154. name: "Micro",
  41155. height: math.unit(6, "inches"),
  41156. },
  41157. {
  41158. name: "Normal",
  41159. height: math.unit(6 + 3/12, "feet"),
  41160. default: true
  41161. },
  41162. {
  41163. name: "Macro",
  41164. height: math.unit(25, "feet")
  41165. },
  41166. ]
  41167. ))
  41168. characterMakers.push(() => makeCharacter(
  41169. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41170. {
  41171. front: {
  41172. height: math.unit(80, "meters"),
  41173. weight: math.unit(7000, "tonnes"),
  41174. name: "Front",
  41175. image: {
  41176. source: "./media/characters/tef/front.svg",
  41177. extra: 2036/1991,
  41178. bottom: 54/2090
  41179. }
  41180. },
  41181. back: {
  41182. height: math.unit(80, "meters"),
  41183. weight: math.unit(7000, "tonnes"),
  41184. name: "Back",
  41185. image: {
  41186. source: "./media/characters/tef/back.svg",
  41187. extra: 2036/1991,
  41188. bottom: 54/2090
  41189. }
  41190. },
  41191. },
  41192. [
  41193. {
  41194. name: "Macro",
  41195. height: math.unit(80, "meters"),
  41196. default: true
  41197. },
  41198. ]
  41199. ))
  41200. characterMakers.push(() => makeCharacter(
  41201. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41202. {
  41203. front: {
  41204. height: math.unit(13, "feet"),
  41205. weight: math.unit(6, "tons"),
  41206. name: "Front",
  41207. image: {
  41208. source: "./media/characters/rover/front.svg",
  41209. extra: 1233/1156,
  41210. bottom: 50/1283
  41211. }
  41212. },
  41213. back: {
  41214. height: math.unit(13, "feet"),
  41215. weight: math.unit(6, "tons"),
  41216. name: "Back",
  41217. image: {
  41218. source: "./media/characters/rover/back.svg",
  41219. extra: 1327/1258,
  41220. bottom: 39/1366
  41221. }
  41222. },
  41223. },
  41224. [
  41225. {
  41226. name: "Normal",
  41227. height: math.unit(13, "feet"),
  41228. default: true
  41229. },
  41230. {
  41231. name: "Macro",
  41232. height: math.unit(1300, "feet")
  41233. },
  41234. {
  41235. name: "Megamacro",
  41236. height: math.unit(1300, "miles")
  41237. },
  41238. {
  41239. name: "Gigamacro",
  41240. height: math.unit(1300000, "miles")
  41241. },
  41242. ]
  41243. ))
  41244. characterMakers.push(() => makeCharacter(
  41245. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41246. {
  41247. front: {
  41248. height: math.unit(6, "feet"),
  41249. weight: math.unit(150, "lb"),
  41250. name: "Front",
  41251. image: {
  41252. source: "./media/characters/ariz/front.svg",
  41253. extra: 1401/1346,
  41254. bottom: 5/1406
  41255. }
  41256. },
  41257. },
  41258. [
  41259. {
  41260. name: "Normal",
  41261. height: math.unit(10, "feet"),
  41262. default: true
  41263. },
  41264. ]
  41265. ))
  41266. characterMakers.push(() => makeCharacter(
  41267. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41268. {
  41269. front: {
  41270. height: math.unit(6, "feet"),
  41271. weight: math.unit(140, "lb"),
  41272. name: "Front",
  41273. image: {
  41274. source: "./media/characters/sigrun/front.svg",
  41275. extra: 1418/1359,
  41276. bottom: 27/1445
  41277. }
  41278. },
  41279. },
  41280. [
  41281. {
  41282. name: "Macro",
  41283. height: math.unit(35, "feet"),
  41284. default: true
  41285. },
  41286. ]
  41287. ))
  41288. characterMakers.push(() => makeCharacter(
  41289. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41290. {
  41291. front: {
  41292. height: math.unit(6, "feet"),
  41293. weight: math.unit(150, "lb"),
  41294. name: "Front",
  41295. image: {
  41296. source: "./media/characters/numin/front.svg",
  41297. extra: 1433/1388,
  41298. bottom: 12/1445
  41299. }
  41300. },
  41301. },
  41302. [
  41303. {
  41304. name: "Macro",
  41305. height: math.unit(21.5, "km"),
  41306. default: true
  41307. },
  41308. ]
  41309. ))
  41310. characterMakers.push(() => makeCharacter(
  41311. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41312. {
  41313. front: {
  41314. height: math.unit(6, "feet"),
  41315. weight: math.unit(463, "lb"),
  41316. name: "Front",
  41317. image: {
  41318. source: "./media/characters/melwa/front.svg",
  41319. extra: 1307/1248,
  41320. bottom: 93/1400
  41321. }
  41322. },
  41323. },
  41324. [
  41325. {
  41326. name: "Macro",
  41327. height: math.unit(50, "meters"),
  41328. default: true
  41329. },
  41330. ]
  41331. ))
  41332. characterMakers.push(() => makeCharacter(
  41333. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41334. {
  41335. front: {
  41336. height: math.unit(325, "feet"),
  41337. name: "Front",
  41338. image: {
  41339. source: "./media/characters/zorkaiju/front.svg",
  41340. extra: 1955/1814,
  41341. bottom: 40/1995
  41342. }
  41343. },
  41344. frontExtended: {
  41345. height: math.unit(325, "feet"),
  41346. name: "Front (Extended)",
  41347. image: {
  41348. source: "./media/characters/zorkaiju/front-extended.svg",
  41349. extra: 1955/1814,
  41350. bottom: 40/1995
  41351. }
  41352. },
  41353. side: {
  41354. height: math.unit(325, "feet"),
  41355. name: "Side",
  41356. image: {
  41357. source: "./media/characters/zorkaiju/side.svg",
  41358. extra: 1495/1396,
  41359. bottom: 17/1512
  41360. }
  41361. },
  41362. sideExtended: {
  41363. height: math.unit(325, "feet"),
  41364. name: "Side (Extended)",
  41365. image: {
  41366. source: "./media/characters/zorkaiju/side-extended.svg",
  41367. extra: 1495/1396,
  41368. bottom: 17/1512
  41369. }
  41370. },
  41371. back: {
  41372. height: math.unit(325, "feet"),
  41373. name: "Back",
  41374. image: {
  41375. source: "./media/characters/zorkaiju/back.svg",
  41376. extra: 1959/1821,
  41377. bottom: 31/1990
  41378. }
  41379. },
  41380. backExtended: {
  41381. height: math.unit(325, "feet"),
  41382. name: "Back (Extended)",
  41383. image: {
  41384. source: "./media/characters/zorkaiju/back-extended.svg",
  41385. extra: 1959/1821,
  41386. bottom: 31/1990
  41387. }
  41388. },
  41389. hand: {
  41390. height: math.unit(58.4, "feet"),
  41391. name: "Hand",
  41392. image: {
  41393. source: "./media/characters/zorkaiju/hand.svg"
  41394. }
  41395. },
  41396. handExtended: {
  41397. height: math.unit(61.4, "feet"),
  41398. name: "Hand (Extended)",
  41399. image: {
  41400. source: "./media/characters/zorkaiju/hand-extended.svg"
  41401. }
  41402. },
  41403. foot: {
  41404. height: math.unit(95, "feet"),
  41405. name: "Foot",
  41406. image: {
  41407. source: "./media/characters/zorkaiju/foot.svg"
  41408. }
  41409. },
  41410. leftArm: {
  41411. height: math.unit(59, "feet"),
  41412. name: "Left Arm",
  41413. image: {
  41414. source: "./media/characters/zorkaiju/left-arm.svg"
  41415. }
  41416. },
  41417. rightArm: {
  41418. height: math.unit(59, "feet"),
  41419. name: "Right Arm",
  41420. image: {
  41421. source: "./media/characters/zorkaiju/right-arm.svg"
  41422. }
  41423. },
  41424. tail: {
  41425. height: math.unit(104, "feet"),
  41426. name: "Tail",
  41427. image: {
  41428. source: "./media/characters/zorkaiju/tail.svg"
  41429. }
  41430. },
  41431. tailExtended: {
  41432. height: math.unit(104, "feet"),
  41433. name: "Tail (Extended)",
  41434. image: {
  41435. source: "./media/characters/zorkaiju/tail-extended.svg"
  41436. }
  41437. },
  41438. tailBottom: {
  41439. height: math.unit(104, "feet"),
  41440. name: "Tail Bottom",
  41441. image: {
  41442. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41443. }
  41444. },
  41445. crystal: {
  41446. height: math.unit(27.54, "feet"),
  41447. name: "Crystal",
  41448. image: {
  41449. source: "./media/characters/zorkaiju/crystal.svg"
  41450. }
  41451. },
  41452. },
  41453. [
  41454. {
  41455. name: "Kaiju",
  41456. height: math.unit(325, "feet"),
  41457. default: true
  41458. },
  41459. ]
  41460. ))
  41461. characterMakers.push(() => makeCharacter(
  41462. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41463. {
  41464. front: {
  41465. height: math.unit(6 + 1/12, "feet"),
  41466. weight: math.unit(115, "lb"),
  41467. name: "Front",
  41468. image: {
  41469. source: "./media/characters/bailey-belfry/front.svg",
  41470. extra: 1240/1121,
  41471. bottom: 101/1341
  41472. }
  41473. },
  41474. },
  41475. [
  41476. {
  41477. name: "Normal",
  41478. height: math.unit(6 + 1/12, "feet"),
  41479. default: true
  41480. },
  41481. ]
  41482. ))
  41483. characterMakers.push(() => makeCharacter(
  41484. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41485. {
  41486. side: {
  41487. height: math.unit(4, "meters"),
  41488. weight: math.unit(250, "kg"),
  41489. name: "Side",
  41490. image: {
  41491. source: "./media/characters/blacky/side.svg",
  41492. extra: 1027/919,
  41493. bottom: 43/1070
  41494. }
  41495. },
  41496. maw: {
  41497. height: math.unit(1, "meters"),
  41498. name: "Maw",
  41499. image: {
  41500. source: "./media/characters/blacky/maw.svg"
  41501. }
  41502. },
  41503. paw: {
  41504. height: math.unit(1, "meters"),
  41505. name: "Paw",
  41506. image: {
  41507. source: "./media/characters/blacky/paw.svg"
  41508. }
  41509. },
  41510. },
  41511. [
  41512. {
  41513. name: "Normal",
  41514. height: math.unit(4, "meters"),
  41515. default: true
  41516. },
  41517. ]
  41518. ))
  41519. characterMakers.push(() => makeCharacter(
  41520. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41521. {
  41522. front: {
  41523. height: math.unit(170, "cm"),
  41524. weight: math.unit(66, "kg"),
  41525. name: "Front",
  41526. image: {
  41527. source: "./media/characters/thux-ei/front.svg",
  41528. extra: 1109/1011,
  41529. bottom: 8/1117
  41530. }
  41531. },
  41532. },
  41533. [
  41534. {
  41535. name: "Normal",
  41536. height: math.unit(170, "cm"),
  41537. default: true
  41538. },
  41539. ]
  41540. ))
  41541. characterMakers.push(() => makeCharacter(
  41542. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41543. {
  41544. front: {
  41545. height: math.unit(5, "feet"),
  41546. weight: math.unit(120, "lb"),
  41547. name: "Front",
  41548. image: {
  41549. source: "./media/characters/roxanne-voltaire/front.svg",
  41550. extra: 1901/1779,
  41551. bottom: 53/1954
  41552. }
  41553. },
  41554. },
  41555. [
  41556. {
  41557. name: "Normal",
  41558. height: math.unit(5, "feet"),
  41559. default: true
  41560. },
  41561. {
  41562. name: "Giant",
  41563. height: math.unit(50, "feet")
  41564. },
  41565. {
  41566. name: "Titan",
  41567. height: math.unit(500, "feet")
  41568. },
  41569. {
  41570. name: "Macro",
  41571. height: math.unit(5000, "feet")
  41572. },
  41573. {
  41574. name: "Megamacro",
  41575. height: math.unit(50000, "feet")
  41576. },
  41577. {
  41578. name: "Gigamacro",
  41579. height: math.unit(500000, "feet")
  41580. },
  41581. {
  41582. name: "Teramacro",
  41583. height: math.unit(5e6, "feet")
  41584. },
  41585. ]
  41586. ))
  41587. characterMakers.push(() => makeCharacter(
  41588. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41589. {
  41590. front: {
  41591. height: math.unit(6 + 2/12, "feet"),
  41592. name: "Front",
  41593. image: {
  41594. source: "./media/characters/squeaks/front.svg",
  41595. extra: 1823/1768,
  41596. bottom: 138/1961
  41597. }
  41598. },
  41599. },
  41600. [
  41601. {
  41602. name: "Micro",
  41603. height: math.unit(0.5, "inches")
  41604. },
  41605. {
  41606. name: "Normal",
  41607. height: math.unit(6 + 2/12, "feet"),
  41608. default: true
  41609. },
  41610. {
  41611. name: "Macro",
  41612. height: math.unit(600, "feet")
  41613. },
  41614. ]
  41615. ))
  41616. characterMakers.push(() => makeCharacter(
  41617. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41618. {
  41619. front: {
  41620. height: math.unit(1.72, "meters"),
  41621. name: "Front",
  41622. image: {
  41623. source: "./media/characters/archinger/front.svg",
  41624. extra: 1861/1675,
  41625. bottom: 125/1986
  41626. }
  41627. },
  41628. back: {
  41629. height: math.unit(1.72, "meters"),
  41630. name: "Back",
  41631. image: {
  41632. source: "./media/characters/archinger/back.svg",
  41633. extra: 1844/1701,
  41634. bottom: 104/1948
  41635. }
  41636. },
  41637. cock: {
  41638. height: math.unit(0.59, "feet"),
  41639. name: "Cock",
  41640. image: {
  41641. source: "./media/characters/archinger/cock.svg"
  41642. }
  41643. },
  41644. },
  41645. [
  41646. {
  41647. name: "Normal",
  41648. height: math.unit(1.72, "meters"),
  41649. default: true
  41650. },
  41651. {
  41652. name: "Macro",
  41653. height: math.unit(84, "meters")
  41654. },
  41655. {
  41656. name: "Macro+",
  41657. height: math.unit(112, "meters")
  41658. },
  41659. {
  41660. name: "Macro++",
  41661. height: math.unit(960, "meters")
  41662. },
  41663. {
  41664. name: "Macro+++",
  41665. height: math.unit(4, "km")
  41666. },
  41667. {
  41668. name: "Macro++++",
  41669. height: math.unit(48, "km")
  41670. },
  41671. {
  41672. name: "Macro+++++",
  41673. height: math.unit(4500, "km")
  41674. },
  41675. ]
  41676. ))
  41677. characterMakers.push(() => makeCharacter(
  41678. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41679. {
  41680. front: {
  41681. height: math.unit(5 + 5/12, "feet"),
  41682. name: "Front",
  41683. image: {
  41684. source: "./media/characters/alsnapz/front.svg",
  41685. extra: 1157/1065,
  41686. bottom: 42/1199
  41687. }
  41688. },
  41689. },
  41690. [
  41691. {
  41692. name: "Normal",
  41693. height: math.unit(5 + 5/12, "feet"),
  41694. default: true
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41700. {
  41701. side: {
  41702. height: math.unit(3.2, "earths"),
  41703. name: "Side",
  41704. image: {
  41705. source: "./media/characters/mag/side.svg",
  41706. extra: 1331/1008,
  41707. bottom: 52/1383
  41708. }
  41709. },
  41710. wing: {
  41711. height: math.unit(1.94, "earths"),
  41712. name: "Wing",
  41713. image: {
  41714. source: "./media/characters/mag/wing.svg"
  41715. }
  41716. },
  41717. dick: {
  41718. height: math.unit(1.8, "earths"),
  41719. name: "Dick",
  41720. image: {
  41721. source: "./media/characters/mag/dick.svg"
  41722. }
  41723. },
  41724. ass: {
  41725. height: math.unit(1.33, "earths"),
  41726. name: "Ass",
  41727. image: {
  41728. source: "./media/characters/mag/ass.svg"
  41729. }
  41730. },
  41731. head: {
  41732. height: math.unit(1.1, "earths"),
  41733. name: "Head",
  41734. image: {
  41735. source: "./media/characters/mag/head.svg"
  41736. }
  41737. },
  41738. maw: {
  41739. height: math.unit(1.62, "earths"),
  41740. name: "Maw",
  41741. image: {
  41742. source: "./media/characters/mag/maw.svg"
  41743. }
  41744. },
  41745. },
  41746. [
  41747. {
  41748. name: "Small",
  41749. height: math.unit(162, "feet")
  41750. },
  41751. {
  41752. name: "Normal",
  41753. height: math.unit(3.2, "earths"),
  41754. default: true
  41755. },
  41756. ]
  41757. ))
  41758. characterMakers.push(() => makeCharacter(
  41759. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41760. {
  41761. front: {
  41762. height: math.unit(512, "feet"),
  41763. weight: math.unit(63509, "tonnes"),
  41764. name: "Front",
  41765. image: {
  41766. source: "./media/characters/vorrel-harroc/front.svg",
  41767. extra: 1075/1063,
  41768. bottom: 62/1137
  41769. }
  41770. },
  41771. },
  41772. [
  41773. {
  41774. name: "Normal",
  41775. height: math.unit(10, "feet")
  41776. },
  41777. {
  41778. name: "Macro",
  41779. height: math.unit(512, "feet"),
  41780. default: true
  41781. },
  41782. {
  41783. name: "Megamacro",
  41784. height: math.unit(256, "miles")
  41785. },
  41786. {
  41787. name: "Gigamacro",
  41788. height: math.unit(4096, "miles")
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41794. {
  41795. side: {
  41796. height: math.unit(50, "feet"),
  41797. name: "Side",
  41798. image: {
  41799. source: "./media/characters/froimar/side.svg",
  41800. extra: 855/638,
  41801. bottom: 99/954
  41802. }
  41803. },
  41804. },
  41805. [
  41806. {
  41807. name: "Macro",
  41808. height: math.unit(50, "feet"),
  41809. default: true
  41810. },
  41811. ]
  41812. ))
  41813. characterMakers.push(() => makeCharacter(
  41814. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41815. {
  41816. front: {
  41817. height: math.unit(210, "miles"),
  41818. name: "Front",
  41819. image: {
  41820. source: "./media/characters/timothy/front.svg",
  41821. extra: 1007/943,
  41822. bottom: 62/1069
  41823. }
  41824. },
  41825. frontSkirt: {
  41826. height: math.unit(210, "miles"),
  41827. name: "Front (Skirt)",
  41828. image: {
  41829. source: "./media/characters/timothy/front-skirt.svg",
  41830. extra: 1007/943,
  41831. bottom: 62/1069
  41832. }
  41833. },
  41834. frontCoat: {
  41835. height: math.unit(210, "miles"),
  41836. name: "Front (Coat)",
  41837. image: {
  41838. source: "./media/characters/timothy/front-coat.svg",
  41839. extra: 1007/943,
  41840. bottom: 62/1069
  41841. }
  41842. },
  41843. },
  41844. [
  41845. {
  41846. name: "Macro",
  41847. height: math.unit(210, "miles"),
  41848. default: true
  41849. },
  41850. {
  41851. name: "Megamacro",
  41852. height: math.unit(210000, "miles")
  41853. },
  41854. ]
  41855. ))
  41856. characterMakers.push(() => makeCharacter(
  41857. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41858. {
  41859. front: {
  41860. height: math.unit(188, "feet"),
  41861. name: "Front",
  41862. image: {
  41863. source: "./media/characters/pyotr/front.svg",
  41864. extra: 1912/1826,
  41865. bottom: 18/1930
  41866. }
  41867. },
  41868. },
  41869. [
  41870. {
  41871. name: "Macro",
  41872. height: math.unit(188, "feet"),
  41873. default: true
  41874. },
  41875. {
  41876. name: "Megamacro",
  41877. height: math.unit(8, "miles")
  41878. },
  41879. ]
  41880. ))
  41881. characterMakers.push(() => makeCharacter(
  41882. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41883. {
  41884. side: {
  41885. height: math.unit(10, "feet"),
  41886. weight: math.unit(4500, "lb"),
  41887. name: "Side",
  41888. image: {
  41889. source: "./media/characters/ackart/side.svg",
  41890. extra: 1776/1668,
  41891. bottom: 116/1892
  41892. }
  41893. },
  41894. },
  41895. [
  41896. {
  41897. name: "Normal",
  41898. height: math.unit(10, "feet"),
  41899. default: true
  41900. },
  41901. ]
  41902. ))
  41903. characterMakers.push(() => makeCharacter(
  41904. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41905. {
  41906. side: {
  41907. height: math.unit(21, "feet"),
  41908. name: "Side",
  41909. image: {
  41910. source: "./media/characters/nolow/side.svg",
  41911. extra: 1484/1434,
  41912. bottom: 85/1569
  41913. }
  41914. },
  41915. sideErect: {
  41916. height: math.unit(21, "feet"),
  41917. name: "Side-erect",
  41918. image: {
  41919. source: "./media/characters/nolow/side-erect.svg",
  41920. extra: 1484/1434,
  41921. bottom: 85/1569
  41922. }
  41923. },
  41924. },
  41925. [
  41926. {
  41927. name: "Regular",
  41928. height: math.unit(12, "feet")
  41929. },
  41930. {
  41931. name: "Big Chee",
  41932. height: math.unit(21, "feet"),
  41933. default: true
  41934. },
  41935. ]
  41936. ))
  41937. characterMakers.push(() => makeCharacter(
  41938. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41939. {
  41940. front: {
  41941. height: math.unit(7, "feet"),
  41942. weight: math.unit(250, "lb"),
  41943. name: "Front",
  41944. image: {
  41945. source: "./media/characters/nines/front.svg",
  41946. extra: 1741/1607,
  41947. bottom: 41/1782
  41948. }
  41949. },
  41950. side: {
  41951. height: math.unit(7, "feet"),
  41952. weight: math.unit(250, "lb"),
  41953. name: "Side",
  41954. image: {
  41955. source: "./media/characters/nines/side.svg",
  41956. extra: 1854/1735,
  41957. bottom: 93/1947
  41958. }
  41959. },
  41960. back: {
  41961. height: math.unit(7, "feet"),
  41962. weight: math.unit(250, "lb"),
  41963. name: "Back",
  41964. image: {
  41965. source: "./media/characters/nines/back.svg",
  41966. extra: 1748/1615,
  41967. bottom: 20/1768
  41968. }
  41969. },
  41970. },
  41971. [
  41972. {
  41973. name: "Megamacro",
  41974. height: math.unit(99, "km"),
  41975. default: true
  41976. },
  41977. ]
  41978. ))
  41979. characterMakers.push(() => makeCharacter(
  41980. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41981. {
  41982. front: {
  41983. height: math.unit(5 + 10/12, "feet"),
  41984. weight: math.unit(210, "lb"),
  41985. name: "Front",
  41986. image: {
  41987. source: "./media/characters/zenith/front.svg",
  41988. extra: 1531/1452,
  41989. bottom: 198/1729
  41990. }
  41991. },
  41992. back: {
  41993. height: math.unit(5 + 10/12, "feet"),
  41994. weight: math.unit(210, "lb"),
  41995. name: "Back",
  41996. image: {
  41997. source: "./media/characters/zenith/back.svg",
  41998. extra: 1571/1487,
  41999. bottom: 75/1646
  42000. }
  42001. },
  42002. },
  42003. [
  42004. {
  42005. name: "Normal",
  42006. height: math.unit(5 + 10/12, "feet"),
  42007. default: true
  42008. }
  42009. ]
  42010. ))
  42011. characterMakers.push(() => makeCharacter(
  42012. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42013. {
  42014. front: {
  42015. height: math.unit(4, "feet"),
  42016. weight: math.unit(60, "lb"),
  42017. name: "Front",
  42018. image: {
  42019. source: "./media/characters/jasper/front.svg",
  42020. extra: 1450/1379,
  42021. bottom: 19/1469
  42022. }
  42023. },
  42024. },
  42025. [
  42026. {
  42027. name: "Normal",
  42028. height: math.unit(4, "feet"),
  42029. default: true
  42030. },
  42031. ]
  42032. ))
  42033. characterMakers.push(() => makeCharacter(
  42034. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42035. {
  42036. front: {
  42037. height: math.unit(6 + 5/12, "feet"),
  42038. weight: math.unit(290, "lb"),
  42039. name: "Front",
  42040. image: {
  42041. source: "./media/characters/tiberius-thyben/front.svg",
  42042. extra: 757/739,
  42043. bottom: 39/796
  42044. }
  42045. },
  42046. },
  42047. [
  42048. {
  42049. name: "Micro",
  42050. height: math.unit(1.5, "inches")
  42051. },
  42052. {
  42053. name: "Normal",
  42054. height: math.unit(6 + 5/12, "feet"),
  42055. default: true
  42056. },
  42057. {
  42058. name: "Macro",
  42059. height: math.unit(300, "feet")
  42060. },
  42061. ]
  42062. ))
  42063. characterMakers.push(() => makeCharacter(
  42064. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42065. {
  42066. front: {
  42067. height: math.unit(5 + 6/12, "feet"),
  42068. weight: math.unit(60, "kg"),
  42069. name: "Front",
  42070. image: {
  42071. source: "./media/characters/sabre/front.svg",
  42072. extra: 738/671,
  42073. bottom: 27/765
  42074. }
  42075. },
  42076. },
  42077. [
  42078. {
  42079. name: "Teeny",
  42080. height: math.unit(2, "inches")
  42081. },
  42082. {
  42083. name: "Smol",
  42084. height: math.unit(8, "inches")
  42085. },
  42086. {
  42087. name: "Normal",
  42088. height: math.unit(5 + 6/12, "feet"),
  42089. default: true
  42090. },
  42091. {
  42092. name: "Mini-Macro",
  42093. height: math.unit(15, "feet")
  42094. },
  42095. {
  42096. name: "Macro",
  42097. height: math.unit(50, "feet")
  42098. },
  42099. ]
  42100. ))
  42101. characterMakers.push(() => makeCharacter(
  42102. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42103. {
  42104. front: {
  42105. height: math.unit(6 + 4/12, "feet"),
  42106. weight: math.unit(170, "lb"),
  42107. name: "Front",
  42108. image: {
  42109. source: "./media/characters/charlie/front.svg",
  42110. extra: 1348/1228,
  42111. bottom: 15/1363
  42112. }
  42113. },
  42114. },
  42115. [
  42116. {
  42117. name: "Macro",
  42118. height: math.unit(1700, "meters"),
  42119. default: true
  42120. },
  42121. {
  42122. name: "MegaMacro",
  42123. height: math.unit(20400, "meters")
  42124. },
  42125. ]
  42126. ))
  42127. characterMakers.push(() => makeCharacter(
  42128. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42129. {
  42130. front: {
  42131. height: math.unit(6 + 3/12, "feet"),
  42132. weight: math.unit(185, "lb"),
  42133. name: "Front",
  42134. image: {
  42135. source: "./media/characters/susan-grant/front.svg",
  42136. extra: 1351/1327,
  42137. bottom: 26/1377
  42138. }
  42139. },
  42140. },
  42141. [
  42142. {
  42143. name: "Normal",
  42144. height: math.unit(6 + 3/12, "feet"),
  42145. default: true
  42146. },
  42147. {
  42148. name: "Macro",
  42149. height: math.unit(225, "feet")
  42150. },
  42151. {
  42152. name: "Macro+",
  42153. height: math.unit(900, "feet")
  42154. },
  42155. {
  42156. name: "MegaMacro",
  42157. height: math.unit(14400, "feet")
  42158. },
  42159. ]
  42160. ))
  42161. characterMakers.push(() => makeCharacter(
  42162. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42163. {
  42164. front: {
  42165. height: math.unit(5 + 4/12, "feet"),
  42166. weight: math.unit(110, "lb"),
  42167. name: "Front",
  42168. image: {
  42169. source: "./media/characters/axel-isanov/front.svg",
  42170. extra: 1096/1065,
  42171. bottom: 13/1109
  42172. }
  42173. },
  42174. },
  42175. [
  42176. {
  42177. name: "Normal",
  42178. height: math.unit(5 + 4/12, "feet"),
  42179. default: true
  42180. },
  42181. ]
  42182. ))
  42183. characterMakers.push(() => makeCharacter(
  42184. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42185. {
  42186. front: {
  42187. height: math.unit(9, "feet"),
  42188. weight: math.unit(467, "lb"),
  42189. name: "Front",
  42190. image: {
  42191. source: "./media/characters/necahual/front.svg",
  42192. extra: 920/873,
  42193. bottom: 26/946
  42194. }
  42195. },
  42196. back: {
  42197. height: math.unit(9, "feet"),
  42198. weight: math.unit(467, "lb"),
  42199. name: "Back",
  42200. image: {
  42201. source: "./media/characters/necahual/back.svg",
  42202. extra: 930/884,
  42203. bottom: 16/946
  42204. }
  42205. },
  42206. frontUnderwear: {
  42207. height: math.unit(9, "feet"),
  42208. weight: math.unit(467, "lb"),
  42209. name: "Front (Underwear)",
  42210. image: {
  42211. source: "./media/characters/necahual/front-underwear.svg",
  42212. extra: 920/873,
  42213. bottom: 26/946
  42214. }
  42215. },
  42216. frontDressed: {
  42217. height: math.unit(9, "feet"),
  42218. weight: math.unit(467, "lb"),
  42219. name: "Front (Dressed)",
  42220. image: {
  42221. source: "./media/characters/necahual/front-dressed.svg",
  42222. extra: 920/873,
  42223. bottom: 26/946
  42224. }
  42225. },
  42226. },
  42227. [
  42228. {
  42229. name: "Comprsesed",
  42230. height: math.unit(9, "feet")
  42231. },
  42232. {
  42233. name: "Natural",
  42234. height: math.unit(15, "feet"),
  42235. default: true
  42236. },
  42237. {
  42238. name: "Boosted",
  42239. height: math.unit(50, "feet")
  42240. },
  42241. {
  42242. name: "Boosted+",
  42243. height: math.unit(150, "feet")
  42244. },
  42245. {
  42246. name: "Max",
  42247. height: math.unit(500, "feet")
  42248. },
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42253. {
  42254. front: {
  42255. height: math.unit(22 + 1/12, "feet"),
  42256. weight: math.unit(3200, "lb"),
  42257. name: "Front",
  42258. image: {
  42259. source: "./media/characters/theo-acacia/front.svg",
  42260. extra: 1796/1741,
  42261. bottom: 83/1879
  42262. }
  42263. },
  42264. frontUnderwear: {
  42265. height: math.unit(22 + 1/12, "feet"),
  42266. weight: math.unit(3200, "lb"),
  42267. name: "Front (Underwear)",
  42268. image: {
  42269. source: "./media/characters/theo-acacia/front-underwear.svg",
  42270. extra: 1796/1741,
  42271. bottom: 83/1879
  42272. }
  42273. },
  42274. frontNude: {
  42275. height: math.unit(22 + 1/12, "feet"),
  42276. weight: math.unit(3200, "lb"),
  42277. name: "Front (Nude)",
  42278. image: {
  42279. source: "./media/characters/theo-acacia/front-nude.svg",
  42280. extra: 1796/1741,
  42281. bottom: 83/1879
  42282. }
  42283. },
  42284. },
  42285. [
  42286. {
  42287. name: "Normal",
  42288. height: math.unit(22 + 1/12, "feet"),
  42289. default: true
  42290. },
  42291. ]
  42292. ))
  42293. characterMakers.push(() => makeCharacter(
  42294. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42295. {
  42296. front: {
  42297. height: math.unit(20, "feet"),
  42298. name: "Front",
  42299. image: {
  42300. source: "./media/characters/astra/front.svg",
  42301. extra: 1850/1714,
  42302. bottom: 106/1956
  42303. }
  42304. },
  42305. frontUndressed: {
  42306. height: math.unit(20, "feet"),
  42307. name: "Front (Undressed)",
  42308. image: {
  42309. source: "./media/characters/astra/front-undressed.svg",
  42310. extra: 1926/1749,
  42311. bottom: 0/1926
  42312. }
  42313. },
  42314. hand: {
  42315. height: math.unit(1.53, "feet"),
  42316. name: "Hand",
  42317. image: {
  42318. source: "./media/characters/astra/hand.svg"
  42319. }
  42320. },
  42321. paw: {
  42322. height: math.unit(1.53, "feet"),
  42323. name: "Paw",
  42324. image: {
  42325. source: "./media/characters/astra/paw.svg"
  42326. }
  42327. },
  42328. },
  42329. [
  42330. {
  42331. name: "Smallest",
  42332. height: math.unit(20, "feet")
  42333. },
  42334. {
  42335. name: "Normal",
  42336. height: math.unit(1e9, "miles"),
  42337. default: true
  42338. },
  42339. {
  42340. name: "Larger",
  42341. height: math.unit(5, "multiverses")
  42342. },
  42343. {
  42344. name: "Largest",
  42345. height: math.unit(1e9, "multiverses")
  42346. },
  42347. ]
  42348. ))
  42349. characterMakers.push(() => makeCharacter(
  42350. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42351. {
  42352. front: {
  42353. height: math.unit(8, "feet"),
  42354. name: "Front",
  42355. image: {
  42356. source: "./media/characters/breanna/front.svg",
  42357. extra: 1912/1632,
  42358. bottom: 33/1945
  42359. }
  42360. },
  42361. },
  42362. [
  42363. {
  42364. name: "Smallest",
  42365. height: math.unit(8, "feet")
  42366. },
  42367. {
  42368. name: "Normal",
  42369. height: math.unit(1, "mile"),
  42370. default: true
  42371. },
  42372. {
  42373. name: "Maximum",
  42374. height: math.unit(1500000000000, "lightyears")
  42375. },
  42376. ]
  42377. ))
  42378. characterMakers.push(() => makeCharacter(
  42379. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42380. {
  42381. front: {
  42382. height: math.unit(5 + 11/12, "feet"),
  42383. weight: math.unit(155, "lb"),
  42384. name: "Front",
  42385. image: {
  42386. source: "./media/characters/cai/front.svg",
  42387. extra: 1823/1702,
  42388. bottom: 32/1855
  42389. }
  42390. },
  42391. back: {
  42392. height: math.unit(5 + 11/12, "feet"),
  42393. weight: math.unit(155, "lb"),
  42394. name: "Back",
  42395. image: {
  42396. source: "./media/characters/cai/back.svg",
  42397. extra: 1809/1708,
  42398. bottom: 31/1840
  42399. }
  42400. },
  42401. },
  42402. [
  42403. {
  42404. name: "Normal",
  42405. height: math.unit(5 + 11/12, "feet"),
  42406. default: true
  42407. },
  42408. {
  42409. name: "Big",
  42410. height: math.unit(15, "feet")
  42411. },
  42412. {
  42413. name: "Macro",
  42414. height: math.unit(200, "feet")
  42415. },
  42416. ]
  42417. ))
  42418. characterMakers.push(() => makeCharacter(
  42419. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42420. {
  42421. front: {
  42422. height: math.unit(5 + 6/12, "feet"),
  42423. weight: math.unit(160, "lb"),
  42424. name: "Front",
  42425. image: {
  42426. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42427. extra: 1227/1174,
  42428. bottom: 37/1264
  42429. }
  42430. },
  42431. },
  42432. [
  42433. {
  42434. name: "Macro",
  42435. height: math.unit(444, "meters"),
  42436. default: true
  42437. },
  42438. ]
  42439. ))
  42440. characterMakers.push(() => makeCharacter(
  42441. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42442. {
  42443. front: {
  42444. height: math.unit(18 + 7/12, "feet"),
  42445. name: "Front",
  42446. image: {
  42447. source: "./media/characters/rex/front.svg",
  42448. extra: 1941/1807,
  42449. bottom: 66/2007
  42450. }
  42451. },
  42452. back: {
  42453. height: math.unit(18 + 7/12, "feet"),
  42454. name: "Back",
  42455. image: {
  42456. source: "./media/characters/rex/back.svg",
  42457. extra: 1937/1822,
  42458. bottom: 42/1979
  42459. }
  42460. },
  42461. boot: {
  42462. height: math.unit(3.45, "feet"),
  42463. name: "Boot",
  42464. image: {
  42465. source: "./media/characters/rex/boot.svg"
  42466. }
  42467. },
  42468. paw: {
  42469. height: math.unit(4.17, "feet"),
  42470. name: "Paw",
  42471. image: {
  42472. source: "./media/characters/rex/paw.svg"
  42473. }
  42474. },
  42475. head: {
  42476. height: math.unit(6.728, "feet"),
  42477. name: "Head",
  42478. image: {
  42479. source: "./media/characters/rex/head.svg"
  42480. }
  42481. },
  42482. },
  42483. [
  42484. {
  42485. name: "Nano",
  42486. height: math.unit(18 + 7/12, "feet")
  42487. },
  42488. {
  42489. name: "Micro",
  42490. height: math.unit(1.5, "megameters")
  42491. },
  42492. {
  42493. name: "Normal",
  42494. height: math.unit(440, "megameters"),
  42495. default: true
  42496. },
  42497. {
  42498. name: "Macro",
  42499. height: math.unit(2.5, "gigameters")
  42500. },
  42501. {
  42502. name: "Gigamacro",
  42503. height: math.unit(2, "galaxies")
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42509. {
  42510. side: {
  42511. height: math.unit(32, "feet"),
  42512. weight: math.unit(250000, "lb"),
  42513. name: "Side",
  42514. image: {
  42515. source: "./media/characters/silverwing/side.svg",
  42516. extra: 1100/1019,
  42517. bottom: 204/1304
  42518. }
  42519. },
  42520. },
  42521. [
  42522. {
  42523. name: "Normal",
  42524. height: math.unit(32, "feet"),
  42525. default: true
  42526. },
  42527. ]
  42528. ))
  42529. characterMakers.push(() => makeCharacter(
  42530. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42531. {
  42532. front: {
  42533. height: math.unit(6 + 6/12, "feet"),
  42534. weight: math.unit(350, "lb"),
  42535. name: "Front",
  42536. image: {
  42537. source: "./media/characters/tristan-hawthorne/front.svg",
  42538. extra: 1159/1124,
  42539. bottom: 37/1196
  42540. },
  42541. form: "labrador",
  42542. default: true
  42543. },
  42544. skunkFront: {
  42545. height: math.unit(4 + 6/12, "feet"),
  42546. weight: math.unit(120, "lb"),
  42547. name: "Front",
  42548. image: {
  42549. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42550. extra: 1609/1551,
  42551. bottom: 169/1778
  42552. },
  42553. form: "skunk",
  42554. default: true
  42555. },
  42556. },
  42557. [
  42558. {
  42559. name: "Normal",
  42560. height: math.unit(6 + 6/12, "feet"),
  42561. form: "labrador",
  42562. default: true
  42563. },
  42564. {
  42565. name: "Normal",
  42566. height: math.unit(4 + 6/12, "feet"),
  42567. form: "skunk",
  42568. default: true
  42569. },
  42570. ],
  42571. {
  42572. "labrador": {
  42573. name: "Labrador",
  42574. default: true
  42575. },
  42576. "skunk": {
  42577. name: "Skunk"
  42578. }
  42579. }
  42580. ))
  42581. characterMakers.push(() => makeCharacter(
  42582. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42583. {
  42584. front: {
  42585. height: math.unit(5 + 11/12, "feet"),
  42586. weight: math.unit(190, "lb"),
  42587. name: "Front",
  42588. image: {
  42589. source: "./media/characters/mizu/front.svg",
  42590. extra: 1988/1788,
  42591. bottom: 14/2002
  42592. }
  42593. },
  42594. },
  42595. [
  42596. {
  42597. name: "Normal",
  42598. height: math.unit(5 + 11/12, "feet"),
  42599. default: true
  42600. },
  42601. ]
  42602. ))
  42603. characterMakers.push(() => makeCharacter(
  42604. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42605. {
  42606. front: {
  42607. height: math.unit(1.7, "feet"),
  42608. weight: math.unit(50, "lb"),
  42609. name: "Front",
  42610. image: {
  42611. source: "./media/characters/dechroma/front.svg",
  42612. extra: 1095/859,
  42613. bottom: 64/1159
  42614. }
  42615. },
  42616. },
  42617. [
  42618. {
  42619. name: "Normal",
  42620. height: math.unit(1.7, "feet"),
  42621. default: true
  42622. },
  42623. ]
  42624. ))
  42625. characterMakers.push(() => makeCharacter(
  42626. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42627. {
  42628. side: {
  42629. height: math.unit(30, "feet"),
  42630. name: "Side",
  42631. image: {
  42632. source: "./media/characters/veluren-thanazel/side.svg",
  42633. extra: 1611/633,
  42634. bottom: 118/1729
  42635. }
  42636. },
  42637. front: {
  42638. height: math.unit(30, "feet"),
  42639. name: "Front",
  42640. image: {
  42641. source: "./media/characters/veluren-thanazel/front.svg",
  42642. extra: 1486/636,
  42643. bottom: 238/1724
  42644. }
  42645. },
  42646. head: {
  42647. height: math.unit(21.4, "feet"),
  42648. name: "Head",
  42649. image: {
  42650. source: "./media/characters/veluren-thanazel/head.svg"
  42651. }
  42652. },
  42653. genitals: {
  42654. height: math.unit(19.4, "feet"),
  42655. name: "Genitals",
  42656. image: {
  42657. source: "./media/characters/veluren-thanazel/genitals.svg"
  42658. }
  42659. },
  42660. },
  42661. [
  42662. {
  42663. name: "Social",
  42664. height: math.unit(6, "feet")
  42665. },
  42666. {
  42667. name: "Play",
  42668. height: math.unit(12, "feet")
  42669. },
  42670. {
  42671. name: "True",
  42672. height: math.unit(30, "feet"),
  42673. default: true
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(7 + 6/12, "feet"),
  42682. weight: math.unit(500, "kg"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/arcturas/front.svg",
  42686. extra: 1700/1500,
  42687. bottom: 145/1845
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Normal",
  42694. height: math.unit(7 + 6/12, "feet"),
  42695. default: true
  42696. },
  42697. ]
  42698. ))
  42699. characterMakers.push(() => makeCharacter(
  42700. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42701. {
  42702. side: {
  42703. height: math.unit(6, "feet"),
  42704. weight: math.unit(2, "tons"),
  42705. name: "Side",
  42706. image: {
  42707. source: "./media/characters/vitaen/side.svg",
  42708. extra: 1157/617,
  42709. bottom: 122/1279
  42710. }
  42711. },
  42712. },
  42713. [
  42714. {
  42715. name: "Normal",
  42716. height: math.unit(6, "feet"),
  42717. default: true
  42718. },
  42719. ]
  42720. ))
  42721. characterMakers.push(() => makeCharacter(
  42722. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42723. {
  42724. front: {
  42725. height: math.unit(19, "feet"),
  42726. name: "Front",
  42727. image: {
  42728. source: "./media/characters/fia-dreamweaver/front.svg",
  42729. extra: 1630/1504,
  42730. bottom: 25/1655
  42731. }
  42732. },
  42733. },
  42734. [
  42735. {
  42736. name: "Normal",
  42737. height: math.unit(19, "feet"),
  42738. default: true
  42739. },
  42740. ]
  42741. ))
  42742. characterMakers.push(() => makeCharacter(
  42743. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42744. {
  42745. front: {
  42746. height: math.unit(5 + 4/12, "feet"),
  42747. name: "Front",
  42748. image: {
  42749. source: "./media/characters/artan/front.svg",
  42750. extra: 1618/1535,
  42751. bottom: 46/1664
  42752. }
  42753. },
  42754. back: {
  42755. height: math.unit(5 + 4/12, "feet"),
  42756. name: "Back",
  42757. image: {
  42758. source: "./media/characters/artan/back.svg",
  42759. extra: 1618/1543,
  42760. bottom: 31/1649
  42761. }
  42762. },
  42763. },
  42764. [
  42765. {
  42766. name: "Normal",
  42767. height: math.unit(5 + 4/12, "feet"),
  42768. default: true
  42769. },
  42770. ]
  42771. ))
  42772. characterMakers.push(() => makeCharacter(
  42773. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42774. {
  42775. side: {
  42776. height: math.unit(182, "cm"),
  42777. weight: math.unit(1000, "lb"),
  42778. name: "Side",
  42779. image: {
  42780. source: "./media/characters/silver-dragon/side.svg",
  42781. extra: 710/287,
  42782. bottom: 88/798
  42783. }
  42784. },
  42785. },
  42786. [
  42787. {
  42788. name: "Normal",
  42789. height: math.unit(182, "cm"),
  42790. default: true
  42791. },
  42792. ]
  42793. ))
  42794. characterMakers.push(() => makeCharacter(
  42795. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42796. {
  42797. side: {
  42798. height: math.unit(6 + 6/12, "feet"),
  42799. weight: math.unit(1.5, "tons"),
  42800. name: "Side",
  42801. image: {
  42802. source: "./media/characters/zephyr/side.svg",
  42803. extra: 1433/586,
  42804. bottom: 109/1542
  42805. }
  42806. },
  42807. },
  42808. [
  42809. {
  42810. name: "Normal",
  42811. height: math.unit(6 + 6/12, "feet"),
  42812. default: true
  42813. },
  42814. ]
  42815. ))
  42816. characterMakers.push(() => makeCharacter(
  42817. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42818. {
  42819. side: {
  42820. height: math.unit(1, "feet"),
  42821. name: "Side",
  42822. image: {
  42823. source: "./media/characters/vixye/side.svg",
  42824. extra: 632/541,
  42825. bottom: 0/632
  42826. }
  42827. },
  42828. },
  42829. [
  42830. {
  42831. name: "Normal",
  42832. height: math.unit(1, "feet"),
  42833. default: true
  42834. },
  42835. {
  42836. name: "True",
  42837. height: math.unit(1e15, "multiverses")
  42838. },
  42839. ]
  42840. ))
  42841. characterMakers.push(() => makeCharacter(
  42842. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42843. {
  42844. front: {
  42845. height: math.unit(8 + 2/12, "feet"),
  42846. weight: math.unit(650, "lb"),
  42847. name: "Front",
  42848. image: {
  42849. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42850. extra: 1174/1137,
  42851. bottom: 82/1256
  42852. }
  42853. },
  42854. back: {
  42855. height: math.unit(8 + 2/12, "feet"),
  42856. weight: math.unit(650, "lb"),
  42857. name: "Back",
  42858. image: {
  42859. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42860. extra: 1204/1157,
  42861. bottom: 46/1250
  42862. }
  42863. },
  42864. },
  42865. [
  42866. {
  42867. name: "Wildform",
  42868. height: math.unit(8 + 2/12, "feet"),
  42869. default: true
  42870. },
  42871. ]
  42872. ))
  42873. characterMakers.push(() => makeCharacter(
  42874. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42875. {
  42876. front: {
  42877. height: math.unit(18, "feet"),
  42878. name: "Front",
  42879. image: {
  42880. source: "./media/characters/cyphin/front.svg",
  42881. extra: 970/886,
  42882. bottom: 42/1012
  42883. }
  42884. },
  42885. back: {
  42886. height: math.unit(18, "feet"),
  42887. name: "Back",
  42888. image: {
  42889. source: "./media/characters/cyphin/back.svg",
  42890. extra: 1009/894,
  42891. bottom: 24/1033
  42892. }
  42893. },
  42894. head: {
  42895. height: math.unit(5.05, "feet"),
  42896. name: "Head",
  42897. image: {
  42898. source: "./media/characters/cyphin/head.svg"
  42899. }
  42900. },
  42901. tailbud: {
  42902. height: math.unit(5, "feet"),
  42903. name: "Tailbud",
  42904. image: {
  42905. source: "./media/characters/cyphin/tailbud.svg"
  42906. }
  42907. },
  42908. },
  42909. [
  42910. ]
  42911. ))
  42912. characterMakers.push(() => makeCharacter(
  42913. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42914. {
  42915. side: {
  42916. height: math.unit(10, "feet"),
  42917. weight: math.unit(6, "tons"),
  42918. name: "Side",
  42919. image: {
  42920. source: "./media/characters/raijin/side.svg",
  42921. extra: 1529/613,
  42922. bottom: 337/1866
  42923. }
  42924. },
  42925. },
  42926. [
  42927. {
  42928. name: "Normal",
  42929. height: math.unit(10, "feet"),
  42930. default: true
  42931. },
  42932. ]
  42933. ))
  42934. characterMakers.push(() => makeCharacter(
  42935. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42936. {
  42937. side: {
  42938. height: math.unit(9, "feet"),
  42939. name: "Side",
  42940. image: {
  42941. source: "./media/characters/nilghais/side.svg",
  42942. extra: 1047/744,
  42943. bottom: 91/1138
  42944. }
  42945. },
  42946. head: {
  42947. height: math.unit(3.14, "feet"),
  42948. name: "Head",
  42949. image: {
  42950. source: "./media/characters/nilghais/head.svg"
  42951. }
  42952. },
  42953. mouth: {
  42954. height: math.unit(4.6, "feet"),
  42955. name: "Mouth",
  42956. image: {
  42957. source: "./media/characters/nilghais/mouth.svg"
  42958. }
  42959. },
  42960. wings: {
  42961. height: math.unit(24, "feet"),
  42962. name: "Wings",
  42963. image: {
  42964. source: "./media/characters/nilghais/wings.svg"
  42965. }
  42966. },
  42967. ass: {
  42968. height: math.unit(6.12, "feet"),
  42969. name: "Ass",
  42970. image: {
  42971. source: "./media/characters/nilghais/ass.svg"
  42972. }
  42973. },
  42974. },
  42975. [
  42976. {
  42977. name: "Normal",
  42978. height: math.unit(9, "feet"),
  42979. default: true
  42980. },
  42981. ]
  42982. ))
  42983. characterMakers.push(() => makeCharacter(
  42984. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42985. {
  42986. regular: {
  42987. height: math.unit(16 + 2/12, "feet"),
  42988. weight: math.unit(2300, "lb"),
  42989. name: "Regular",
  42990. image: {
  42991. source: "./media/characters/zolgar/regular.svg",
  42992. extra: 1246/1004,
  42993. bottom: 124/1370
  42994. }
  42995. },
  42996. boxers: {
  42997. height: math.unit(16 + 2/12, "feet"),
  42998. weight: math.unit(2300, "lb"),
  42999. name: "Boxers",
  43000. image: {
  43001. source: "./media/characters/zolgar/boxers.svg",
  43002. extra: 1246/1004,
  43003. bottom: 124/1370
  43004. }
  43005. },
  43006. armored: {
  43007. height: math.unit(16 + 2/12, "feet"),
  43008. weight: math.unit(2300, "lb"),
  43009. name: "Armored",
  43010. image: {
  43011. source: "./media/characters/zolgar/armored.svg",
  43012. extra: 1246/1004,
  43013. bottom: 124/1370
  43014. }
  43015. },
  43016. goth: {
  43017. height: math.unit(16 + 2/12, "feet"),
  43018. weight: math.unit(2300, "lb"),
  43019. name: "Goth",
  43020. image: {
  43021. source: "./media/characters/zolgar/goth.svg",
  43022. extra: 1246/1004,
  43023. bottom: 124/1370
  43024. }
  43025. },
  43026. },
  43027. [
  43028. {
  43029. name: "Shrunken Down",
  43030. height: math.unit(9 + 2/12, "feet")
  43031. },
  43032. {
  43033. name: "Normal",
  43034. height: math.unit(16 + 2/12, "feet"),
  43035. default: true
  43036. },
  43037. ]
  43038. ))
  43039. characterMakers.push(() => makeCharacter(
  43040. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43041. {
  43042. front: {
  43043. height: math.unit(6, "feet"),
  43044. weight: math.unit(168, "lb"),
  43045. name: "Front",
  43046. image: {
  43047. source: "./media/characters/luca/front.svg",
  43048. extra: 841/667,
  43049. bottom: 102/943
  43050. }
  43051. },
  43052. },
  43053. [
  43054. {
  43055. name: "Normal",
  43056. height: math.unit(6, "feet"),
  43057. default: true
  43058. },
  43059. ]
  43060. ))
  43061. characterMakers.push(() => makeCharacter(
  43062. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43063. {
  43064. side: {
  43065. height: math.unit(7 + 3/12, "feet"),
  43066. weight: math.unit(312, "lb"),
  43067. name: "Side",
  43068. image: {
  43069. source: "./media/characters/zezo/side.svg",
  43070. extra: 1192/1067,
  43071. bottom: 63/1255
  43072. }
  43073. },
  43074. },
  43075. [
  43076. {
  43077. name: "Normal",
  43078. height: math.unit(7 + 3/12, "feet"),
  43079. default: true
  43080. },
  43081. ]
  43082. ))
  43083. characterMakers.push(() => makeCharacter(
  43084. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43085. {
  43086. front: {
  43087. height: math.unit(5 + 5/12, "feet"),
  43088. weight: math.unit(170, "lb"),
  43089. name: "Front",
  43090. image: {
  43091. source: "./media/characters/mayso/front.svg",
  43092. extra: 1215/1108,
  43093. bottom: 16/1231
  43094. }
  43095. },
  43096. },
  43097. [
  43098. {
  43099. name: "Normal",
  43100. height: math.unit(5 + 5/12, "feet"),
  43101. default: true
  43102. },
  43103. ]
  43104. ))
  43105. characterMakers.push(() => makeCharacter(
  43106. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43107. {
  43108. front: {
  43109. height: math.unit(4 + 3/12, "feet"),
  43110. weight: math.unit(80, "lb"),
  43111. name: "Front",
  43112. image: {
  43113. source: "./media/characters/hess/front.svg",
  43114. extra: 1200/1123,
  43115. bottom: 16/1216
  43116. }
  43117. },
  43118. },
  43119. [
  43120. {
  43121. name: "Normal",
  43122. height: math.unit(4 + 3/12, "feet"),
  43123. default: true
  43124. },
  43125. ]
  43126. ))
  43127. characterMakers.push(() => makeCharacter(
  43128. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43129. {
  43130. front: {
  43131. height: math.unit(1.9, "meters"),
  43132. name: "Front",
  43133. image: {
  43134. source: "./media/characters/ashgar/front.svg",
  43135. extra: 1177/1146,
  43136. bottom: 99/1276
  43137. }
  43138. },
  43139. back: {
  43140. height: math.unit(1.9, "meters"),
  43141. name: "Back",
  43142. image: {
  43143. source: "./media/characters/ashgar/back.svg",
  43144. extra: 1201/1183,
  43145. bottom: 53/1254
  43146. }
  43147. },
  43148. feral: {
  43149. height: math.unit(1.4, "meters"),
  43150. name: "Feral",
  43151. image: {
  43152. source: "./media/characters/ashgar/feral.svg",
  43153. extra: 370/345,
  43154. bottom: 45/415
  43155. }
  43156. },
  43157. },
  43158. [
  43159. {
  43160. name: "Normal",
  43161. height: math.unit(1.9, "meters"),
  43162. default: true
  43163. },
  43164. ]
  43165. ))
  43166. characterMakers.push(() => makeCharacter(
  43167. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43168. {
  43169. regular: {
  43170. height: math.unit(6, "feet"),
  43171. weight: math.unit(220, "lb"),
  43172. name: "Regular",
  43173. image: {
  43174. source: "./media/characters/phillip/regular.svg",
  43175. extra: 1373/1277,
  43176. bottom: 75/1448
  43177. }
  43178. },
  43179. dressed: {
  43180. height: math.unit(6, "feet"),
  43181. weight: math.unit(220, "lb"),
  43182. name: "Dressed",
  43183. image: {
  43184. source: "./media/characters/phillip/dressed.svg",
  43185. extra: 1373/1277,
  43186. bottom: 75/1448
  43187. }
  43188. },
  43189. paw: {
  43190. height: math.unit(1.44, "feet"),
  43191. name: "Paw",
  43192. image: {
  43193. source: "./media/characters/phillip/paw.svg"
  43194. }
  43195. },
  43196. },
  43197. [
  43198. {
  43199. name: "Normal",
  43200. height: math.unit(6, "feet"),
  43201. default: true
  43202. },
  43203. ]
  43204. ))
  43205. characterMakers.push(() => makeCharacter(
  43206. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43207. {
  43208. side: {
  43209. height: math.unit(42, "feet"),
  43210. name: "Side",
  43211. image: {
  43212. source: "./media/characters/uvula/side.svg",
  43213. extra: 683/586,
  43214. bottom: 60/743
  43215. }
  43216. },
  43217. front: {
  43218. height: math.unit(42, "feet"),
  43219. name: "Front",
  43220. image: {
  43221. source: "./media/characters/uvula/front.svg",
  43222. extra: 705/613,
  43223. bottom: 54/759
  43224. }
  43225. },
  43226. maw: {
  43227. height: math.unit(23.5, "feet"),
  43228. name: "Maw",
  43229. image: {
  43230. source: "./media/characters/uvula/maw.svg"
  43231. }
  43232. },
  43233. },
  43234. [
  43235. {
  43236. name: "Original Size",
  43237. height: math.unit(14, "inches")
  43238. },
  43239. {
  43240. name: "Human Size",
  43241. height: math.unit(6, "feet")
  43242. },
  43243. {
  43244. name: "Big",
  43245. height: math.unit(42, "feet"),
  43246. default: true
  43247. },
  43248. {
  43249. name: "Bigger",
  43250. height: math.unit(100, "feet")
  43251. },
  43252. ]
  43253. ))
  43254. characterMakers.push(() => makeCharacter(
  43255. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43256. {
  43257. front: {
  43258. height: math.unit(5 + 11/12, "feet"),
  43259. name: "Front",
  43260. image: {
  43261. source: "./media/characters/lannah/front.svg",
  43262. extra: 1208/1113,
  43263. bottom: 97/1305
  43264. }
  43265. },
  43266. },
  43267. [
  43268. {
  43269. name: "Normal",
  43270. height: math.unit(5 + 11/12, "feet"),
  43271. default: true
  43272. },
  43273. ]
  43274. ))
  43275. characterMakers.push(() => makeCharacter(
  43276. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43277. {
  43278. front: {
  43279. height: math.unit(6 + 3/12, "feet"),
  43280. weight: math.unit(3.5, "tons"),
  43281. name: "Front",
  43282. image: {
  43283. source: "./media/characters/emberflame/front.svg",
  43284. extra: 1198/672,
  43285. bottom: 82/1280
  43286. }
  43287. },
  43288. side: {
  43289. height: math.unit(6 + 3/12, "feet"),
  43290. weight: math.unit(3.5, "tons"),
  43291. name: "Side",
  43292. image: {
  43293. source: "./media/characters/emberflame/side.svg",
  43294. extra: 938/527,
  43295. bottom: 56/994
  43296. }
  43297. },
  43298. },
  43299. [
  43300. {
  43301. name: "Normal",
  43302. height: math.unit(6 + 3/12, "feet"),
  43303. default: true
  43304. },
  43305. ]
  43306. ))
  43307. characterMakers.push(() => makeCharacter(
  43308. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43309. {
  43310. side: {
  43311. height: math.unit(17.5, "feet"),
  43312. weight: math.unit(35, "tons"),
  43313. name: "Side",
  43314. image: {
  43315. source: "./media/characters/sophie-ambrose/side.svg",
  43316. extra: 1573/1242,
  43317. bottom: 71/1644
  43318. }
  43319. },
  43320. maw: {
  43321. height: math.unit(7.4, "feet"),
  43322. name: "Maw",
  43323. image: {
  43324. source: "./media/characters/sophie-ambrose/maw.svg"
  43325. }
  43326. },
  43327. },
  43328. [
  43329. {
  43330. name: "Normal",
  43331. height: math.unit(17.5, "feet"),
  43332. default: true
  43333. },
  43334. ]
  43335. ))
  43336. characterMakers.push(() => makeCharacter(
  43337. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43338. {
  43339. front: {
  43340. height: math.unit(280, "feet"),
  43341. weight: math.unit(550, "tons"),
  43342. name: "Front",
  43343. image: {
  43344. source: "./media/characters/king-mugi/front.svg",
  43345. extra: 1102/947,
  43346. bottom: 104/1206
  43347. }
  43348. },
  43349. },
  43350. [
  43351. {
  43352. name: "King Mugi",
  43353. height: math.unit(280, "feet"),
  43354. default: true
  43355. },
  43356. ]
  43357. ))
  43358. characterMakers.push(() => makeCharacter(
  43359. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43360. {
  43361. front: {
  43362. height: math.unit(64, "meters"),
  43363. name: "Front",
  43364. image: {
  43365. source: "./media/characters/nova-fox/front.svg",
  43366. extra: 1310/1246,
  43367. bottom: 65/1375
  43368. }
  43369. },
  43370. },
  43371. [
  43372. {
  43373. name: "Macro",
  43374. height: math.unit(64, "meters"),
  43375. default: true
  43376. },
  43377. ]
  43378. ))
  43379. characterMakers.push(() => makeCharacter(
  43380. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43381. {
  43382. front: {
  43383. height: math.unit(6 + 3/12, "feet"),
  43384. weight: math.unit(170, "lb"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/sam-bat/front.svg",
  43388. extra: 1601/1411,
  43389. bottom: 125/1726
  43390. }
  43391. },
  43392. back: {
  43393. height: math.unit(6 + 3/12, "feet"),
  43394. weight: math.unit(170, "lb"),
  43395. name: "Back",
  43396. image: {
  43397. source: "./media/characters/sam-bat/back.svg",
  43398. extra: 1577/1405,
  43399. bottom: 58/1635
  43400. }
  43401. },
  43402. },
  43403. [
  43404. {
  43405. name: "Normal",
  43406. height: math.unit(6 + 3/12, "feet"),
  43407. default: true
  43408. },
  43409. ]
  43410. ))
  43411. characterMakers.push(() => makeCharacter(
  43412. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43413. {
  43414. front: {
  43415. height: math.unit(59, "feet"),
  43416. weight: math.unit(40000, "lb"),
  43417. name: "Front",
  43418. image: {
  43419. source: "./media/characters/inari/front.svg",
  43420. extra: 1884/1350,
  43421. bottom: 95/1979
  43422. }
  43423. },
  43424. },
  43425. [
  43426. {
  43427. name: "Gigantamax",
  43428. height: math.unit(59, "feet"),
  43429. default: true
  43430. },
  43431. ]
  43432. ))
  43433. characterMakers.push(() => makeCharacter(
  43434. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43435. {
  43436. front: {
  43437. height: math.unit(5 + 8/12, "feet"),
  43438. name: "Front",
  43439. image: {
  43440. source: "./media/characters/elizabeth/front.svg",
  43441. extra: 1395/1298,
  43442. bottom: 54/1449
  43443. }
  43444. },
  43445. mouth: {
  43446. height: math.unit(1.97, "feet"),
  43447. name: "Mouth",
  43448. image: {
  43449. source: "./media/characters/elizabeth/mouth.svg"
  43450. }
  43451. },
  43452. foot: {
  43453. height: math.unit(1.17, "feet"),
  43454. name: "Foot",
  43455. image: {
  43456. source: "./media/characters/elizabeth/foot.svg"
  43457. }
  43458. },
  43459. },
  43460. [
  43461. {
  43462. name: "Normal",
  43463. height: math.unit(5 + 8/12, "feet"),
  43464. default: true
  43465. },
  43466. {
  43467. name: "Minimacro",
  43468. height: math.unit(18, "feet")
  43469. },
  43470. {
  43471. name: "Macro",
  43472. height: math.unit(180, "feet")
  43473. },
  43474. ]
  43475. ))
  43476. characterMakers.push(() => makeCharacter(
  43477. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43478. {
  43479. front: {
  43480. height: math.unit(5 + 2/12, "feet"),
  43481. name: "Front",
  43482. image: {
  43483. source: "./media/characters/october-gossamer/front.svg",
  43484. extra: 505/454,
  43485. bottom: 7/512
  43486. }
  43487. },
  43488. back: {
  43489. height: math.unit(5 + 2/12, "feet"),
  43490. name: "Back",
  43491. image: {
  43492. source: "./media/characters/october-gossamer/back.svg",
  43493. extra: 501/454,
  43494. bottom: 11/512
  43495. }
  43496. },
  43497. },
  43498. [
  43499. {
  43500. name: "Normal",
  43501. height: math.unit(5 + 2/12, "feet"),
  43502. default: true
  43503. },
  43504. ]
  43505. ))
  43506. characterMakers.push(() => makeCharacter(
  43507. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43508. {
  43509. front: {
  43510. height: math.unit(5, "feet"),
  43511. name: "Front",
  43512. image: {
  43513. source: "./media/characters/epiglottis/front.svg",
  43514. extra: 923/849,
  43515. bottom: 17/940
  43516. }
  43517. },
  43518. },
  43519. [
  43520. {
  43521. name: "Original Size",
  43522. height: math.unit(10, "inches")
  43523. },
  43524. {
  43525. name: "Human Size",
  43526. height: math.unit(5, "feet"),
  43527. default: true
  43528. },
  43529. {
  43530. name: "Big",
  43531. height: math.unit(25, "feet")
  43532. },
  43533. {
  43534. name: "Bigger",
  43535. height: math.unit(50, "feet")
  43536. },
  43537. {
  43538. name: "oh lawd",
  43539. height: math.unit(75, "feet")
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43545. {
  43546. front: {
  43547. height: math.unit(2 + 4/12, "feet"),
  43548. weight: math.unit(60, "lb"),
  43549. name: "Front",
  43550. image: {
  43551. source: "./media/characters/lerm/front.svg",
  43552. extra: 796/790,
  43553. bottom: 79/875
  43554. }
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "Normal",
  43560. height: math.unit(2 + 4/12, "feet"),
  43561. default: true
  43562. },
  43563. ]
  43564. ))
  43565. characterMakers.push(() => makeCharacter(
  43566. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43567. {
  43568. front: {
  43569. height: math.unit(5.5, "feet"),
  43570. weight: math.unit(130, "lb"),
  43571. name: "Front",
  43572. image: {
  43573. source: "./media/characters/xena-nebadon/front.svg",
  43574. extra: 1828/1730,
  43575. bottom: 79/1907
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Tiny Puppy",
  43582. height: math.unit(3, "inches")
  43583. },
  43584. {
  43585. name: "Normal",
  43586. height: math.unit(5.5, "feet"),
  43587. default: true
  43588. },
  43589. {
  43590. name: "Lotta Lady",
  43591. height: math.unit(12, "feet")
  43592. },
  43593. {
  43594. name: "Pretty Big",
  43595. height: math.unit(100, "feet")
  43596. },
  43597. {
  43598. name: "Big",
  43599. height: math.unit(500, "feet")
  43600. },
  43601. {
  43602. name: "Skyscraper Toys",
  43603. height: math.unit(2500, "feet")
  43604. },
  43605. {
  43606. name: "Plane Catcher",
  43607. height: math.unit(8, "miles")
  43608. },
  43609. {
  43610. name: "Planet Toys",
  43611. height: math.unit(15, "earths")
  43612. },
  43613. {
  43614. name: "Stardust",
  43615. height: math.unit(0.25, "galaxies")
  43616. },
  43617. {
  43618. name: "Snacks",
  43619. height: math.unit(70, "universes")
  43620. },
  43621. ]
  43622. ))
  43623. characterMakers.push(() => makeCharacter(
  43624. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43625. {
  43626. front: {
  43627. height: math.unit(1.6, "meters"),
  43628. weight: math.unit(60, "kg"),
  43629. name: "Front",
  43630. image: {
  43631. source: "./media/characters/bounty/front.svg",
  43632. extra: 1426/1308,
  43633. bottom: 15/1441
  43634. }
  43635. },
  43636. back: {
  43637. height: math.unit(1.6, "meters"),
  43638. weight: math.unit(60, "kg"),
  43639. name: "Back",
  43640. image: {
  43641. source: "./media/characters/bounty/back.svg",
  43642. extra: 1417/1307,
  43643. bottom: 8/1425
  43644. }
  43645. },
  43646. },
  43647. [
  43648. {
  43649. name: "Normal",
  43650. height: math.unit(1.6, "meters"),
  43651. default: true
  43652. },
  43653. {
  43654. name: "Macro",
  43655. height: math.unit(300, "meters")
  43656. },
  43657. ]
  43658. ))
  43659. characterMakers.push(() => makeCharacter(
  43660. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43661. {
  43662. front: {
  43663. height: math.unit(2 + 8/12, "feet"),
  43664. weight: math.unit(15, "lb"),
  43665. name: "Front",
  43666. image: {
  43667. source: "./media/characters/mochi/front.svg",
  43668. extra: 1022/852,
  43669. bottom: 435/1457
  43670. }
  43671. },
  43672. back: {
  43673. height: math.unit(2 + 8/12, "feet"),
  43674. weight: math.unit(15, "lb"),
  43675. name: "Back",
  43676. image: {
  43677. source: "./media/characters/mochi/back.svg",
  43678. extra: 1335/1119,
  43679. bottom: 39/1374
  43680. }
  43681. },
  43682. bird: {
  43683. height: math.unit(2 + 8/12, "feet"),
  43684. weight: math.unit(15, "lb"),
  43685. name: "Bird",
  43686. image: {
  43687. source: "./media/characters/mochi/bird.svg",
  43688. extra: 1251/1113,
  43689. bottom: 178/1429
  43690. }
  43691. },
  43692. kaiju: {
  43693. height: math.unit(154, "feet"),
  43694. weight: math.unit(1e7, "lb"),
  43695. name: "Kaiju",
  43696. image: {
  43697. source: "./media/characters/mochi/kaiju.svg",
  43698. extra: 460/324,
  43699. bottom: 40/500
  43700. }
  43701. },
  43702. head: {
  43703. height: math.unit(1.21, "feet"),
  43704. name: "Head",
  43705. image: {
  43706. source: "./media/characters/mochi/head.svg"
  43707. }
  43708. },
  43709. alternateTail: {
  43710. height: math.unit(2 + 8/12, "feet"),
  43711. weight: math.unit(45, "lb"),
  43712. name: "Alternate Tail",
  43713. image: {
  43714. source: "./media/characters/mochi/alternate-tail.svg",
  43715. extra: 139/76,
  43716. bottom: 45/184
  43717. }
  43718. },
  43719. },
  43720. [
  43721. {
  43722. name: "Micro",
  43723. height: math.unit(2, "inches")
  43724. },
  43725. {
  43726. name: "Normal",
  43727. height: math.unit(2 + 8/12, "feet"),
  43728. default: true
  43729. },
  43730. {
  43731. name: "Macro",
  43732. height: math.unit(106, "feet")
  43733. },
  43734. ]
  43735. ))
  43736. characterMakers.push(() => makeCharacter(
  43737. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43738. {
  43739. front: {
  43740. height: math.unit(5.67, "feet"),
  43741. weight: math.unit(135, "lb"),
  43742. name: "Front",
  43743. image: {
  43744. source: "./media/characters/sarel/front.svg",
  43745. extra: 865/788,
  43746. bottom: 97/962
  43747. }
  43748. },
  43749. back: {
  43750. height: math.unit(5.67, "feet"),
  43751. weight: math.unit(135, "lb"),
  43752. name: "Back",
  43753. image: {
  43754. source: "./media/characters/sarel/back.svg",
  43755. extra: 857/777,
  43756. bottom: 32/889
  43757. }
  43758. },
  43759. chozoan: {
  43760. height: math.unit(5.67, "feet"),
  43761. weight: math.unit(135, "lb"),
  43762. name: "Chozoan",
  43763. image: {
  43764. source: "./media/characters/sarel/chozoan.svg",
  43765. extra: 865/788,
  43766. bottom: 97/962
  43767. }
  43768. },
  43769. current: {
  43770. height: math.unit(5.67, "feet"),
  43771. weight: math.unit(135, "lb"),
  43772. name: "Current",
  43773. image: {
  43774. source: "./media/characters/sarel/current.svg",
  43775. extra: 865/788,
  43776. bottom: 97/962
  43777. }
  43778. },
  43779. head: {
  43780. height: math.unit(1.77, "feet"),
  43781. name: "Head",
  43782. image: {
  43783. source: "./media/characters/sarel/head.svg"
  43784. }
  43785. },
  43786. claws: {
  43787. height: math.unit(1.8, "feet"),
  43788. name: "Claws",
  43789. image: {
  43790. source: "./media/characters/sarel/claws.svg"
  43791. }
  43792. },
  43793. clawsAlt: {
  43794. height: math.unit(1.8, "feet"),
  43795. name: "Claws-alt",
  43796. image: {
  43797. source: "./media/characters/sarel/claws-alt.svg"
  43798. }
  43799. },
  43800. },
  43801. [
  43802. {
  43803. name: "Normal",
  43804. height: math.unit(5.67, "feet"),
  43805. default: true
  43806. },
  43807. ]
  43808. ))
  43809. characterMakers.push(() => makeCharacter(
  43810. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43811. {
  43812. front: {
  43813. height: math.unit(5500, "feet"),
  43814. name: "Front",
  43815. image: {
  43816. source: "./media/characters/alyonia/front.svg",
  43817. extra: 1200/1135,
  43818. bottom: 29/1229
  43819. }
  43820. },
  43821. back: {
  43822. height: math.unit(5500, "feet"),
  43823. name: "Back",
  43824. image: {
  43825. source: "./media/characters/alyonia/back.svg",
  43826. extra: 1205/1138,
  43827. bottom: 10/1215
  43828. }
  43829. },
  43830. },
  43831. [
  43832. {
  43833. name: "Small",
  43834. height: math.unit(10, "feet")
  43835. },
  43836. {
  43837. name: "Macro",
  43838. height: math.unit(500, "feet")
  43839. },
  43840. {
  43841. name: "Mega Macro",
  43842. height: math.unit(5500, "feet"),
  43843. default: true
  43844. },
  43845. {
  43846. name: "Mega Macro+",
  43847. height: math.unit(500000, "feet")
  43848. },
  43849. {
  43850. name: "Giga Macro",
  43851. height: math.unit(3000, "miles")
  43852. },
  43853. {
  43854. name: "Tera Macro",
  43855. height: math.unit(2.8e6, "miles")
  43856. },
  43857. {
  43858. name: "Galactic",
  43859. height: math.unit(120000, "lightyears")
  43860. },
  43861. ]
  43862. ))
  43863. characterMakers.push(() => makeCharacter(
  43864. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43865. {
  43866. werewolf: {
  43867. height: math.unit(8, "feet"),
  43868. weight: math.unit(425, "lb"),
  43869. name: "Werewolf",
  43870. image: {
  43871. source: "./media/characters/autumn/werewolf.svg",
  43872. extra: 2154/2031,
  43873. bottom: 160/2314
  43874. }
  43875. },
  43876. human: {
  43877. height: math.unit(5 + 8/12, "feet"),
  43878. weight: math.unit(150, "lb"),
  43879. name: "Human",
  43880. image: {
  43881. source: "./media/characters/autumn/human.svg",
  43882. extra: 1200/1149,
  43883. bottom: 30/1230
  43884. }
  43885. },
  43886. },
  43887. [
  43888. {
  43889. name: "Normal",
  43890. height: math.unit(8, "feet"),
  43891. default: true
  43892. },
  43893. ]
  43894. ))
  43895. characterMakers.push(() => makeCharacter(
  43896. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43897. {
  43898. front: {
  43899. height: math.unit(8 + 5/12, "feet"),
  43900. weight: math.unit(825, "lb"),
  43901. name: "Front",
  43902. image: {
  43903. source: "./media/characters/cobalt-charizard/front.svg",
  43904. extra: 1268/1155,
  43905. bottom: 122/1390
  43906. }
  43907. },
  43908. side: {
  43909. height: math.unit(8 + 5/12, "feet"),
  43910. weight: math.unit(825, "lb"),
  43911. name: "Side",
  43912. image: {
  43913. source: "./media/characters/cobalt-charizard/side.svg",
  43914. extra: 1348/1257,
  43915. bottom: 58/1406
  43916. }
  43917. },
  43918. gMax: {
  43919. height: math.unit(134 + 11/12, "feet"),
  43920. name: "G-Max",
  43921. image: {
  43922. source: "./media/characters/cobalt-charizard/g-max.svg",
  43923. extra: 1835/1541,
  43924. bottom: 151/1986
  43925. }
  43926. },
  43927. },
  43928. [
  43929. {
  43930. name: "Normal",
  43931. height: math.unit(8 + 5/12, "feet"),
  43932. default: true
  43933. },
  43934. ]
  43935. ))
  43936. characterMakers.push(() => makeCharacter(
  43937. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43938. {
  43939. front: {
  43940. height: math.unit(6 + 3/12, "feet"),
  43941. weight: math.unit(210, "lb"),
  43942. name: "Front",
  43943. image: {
  43944. source: "./media/characters/stella/front.svg",
  43945. extra: 3549/3335,
  43946. bottom: 51/3600
  43947. }
  43948. },
  43949. },
  43950. [
  43951. {
  43952. name: "Normal",
  43953. height: math.unit(6 + 3/12, "feet"),
  43954. default: true
  43955. },
  43956. ]
  43957. ))
  43958. characterMakers.push(() => makeCharacter(
  43959. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43960. {
  43961. front: {
  43962. height: math.unit(5, "feet"),
  43963. weight: math.unit(90, "lb"),
  43964. name: "Front",
  43965. image: {
  43966. source: "./media/characters/riley-bishop/front.svg",
  43967. extra: 1450/1428,
  43968. bottom: 152/1602
  43969. }
  43970. },
  43971. },
  43972. [
  43973. {
  43974. name: "Normal",
  43975. height: math.unit(5, "feet"),
  43976. default: true
  43977. },
  43978. ]
  43979. ))
  43980. characterMakers.push(() => makeCharacter(
  43981. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43982. {
  43983. side: {
  43984. height: math.unit(8 + 2/12, "feet"),
  43985. weight: math.unit(500, "kg"),
  43986. name: "Side",
  43987. image: {
  43988. source: "./media/characters/theo-arcanine/side.svg",
  43989. extra: 1342/1074,
  43990. bottom: 111/1453
  43991. }
  43992. },
  43993. },
  43994. [
  43995. {
  43996. name: "Normal",
  43997. height: math.unit(8 + 2/12, "feet"),
  43998. default: true
  43999. },
  44000. ]
  44001. ))
  44002. characterMakers.push(() => makeCharacter(
  44003. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44004. {
  44005. front: {
  44006. height: math.unit(4, "feet"),
  44007. name: "Front",
  44008. image: {
  44009. source: "./media/characters/kali/front.svg",
  44010. extra: 1921/1357,
  44011. bottom: 70/1991
  44012. }
  44013. },
  44014. },
  44015. [
  44016. {
  44017. name: "Normal",
  44018. height: math.unit(4, "feet"),
  44019. default: true
  44020. },
  44021. {
  44022. name: "Macro",
  44023. height: math.unit(32, "meters")
  44024. },
  44025. {
  44026. name: "Macro+",
  44027. height: math.unit(150, "meters")
  44028. },
  44029. {
  44030. name: "Megamacro",
  44031. height: math.unit(7500, "meters")
  44032. },
  44033. {
  44034. name: "Megamacro+",
  44035. height: math.unit(80, "kilometers")
  44036. },
  44037. ]
  44038. ))
  44039. characterMakers.push(() => makeCharacter(
  44040. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44041. {
  44042. side: {
  44043. height: math.unit(5 + 11/12, "feet"),
  44044. weight: math.unit(236, "lb"),
  44045. name: "Side",
  44046. image: {
  44047. source: "./media/characters/gapp/side.svg",
  44048. extra: 775/340,
  44049. bottom: 58/833
  44050. }
  44051. },
  44052. mouth: {
  44053. height: math.unit(2.98, "feet"),
  44054. name: "Mouth",
  44055. image: {
  44056. source: "./media/characters/gapp/mouth.svg"
  44057. }
  44058. },
  44059. },
  44060. [
  44061. {
  44062. name: "Normal",
  44063. height: math.unit(5 + 1/12, "feet"),
  44064. default: true
  44065. },
  44066. ]
  44067. ))
  44068. characterMakers.push(() => makeCharacter(
  44069. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44070. {
  44071. front: {
  44072. height: math.unit(6, "feet"),
  44073. name: "Front",
  44074. image: {
  44075. source: "./media/characters/persephone/front.svg",
  44076. extra: 1895/1717,
  44077. bottom: 96/1991
  44078. }
  44079. },
  44080. back: {
  44081. height: math.unit(6, "feet"),
  44082. name: "Back",
  44083. image: {
  44084. source: "./media/characters/persephone/back.svg",
  44085. extra: 1868/1679,
  44086. bottom: 26/1894
  44087. }
  44088. },
  44089. casual: {
  44090. height: math.unit(6, "feet"),
  44091. name: "Casual",
  44092. image: {
  44093. source: "./media/characters/persephone/casual.svg",
  44094. extra: 1713/1541,
  44095. bottom: 76/1789
  44096. }
  44097. },
  44098. },
  44099. [
  44100. {
  44101. name: "Human Size",
  44102. height: math.unit(6, "feet")
  44103. },
  44104. {
  44105. name: "Big Steppy",
  44106. height: math.unit(600, "meters"),
  44107. default: true
  44108. },
  44109. {
  44110. name: "Galaxy Brain",
  44111. height: math.unit(1, "zettameter")
  44112. },
  44113. ]
  44114. ))
  44115. characterMakers.push(() => makeCharacter(
  44116. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44117. {
  44118. front: {
  44119. height: math.unit(1.85, "meters"),
  44120. name: "Front",
  44121. image: {
  44122. source: "./media/characters/riley-foxthing/front.svg",
  44123. extra: 1495/1354,
  44124. bottom: 122/1617
  44125. }
  44126. },
  44127. frontAlt: {
  44128. height: math.unit(1.85, "meters"),
  44129. name: "Front (Alt)",
  44130. image: {
  44131. source: "./media/characters/riley-foxthing/front-alt.svg",
  44132. extra: 1572/1389,
  44133. bottom: 116/1688
  44134. }
  44135. },
  44136. },
  44137. [
  44138. {
  44139. name: "Normal Sized",
  44140. height: math.unit(1.85, "meters"),
  44141. default: true
  44142. },
  44143. {
  44144. name: "Quite Sizable",
  44145. height: math.unit(5, "meters")
  44146. },
  44147. {
  44148. name: "Rather Large",
  44149. height: math.unit(20, "meters")
  44150. },
  44151. {
  44152. name: "Macro",
  44153. height: math.unit(450, "meters")
  44154. },
  44155. {
  44156. name: "Giga",
  44157. height: math.unit(5, "km")
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44163. {
  44164. front: {
  44165. height: math.unit(6, "feet"),
  44166. weight: math.unit(200, "lb"),
  44167. name: "Front",
  44168. image: {
  44169. source: "./media/characters/blizzard/front.svg",
  44170. extra: 1136/990,
  44171. bottom: 136/1272
  44172. }
  44173. },
  44174. back: {
  44175. height: math.unit(6, "feet"),
  44176. weight: math.unit(200, "lb"),
  44177. name: "Back",
  44178. image: {
  44179. source: "./media/characters/blizzard/back.svg",
  44180. extra: 1175/1034,
  44181. bottom: 97/1272
  44182. }
  44183. },
  44184. sitting: {
  44185. height: math.unit(3.725, "feet"),
  44186. weight: math.unit(200, "lb"),
  44187. name: "Sitting",
  44188. image: {
  44189. source: "./media/characters/blizzard/sitting.svg",
  44190. extra: 581/485,
  44191. bottom: 90/671
  44192. }
  44193. },
  44194. frontWizard: {
  44195. height: math.unit(7.9, "feet"),
  44196. weight: math.unit(200, "lb"),
  44197. name: "Front (Wizard)",
  44198. image: {
  44199. source: "./media/characters/blizzard/front-wizard.svg"
  44200. }
  44201. },
  44202. backWizard: {
  44203. height: math.unit(7.9, "feet"),
  44204. weight: math.unit(200, "lb"),
  44205. name: "Back (Wizard)",
  44206. image: {
  44207. source: "./media/characters/blizzard/back-wizard.svg"
  44208. }
  44209. },
  44210. frontNsfw: {
  44211. height: math.unit(6, "feet"),
  44212. weight: math.unit(200, "lb"),
  44213. name: "Front (NSFW)",
  44214. image: {
  44215. source: "./media/characters/blizzard/front-nsfw.svg",
  44216. extra: 1136/990,
  44217. bottom: 136/1272
  44218. }
  44219. },
  44220. backNsfw: {
  44221. height: math.unit(6, "feet"),
  44222. weight: math.unit(200, "lb"),
  44223. name: "Back (NSFW)",
  44224. image: {
  44225. source: "./media/characters/blizzard/back-nsfw.svg",
  44226. extra: 1175/1034,
  44227. bottom: 97/1272
  44228. }
  44229. },
  44230. sittingNsfw: {
  44231. height: math.unit(3.725, "feet"),
  44232. weight: math.unit(200, "lb"),
  44233. name: "Sitting (NSFW)",
  44234. image: {
  44235. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44236. extra: 581/485,
  44237. bottom: 90/671
  44238. }
  44239. },
  44240. wizardFrontNsfw: {
  44241. height: math.unit(7.9, "feet"),
  44242. weight: math.unit(200, "lb"),
  44243. name: "Wizard (Front, NSFW)",
  44244. image: {
  44245. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44246. }
  44247. },
  44248. },
  44249. [
  44250. {
  44251. name: "Normal",
  44252. height: math.unit(6, "feet"),
  44253. default: true
  44254. },
  44255. ]
  44256. ))
  44257. characterMakers.push(() => makeCharacter(
  44258. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44259. {
  44260. front: {
  44261. height: math.unit(5 + 2/12, "feet"),
  44262. name: "Front",
  44263. image: {
  44264. source: "./media/characters/lumi/front.svg",
  44265. extra: 1328/1268,
  44266. bottom: 103/1431
  44267. }
  44268. },
  44269. back: {
  44270. height: math.unit(5 + 2/12, "feet"),
  44271. name: "Back",
  44272. image: {
  44273. source: "./media/characters/lumi/back.svg",
  44274. extra: 1381/1327,
  44275. bottom: 43/1424
  44276. }
  44277. },
  44278. },
  44279. [
  44280. {
  44281. name: "Normal",
  44282. height: math.unit(5 + 2/12, "feet"),
  44283. default: true
  44284. },
  44285. ]
  44286. ))
  44287. characterMakers.push(() => makeCharacter(
  44288. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44289. {
  44290. front: {
  44291. height: math.unit(5 + 9/12, "feet"),
  44292. name: "Front",
  44293. image: {
  44294. source: "./media/characters/aliya-cotton/front.svg",
  44295. extra: 577/564,
  44296. bottom: 29/606
  44297. }
  44298. },
  44299. },
  44300. [
  44301. {
  44302. name: "Normal",
  44303. height: math.unit(5 + 9/12, "feet"),
  44304. default: true
  44305. },
  44306. ]
  44307. ))
  44308. characterMakers.push(() => makeCharacter(
  44309. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44310. {
  44311. front: {
  44312. height: math.unit(2.7, "meters"),
  44313. weight: math.unit(25000, "lb"),
  44314. name: "Front",
  44315. image: {
  44316. source: "./media/characters/noah-luxray/front.svg",
  44317. extra: 1644/825,
  44318. bottom: 339/1983
  44319. }
  44320. },
  44321. side: {
  44322. height: math.unit(2.97, "meters"),
  44323. weight: math.unit(25000, "lb"),
  44324. name: "Side",
  44325. image: {
  44326. source: "./media/characters/noah-luxray/side.svg",
  44327. extra: 1319/650,
  44328. bottom: 163/1482
  44329. }
  44330. },
  44331. dick: {
  44332. height: math.unit(7.4, "feet"),
  44333. weight: math.unit(2500, "lb"),
  44334. name: "Dick",
  44335. image: {
  44336. source: "./media/characters/noah-luxray/dick.svg"
  44337. }
  44338. },
  44339. dickAlt: {
  44340. height: math.unit(10.83, "feet"),
  44341. weight: math.unit(2500, "lb"),
  44342. name: "Dick-alt",
  44343. image: {
  44344. source: "./media/characters/noah-luxray/dick-alt.svg"
  44345. }
  44346. },
  44347. },
  44348. [
  44349. {
  44350. name: "BIG",
  44351. height: math.unit(2.7, "meters"),
  44352. default: true
  44353. },
  44354. ]
  44355. ))
  44356. characterMakers.push(() => makeCharacter(
  44357. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44358. {
  44359. standing: {
  44360. height: math.unit(183, "cm"),
  44361. weight: math.unit(68, "kg"),
  44362. name: "Standing",
  44363. image: {
  44364. source: "./media/characters/arion/standing.svg",
  44365. extra: 1869/1807,
  44366. bottom: 93/1962
  44367. }
  44368. },
  44369. reclining: {
  44370. height: math.unit(70.5, "cm"),
  44371. weight: math.unit(68, "lb"),
  44372. name: "Reclining",
  44373. image: {
  44374. source: "./media/characters/arion/reclining.svg",
  44375. extra: 937/870,
  44376. bottom: 63/1000
  44377. }
  44378. },
  44379. },
  44380. [
  44381. {
  44382. name: "Colossus Size, Low",
  44383. height: math.unit(33, "meters"),
  44384. default: true
  44385. },
  44386. {
  44387. name: "Colossus Size, Mid",
  44388. height: math.unit(52, "meters")
  44389. },
  44390. {
  44391. name: "Colossus Size, High",
  44392. height: math.unit(60, "meters")
  44393. },
  44394. {
  44395. name: "Titan Size, Low",
  44396. height: math.unit(91, "meters"),
  44397. },
  44398. {
  44399. name: "Titan Size, Mid",
  44400. height: math.unit(122, "meters")
  44401. },
  44402. {
  44403. name: "Titan Size, High",
  44404. height: math.unit(162, "meters")
  44405. },
  44406. ]
  44407. ))
  44408. characterMakers.push(() => makeCharacter(
  44409. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44410. {
  44411. front: {
  44412. height: math.unit(53, "meters"),
  44413. name: "Front",
  44414. image: {
  44415. source: "./media/characters/stellar-marbey/front.svg",
  44416. extra: 1913/1805,
  44417. bottom: 92/2005
  44418. }
  44419. },
  44420. back: {
  44421. height: math.unit(53, "meters"),
  44422. name: "Back",
  44423. image: {
  44424. source: "./media/characters/stellar-marbey/back.svg",
  44425. extra: 1960/1851,
  44426. bottom: 28/1988
  44427. }
  44428. },
  44429. mouth: {
  44430. height: math.unit(3.5, "meters"),
  44431. name: "Mouth",
  44432. image: {
  44433. source: "./media/characters/stellar-marbey/mouth.svg"
  44434. }
  44435. },
  44436. },
  44437. [
  44438. {
  44439. name: "Macro",
  44440. height: math.unit(53, "meters"),
  44441. default: true
  44442. },
  44443. ]
  44444. ))
  44445. characterMakers.push(() => makeCharacter(
  44446. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44447. {
  44448. front: {
  44449. height: math.unit(8 + 1/12, "feet"),
  44450. weight: math.unit(233, "lb"),
  44451. name: "Front",
  44452. image: {
  44453. source: "./media/characters/matsu/front.svg",
  44454. extra: 832/772,
  44455. bottom: 40/872
  44456. }
  44457. },
  44458. back: {
  44459. height: math.unit(8 + 1/12, "feet"),
  44460. weight: math.unit(233, "lb"),
  44461. name: "Back",
  44462. image: {
  44463. source: "./media/characters/matsu/back.svg",
  44464. extra: 839/780,
  44465. bottom: 47/886
  44466. }
  44467. },
  44468. },
  44469. [
  44470. {
  44471. name: "Normal",
  44472. height: math.unit(8 + 1/12, "feet"),
  44473. default: true
  44474. },
  44475. ]
  44476. ))
  44477. characterMakers.push(() => makeCharacter(
  44478. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44479. {
  44480. front: {
  44481. height: math.unit(4, "feet"),
  44482. weight: math.unit(148, "lb"),
  44483. name: "Front",
  44484. image: {
  44485. source: "./media/characters/thiz/front.svg",
  44486. extra: 1913/1748,
  44487. bottom: 62/1975
  44488. }
  44489. },
  44490. },
  44491. [
  44492. {
  44493. name: "Normal",
  44494. height: math.unit(4, "feet"),
  44495. default: true
  44496. },
  44497. ]
  44498. ))
  44499. characterMakers.push(() => makeCharacter(
  44500. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44501. {
  44502. front: {
  44503. height: math.unit(7 + 6/12, "feet"),
  44504. weight: math.unit(267, "lb"),
  44505. name: "Front",
  44506. image: {
  44507. source: "./media/characters/marcel/front.svg",
  44508. extra: 1221/1096,
  44509. bottom: 76/1297
  44510. }
  44511. },
  44512. },
  44513. [
  44514. {
  44515. name: "Normal",
  44516. height: math.unit(7 + 6/12, "feet"),
  44517. default: true
  44518. },
  44519. ]
  44520. ))
  44521. characterMakers.push(() => makeCharacter(
  44522. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44523. {
  44524. side: {
  44525. height: math.unit(42, "meters"),
  44526. name: "Side",
  44527. image: {
  44528. source: "./media/characters/flake/side.svg",
  44529. extra: 1525/1306,
  44530. bottom: 209/1734
  44531. }
  44532. },
  44533. },
  44534. [
  44535. {
  44536. name: "Normal",
  44537. height: math.unit(42, "meters"),
  44538. default: true
  44539. },
  44540. ]
  44541. ))
  44542. characterMakers.push(() => makeCharacter(
  44543. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44544. {
  44545. dressed: {
  44546. height: math.unit(6 + 4/12, "feet"),
  44547. weight: math.unit(520, "lb"),
  44548. name: "Dressed",
  44549. image: {
  44550. source: "./media/characters/someonne/dressed.svg",
  44551. extra: 1020/1010,
  44552. bottom: 178/1198
  44553. }
  44554. },
  44555. undressed: {
  44556. height: math.unit(6 + 4/12, "feet"),
  44557. weight: math.unit(520, "lb"),
  44558. name: "Undressed",
  44559. image: {
  44560. source: "./media/characters/someonne/undressed.svg",
  44561. extra: 1019/1014,
  44562. bottom: 169/1188
  44563. }
  44564. },
  44565. },
  44566. [
  44567. {
  44568. name: "Normal",
  44569. height: math.unit(6 + 4/12, "feet"),
  44570. default: true
  44571. },
  44572. ]
  44573. ))
  44574. characterMakers.push(() => makeCharacter(
  44575. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44576. {
  44577. front: {
  44578. height: math.unit(3, "feet"),
  44579. weight: math.unit(30, "lb"),
  44580. name: "Front",
  44581. image: {
  44582. source: "./media/characters/till/front.svg",
  44583. extra: 892/823,
  44584. bottom: 55/947
  44585. }
  44586. },
  44587. },
  44588. [
  44589. {
  44590. name: "Normal",
  44591. height: math.unit(3, "feet"),
  44592. default: true
  44593. },
  44594. ]
  44595. ))
  44596. characterMakers.push(() => makeCharacter(
  44597. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44598. {
  44599. front: {
  44600. height: math.unit(9 + 8/12, "feet"),
  44601. weight: math.unit(800, "lb"),
  44602. name: "Front",
  44603. image: {
  44604. source: "./media/characters/sydney-heki/front.svg",
  44605. extra: 1360/1300,
  44606. bottom: 22/1382
  44607. }
  44608. },
  44609. back: {
  44610. height: math.unit(9 + 8/12, "feet"),
  44611. weight: math.unit(800, "lb"),
  44612. name: "Back",
  44613. image: {
  44614. source: "./media/characters/sydney-heki/back.svg",
  44615. extra: 1356/1293,
  44616. bottom: 12/1368
  44617. }
  44618. },
  44619. frontDressed: {
  44620. height: math.unit(9 + 8/12, "feet"),
  44621. weight: math.unit(800, "lb"),
  44622. name: "Front-dressed",
  44623. image: {
  44624. source: "./media/characters/sydney-heki/front-dressed.svg",
  44625. extra: 1360/1300,
  44626. bottom: 22/1382
  44627. }
  44628. },
  44629. },
  44630. [
  44631. {
  44632. name: "Normal",
  44633. height: math.unit(9 + 8/12, "feet"),
  44634. default: true
  44635. },
  44636. {
  44637. name: "Macro",
  44638. height: math.unit(500, "feet")
  44639. },
  44640. {
  44641. name: "Megamacro",
  44642. height: math.unit(3.6, "miles")
  44643. },
  44644. ]
  44645. ))
  44646. characterMakers.push(() => makeCharacter(
  44647. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44648. {
  44649. front: {
  44650. height: math.unit(200, "cm"),
  44651. weight: math.unit(250, "lb"),
  44652. name: "Front",
  44653. image: {
  44654. source: "./media/characters/fowler-karlsson/front.svg",
  44655. extra: 897/845,
  44656. bottom: 123/1020
  44657. }
  44658. },
  44659. back: {
  44660. height: math.unit(200, "cm"),
  44661. weight: math.unit(250, "lb"),
  44662. name: "Back",
  44663. image: {
  44664. source: "./media/characters/fowler-karlsson/back.svg",
  44665. extra: 999/944,
  44666. bottom: 26/1025
  44667. }
  44668. },
  44669. dick: {
  44670. height: math.unit(1.92, "feet"),
  44671. weight: math.unit(150, "lb"),
  44672. name: "Dick",
  44673. image: {
  44674. source: "./media/characters/fowler-karlsson/dick.svg"
  44675. }
  44676. },
  44677. },
  44678. [
  44679. {
  44680. name: "Normal",
  44681. height: math.unit(200, "cm"),
  44682. default: true
  44683. },
  44684. {
  44685. name: "Smaller Macro",
  44686. height: math.unit(90, "m")
  44687. },
  44688. {
  44689. name: "Macro",
  44690. height: math.unit(150, "m")
  44691. },
  44692. {
  44693. name: "Bigger Macro",
  44694. height: math.unit(300, "m")
  44695. },
  44696. ]
  44697. ))
  44698. characterMakers.push(() => makeCharacter(
  44699. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44700. {
  44701. side: {
  44702. height: math.unit(8 + 2/12, "feet"),
  44703. weight: math.unit(1, "tonne"),
  44704. name: "Side",
  44705. image: {
  44706. source: "./media/characters/rylide/side.svg",
  44707. extra: 1318/1034,
  44708. bottom: 106/1424
  44709. }
  44710. },
  44711. sitting: {
  44712. height: math.unit(303, "cm"),
  44713. weight: math.unit(1, "tonne"),
  44714. name: "Sitting",
  44715. image: {
  44716. source: "./media/characters/rylide/sitting.svg",
  44717. extra: 1303/1103,
  44718. bottom: 36/1339
  44719. }
  44720. },
  44721. },
  44722. [
  44723. {
  44724. name: "Normal",
  44725. height: math.unit(8 + 2/12, "feet"),
  44726. default: true
  44727. },
  44728. ]
  44729. ))
  44730. characterMakers.push(() => makeCharacter(
  44731. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44732. {
  44733. front: {
  44734. height: math.unit(5 + 10/12, "feet"),
  44735. weight: math.unit(160, "lb"),
  44736. name: "Front",
  44737. image: {
  44738. source: "./media/characters/pudask/front.svg",
  44739. extra: 1616/1590,
  44740. bottom: 161/1777
  44741. }
  44742. },
  44743. },
  44744. [
  44745. {
  44746. name: "Ferret Height",
  44747. height: math.unit(2 + 5/12, "feet")
  44748. },
  44749. {
  44750. name: "Canon Height",
  44751. height: math.unit(5 + 10/12, "feet"),
  44752. default: true
  44753. },
  44754. ]
  44755. ))
  44756. characterMakers.push(() => makeCharacter(
  44757. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44758. {
  44759. front: {
  44760. height: math.unit(3 + 6/12, "feet"),
  44761. weight: math.unit(60, "lb"),
  44762. name: "Front",
  44763. image: {
  44764. source: "./media/characters/ramita/front.svg",
  44765. extra: 1402/1232,
  44766. bottom: 62/1464
  44767. }
  44768. },
  44769. dressed: {
  44770. height: math.unit(3 + 6/12, "feet"),
  44771. weight: math.unit(60, "lb"),
  44772. name: "Dressed",
  44773. image: {
  44774. source: "./media/characters/ramita/dressed.svg",
  44775. extra: 1534/1249,
  44776. bottom: 50/1584
  44777. }
  44778. },
  44779. },
  44780. [
  44781. {
  44782. name: "Normal",
  44783. height: math.unit(3 + 6/12, "feet"),
  44784. default: true
  44785. },
  44786. ]
  44787. ))
  44788. characterMakers.push(() => makeCharacter(
  44789. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44790. {
  44791. front: {
  44792. height: math.unit(8, "feet"),
  44793. name: "Front",
  44794. image: {
  44795. source: "./media/characters/ark/front.svg",
  44796. extra: 772/693,
  44797. bottom: 45/817
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Normal",
  44804. height: math.unit(8, "feet"),
  44805. default: true
  44806. },
  44807. ]
  44808. ))
  44809. characterMakers.push(() => makeCharacter(
  44810. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44811. {
  44812. front: {
  44813. height: math.unit(6, "feet"),
  44814. weight: math.unit(250, "lb"),
  44815. volume: math.unit(5/8, "gallons"),
  44816. name: "Front",
  44817. image: {
  44818. source: "./media/characters/ludwig-horn/front.svg",
  44819. extra: 1782/1635,
  44820. bottom: 96/1878
  44821. }
  44822. },
  44823. back: {
  44824. height: math.unit(6, "feet"),
  44825. weight: math.unit(250, "lb"),
  44826. volume: math.unit(5/8, "gallons"),
  44827. name: "Back",
  44828. image: {
  44829. source: "./media/characters/ludwig-horn/back.svg",
  44830. extra: 1874/1729,
  44831. bottom: 27/1901
  44832. }
  44833. },
  44834. dick: {
  44835. height: math.unit(1.05, "feet"),
  44836. weight: math.unit(15, "lb"),
  44837. volume: math.unit(5/8, "gallons"),
  44838. name: "Dick",
  44839. image: {
  44840. source: "./media/characters/ludwig-horn/dick.svg"
  44841. }
  44842. },
  44843. },
  44844. [
  44845. {
  44846. name: "Small",
  44847. height: math.unit(6, "feet")
  44848. },
  44849. {
  44850. name: "Typical",
  44851. height: math.unit(12, "feet"),
  44852. default: true
  44853. },
  44854. {
  44855. name: "Building",
  44856. height: math.unit(80, "feet")
  44857. },
  44858. {
  44859. name: "Town",
  44860. height: math.unit(800, "feet")
  44861. },
  44862. {
  44863. name: "Kingdom",
  44864. height: math.unit(80000, "feet")
  44865. },
  44866. {
  44867. name: "Planet",
  44868. height: math.unit(8000000, "feet")
  44869. },
  44870. {
  44871. name: "Universe",
  44872. height: math.unit(8000000000, "feet")
  44873. },
  44874. {
  44875. name: "Transcended",
  44876. height: math.unit(8e27, "feet")
  44877. },
  44878. ]
  44879. ))
  44880. characterMakers.push(() => makeCharacter(
  44881. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44882. {
  44883. front: {
  44884. height: math.unit(5, "feet"),
  44885. weight: math.unit(50, "kg"),
  44886. name: "Front",
  44887. image: {
  44888. source: "./media/characters/biot-avery/front.svg",
  44889. extra: 1295/1232,
  44890. bottom: 86/1381
  44891. }
  44892. },
  44893. },
  44894. [
  44895. {
  44896. name: "Normal",
  44897. height: math.unit(5, "feet"),
  44898. default: true
  44899. },
  44900. ]
  44901. ))
  44902. characterMakers.push(() => makeCharacter(
  44903. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44904. {
  44905. front: {
  44906. height: math.unit(6, "feet"),
  44907. name: "Front",
  44908. image: {
  44909. source: "./media/characters/kitsune-kiro/front.svg",
  44910. extra: 1270/1158,
  44911. bottom: 42/1312
  44912. }
  44913. },
  44914. frontAlt: {
  44915. height: math.unit(6, "feet"),
  44916. name: "Front-alt",
  44917. image: {
  44918. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44919. extra: 1130/1081,
  44920. bottom: 36/1166
  44921. }
  44922. },
  44923. },
  44924. [
  44925. {
  44926. name: "Smol",
  44927. height: math.unit(3, "feet")
  44928. },
  44929. {
  44930. name: "Normal",
  44931. height: math.unit(6, "feet"),
  44932. default: true
  44933. },
  44934. ]
  44935. ))
  44936. characterMakers.push(() => makeCharacter(
  44937. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44938. {
  44939. front: {
  44940. height: math.unit(6, "feet"),
  44941. weight: math.unit(125, "lb"),
  44942. name: "Front",
  44943. image: {
  44944. source: "./media/characters/jack-thatcher/front.svg",
  44945. extra: 1474/1370,
  44946. bottom: 26/1500
  44947. }
  44948. },
  44949. back: {
  44950. height: math.unit(6, "feet"),
  44951. weight: math.unit(125, "lb"),
  44952. name: "Back",
  44953. image: {
  44954. source: "./media/characters/jack-thatcher/back.svg",
  44955. extra: 1489/1384,
  44956. bottom: 18/1507
  44957. }
  44958. },
  44959. },
  44960. [
  44961. {
  44962. name: "Normal",
  44963. height: math.unit(6, "feet"),
  44964. default: true
  44965. },
  44966. {
  44967. name: "Macro",
  44968. height: math.unit(75, "feet")
  44969. },
  44970. {
  44971. name: "Macro-er",
  44972. height: math.unit(250, "feet")
  44973. },
  44974. ]
  44975. ))
  44976. characterMakers.push(() => makeCharacter(
  44977. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44978. {
  44979. front: {
  44980. height: math.unit(7, "feet"),
  44981. weight: math.unit(110, "kg"),
  44982. name: "Front",
  44983. image: {
  44984. source: "./media/characters/max-hyper/front.svg",
  44985. extra: 1969/1881,
  44986. bottom: 49/2018
  44987. }
  44988. },
  44989. },
  44990. [
  44991. {
  44992. name: "Normal",
  44993. height: math.unit(7, "feet"),
  44994. default: true
  44995. },
  44996. ]
  44997. ))
  44998. characterMakers.push(() => makeCharacter(
  44999. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45000. {
  45001. front: {
  45002. height: math.unit(5 + 5/12, "feet"),
  45003. weight: math.unit(160, "lb"),
  45004. name: "Front",
  45005. image: {
  45006. source: "./media/characters/spook/front.svg",
  45007. extra: 794/791,
  45008. bottom: 54/848
  45009. }
  45010. },
  45011. back: {
  45012. height: math.unit(5 + 5/12, "feet"),
  45013. weight: math.unit(160, "lb"),
  45014. name: "Back",
  45015. image: {
  45016. source: "./media/characters/spook/back.svg",
  45017. extra: 812/798,
  45018. bottom: 32/844
  45019. }
  45020. },
  45021. },
  45022. [
  45023. {
  45024. name: "Normal",
  45025. height: math.unit(5 + 5/12, "feet"),
  45026. default: true
  45027. },
  45028. ]
  45029. ))
  45030. characterMakers.push(() => makeCharacter(
  45031. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45032. {
  45033. front: {
  45034. height: math.unit(18, "feet"),
  45035. name: "Front",
  45036. image: {
  45037. source: "./media/characters/xeaduulix/front.svg",
  45038. extra: 1380/1166,
  45039. bottom: 110/1490
  45040. }
  45041. },
  45042. back: {
  45043. height: math.unit(18, "feet"),
  45044. name: "Back",
  45045. image: {
  45046. source: "./media/characters/xeaduulix/back.svg",
  45047. extra: 1592/1170,
  45048. bottom: 128/1720
  45049. }
  45050. },
  45051. frontNsfw: {
  45052. height: math.unit(18, "feet"),
  45053. name: "Front (NSFW)",
  45054. image: {
  45055. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45056. extra: 1380/1166,
  45057. bottom: 110/1490
  45058. }
  45059. },
  45060. backNsfw: {
  45061. height: math.unit(18, "feet"),
  45062. name: "Back (NSFW)",
  45063. image: {
  45064. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45065. extra: 1592/1170,
  45066. bottom: 128/1720
  45067. }
  45068. },
  45069. },
  45070. [
  45071. {
  45072. name: "Normal",
  45073. height: math.unit(18, "feet"),
  45074. default: true
  45075. },
  45076. ]
  45077. ))
  45078. characterMakers.push(() => makeCharacter(
  45079. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45080. {
  45081. spreadWings: {
  45082. height: math.unit(20, "feet"),
  45083. name: "Spread Wings",
  45084. image: {
  45085. source: "./media/characters/fledge/spread-wings.svg",
  45086. extra: 693/635,
  45087. bottom: 26/719
  45088. }
  45089. },
  45090. front: {
  45091. height: math.unit(20, "feet"),
  45092. name: "Front",
  45093. image: {
  45094. source: "./media/characters/fledge/front.svg",
  45095. extra: 684/637,
  45096. bottom: 18/702
  45097. }
  45098. },
  45099. frontAlt: {
  45100. height: math.unit(20, "feet"),
  45101. name: "Front (Alt)",
  45102. image: {
  45103. source: "./media/characters/fledge/front-alt.svg",
  45104. extra: 708/664,
  45105. bottom: 13/721
  45106. }
  45107. },
  45108. back: {
  45109. height: math.unit(20, "feet"),
  45110. name: "Back",
  45111. image: {
  45112. source: "./media/characters/fledge/back.svg",
  45113. extra: 718/634,
  45114. bottom: 22/740
  45115. }
  45116. },
  45117. head: {
  45118. height: math.unit(5.55, "feet"),
  45119. name: "Head",
  45120. image: {
  45121. source: "./media/characters/fledge/head.svg"
  45122. }
  45123. },
  45124. headAlt: {
  45125. height: math.unit(5.1, "feet"),
  45126. name: "Head (Alt)",
  45127. image: {
  45128. source: "./media/characters/fledge/head-alt.svg"
  45129. }
  45130. },
  45131. },
  45132. [
  45133. {
  45134. name: "Small",
  45135. height: math.unit(6 + 2/12, "feet")
  45136. },
  45137. {
  45138. name: "Big",
  45139. height: math.unit(20, "feet"),
  45140. default: true
  45141. },
  45142. {
  45143. name: "Giant",
  45144. height: math.unit(100, "feet")
  45145. },
  45146. {
  45147. name: "Macro",
  45148. height: math.unit(200, "feet")
  45149. },
  45150. ]
  45151. ))
  45152. characterMakers.push(() => makeCharacter(
  45153. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45154. {
  45155. front: {
  45156. height: math.unit(1, "meter"),
  45157. name: "Front",
  45158. image: {
  45159. source: "./media/characters/atlas-morenai/front.svg",
  45160. extra: 1275/1043,
  45161. bottom: 19/1294
  45162. }
  45163. },
  45164. back: {
  45165. height: math.unit(1, "meter"),
  45166. name: "Back",
  45167. image: {
  45168. source: "./media/characters/atlas-morenai/back.svg",
  45169. extra: 1141/1001,
  45170. bottom: 25/1166
  45171. }
  45172. },
  45173. },
  45174. [
  45175. {
  45176. name: "Normal",
  45177. height: math.unit(1, "meter"),
  45178. default: true
  45179. },
  45180. {
  45181. name: "Magic-Infused",
  45182. height: math.unit(5, "meters")
  45183. },
  45184. ]
  45185. ))
  45186. characterMakers.push(() => makeCharacter(
  45187. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45188. {
  45189. front: {
  45190. height: math.unit(5, "meters"),
  45191. name: "Front",
  45192. image: {
  45193. source: "./media/characters/cintia/front.svg",
  45194. extra: 1312/1228,
  45195. bottom: 38/1350
  45196. }
  45197. },
  45198. back: {
  45199. height: math.unit(5, "meters"),
  45200. name: "Back",
  45201. image: {
  45202. source: "./media/characters/cintia/back.svg",
  45203. extra: 1260/1166,
  45204. bottom: 98/1358
  45205. }
  45206. },
  45207. frontDick: {
  45208. height: math.unit(5, "meters"),
  45209. name: "Front (Dick)",
  45210. image: {
  45211. source: "./media/characters/cintia/front-dick.svg",
  45212. extra: 1312/1228,
  45213. bottom: 38/1350
  45214. }
  45215. },
  45216. backDick: {
  45217. height: math.unit(5, "meters"),
  45218. name: "Back (Dick)",
  45219. image: {
  45220. source: "./media/characters/cintia/back-dick.svg",
  45221. extra: 1260/1166,
  45222. bottom: 98/1358
  45223. }
  45224. },
  45225. bust: {
  45226. height: math.unit(1.97, "meters"),
  45227. name: "Bust",
  45228. image: {
  45229. source: "./media/characters/cintia/bust.svg",
  45230. extra: 617/565,
  45231. bottom: 0/617
  45232. }
  45233. },
  45234. },
  45235. [
  45236. {
  45237. name: "Normal",
  45238. height: math.unit(5, "meters"),
  45239. default: true
  45240. },
  45241. ]
  45242. ))
  45243. characterMakers.push(() => makeCharacter(
  45244. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45245. {
  45246. side: {
  45247. height: math.unit(100, "feet"),
  45248. name: "Side",
  45249. image: {
  45250. source: "./media/characters/denora/side.svg",
  45251. extra: 875/803,
  45252. bottom: 9/884
  45253. }
  45254. },
  45255. },
  45256. [
  45257. {
  45258. name: "Standard",
  45259. height: math.unit(100, "feet"),
  45260. default: true
  45261. },
  45262. {
  45263. name: "Grand",
  45264. height: math.unit(1000, "feet")
  45265. },
  45266. {
  45267. name: "Conquering",
  45268. height: math.unit(10000, "feet")
  45269. },
  45270. ]
  45271. ))
  45272. characterMakers.push(() => makeCharacter(
  45273. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45274. {
  45275. dressed: {
  45276. height: math.unit(8 + 5/12, "feet"),
  45277. weight: math.unit(700, "lb"),
  45278. name: "Dressed",
  45279. image: {
  45280. source: "./media/characters/kiva/dressed.svg",
  45281. extra: 1102/1055,
  45282. bottom: 60/1162
  45283. }
  45284. },
  45285. nude: {
  45286. height: math.unit(8 + 5/12, "feet"),
  45287. weight: math.unit(700, "lb"),
  45288. name: "Nude",
  45289. image: {
  45290. source: "./media/characters/kiva/nude.svg",
  45291. extra: 1102/1055,
  45292. bottom: 60/1162
  45293. }
  45294. },
  45295. },
  45296. [
  45297. {
  45298. name: "Base Height",
  45299. height: math.unit(8 + 5/12, "feet"),
  45300. default: true
  45301. },
  45302. {
  45303. name: "Macro",
  45304. height: math.unit(100, "feet")
  45305. },
  45306. {
  45307. name: "Max",
  45308. height: math.unit(3280, "feet")
  45309. },
  45310. ]
  45311. ))
  45312. characterMakers.push(() => makeCharacter(
  45313. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45314. {
  45315. front: {
  45316. height: math.unit(6 + 8/12, "feet"),
  45317. weight: math.unit(250, "lb"),
  45318. name: "Front",
  45319. image: {
  45320. source: "./media/characters/ztragon/front.svg",
  45321. extra: 1825/1684,
  45322. bottom: 98/1923
  45323. }
  45324. },
  45325. },
  45326. [
  45327. {
  45328. name: "Normal",
  45329. height: math.unit(6 + 8/12, "feet"),
  45330. default: true
  45331. },
  45332. {
  45333. name: "Macro",
  45334. height: math.unit(80, "feet")
  45335. },
  45336. ]
  45337. ))
  45338. characterMakers.push(() => makeCharacter(
  45339. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45340. {
  45341. front: {
  45342. height: math.unit(10.4, "feet"),
  45343. weight: math.unit(2, "tons"),
  45344. name: "Front",
  45345. image: {
  45346. source: "./media/characters/yesenia/front.svg",
  45347. extra: 1479/1474,
  45348. bottom: 233/1712
  45349. }
  45350. },
  45351. },
  45352. [
  45353. {
  45354. name: "Normal",
  45355. height: math.unit(10.4, "feet"),
  45356. default: true
  45357. },
  45358. ]
  45359. ))
  45360. characterMakers.push(() => makeCharacter(
  45361. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45362. {
  45363. normal: {
  45364. height: math.unit(6 + 1/12, "feet"),
  45365. weight: math.unit(180, "lb"),
  45366. name: "Normal",
  45367. image: {
  45368. source: "./media/characters/leanne-lycheborne/normal.svg",
  45369. extra: 1748/1660,
  45370. bottom: 98/1846
  45371. }
  45372. },
  45373. were: {
  45374. height: math.unit(12, "feet"),
  45375. weight: math.unit(1600, "lb"),
  45376. name: "Were",
  45377. image: {
  45378. source: "./media/characters/leanne-lycheborne/were.svg",
  45379. extra: 1485/1432,
  45380. bottom: 66/1551
  45381. }
  45382. },
  45383. },
  45384. [
  45385. {
  45386. name: "Normal",
  45387. height: math.unit(6 + 1/12, "feet"),
  45388. default: true
  45389. },
  45390. ]
  45391. ))
  45392. characterMakers.push(() => makeCharacter(
  45393. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45394. {
  45395. side: {
  45396. height: math.unit(13, "feet"),
  45397. name: "Side",
  45398. image: {
  45399. source: "./media/characters/kira-tyler/side.svg",
  45400. extra: 693/393,
  45401. bottom: 58/751
  45402. }
  45403. },
  45404. },
  45405. [
  45406. {
  45407. name: "Normal",
  45408. height: math.unit(13, "feet"),
  45409. default: true
  45410. },
  45411. ]
  45412. ))
  45413. characterMakers.push(() => makeCharacter(
  45414. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45415. {
  45416. front: {
  45417. height: math.unit(10.3, "feet"),
  45418. weight: math.unit(150, "lb"),
  45419. name: "Front",
  45420. image: {
  45421. source: "./media/characters/blaze/front.svg",
  45422. extra: 1378/1286,
  45423. bottom: 172/1550
  45424. }
  45425. },
  45426. },
  45427. [
  45428. {
  45429. name: "Normal",
  45430. height: math.unit(10.3, "feet"),
  45431. default: true
  45432. },
  45433. ]
  45434. ))
  45435. characterMakers.push(() => makeCharacter(
  45436. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45437. {
  45438. side: {
  45439. height: math.unit(2, "meters"),
  45440. weight: math.unit(400, "kg"),
  45441. name: "Side",
  45442. image: {
  45443. source: "./media/characters/anu/side.svg",
  45444. extra: 506/394,
  45445. bottom: 18/524
  45446. }
  45447. },
  45448. },
  45449. [
  45450. {
  45451. name: "Humanoid",
  45452. height: math.unit(2, "meters")
  45453. },
  45454. {
  45455. name: "Normal",
  45456. height: math.unit(5, "meters"),
  45457. default: true
  45458. },
  45459. ]
  45460. ))
  45461. characterMakers.push(() => makeCharacter(
  45462. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45463. {
  45464. front: {
  45465. height: math.unit(5 + 5/12, "feet"),
  45466. weight: math.unit(170, "lb"),
  45467. name: "Front",
  45468. image: {
  45469. source: "./media/characters/synx-the-lynx/front.svg",
  45470. extra: 1893/1745,
  45471. bottom: 17/1910
  45472. }
  45473. },
  45474. side: {
  45475. height: math.unit(5 + 5/12, "feet"),
  45476. weight: math.unit(170, "lb"),
  45477. name: "Side",
  45478. image: {
  45479. source: "./media/characters/synx-the-lynx/side.svg",
  45480. extra: 1884/1740,
  45481. bottom: 39/1923
  45482. }
  45483. },
  45484. back: {
  45485. height: math.unit(5 + 5/12, "feet"),
  45486. weight: math.unit(170, "lb"),
  45487. name: "Back",
  45488. image: {
  45489. source: "./media/characters/synx-the-lynx/back.svg",
  45490. extra: 1903/1755,
  45491. bottom: 14/1917
  45492. }
  45493. },
  45494. },
  45495. [
  45496. {
  45497. name: "Normal",
  45498. height: math.unit(5 + 5/12, "feet"),
  45499. default: true
  45500. },
  45501. ]
  45502. ))
  45503. characterMakers.push(() => makeCharacter(
  45504. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45505. {
  45506. back: {
  45507. height: math.unit(15, "feet"),
  45508. name: "Back",
  45509. image: {
  45510. source: "./media/characters/nadezda-fex/back.svg",
  45511. extra: 1695/1481,
  45512. bottom: 25/1720
  45513. }
  45514. },
  45515. },
  45516. [
  45517. {
  45518. name: "Normal",
  45519. height: math.unit(15, "feet"),
  45520. default: true
  45521. },
  45522. {
  45523. name: "Macro",
  45524. height: math.unit(2.5, "miles")
  45525. },
  45526. {
  45527. name: "Goddess",
  45528. height: math.unit(2, "multiverses")
  45529. },
  45530. ]
  45531. ))
  45532. characterMakers.push(() => makeCharacter(
  45533. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45534. {
  45535. front: {
  45536. height: math.unit(216, "cm"),
  45537. name: "Front",
  45538. image: {
  45539. source: "./media/characters/lev/front.svg",
  45540. extra: 1728/1670,
  45541. bottom: 82/1810
  45542. }
  45543. },
  45544. back: {
  45545. height: math.unit(216, "cm"),
  45546. name: "Back",
  45547. image: {
  45548. source: "./media/characters/lev/back.svg",
  45549. extra: 1738/1675,
  45550. bottom: 24/1762
  45551. }
  45552. },
  45553. dressed: {
  45554. height: math.unit(216, "cm"),
  45555. name: "Dressed",
  45556. image: {
  45557. source: "./media/characters/lev/dressed.svg",
  45558. extra: 1397/1351,
  45559. bottom: 73/1470
  45560. }
  45561. },
  45562. head: {
  45563. height: math.unit(0.51, "meter"),
  45564. name: "Head",
  45565. image: {
  45566. source: "./media/characters/lev/head.svg"
  45567. }
  45568. },
  45569. },
  45570. [
  45571. {
  45572. name: "Normal",
  45573. height: math.unit(216, "cm"),
  45574. default: true
  45575. },
  45576. {
  45577. name: "Relatively Macro",
  45578. height: math.unit(80, "meters")
  45579. },
  45580. {
  45581. name: "Megamacro",
  45582. height: math.unit(21600, "meters")
  45583. },
  45584. {
  45585. name: "Megamacro+",
  45586. height: math.unit(64800, "meters")
  45587. },
  45588. ]
  45589. ))
  45590. characterMakers.push(() => makeCharacter(
  45591. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45592. {
  45593. front: {
  45594. height: math.unit(2, "meters"),
  45595. weight: math.unit(80, "kg"),
  45596. name: "Front",
  45597. image: {
  45598. source: "./media/characters/moka/front.svg",
  45599. extra: 1337/1255,
  45600. bottom: 58/1395
  45601. }
  45602. },
  45603. },
  45604. [
  45605. {
  45606. name: "Micro",
  45607. height: math.unit(15, "cm")
  45608. },
  45609. {
  45610. name: "Normal",
  45611. height: math.unit(2, "meters"),
  45612. default: true
  45613. },
  45614. {
  45615. name: "Macro",
  45616. height: math.unit(20, "meters"),
  45617. },
  45618. ]
  45619. ))
  45620. characterMakers.push(() => makeCharacter(
  45621. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45622. {
  45623. front: {
  45624. height: math.unit(9, "feet"),
  45625. weight: math.unit(240, "lb"),
  45626. name: "Front",
  45627. image: {
  45628. source: "./media/characters/kuzco/front.svg",
  45629. extra: 1593/1487,
  45630. bottom: 32/1625
  45631. }
  45632. },
  45633. side: {
  45634. height: math.unit(9, "feet"),
  45635. weight: math.unit(240, "lb"),
  45636. name: "Side",
  45637. image: {
  45638. source: "./media/characters/kuzco/side.svg",
  45639. extra: 1575/1485,
  45640. bottom: 30/1605
  45641. }
  45642. },
  45643. back: {
  45644. height: math.unit(9, "feet"),
  45645. weight: math.unit(240, "lb"),
  45646. name: "Back",
  45647. image: {
  45648. source: "./media/characters/kuzco/back.svg",
  45649. extra: 1603/1514,
  45650. bottom: 14/1617
  45651. }
  45652. },
  45653. },
  45654. [
  45655. {
  45656. name: "Normal",
  45657. height: math.unit(9, "feet"),
  45658. default: true
  45659. },
  45660. ]
  45661. ))
  45662. characterMakers.push(() => makeCharacter(
  45663. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45664. {
  45665. side: {
  45666. height: math.unit(2, "meters"),
  45667. weight: math.unit(300, "kg"),
  45668. name: "Side",
  45669. image: {
  45670. source: "./media/characters/ceruleus/side.svg",
  45671. extra: 1068/974,
  45672. bottom: 126/1194
  45673. }
  45674. },
  45675. },
  45676. [
  45677. {
  45678. name: "Normal",
  45679. height: math.unit(16, "meters"),
  45680. default: true
  45681. },
  45682. ]
  45683. ))
  45684. characterMakers.push(() => makeCharacter(
  45685. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45686. {
  45687. front: {
  45688. height: math.unit(9, "feet"),
  45689. weight: math.unit(500, "kg"),
  45690. name: "Front",
  45691. image: {
  45692. source: "./media/characters/acouya/front.svg",
  45693. extra: 1660/1473,
  45694. bottom: 28/1688
  45695. }
  45696. },
  45697. },
  45698. [
  45699. {
  45700. name: "Normal",
  45701. height: math.unit(9, "feet"),
  45702. default: true
  45703. },
  45704. ]
  45705. ))
  45706. characterMakers.push(() => makeCharacter(
  45707. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45708. {
  45709. front: {
  45710. height: math.unit(5 + 6/12, "feet"),
  45711. weight: math.unit(195, "lb"),
  45712. name: "Front",
  45713. image: {
  45714. source: "./media/characters/vant/front.svg",
  45715. extra: 1396/1320,
  45716. bottom: 20/1416
  45717. }
  45718. },
  45719. back: {
  45720. height: math.unit(5 + 6/12, "feet"),
  45721. weight: math.unit(195, "lb"),
  45722. name: "Back",
  45723. image: {
  45724. source: "./media/characters/vant/back.svg",
  45725. extra: 1396/1320,
  45726. bottom: 20/1416
  45727. }
  45728. },
  45729. maw: {
  45730. height: math.unit(0.75, "feet"),
  45731. name: "Maw",
  45732. image: {
  45733. source: "./media/characters/vant/maw.svg"
  45734. }
  45735. },
  45736. paw: {
  45737. height: math.unit(1.07, "feet"),
  45738. name: "Paw",
  45739. image: {
  45740. source: "./media/characters/vant/paw.svg"
  45741. }
  45742. },
  45743. },
  45744. [
  45745. {
  45746. name: "Micro",
  45747. height: math.unit(0.25, "inches")
  45748. },
  45749. {
  45750. name: "Normal",
  45751. height: math.unit(5 + 6/12, "feet"),
  45752. default: true
  45753. },
  45754. {
  45755. name: "Macro",
  45756. height: math.unit(75, "feet")
  45757. },
  45758. ]
  45759. ))
  45760. characterMakers.push(() => makeCharacter(
  45761. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45762. {
  45763. front: {
  45764. height: math.unit(30, "meters"),
  45765. weight: math.unit(363, "tons"),
  45766. name: "Front",
  45767. image: {
  45768. source: "./media/characters/ahra/front.svg",
  45769. extra: 1914/1814,
  45770. bottom: 46/1960
  45771. }
  45772. },
  45773. },
  45774. [
  45775. {
  45776. name: "Macro",
  45777. height: math.unit(30, "meters"),
  45778. default: true
  45779. },
  45780. ]
  45781. ))
  45782. characterMakers.push(() => makeCharacter(
  45783. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45784. {
  45785. undressed: {
  45786. height: math.unit(2, "m"),
  45787. weight: math.unit(250, "kg"),
  45788. name: "Undressed",
  45789. image: {
  45790. source: "./media/characters/coriander/undressed.svg",
  45791. extra: 1757/1606,
  45792. bottom: 107/1864
  45793. }
  45794. },
  45795. dressed: {
  45796. height: math.unit(2, "m"),
  45797. weight: math.unit(250, "kg"),
  45798. name: "Dressed",
  45799. image: {
  45800. source: "./media/characters/coriander/dressed.svg",
  45801. extra: 1757/1606,
  45802. bottom: 107/1864
  45803. }
  45804. },
  45805. },
  45806. [
  45807. {
  45808. name: "Normal",
  45809. height: math.unit(4, "meters"),
  45810. default: true
  45811. },
  45812. {
  45813. name: "XL",
  45814. height: math.unit(6, "meters")
  45815. },
  45816. {
  45817. name: "XXL",
  45818. height: math.unit(8, "meters")
  45819. },
  45820. ]
  45821. ))
  45822. characterMakers.push(() => makeCharacter(
  45823. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45824. {
  45825. front: {
  45826. height: math.unit(6, "feet"),
  45827. name: "Front",
  45828. image: {
  45829. source: "./media/characters/syrinx/front.svg",
  45830. extra: 1557/1259,
  45831. bottom: 171/1728
  45832. }
  45833. },
  45834. },
  45835. [
  45836. {
  45837. name: "Normal",
  45838. height: math.unit(6 + 3/12, "feet"),
  45839. default: true
  45840. },
  45841. ]
  45842. ))
  45843. characterMakers.push(() => makeCharacter(
  45844. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45845. {
  45846. front: {
  45847. height: math.unit(11 + 6/12, "feet"),
  45848. weight: math.unit(1.5, "tons"),
  45849. name: "Front",
  45850. image: {
  45851. source: "./media/characters/bor/front.svg",
  45852. extra: 1189/1109,
  45853. bottom: 170/1359
  45854. }
  45855. },
  45856. },
  45857. [
  45858. {
  45859. name: "Normal",
  45860. height: math.unit(11 + 6/12, "feet"),
  45861. default: true
  45862. },
  45863. {
  45864. name: "Macro",
  45865. height: math.unit(32 + 9/12, "feet")
  45866. },
  45867. ]
  45868. ))
  45869. characterMakers.push(() => makeCharacter(
  45870. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45871. {
  45872. anthro: {
  45873. height: math.unit(9, "feet"),
  45874. weight: math.unit(2076, "lb"),
  45875. name: "Anthro",
  45876. image: {
  45877. source: "./media/characters/abacus/anthro.svg",
  45878. extra: 1540/1494,
  45879. bottom: 233/1773
  45880. }
  45881. },
  45882. pigeon: {
  45883. height: math.unit(1, "feet"),
  45884. name: "Pigeon",
  45885. image: {
  45886. source: "./media/characters/abacus/pigeon.svg",
  45887. extra: 528/525,
  45888. bottom: 46/574
  45889. }
  45890. },
  45891. },
  45892. [
  45893. {
  45894. name: "Normal",
  45895. height: math.unit(9, "feet"),
  45896. default: true
  45897. },
  45898. ]
  45899. ))
  45900. characterMakers.push(() => makeCharacter(
  45901. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45902. {
  45903. side: {
  45904. height: math.unit(6, "feet"),
  45905. name: "Side",
  45906. image: {
  45907. source: "./media/characters/delkhan/side.svg",
  45908. extra: 1884/1786,
  45909. bottom: 308/2192
  45910. }
  45911. },
  45912. head: {
  45913. height: math.unit(3.38, "feet"),
  45914. name: "Head",
  45915. image: {
  45916. source: "./media/characters/delkhan/head.svg"
  45917. }
  45918. },
  45919. },
  45920. [
  45921. {
  45922. name: "Normal",
  45923. height: math.unit(72, "feet"),
  45924. default: true
  45925. },
  45926. {
  45927. name: "Giant",
  45928. height: math.unit(172, "feet")
  45929. },
  45930. ]
  45931. ))
  45932. characterMakers.push(() => makeCharacter(
  45933. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45934. {
  45935. standing: {
  45936. height: math.unit(6, "feet"),
  45937. name: "Standing",
  45938. image: {
  45939. source: "./media/characters/euchidat/standing.svg",
  45940. extra: 1612/1553,
  45941. bottom: 116/1728
  45942. }
  45943. },
  45944. leaning: {
  45945. height: math.unit(6, "feet"),
  45946. name: "Leaning",
  45947. image: {
  45948. source: "./media/characters/euchidat/leaning.svg",
  45949. extra: 1719/1674,
  45950. bottom: 27/1746
  45951. }
  45952. },
  45953. },
  45954. [
  45955. {
  45956. name: "Normal",
  45957. height: math.unit(175, "feet"),
  45958. default: true
  45959. },
  45960. {
  45961. name: "Megamacro",
  45962. height: math.unit(190, "miles")
  45963. },
  45964. {
  45965. name: "Gigamacro",
  45966. height: math.unit(190000, "miles")
  45967. },
  45968. ]
  45969. ))
  45970. characterMakers.push(() => makeCharacter(
  45971. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45972. {
  45973. front: {
  45974. height: math.unit(6, "feet"),
  45975. weight: math.unit(150, "lb"),
  45976. name: "Front",
  45977. image: {
  45978. source: "./media/characters/rebecca-stack/front.svg",
  45979. extra: 1256/1201,
  45980. bottom: 18/1274
  45981. }
  45982. },
  45983. },
  45984. [
  45985. {
  45986. name: "Normal",
  45987. height: math.unit(5 + 8/12, "feet"),
  45988. default: true
  45989. },
  45990. {
  45991. name: "Demolitionist",
  45992. height: math.unit(200, "feet")
  45993. },
  45994. {
  45995. name: "Out of Control",
  45996. height: math.unit(2, "miles")
  45997. },
  45998. {
  45999. name: "Giga",
  46000. height: math.unit(7200, "miles")
  46001. },
  46002. ]
  46003. ))
  46004. characterMakers.push(() => makeCharacter(
  46005. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46006. {
  46007. front: {
  46008. height: math.unit(6, "feet"),
  46009. weight: math.unit(150, "lb"),
  46010. name: "Front",
  46011. image: {
  46012. source: "./media/characters/jenny-cartwright/front.svg",
  46013. extra: 1384/1376,
  46014. bottom: 58/1442
  46015. }
  46016. },
  46017. },
  46018. [
  46019. {
  46020. name: "Normal",
  46021. height: math.unit(6 + 7/12, "feet"),
  46022. default: true
  46023. },
  46024. {
  46025. name: "Librarian",
  46026. height: math.unit(55, "feet")
  46027. },
  46028. {
  46029. name: "Sightseer",
  46030. height: math.unit(50, "miles")
  46031. },
  46032. {
  46033. name: "Giga",
  46034. height: math.unit(30000, "miles")
  46035. },
  46036. ]
  46037. ))
  46038. characterMakers.push(() => makeCharacter(
  46039. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46040. {
  46041. nude: {
  46042. height: math.unit(8, "feet"),
  46043. weight: math.unit(225, "lb"),
  46044. name: "Nude",
  46045. image: {
  46046. source: "./media/characters/marvy/nude.svg",
  46047. extra: 1900/1683,
  46048. bottom: 89/1989
  46049. }
  46050. },
  46051. dressed: {
  46052. height: math.unit(8, "feet"),
  46053. weight: math.unit(225, "lb"),
  46054. name: "Dressed",
  46055. image: {
  46056. source: "./media/characters/marvy/dressed.svg",
  46057. extra: 1900/1683,
  46058. bottom: 89/1989
  46059. }
  46060. },
  46061. head: {
  46062. height: math.unit(2.85, "feet"),
  46063. name: "Head",
  46064. image: {
  46065. source: "./media/characters/marvy/head.svg"
  46066. }
  46067. },
  46068. },
  46069. [
  46070. {
  46071. name: "Normal",
  46072. height: math.unit(8, "feet"),
  46073. default: true
  46074. },
  46075. ]
  46076. ))
  46077. characterMakers.push(() => makeCharacter(
  46078. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46079. {
  46080. front: {
  46081. height: math.unit(8, "feet"),
  46082. weight: math.unit(250, "lb"),
  46083. name: "Front",
  46084. image: {
  46085. source: "./media/characters/leah/front.svg",
  46086. extra: 1257/1149,
  46087. bottom: 109/1366
  46088. }
  46089. },
  46090. },
  46091. [
  46092. {
  46093. name: "Normal",
  46094. height: math.unit(8, "feet"),
  46095. default: true
  46096. },
  46097. {
  46098. name: "Minimacro",
  46099. height: math.unit(40, "feet")
  46100. },
  46101. {
  46102. name: "Macro",
  46103. height: math.unit(124, "feet")
  46104. },
  46105. {
  46106. name: "Megamacro",
  46107. height: math.unit(850, "feet")
  46108. },
  46109. ]
  46110. ))
  46111. characterMakers.push(() => makeCharacter(
  46112. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46113. {
  46114. side: {
  46115. height: math.unit(13 + 6/12, "feet"),
  46116. weight: math.unit(3200, "lb"),
  46117. name: "Side",
  46118. image: {
  46119. source: "./media/characters/alvir/side.svg",
  46120. extra: 896/589,
  46121. bottom: 26/922
  46122. }
  46123. },
  46124. },
  46125. [
  46126. {
  46127. name: "Normal",
  46128. height: math.unit(13 + 6/12, "feet"),
  46129. default: true
  46130. },
  46131. ]
  46132. ))
  46133. characterMakers.push(() => makeCharacter(
  46134. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46135. {
  46136. front: {
  46137. height: math.unit(5 + 4/12, "feet"),
  46138. weight: math.unit(236, "lb"),
  46139. name: "Front",
  46140. image: {
  46141. source: "./media/characters/zaina-khalil/front.svg",
  46142. extra: 1533/1485,
  46143. bottom: 94/1627
  46144. }
  46145. },
  46146. side: {
  46147. height: math.unit(5 + 4/12, "feet"),
  46148. weight: math.unit(236, "lb"),
  46149. name: "Side",
  46150. image: {
  46151. source: "./media/characters/zaina-khalil/side.svg",
  46152. extra: 1537/1498,
  46153. bottom: 66/1603
  46154. }
  46155. },
  46156. back: {
  46157. height: math.unit(5 + 4/12, "feet"),
  46158. weight: math.unit(236, "lb"),
  46159. name: "Back",
  46160. image: {
  46161. source: "./media/characters/zaina-khalil/back.svg",
  46162. extra: 1546/1494,
  46163. bottom: 89/1635
  46164. }
  46165. },
  46166. },
  46167. [
  46168. {
  46169. name: "Normal",
  46170. height: math.unit(5 + 4/12, "feet"),
  46171. default: true
  46172. },
  46173. ]
  46174. ))
  46175. characterMakers.push(() => makeCharacter(
  46176. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46177. {
  46178. side: {
  46179. height: math.unit(12, "feet"),
  46180. weight: math.unit(4000, "lb"),
  46181. name: "Side",
  46182. image: {
  46183. source: "./media/characters/terry/side.svg",
  46184. extra: 1518/1439,
  46185. bottom: 149/1667
  46186. }
  46187. },
  46188. },
  46189. [
  46190. {
  46191. name: "Normal",
  46192. height: math.unit(12, "feet"),
  46193. default: true
  46194. },
  46195. ]
  46196. ))
  46197. characterMakers.push(() => makeCharacter(
  46198. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46199. {
  46200. front: {
  46201. height: math.unit(12, "feet"),
  46202. weight: math.unit(1500, "lb"),
  46203. name: "Front",
  46204. image: {
  46205. source: "./media/characters/kahea/front.svg",
  46206. extra: 1722/1617,
  46207. bottom: 179/1901
  46208. }
  46209. },
  46210. },
  46211. [
  46212. {
  46213. name: "Normal",
  46214. height: math.unit(12, "feet"),
  46215. default: true
  46216. },
  46217. ]
  46218. ))
  46219. characterMakers.push(() => makeCharacter(
  46220. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46221. {
  46222. demonFront: {
  46223. height: math.unit(36, "feet"),
  46224. name: "Front",
  46225. image: {
  46226. source: "./media/characters/alex-xuria/demon-front.svg",
  46227. extra: 1705/1673,
  46228. bottom: 198/1903
  46229. },
  46230. form: "demon",
  46231. default: true
  46232. },
  46233. demonBack: {
  46234. height: math.unit(36, "feet"),
  46235. name: "Back",
  46236. image: {
  46237. source: "./media/characters/alex-xuria/demon-back.svg",
  46238. extra: 1725/1693,
  46239. bottom: 70/1795
  46240. },
  46241. form: "demon"
  46242. },
  46243. demonHead: {
  46244. height: math.unit(2.14, "meters"),
  46245. name: "Head",
  46246. image: {
  46247. source: "./media/characters/alex-xuria/demon-head.svg"
  46248. },
  46249. form: "demon"
  46250. },
  46251. demonHand: {
  46252. height: math.unit(1.61, "meters"),
  46253. name: "Hand",
  46254. image: {
  46255. source: "./media/characters/alex-xuria/demon-hand.svg"
  46256. },
  46257. form: "demon"
  46258. },
  46259. demonPaw: {
  46260. height: math.unit(1.35, "meters"),
  46261. name: "Paw",
  46262. image: {
  46263. source: "./media/characters/alex-xuria/demon-paw.svg"
  46264. },
  46265. form: "demon"
  46266. },
  46267. demonFoot: {
  46268. height: math.unit(2.2, "meters"),
  46269. name: "Foot",
  46270. image: {
  46271. source: "./media/characters/alex-xuria/demon-foot.svg"
  46272. },
  46273. form: "demon"
  46274. },
  46275. demonCock: {
  46276. height: math.unit(1.74, "meters"),
  46277. name: "Cock",
  46278. image: {
  46279. source: "./media/characters/alex-xuria/demon-cock.svg"
  46280. },
  46281. form: "demon"
  46282. },
  46283. demonTailClosed: {
  46284. height: math.unit(1.47, "meters"),
  46285. name: "Tail (Closed)",
  46286. image: {
  46287. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46288. },
  46289. form: "demon"
  46290. },
  46291. demonTailOpen: {
  46292. height: math.unit(2.85, "meters"),
  46293. name: "Tail (Open)",
  46294. image: {
  46295. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46296. },
  46297. form: "demon"
  46298. },
  46299. incubusFront: {
  46300. height: math.unit(12, "feet"),
  46301. name: "Front",
  46302. image: {
  46303. source: "./media/characters/alex-xuria/incubus-front.svg",
  46304. extra: 1754/1677,
  46305. bottom: 125/1879
  46306. },
  46307. form: "incubus",
  46308. default: true
  46309. },
  46310. incubusBack: {
  46311. height: math.unit(12, "feet"),
  46312. name: "Back",
  46313. image: {
  46314. source: "./media/characters/alex-xuria/incubus-back.svg",
  46315. extra: 1702/1647,
  46316. bottom: 30/1732
  46317. },
  46318. form: "incubus"
  46319. },
  46320. incubusHead: {
  46321. height: math.unit(3.45, "feet"),
  46322. name: "Head",
  46323. image: {
  46324. source: "./media/characters/alex-xuria/incubus-head.svg"
  46325. },
  46326. form: "incubus"
  46327. },
  46328. rabbitFront: {
  46329. height: math.unit(6, "feet"),
  46330. name: "Front",
  46331. image: {
  46332. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46333. extra: 1369/1349,
  46334. bottom: 45/1414
  46335. },
  46336. form: "rabbit",
  46337. default: true
  46338. },
  46339. rabbitSide: {
  46340. height: math.unit(6, "feet"),
  46341. name: "Side",
  46342. image: {
  46343. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46344. extra: 1370/1356,
  46345. bottom: 37/1407
  46346. },
  46347. form: "rabbit"
  46348. },
  46349. rabbitBack: {
  46350. height: math.unit(6, "feet"),
  46351. name: "Back",
  46352. image: {
  46353. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46354. extra: 1375/1358,
  46355. bottom: 43/1418
  46356. },
  46357. form: "rabbit"
  46358. },
  46359. },
  46360. [
  46361. {
  46362. name: "Normal",
  46363. height: math.unit(6, "feet"),
  46364. default: true,
  46365. form: "rabbit"
  46366. },
  46367. {
  46368. name: "Incubus",
  46369. height: math.unit(12, "feet"),
  46370. default: true,
  46371. form: "incubus"
  46372. },
  46373. {
  46374. name: "Demon",
  46375. height: math.unit(36, "feet"),
  46376. default: true,
  46377. form: "demon"
  46378. }
  46379. ],
  46380. {
  46381. "demon": {
  46382. name: "Demon",
  46383. default: true
  46384. },
  46385. "incubus": {
  46386. name: "Incubus",
  46387. },
  46388. "rabbit": {
  46389. name: "Rabbit"
  46390. }
  46391. }
  46392. ))
  46393. characterMakers.push(() => makeCharacter(
  46394. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46395. {
  46396. front: {
  46397. height: math.unit(7 + 5/12, "feet"),
  46398. weight: math.unit(510, "lb"),
  46399. name: "Front",
  46400. image: {
  46401. source: "./media/characters/syrup/front.svg",
  46402. extra: 932/916,
  46403. bottom: 26/958
  46404. }
  46405. },
  46406. },
  46407. [
  46408. {
  46409. name: "Normal",
  46410. height: math.unit(7 + 5/12, "feet"),
  46411. default: true
  46412. },
  46413. {
  46414. name: "Big",
  46415. height: math.unit(50, "feet")
  46416. },
  46417. {
  46418. name: "Macro",
  46419. height: math.unit(300, "feet")
  46420. },
  46421. {
  46422. name: "Megamacro",
  46423. height: math.unit(1, "mile")
  46424. },
  46425. ]
  46426. ))
  46427. characterMakers.push(() => makeCharacter(
  46428. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46429. {
  46430. front: {
  46431. height: math.unit(6 + 9/12, "feet"),
  46432. name: "Front",
  46433. image: {
  46434. source: "./media/characters/zeimne/front.svg",
  46435. extra: 1969/1806,
  46436. bottom: 53/2022
  46437. }
  46438. },
  46439. },
  46440. [
  46441. {
  46442. name: "Normal",
  46443. height: math.unit(6 + 9/12, "feet"),
  46444. default: true
  46445. },
  46446. {
  46447. name: "Giant",
  46448. height: math.unit(550, "feet")
  46449. },
  46450. {
  46451. name: "Mega",
  46452. height: math.unit(3, "miles")
  46453. },
  46454. {
  46455. name: "Giga",
  46456. height: math.unit(250, "miles")
  46457. },
  46458. {
  46459. name: "Tera",
  46460. height: math.unit(1, "AU")
  46461. },
  46462. ]
  46463. ))
  46464. characterMakers.push(() => makeCharacter(
  46465. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46466. {
  46467. front: {
  46468. height: math.unit(5 + 2/12, "feet"),
  46469. name: "Front",
  46470. image: {
  46471. source: "./media/characters/grar/front.svg",
  46472. extra: 1331/1119,
  46473. bottom: 60/1391
  46474. }
  46475. },
  46476. back: {
  46477. height: math.unit(5 + 2/12, "feet"),
  46478. name: "Back",
  46479. image: {
  46480. source: "./media/characters/grar/back.svg",
  46481. extra: 1385/1169,
  46482. bottom: 23/1408
  46483. }
  46484. },
  46485. },
  46486. [
  46487. {
  46488. name: "Normal",
  46489. height: math.unit(5 + 2/12, "feet"),
  46490. default: true
  46491. },
  46492. ]
  46493. ))
  46494. characterMakers.push(() => makeCharacter(
  46495. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46496. {
  46497. front: {
  46498. height: math.unit(13 + 7/12, "feet"),
  46499. weight: math.unit(2200, "lb"),
  46500. name: "Front",
  46501. image: {
  46502. source: "./media/characters/endraya/front.svg",
  46503. extra: 1289/1215,
  46504. bottom: 50/1339
  46505. }
  46506. },
  46507. nude: {
  46508. height: math.unit(13 + 7/12, "feet"),
  46509. weight: math.unit(2200, "lb"),
  46510. name: "Nude",
  46511. image: {
  46512. source: "./media/characters/endraya/nude.svg",
  46513. extra: 1247/1171,
  46514. bottom: 40/1287
  46515. }
  46516. },
  46517. head: {
  46518. height: math.unit(2.6, "feet"),
  46519. name: "Head",
  46520. image: {
  46521. source: "./media/characters/endraya/head.svg"
  46522. }
  46523. },
  46524. slit: {
  46525. height: math.unit(3.4, "feet"),
  46526. name: "Slit",
  46527. image: {
  46528. source: "./media/characters/endraya/slit.svg"
  46529. }
  46530. },
  46531. },
  46532. [
  46533. {
  46534. name: "Normal",
  46535. height: math.unit(13 + 7/12, "feet"),
  46536. default: true
  46537. },
  46538. {
  46539. name: "Macro",
  46540. height: math.unit(200, "feet")
  46541. },
  46542. ]
  46543. ))
  46544. characterMakers.push(() => makeCharacter(
  46545. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46546. {
  46547. front: {
  46548. height: math.unit(1.81, "meters"),
  46549. weight: math.unit(69, "kg"),
  46550. name: "Front",
  46551. image: {
  46552. source: "./media/characters/rodryana/front.svg",
  46553. extra: 2002/1921,
  46554. bottom: 53/2055
  46555. }
  46556. },
  46557. back: {
  46558. height: math.unit(1.81, "meters"),
  46559. weight: math.unit(69, "kg"),
  46560. name: "Back",
  46561. image: {
  46562. source: "./media/characters/rodryana/back.svg",
  46563. extra: 1993/1926,
  46564. bottom: 48/2041
  46565. }
  46566. },
  46567. maw: {
  46568. height: math.unit(0.19769417475, "meters"),
  46569. name: "Maw",
  46570. image: {
  46571. source: "./media/characters/rodryana/maw.svg"
  46572. }
  46573. },
  46574. slit: {
  46575. height: math.unit(0.31631067961, "meters"),
  46576. name: "Slit",
  46577. image: {
  46578. source: "./media/characters/rodryana/slit.svg"
  46579. }
  46580. },
  46581. },
  46582. [
  46583. {
  46584. name: "Normal",
  46585. height: math.unit(1.81, "meters")
  46586. },
  46587. {
  46588. name: "Mini Macro",
  46589. height: math.unit(181, "meters")
  46590. },
  46591. {
  46592. name: "Macro",
  46593. height: math.unit(452, "meters"),
  46594. default: true
  46595. },
  46596. {
  46597. name: "Mega Macro",
  46598. height: math.unit(1.375, "km")
  46599. },
  46600. {
  46601. name: "Giga Macro",
  46602. height: math.unit(13.575, "km")
  46603. },
  46604. ]
  46605. ))
  46606. characterMakers.push(() => makeCharacter(
  46607. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46608. {
  46609. front: {
  46610. height: math.unit(6, "feet"),
  46611. weight: math.unit(1000, "lb"),
  46612. name: "Front",
  46613. image: {
  46614. source: "./media/characters/asaya/front.svg",
  46615. extra: 1460/1200,
  46616. bottom: 71/1531
  46617. }
  46618. },
  46619. },
  46620. [
  46621. {
  46622. name: "Normal",
  46623. height: math.unit(8, "km"),
  46624. default: true
  46625. },
  46626. ]
  46627. ))
  46628. characterMakers.push(() => makeCharacter(
  46629. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46630. {
  46631. front: {
  46632. height: math.unit(3.5, "meters"),
  46633. name: "Front",
  46634. image: {
  46635. source: "./media/characters/sarzu-and-israz/front.svg",
  46636. extra: 1570/1558,
  46637. bottom: 150/1720
  46638. },
  46639. },
  46640. back: {
  46641. height: math.unit(3.5, "meters"),
  46642. name: "Back",
  46643. image: {
  46644. source: "./media/characters/sarzu-and-israz/back.svg",
  46645. extra: 1523/1509,
  46646. bottom: 132/1655
  46647. },
  46648. },
  46649. frontFemale: {
  46650. height: math.unit(3.5, "meters"),
  46651. name: "Front (Female)",
  46652. image: {
  46653. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46654. extra: 1570/1558,
  46655. bottom: 150/1720
  46656. },
  46657. },
  46658. frontHerm: {
  46659. height: math.unit(3.5, "meters"),
  46660. name: "Front (Herm)",
  46661. image: {
  46662. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46663. extra: 1570/1558,
  46664. bottom: 150/1720
  46665. },
  46666. },
  46667. },
  46668. [
  46669. {
  46670. name: "Normal",
  46671. height: math.unit(3.5, "meters"),
  46672. default: true,
  46673. },
  46674. {
  46675. name: "Macro",
  46676. height: math.unit(65.5, "meters"),
  46677. },
  46678. ],
  46679. ))
  46680. characterMakers.push(() => makeCharacter(
  46681. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46682. {
  46683. front: {
  46684. height: math.unit(6, "feet"),
  46685. weight: math.unit(250, "lb"),
  46686. name: "Front",
  46687. image: {
  46688. source: "./media/characters/zenimma/front.svg",
  46689. extra: 1346/1320,
  46690. bottom: 58/1404
  46691. }
  46692. },
  46693. back: {
  46694. height: math.unit(6, "feet"),
  46695. weight: math.unit(250, "lb"),
  46696. name: "Back",
  46697. image: {
  46698. source: "./media/characters/zenimma/back.svg",
  46699. extra: 1324/1308,
  46700. bottom: 44/1368
  46701. }
  46702. },
  46703. dick: {
  46704. height: math.unit(1.44, "feet"),
  46705. name: "Dick",
  46706. image: {
  46707. source: "./media/characters/zenimma/dick.svg"
  46708. }
  46709. },
  46710. },
  46711. [
  46712. {
  46713. name: "Canon Height",
  46714. height: math.unit(66, "miles"),
  46715. default: true
  46716. },
  46717. ]
  46718. ))
  46719. characterMakers.push(() => makeCharacter(
  46720. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46721. {
  46722. nude: {
  46723. height: math.unit(6, "feet"),
  46724. weight: math.unit(150, "lb"),
  46725. name: "Nude",
  46726. image: {
  46727. source: "./media/characters/shavon/nude.svg",
  46728. extra: 1242/1096,
  46729. bottom: 98/1340
  46730. }
  46731. },
  46732. dressed: {
  46733. height: math.unit(6, "feet"),
  46734. weight: math.unit(150, "lb"),
  46735. name: "Dressed",
  46736. image: {
  46737. source: "./media/characters/shavon/dressed.svg",
  46738. extra: 1242/1096,
  46739. bottom: 98/1340
  46740. }
  46741. },
  46742. },
  46743. [
  46744. {
  46745. name: "Macro",
  46746. height: math.unit(255, "feet"),
  46747. default: true
  46748. },
  46749. ]
  46750. ))
  46751. characterMakers.push(() => makeCharacter(
  46752. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46753. {
  46754. front: {
  46755. height: math.unit(6, "feet"),
  46756. name: "Front",
  46757. image: {
  46758. source: "./media/characters/steph/front.svg",
  46759. extra: 1430/1330,
  46760. bottom: 54/1484
  46761. }
  46762. },
  46763. },
  46764. [
  46765. {
  46766. name: "Normal",
  46767. height: math.unit(6, "feet"),
  46768. default: true
  46769. },
  46770. ]
  46771. ))
  46772. characterMakers.push(() => makeCharacter(
  46773. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46774. {
  46775. front: {
  46776. height: math.unit(9, "feet"),
  46777. weight: math.unit(400, "lb"),
  46778. name: "Front",
  46779. image: {
  46780. source: "./media/characters/kil'aman/front.svg",
  46781. extra: 1210/1159,
  46782. bottom: 109/1319
  46783. }
  46784. },
  46785. head: {
  46786. height: math.unit(2.14, "feet"),
  46787. name: "Head",
  46788. image: {
  46789. source: "./media/characters/kil'aman/head.svg"
  46790. }
  46791. },
  46792. maw: {
  46793. height: math.unit(1.21, "feet"),
  46794. name: "Maw",
  46795. image: {
  46796. source: "./media/characters/kil'aman/maw.svg"
  46797. }
  46798. },
  46799. foot: {
  46800. height: math.unit(1.7, "feet"),
  46801. name: "Foot",
  46802. image: {
  46803. source: "./media/characters/kil'aman/foot.svg"
  46804. }
  46805. },
  46806. dick: {
  46807. height: math.unit(2.1, "feet"),
  46808. name: "Dick",
  46809. image: {
  46810. source: "./media/characters/kil'aman/dick.svg"
  46811. }
  46812. },
  46813. },
  46814. [
  46815. {
  46816. name: "Normal",
  46817. height: math.unit(9, "feet")
  46818. },
  46819. {
  46820. name: "Canon Height",
  46821. height: math.unit(10, "miles"),
  46822. default: true
  46823. },
  46824. {
  46825. name: "Maximum",
  46826. height: math.unit(6e9, "miles")
  46827. },
  46828. ]
  46829. ))
  46830. characterMakers.push(() => makeCharacter(
  46831. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46832. {
  46833. front: {
  46834. height: math.unit(90, "feet"),
  46835. weight: math.unit(675000, "lb"),
  46836. name: "Front",
  46837. image: {
  46838. source: "./media/characters/qadan/front.svg",
  46839. extra: 1012/1004,
  46840. bottom: 78/1090
  46841. }
  46842. },
  46843. back: {
  46844. height: math.unit(90, "feet"),
  46845. weight: math.unit(675000, "lb"),
  46846. name: "Back",
  46847. image: {
  46848. source: "./media/characters/qadan/back.svg",
  46849. extra: 1042/1031,
  46850. bottom: 55/1097
  46851. }
  46852. },
  46853. armored: {
  46854. height: math.unit(90, "feet"),
  46855. weight: math.unit(675000, "lb"),
  46856. name: "Armored",
  46857. image: {
  46858. source: "./media/characters/qadan/armored.svg",
  46859. extra: 1047/1037,
  46860. bottom: 48/1095
  46861. }
  46862. },
  46863. },
  46864. [
  46865. {
  46866. name: "Normal",
  46867. height: math.unit(90, "feet"),
  46868. default: true
  46869. },
  46870. ]
  46871. ))
  46872. characterMakers.push(() => makeCharacter(
  46873. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46874. {
  46875. front: {
  46876. height: math.unit(6, "feet"),
  46877. weight: math.unit(225, "lb"),
  46878. name: "Front",
  46879. image: {
  46880. source: "./media/characters/brooke/front.svg",
  46881. extra: 1050/1010,
  46882. bottom: 66/1116
  46883. }
  46884. },
  46885. back: {
  46886. height: math.unit(6, "feet"),
  46887. weight: math.unit(225, "lb"),
  46888. name: "Back",
  46889. image: {
  46890. source: "./media/characters/brooke/back.svg",
  46891. extra: 1053/1013,
  46892. bottom: 41/1094
  46893. }
  46894. },
  46895. dressed: {
  46896. height: math.unit(6, "feet"),
  46897. weight: math.unit(225, "lb"),
  46898. name: "Dressed",
  46899. image: {
  46900. source: "./media/characters/brooke/dressed.svg",
  46901. extra: 1050/1010,
  46902. bottom: 66/1116
  46903. }
  46904. },
  46905. },
  46906. [
  46907. {
  46908. name: "Canon Height",
  46909. height: math.unit(500, "miles"),
  46910. default: true
  46911. },
  46912. ]
  46913. ))
  46914. characterMakers.push(() => makeCharacter(
  46915. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46916. {
  46917. front: {
  46918. height: math.unit(6 + 2/12, "feet"),
  46919. weight: math.unit(210, "lb"),
  46920. name: "Front",
  46921. image: {
  46922. source: "./media/characters/wubs/front.svg",
  46923. extra: 1345/1325,
  46924. bottom: 70/1415
  46925. }
  46926. },
  46927. back: {
  46928. height: math.unit(6 + 2/12, "feet"),
  46929. weight: math.unit(210, "lb"),
  46930. name: "Back",
  46931. image: {
  46932. source: "./media/characters/wubs/back.svg",
  46933. extra: 1296/1275,
  46934. bottom: 58/1354
  46935. }
  46936. },
  46937. },
  46938. [
  46939. {
  46940. name: "Normal",
  46941. height: math.unit(6 + 2/12, "feet"),
  46942. default: true
  46943. },
  46944. {
  46945. name: "Macro",
  46946. height: math.unit(1000, "feet")
  46947. },
  46948. {
  46949. name: "Megamacro",
  46950. height: math.unit(1, "mile")
  46951. },
  46952. ]
  46953. ))
  46954. characterMakers.push(() => makeCharacter(
  46955. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46956. {
  46957. front: {
  46958. height: math.unit(4, "feet"),
  46959. weight: math.unit(120, "lb"),
  46960. name: "Front",
  46961. image: {
  46962. source: "./media/characters/blue/front.svg",
  46963. extra: 1636/1525,
  46964. bottom: 43/1679
  46965. }
  46966. },
  46967. back: {
  46968. height: math.unit(4, "feet"),
  46969. weight: math.unit(120, "lb"),
  46970. name: "Back",
  46971. image: {
  46972. source: "./media/characters/blue/back.svg",
  46973. extra: 1660/1560,
  46974. bottom: 57/1717
  46975. }
  46976. },
  46977. paws: {
  46978. height: math.unit(0.826, "feet"),
  46979. name: "Paws",
  46980. image: {
  46981. source: "./media/characters/blue/paws.svg"
  46982. }
  46983. },
  46984. },
  46985. [
  46986. {
  46987. name: "Micro",
  46988. height: math.unit(3, "inches")
  46989. },
  46990. {
  46991. name: "Normal",
  46992. height: math.unit(4, "feet"),
  46993. default: true
  46994. },
  46995. {
  46996. name: "Femenine Form",
  46997. height: math.unit(14, "feet")
  46998. },
  46999. {
  47000. name: "Werebat Form",
  47001. height: math.unit(18, "feet")
  47002. },
  47003. ]
  47004. ))
  47005. characterMakers.push(() => makeCharacter(
  47006. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47007. {
  47008. female: {
  47009. height: math.unit(7 + 4/12, "feet"),
  47010. weight: math.unit(243, "lb"),
  47011. name: "Female",
  47012. image: {
  47013. source: "./media/characters/kaya/female.svg",
  47014. extra: 975/898,
  47015. bottom: 34/1009
  47016. }
  47017. },
  47018. herm: {
  47019. height: math.unit(7 + 4/12, "feet"),
  47020. weight: math.unit(243, "lb"),
  47021. name: "Herm",
  47022. image: {
  47023. source: "./media/characters/kaya/herm.svg",
  47024. extra: 975/898,
  47025. bottom: 34/1009
  47026. }
  47027. },
  47028. },
  47029. [
  47030. {
  47031. name: "Normal",
  47032. height: math.unit(7 + 4/12, "feet"),
  47033. default: true
  47034. },
  47035. ]
  47036. ))
  47037. characterMakers.push(() => makeCharacter(
  47038. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47039. {
  47040. female: {
  47041. height: math.unit(9 + 4/12, "feet"),
  47042. weight: math.unit(398, "lb"),
  47043. name: "Female",
  47044. image: {
  47045. source: "./media/characters/kassandra/female.svg",
  47046. extra: 908/839,
  47047. bottom: 61/969
  47048. }
  47049. },
  47050. intersex: {
  47051. height: math.unit(9 + 4/12, "feet"),
  47052. weight: math.unit(398, "lb"),
  47053. name: "Intersex",
  47054. image: {
  47055. source: "./media/characters/kassandra/intersex.svg",
  47056. extra: 908/839,
  47057. bottom: 61/969
  47058. }
  47059. },
  47060. },
  47061. [
  47062. {
  47063. name: "Normal",
  47064. height: math.unit(9 + 4/12, "feet"),
  47065. default: true
  47066. },
  47067. ]
  47068. ))
  47069. characterMakers.push(() => makeCharacter(
  47070. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47071. {
  47072. front: {
  47073. height: math.unit(3, "meters"),
  47074. name: "Front",
  47075. image: {
  47076. source: "./media/characters/amy/front.svg",
  47077. extra: 1380/1343,
  47078. bottom: 70/1450
  47079. }
  47080. },
  47081. back: {
  47082. height: math.unit(3, "meters"),
  47083. name: "Back",
  47084. image: {
  47085. source: "./media/characters/amy/back.svg",
  47086. extra: 1380/1347,
  47087. bottom: 66/1446
  47088. }
  47089. },
  47090. },
  47091. [
  47092. {
  47093. name: "Normal",
  47094. height: math.unit(3, "meters"),
  47095. default: true
  47096. },
  47097. ]
  47098. ))
  47099. characterMakers.push(() => makeCharacter(
  47100. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47101. {
  47102. side: {
  47103. height: math.unit(47, "cm"),
  47104. weight: math.unit(10.8, "kg"),
  47105. name: "Side",
  47106. image: {
  47107. source: "./media/characters/alphaschakal/side.svg",
  47108. extra: 1058/568,
  47109. bottom: 62/1120
  47110. }
  47111. },
  47112. back: {
  47113. height: math.unit(78, "cm"),
  47114. weight: math.unit(10.8, "kg"),
  47115. name: "Back",
  47116. image: {
  47117. source: "./media/characters/alphaschakal/back.svg",
  47118. extra: 1102/942,
  47119. bottom: 185/1287
  47120. }
  47121. },
  47122. head: {
  47123. height: math.unit(28, "cm"),
  47124. name: "Head",
  47125. image: {
  47126. source: "./media/characters/alphaschakal/head.svg",
  47127. extra: 696/508,
  47128. bottom: 0/696
  47129. }
  47130. },
  47131. paw: {
  47132. height: math.unit(16, "cm"),
  47133. name: "Paw",
  47134. image: {
  47135. source: "./media/characters/alphaschakal/paw.svg"
  47136. }
  47137. },
  47138. },
  47139. [
  47140. {
  47141. name: "Normal",
  47142. height: math.unit(47, "cm"),
  47143. default: true
  47144. },
  47145. {
  47146. name: "Macro",
  47147. height: math.unit(340, "cm")
  47148. },
  47149. ]
  47150. ))
  47151. characterMakers.push(() => makeCharacter(
  47152. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47153. {
  47154. front: {
  47155. height: math.unit(36, "earths"),
  47156. name: "Front",
  47157. image: {
  47158. source: "./media/characters/ecobyss/front.svg",
  47159. extra: 1282/1215,
  47160. bottom: 11/1293
  47161. }
  47162. },
  47163. back: {
  47164. height: math.unit(36, "earths"),
  47165. name: "Back",
  47166. image: {
  47167. source: "./media/characters/ecobyss/back.svg",
  47168. extra: 1291/1222,
  47169. bottom: 8/1299
  47170. }
  47171. },
  47172. },
  47173. [
  47174. {
  47175. name: "Normal",
  47176. height: math.unit(36, "earths"),
  47177. default: true
  47178. },
  47179. ]
  47180. ))
  47181. characterMakers.push(() => makeCharacter(
  47182. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47183. {
  47184. front: {
  47185. height: math.unit(12, "feet"),
  47186. name: "Front",
  47187. image: {
  47188. source: "./media/characters/vasuk/front.svg",
  47189. extra: 1326/1207,
  47190. bottom: 64/1390
  47191. }
  47192. },
  47193. },
  47194. [
  47195. {
  47196. name: "Normal",
  47197. height: math.unit(12, "feet"),
  47198. default: true
  47199. },
  47200. ]
  47201. ))
  47202. characterMakers.push(() => makeCharacter(
  47203. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47204. {
  47205. side: {
  47206. height: math.unit(100, "feet"),
  47207. name: "Side",
  47208. image: {
  47209. source: "./media/characters/linneaus/side.svg",
  47210. extra: 987/807,
  47211. bottom: 47/1034
  47212. }
  47213. },
  47214. },
  47215. [
  47216. {
  47217. name: "Macro",
  47218. height: math.unit(100, "feet"),
  47219. default: true
  47220. },
  47221. ]
  47222. ))
  47223. characterMakers.push(() => makeCharacter(
  47224. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47225. {
  47226. front: {
  47227. height: math.unit(8, "feet"),
  47228. weight: math.unit(1200, "lb"),
  47229. name: "Front",
  47230. image: {
  47231. source: "./media/characters/nyterious-daligdig/front.svg",
  47232. extra: 1284/1094,
  47233. bottom: 84/1368
  47234. }
  47235. },
  47236. back: {
  47237. height: math.unit(8, "feet"),
  47238. weight: math.unit(1200, "lb"),
  47239. name: "Back",
  47240. image: {
  47241. source: "./media/characters/nyterious-daligdig/back.svg",
  47242. extra: 1301/1121,
  47243. bottom: 129/1430
  47244. }
  47245. },
  47246. mouth: {
  47247. height: math.unit(1.464, "feet"),
  47248. name: "Mouth",
  47249. image: {
  47250. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47251. }
  47252. },
  47253. },
  47254. [
  47255. {
  47256. name: "Small",
  47257. height: math.unit(8, "feet"),
  47258. default: true
  47259. },
  47260. {
  47261. name: "Normal",
  47262. height: math.unit(15, "feet")
  47263. },
  47264. {
  47265. name: "Macro",
  47266. height: math.unit(90, "feet")
  47267. },
  47268. ]
  47269. ))
  47270. characterMakers.push(() => makeCharacter(
  47271. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47272. {
  47273. front: {
  47274. height: math.unit(7 + 4/12, "feet"),
  47275. weight: math.unit(252, "lb"),
  47276. name: "Front",
  47277. image: {
  47278. source: "./media/characters/bandel/front.svg",
  47279. extra: 1946/1775,
  47280. bottom: 26/1972
  47281. }
  47282. },
  47283. back: {
  47284. height: math.unit(7 + 4/12, "feet"),
  47285. weight: math.unit(252, "lb"),
  47286. name: "Back",
  47287. image: {
  47288. source: "./media/characters/bandel/back.svg",
  47289. extra: 1940/1770,
  47290. bottom: 25/1965
  47291. }
  47292. },
  47293. maw: {
  47294. height: math.unit(2.15, "feet"),
  47295. name: "Maw",
  47296. image: {
  47297. source: "./media/characters/bandel/maw.svg"
  47298. }
  47299. },
  47300. stomach: {
  47301. height: math.unit(1.95, "feet"),
  47302. name: "Stomach",
  47303. image: {
  47304. source: "./media/characters/bandel/stomach.svg"
  47305. }
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Normal",
  47311. height: math.unit(7 + 4/12, "feet"),
  47312. default: true
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47318. {
  47319. front: {
  47320. height: math.unit(10 + 5/12, "feet"),
  47321. weight: math.unit(773.5, "kg"),
  47322. name: "Front",
  47323. image: {
  47324. source: "./media/characters/zed/front.svg",
  47325. extra: 987/941,
  47326. bottom: 52/1039
  47327. }
  47328. },
  47329. },
  47330. [
  47331. {
  47332. name: "Short",
  47333. height: math.unit(5 + 4/12, "feet")
  47334. },
  47335. {
  47336. name: "Average",
  47337. height: math.unit(10 + 5/12, "feet"),
  47338. default: true
  47339. },
  47340. {
  47341. name: "Mini-Macro",
  47342. height: math.unit(24 + 9/12, "feet")
  47343. },
  47344. {
  47345. name: "Macro",
  47346. height: math.unit(249, "feet")
  47347. },
  47348. {
  47349. name: "Mega-Macro",
  47350. height: math.unit(12490, "feet")
  47351. },
  47352. {
  47353. name: "Giga-Macro",
  47354. height: math.unit(24.9, "miles")
  47355. },
  47356. {
  47357. name: "Tera-Macro",
  47358. height: math.unit(24900, "miles")
  47359. },
  47360. {
  47361. name: "Cosmic Scale",
  47362. height: math.unit(38.9, "lightyears")
  47363. },
  47364. {
  47365. name: "Universal Scale",
  47366. height: math.unit(138e12, "lightyears")
  47367. },
  47368. ]
  47369. ))
  47370. characterMakers.push(() => makeCharacter(
  47371. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47372. {
  47373. front: {
  47374. height: math.unit(1561, "inches"),
  47375. name: "Front",
  47376. image: {
  47377. source: "./media/characters/ivan/front.svg",
  47378. extra: 1126/1071,
  47379. bottom: 26/1152
  47380. }
  47381. },
  47382. back: {
  47383. height: math.unit(1561, "inches"),
  47384. name: "Back",
  47385. image: {
  47386. source: "./media/characters/ivan/back.svg",
  47387. extra: 1134/1079,
  47388. bottom: 30/1164
  47389. }
  47390. },
  47391. },
  47392. [
  47393. {
  47394. name: "Normal",
  47395. height: math.unit(1561, "inches"),
  47396. default: true
  47397. },
  47398. ]
  47399. ))
  47400. characterMakers.push(() => makeCharacter(
  47401. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47402. {
  47403. front: {
  47404. height: math.unit(5 + 7/12, "feet"),
  47405. weight: math.unit(150, "lb"),
  47406. name: "Front",
  47407. image: {
  47408. source: "./media/characters/robin-arctic-hare/front.svg",
  47409. extra: 1148/974,
  47410. bottom: 20/1168
  47411. }
  47412. },
  47413. },
  47414. [
  47415. {
  47416. name: "Normal",
  47417. height: math.unit(5 + 7/12, "feet"),
  47418. default: true
  47419. },
  47420. ]
  47421. ))
  47422. characterMakers.push(() => makeCharacter(
  47423. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47424. {
  47425. side: {
  47426. height: math.unit(5, "feet"),
  47427. name: "Side",
  47428. image: {
  47429. source: "./media/characters/birch/side.svg",
  47430. extra: 985/796,
  47431. bottom: 111/1096
  47432. }
  47433. },
  47434. },
  47435. [
  47436. {
  47437. name: "Normal",
  47438. height: math.unit(5, "feet"),
  47439. default: true
  47440. },
  47441. ]
  47442. ))
  47443. characterMakers.push(() => makeCharacter(
  47444. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47445. {
  47446. front: {
  47447. height: math.unit(4, "feet"),
  47448. name: "Front",
  47449. image: {
  47450. source: "./media/characters/rasp/front.svg",
  47451. extra: 561/478,
  47452. bottom: 74/635
  47453. }
  47454. },
  47455. },
  47456. [
  47457. {
  47458. name: "Normal",
  47459. height: math.unit(4, "feet"),
  47460. default: true
  47461. },
  47462. ]
  47463. ))
  47464. characterMakers.push(() => makeCharacter(
  47465. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47466. {
  47467. front: {
  47468. height: math.unit(4 + 6/12, "feet"),
  47469. name: "Front",
  47470. image: {
  47471. source: "./media/characters/agatha/front.svg",
  47472. extra: 947/933,
  47473. bottom: 42/989
  47474. }
  47475. },
  47476. back: {
  47477. height: math.unit(4 + 6/12, "feet"),
  47478. name: "Back",
  47479. image: {
  47480. source: "./media/characters/agatha/back.svg",
  47481. extra: 935/922,
  47482. bottom: 48/983
  47483. }
  47484. },
  47485. },
  47486. [
  47487. {
  47488. name: "Normal",
  47489. height: math.unit(4 + 6 /12, "feet"),
  47490. default: true
  47491. },
  47492. {
  47493. name: "Max Size",
  47494. height: math.unit(500, "feet")
  47495. },
  47496. ]
  47497. ))
  47498. characterMakers.push(() => makeCharacter(
  47499. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47500. {
  47501. side: {
  47502. height: math.unit(30, "feet"),
  47503. name: "Side",
  47504. image: {
  47505. source: "./media/characters/roggy/side.svg",
  47506. extra: 909/643,
  47507. bottom: 63/972
  47508. }
  47509. },
  47510. lounging: {
  47511. height: math.unit(20, "feet"),
  47512. name: "Lounging",
  47513. image: {
  47514. source: "./media/characters/roggy/lounging.svg",
  47515. extra: 643/479,
  47516. bottom: 145/788
  47517. }
  47518. },
  47519. handpaw: {
  47520. height: math.unit(13.1, "feet"),
  47521. name: "Handpaw",
  47522. image: {
  47523. source: "./media/characters/roggy/handpaw.svg"
  47524. }
  47525. },
  47526. footpaw: {
  47527. height: math.unit(15.8, "feet"),
  47528. name: "Footpaw",
  47529. image: {
  47530. source: "./media/characters/roggy/footpaw.svg"
  47531. }
  47532. },
  47533. },
  47534. [
  47535. {
  47536. name: "Menacing",
  47537. height: math.unit(30, "feet"),
  47538. default: true
  47539. },
  47540. ]
  47541. ))
  47542. characterMakers.push(() => makeCharacter(
  47543. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47544. {
  47545. front: {
  47546. height: math.unit(5 + 7/12, "feet"),
  47547. weight: math.unit(135, "lb"),
  47548. name: "Front",
  47549. image: {
  47550. source: "./media/characters/naomi/front.svg",
  47551. extra: 1209/1154,
  47552. bottom: 129/1338
  47553. }
  47554. },
  47555. back: {
  47556. height: math.unit(5 + 7/12, "feet"),
  47557. weight: math.unit(135, "lb"),
  47558. name: "Back",
  47559. image: {
  47560. source: "./media/characters/naomi/back.svg",
  47561. extra: 1252/1190,
  47562. bottom: 23/1275
  47563. }
  47564. },
  47565. },
  47566. [
  47567. {
  47568. name: "Normal",
  47569. height: math.unit(5 + 7 /12, "feet"),
  47570. default: true
  47571. },
  47572. ]
  47573. ))
  47574. characterMakers.push(() => makeCharacter(
  47575. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47576. {
  47577. side: {
  47578. height: math.unit(35, "meters"),
  47579. name: "Side",
  47580. image: {
  47581. source: "./media/characters/kimpi/side.svg",
  47582. extra: 419/382,
  47583. bottom: 63/482
  47584. }
  47585. },
  47586. hand: {
  47587. height: math.unit(8.96, "meters"),
  47588. name: "Hand",
  47589. image: {
  47590. source: "./media/characters/kimpi/hand.svg"
  47591. }
  47592. },
  47593. },
  47594. [
  47595. {
  47596. name: "Normal",
  47597. height: math.unit(35, "meters"),
  47598. default: true
  47599. },
  47600. ]
  47601. ))
  47602. characterMakers.push(() => makeCharacter(
  47603. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47604. {
  47605. front: {
  47606. height: math.unit(4 + 4/12, "feet"),
  47607. name: "Front",
  47608. image: {
  47609. source: "./media/characters/pepper-purrloin/front.svg",
  47610. extra: 1141/1024,
  47611. bottom: 21/1162
  47612. }
  47613. },
  47614. },
  47615. [
  47616. {
  47617. name: "Normal",
  47618. height: math.unit(4 + 4/12, "feet"),
  47619. default: true
  47620. },
  47621. ]
  47622. ))
  47623. characterMakers.push(() => makeCharacter(
  47624. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47625. {
  47626. front: {
  47627. height: math.unit(6 + 2/12, "feet"),
  47628. name: "Front",
  47629. image: {
  47630. source: "./media/characters/raphael/front.svg",
  47631. extra: 1101/962,
  47632. bottom: 59/1160
  47633. }
  47634. },
  47635. },
  47636. [
  47637. {
  47638. name: "Normal",
  47639. height: math.unit(6 + 2/12, "feet"),
  47640. default: true
  47641. },
  47642. ]
  47643. ))
  47644. characterMakers.push(() => makeCharacter(
  47645. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47646. {
  47647. front: {
  47648. height: math.unit(6, "feet"),
  47649. weight: math.unit(150, "lb"),
  47650. name: "Front",
  47651. image: {
  47652. source: "./media/characters/victor-williams/front.svg",
  47653. extra: 1894/1825,
  47654. bottom: 67/1961
  47655. }
  47656. },
  47657. },
  47658. [
  47659. {
  47660. name: "Normal",
  47661. height: math.unit(6, "feet"),
  47662. default: true
  47663. },
  47664. ]
  47665. ))
  47666. characterMakers.push(() => makeCharacter(
  47667. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47668. {
  47669. front: {
  47670. height: math.unit(5 + 8/12, "feet"),
  47671. weight: math.unit(150, "lb"),
  47672. name: "Front",
  47673. image: {
  47674. source: "./media/characters/rachel/front.svg",
  47675. extra: 1902/1787,
  47676. bottom: 46/1948
  47677. }
  47678. },
  47679. },
  47680. [
  47681. {
  47682. name: "Base Height",
  47683. height: math.unit(5 + 8/12, "feet"),
  47684. default: true
  47685. },
  47686. {
  47687. name: "Macro",
  47688. height: math.unit(200, "feet")
  47689. },
  47690. {
  47691. name: "Mega Macro",
  47692. height: math.unit(1, "mile")
  47693. },
  47694. {
  47695. name: "Giga Macro",
  47696. height: math.unit(1500, "miles")
  47697. },
  47698. {
  47699. name: "Tera Macro",
  47700. height: math.unit(8000, "miles")
  47701. },
  47702. {
  47703. name: "Tera Macro+",
  47704. height: math.unit(2e5, "miles")
  47705. },
  47706. ]
  47707. ))
  47708. characterMakers.push(() => makeCharacter(
  47709. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47710. {
  47711. front: {
  47712. height: math.unit(6.5, "feet"),
  47713. name: "Front",
  47714. image: {
  47715. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47716. extra: 860/819,
  47717. bottom: 307/1167
  47718. }
  47719. },
  47720. back: {
  47721. height: math.unit(6.5, "feet"),
  47722. name: "Back",
  47723. image: {
  47724. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47725. extra: 880/837,
  47726. bottom: 395/1275
  47727. }
  47728. },
  47729. sleeping: {
  47730. height: math.unit(2.79, "feet"),
  47731. name: "Sleeping",
  47732. image: {
  47733. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47734. extra: 465/383,
  47735. bottom: 263/728
  47736. }
  47737. },
  47738. maw: {
  47739. height: math.unit(2.52, "feet"),
  47740. name: "Maw",
  47741. image: {
  47742. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47743. }
  47744. },
  47745. },
  47746. [
  47747. {
  47748. name: "Normal",
  47749. height: math.unit(6.5, "feet"),
  47750. default: true
  47751. },
  47752. ]
  47753. ))
  47754. characterMakers.push(() => makeCharacter(
  47755. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47756. {
  47757. front: {
  47758. height: math.unit(5, "feet"),
  47759. name: "Front",
  47760. image: {
  47761. source: "./media/characters/nova-nerium/front.svg",
  47762. extra: 1548/1392,
  47763. bottom: 374/1922
  47764. }
  47765. },
  47766. back: {
  47767. height: math.unit(5, "feet"),
  47768. name: "Back",
  47769. image: {
  47770. source: "./media/characters/nova-nerium/back.svg",
  47771. extra: 1658/1468,
  47772. bottom: 257/1915
  47773. }
  47774. },
  47775. },
  47776. [
  47777. {
  47778. name: "Normal",
  47779. height: math.unit(5, "feet"),
  47780. default: true
  47781. },
  47782. ]
  47783. ))
  47784. characterMakers.push(() => makeCharacter(
  47785. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47786. {
  47787. front: {
  47788. height: math.unit(5 + 4/12, "feet"),
  47789. name: "Front",
  47790. image: {
  47791. source: "./media/characters/ashe-pyriph/front.svg",
  47792. extra: 1935/1747,
  47793. bottom: 60/1995
  47794. }
  47795. },
  47796. },
  47797. [
  47798. {
  47799. name: "Normal",
  47800. height: math.unit(5 + 4/12, "feet"),
  47801. default: true
  47802. },
  47803. ]
  47804. ))
  47805. characterMakers.push(() => makeCharacter(
  47806. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47807. {
  47808. front: {
  47809. height: math.unit(8.7, "feet"),
  47810. name: "Front",
  47811. image: {
  47812. source: "./media/characters/flicker-wisp/front.svg",
  47813. extra: 1835/1613,
  47814. bottom: 449/2284
  47815. }
  47816. },
  47817. side: {
  47818. height: math.unit(8.7, "feet"),
  47819. name: "Side",
  47820. image: {
  47821. source: "./media/characters/flicker-wisp/side.svg",
  47822. extra: 1841/1642,
  47823. bottom: 336/2177
  47824. },
  47825. default: true
  47826. },
  47827. maw: {
  47828. height: math.unit(3.35, "feet"),
  47829. name: "Maw",
  47830. image: {
  47831. source: "./media/characters/flicker-wisp/maw.svg",
  47832. extra: 2338/1506,
  47833. bottom: 0/2338
  47834. }
  47835. },
  47836. ovipositor: {
  47837. height: math.unit(4.95, "feet"),
  47838. name: "Ovipositor",
  47839. image: {
  47840. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47841. }
  47842. },
  47843. egg: {
  47844. height: math.unit(0.385, "feet"),
  47845. weight: math.unit(2, "lb"),
  47846. name: "Egg",
  47847. image: {
  47848. source: "./media/characters/flicker-wisp/egg.svg"
  47849. }
  47850. },
  47851. },
  47852. [
  47853. {
  47854. name: "Normal",
  47855. height: math.unit(8.7, "feet"),
  47856. default: true
  47857. },
  47858. ]
  47859. ))
  47860. characterMakers.push(() => makeCharacter(
  47861. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47862. {
  47863. side: {
  47864. height: math.unit(11, "feet"),
  47865. name: "Side",
  47866. image: {
  47867. source: "./media/characters/faefnul/side.svg",
  47868. extra: 1100/1007,
  47869. bottom: 0/1100
  47870. }
  47871. },
  47872. },
  47873. [
  47874. {
  47875. name: "Normal",
  47876. height: math.unit(11, "feet"),
  47877. default: true
  47878. },
  47879. ]
  47880. ))
  47881. characterMakers.push(() => makeCharacter(
  47882. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47883. {
  47884. front: {
  47885. height: math.unit(6 + 2/12, "feet"),
  47886. name: "Front",
  47887. image: {
  47888. source: "./media/characters/shady/front.svg",
  47889. extra: 502/461,
  47890. bottom: 9/511
  47891. }
  47892. },
  47893. kneeling: {
  47894. height: math.unit(4.6, "feet"),
  47895. name: "Kneeling",
  47896. image: {
  47897. source: "./media/characters/shady/kneeling.svg",
  47898. extra: 1328/1219,
  47899. bottom: 117/1445
  47900. }
  47901. },
  47902. maw: {
  47903. height: math.unit(2, "feet"),
  47904. name: "Maw",
  47905. image: {
  47906. source: "./media/characters/shady/maw.svg"
  47907. }
  47908. },
  47909. },
  47910. [
  47911. {
  47912. name: "Nano",
  47913. height: math.unit(1, "mm")
  47914. },
  47915. {
  47916. name: "Micro",
  47917. height: math.unit(12, "mm")
  47918. },
  47919. {
  47920. name: "Tiny",
  47921. height: math.unit(3, "inches")
  47922. },
  47923. {
  47924. name: "Normal",
  47925. height: math.unit(6 + 2/12, "feet"),
  47926. default: true
  47927. },
  47928. {
  47929. name: "Big",
  47930. height: math.unit(15, "feet")
  47931. },
  47932. {
  47933. name: "Macro",
  47934. height: math.unit(150, "feet")
  47935. },
  47936. {
  47937. name: "Titanic",
  47938. height: math.unit(500, "feet")
  47939. },
  47940. ]
  47941. ))
  47942. characterMakers.push(() => makeCharacter(
  47943. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47944. {
  47945. front: {
  47946. height: math.unit(12, "feet"),
  47947. name: "Front",
  47948. image: {
  47949. source: "./media/characters/fenrir/front.svg",
  47950. extra: 968/875,
  47951. bottom: 22/990
  47952. }
  47953. },
  47954. },
  47955. [
  47956. {
  47957. name: "Big",
  47958. height: math.unit(12, "feet"),
  47959. default: true
  47960. },
  47961. ]
  47962. ))
  47963. characterMakers.push(() => makeCharacter(
  47964. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47965. {
  47966. front: {
  47967. height: math.unit(5 + 4/12, "feet"),
  47968. name: "Front",
  47969. image: {
  47970. source: "./media/characters/makar/front.svg",
  47971. extra: 1181/1112,
  47972. bottom: 78/1259
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Normal",
  47979. height: math.unit(5 + 4/12, "feet"),
  47980. default: true
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47986. {
  47987. front: {
  47988. height: math.unit(5 + 7/12, "feet"),
  47989. name: "Front",
  47990. image: {
  47991. source: "./media/characters/callow/front.svg",
  47992. extra: 1482/1304,
  47993. bottom: 23/1505
  47994. }
  47995. },
  47996. back: {
  47997. height: math.unit(5 + 7/12, "feet"),
  47998. name: "Back",
  47999. image: {
  48000. source: "./media/characters/callow/back.svg",
  48001. extra: 1484/1296,
  48002. bottom: 25/1509
  48003. }
  48004. },
  48005. },
  48006. [
  48007. {
  48008. name: "Micro",
  48009. height: math.unit(3, "inches"),
  48010. default: true
  48011. },
  48012. {
  48013. name: "Normal",
  48014. height: math.unit(5 + 7/12, "feet")
  48015. },
  48016. ]
  48017. ))
  48018. characterMakers.push(() => makeCharacter(
  48019. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48020. {
  48021. front: {
  48022. height: math.unit(6 + 2/12, "feet"),
  48023. name: "Front",
  48024. image: {
  48025. source: "./media/characters/natel/front.svg",
  48026. extra: 1833/1692,
  48027. bottom: 166/1999
  48028. }
  48029. },
  48030. },
  48031. [
  48032. {
  48033. name: "Normal",
  48034. height: math.unit(6 + 2/12, "feet"),
  48035. default: true
  48036. },
  48037. ]
  48038. ))
  48039. characterMakers.push(() => makeCharacter(
  48040. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48041. {
  48042. front: {
  48043. height: math.unit(1.75, "meters"),
  48044. name: "Front",
  48045. image: {
  48046. source: "./media/characters/misu/front.svg",
  48047. extra: 1690/1558,
  48048. bottom: 234/1924
  48049. }
  48050. },
  48051. back: {
  48052. height: math.unit(1.75, "meters"),
  48053. name: "Back",
  48054. image: {
  48055. source: "./media/characters/misu/back.svg",
  48056. extra: 1762/1618,
  48057. bottom: 146/1908
  48058. }
  48059. },
  48060. frontNude: {
  48061. height: math.unit(1.75, "meters"),
  48062. name: "Front (Nude)",
  48063. image: {
  48064. source: "./media/characters/misu/front-nude.svg",
  48065. extra: 1690/1558,
  48066. bottom: 234/1924
  48067. }
  48068. },
  48069. backNude: {
  48070. height: math.unit(1.75, "meters"),
  48071. name: "Back (Nude)",
  48072. image: {
  48073. source: "./media/characters/misu/back-nude.svg",
  48074. extra: 1762/1618,
  48075. bottom: 146/1908
  48076. }
  48077. },
  48078. frontErect: {
  48079. height: math.unit(1.75, "meters"),
  48080. name: "Front (Erect)",
  48081. image: {
  48082. source: "./media/characters/misu/front-erect.svg",
  48083. extra: 1690/1558,
  48084. bottom: 234/1924
  48085. }
  48086. },
  48087. maw: {
  48088. height: math.unit(0.47, "meters"),
  48089. name: "Maw",
  48090. image: {
  48091. source: "./media/characters/misu/maw.svg"
  48092. }
  48093. },
  48094. head: {
  48095. height: math.unit(0.35, "meters"),
  48096. name: "Head",
  48097. image: {
  48098. source: "./media/characters/misu/head.svg"
  48099. }
  48100. },
  48101. rear: {
  48102. height: math.unit(0.47, "meters"),
  48103. name: "Rear",
  48104. image: {
  48105. source: "./media/characters/misu/rear.svg"
  48106. }
  48107. },
  48108. },
  48109. [
  48110. {
  48111. name: "Normal",
  48112. height: math.unit(1.75, "meters")
  48113. },
  48114. {
  48115. name: "Not good for the people",
  48116. height: math.unit(42, "meters")
  48117. },
  48118. {
  48119. name: "Not good for the neighborhood",
  48120. height: math.unit(135, "meters")
  48121. },
  48122. {
  48123. name: "Bit bigger problem",
  48124. height: math.unit(380, "meters"),
  48125. default: true
  48126. },
  48127. {
  48128. name: "Not good for the city",
  48129. height: math.unit(1.5, "km")
  48130. },
  48131. {
  48132. name: "Not good for the county",
  48133. height: math.unit(5.5, "km")
  48134. },
  48135. {
  48136. name: "Not good for the state",
  48137. height: math.unit(25, "km")
  48138. },
  48139. {
  48140. name: "Not good for the country",
  48141. height: math.unit(125, "km")
  48142. },
  48143. {
  48144. name: "Not good for the continent",
  48145. height: math.unit(2100, "km")
  48146. },
  48147. {
  48148. name: "Not good for the planet",
  48149. height: math.unit(35000, "km")
  48150. },
  48151. {
  48152. name: "Just no",
  48153. height: math.unit(8.5e18, "km")
  48154. },
  48155. ]
  48156. ))
  48157. characterMakers.push(() => makeCharacter(
  48158. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48159. {
  48160. front: {
  48161. height: math.unit(6.5, "feet"),
  48162. name: "Front",
  48163. image: {
  48164. source: "./media/characters/poppy/front.svg",
  48165. extra: 1878/1812,
  48166. bottom: 43/1921
  48167. }
  48168. },
  48169. feet: {
  48170. height: math.unit(1.06, "feet"),
  48171. name: "Feet",
  48172. image: {
  48173. source: "./media/characters/poppy/feet.svg",
  48174. extra: 1083/1083,
  48175. bottom: 87/1170
  48176. }
  48177. },
  48178. },
  48179. [
  48180. {
  48181. name: "Human",
  48182. height: math.unit(6.5, "feet")
  48183. },
  48184. {
  48185. name: "Default",
  48186. height: math.unit(300, "feet"),
  48187. default: true
  48188. },
  48189. {
  48190. name: "Huge",
  48191. height: math.unit(850, "feet")
  48192. },
  48193. {
  48194. name: "Mega",
  48195. height: math.unit(8000, "feet")
  48196. },
  48197. {
  48198. name: "Giga",
  48199. height: math.unit(300, "miles")
  48200. },
  48201. ]
  48202. ))
  48203. characterMakers.push(() => makeCharacter(
  48204. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48205. {
  48206. bipedal: {
  48207. height: math.unit(7, "feet"),
  48208. name: "Bipedal",
  48209. image: {
  48210. source: "./media/characters/zener/bipedal.svg",
  48211. extra: 874/805,
  48212. bottom: 109/983
  48213. }
  48214. },
  48215. quadrupedal: {
  48216. height: math.unit(4.64, "feet"),
  48217. name: "Quadrupedal",
  48218. image: {
  48219. source: "./media/characters/zener/quadrupedal.svg",
  48220. extra: 638/507,
  48221. bottom: 190/828
  48222. }
  48223. },
  48224. cock: {
  48225. height: math.unit(18, "inches"),
  48226. name: "Cock",
  48227. image: {
  48228. source: "./media/characters/zener/cock.svg"
  48229. }
  48230. },
  48231. },
  48232. [
  48233. {
  48234. name: "Normal",
  48235. height: math.unit(7, "feet"),
  48236. default: true
  48237. },
  48238. ]
  48239. ))
  48240. characterMakers.push(() => makeCharacter(
  48241. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48242. {
  48243. nude: {
  48244. height: math.unit(5 + 6/12, "feet"),
  48245. name: "Nude",
  48246. image: {
  48247. source: "./media/characters/charlie-dog/nude.svg",
  48248. extra: 768/734,
  48249. bottom: 26/794
  48250. }
  48251. },
  48252. dressed: {
  48253. height: math.unit(5 + 6/12, "feet"),
  48254. name: "Dressed",
  48255. image: {
  48256. source: "./media/characters/charlie-dog/dressed.svg",
  48257. extra: 768/734,
  48258. bottom: 26/794
  48259. }
  48260. },
  48261. },
  48262. [
  48263. {
  48264. name: "Normal",
  48265. height: math.unit(5 + 6/12, "feet"),
  48266. default: true
  48267. },
  48268. ]
  48269. ))
  48270. characterMakers.push(() => makeCharacter(
  48271. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48272. {
  48273. front: {
  48274. height: math.unit(6 + 4/12, "feet"),
  48275. name: "Front",
  48276. image: {
  48277. source: "./media/characters/ir'istrasz/front.svg",
  48278. extra: 1014/977,
  48279. bottom: 65/1079
  48280. }
  48281. },
  48282. back: {
  48283. height: math.unit(6 + 4/12, "feet"),
  48284. name: "Back",
  48285. image: {
  48286. source: "./media/characters/ir'istrasz/back.svg",
  48287. extra: 1024/992,
  48288. bottom: 34/1058
  48289. }
  48290. },
  48291. },
  48292. [
  48293. {
  48294. name: "Normal",
  48295. height: math.unit(6 + 4/12, "feet"),
  48296. default: true
  48297. },
  48298. ]
  48299. ))
  48300. characterMakers.push(() => makeCharacter(
  48301. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48302. {
  48303. front: {
  48304. height: math.unit(5 + 8/12, "feet"),
  48305. name: "Front",
  48306. image: {
  48307. source: "./media/characters/dee-ditto/front.svg",
  48308. extra: 1874/1785,
  48309. bottom: 68/1942
  48310. }
  48311. },
  48312. back: {
  48313. height: math.unit(5 + 8/12, "feet"),
  48314. name: "Back",
  48315. image: {
  48316. source: "./media/characters/dee-ditto/back.svg",
  48317. extra: 1870/1783,
  48318. bottom: 77/1947
  48319. }
  48320. },
  48321. },
  48322. [
  48323. {
  48324. name: "Normal",
  48325. height: math.unit(5 + 8/12, "feet"),
  48326. default: true
  48327. },
  48328. ]
  48329. ))
  48330. characterMakers.push(() => makeCharacter(
  48331. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48332. {
  48333. front: {
  48334. height: math.unit(7 + 6/12, "feet"),
  48335. name: "Front",
  48336. image: {
  48337. source: "./media/characters/fey/front.svg",
  48338. extra: 995/979,
  48339. bottom: 30/1025
  48340. }
  48341. },
  48342. back: {
  48343. height: math.unit(7 + 6/12, "feet"),
  48344. name: "Back",
  48345. image: {
  48346. source: "./media/characters/fey/back.svg",
  48347. extra: 1079/1008,
  48348. bottom: 5/1084
  48349. }
  48350. },
  48351. dressed: {
  48352. height: math.unit(7 + 6/12, "feet"),
  48353. name: "Dressed",
  48354. image: {
  48355. source: "./media/characters/fey/dressed.svg",
  48356. extra: 995/979,
  48357. bottom: 30/1025
  48358. }
  48359. },
  48360. },
  48361. [
  48362. {
  48363. name: "Normal",
  48364. height: math.unit(7 + 6/12, "feet"),
  48365. default: true
  48366. },
  48367. ]
  48368. ))
  48369. characterMakers.push(() => makeCharacter(
  48370. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48371. {
  48372. standing: {
  48373. height: math.unit(17, "feet"),
  48374. name: "Standing",
  48375. image: {
  48376. source: "./media/characters/aster/standing.svg",
  48377. extra: 1798/1598,
  48378. bottom: 117/1915
  48379. }
  48380. },
  48381. },
  48382. [
  48383. {
  48384. name: "Normal",
  48385. height: math.unit(17, "feet"),
  48386. default: true
  48387. },
  48388. {
  48389. name: "Homewrecker",
  48390. height: math.unit(95, "feet")
  48391. },
  48392. {
  48393. name: "Planet Devourer",
  48394. height: math.unit(1008000, "miles")
  48395. },
  48396. ]
  48397. ))
  48398. characterMakers.push(() => makeCharacter(
  48399. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48400. {
  48401. front: {
  48402. height: math.unit(6 + 5/12, "feet"),
  48403. weight: math.unit(265, "lb"),
  48404. name: "Front",
  48405. image: {
  48406. source: "./media/characters/devon-childs/front.svg",
  48407. extra: 1795/1721,
  48408. bottom: 41/1836
  48409. }
  48410. },
  48411. side: {
  48412. height: math.unit(6 + 5/12, "feet"),
  48413. weight: math.unit(265, "lb"),
  48414. name: "Side",
  48415. image: {
  48416. source: "./media/characters/devon-childs/side.svg",
  48417. extra: 1812/1738,
  48418. bottom: 30/1842
  48419. }
  48420. },
  48421. back: {
  48422. height: math.unit(6 + 5/12, "feet"),
  48423. weight: math.unit(265, "lb"),
  48424. name: "Back",
  48425. image: {
  48426. source: "./media/characters/devon-childs/back.svg",
  48427. extra: 1808/1735,
  48428. bottom: 23/1831
  48429. }
  48430. },
  48431. hand: {
  48432. height: math.unit(1.464, "feet"),
  48433. name: "Hand",
  48434. image: {
  48435. source: "./media/characters/devon-childs/hand.svg"
  48436. }
  48437. },
  48438. foot: {
  48439. height: math.unit(1.6, "feet"),
  48440. name: "Foot",
  48441. image: {
  48442. source: "./media/characters/devon-childs/foot.svg"
  48443. }
  48444. },
  48445. },
  48446. [
  48447. {
  48448. name: "Micro",
  48449. height: math.unit(7, "cm")
  48450. },
  48451. {
  48452. name: "Normal",
  48453. height: math.unit(6 + 5/12, "feet"),
  48454. default: true
  48455. },
  48456. {
  48457. name: "Macro",
  48458. height: math.unit(154, "feet")
  48459. },
  48460. ]
  48461. ))
  48462. characterMakers.push(() => makeCharacter(
  48463. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48464. {
  48465. front: {
  48466. height: math.unit(6, "feet"),
  48467. weight: math.unit(180, "lb"),
  48468. name: "Front",
  48469. image: {
  48470. source: "./media/characters/lydemox-vir/front.svg",
  48471. extra: 1632/1435,
  48472. bottom: 58/1690
  48473. }
  48474. },
  48475. frontSFW: {
  48476. height: math.unit(6, "feet"),
  48477. weight: math.unit(180, "lb"),
  48478. name: "Front (SFW)",
  48479. image: {
  48480. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48481. extra: 1632/1435,
  48482. bottom: 58/1690
  48483. }
  48484. },
  48485. back: {
  48486. height: math.unit(6, "feet"),
  48487. weight: math.unit(180, "lb"),
  48488. name: "Back",
  48489. image: {
  48490. source: "./media/characters/lydemox-vir/back.svg",
  48491. extra: 1593/1408,
  48492. bottom: 31/1624
  48493. }
  48494. },
  48495. paw: {
  48496. height: math.unit(1.85, "feet"),
  48497. name: "Paw",
  48498. image: {
  48499. source: "./media/characters/lydemox-vir/paw.svg"
  48500. }
  48501. },
  48502. dick: {
  48503. height: math.unit(1.8, "feet"),
  48504. name: "Dick",
  48505. image: {
  48506. source: "./media/characters/lydemox-vir/dick.svg"
  48507. }
  48508. },
  48509. },
  48510. [
  48511. {
  48512. name: "Macro",
  48513. height: math.unit(100, "feet"),
  48514. default: true
  48515. },
  48516. {
  48517. name: "Teramacro",
  48518. height: math.unit(1, "earth")
  48519. },
  48520. {
  48521. name: "Planetary",
  48522. height: math.unit(20, "earths")
  48523. },
  48524. ]
  48525. ))
  48526. characterMakers.push(() => makeCharacter(
  48527. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48528. {
  48529. front: {
  48530. height: math.unit(15 + 8/12, "feet"),
  48531. weight: math.unit(1237, "kg"),
  48532. name: "Front",
  48533. image: {
  48534. source: "./media/characters/mia/front.svg",
  48535. extra: 1573/1446,
  48536. bottom: 58/1631
  48537. }
  48538. },
  48539. },
  48540. [
  48541. {
  48542. name: "Small",
  48543. height: math.unit(9 + 5/12, "feet")
  48544. },
  48545. {
  48546. name: "Normal",
  48547. height: math.unit(15 + 8/12, "feet"),
  48548. default: true
  48549. },
  48550. ]
  48551. ))
  48552. characterMakers.push(() => makeCharacter(
  48553. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48554. {
  48555. front: {
  48556. height: math.unit(10 + 6/12, "feet"),
  48557. weight: math.unit(1.3, "tons"),
  48558. name: "Front",
  48559. image: {
  48560. source: "./media/characters/mr-graves/front.svg",
  48561. extra: 1779/1695,
  48562. bottom: 198/1977
  48563. }
  48564. },
  48565. },
  48566. [
  48567. {
  48568. name: "Normal",
  48569. height: math.unit(10 + 6 /12, "feet"),
  48570. default: true
  48571. },
  48572. ]
  48573. ))
  48574. characterMakers.push(() => makeCharacter(
  48575. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48576. {
  48577. dressedFront: {
  48578. height: math.unit(5 + 8/12, "feet"),
  48579. weight: math.unit(125, "lb"),
  48580. name: "Dressed (Front)",
  48581. image: {
  48582. source: "./media/characters/jess/dressed-front.svg",
  48583. extra: 1176/1152,
  48584. bottom: 42/1218
  48585. }
  48586. },
  48587. dressedSide: {
  48588. height: math.unit(5 + 8/12, "feet"),
  48589. weight: math.unit(125, "lb"),
  48590. name: "Dressed (Side)",
  48591. image: {
  48592. source: "./media/characters/jess/dressed-side.svg",
  48593. extra: 1204/1190,
  48594. bottom: 6/1210
  48595. }
  48596. },
  48597. nudeFront: {
  48598. height: math.unit(5 + 8/12, "feet"),
  48599. weight: math.unit(125, "lb"),
  48600. name: "Nude (Front)",
  48601. image: {
  48602. source: "./media/characters/jess/nude-front.svg",
  48603. extra: 1176/1152,
  48604. bottom: 42/1218
  48605. }
  48606. },
  48607. nudeSide: {
  48608. height: math.unit(5 + 8/12, "feet"),
  48609. weight: math.unit(125, "lb"),
  48610. name: "Nude (Side)",
  48611. image: {
  48612. source: "./media/characters/jess/nude-side.svg",
  48613. extra: 1204/1190,
  48614. bottom: 6/1210
  48615. }
  48616. },
  48617. organsFront: {
  48618. height: math.unit(2.83799342105, "feet"),
  48619. name: "Organs (Front)",
  48620. image: {
  48621. source: "./media/characters/jess/organs-front.svg"
  48622. }
  48623. },
  48624. organsSide: {
  48625. height: math.unit(2.64225290474, "feet"),
  48626. name: "Organs (Side)",
  48627. image: {
  48628. source: "./media/characters/jess/organs-side.svg"
  48629. }
  48630. },
  48631. digestiveTractFront: {
  48632. height: math.unit(2.8106580871, "feet"),
  48633. name: "Digestive Tract (Front)",
  48634. image: {
  48635. source: "./media/characters/jess/digestive-tract-front.svg"
  48636. }
  48637. },
  48638. digestiveTractSide: {
  48639. height: math.unit(2.54365045014, "feet"),
  48640. name: "Digestive Tract (Side)",
  48641. image: {
  48642. source: "./media/characters/jess/digestive-tract-side.svg"
  48643. }
  48644. },
  48645. respiratorySystemFront: {
  48646. height: math.unit(1.11196233456, "feet"),
  48647. name: "Respiratory System (Front)",
  48648. image: {
  48649. source: "./media/characters/jess/respiratory-system-front.svg"
  48650. }
  48651. },
  48652. respiratorySystemSide: {
  48653. height: math.unit(0.89327966297, "feet"),
  48654. name: "Respiratory System (Side)",
  48655. image: {
  48656. source: "./media/characters/jess/respiratory-system-side.svg"
  48657. }
  48658. },
  48659. urinaryTractFront: {
  48660. height: math.unit(1.16126356186, "feet"),
  48661. name: "Urinary Tract (Front)",
  48662. image: {
  48663. source: "./media/characters/jess/urinary-tract-front.svg"
  48664. }
  48665. },
  48666. urinaryTractSide: {
  48667. height: math.unit(1.20910039627, "feet"),
  48668. name: "Urinary Tract (Side)",
  48669. image: {
  48670. source: "./media/characters/jess/urinary-tract-side.svg"
  48671. }
  48672. },
  48673. reproductiveOrgansFront: {
  48674. height: math.unit(0.48422591566, "feet"),
  48675. name: "Reproductive Organs (Front)",
  48676. image: {
  48677. source: "./media/characters/jess/reproductive-organs-front.svg"
  48678. }
  48679. },
  48680. reproductiveOrgansSide: {
  48681. height: math.unit(0.61553314481, "feet"),
  48682. name: "Reproductive Organs (Side)",
  48683. image: {
  48684. source: "./media/characters/jess/reproductive-organs-side.svg"
  48685. }
  48686. },
  48687. breastsFront: {
  48688. height: math.unit(0.47690395121, "feet"),
  48689. name: "Breasts (Front)",
  48690. image: {
  48691. source: "./media/characters/jess/breasts-front.svg"
  48692. }
  48693. },
  48694. breastsSide: {
  48695. height: math.unit(0.30556998307, "feet"),
  48696. name: "Breasts (Side)",
  48697. image: {
  48698. source: "./media/characters/jess/breasts-side.svg"
  48699. }
  48700. },
  48701. heartFront: {
  48702. height: math.unit(0.53011022622, "feet"),
  48703. name: "Heart (Front)",
  48704. image: {
  48705. source: "./media/characters/jess/heart-front.svg"
  48706. }
  48707. },
  48708. heartSide: {
  48709. height: math.unit(0.51790695213, "feet"),
  48710. name: "Heart (Side)",
  48711. image: {
  48712. source: "./media/characters/jess/heart-side.svg"
  48713. }
  48714. },
  48715. earsAndNoseFront: {
  48716. height: math.unit(0.29385483995, "feet"),
  48717. name: "Ears and Nose (Front)",
  48718. image: {
  48719. source: "./media/characters/jess/ears-and-nose-front.svg"
  48720. }
  48721. },
  48722. earsAndNoseSide: {
  48723. height: math.unit(0.18109658741, "feet"),
  48724. name: "Ears and Nose (Side)",
  48725. image: {
  48726. source: "./media/characters/jess/ears-and-nose-side.svg"
  48727. }
  48728. },
  48729. },
  48730. [
  48731. {
  48732. name: "Normal",
  48733. height: math.unit(5 + 8/12, "feet"),
  48734. default: true
  48735. },
  48736. ]
  48737. ))
  48738. characterMakers.push(() => makeCharacter(
  48739. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48740. {
  48741. front: {
  48742. height: math.unit(6, "feet"),
  48743. weight: math.unit(6.64467e-7, "grams"),
  48744. name: "Front",
  48745. image: {
  48746. source: "./media/characters/wimpering/front.svg",
  48747. extra: 597/587,
  48748. bottom: 34/631
  48749. }
  48750. },
  48751. },
  48752. [
  48753. {
  48754. name: "Micro",
  48755. height: math.unit(0.4, "mm"),
  48756. default: true
  48757. },
  48758. ]
  48759. ))
  48760. characterMakers.push(() => makeCharacter(
  48761. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48762. {
  48763. front: {
  48764. height: math.unit(5 + 2/12, "feet"),
  48765. weight: math.unit(110, "lb"),
  48766. name: "Front",
  48767. image: {
  48768. source: "./media/characters/keltre/front.svg",
  48769. extra: 1099/1057,
  48770. bottom: 22/1121
  48771. }
  48772. },
  48773. back: {
  48774. height: math.unit(5 + 2/12, "feet"),
  48775. weight: math.unit(110, "lb"),
  48776. name: "Back",
  48777. image: {
  48778. source: "./media/characters/keltre/back.svg",
  48779. extra: 1095/1053,
  48780. bottom: 17/1112
  48781. }
  48782. },
  48783. dressed: {
  48784. height: math.unit(5 + 2/12, "feet"),
  48785. weight: math.unit(110, "lb"),
  48786. name: "Dressed",
  48787. image: {
  48788. source: "./media/characters/keltre/dressed.svg",
  48789. extra: 1099/1057,
  48790. bottom: 22/1121
  48791. }
  48792. },
  48793. winter: {
  48794. height: math.unit(5 + 2/12, "feet"),
  48795. weight: math.unit(110, "lb"),
  48796. name: "Winter",
  48797. image: {
  48798. source: "./media/characters/keltre/winter.svg",
  48799. extra: 1099/1057,
  48800. bottom: 22/1121
  48801. }
  48802. },
  48803. head: {
  48804. height: math.unit(1.61 * 0.86, "feet"),
  48805. name: "Head",
  48806. image: {
  48807. source: "./media/characters/keltre/head.svg",
  48808. extra: 534/421,
  48809. bottom: 0/534
  48810. }
  48811. },
  48812. hand: {
  48813. height: math.unit(1.3 * 0.86, "feet"),
  48814. name: "Hand",
  48815. image: {
  48816. source: "./media/characters/keltre/hand.svg"
  48817. }
  48818. },
  48819. foot: {
  48820. height: math.unit(1.8 * 0.86, "feet"),
  48821. name: "Foot",
  48822. image: {
  48823. source: "./media/characters/keltre/foot.svg"
  48824. }
  48825. },
  48826. },
  48827. [
  48828. {
  48829. name: "Fine",
  48830. height: math.unit(1, "inch")
  48831. },
  48832. {
  48833. name: "Dimnutive",
  48834. height: math.unit(4, "inches")
  48835. },
  48836. {
  48837. name: "Tiny",
  48838. height: math.unit(1, "foot")
  48839. },
  48840. {
  48841. name: "Small",
  48842. height: math.unit(3, "feet")
  48843. },
  48844. {
  48845. name: "Normal",
  48846. height: math.unit(5 + 2/12, "feet"),
  48847. default: true
  48848. },
  48849. ]
  48850. ))
  48851. characterMakers.push(() => makeCharacter(
  48852. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48853. {
  48854. front: {
  48855. height: math.unit(6 + 2/12, "feet"),
  48856. name: "Front",
  48857. image: {
  48858. source: "./media/characters/nox/front.svg",
  48859. extra: 1917/1830,
  48860. bottom: 74/1991
  48861. }
  48862. },
  48863. back: {
  48864. height: math.unit(6 + 2/12, "feet"),
  48865. name: "Back",
  48866. image: {
  48867. source: "./media/characters/nox/back.svg",
  48868. extra: 1896/1815,
  48869. bottom: 21/1917
  48870. }
  48871. },
  48872. head: {
  48873. height: math.unit(1.1, "feet"),
  48874. name: "Head",
  48875. image: {
  48876. source: "./media/characters/nox/head.svg",
  48877. extra: 874/704,
  48878. bottom: 0/874
  48879. }
  48880. },
  48881. tattoo: {
  48882. height: math.unit(0.729, "feet"),
  48883. name: "Tattoo",
  48884. image: {
  48885. source: "./media/characters/nox/tattoo.svg"
  48886. }
  48887. },
  48888. },
  48889. [
  48890. {
  48891. name: "Normal",
  48892. height: math.unit(6 + 2/12, "feet")
  48893. },
  48894. {
  48895. name: "Gigamacro",
  48896. height: math.unit(2, "earths"),
  48897. default: true
  48898. },
  48899. {
  48900. name: "Cosmic",
  48901. height: math.unit(867, "yottameters")
  48902. },
  48903. ]
  48904. ))
  48905. characterMakers.push(() => makeCharacter(
  48906. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48907. {
  48908. front: {
  48909. height: math.unit(6, "feet"),
  48910. weight: math.unit(150, "lb"),
  48911. name: "Front",
  48912. image: {
  48913. source: "./media/characters/caspian/front.svg",
  48914. extra: 1443/1359,
  48915. bottom: 0/1443
  48916. }
  48917. },
  48918. back: {
  48919. height: math.unit(6, "feet"),
  48920. weight: math.unit(150, "lb"),
  48921. name: "Back",
  48922. image: {
  48923. source: "./media/characters/caspian/back.svg",
  48924. extra: 1379/1309,
  48925. bottom: 0/1379
  48926. }
  48927. },
  48928. head: {
  48929. height: math.unit(0.9, "feet"),
  48930. name: "Head",
  48931. image: {
  48932. source: "./media/characters/caspian/head.svg",
  48933. extra: 692/492,
  48934. bottom: 0/692
  48935. }
  48936. },
  48937. headAlt: {
  48938. height: math.unit(0.95, "feet"),
  48939. name: "Head (Alt)",
  48940. image: {
  48941. source: "./media/characters/caspian/head-alt.svg",
  48942. extra: 668/508,
  48943. bottom: 0/668
  48944. }
  48945. },
  48946. hand: {
  48947. height: math.unit(0.8, "feet"),
  48948. name: "Hand",
  48949. image: {
  48950. source: "./media/characters/caspian/hand.svg"
  48951. }
  48952. },
  48953. paw: {
  48954. height: math.unit(0.95, "feet"),
  48955. name: "Paw",
  48956. image: {
  48957. source: "./media/characters/caspian/paw.svg"
  48958. }
  48959. },
  48960. },
  48961. [
  48962. {
  48963. name: "Normal",
  48964. height: math.unit(162, "feet"),
  48965. default: true
  48966. },
  48967. ]
  48968. ))
  48969. characterMakers.push(() => makeCharacter(
  48970. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48971. {
  48972. front: {
  48973. height: math.unit(6, "feet"),
  48974. name: "Front",
  48975. image: {
  48976. source: "./media/characters/myra-aisling/front.svg",
  48977. extra: 1268/1166,
  48978. bottom: 73/1341
  48979. }
  48980. },
  48981. back: {
  48982. height: math.unit(6, "feet"),
  48983. name: "Back",
  48984. image: {
  48985. source: "./media/characters/myra-aisling/back.svg",
  48986. extra: 1249/1149,
  48987. bottom: 79/1328
  48988. }
  48989. },
  48990. dressed: {
  48991. height: math.unit(6, "feet"),
  48992. name: "Dressed",
  48993. image: {
  48994. source: "./media/characters/myra-aisling/dressed.svg",
  48995. extra: 1290/1189,
  48996. bottom: 47/1337
  48997. }
  48998. },
  48999. hand: {
  49000. height: math.unit(1.1, "feet"),
  49001. name: "Hand",
  49002. image: {
  49003. source: "./media/characters/myra-aisling/hand.svg"
  49004. }
  49005. },
  49006. paw: {
  49007. height: math.unit(1.23, "feet"),
  49008. name: "Paw",
  49009. image: {
  49010. source: "./media/characters/myra-aisling/paw.svg"
  49011. }
  49012. },
  49013. },
  49014. [
  49015. {
  49016. name: "Normal",
  49017. height: math.unit(160, "feet"),
  49018. default: true
  49019. },
  49020. ]
  49021. ))
  49022. characterMakers.push(() => makeCharacter(
  49023. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49024. {
  49025. front: {
  49026. height: math.unit(6, "feet"),
  49027. name: "Front",
  49028. image: {
  49029. source: "./media/characters/tenley-sidero/front.svg",
  49030. extra: 1365/1276,
  49031. bottom: 47/1412
  49032. }
  49033. },
  49034. back: {
  49035. height: math.unit(6, "feet"),
  49036. name: "Back",
  49037. image: {
  49038. source: "./media/characters/tenley-sidero/back.svg",
  49039. extra: 1383/1283,
  49040. bottom: 35/1418
  49041. }
  49042. },
  49043. dressed: {
  49044. height: math.unit(6, "feet"),
  49045. name: "Dressed",
  49046. image: {
  49047. source: "./media/characters/tenley-sidero/dressed.svg",
  49048. extra: 1364/1275,
  49049. bottom: 42/1406
  49050. }
  49051. },
  49052. head: {
  49053. height: math.unit(1.47, "feet"),
  49054. name: "Head",
  49055. image: {
  49056. source: "./media/characters/tenley-sidero/head.svg",
  49057. extra: 610/490,
  49058. bottom: 0/610
  49059. }
  49060. },
  49061. },
  49062. [
  49063. {
  49064. name: "Normal",
  49065. height: math.unit(154, "feet"),
  49066. default: true
  49067. },
  49068. ]
  49069. ))
  49070. characterMakers.push(() => makeCharacter(
  49071. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49072. {
  49073. front: {
  49074. height: math.unit(5, "inches"),
  49075. name: "Front",
  49076. image: {
  49077. source: "./media/characters/mallory/front.svg",
  49078. extra: 1919/1678,
  49079. bottom: 29/1948
  49080. }
  49081. },
  49082. hand: {
  49083. height: math.unit(0.73, "inches"),
  49084. name: "Hand",
  49085. image: {
  49086. source: "./media/characters/mallory/hand.svg"
  49087. }
  49088. },
  49089. paw: {
  49090. height: math.unit(0.68, "inches"),
  49091. name: "Paw",
  49092. image: {
  49093. source: "./media/characters/mallory/paw.svg"
  49094. }
  49095. },
  49096. },
  49097. [
  49098. {
  49099. name: "Small",
  49100. height: math.unit(5, "inches"),
  49101. default: true
  49102. },
  49103. ]
  49104. ))
  49105. characterMakers.push(() => makeCharacter(
  49106. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49107. {
  49108. naked: {
  49109. height: math.unit(6, "feet"),
  49110. name: "Naked",
  49111. image: {
  49112. source: "./media/characters/mab/naked.svg",
  49113. extra: 1855/1757,
  49114. bottom: 208/2063
  49115. }
  49116. },
  49117. outside: {
  49118. height: math.unit(6, "feet"),
  49119. name: "Outside",
  49120. image: {
  49121. source: "./media/characters/mab/outside.svg",
  49122. extra: 1855/1757,
  49123. bottom: 208/2063
  49124. }
  49125. },
  49126. party: {
  49127. height: math.unit(6, "feet"),
  49128. name: "Party",
  49129. image: {
  49130. source: "./media/characters/mab/party.svg",
  49131. extra: 1855/1757,
  49132. bottom: 208/2063
  49133. }
  49134. },
  49135. },
  49136. [
  49137. {
  49138. name: "Normal",
  49139. height: math.unit(165, "feet"),
  49140. default: true
  49141. },
  49142. ]
  49143. ))
  49144. characterMakers.push(() => makeCharacter(
  49145. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49146. {
  49147. front: {
  49148. height: math.unit(12, "feet"),
  49149. weight: math.unit(4000, "lb"),
  49150. name: "Front",
  49151. image: {
  49152. source: "./media/characters/winter/front.svg",
  49153. extra: 1286/943,
  49154. bottom: 112/1398
  49155. }
  49156. },
  49157. frontNsfw: {
  49158. height: math.unit(12, "feet"),
  49159. weight: math.unit(4000, "lb"),
  49160. name: "Front (NSFW)",
  49161. image: {
  49162. source: "./media/characters/winter/front-nsfw.svg",
  49163. extra: 1286/943,
  49164. bottom: 112/1398
  49165. }
  49166. },
  49167. dick: {
  49168. height: math.unit(3.79, "feet"),
  49169. name: "Dick",
  49170. image: {
  49171. source: "./media/characters/winter/dick.svg"
  49172. }
  49173. },
  49174. },
  49175. [
  49176. {
  49177. name: "Big",
  49178. height: math.unit(12, "feet"),
  49179. default: true
  49180. },
  49181. ]
  49182. ))
  49183. characterMakers.push(() => makeCharacter(
  49184. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49185. {
  49186. front: {
  49187. height: math.unit(4.1, "inches"),
  49188. name: "Front",
  49189. image: {
  49190. source: "./media/characters/alto/front.svg",
  49191. extra: 736/627,
  49192. bottom: 90/826
  49193. }
  49194. },
  49195. },
  49196. [
  49197. {
  49198. name: "Normal",
  49199. height: math.unit(4.1, "inches"),
  49200. default: true
  49201. },
  49202. ]
  49203. ))
  49204. characterMakers.push(() => makeCharacter(
  49205. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49206. {
  49207. sitting: {
  49208. height: math.unit(3, "feet"),
  49209. name: "Sitting",
  49210. image: {
  49211. source: "./media/characters/ratstrid-v/sitting.svg",
  49212. extra: 355/310,
  49213. bottom: 136/491
  49214. }
  49215. },
  49216. },
  49217. [
  49218. {
  49219. name: "Normal",
  49220. height: math.unit(3, "feet"),
  49221. default: true
  49222. },
  49223. ]
  49224. ))
  49225. characterMakers.push(() => makeCharacter(
  49226. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49227. {
  49228. back: {
  49229. height: math.unit(6, "feet"),
  49230. weight: math.unit(350, "lb"),
  49231. name: "Back",
  49232. image: {
  49233. source: "./media/characters/siz/back.svg",
  49234. extra: 1449/1274,
  49235. bottom: 13/1462
  49236. }
  49237. },
  49238. },
  49239. [
  49240. {
  49241. name: "Over-Overcompressed",
  49242. height: math.unit(8, "feet")
  49243. },
  49244. {
  49245. name: "Overcompressed",
  49246. height: math.unit(32, "feet")
  49247. },
  49248. {
  49249. name: "Compressed",
  49250. height: math.unit(128, "feet"),
  49251. default: true
  49252. },
  49253. {
  49254. name: "Half-Compressed",
  49255. height: math.unit(512, "feet")
  49256. },
  49257. {
  49258. name: "Quarter-Compressed",
  49259. height: math.unit(2048, "feet")
  49260. },
  49261. {
  49262. name: "Uncompressed?",
  49263. height: math.unit(8192, "feet")
  49264. },
  49265. ]
  49266. ))
  49267. characterMakers.push(() => makeCharacter(
  49268. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49269. {
  49270. front: {
  49271. height: math.unit(5 + 9/12, "feet"),
  49272. weight: math.unit(150, "lb"),
  49273. name: "Front",
  49274. image: {
  49275. source: "./media/characters/ven/front.svg",
  49276. extra: 1372/1320,
  49277. bottom: 73/1445
  49278. }
  49279. },
  49280. side: {
  49281. height: math.unit(5 + 9/12, "feet"),
  49282. weight: math.unit(1150, "lb"),
  49283. name: "Side",
  49284. image: {
  49285. source: "./media/characters/ven/side.svg",
  49286. extra: 1119/1070,
  49287. bottom: 42/1161
  49288. },
  49289. default: true
  49290. },
  49291. },
  49292. [
  49293. {
  49294. name: "Normal",
  49295. height: math.unit(5 + 9/12, "feet"),
  49296. default: true
  49297. },
  49298. ]
  49299. ))
  49300. characterMakers.push(() => makeCharacter(
  49301. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49302. {
  49303. front: {
  49304. height: math.unit(12, "feet"),
  49305. weight: math.unit(1000, "kg"),
  49306. name: "Front",
  49307. image: {
  49308. source: "./media/characters/maple/front.svg",
  49309. extra: 1193/1081,
  49310. bottom: 22/1215
  49311. }
  49312. },
  49313. },
  49314. [
  49315. {
  49316. name: "Compressed",
  49317. height: math.unit(7, "feet")
  49318. },
  49319. {
  49320. name: "Normal",
  49321. height: math.unit(12, "feet"),
  49322. default: true
  49323. },
  49324. ]
  49325. ))
  49326. characterMakers.push(() => makeCharacter(
  49327. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49328. {
  49329. front: {
  49330. height: math.unit(9, "feet"),
  49331. weight: math.unit(1500, "lb"),
  49332. name: "Front",
  49333. image: {
  49334. source: "./media/characters/nora/front.svg",
  49335. extra: 1348/1286,
  49336. bottom: 218/1566
  49337. }
  49338. },
  49339. erect: {
  49340. height: math.unit(9, "feet"),
  49341. weight: math.unit(11500, "lb"),
  49342. name: "Erect",
  49343. image: {
  49344. source: "./media/characters/nora/erect.svg",
  49345. extra: 1488/1433,
  49346. bottom: 133/1621
  49347. }
  49348. },
  49349. },
  49350. [
  49351. {
  49352. name: "Normal",
  49353. height: math.unit(9, "feet"),
  49354. default: true
  49355. },
  49356. ]
  49357. ))
  49358. characterMakers.push(() => makeCharacter(
  49359. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49360. {
  49361. front: {
  49362. height: math.unit(25, "feet"),
  49363. weight: math.unit(27500, "lb"),
  49364. name: "Front",
  49365. image: {
  49366. source: "./media/characters/north-caudin/front.svg",
  49367. extra: 1184/1082,
  49368. bottom: 23/1207
  49369. }
  49370. },
  49371. },
  49372. [
  49373. {
  49374. name: "Compressed",
  49375. height: math.unit(10, "feet")
  49376. },
  49377. {
  49378. name: "Normal",
  49379. height: math.unit(25, "feet"),
  49380. default: true
  49381. },
  49382. ]
  49383. ))
  49384. characterMakers.push(() => makeCharacter(
  49385. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49386. {
  49387. front: {
  49388. height: math.unit(9, "feet"),
  49389. weight: math.unit(1250, "lb"),
  49390. name: "Front",
  49391. image: {
  49392. source: "./media/characters/merrian/front.svg",
  49393. extra: 2393/2304,
  49394. bottom: 40/2433
  49395. }
  49396. },
  49397. },
  49398. [
  49399. {
  49400. name: "Normal",
  49401. height: math.unit(9, "feet"),
  49402. default: true
  49403. },
  49404. ]
  49405. ))
  49406. characterMakers.push(() => makeCharacter(
  49407. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49408. {
  49409. front: {
  49410. height: math.unit(9, "feet"),
  49411. weight: math.unit(1000, "lb"),
  49412. name: "Front",
  49413. image: {
  49414. source: "./media/characters/hazel/front.svg",
  49415. extra: 2351/2298,
  49416. bottom: 38/2389
  49417. }
  49418. },
  49419. },
  49420. [
  49421. {
  49422. name: "Normal",
  49423. height: math.unit(9, "feet"),
  49424. default: true
  49425. },
  49426. ]
  49427. ))
  49428. characterMakers.push(() => makeCharacter(
  49429. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49430. {
  49431. front: {
  49432. height: math.unit(13, "feet"),
  49433. weight: math.unit(3200, "lb"),
  49434. name: "Front",
  49435. image: {
  49436. source: "./media/characters/emma/front.svg",
  49437. extra: 2263/2029,
  49438. bottom: 68/2331
  49439. }
  49440. },
  49441. },
  49442. [
  49443. {
  49444. name: "Normal",
  49445. height: math.unit(13, "feet"),
  49446. default: true
  49447. },
  49448. ]
  49449. ))
  49450. characterMakers.push(() => makeCharacter(
  49451. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49452. {
  49453. front: {
  49454. height: math.unit(11 + 9/12, "feet"),
  49455. weight: math.unit(2500, "lb"),
  49456. name: "Front",
  49457. image: {
  49458. source: "./media/characters/ilumina/front.svg",
  49459. extra: 2248/2209,
  49460. bottom: 164/2412
  49461. }
  49462. },
  49463. },
  49464. [
  49465. {
  49466. name: "Normal",
  49467. height: math.unit(11 + 9/12, "feet"),
  49468. default: true
  49469. },
  49470. ]
  49471. ))
  49472. characterMakers.push(() => makeCharacter(
  49473. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49474. {
  49475. front: {
  49476. height: math.unit(8 + 10/12, "feet"),
  49477. weight: math.unit(1350, "lb"),
  49478. name: "Front",
  49479. image: {
  49480. source: "./media/characters/moonshine/front.svg",
  49481. extra: 2395/2288,
  49482. bottom: 40/2435
  49483. }
  49484. },
  49485. },
  49486. [
  49487. {
  49488. name: "Normal",
  49489. height: math.unit(8 + 10/12, "feet"),
  49490. default: true
  49491. },
  49492. ]
  49493. ))
  49494. characterMakers.push(() => makeCharacter(
  49495. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49496. {
  49497. front: {
  49498. height: math.unit(14, "feet"),
  49499. weight: math.unit(3400, "lb"),
  49500. name: "Front",
  49501. image: {
  49502. source: "./media/characters/aletia/front.svg",
  49503. extra: 1185/1052,
  49504. bottom: 21/1206
  49505. }
  49506. },
  49507. },
  49508. [
  49509. {
  49510. name: "Compressed",
  49511. height: math.unit(8, "feet")
  49512. },
  49513. {
  49514. name: "Normal",
  49515. height: math.unit(14, "feet"),
  49516. default: true
  49517. },
  49518. ]
  49519. ))
  49520. characterMakers.push(() => makeCharacter(
  49521. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49522. {
  49523. front: {
  49524. height: math.unit(17, "feet"),
  49525. weight: math.unit(6500, "lb"),
  49526. name: "Front",
  49527. image: {
  49528. source: "./media/characters/deidra/front.svg",
  49529. extra: 1201/1081,
  49530. bottom: 16/1217
  49531. }
  49532. },
  49533. },
  49534. [
  49535. {
  49536. name: "Compressed",
  49537. height: math.unit(9 + 6/12, "feet")
  49538. },
  49539. {
  49540. name: "Normal",
  49541. height: math.unit(17, "feet"),
  49542. default: true
  49543. },
  49544. ]
  49545. ))
  49546. characterMakers.push(() => makeCharacter(
  49547. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49548. {
  49549. front: {
  49550. height: math.unit(7 + 4/12, "feet"),
  49551. weight: math.unit(280, "lb"),
  49552. name: "Front",
  49553. image: {
  49554. source: "./media/characters/freki-yrmori/front.svg",
  49555. extra: 1286/1182,
  49556. bottom: 29/1315
  49557. }
  49558. },
  49559. maw: {
  49560. height: math.unit(0.9, "feet"),
  49561. name: "Maw",
  49562. image: {
  49563. source: "./media/characters/freki-yrmori/maw.svg"
  49564. }
  49565. },
  49566. },
  49567. [
  49568. {
  49569. name: "Normal",
  49570. height: math.unit(7 + 4/12, "feet"),
  49571. default: true
  49572. },
  49573. {
  49574. name: "Macro",
  49575. height: math.unit(38.5, "meters")
  49576. },
  49577. ]
  49578. ))
  49579. characterMakers.push(() => makeCharacter(
  49580. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49581. {
  49582. side: {
  49583. height: math.unit(47.2, "meters"),
  49584. weight: math.unit(10000, "tons"),
  49585. name: "Side",
  49586. image: {
  49587. source: "./media/characters/aetherios/side.svg",
  49588. extra: 2363/642,
  49589. bottom: 221/2584
  49590. }
  49591. },
  49592. top: {
  49593. height: math.unit(240, "meters"),
  49594. weight: math.unit(10000, "tons"),
  49595. name: "Top",
  49596. image: {
  49597. source: "./media/characters/aetherios/top.svg"
  49598. }
  49599. },
  49600. bottom: {
  49601. height: math.unit(240, "meters"),
  49602. weight: math.unit(10000, "tons"),
  49603. name: "Bottom",
  49604. image: {
  49605. source: "./media/characters/aetherios/bottom.svg"
  49606. }
  49607. },
  49608. head: {
  49609. height: math.unit(38.6, "meters"),
  49610. name: "Head",
  49611. image: {
  49612. source: "./media/characters/aetherios/head.svg",
  49613. extra: 1335/1112,
  49614. bottom: 0/1335
  49615. }
  49616. },
  49617. front: {
  49618. height: math.unit(29, "meters"),
  49619. name: "Front",
  49620. image: {
  49621. source: "./media/characters/aetherios/front.svg",
  49622. extra: 1266/953,
  49623. bottom: 158/1424
  49624. }
  49625. },
  49626. maw: {
  49627. height: math.unit(16.37, "meters"),
  49628. name: "Maw",
  49629. image: {
  49630. source: "./media/characters/aetherios/maw.svg",
  49631. extra: 748/637,
  49632. bottom: 0/748
  49633. },
  49634. extraAttributes: {
  49635. preyCapacity: {
  49636. name: "Capacity",
  49637. power: 3,
  49638. type: "volume",
  49639. base: math.unit(1000, "people")
  49640. },
  49641. tongueSize: {
  49642. name: "Tongue Size",
  49643. power: 2,
  49644. type: "area",
  49645. base: math.unit(21, "m^2")
  49646. }
  49647. }
  49648. },
  49649. forepaw: {
  49650. height: math.unit(18, "meters"),
  49651. name: "Forepaw",
  49652. image: {
  49653. source: "./media/characters/aetherios/forepaw.svg"
  49654. }
  49655. },
  49656. hindpaw: {
  49657. height: math.unit(23, "meters"),
  49658. name: "Hindpaw",
  49659. image: {
  49660. source: "./media/characters/aetherios/hindpaw.svg"
  49661. }
  49662. },
  49663. genitals: {
  49664. height: math.unit(42, "meters"),
  49665. name: "Genitals",
  49666. image: {
  49667. source: "./media/characters/aetherios/genitals.svg"
  49668. }
  49669. },
  49670. },
  49671. [
  49672. {
  49673. name: "Normal",
  49674. height: math.unit(47.2, "meters"),
  49675. default: true
  49676. },
  49677. {
  49678. name: "Macro",
  49679. height: math.unit(160, "meters")
  49680. },
  49681. {
  49682. name: "Mega",
  49683. height: math.unit(1.87, "km")
  49684. },
  49685. {
  49686. name: "Giga",
  49687. height: math.unit(40000, "km")
  49688. },
  49689. {
  49690. name: "Stellar",
  49691. height: math.unit(158000000, "km")
  49692. },
  49693. {
  49694. name: "Cosmic",
  49695. height: math.unit(9.46e12, "km")
  49696. },
  49697. ]
  49698. ))
  49699. characterMakers.push(() => makeCharacter(
  49700. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49701. {
  49702. front: {
  49703. height: math.unit(5 + 4/12, "feet"),
  49704. weight: math.unit(80, "lb"),
  49705. name: "Front",
  49706. image: {
  49707. source: "./media/characters/mizu-gieeg/front.svg",
  49708. extra: 850/709,
  49709. bottom: 52/902
  49710. }
  49711. },
  49712. back: {
  49713. height: math.unit(5 + 4/12, "feet"),
  49714. weight: math.unit(80, "lb"),
  49715. name: "Back",
  49716. image: {
  49717. source: "./media/characters/mizu-gieeg/back.svg",
  49718. extra: 882/745,
  49719. bottom: 25/907
  49720. }
  49721. },
  49722. },
  49723. [
  49724. {
  49725. name: "Normal",
  49726. height: math.unit(5 + 4/12, "feet"),
  49727. default: true
  49728. },
  49729. ]
  49730. ))
  49731. characterMakers.push(() => makeCharacter(
  49732. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49733. {
  49734. front: {
  49735. height: math.unit(6, "feet"),
  49736. name: "Front",
  49737. image: {
  49738. source: "./media/characters/roselle-st-papier/front.svg",
  49739. extra: 1430/1280,
  49740. bottom: 37/1467
  49741. }
  49742. },
  49743. back: {
  49744. height: math.unit(6, "feet"),
  49745. name: "Back",
  49746. image: {
  49747. source: "./media/characters/roselle-st-papier/back.svg",
  49748. extra: 1491/1296,
  49749. bottom: 23/1514
  49750. }
  49751. },
  49752. ear: {
  49753. height: math.unit(1.26, "feet"),
  49754. name: "Ear",
  49755. image: {
  49756. source: "./media/characters/roselle-st-papier/ear.svg"
  49757. }
  49758. },
  49759. },
  49760. [
  49761. {
  49762. name: "Normal",
  49763. height: math.unit(150, "feet"),
  49764. default: true
  49765. },
  49766. ]
  49767. ))
  49768. characterMakers.push(() => makeCharacter(
  49769. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49770. {
  49771. front: {
  49772. height: math.unit(1, "inches"),
  49773. name: "Front",
  49774. image: {
  49775. source: "./media/characters/valargent/front.svg",
  49776. extra: 1825/1694,
  49777. bottom: 62/1887
  49778. }
  49779. },
  49780. back: {
  49781. height: math.unit(1, "inches"),
  49782. name: "Back",
  49783. image: {
  49784. source: "./media/characters/valargent/back.svg",
  49785. extra: 1775/1682,
  49786. bottom: 88/1863
  49787. }
  49788. },
  49789. },
  49790. [
  49791. {
  49792. name: "Micro",
  49793. height: math.unit(1, "inch"),
  49794. default: true
  49795. },
  49796. ]
  49797. ))
  49798. characterMakers.push(() => makeCharacter(
  49799. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49800. {
  49801. front: {
  49802. height: math.unit(3.4, "meters"),
  49803. name: "Front",
  49804. image: {
  49805. source: "./media/characters/zarina/front.svg",
  49806. extra: 1733/1425,
  49807. bottom: 93/1826
  49808. }
  49809. },
  49810. squatting: {
  49811. height: math.unit(2.14, "meters"),
  49812. name: "Squatting",
  49813. image: {
  49814. source: "./media/characters/zarina/squatting.svg",
  49815. extra: 1073/788,
  49816. bottom: 63/1136
  49817. }
  49818. },
  49819. back: {
  49820. height: math.unit(2.14, "meters"),
  49821. name: "Back",
  49822. image: {
  49823. source: "./media/characters/zarina/back.svg",
  49824. extra: 1128/885,
  49825. bottom: 0/1128
  49826. }
  49827. },
  49828. },
  49829. [
  49830. {
  49831. name: "Normal",
  49832. height: math.unit(3.4, "meters"),
  49833. default: true
  49834. },
  49835. {
  49836. name: "Big",
  49837. height: math.unit(5, "meters")
  49838. },
  49839. {
  49840. name: "Macro",
  49841. height: math.unit(110, "meters")
  49842. },
  49843. ]
  49844. ))
  49845. characterMakers.push(() => makeCharacter(
  49846. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  49847. {
  49848. front: {
  49849. height: math.unit(7, "feet"),
  49850. name: "Front",
  49851. image: {
  49852. source: "./media/characters/ventus-astro-fox/front.svg",
  49853. extra: 1792/1623,
  49854. bottom: 28/1820
  49855. }
  49856. },
  49857. back: {
  49858. height: math.unit(7, "feet"),
  49859. name: "Back",
  49860. image: {
  49861. source: "./media/characters/ventus-astro-fox/back.svg",
  49862. extra: 1789/1620,
  49863. bottom: 31/1820
  49864. }
  49865. },
  49866. outfit: {
  49867. height: math.unit(7, "feet"),
  49868. name: "Outfit",
  49869. image: {
  49870. source: "./media/characters/ventus-astro-fox/outfit.svg",
  49871. extra: 1054/925,
  49872. bottom: 15/1069
  49873. }
  49874. },
  49875. head: {
  49876. height: math.unit(1.12, "feet"),
  49877. name: "Head",
  49878. image: {
  49879. source: "./media/characters/ventus-astro-fox/head.svg",
  49880. extra: 866/504,
  49881. bottom: 0/866
  49882. }
  49883. },
  49884. hand: {
  49885. height: math.unit(1, "feet"),
  49886. name: "Hand",
  49887. image: {
  49888. source: "./media/characters/ventus-astro-fox/hand.svg"
  49889. }
  49890. },
  49891. paw: {
  49892. height: math.unit(1.5, "feet"),
  49893. name: "Paw",
  49894. image: {
  49895. source: "./media/characters/ventus-astro-fox/paw.svg"
  49896. }
  49897. },
  49898. },
  49899. [
  49900. {
  49901. name: "Normal",
  49902. height: math.unit(7, "feet"),
  49903. default: true
  49904. },
  49905. {
  49906. name: "Macro",
  49907. height: math.unit(200, "feet")
  49908. },
  49909. {
  49910. name: "Cosmic",
  49911. height: math.unit(3, "universes")
  49912. },
  49913. ]
  49914. ))
  49915. characterMakers.push(() => makeCharacter(
  49916. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  49917. {
  49918. front: {
  49919. height: math.unit(3, "meters"),
  49920. weight: math.unit(7000, "lb"),
  49921. name: "Front",
  49922. image: {
  49923. source: "./media/characters/core-t/front.svg",
  49924. extra: 5729/4941,
  49925. bottom: 1129/6858
  49926. }
  49927. },
  49928. },
  49929. [
  49930. {
  49931. name: "Big",
  49932. height: math.unit(3, "meters"),
  49933. default: true
  49934. },
  49935. ]
  49936. ))
  49937. characterMakers.push(() => makeCharacter(
  49938. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  49939. {
  49940. normal: {
  49941. height: math.unit(6 + 6/12, "feet"),
  49942. weight: math.unit(275, "lb"),
  49943. name: "Front",
  49944. image: {
  49945. source: "./media/characters/cadbunny/normal.svg",
  49946. extra: 1129/947,
  49947. bottom: 93/1222
  49948. },
  49949. default: true,
  49950. form: "normal"
  49951. },
  49952. gigantamax: {
  49953. height: math.unit(26, "feet"),
  49954. weight: math.unit(16000, "lb"),
  49955. name: "Front",
  49956. image: {
  49957. source: "./media/characters/cadbunny/gigantamax.svg",
  49958. extra: 1133/944,
  49959. bottom: 90/1223
  49960. },
  49961. default: true,
  49962. form: "gigantamax"
  49963. },
  49964. },
  49965. [
  49966. {
  49967. name: "Normal",
  49968. height: math.unit(6 + 6/12, "feet"),
  49969. default: true,
  49970. form: "normal"
  49971. },
  49972. {
  49973. name: "Small",
  49974. height: math.unit(26, "feet"),
  49975. default: true,
  49976. form: "gigantamax"
  49977. },
  49978. {
  49979. name: "Large",
  49980. height: math.unit(78, "feet"),
  49981. form: "gigantamax"
  49982. },
  49983. ],
  49984. {
  49985. "normal": {
  49986. name: "Normal",
  49987. default: true
  49988. },
  49989. "gigantamax": {
  49990. name: "Gigantamax"
  49991. }
  49992. }
  49993. ))
  49994. characterMakers.push(() => makeCharacter(
  49995. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  49996. {
  49997. anthroFront: {
  49998. height: math.unit(8, "feet"),
  49999. weight: math.unit(300, "lb"),
  50000. name: "Front",
  50001. image: {
  50002. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50003. extra: 1272/1176,
  50004. bottom: 53/1325
  50005. },
  50006. form: "anthro",
  50007. default: true
  50008. },
  50009. feralSide: {
  50010. height: math.unit(4, "feet"),
  50011. weight: math.unit(250, "lb"),
  50012. name: "Side",
  50013. image: {
  50014. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50015. extra: 731/621,
  50016. bottom: 0/731
  50017. },
  50018. form: "feral",
  50019. default: true
  50020. },
  50021. },
  50022. [
  50023. {
  50024. name: "Regular",
  50025. height: math.unit(8, "feet"),
  50026. form: "anthro"
  50027. },
  50028. {
  50029. name: "Macro",
  50030. height: math.unit(250, "feet"),
  50031. form: "anthro",
  50032. default: true
  50033. },
  50034. {
  50035. name: "Regular",
  50036. height: math.unit(4, "feet"),
  50037. form: "feral"
  50038. },
  50039. {
  50040. name: "Macro",
  50041. height: math.unit(125, "feet"),
  50042. form: "feral",
  50043. default: true
  50044. },
  50045. ],
  50046. {
  50047. "anthro": {
  50048. name: "Anthro",
  50049. default: true
  50050. },
  50051. "feral": {
  50052. name: "Feral",
  50053. },
  50054. }
  50055. ))
  50056. characterMakers.push(() => makeCharacter(
  50057. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50058. {
  50059. front: {
  50060. height: math.unit(11 + 10/12, "feet"),
  50061. weight: math.unit(1587, "kg"),
  50062. name: "Front",
  50063. image: {
  50064. source: "./media/characters/maple-javira-dragon/front.svg",
  50065. extra: 1136/744,
  50066. bottom: 73/1209
  50067. }
  50068. },
  50069. side: {
  50070. height: math.unit(11 + 10/12, "feet"),
  50071. weight: math.unit(1587, "kg"),
  50072. name: "Side",
  50073. image: {
  50074. source: "./media/characters/maple-javira-dragon/side.svg",
  50075. extra: 712/505,
  50076. bottom: 17/729
  50077. }
  50078. },
  50079. head: {
  50080. height: math.unit(8.05, "feet"),
  50081. name: "Head",
  50082. image: {
  50083. source: "./media/characters/maple-javira-dragon/head.svg",
  50084. extra: 1420/1344,
  50085. bottom: 0/1420
  50086. }
  50087. },
  50088. },
  50089. [
  50090. {
  50091. name: "Normal",
  50092. height: math.unit(11 + 10/12, "feet"),
  50093. default: true
  50094. },
  50095. ]
  50096. ))
  50097. characterMakers.push(() => makeCharacter(
  50098. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50099. {
  50100. front: {
  50101. height: math.unit(117, "cm"),
  50102. weight: math.unit(50, "kg"),
  50103. name: "Front",
  50104. image: {
  50105. source: "./media/characters/sonia-wyverntail/front.svg",
  50106. extra: 708/592,
  50107. bottom: 25/733
  50108. }
  50109. },
  50110. },
  50111. [
  50112. {
  50113. name: "Normal",
  50114. height: math.unit(117, "cm"),
  50115. default: true
  50116. },
  50117. ]
  50118. ))
  50119. characterMakers.push(() => makeCharacter(
  50120. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50121. {
  50122. front: {
  50123. height: math.unit(6 + 5/12, "feet"),
  50124. name: "Front",
  50125. image: {
  50126. source: "./media/characters/micah/front.svg",
  50127. extra: 1758/1546,
  50128. bottom: 214/1972
  50129. }
  50130. },
  50131. },
  50132. [
  50133. {
  50134. name: "Normal",
  50135. height: math.unit(6 + 5/12, "feet"),
  50136. default: true
  50137. },
  50138. ]
  50139. ))
  50140. characterMakers.push(() => makeCharacter(
  50141. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50142. {
  50143. front: {
  50144. height: math.unit(5 + 10/12, "feet"),
  50145. weight: math.unit(220, "lb"),
  50146. name: "Front",
  50147. image: {
  50148. source: "./media/characters/zarya/front.svg",
  50149. extra: 593/572,
  50150. bottom: 50/643
  50151. }
  50152. },
  50153. back: {
  50154. height: math.unit(5 + 10/12, "feet"),
  50155. weight: math.unit(220, "lb"),
  50156. name: "Back",
  50157. image: {
  50158. source: "./media/characters/zarya/back.svg",
  50159. extra: 603/582,
  50160. bottom: 38/641
  50161. }
  50162. },
  50163. },
  50164. [
  50165. {
  50166. name: "Normal",
  50167. height: math.unit(5 + 10/12, "feet"),
  50168. default: true
  50169. },
  50170. ]
  50171. ))
  50172. characterMakers.push(() => makeCharacter(
  50173. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50174. {
  50175. front: {
  50176. height: math.unit(7.5, "feet"),
  50177. name: "Front",
  50178. image: {
  50179. source: "./media/characters/sven-hatisson/front.svg",
  50180. extra: 917/857,
  50181. bottom: 42/959
  50182. }
  50183. },
  50184. back: {
  50185. height: math.unit(7.5, "feet"),
  50186. name: "Back",
  50187. image: {
  50188. source: "./media/characters/sven-hatisson/back.svg",
  50189. extra: 903/856,
  50190. bottom: 15/918
  50191. }
  50192. },
  50193. },
  50194. [
  50195. {
  50196. name: "Base Height",
  50197. height: math.unit(7.5, "feet")
  50198. },
  50199. {
  50200. name: "Usual Height",
  50201. height: math.unit(13.5, "feet"),
  50202. default: true
  50203. },
  50204. {
  50205. name: "Smaller Macro",
  50206. height: math.unit(85, "feet")
  50207. },
  50208. {
  50209. name: "Moderate Macro",
  50210. height: math.unit(320, "feet")
  50211. },
  50212. {
  50213. name: "Large Macro",
  50214. height: math.unit(1000, "feet")
  50215. },
  50216. {
  50217. name: "Largest Size",
  50218. height: math.unit(2, "miles")
  50219. },
  50220. ]
  50221. ))
  50222. characterMakers.push(() => makeCharacter(
  50223. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50224. {
  50225. side: {
  50226. height: math.unit(1.8, "meters"),
  50227. weight: math.unit(275, "kg"),
  50228. name: "Side",
  50229. image: {
  50230. source: "./media/characters/terra/side.svg",
  50231. extra: 1273/1147,
  50232. bottom: 0/1273
  50233. }
  50234. },
  50235. },
  50236. [
  50237. {
  50238. name: "Normal",
  50239. height: math.unit(16.2, "meters"),
  50240. default: true
  50241. },
  50242. ]
  50243. ))
  50244. characterMakers.push(() => makeCharacter(
  50245. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50246. {
  50247. borzoiFront: {
  50248. height: math.unit(6 + 9/12, "feet"),
  50249. name: "Front",
  50250. image: {
  50251. source: "./media/characters/rae/borzoi-front.svg",
  50252. extra: 1161/1098,
  50253. bottom: 31/1192
  50254. },
  50255. form: "borzoi",
  50256. default: true
  50257. },
  50258. werewolfFront: {
  50259. height: math.unit(8 + 7/12, "feet"),
  50260. name: "Front",
  50261. image: {
  50262. source: "./media/characters/rae/werewolf-front.svg",
  50263. extra: 1411/1334,
  50264. bottom: 127/1538
  50265. },
  50266. form: "werewolf",
  50267. default: true
  50268. },
  50269. },
  50270. [
  50271. {
  50272. name: "Normal",
  50273. height: math.unit(6 + 9/12, "feet"),
  50274. default: true,
  50275. form: "borzoi"
  50276. },
  50277. {
  50278. name: "Normal",
  50279. height: math.unit(8 + 7/12, "feet"),
  50280. default: true,
  50281. form: "werewolf"
  50282. },
  50283. ],
  50284. {
  50285. "borzoi": {
  50286. name: "Borzoi",
  50287. default: true
  50288. },
  50289. "werewolf": {
  50290. name: "Werewolf",
  50291. },
  50292. }
  50293. ))
  50294. characterMakers.push(() => makeCharacter(
  50295. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50296. {
  50297. front: {
  50298. height: math.unit(8 + 7/12, "feet"),
  50299. weight: math.unit(482, "lb"),
  50300. name: "Front",
  50301. image: {
  50302. source: "./media/characters/kit/front.svg",
  50303. extra: 1247/1103,
  50304. bottom: 41/1288
  50305. }
  50306. },
  50307. back: {
  50308. height: math.unit(8 + 7/12, "feet"),
  50309. weight: math.unit(482, "lb"),
  50310. name: "Back",
  50311. image: {
  50312. source: "./media/characters/kit/back.svg",
  50313. extra: 1252/1123,
  50314. bottom: 21/1273
  50315. }
  50316. },
  50317. paw: {
  50318. height: math.unit(1.46, "feet"),
  50319. name: "Paw",
  50320. image: {
  50321. source: "./media/characters/kit/paw.svg"
  50322. }
  50323. },
  50324. },
  50325. [
  50326. {
  50327. name: "Normal",
  50328. height: math.unit(8 + 7/12, "feet"),
  50329. default: true
  50330. },
  50331. ]
  50332. ))
  50333. characterMakers.push(() => makeCharacter(
  50334. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50335. {
  50336. side: {
  50337. height: math.unit(0.6, "meters"),
  50338. weight: math.unit(24, "kg"),
  50339. name: "Side",
  50340. image: {
  50341. source: "./media/characters/celeste/side.svg",
  50342. extra: 810/517,
  50343. bottom: 53/863
  50344. }
  50345. },
  50346. },
  50347. [
  50348. {
  50349. name: "Velociraptor",
  50350. height: math.unit(0.6, "meters"),
  50351. default: true
  50352. },
  50353. {
  50354. name: "Utahraptor",
  50355. height: math.unit(1.8, "meters")
  50356. },
  50357. {
  50358. name: "Gallimimus",
  50359. height: math.unit(4.0, "meters")
  50360. },
  50361. {
  50362. name: "Large",
  50363. height: math.unit(20, "meters")
  50364. },
  50365. {
  50366. name: "Planetary",
  50367. height: math.unit(50, "megameters")
  50368. },
  50369. {
  50370. name: "Stellar",
  50371. height: math.unit(1.5, "gigameters")
  50372. },
  50373. {
  50374. name: "Galactic",
  50375. height: math.unit(100, "exameters")
  50376. },
  50377. ]
  50378. ))
  50379. characterMakers.push(() => makeCharacter(
  50380. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50381. {
  50382. front: {
  50383. height: math.unit(6, "feet"),
  50384. weight: math.unit(210, "lb"),
  50385. name: "Front",
  50386. image: {
  50387. source: "./media/characters/glacia/front.svg",
  50388. extra: 958/901,
  50389. bottom: 45/1003
  50390. }
  50391. },
  50392. },
  50393. [
  50394. {
  50395. name: "Macro",
  50396. height: math.unit(1000, "meters"),
  50397. default: true
  50398. },
  50399. ]
  50400. ))
  50401. characterMakers.push(() => makeCharacter(
  50402. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50403. {
  50404. front: {
  50405. height: math.unit(4, "meters"),
  50406. name: "Front",
  50407. image: {
  50408. source: "./media/characters/giri/front.svg",
  50409. extra: 966/894,
  50410. bottom: 21/987
  50411. }
  50412. },
  50413. },
  50414. [
  50415. {
  50416. name: "Normal",
  50417. height: math.unit(4, "meters"),
  50418. default: true
  50419. },
  50420. ]
  50421. ))
  50422. //characters
  50423. function makeCharacters() {
  50424. const results = [];
  50425. characterMakers.forEach(character => {
  50426. results.push(character());
  50427. });
  50428. return results;
  50429. }