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.
 
 
 

43381 lines
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. }
  1759. //species
  1760. function getSpeciesInfo(speciesList) {
  1761. let result = new Set();
  1762. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1763. result.add(entry)
  1764. });
  1765. return Array.from(result);
  1766. };
  1767. function getSpeciesInfoHelper(species) {
  1768. if (!speciesData[species]) {
  1769. console.warn(species + " doesn't exist");
  1770. return [];
  1771. }
  1772. if (speciesData[species].parents) {
  1773. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1774. } else {
  1775. return [species];
  1776. }
  1777. }
  1778. characterMakers.push(() => makeCharacter(
  1779. {
  1780. name: "Fen",
  1781. species: ["crux"],
  1782. description: {
  1783. title: "Bio",
  1784. text: "Very furry. Sheds on everything."
  1785. },
  1786. tags: [
  1787. "anthro",
  1788. "goo"
  1789. ]
  1790. },
  1791. {
  1792. back: {
  1793. height: math.unit(2.2428, "meter"),
  1794. weight: math.unit(124.738, "kg"),
  1795. name: "Back",
  1796. image: {
  1797. source: "./media/characters/fen/back.svg",
  1798. },
  1799. info: {
  1800. description: {
  1801. mode: "append",
  1802. text: "\n\nHe is not currently looking at you."
  1803. }
  1804. }
  1805. },
  1806. full: {
  1807. height: math.unit(1.34, "meter"),
  1808. weight: math.unit(225, "kg"),
  1809. name: "Full",
  1810. image: {
  1811. source: "./media/characters/fen/full.svg"
  1812. },
  1813. info: {
  1814. description: {
  1815. mode: "append",
  1816. text: "\n\nMunch."
  1817. }
  1818. }
  1819. },
  1820. kneeling: {
  1821. height: math.unit(5.4, "feet"),
  1822. weight: math.unit(124.738, "kg"),
  1823. name: "Kneeling",
  1824. image: {
  1825. source: "./media/characters/fen/kneeling.svg",
  1826. extra: 563 / 507
  1827. }
  1828. },
  1829. goo: {
  1830. height: math.unit(2.8, "feet"),
  1831. weight: math.unit(125, "kg"),
  1832. capacity: math.unit(1, "people"),
  1833. name: "Goo",
  1834. image: {
  1835. source: "./media/characters/fen/goo.svg",
  1836. bottom: 116 / 613
  1837. }
  1838. },
  1839. lounging: {
  1840. height: math.unit(6.5, "feet"),
  1841. weight: math.unit(125, "kg"),
  1842. name: "Lounging",
  1843. image: {
  1844. source: "./media/characters/fen/lounging.svg"
  1845. }
  1846. },
  1847. },
  1848. [
  1849. {
  1850. name: "Normal",
  1851. height: math.unit(2.2428, "meter")
  1852. },
  1853. {
  1854. name: "Big",
  1855. height: math.unit(12, "feet")
  1856. },
  1857. {
  1858. name: "Minimacro",
  1859. height: math.unit(40, "feet"),
  1860. default: true,
  1861. info: {
  1862. description: {
  1863. mode: "append",
  1864. text: "\n\nTOO DAMN BIG"
  1865. }
  1866. }
  1867. },
  1868. {
  1869. name: "Macro",
  1870. height: math.unit(100, "feet"),
  1871. info: {
  1872. description: {
  1873. mode: "append",
  1874. text: "\n\nTOO DAMN BIG"
  1875. }
  1876. }
  1877. },
  1878. {
  1879. name: "Macro+",
  1880. height: math.unit(300, "feet")
  1881. },
  1882. {
  1883. name: "Megamacro",
  1884. height: math.unit(2, "miles")
  1885. }
  1886. ]
  1887. ))
  1888. characterMakers.push(() => makeCharacter(
  1889. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1890. {
  1891. front: {
  1892. height: math.unit(183, "cm"),
  1893. weight: math.unit(80, "kg"),
  1894. name: "Front",
  1895. image: {
  1896. source: "./media/characters/sofia-fluttertail/front.svg",
  1897. bottom: 0.01,
  1898. extra: 2154 / 2081
  1899. }
  1900. },
  1901. frontAlt: {
  1902. height: math.unit(183, "cm"),
  1903. weight: math.unit(80, "kg"),
  1904. name: "Front (alt)",
  1905. image: {
  1906. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1907. }
  1908. },
  1909. back: {
  1910. height: math.unit(183, "cm"),
  1911. weight: math.unit(80, "kg"),
  1912. name: "Back",
  1913. image: {
  1914. source: "./media/characters/sofia-fluttertail/back.svg"
  1915. }
  1916. },
  1917. kneeling: {
  1918. height: math.unit(125, "cm"),
  1919. weight: math.unit(80, "kg"),
  1920. name: "Kneeling",
  1921. image: {
  1922. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1923. extra: 1033 / 977,
  1924. bottom: 23.7 / 1057
  1925. }
  1926. },
  1927. maw: {
  1928. height: math.unit(183 / 5, "cm"),
  1929. name: "Maw",
  1930. image: {
  1931. source: "./media/characters/sofia-fluttertail/maw.svg"
  1932. }
  1933. },
  1934. mawcloseup: {
  1935. height: math.unit(183 / 5 * 0.41, "cm"),
  1936. name: "Maw (Closeup)",
  1937. image: {
  1938. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1939. }
  1940. },
  1941. paws: {
  1942. height: math.unit(1.17, "feet"),
  1943. name: "Paws",
  1944. image: {
  1945. source: "./media/characters/sofia-fluttertail/paws.svg",
  1946. extra: 851 / 851,
  1947. bottom: 17 / 868
  1948. }
  1949. },
  1950. },
  1951. [
  1952. {
  1953. name: "Normal",
  1954. height: math.unit(1.83, "meter")
  1955. },
  1956. {
  1957. name: "Size Thief",
  1958. height: math.unit(18, "feet")
  1959. },
  1960. {
  1961. name: "50 Foot Collie",
  1962. height: math.unit(50, "feet")
  1963. },
  1964. {
  1965. name: "Macro",
  1966. height: math.unit(96, "feet"),
  1967. default: true
  1968. },
  1969. {
  1970. name: "Megamerger",
  1971. height: math.unit(650, "feet")
  1972. },
  1973. ]
  1974. ))
  1975. characterMakers.push(() => makeCharacter(
  1976. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1977. {
  1978. front: {
  1979. height: math.unit(7, "feet"),
  1980. weight: math.unit(100, "kg"),
  1981. name: "Front",
  1982. image: {
  1983. source: "./media/characters/march/front.svg",
  1984. extra: 1992/1851,
  1985. bottom: 39/2031
  1986. }
  1987. },
  1988. foot: {
  1989. height: math.unit(0.9, "feet"),
  1990. name: "Foot",
  1991. image: {
  1992. source: "./media/characters/march/foot.svg"
  1993. }
  1994. },
  1995. },
  1996. [
  1997. {
  1998. name: "Normal",
  1999. height: math.unit(7.9, "feet")
  2000. },
  2001. {
  2002. name: "Macro",
  2003. height: math.unit(220, "meters")
  2004. },
  2005. {
  2006. name: "Megamacro",
  2007. height: math.unit(2.98, "km"),
  2008. default: true
  2009. },
  2010. {
  2011. name: "Gigamacro",
  2012. height: math.unit(15963, "km")
  2013. },
  2014. {
  2015. name: "Teramacro",
  2016. height: math.unit(2980000000, "km")
  2017. },
  2018. {
  2019. name: "Examacro",
  2020. height: math.unit(250, "parsecs")
  2021. },
  2022. ]
  2023. ))
  2024. characterMakers.push(() => makeCharacter(
  2025. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2026. {
  2027. front: {
  2028. height: math.unit(6, "feet"),
  2029. weight: math.unit(60, "kg"),
  2030. name: "Front",
  2031. image: {
  2032. source: "./media/characters/noir/front.svg",
  2033. extra: 1,
  2034. bottom: 0.032
  2035. }
  2036. },
  2037. },
  2038. [
  2039. {
  2040. name: "Normal",
  2041. height: math.unit(6.6, "feet")
  2042. },
  2043. {
  2044. name: "Macro",
  2045. height: math.unit(500, "feet")
  2046. },
  2047. {
  2048. name: "Megamacro",
  2049. height: math.unit(2.5, "km"),
  2050. default: true
  2051. },
  2052. {
  2053. name: "Gigamacro",
  2054. height: math.unit(22500, "km")
  2055. },
  2056. {
  2057. name: "Teramacro",
  2058. height: math.unit(2500000000, "km")
  2059. },
  2060. {
  2061. name: "Examacro",
  2062. height: math.unit(200, "parsecs")
  2063. },
  2064. ]
  2065. ))
  2066. characterMakers.push(() => makeCharacter(
  2067. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2068. {
  2069. front: {
  2070. height: math.unit(7, "feet"),
  2071. weight: math.unit(100, "kg"),
  2072. name: "Front",
  2073. image: {
  2074. source: "./media/characters/okuri/front.svg",
  2075. extra: 1,
  2076. bottom: 0.037
  2077. }
  2078. },
  2079. back: {
  2080. height: math.unit(7, "feet"),
  2081. weight: math.unit(100, "kg"),
  2082. name: "Back",
  2083. image: {
  2084. source: "./media/characters/okuri/back.svg",
  2085. extra: 1,
  2086. bottom: 0.007
  2087. }
  2088. },
  2089. },
  2090. [
  2091. {
  2092. name: "Megamacro",
  2093. height: math.unit(100, "miles"),
  2094. default: true
  2095. },
  2096. ]
  2097. ))
  2098. characterMakers.push(() => makeCharacter(
  2099. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2100. {
  2101. front: {
  2102. height: math.unit(7, "feet"),
  2103. weight: math.unit(100, "kg"),
  2104. name: "Front",
  2105. image: {
  2106. source: "./media/characters/manny/front.svg",
  2107. extra: 1,
  2108. bottom: 0.06
  2109. }
  2110. },
  2111. back: {
  2112. height: math.unit(7, "feet"),
  2113. weight: math.unit(100, "kg"),
  2114. name: "Back",
  2115. image: {
  2116. source: "./media/characters/manny/back.svg",
  2117. extra: 1,
  2118. bottom: 0.014
  2119. }
  2120. },
  2121. },
  2122. [
  2123. {
  2124. name: "Normal",
  2125. height: math.unit(7, "feet"),
  2126. },
  2127. {
  2128. name: "Macro",
  2129. height: math.unit(78, "feet"),
  2130. default: true
  2131. },
  2132. {
  2133. name: "Macro+",
  2134. height: math.unit(300, "meters")
  2135. },
  2136. {
  2137. name: "Macro++",
  2138. height: math.unit(2400, "meters")
  2139. },
  2140. {
  2141. name: "Megamacro",
  2142. height: math.unit(5167, "meters")
  2143. },
  2144. {
  2145. name: "Gigamacro",
  2146. height: math.unit(41769, "miles")
  2147. },
  2148. ]
  2149. ))
  2150. characterMakers.push(() => makeCharacter(
  2151. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2152. {
  2153. front: {
  2154. height: math.unit(7, "feet"),
  2155. weight: math.unit(100, "kg"),
  2156. name: "Front",
  2157. image: {
  2158. source: "./media/characters/adake/front-1.svg"
  2159. }
  2160. },
  2161. frontAlt: {
  2162. height: math.unit(7, "feet"),
  2163. weight: math.unit(100, "kg"),
  2164. name: "Front (Alt)",
  2165. image: {
  2166. source: "./media/characters/adake/front-2.svg",
  2167. extra: 1,
  2168. bottom: 0.01
  2169. }
  2170. },
  2171. back: {
  2172. height: math.unit(7, "feet"),
  2173. weight: math.unit(100, "kg"),
  2174. name: "Back",
  2175. image: {
  2176. source: "./media/characters/adake/back.svg",
  2177. }
  2178. },
  2179. kneel: {
  2180. height: math.unit(5.385, "feet"),
  2181. weight: math.unit(100, "kg"),
  2182. name: "Kneeling",
  2183. image: {
  2184. source: "./media/characters/adake/kneel.svg",
  2185. bottom: 0.052
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(7, "feet"),
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(78, "feet"),
  2197. default: true
  2198. },
  2199. {
  2200. name: "Macro+",
  2201. height: math.unit(300, "meters")
  2202. },
  2203. {
  2204. name: "Macro++",
  2205. height: math.unit(2400, "meters")
  2206. },
  2207. {
  2208. name: "Megamacro",
  2209. height: math.unit(5167, "meters")
  2210. },
  2211. {
  2212. name: "Gigamacro",
  2213. height: math.unit(41769, "miles")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(1.65, "meters"),
  2222. weight: math.unit(50, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/elijah/front.svg",
  2226. extra: 858 / 830,
  2227. bottom: 95.5 / 953.8559
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(1.65, "meters"),
  2232. weight: math.unit(50, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/elijah/back.svg",
  2236. extra: 895 / 850,
  2237. bottom: 5.3 / 897.956
  2238. }
  2239. },
  2240. frontNsfw: {
  2241. height: math.unit(1.65, "meters"),
  2242. weight: math.unit(50, "kg"),
  2243. name: "Front (NSFW)",
  2244. image: {
  2245. source: "./media/characters/elijah/front-nsfw.svg",
  2246. extra: 858 / 830,
  2247. bottom: 95.5 / 953.8559
  2248. }
  2249. },
  2250. backNsfw: {
  2251. height: math.unit(1.65, "meters"),
  2252. weight: math.unit(50, "kg"),
  2253. name: "Back (NSFW)",
  2254. image: {
  2255. source: "./media/characters/elijah/back-nsfw.svg",
  2256. extra: 895 / 850,
  2257. bottom: 5.3 / 897.956
  2258. }
  2259. },
  2260. dick: {
  2261. height: math.unit(1, "feet"),
  2262. name: "Dick",
  2263. image: {
  2264. source: "./media/characters/elijah/dick.svg"
  2265. }
  2266. },
  2267. beakOpen: {
  2268. height: math.unit(1.25, "feet"),
  2269. name: "Beak (Open)",
  2270. image: {
  2271. source: "./media/characters/elijah/beak-open.svg"
  2272. }
  2273. },
  2274. beakShut: {
  2275. height: math.unit(1.25, "feet"),
  2276. name: "Beak (Shut)",
  2277. image: {
  2278. source: "./media/characters/elijah/beak-shut.svg"
  2279. }
  2280. },
  2281. footFlexing: {
  2282. height: math.unit(1.61, "feet"),
  2283. name: "Foot (Flexing)",
  2284. image: {
  2285. source: "./media/characters/elijah/foot-flexing.svg"
  2286. }
  2287. },
  2288. footStepping: {
  2289. height: math.unit(1.44, "feet"),
  2290. name: "Foot (Stepping)",
  2291. image: {
  2292. source: "./media/characters/elijah/foot-stepping.svg"
  2293. }
  2294. },
  2295. plantigradeLeg: {
  2296. height: math.unit(2.34, "feet"),
  2297. name: "Plantigrade Leg",
  2298. image: {
  2299. source: "./media/characters/elijah/plantigrade-leg.svg"
  2300. }
  2301. },
  2302. plantigradeFootLeft: {
  2303. height: math.unit(0.9, "feet"),
  2304. name: "Plantigrade Foot (Left)",
  2305. image: {
  2306. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2307. }
  2308. },
  2309. plantigradeFootRight: {
  2310. height: math.unit(0.9, "feet"),
  2311. name: "Plantigrade Foot (Right)",
  2312. image: {
  2313. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2314. }
  2315. },
  2316. },
  2317. [
  2318. {
  2319. name: "Normal",
  2320. height: math.unit(1.65, "meters")
  2321. },
  2322. {
  2323. name: "Macro",
  2324. height: math.unit(55, "meters"),
  2325. default: true
  2326. },
  2327. {
  2328. name: "Macro+",
  2329. height: math.unit(105, "meters")
  2330. },
  2331. ]
  2332. ))
  2333. characterMakers.push(() => makeCharacter(
  2334. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2335. {
  2336. front: {
  2337. height: math.unit(11, "feet"),
  2338. weight: math.unit(320, "kg"),
  2339. name: "Front",
  2340. image: {
  2341. source: "./media/characters/rai/front.svg",
  2342. extra: 1802/1696,
  2343. bottom: 68/1870
  2344. }
  2345. },
  2346. frontDressed: {
  2347. height: math.unit(11, "feet"),
  2348. weight: math.unit(320, "kg"),
  2349. name: "Front (Dressed)",
  2350. image: {
  2351. source: "./media/characters/rai/front-dressed.svg",
  2352. extra: 1802/1696,
  2353. bottom: 68/1870
  2354. }
  2355. },
  2356. side: {
  2357. height: math.unit(11, "feet"),
  2358. weight: math.unit(320, "kg"),
  2359. name: "Side",
  2360. image: {
  2361. source: "./media/characters/rai/side.svg",
  2362. extra: 1789/1710,
  2363. bottom: 115/1904
  2364. }
  2365. },
  2366. back: {
  2367. height: math.unit(11, "feet"),
  2368. weight: math.unit(320, "kg"),
  2369. name: "Back",
  2370. image: {
  2371. source: "./media/characters/rai/back.svg",
  2372. extra: 1770/1707,
  2373. bottom: 28/1798
  2374. }
  2375. },
  2376. feral: {
  2377. height: math.unit(11, "feet"),
  2378. weight: math.unit(640, "kg"),
  2379. name: "Feral",
  2380. image: {
  2381. source: "./media/characters/rai/feral.svg",
  2382. extra: 1035/642,
  2383. bottom: 86/1121
  2384. }
  2385. },
  2386. dragon: {
  2387. height: math.unit(23, "feet"),
  2388. weight: math.unit(50000, "lb"),
  2389. name: "Dragon",
  2390. image: {
  2391. source: "./media/characters/rai/dragon.svg",
  2392. extra: 2498 / 2030,
  2393. bottom: 85.2 / 2584
  2394. }
  2395. },
  2396. maw: {
  2397. height: math.unit(6 / 3.81416, "feet"),
  2398. name: "Maw",
  2399. image: {
  2400. source: "./media/characters/rai/maw.svg"
  2401. }
  2402. },
  2403. },
  2404. [
  2405. {
  2406. name: "Normal",
  2407. height: math.unit(11, "feet")
  2408. },
  2409. {
  2410. name: "Macro",
  2411. height: math.unit(302, "feet"),
  2412. default: true
  2413. },
  2414. ]
  2415. ))
  2416. characterMakers.push(() => makeCharacter(
  2417. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2418. {
  2419. frontDressed: {
  2420. height: math.unit(216, "feet"),
  2421. weight: math.unit(7000000, "lb"),
  2422. name: "Front (Dressed)",
  2423. image: {
  2424. source: "./media/characters/jazzy/front-dressed.svg",
  2425. extra: 2738 / 2651,
  2426. bottom: 41.8 / 2786
  2427. }
  2428. },
  2429. backDressed: {
  2430. height: math.unit(216, "feet"),
  2431. weight: math.unit(7000000, "lb"),
  2432. name: "Back (Dressed)",
  2433. image: {
  2434. source: "./media/characters/jazzy/back-dressed.svg",
  2435. extra: 2775 / 2673,
  2436. bottom: 36.8 / 2817
  2437. }
  2438. },
  2439. front: {
  2440. height: math.unit(216, "feet"),
  2441. weight: math.unit(7000000, "lb"),
  2442. name: "Front",
  2443. image: {
  2444. source: "./media/characters/jazzy/front.svg",
  2445. extra: 2738 / 2651,
  2446. bottom: 41.8 / 2786
  2447. }
  2448. },
  2449. back: {
  2450. height: math.unit(216, "feet"),
  2451. weight: math.unit(7000000, "lb"),
  2452. name: "Back",
  2453. image: {
  2454. source: "./media/characters/jazzy/back.svg",
  2455. extra: 2775 / 2673,
  2456. bottom: 36.8 / 2817
  2457. }
  2458. },
  2459. maw: {
  2460. height: math.unit(20, "feet"),
  2461. name: "Maw",
  2462. image: {
  2463. source: "./media/characters/jazzy/maw.svg"
  2464. }
  2465. },
  2466. paws: {
  2467. height: math.unit(27.5, "feet"),
  2468. name: "Paws",
  2469. image: {
  2470. source: "./media/characters/jazzy/paws.svg"
  2471. }
  2472. },
  2473. eye: {
  2474. height: math.unit(4.4, "feet"),
  2475. name: "Eye",
  2476. image: {
  2477. source: "./media/characters/jazzy/eye.svg"
  2478. }
  2479. },
  2480. droneOffense: {
  2481. height: math.unit(9.5, "inches"),
  2482. name: "Drone (Offense)",
  2483. image: {
  2484. source: "./media/characters/jazzy/drone-offense.svg"
  2485. }
  2486. },
  2487. droneRecon: {
  2488. height: math.unit(9.5, "inches"),
  2489. name: "Drone (Recon)",
  2490. image: {
  2491. source: "./media/characters/jazzy/drone-recon.svg"
  2492. }
  2493. },
  2494. droneDefense: {
  2495. height: math.unit(9.5, "inches"),
  2496. name: "Drone (Defense)",
  2497. image: {
  2498. source: "./media/characters/jazzy/drone-defense.svg"
  2499. }
  2500. },
  2501. },
  2502. [
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(216, "feet"),
  2506. default: true
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(9 + 6/12, "feet"),
  2515. weight: math.unit(700, "lb"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/flamm/front.svg",
  2519. extra: 1751/1632,
  2520. bottom: 46/1797
  2521. }
  2522. },
  2523. buff: {
  2524. height: math.unit(9 + 6/12, "feet"),
  2525. weight: math.unit(950, "lb"),
  2526. name: "Buff",
  2527. image: {
  2528. source: "./media/characters/flamm/buff.svg",
  2529. extra: 3018/2874,
  2530. bottom: 221/3239
  2531. }
  2532. },
  2533. },
  2534. [
  2535. {
  2536. name: "Normal",
  2537. height: math.unit(9.5, "feet")
  2538. },
  2539. {
  2540. name: "Macro",
  2541. height: math.unit(200, "feet"),
  2542. default: true
  2543. },
  2544. ]
  2545. ))
  2546. characterMakers.push(() => makeCharacter(
  2547. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2548. {
  2549. front: {
  2550. height: math.unit(5 + 3/12, "feet"),
  2551. weight: math.unit(60, "kg"),
  2552. name: "Front",
  2553. image: {
  2554. source: "./media/characters/zephiro/front.svg",
  2555. extra: 2309 / 2162,
  2556. bottom: 0.069
  2557. }
  2558. },
  2559. side: {
  2560. height: math.unit(5 + 3/12, "feet"),
  2561. weight: math.unit(60, "kg"),
  2562. name: "Side",
  2563. image: {
  2564. source: "./media/characters/zephiro/side.svg",
  2565. extra: 2403 / 2279,
  2566. bottom: 0.015
  2567. }
  2568. },
  2569. back: {
  2570. height: math.unit(5 + 3/12, "feet"),
  2571. weight: math.unit(60, "kg"),
  2572. name: "Back",
  2573. image: {
  2574. source: "./media/characters/zephiro/back.svg",
  2575. extra: 2373 / 2244,
  2576. bottom: 0.013
  2577. }
  2578. },
  2579. hand: {
  2580. height: math.unit(0.68, "feet"),
  2581. name: "Hand",
  2582. image: {
  2583. source: "./media/characters/zephiro/hand.svg"
  2584. }
  2585. },
  2586. paw: {
  2587. height: math.unit(1, "feet"),
  2588. name: "Paw",
  2589. image: {
  2590. source: "./media/characters/zephiro/paw.svg"
  2591. }
  2592. },
  2593. beans: {
  2594. height: math.unit(0.93, "feet"),
  2595. name: "Beans",
  2596. image: {
  2597. source: "./media/characters/zephiro/beans.svg"
  2598. }
  2599. },
  2600. },
  2601. [
  2602. {
  2603. name: "Micro",
  2604. height: math.unit(3, "inches")
  2605. },
  2606. {
  2607. name: "Normal",
  2608. height: math.unit(5 + 3 / 12, "feet"),
  2609. default: true
  2610. },
  2611. {
  2612. name: "Macro",
  2613. height: math.unit(118, "feet")
  2614. },
  2615. ]
  2616. ))
  2617. characterMakers.push(() => makeCharacter(
  2618. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2619. {
  2620. front: {
  2621. height: math.unit(5, "feet"),
  2622. weight: math.unit(90, "kg"),
  2623. name: "Front",
  2624. image: {
  2625. source: "./media/characters/fory/front.svg",
  2626. extra: 2862 / 2674,
  2627. bottom: 180 / 3043.8
  2628. }
  2629. },
  2630. back: {
  2631. height: math.unit(5, "feet"),
  2632. weight: math.unit(90, "kg"),
  2633. name: "Back",
  2634. image: {
  2635. source: "./media/characters/fory/back.svg",
  2636. extra: 2962 / 2791,
  2637. bottom: 106 / 3071.8
  2638. }
  2639. },
  2640. foot: {
  2641. height: math.unit(2.14, "feet"),
  2642. name: "Foot",
  2643. image: {
  2644. source: "./media/characters/fory/foot.svg"
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(5, "feet")
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(50, "feet"),
  2656. default: true
  2657. },
  2658. {
  2659. name: "Megamacro",
  2660. height: math.unit(10, "miles")
  2661. },
  2662. {
  2663. name: "Gigamacro",
  2664. height: math.unit(5, "earths")
  2665. },
  2666. ]
  2667. ))
  2668. characterMakers.push(() => makeCharacter(
  2669. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2670. {
  2671. front: {
  2672. height: math.unit(7, "feet"),
  2673. weight: math.unit(90, "kg"),
  2674. name: "Front",
  2675. image: {
  2676. source: "./media/characters/kurrikage/front.svg",
  2677. extra: 1,
  2678. bottom: 0.035
  2679. }
  2680. },
  2681. back: {
  2682. height: math.unit(7, "feet"),
  2683. weight: math.unit(90, "lb"),
  2684. name: "Back",
  2685. image: {
  2686. source: "./media/characters/kurrikage/back.svg"
  2687. }
  2688. },
  2689. paw: {
  2690. height: math.unit(1.5, "feet"),
  2691. name: "Paw",
  2692. image: {
  2693. source: "./media/characters/kurrikage/paw.svg"
  2694. }
  2695. },
  2696. staff: {
  2697. height: math.unit(6.7, "feet"),
  2698. name: "Staff",
  2699. image: {
  2700. source: "./media/characters/kurrikage/staff.svg"
  2701. }
  2702. },
  2703. peek: {
  2704. height: math.unit(1.05, "feet"),
  2705. name: "Peeking",
  2706. image: {
  2707. source: "./media/characters/kurrikage/peek.svg",
  2708. bottom: 0.08
  2709. }
  2710. },
  2711. },
  2712. [
  2713. {
  2714. name: "Normal",
  2715. height: math.unit(12, "feet"),
  2716. default: true
  2717. },
  2718. {
  2719. name: "Big",
  2720. height: math.unit(20, "feet")
  2721. },
  2722. {
  2723. name: "Macro",
  2724. height: math.unit(500, "feet")
  2725. },
  2726. {
  2727. name: "Megamacro",
  2728. height: math.unit(20, "miles")
  2729. },
  2730. ]
  2731. ))
  2732. characterMakers.push(() => makeCharacter(
  2733. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2734. {
  2735. front: {
  2736. height: math.unit(6, "feet"),
  2737. weight: math.unit(75, "kg"),
  2738. name: "Front",
  2739. image: {
  2740. source: "./media/characters/shingo/front.svg",
  2741. extra: 1900/1825,
  2742. bottom: 82/1982
  2743. }
  2744. },
  2745. side: {
  2746. height: math.unit(6, "feet"),
  2747. weight: math.unit(75, "kg"),
  2748. name: "Side",
  2749. image: {
  2750. source: "./media/characters/shingo/side.svg",
  2751. extra: 1930/1865,
  2752. bottom: 16/1946
  2753. }
  2754. },
  2755. back: {
  2756. height: math.unit(6, "feet"),
  2757. weight: math.unit(75, "kg"),
  2758. name: "Back",
  2759. image: {
  2760. source: "./media/characters/shingo/back.svg",
  2761. extra: 1922/1852,
  2762. bottom: 16/1938
  2763. }
  2764. },
  2765. frontDressed: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(150, "lb"),
  2768. name: "Front-dressed",
  2769. image: {
  2770. source: "./media/characters/shingo/front-dressed.svg",
  2771. extra: 1900/1825,
  2772. bottom: 82/1982
  2773. }
  2774. },
  2775. paw: {
  2776. height: math.unit(1.29, "feet"),
  2777. name: "Paw",
  2778. image: {
  2779. source: "./media/characters/shingo/paw.svg"
  2780. }
  2781. },
  2782. hand: {
  2783. height: math.unit(1.07, "feet"),
  2784. name: "Hand",
  2785. image: {
  2786. source: "./media/characters/shingo/hand.svg"
  2787. }
  2788. },
  2789. frontAlt: {
  2790. height: math.unit(6, "feet"),
  2791. weight: math.unit(75, "kg"),
  2792. name: "Front (Alt)",
  2793. image: {
  2794. source: "./media/characters/shingo/front-alt.svg",
  2795. extra: 3511 / 3338,
  2796. bottom: 0.005
  2797. }
  2798. },
  2799. frontAlt2: {
  2800. height: math.unit(6, "feet"),
  2801. weight: math.unit(75, "kg"),
  2802. name: "Front (Alt 2)",
  2803. image: {
  2804. source: "./media/characters/shingo/front-alt-2.svg",
  2805. extra: 706/681,
  2806. bottom: 11/717
  2807. }
  2808. },
  2809. pawAlt: {
  2810. height: math.unit(1, "feet"),
  2811. name: "Paw (Alt)",
  2812. image: {
  2813. source: "./media/characters/shingo/paw-alt.svg"
  2814. }
  2815. },
  2816. },
  2817. [
  2818. {
  2819. name: "Micro",
  2820. height: math.unit(4, "inches")
  2821. },
  2822. {
  2823. name: "Normal",
  2824. height: math.unit(6, "feet"),
  2825. default: true
  2826. },
  2827. {
  2828. name: "Macro",
  2829. height: math.unit(108, "feet")
  2830. },
  2831. {
  2832. name: "Macro+",
  2833. height: math.unit(1500, "feet")
  2834. },
  2835. ]
  2836. ))
  2837. characterMakers.push(() => makeCharacter(
  2838. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2839. {
  2840. side: {
  2841. height: math.unit(6, "feet"),
  2842. weight: math.unit(75, "kg"),
  2843. name: "Side",
  2844. image: {
  2845. source: "./media/characters/aigey/side.svg"
  2846. }
  2847. },
  2848. },
  2849. [
  2850. {
  2851. name: "Macro",
  2852. height: math.unit(200, "feet"),
  2853. default: true
  2854. },
  2855. {
  2856. name: "Megamacro",
  2857. height: math.unit(100, "miles")
  2858. },
  2859. ]
  2860. )
  2861. )
  2862. characterMakers.push(() => makeCharacter(
  2863. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2864. {
  2865. front: {
  2866. height: math.unit(5 + 5 / 12, "feet"),
  2867. weight: math.unit(75, "kg"),
  2868. name: "Front",
  2869. image: {
  2870. source: "./media/characters/natasha/front.svg",
  2871. extra: 859 / 824,
  2872. bottom: 23 / 879.6
  2873. }
  2874. },
  2875. frontNsfw: {
  2876. height: math.unit(5 + 5 / 12, "feet"),
  2877. weight: math.unit(75, "kg"),
  2878. name: "Front (NSFW)",
  2879. image: {
  2880. source: "./media/characters/natasha/front-nsfw.svg",
  2881. extra: 859 / 824,
  2882. bottom: 23 / 879.6
  2883. }
  2884. },
  2885. frontErect: {
  2886. height: math.unit(5 + 5 / 12, "feet"),
  2887. weight: math.unit(75, "kg"),
  2888. name: "Front (Erect)",
  2889. image: {
  2890. source: "./media/characters/natasha/front-erect.svg",
  2891. extra: 859 / 824,
  2892. bottom: 23 / 879.6
  2893. }
  2894. },
  2895. back: {
  2896. height: math.unit(5 + 5 / 12, "feet"),
  2897. weight: math.unit(75, "kg"),
  2898. name: "Back",
  2899. image: {
  2900. source: "./media/characters/natasha/back.svg",
  2901. extra: 887.9 / 852.6,
  2902. bottom: 9.7 / 896.4
  2903. }
  2904. },
  2905. backAlt: {
  2906. height: math.unit(5 + 5 / 12, "feet"),
  2907. weight: math.unit(75, "kg"),
  2908. name: "Back (Alt)",
  2909. image: {
  2910. source: "./media/characters/natasha/back-alt.svg",
  2911. extra: 1236.7 / 1192,
  2912. bottom: 22.3 / 1258.2
  2913. }
  2914. },
  2915. dick: {
  2916. height: math.unit(1.772, "feet"),
  2917. name: "Dick",
  2918. image: {
  2919. source: "./media/characters/natasha/dick.svg"
  2920. }
  2921. },
  2922. paw: {
  2923. height: math.unit(0.250, "meters"),
  2924. name: "Paw",
  2925. image: {
  2926. source: "./media/characters/natasha/paw.svg"
  2927. }
  2928. },
  2929. },
  2930. [
  2931. {
  2932. name: "Normal",
  2933. height: math.unit(5 + 5 / 12, "feet")
  2934. },
  2935. {
  2936. name: "Large",
  2937. height: math.unit(12, "feet")
  2938. },
  2939. {
  2940. name: "Macro",
  2941. height: math.unit(100, "feet"),
  2942. default: true
  2943. },
  2944. {
  2945. name: "Macro+",
  2946. height: math.unit(260, "feet")
  2947. },
  2948. {
  2949. name: "Macro++",
  2950. height: math.unit(1, "mile")
  2951. },
  2952. ]
  2953. ))
  2954. characterMakers.push(() => makeCharacter(
  2955. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2956. {
  2957. front: {
  2958. height: math.unit(6, "feet"),
  2959. weight: math.unit(75, "kg"),
  2960. name: "Front",
  2961. image: {
  2962. source: "./media/characters/malik/front.svg"
  2963. }
  2964. },
  2965. side: {
  2966. height: math.unit(6, "feet"),
  2967. weight: math.unit(75, "kg"),
  2968. name: "Side",
  2969. image: {
  2970. source: "./media/characters/malik/side.svg",
  2971. extra: 1.1539
  2972. }
  2973. },
  2974. back: {
  2975. height: math.unit(6, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Back",
  2978. image: {
  2979. source: "./media/characters/malik/back.svg"
  2980. }
  2981. },
  2982. },
  2983. [
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(156, "feet"),
  2987. default: true
  2988. },
  2989. {
  2990. name: "Macro+",
  2991. height: math.unit(1188, "feet")
  2992. },
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2997. {
  2998. front: {
  2999. height: math.unit(6, "feet"),
  3000. weight: math.unit(75, "kg"),
  3001. name: "Front",
  3002. image: {
  3003. source: "./media/characters/sefer/front.svg",
  3004. extra: 848 / 659,
  3005. bottom: 28.3 / 876.442
  3006. }
  3007. },
  3008. back: {
  3009. height: math.unit(6, "feet"),
  3010. weight: math.unit(75, "kg"),
  3011. name: "Back",
  3012. image: {
  3013. source: "./media/characters/sefer/back.svg",
  3014. extra: 864 / 695,
  3015. bottom: 10 / 871
  3016. }
  3017. },
  3018. frontDressed: {
  3019. height: math.unit(6, "feet"),
  3020. weight: math.unit(75, "kg"),
  3021. name: "Front (Dressed)",
  3022. image: {
  3023. source: "./media/characters/sefer/front-dressed.svg",
  3024. extra: 839 / 653,
  3025. bottom: 37.6 / 878
  3026. }
  3027. },
  3028. },
  3029. [
  3030. {
  3031. name: "Normal",
  3032. height: math.unit(6, "feet"),
  3033. default: true
  3034. },
  3035. ]
  3036. ))
  3037. characterMakers.push(() => makeCharacter(
  3038. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3039. {
  3040. body: {
  3041. height: math.unit(2.2428, "meter"),
  3042. weight: math.unit(124.738, "kg"),
  3043. name: "Body",
  3044. image: {
  3045. extra: 1225 / 1050,
  3046. source: "./media/characters/north/front.svg"
  3047. }
  3048. }
  3049. },
  3050. [
  3051. {
  3052. name: "Micro",
  3053. height: math.unit(4, "inches")
  3054. },
  3055. {
  3056. name: "Macro",
  3057. height: math.unit(63, "meters")
  3058. },
  3059. {
  3060. name: "Megamacro",
  3061. height: math.unit(101, "miles"),
  3062. default: true
  3063. }
  3064. ]
  3065. ))
  3066. characterMakers.push(() => makeCharacter(
  3067. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3068. {
  3069. angled: {
  3070. height: math.unit(4, "meter"),
  3071. weight: math.unit(150, "kg"),
  3072. name: "Angled",
  3073. image: {
  3074. source: "./media/characters/talan/angled-sfw.svg",
  3075. bottom: 29 / 3734
  3076. }
  3077. },
  3078. angledNsfw: {
  3079. height: math.unit(4, "meter"),
  3080. weight: math.unit(150, "kg"),
  3081. name: "Angled (NSFW)",
  3082. image: {
  3083. source: "./media/characters/talan/angled-nsfw.svg",
  3084. bottom: 29 / 3734
  3085. }
  3086. },
  3087. frontNsfw: {
  3088. height: math.unit(4, "meter"),
  3089. weight: math.unit(150, "kg"),
  3090. name: "Front (NSFW)",
  3091. image: {
  3092. source: "./media/characters/talan/front-nsfw.svg",
  3093. bottom: 29 / 3734
  3094. }
  3095. },
  3096. sideNsfw: {
  3097. height: math.unit(4, "meter"),
  3098. weight: math.unit(150, "kg"),
  3099. name: "Side (NSFW)",
  3100. image: {
  3101. source: "./media/characters/talan/side-nsfw.svg",
  3102. bottom: 29 / 3734
  3103. }
  3104. },
  3105. back: {
  3106. height: math.unit(4, "meter"),
  3107. weight: math.unit(150, "kg"),
  3108. name: "Back",
  3109. image: {
  3110. source: "./media/characters/talan/back.svg"
  3111. }
  3112. },
  3113. dickBottom: {
  3114. height: math.unit(0.621, "meter"),
  3115. name: "Dick (Bottom)",
  3116. image: {
  3117. source: "./media/characters/talan/dick-bottom.svg"
  3118. }
  3119. },
  3120. dickTop: {
  3121. height: math.unit(0.621, "meter"),
  3122. name: "Dick (Top)",
  3123. image: {
  3124. source: "./media/characters/talan/dick-top.svg"
  3125. }
  3126. },
  3127. dickSide: {
  3128. height: math.unit(0.305, "meter"),
  3129. name: "Dick (Side)",
  3130. image: {
  3131. source: "./media/characters/talan/dick-side.svg"
  3132. }
  3133. },
  3134. dickFront: {
  3135. height: math.unit(0.305, "meter"),
  3136. name: "Dick (Front)",
  3137. image: {
  3138. source: "./media/characters/talan/dick-front.svg"
  3139. }
  3140. },
  3141. },
  3142. [
  3143. {
  3144. name: "Normal",
  3145. height: math.unit(4, "meters")
  3146. },
  3147. {
  3148. name: "Macro",
  3149. height: math.unit(100, "meters")
  3150. },
  3151. {
  3152. name: "Megamacro",
  3153. height: math.unit(2, "miles"),
  3154. default: true
  3155. },
  3156. {
  3157. name: "Gigamacro",
  3158. height: math.unit(5000, "miles")
  3159. },
  3160. {
  3161. name: "Teramacro",
  3162. height: math.unit(100, "parsecs")
  3163. }
  3164. ]
  3165. ))
  3166. characterMakers.push(() => makeCharacter(
  3167. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3168. {
  3169. front: {
  3170. height: math.unit(2, "meter"),
  3171. weight: math.unit(90, "kg"),
  3172. name: "Front",
  3173. image: {
  3174. source: "./media/characters/gael'rathus/front.svg"
  3175. }
  3176. },
  3177. frontAlt: {
  3178. height: math.unit(2, "meter"),
  3179. weight: math.unit(90, "kg"),
  3180. name: "Front (alt)",
  3181. image: {
  3182. source: "./media/characters/gael'rathus/front-alt.svg"
  3183. }
  3184. },
  3185. frontAlt2: {
  3186. height: math.unit(2, "meter"),
  3187. weight: math.unit(90, "kg"),
  3188. name: "Front (alt 2)",
  3189. image: {
  3190. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3191. }
  3192. }
  3193. },
  3194. [
  3195. {
  3196. name: "Normal",
  3197. height: math.unit(9, "feet"),
  3198. default: true
  3199. },
  3200. {
  3201. name: "Large",
  3202. height: math.unit(25, "feet")
  3203. },
  3204. {
  3205. name: "Macro",
  3206. height: math.unit(0.25, "miles")
  3207. },
  3208. {
  3209. name: "Megamacro",
  3210. height: math.unit(10, "miles")
  3211. }
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3216. {
  3217. side: {
  3218. height: math.unit(2, "meter"),
  3219. weight: math.unit(140, "kg"),
  3220. name: "Side",
  3221. image: {
  3222. source: "./media/characters/sosha/side.svg",
  3223. bottom: 0.042
  3224. }
  3225. },
  3226. },
  3227. [
  3228. {
  3229. name: "Normal",
  3230. height: math.unit(12, "feet"),
  3231. default: true
  3232. }
  3233. ]
  3234. ))
  3235. characterMakers.push(() => makeCharacter(
  3236. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3237. {
  3238. side: {
  3239. height: math.unit(5 + 5 / 12, "feet"),
  3240. weight: math.unit(170, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/runnola/side.svg",
  3244. extra: 741 / 448,
  3245. bottom: 0.05
  3246. }
  3247. },
  3248. },
  3249. [
  3250. {
  3251. name: "Small",
  3252. height: math.unit(3, "feet")
  3253. },
  3254. {
  3255. name: "Normal",
  3256. height: math.unit(5 + 5 / 12, "feet"),
  3257. default: true
  3258. },
  3259. {
  3260. name: "Big",
  3261. height: math.unit(10, "feet")
  3262. },
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(50, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/kurribird/front.svg",
  3274. bottom: 0.015
  3275. }
  3276. },
  3277. frontAlt: {
  3278. height: math.unit(1.5, "meter"),
  3279. weight: math.unit(50, "kg"),
  3280. name: "Front (Alt)",
  3281. image: {
  3282. source: "./media/characters/kurribird/front-alt.svg",
  3283. extra: 1.45
  3284. }
  3285. },
  3286. },
  3287. [
  3288. {
  3289. name: "Normal",
  3290. height: math.unit(7, "feet")
  3291. },
  3292. {
  3293. name: "Big",
  3294. height: math.unit(12, "feet"),
  3295. default: true
  3296. },
  3297. {
  3298. name: "Macro",
  3299. height: math.unit(1500, "feet")
  3300. },
  3301. {
  3302. name: "Megamacro",
  3303. height: math.unit(2, "miles")
  3304. }
  3305. ]
  3306. ))
  3307. characterMakers.push(() => makeCharacter(
  3308. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3309. {
  3310. front: {
  3311. height: math.unit(2, "meter"),
  3312. weight: math.unit(80, "kg"),
  3313. name: "Front",
  3314. image: {
  3315. source: "./media/characters/elbial/front.svg",
  3316. extra: 1643 / 1556,
  3317. bottom: 60.2 / 1696
  3318. }
  3319. },
  3320. side: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(80, "kg"),
  3323. name: "Side",
  3324. image: {
  3325. source: "./media/characters/elbial/side.svg",
  3326. extra: 1630 / 1565,
  3327. bottom: 71.5 / 1697
  3328. }
  3329. },
  3330. back: {
  3331. height: math.unit(2, "meter"),
  3332. weight: math.unit(80, "kg"),
  3333. name: "Back",
  3334. image: {
  3335. source: "./media/characters/elbial/back.svg",
  3336. extra: 1668 / 1595,
  3337. bottom: 5.6 / 1672
  3338. }
  3339. },
  3340. frontDressed: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(80, "kg"),
  3343. name: "Front (Dressed)",
  3344. image: {
  3345. source: "./media/characters/elbial/front-dressed.svg",
  3346. extra: 1653 / 1584,
  3347. bottom: 57 / 1708
  3348. }
  3349. },
  3350. genitals: {
  3351. height: math.unit(2 / 3.367, "meter"),
  3352. name: "Genitals",
  3353. image: {
  3354. source: "./media/characters/elbial/genitals.svg"
  3355. }
  3356. },
  3357. },
  3358. [
  3359. {
  3360. name: "Large",
  3361. height: math.unit(100, "feet")
  3362. },
  3363. {
  3364. name: "Macro",
  3365. height: math.unit(500, "feet"),
  3366. default: true
  3367. },
  3368. {
  3369. name: "Megamacro",
  3370. height: math.unit(10, "miles")
  3371. },
  3372. {
  3373. name: "Gigamacro",
  3374. height: math.unit(25000, "miles")
  3375. },
  3376. {
  3377. name: "Full-Size",
  3378. height: math.unit(8000000, "gigaparsecs")
  3379. }
  3380. ]
  3381. ))
  3382. characterMakers.push(() => makeCharacter(
  3383. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3384. {
  3385. front: {
  3386. height: math.unit(2, "meter"),
  3387. weight: math.unit(60, "kg"),
  3388. name: "Front",
  3389. image: {
  3390. source: "./media/characters/noah/front.svg"
  3391. }
  3392. },
  3393. talons: {
  3394. height: math.unit(0.315, "meter"),
  3395. name: "Talons",
  3396. image: {
  3397. source: "./media/characters/noah/talons.svg"
  3398. }
  3399. }
  3400. },
  3401. [
  3402. {
  3403. name: "Large",
  3404. height: math.unit(50, "feet")
  3405. },
  3406. {
  3407. name: "Macro",
  3408. height: math.unit(750, "feet"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Megamacro",
  3413. height: math.unit(50, "miles")
  3414. },
  3415. {
  3416. name: "Gigamacro",
  3417. height: math.unit(100000, "miles")
  3418. },
  3419. {
  3420. name: "Full-Size",
  3421. height: math.unit(3000000000, "miles")
  3422. }
  3423. ]
  3424. ))
  3425. characterMakers.push(() => makeCharacter(
  3426. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3427. {
  3428. front: {
  3429. height: math.unit(2, "meter"),
  3430. weight: math.unit(80, "kg"),
  3431. name: "Front",
  3432. image: {
  3433. source: "./media/characters/natalya/front.svg"
  3434. }
  3435. },
  3436. back: {
  3437. height: math.unit(2, "meter"),
  3438. weight: math.unit(80, "kg"),
  3439. name: "Back",
  3440. image: {
  3441. source: "./media/characters/natalya/back.svg"
  3442. }
  3443. }
  3444. },
  3445. [
  3446. {
  3447. name: "Normal",
  3448. height: math.unit(150, "feet"),
  3449. default: true
  3450. },
  3451. {
  3452. name: "Megamacro",
  3453. height: math.unit(5, "miles")
  3454. },
  3455. {
  3456. name: "Full-Size",
  3457. height: math.unit(600, "kiloparsecs")
  3458. }
  3459. ]
  3460. ))
  3461. characterMakers.push(() => makeCharacter(
  3462. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3463. {
  3464. front: {
  3465. height: math.unit(2, "meter"),
  3466. weight: math.unit(50, "kg"),
  3467. name: "Front",
  3468. image: {
  3469. source: "./media/characters/erestrebah/front.svg",
  3470. extra: 208 / 193,
  3471. bottom: 0.055
  3472. }
  3473. },
  3474. back: {
  3475. height: math.unit(2, "meter"),
  3476. weight: math.unit(50, "kg"),
  3477. name: "Back",
  3478. image: {
  3479. source: "./media/characters/erestrebah/back.svg",
  3480. extra: 1.3
  3481. }
  3482. }
  3483. },
  3484. [
  3485. {
  3486. name: "Normal",
  3487. height: math.unit(10, "feet")
  3488. },
  3489. {
  3490. name: "Large",
  3491. height: math.unit(50, "feet"),
  3492. default: true
  3493. },
  3494. {
  3495. name: "Macro",
  3496. height: math.unit(300, "feet")
  3497. },
  3498. {
  3499. name: "Macro+",
  3500. height: math.unit(750, "feet")
  3501. },
  3502. {
  3503. name: "Megamacro",
  3504. height: math.unit(3, "miles")
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(2, "meter"),
  3513. weight: math.unit(80, "kg"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/jennifer/front.svg",
  3517. bottom: 0.11,
  3518. extra: 1.16
  3519. }
  3520. },
  3521. frontAlt: {
  3522. height: math.unit(2, "meter"),
  3523. weight: math.unit(80, "kg"),
  3524. name: "Front (Alt)",
  3525. image: {
  3526. source: "./media/characters/jennifer/front-alt.svg"
  3527. }
  3528. }
  3529. },
  3530. [
  3531. {
  3532. name: "Canon Height",
  3533. height: math.unit(120, "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Macro+",
  3538. height: math.unit(300, "feet")
  3539. },
  3540. {
  3541. name: "Megamacro",
  3542. height: math.unit(20000, "feet")
  3543. }
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(2, "meter"),
  3551. weight: math.unit(50, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/kalista/front.svg",
  3555. extra: 1947 / 1700,
  3556. bottom: 76.6 / 1412.98
  3557. }
  3558. },
  3559. back: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(50, "kg"),
  3562. name: "Back",
  3563. image: {
  3564. source: "./media/characters/kalista/back.svg",
  3565. extra: 1366 / 1156,
  3566. bottom: 33.9 / 1362.78
  3567. }
  3568. }
  3569. },
  3570. [
  3571. {
  3572. name: "Uncomfortably Small",
  3573. height: math.unit(10, "feet")
  3574. },
  3575. {
  3576. name: "Small",
  3577. height: math.unit(30, "feet")
  3578. },
  3579. {
  3580. name: "Macro",
  3581. height: math.unit(100, "feet"),
  3582. default: true
  3583. },
  3584. {
  3585. name: "Macro+",
  3586. height: math.unit(2000, "feet")
  3587. },
  3588. {
  3589. name: "True Form",
  3590. height: math.unit(8924, "miles")
  3591. }
  3592. ]
  3593. ))
  3594. characterMakers.push(() => makeCharacter(
  3595. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3596. {
  3597. front: {
  3598. height: math.unit(2, "meter"),
  3599. weight: math.unit(120, "kg"),
  3600. name: "Front",
  3601. image: {
  3602. source: "./media/characters/ggv/front.svg"
  3603. }
  3604. },
  3605. side: {
  3606. height: math.unit(2, "meter"),
  3607. weight: math.unit(120, "kg"),
  3608. name: "Side",
  3609. image: {
  3610. source: "./media/characters/ggv/side.svg"
  3611. }
  3612. }
  3613. },
  3614. [
  3615. {
  3616. name: "Extremely Puny",
  3617. height: math.unit(9 + 5 / 12, "feet")
  3618. },
  3619. {
  3620. name: "Horribly Small",
  3621. height: math.unit(47.7, "miles"),
  3622. default: true
  3623. },
  3624. {
  3625. name: "Reasonably Sized",
  3626. height: math.unit(25000, "parsecs")
  3627. },
  3628. {
  3629. name: "Slightly Uncompressed",
  3630. height: math.unit(7.77e31, "parsecs")
  3631. },
  3632. {
  3633. name: "Omniversal",
  3634. height: math.unit(1e300, "meters")
  3635. },
  3636. ]
  3637. ))
  3638. characterMakers.push(() => makeCharacter(
  3639. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3640. {
  3641. front: {
  3642. height: math.unit(2, "meter"),
  3643. weight: math.unit(75, "lb"),
  3644. name: "Front",
  3645. image: {
  3646. source: "./media/characters/napalm/front.svg"
  3647. }
  3648. },
  3649. back: {
  3650. height: math.unit(2, "meter"),
  3651. weight: math.unit(75, "lb"),
  3652. name: "Back",
  3653. image: {
  3654. source: "./media/characters/napalm/back.svg"
  3655. }
  3656. }
  3657. },
  3658. [
  3659. {
  3660. name: "Standard",
  3661. height: math.unit(55, "feet"),
  3662. default: true
  3663. }
  3664. ]
  3665. ))
  3666. characterMakers.push(() => makeCharacter(
  3667. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3668. {
  3669. front: {
  3670. height: math.unit(7 + 5 / 6, "feet"),
  3671. weight: math.unit(325, "lb"),
  3672. name: "Front",
  3673. image: {
  3674. source: "./media/characters/asana/front.svg",
  3675. extra: 1133 / 1060,
  3676. bottom: 15.2 / 1148.6
  3677. }
  3678. },
  3679. back: {
  3680. height: math.unit(7 + 5 / 6, "feet"),
  3681. weight: math.unit(325, "lb"),
  3682. name: "Back",
  3683. image: {
  3684. source: "./media/characters/asana/back.svg",
  3685. extra: 1114 / 1043,
  3686. bottom: 5 / 1120
  3687. }
  3688. },
  3689. dressedDark: {
  3690. height: math.unit(7 + 5 / 6, "feet"),
  3691. weight: math.unit(325, "lb"),
  3692. name: "Dressed (Dark)",
  3693. image: {
  3694. source: "./media/characters/asana/dressed-dark.svg",
  3695. extra: 1133 / 1060,
  3696. bottom: 15.2 / 1148.6
  3697. }
  3698. },
  3699. dressedLight: {
  3700. height: math.unit(7 + 5 / 6, "feet"),
  3701. weight: math.unit(325, "lb"),
  3702. name: "Dressed (Light)",
  3703. image: {
  3704. source: "./media/characters/asana/dressed-light.svg",
  3705. extra: 1133 / 1060,
  3706. bottom: 15.2 / 1148.6
  3707. }
  3708. },
  3709. },
  3710. [
  3711. {
  3712. name: "Standard",
  3713. height: math.unit(7 + 5 / 6, "feet"),
  3714. default: true
  3715. },
  3716. {
  3717. name: "Large",
  3718. height: math.unit(10, "meters")
  3719. },
  3720. {
  3721. name: "Macro",
  3722. height: math.unit(2500, "meters")
  3723. },
  3724. {
  3725. name: "Megamacro",
  3726. height: math.unit(5e6, "meters")
  3727. },
  3728. {
  3729. name: "Examacro",
  3730. height: math.unit(5e12, "lightyears")
  3731. },
  3732. {
  3733. name: "Max Size",
  3734. height: math.unit(1e31, "lightyears")
  3735. }
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3740. {
  3741. front: {
  3742. height: math.unit(2, "meter"),
  3743. weight: math.unit(60, "kg"),
  3744. name: "Front",
  3745. image: {
  3746. source: "./media/characters/ebony/front.svg",
  3747. bottom: 0.03,
  3748. extra: 1045 / 810 + 0.03
  3749. }
  3750. },
  3751. side: {
  3752. height: math.unit(2, "meter"),
  3753. weight: math.unit(60, "kg"),
  3754. name: "Side",
  3755. image: {
  3756. source: "./media/characters/ebony/side.svg",
  3757. bottom: 0.03,
  3758. extra: 1045 / 810 + 0.03
  3759. }
  3760. },
  3761. back: {
  3762. height: math.unit(2, "meter"),
  3763. weight: math.unit(60, "kg"),
  3764. name: "Back",
  3765. image: {
  3766. source: "./media/characters/ebony/back.svg",
  3767. bottom: 0.01,
  3768. extra: 1045 / 810 + 0.01
  3769. }
  3770. },
  3771. },
  3772. [
  3773. // TODO check why I did this lol
  3774. {
  3775. name: "Standard",
  3776. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3777. default: true
  3778. },
  3779. {
  3780. name: "Macro",
  3781. height: math.unit(200, "feet")
  3782. },
  3783. {
  3784. name: "Gigamacro",
  3785. height: math.unit(13000, "km")
  3786. }
  3787. ]
  3788. ))
  3789. characterMakers.push(() => makeCharacter(
  3790. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3791. {
  3792. front: {
  3793. height: math.unit(6, "feet"),
  3794. weight: math.unit(175, "lb"),
  3795. name: "Front",
  3796. image: {
  3797. source: "./media/characters/mountain/front.svg",
  3798. extra: 972 / 955,
  3799. bottom: 64 / 1036.6
  3800. }
  3801. },
  3802. back: {
  3803. height: math.unit(6, "feet"),
  3804. weight: math.unit(175, "lb"),
  3805. name: "Back",
  3806. image: {
  3807. source: "./media/characters/mountain/back.svg",
  3808. extra: 970 / 950,
  3809. bottom: 28.25 / 999
  3810. }
  3811. },
  3812. },
  3813. [
  3814. {
  3815. name: "Large",
  3816. height: math.unit(20, "meters")
  3817. },
  3818. {
  3819. name: "Macro",
  3820. height: math.unit(300, "meters")
  3821. },
  3822. {
  3823. name: "Gigamacro",
  3824. height: math.unit(10000, "km"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Examacro",
  3829. height: math.unit(10e9, "lightyears")
  3830. }
  3831. ]
  3832. ))
  3833. characterMakers.push(() => makeCharacter(
  3834. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3835. {
  3836. front: {
  3837. height: math.unit(8, "feet"),
  3838. weight: math.unit(500, "lb"),
  3839. name: "Front",
  3840. image: {
  3841. source: "./media/characters/rick/front.svg"
  3842. }
  3843. }
  3844. },
  3845. [
  3846. {
  3847. name: "Normal",
  3848. height: math.unit(8, "feet"),
  3849. default: true
  3850. },
  3851. {
  3852. name: "Macro",
  3853. height: math.unit(5, "km")
  3854. }
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(8, "feet"),
  3862. weight: math.unit(120, "lb"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/ona/front.svg"
  3866. }
  3867. },
  3868. frontAlt: {
  3869. height: math.unit(8, "feet"),
  3870. weight: math.unit(120, "lb"),
  3871. name: "Front (Alt)",
  3872. image: {
  3873. source: "./media/characters/ona/front-alt.svg"
  3874. }
  3875. },
  3876. back: {
  3877. height: math.unit(8, "feet"),
  3878. weight: math.unit(120, "lb"),
  3879. name: "Back",
  3880. image: {
  3881. source: "./media/characters/ona/back.svg"
  3882. }
  3883. },
  3884. foot: {
  3885. height: math.unit(1.1, "feet"),
  3886. name: "Foot",
  3887. image: {
  3888. source: "./media/characters/ona/foot.svg"
  3889. }
  3890. }
  3891. },
  3892. [
  3893. {
  3894. name: "Megamacro",
  3895. height: math.unit(70, "km"),
  3896. default: true
  3897. },
  3898. {
  3899. name: "Gigamacro",
  3900. height: math.unit(681818, "miles")
  3901. },
  3902. {
  3903. name: "Examacro",
  3904. height: math.unit(3800000, "lightyears")
  3905. },
  3906. ]
  3907. ))
  3908. characterMakers.push(() => makeCharacter(
  3909. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3910. {
  3911. front: {
  3912. height: math.unit(12, "feet"),
  3913. weight: math.unit(3000, "lb"),
  3914. name: "Front",
  3915. image: {
  3916. source: "./media/characters/mech/front.svg",
  3917. extra: 2900 / 2770,
  3918. bottom: 110 / 3010
  3919. }
  3920. },
  3921. back: {
  3922. height: math.unit(12, "feet"),
  3923. weight: math.unit(3000, "lb"),
  3924. name: "Back",
  3925. image: {
  3926. source: "./media/characters/mech/back.svg",
  3927. extra: 3011 / 2890,
  3928. bottom: 94 / 3105
  3929. }
  3930. },
  3931. maw: {
  3932. height: math.unit(3.07, "feet"),
  3933. name: "Maw",
  3934. image: {
  3935. source: "./media/characters/mech/maw.svg"
  3936. }
  3937. },
  3938. head: {
  3939. height: math.unit(2.82, "feet"),
  3940. name: "Head",
  3941. image: {
  3942. source: "./media/characters/mech/head.svg"
  3943. }
  3944. },
  3945. dick: {
  3946. height: math.unit(1.43, "feet"),
  3947. name: "Dick",
  3948. image: {
  3949. source: "./media/characters/mech/dick.svg"
  3950. }
  3951. },
  3952. },
  3953. [
  3954. {
  3955. name: "Normal",
  3956. height: math.unit(12, "feet")
  3957. },
  3958. {
  3959. name: "Macro",
  3960. height: math.unit(300, "feet"),
  3961. default: true
  3962. },
  3963. {
  3964. name: "Macro+",
  3965. height: math.unit(1500, "feet")
  3966. },
  3967. ]
  3968. ))
  3969. characterMakers.push(() => makeCharacter(
  3970. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3971. {
  3972. front: {
  3973. height: math.unit(1.3, "meter"),
  3974. weight: math.unit(30, "kg"),
  3975. name: "Front",
  3976. image: {
  3977. source: "./media/characters/gregory/front.svg",
  3978. }
  3979. }
  3980. },
  3981. [
  3982. {
  3983. name: "Normal",
  3984. height: math.unit(1.3, "meter"),
  3985. default: true
  3986. },
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(20, "meter")
  3990. }
  3991. ]
  3992. ))
  3993. characterMakers.push(() => makeCharacter(
  3994. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3995. {
  3996. front: {
  3997. height: math.unit(2.8, "meter"),
  3998. weight: math.unit(200, "kg"),
  3999. name: "Front",
  4000. image: {
  4001. source: "./media/characters/elory/front.svg",
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Normal",
  4008. height: math.unit(2.8, "meter"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(38, "meter")
  4014. }
  4015. ]
  4016. ))
  4017. characterMakers.push(() => makeCharacter(
  4018. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4019. {
  4020. front: {
  4021. height: math.unit(470, "feet"),
  4022. weight: math.unit(924, "tons"),
  4023. name: "Front",
  4024. image: {
  4025. source: "./media/characters/angelpatamon/front.svg",
  4026. }
  4027. }
  4028. },
  4029. [
  4030. {
  4031. name: "Normal",
  4032. height: math.unit(470, "feet"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Deity Size I",
  4037. height: math.unit(28651.2, "km")
  4038. },
  4039. {
  4040. name: "Deity Size II",
  4041. height: math.unit(171907.2, "km")
  4042. }
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4047. {
  4048. side: {
  4049. height: math.unit(7.2, "meter"),
  4050. weight: math.unit(8.2, "tons"),
  4051. name: "Side",
  4052. image: {
  4053. source: "./media/characters/cryae/side.svg",
  4054. extra: 3500 / 1500
  4055. }
  4056. }
  4057. },
  4058. [
  4059. {
  4060. name: "Normal",
  4061. height: math.unit(7.2, "meter"),
  4062. default: true
  4063. }
  4064. ]
  4065. ))
  4066. characterMakers.push(() => makeCharacter(
  4067. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4068. {
  4069. front: {
  4070. height: math.unit(6, "feet"),
  4071. weight: math.unit(175, "lb"),
  4072. name: "Front",
  4073. image: {
  4074. source: "./media/characters/xera/front.svg",
  4075. extra: 2377 / 1972,
  4076. bottom: 75.5 / 2452
  4077. }
  4078. },
  4079. side: {
  4080. height: math.unit(6, "feet"),
  4081. weight: math.unit(175, "lb"),
  4082. name: "Side",
  4083. image: {
  4084. source: "./media/characters/xera/side.svg",
  4085. extra: 2345 / 2019,
  4086. bottom: 39.7 / 2384
  4087. }
  4088. },
  4089. back: {
  4090. height: math.unit(6, "feet"),
  4091. weight: math.unit(175, "lb"),
  4092. name: "Back",
  4093. image: {
  4094. source: "./media/characters/xera/back.svg",
  4095. extra: 2095 / 1984,
  4096. bottom: 67 / 2166
  4097. }
  4098. },
  4099. },
  4100. [
  4101. {
  4102. name: "Small",
  4103. height: math.unit(10, "feet")
  4104. },
  4105. {
  4106. name: "Macro",
  4107. height: math.unit(500, "meters"),
  4108. default: true
  4109. },
  4110. {
  4111. name: "Macro+",
  4112. height: math.unit(10, "km")
  4113. },
  4114. {
  4115. name: "Gigamacro",
  4116. height: math.unit(25000, "km")
  4117. },
  4118. {
  4119. name: "Teramacro",
  4120. height: math.unit(3e6, "km")
  4121. }
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4126. {
  4127. front: {
  4128. height: math.unit(6, "feet"),
  4129. weight: math.unit(175, "lb"),
  4130. name: "Front",
  4131. image: {
  4132. source: "./media/characters/nebula/front.svg",
  4133. extra: 2566 / 2362,
  4134. bottom: 81 / 2644
  4135. }
  4136. }
  4137. },
  4138. [
  4139. {
  4140. name: "Small",
  4141. height: math.unit(4.5, "meters")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(1500, "meters"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Megamacro",
  4150. height: math.unit(150, "km")
  4151. },
  4152. {
  4153. name: "Gigamacro",
  4154. height: math.unit(27000, "km")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4160. {
  4161. front: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(225, "lb"),
  4164. name: "Front",
  4165. image: {
  4166. source: "./media/characters/abysgar/front.svg"
  4167. }
  4168. }
  4169. },
  4170. [
  4171. {
  4172. name: "Small",
  4173. height: math.unit(4.5, "meters")
  4174. },
  4175. {
  4176. name: "Macro",
  4177. height: math.unit(1250, "meters"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "Megamacro",
  4182. height: math.unit(125, "km")
  4183. },
  4184. {
  4185. name: "Gigamacro",
  4186. height: math.unit(26000, "km")
  4187. }
  4188. ]
  4189. ))
  4190. characterMakers.push(() => makeCharacter(
  4191. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4192. {
  4193. front: {
  4194. height: math.unit(6, "feet"),
  4195. weight: math.unit(180, "lb"),
  4196. name: "Front",
  4197. image: {
  4198. source: "./media/characters/yakuz/front.svg"
  4199. }
  4200. }
  4201. },
  4202. [
  4203. {
  4204. name: "Small",
  4205. height: math.unit(5, "meters")
  4206. },
  4207. {
  4208. name: "Macro",
  4209. height: math.unit(1500, "meters"),
  4210. default: true
  4211. },
  4212. {
  4213. name: "Megamacro",
  4214. height: math.unit(200, "km")
  4215. },
  4216. {
  4217. name: "Gigamacro",
  4218. height: math.unit(100000, "km")
  4219. }
  4220. ]
  4221. ))
  4222. characterMakers.push(() => makeCharacter(
  4223. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4224. {
  4225. front: {
  4226. height: math.unit(6, "feet"),
  4227. weight: math.unit(175, "lb"),
  4228. name: "Front",
  4229. image: {
  4230. source: "./media/characters/mirova/front.svg",
  4231. extra: 3334 / 3071,
  4232. bottom: 42 / 3375.6
  4233. }
  4234. }
  4235. },
  4236. [
  4237. {
  4238. name: "Small",
  4239. height: math.unit(5, "meters")
  4240. },
  4241. {
  4242. name: "Macro",
  4243. height: math.unit(900, "meters"),
  4244. default: true
  4245. },
  4246. {
  4247. name: "Megamacro",
  4248. height: math.unit(135, "km")
  4249. },
  4250. {
  4251. name: "Gigamacro",
  4252. height: math.unit(20000, "km")
  4253. }
  4254. ]
  4255. ))
  4256. characterMakers.push(() => makeCharacter(
  4257. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4258. {
  4259. side: {
  4260. height: math.unit(28.35, "feet"),
  4261. weight: math.unit(99.75, "tons"),
  4262. name: "Side",
  4263. image: {
  4264. source: "./media/characters/asana-mech/side.svg",
  4265. extra: 923 / 699,
  4266. bottom: 50 / 975
  4267. }
  4268. },
  4269. chaingun: {
  4270. height: math.unit(7, "feet"),
  4271. weight: math.unit(2400, "lb"),
  4272. name: "Chaingun",
  4273. image: {
  4274. source: "./media/characters/asana-mech/chaingun.svg"
  4275. }
  4276. },
  4277. laser: {
  4278. height: math.unit(7.12, "feet"),
  4279. weight: math.unit(2000, "lb"),
  4280. name: "Laser",
  4281. image: {
  4282. source: "./media/characters/asana-mech/laser.svg"
  4283. }
  4284. },
  4285. },
  4286. [
  4287. {
  4288. name: "Normal",
  4289. height: math.unit(28.35, "feet"),
  4290. default: true
  4291. },
  4292. {
  4293. name: "Macro",
  4294. height: math.unit(2500, "feet")
  4295. },
  4296. {
  4297. name: "Megamacro",
  4298. height: math.unit(25, "miles")
  4299. },
  4300. {
  4301. name: "Examacro",
  4302. height: math.unit(6e8, "lightyears")
  4303. },
  4304. ]
  4305. ))
  4306. characterMakers.push(() => makeCharacter(
  4307. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4308. {
  4309. front: {
  4310. height: math.unit(5, "meters"),
  4311. weight: math.unit(1000, "kg"),
  4312. name: "Front",
  4313. image: {
  4314. source: "./media/characters/asche/front.svg",
  4315. extra: 1258 / 1190,
  4316. bottom: 47 / 1305
  4317. }
  4318. },
  4319. frontUnderwear: {
  4320. height: math.unit(5, "meters"),
  4321. weight: math.unit(1000, "kg"),
  4322. name: "Front (Underwear)",
  4323. image: {
  4324. source: "./media/characters/asche/front-underwear.svg",
  4325. extra: 1258 / 1190,
  4326. bottom: 47 / 1305
  4327. }
  4328. },
  4329. frontDressed: {
  4330. height: math.unit(5, "meters"),
  4331. weight: math.unit(1000, "kg"),
  4332. name: "Front (Dressed)",
  4333. image: {
  4334. source: "./media/characters/asche/front-dressed.svg",
  4335. extra: 1258 / 1190,
  4336. bottom: 47 / 1305
  4337. }
  4338. },
  4339. frontArmor: {
  4340. height: math.unit(5, "meters"),
  4341. weight: math.unit(1000, "kg"),
  4342. name: "Front (Armored)",
  4343. image: {
  4344. source: "./media/characters/asche/front-armored.svg",
  4345. extra: 1374 / 1308,
  4346. bottom: 23 / 1397
  4347. }
  4348. },
  4349. mp724: {
  4350. height: math.unit(0.96, "meters"),
  4351. weight: math.unit(38, "kg"),
  4352. name: "H&K MP724",
  4353. image: {
  4354. source: "./media/characters/asche/h&k-mp724.svg"
  4355. }
  4356. },
  4357. side: {
  4358. height: math.unit(5, "meters"),
  4359. weight: math.unit(1000, "kg"),
  4360. name: "Side",
  4361. image: {
  4362. source: "./media/characters/asche/side.svg",
  4363. extra: 1717 / 1609,
  4364. bottom: 0.005
  4365. }
  4366. },
  4367. back: {
  4368. height: math.unit(5, "meters"),
  4369. weight: math.unit(1000, "kg"),
  4370. name: "Back",
  4371. image: {
  4372. source: "./media/characters/asche/back.svg",
  4373. extra: 1570 / 1501
  4374. }
  4375. },
  4376. },
  4377. [
  4378. {
  4379. name: "DEFCON 5",
  4380. height: math.unit(5, "meters")
  4381. },
  4382. {
  4383. name: "DEFCON 4",
  4384. height: math.unit(500, "meters"),
  4385. default: true
  4386. },
  4387. {
  4388. name: "DEFCON 3",
  4389. height: math.unit(5, "km")
  4390. },
  4391. {
  4392. name: "DEFCON 2",
  4393. height: math.unit(500, "km")
  4394. },
  4395. {
  4396. name: "DEFCON 1",
  4397. height: math.unit(500000, "km")
  4398. },
  4399. {
  4400. name: "DEFCON 0",
  4401. height: math.unit(3, "gigaparsecs")
  4402. },
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4407. {
  4408. front: {
  4409. height: math.unit(2, "meters"),
  4410. weight: math.unit(76, "kg"),
  4411. name: "Front",
  4412. image: {
  4413. source: "./media/characters/gale/front.svg"
  4414. }
  4415. },
  4416. frontAlt1: {
  4417. height: math.unit(2, "meters"),
  4418. weight: math.unit(76, "kg"),
  4419. name: "Front (Alt 1)",
  4420. image: {
  4421. source: "./media/characters/gale/front-alt-1.svg"
  4422. }
  4423. },
  4424. frontAlt2: {
  4425. height: math.unit(2, "meters"),
  4426. weight: math.unit(76, "kg"),
  4427. name: "Front (Alt 2)",
  4428. image: {
  4429. source: "./media/characters/gale/front-alt-2.svg"
  4430. }
  4431. },
  4432. },
  4433. [
  4434. {
  4435. name: "Normal",
  4436. height: math.unit(7, "feet")
  4437. },
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(150, "feet"),
  4441. default: true
  4442. },
  4443. {
  4444. name: "Macro+",
  4445. height: math.unit(300, "feet")
  4446. },
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4451. {
  4452. front: {
  4453. height: math.unit(2, "meters"),
  4454. weight: math.unit(76, "kg"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/draylen/front.svg"
  4458. }
  4459. }
  4460. },
  4461. [
  4462. {
  4463. name: "Macro",
  4464. height: math.unit(150, "feet"),
  4465. default: true
  4466. }
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4471. {
  4472. front: {
  4473. height: math.unit(7 + 9 / 12, "feet"),
  4474. weight: math.unit(379, "lbs"),
  4475. name: "Front",
  4476. image: {
  4477. source: "./media/characters/chez/front.svg"
  4478. }
  4479. },
  4480. side: {
  4481. height: math.unit(7 + 9 / 12, "feet"),
  4482. weight: math.unit(379, "lbs"),
  4483. name: "Side",
  4484. image: {
  4485. source: "./media/characters/chez/side.svg"
  4486. }
  4487. }
  4488. },
  4489. [
  4490. {
  4491. name: "Normal",
  4492. height: math.unit(7 + 9 / 12, "feet"),
  4493. default: true
  4494. },
  4495. {
  4496. name: "God King",
  4497. height: math.unit(9750000, "meters")
  4498. }
  4499. ]
  4500. ))
  4501. characterMakers.push(() => makeCharacter(
  4502. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4503. {
  4504. front: {
  4505. height: math.unit(6, "feet"),
  4506. weight: math.unit(275, "lbs"),
  4507. name: "Front",
  4508. image: {
  4509. source: "./media/characters/kaylum/front.svg",
  4510. bottom: 0.01,
  4511. extra: 1166 / 1031
  4512. }
  4513. },
  4514. frontWingless: {
  4515. height: math.unit(6, "feet"),
  4516. weight: math.unit(275, "lbs"),
  4517. name: "Front (Wingless)",
  4518. image: {
  4519. source: "./media/characters/kaylum/front-wingless.svg",
  4520. bottom: 0.01,
  4521. extra: 1117 / 1031
  4522. }
  4523. }
  4524. },
  4525. [
  4526. {
  4527. name: "Normal",
  4528. height: math.unit(3.05, "meters")
  4529. },
  4530. {
  4531. name: "Master",
  4532. height: math.unit(5.5, "meters")
  4533. },
  4534. {
  4535. name: "Rampage",
  4536. height: math.unit(19, "meters")
  4537. },
  4538. {
  4539. name: "Macro Lite",
  4540. height: math.unit(37, "meters")
  4541. },
  4542. {
  4543. name: "Hyper Predator",
  4544. height: math.unit(61, "meters")
  4545. },
  4546. {
  4547. name: "Macro",
  4548. height: math.unit(138, "meters"),
  4549. default: true
  4550. }
  4551. ]
  4552. ))
  4553. characterMakers.push(() => makeCharacter(
  4554. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4555. {
  4556. front: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(150, "lbs"),
  4559. name: "Front",
  4560. image: {
  4561. source: "./media/characters/geta/front.svg"
  4562. }
  4563. }
  4564. },
  4565. [
  4566. {
  4567. name: "Micro",
  4568. height: math.unit(3, "inches"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Normal",
  4573. height: math.unit(5 + 5 / 12, "feet")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(300, "lbs"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/tyrnn/front.svg"
  4586. }
  4587. }
  4588. },
  4589. [
  4590. {
  4591. name: "Main Height",
  4592. height: math.unit(355, "feet"),
  4593. default: true
  4594. },
  4595. {
  4596. name: "Fave. Height",
  4597. height: math.unit(2400, "feet")
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(300, "lbs"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/appledectomy/front.svg"
  4610. }
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Macro",
  4616. height: math.unit(2500, "feet")
  4617. },
  4618. {
  4619. name: "Megamacro",
  4620. height: math.unit(50, "miles"),
  4621. default: true
  4622. },
  4623. {
  4624. name: "Gigamacro",
  4625. height: math.unit(5000, "miles")
  4626. },
  4627. {
  4628. name: "Teramacro",
  4629. height: math.unit(250000, "miles")
  4630. },
  4631. ]
  4632. ))
  4633. characterMakers.push(() => makeCharacter(
  4634. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4635. {
  4636. front: {
  4637. height: math.unit(6, "feet"),
  4638. weight: math.unit(200, "lbs"),
  4639. name: "Front",
  4640. image: {
  4641. source: "./media/characters/vulpes/front.svg",
  4642. extra: 573 / 543,
  4643. bottom: 0.033
  4644. }
  4645. },
  4646. side: {
  4647. height: math.unit(6, "feet"),
  4648. weight: math.unit(200, "lbs"),
  4649. name: "Side",
  4650. image: {
  4651. source: "./media/characters/vulpes/side.svg",
  4652. extra: 577 / 549,
  4653. bottom: 11 / 588
  4654. }
  4655. },
  4656. back: {
  4657. height: math.unit(6, "feet"),
  4658. weight: math.unit(200, "lbs"),
  4659. name: "Back",
  4660. image: {
  4661. source: "./media/characters/vulpes/back.svg",
  4662. extra: 573 / 549,
  4663. bottom: 20 / 593
  4664. }
  4665. },
  4666. feet: {
  4667. height: math.unit(1.276, "feet"),
  4668. name: "Feet",
  4669. image: {
  4670. source: "./media/characters/vulpes/feet.svg"
  4671. }
  4672. },
  4673. maw: {
  4674. height: math.unit(1.18, "feet"),
  4675. name: "Maw",
  4676. image: {
  4677. source: "./media/characters/vulpes/maw.svg"
  4678. }
  4679. },
  4680. },
  4681. [
  4682. {
  4683. name: "Micro",
  4684. height: math.unit(2, "inches")
  4685. },
  4686. {
  4687. name: "Normal",
  4688. height: math.unit(6.3, "feet")
  4689. },
  4690. {
  4691. name: "Macro",
  4692. height: math.unit(850, "feet")
  4693. },
  4694. {
  4695. name: "Megamacro",
  4696. height: math.unit(7500, "feet"),
  4697. default: true
  4698. },
  4699. {
  4700. name: "Gigamacro",
  4701. height: math.unit(570000, "miles")
  4702. }
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4707. {
  4708. front: {
  4709. height: math.unit(6, "feet"),
  4710. weight: math.unit(210, "lbs"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/rain-fallen/front.svg"
  4714. }
  4715. },
  4716. side: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(210, "lbs"),
  4719. name: "Side",
  4720. image: {
  4721. source: "./media/characters/rain-fallen/side.svg"
  4722. }
  4723. },
  4724. back: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(210, "lbs"),
  4727. name: "Back",
  4728. image: {
  4729. source: "./media/characters/rain-fallen/back.svg"
  4730. }
  4731. },
  4732. feral: {
  4733. height: math.unit(9, "feet"),
  4734. weight: math.unit(700, "lbs"),
  4735. name: "Feral",
  4736. image: {
  4737. source: "./media/characters/rain-fallen/feral.svg"
  4738. }
  4739. },
  4740. },
  4741. [
  4742. {
  4743. name: "Meddling with Mortals",
  4744. height: math.unit(8 + 8/12, "feet")
  4745. },
  4746. {
  4747. name: "Normal",
  4748. height: math.unit(5, "meter")
  4749. },
  4750. {
  4751. name: "Macro",
  4752. height: math.unit(150, "meter"),
  4753. default: true
  4754. },
  4755. {
  4756. name: "Megamacro",
  4757. height: math.unit(278e6, "meter")
  4758. },
  4759. {
  4760. name: "Gigamacro",
  4761. height: math.unit(2e9, "meter")
  4762. },
  4763. {
  4764. name: "Teramacro",
  4765. height: math.unit(8e12, "meter")
  4766. },
  4767. {
  4768. name: "Devourer",
  4769. height: math.unit(14, "zettameters")
  4770. },
  4771. {
  4772. name: "Scarlet King",
  4773. height: math.unit(18, "yottameters")
  4774. },
  4775. {
  4776. name: "Void",
  4777. height: math.unit(1e88, "yottameters")
  4778. }
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4783. {
  4784. standing: {
  4785. height: math.unit(6, "feet"),
  4786. weight: math.unit(180, "lbs"),
  4787. name: "Standing",
  4788. image: {
  4789. source: "./media/characters/zaakira/standing.svg",
  4790. extra: 1599/1504,
  4791. bottom: 39/1638
  4792. }
  4793. },
  4794. laying: {
  4795. height: math.unit(3, "feet"),
  4796. weight: math.unit(180, "lbs"),
  4797. name: "Laying",
  4798. image: {
  4799. source: "./media/characters/zaakira/laying.svg"
  4800. }
  4801. },
  4802. },
  4803. [
  4804. {
  4805. name: "Normal",
  4806. height: math.unit(12, "feet")
  4807. },
  4808. {
  4809. name: "Macro",
  4810. height: math.unit(279, "feet"),
  4811. default: true
  4812. }
  4813. ]
  4814. ))
  4815. characterMakers.push(() => makeCharacter(
  4816. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4817. {
  4818. femSfw: {
  4819. height: math.unit(8, "feet"),
  4820. weight: math.unit(350, "lb"),
  4821. name: "Fem",
  4822. image: {
  4823. source: "./media/characters/sigvald/fem-sfw.svg",
  4824. extra: 182 / 164,
  4825. bottom: 8.7 / 190.5
  4826. }
  4827. },
  4828. femNsfw: {
  4829. height: math.unit(8, "feet"),
  4830. weight: math.unit(350, "lb"),
  4831. name: "Fem (NSFW)",
  4832. image: {
  4833. source: "./media/characters/sigvald/fem-nsfw.svg",
  4834. extra: 182 / 164,
  4835. bottom: 8.7 / 190.5
  4836. }
  4837. },
  4838. maleNsfw: {
  4839. height: math.unit(8, "feet"),
  4840. weight: math.unit(350, "lb"),
  4841. name: "Male (NSFW)",
  4842. image: {
  4843. source: "./media/characters/sigvald/male-nsfw.svg",
  4844. extra: 182 / 164,
  4845. bottom: 8.7 / 190.5
  4846. }
  4847. },
  4848. hermNsfw: {
  4849. height: math.unit(8, "feet"),
  4850. weight: math.unit(350, "lb"),
  4851. name: "Herm (NSFW)",
  4852. image: {
  4853. source: "./media/characters/sigvald/herm-nsfw.svg",
  4854. extra: 182 / 164,
  4855. bottom: 8.7 / 190.5
  4856. }
  4857. },
  4858. dick: {
  4859. height: math.unit(2.36, "feet"),
  4860. name: "Dick",
  4861. image: {
  4862. source: "./media/characters/sigvald/dick.svg"
  4863. }
  4864. },
  4865. eye: {
  4866. height: math.unit(0.31, "feet"),
  4867. name: "Eye",
  4868. image: {
  4869. source: "./media/characters/sigvald/eye.svg"
  4870. }
  4871. },
  4872. mouth: {
  4873. height: math.unit(0.92, "feet"),
  4874. name: "Mouth",
  4875. image: {
  4876. source: "./media/characters/sigvald/mouth.svg"
  4877. }
  4878. },
  4879. paws: {
  4880. height: math.unit(2.2, "feet"),
  4881. name: "Paws",
  4882. image: {
  4883. source: "./media/characters/sigvald/paws.svg"
  4884. }
  4885. }
  4886. },
  4887. [
  4888. {
  4889. name: "Normal",
  4890. height: math.unit(8, "feet")
  4891. },
  4892. {
  4893. name: "Large",
  4894. height: math.unit(12, "feet")
  4895. },
  4896. {
  4897. name: "Larger",
  4898. height: math.unit(20, "feet")
  4899. },
  4900. {
  4901. name: "Macro",
  4902. height: math.unit(150, "feet")
  4903. },
  4904. {
  4905. name: "Macro+",
  4906. height: math.unit(200, "feet"),
  4907. default: true
  4908. },
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4913. {
  4914. side: {
  4915. height: math.unit(12, "feet"),
  4916. weight: math.unit(2000, "kg"),
  4917. name: "Side",
  4918. image: {
  4919. source: "./media/characters/scott/side.svg",
  4920. extra: 754 / 724,
  4921. bottom: 0.069
  4922. }
  4923. },
  4924. upright: {
  4925. height: math.unit(12, "feet"),
  4926. weight: math.unit(2000, "kg"),
  4927. name: "Upright",
  4928. image: {
  4929. source: "./media/characters/scott/upright.svg",
  4930. extra: 3881 / 3722,
  4931. bottom: 0.05
  4932. }
  4933. },
  4934. },
  4935. [
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(12, "feet"),
  4939. default: true
  4940. },
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4945. {
  4946. side: {
  4947. height: math.unit(8, "meters"),
  4948. weight: math.unit(84755, "lbs"),
  4949. name: "Side",
  4950. image: {
  4951. source: "./media/characters/tobias/side.svg",
  4952. extra: 1474 / 1096,
  4953. bottom: 38.9 / 1513.1235
  4954. }
  4955. },
  4956. },
  4957. [
  4958. {
  4959. name: "Normal",
  4960. height: math.unit(8, "meters"),
  4961. default: true
  4962. },
  4963. ]
  4964. ))
  4965. characterMakers.push(() => makeCharacter(
  4966. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4967. {
  4968. front: {
  4969. height: math.unit(5.5, "feet"),
  4970. weight: math.unit(400, "lbs"),
  4971. name: "Front",
  4972. image: {
  4973. source: "./media/characters/kieran/front.svg",
  4974. extra: 2694 / 2364,
  4975. bottom: 217 / 2908
  4976. }
  4977. },
  4978. side: {
  4979. height: math.unit(5.5, "feet"),
  4980. weight: math.unit(400, "lbs"),
  4981. name: "Side",
  4982. image: {
  4983. source: "./media/characters/kieran/side.svg",
  4984. extra: 875 / 777,
  4985. bottom: 84.6 / 959
  4986. }
  4987. },
  4988. },
  4989. [
  4990. {
  4991. name: "Normal",
  4992. height: math.unit(5.5, "feet"),
  4993. default: true
  4994. },
  4995. ]
  4996. ))
  4997. characterMakers.push(() => makeCharacter(
  4998. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4999. {
  5000. side: {
  5001. height: math.unit(2, "meters"),
  5002. weight: math.unit(70, "kg"),
  5003. name: "Side",
  5004. image: {
  5005. source: "./media/characters/sanya/side.svg",
  5006. bottom: 0.02,
  5007. extra: 1.02
  5008. }
  5009. },
  5010. },
  5011. [
  5012. {
  5013. name: "Small",
  5014. height: math.unit(2, "meters")
  5015. },
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(3, "meters")
  5019. },
  5020. {
  5021. name: "Macro",
  5022. height: math.unit(16, "meters"),
  5023. default: true
  5024. },
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5029. {
  5030. front: {
  5031. height: math.unit(2, "meters"),
  5032. weight: math.unit(120, "kg"),
  5033. name: "Front",
  5034. image: {
  5035. source: "./media/characters/miranda/front.svg",
  5036. extra: 195 / 185,
  5037. bottom: 10.9 / 206.5
  5038. }
  5039. },
  5040. back: {
  5041. height: math.unit(2, "meters"),
  5042. weight: math.unit(120, "kg"),
  5043. name: "Back",
  5044. image: {
  5045. source: "./media/characters/miranda/back.svg",
  5046. extra: 201 / 193,
  5047. bottom: 2.3 / 203.7
  5048. }
  5049. },
  5050. },
  5051. [
  5052. {
  5053. name: "Normal",
  5054. height: math.unit(10, "feet"),
  5055. default: true
  5056. }
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "James", species: ["deer"], tags: ["anthro"] },
  5061. {
  5062. side: {
  5063. height: math.unit(2, "meters"),
  5064. weight: math.unit(100, "kg"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/james/front.svg",
  5068. extra: 10 / 8.5
  5069. }
  5070. },
  5071. },
  5072. [
  5073. {
  5074. name: "Normal",
  5075. height: math.unit(8.5, "feet"),
  5076. default: true
  5077. }
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5082. {
  5083. side: {
  5084. height: math.unit(9.5, "feet"),
  5085. weight: math.unit(2500, "lbs"),
  5086. name: "Side",
  5087. image: {
  5088. source: "./media/characters/heather/side.svg"
  5089. }
  5090. },
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(9.5, "feet"),
  5096. default: true
  5097. }
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5102. {
  5103. side: {
  5104. height: math.unit(6.5, "feet"),
  5105. weight: math.unit(400, "lbs"),
  5106. name: "Side",
  5107. image: {
  5108. source: "./media/characters/lukas/side.svg",
  5109. extra: 7.25 / 6.5
  5110. }
  5111. },
  5112. },
  5113. [
  5114. {
  5115. name: "Normal",
  5116. height: math.unit(6.5, "feet"),
  5117. default: true
  5118. }
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5123. {
  5124. side: {
  5125. height: math.unit(5, "feet"),
  5126. weight: math.unit(3000, "lbs"),
  5127. name: "Side",
  5128. image: {
  5129. source: "./media/characters/louise/side.svg"
  5130. }
  5131. },
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(5, "feet"),
  5137. default: true
  5138. }
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5143. {
  5144. side: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(150, "lbs"),
  5147. name: "Side",
  5148. image: {
  5149. source: "./media/characters/ramona/side.svg"
  5150. }
  5151. },
  5152. },
  5153. [
  5154. {
  5155. name: "Normal",
  5156. height: math.unit(5.3, "meters"),
  5157. default: true
  5158. },
  5159. {
  5160. name: "Macro",
  5161. height: math.unit(20, "stories")
  5162. },
  5163. {
  5164. name: "Macro+",
  5165. height: math.unit(50, "stories")
  5166. },
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5171. {
  5172. standing: {
  5173. height: math.unit(5.75, "feet"),
  5174. weight: math.unit(160, "lbs"),
  5175. name: "Standing",
  5176. image: {
  5177. source: "./media/characters/deerpuff/standing.svg",
  5178. extra: 682 / 624
  5179. }
  5180. },
  5181. sitting: {
  5182. height: math.unit(5.75 / 1.79, "feet"),
  5183. weight: math.unit(160, "lbs"),
  5184. name: "Sitting",
  5185. image: {
  5186. source: "./media/characters/deerpuff/sitting.svg",
  5187. bottom: 44 / 400,
  5188. extra: 1
  5189. }
  5190. },
  5191. taurLaying: {
  5192. height: math.unit(6, "feet"),
  5193. weight: math.unit(400, "lbs"),
  5194. name: "Taur (Laying)",
  5195. image: {
  5196. source: "./media/characters/deerpuff/taur-laying.svg"
  5197. }
  5198. },
  5199. },
  5200. [
  5201. {
  5202. name: "Puffball",
  5203. height: math.unit(6, "inches")
  5204. },
  5205. {
  5206. name: "Normalpuff",
  5207. height: math.unit(5.75, "feet")
  5208. },
  5209. {
  5210. name: "Macropuff",
  5211. height: math.unit(1500, "feet"),
  5212. default: true
  5213. },
  5214. {
  5215. name: "Megapuff",
  5216. height: math.unit(500, "miles")
  5217. },
  5218. {
  5219. name: "Gigapuff",
  5220. height: math.unit(250000, "miles")
  5221. },
  5222. {
  5223. name: "Omegapuff",
  5224. height: math.unit(1000, "lightyears")
  5225. },
  5226. ]
  5227. ))
  5228. characterMakers.push(() => makeCharacter(
  5229. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5230. {
  5231. stomping: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(170, "lbs"),
  5234. name: "Stomping",
  5235. image: {
  5236. source: "./media/characters/vivian/stomping.svg"
  5237. }
  5238. },
  5239. sitting: {
  5240. height: math.unit(6 / 1.75, "feet"),
  5241. weight: math.unit(170, "lbs"),
  5242. name: "Sitting",
  5243. image: {
  5244. source: "./media/characters/vivian/sitting.svg",
  5245. bottom: 1 / 6.4,
  5246. extra: 1,
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(7, "feet"),
  5254. default: true
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(10, "stories")
  5259. },
  5260. {
  5261. name: "Macro+",
  5262. height: math.unit(30, "stories")
  5263. },
  5264. {
  5265. name: "Megamacro",
  5266. height: math.unit(10, "miles")
  5267. },
  5268. {
  5269. name: "Megamacro+",
  5270. height: math.unit(2750000, "meters")
  5271. },
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(160, "lbs"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/prince/front.svg",
  5283. extra: 3400 / 3000
  5284. }
  5285. },
  5286. jumping: {
  5287. height: math.unit(6, "feet"),
  5288. weight: math.unit(160, "lbs"),
  5289. name: "Jumping",
  5290. image: {
  5291. source: "./media/characters/prince/jump.svg",
  5292. extra: 2555 / 2134
  5293. }
  5294. },
  5295. },
  5296. [
  5297. {
  5298. name: "Normal",
  5299. height: math.unit(7.75, "feet"),
  5300. default: true
  5301. },
  5302. {
  5303. name: "Not cute",
  5304. height: math.unit(17, "feet")
  5305. },
  5306. {
  5307. name: "I said NOT",
  5308. height: math.unit(91, "feet")
  5309. },
  5310. {
  5311. name: "Please stop",
  5312. height: math.unit(560, "feet")
  5313. },
  5314. {
  5315. name: "What have you done",
  5316. height: math.unit(2200, "feet")
  5317. },
  5318. {
  5319. name: "Deer God",
  5320. height: math.unit(3.6, "miles")
  5321. },
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5326. {
  5327. standing: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(300, "lbs"),
  5330. name: "Standing",
  5331. image: {
  5332. source: "./media/characters/psymon/standing.svg",
  5333. extra: 1888 / 1810,
  5334. bottom: 0.05
  5335. }
  5336. },
  5337. slithering: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(300, "lbs"),
  5340. name: "Slithering",
  5341. image: {
  5342. source: "./media/characters/psymon/slithering.svg",
  5343. extra: 1330 / 1224
  5344. }
  5345. },
  5346. slitheringAlt: {
  5347. height: math.unit(6, "feet"),
  5348. weight: math.unit(300, "lbs"),
  5349. name: "Slithering (Alt)",
  5350. image: {
  5351. source: "./media/characters/psymon/slithering-alt.svg",
  5352. extra: 1330 / 1224
  5353. }
  5354. },
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(11.25, "feet"),
  5360. default: true
  5361. },
  5362. {
  5363. name: "Large",
  5364. height: math.unit(27, "feet")
  5365. },
  5366. {
  5367. name: "Giant",
  5368. height: math.unit(87, "feet")
  5369. },
  5370. {
  5371. name: "Macro",
  5372. height: math.unit(365, "feet")
  5373. },
  5374. {
  5375. name: "Megamacro",
  5376. height: math.unit(3, "miles")
  5377. },
  5378. {
  5379. name: "World Serpent",
  5380. height: math.unit(8000, "miles")
  5381. },
  5382. ]
  5383. ))
  5384. characterMakers.push(() => makeCharacter(
  5385. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5386. {
  5387. front: {
  5388. height: math.unit(6, "feet"),
  5389. weight: math.unit(180, "lbs"),
  5390. name: "Front",
  5391. image: {
  5392. source: "./media/characters/daimos/front.svg",
  5393. extra: 4160 / 3897,
  5394. bottom: 0.021
  5395. }
  5396. }
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(8, "feet"),
  5402. default: true
  5403. },
  5404. {
  5405. name: "Big Dog",
  5406. height: math.unit(22, "feet")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(127, "feet")
  5411. },
  5412. {
  5413. name: "Megamacro",
  5414. height: math.unit(3600, "feet")
  5415. },
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5420. {
  5421. side: {
  5422. height: math.unit(6, "feet"),
  5423. weight: math.unit(180, "lbs"),
  5424. name: "Side",
  5425. image: {
  5426. source: "./media/characters/blake/side.svg",
  5427. extra: 1212 / 1120,
  5428. bottom: 0.05
  5429. }
  5430. },
  5431. crouched: {
  5432. height: math.unit(6 * 0.57, "feet"),
  5433. weight: math.unit(180, "lbs"),
  5434. name: "Crouched",
  5435. image: {
  5436. source: "./media/characters/blake/crouched.svg",
  5437. extra: 840 / 587,
  5438. bottom: 0.04
  5439. }
  5440. },
  5441. bent: {
  5442. height: math.unit(6 * 0.75, "feet"),
  5443. weight: math.unit(180, "lbs"),
  5444. name: "Bent",
  5445. image: {
  5446. source: "./media/characters/blake/bent.svg",
  5447. extra: 592 / 544,
  5448. bottom: 0.035
  5449. }
  5450. },
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(8 + 1 / 6, "feet"),
  5456. default: true
  5457. },
  5458. {
  5459. name: "Big Backside",
  5460. height: math.unit(37, "feet")
  5461. },
  5462. {
  5463. name: "Subway Shredder",
  5464. height: math.unit(72, "feet")
  5465. },
  5466. {
  5467. name: "City Carver",
  5468. height: math.unit(1675, "feet")
  5469. },
  5470. {
  5471. name: "Tectonic Tweaker",
  5472. height: math.unit(2300, "miles")
  5473. },
  5474. ]
  5475. ))
  5476. characterMakers.push(() => makeCharacter(
  5477. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5478. {
  5479. front: {
  5480. height: math.unit(6, "feet"),
  5481. weight: math.unit(180, "lbs"),
  5482. name: "Front",
  5483. image: {
  5484. source: "./media/characters/guisetto/front.svg",
  5485. extra: 856 / 817,
  5486. bottom: 0.06
  5487. }
  5488. },
  5489. airborne: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(180, "lbs"),
  5492. name: "Airborne",
  5493. image: {
  5494. source: "./media/characters/guisetto/airborne.svg",
  5495. extra: 584 / 525
  5496. }
  5497. },
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(10 + 11 / 12, "feet"),
  5503. default: true
  5504. },
  5505. {
  5506. name: "Large",
  5507. height: math.unit(35, "feet")
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(475, "feet")
  5512. },
  5513. ]
  5514. ))
  5515. characterMakers.push(() => makeCharacter(
  5516. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5517. {
  5518. front: {
  5519. height: math.unit(6, "feet"),
  5520. weight: math.unit(180, "lbs"),
  5521. name: "Front",
  5522. image: {
  5523. source: "./media/characters/luxor/front.svg",
  5524. extra: 2940 / 2152
  5525. }
  5526. },
  5527. back: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(180, "lbs"),
  5530. name: "Back",
  5531. image: {
  5532. source: "./media/characters/luxor/back.svg",
  5533. extra: 1083 / 960
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(5 + 5 / 6, "feet"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Lamp",
  5545. height: math.unit(50, "feet")
  5546. },
  5547. {
  5548. name: "Lämp",
  5549. height: math.unit(300, "feet")
  5550. },
  5551. {
  5552. name: "The sun is a lamp",
  5553. height: math.unit(250000, "miles")
  5554. },
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5559. {
  5560. front: {
  5561. height: math.unit(6, "feet"),
  5562. weight: math.unit(50, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/huoyan/front.svg"
  5566. }
  5567. },
  5568. side: {
  5569. height: math.unit(6, "feet"),
  5570. weight: math.unit(180, "lbs"),
  5571. name: "Side",
  5572. image: {
  5573. source: "./media/characters/huoyan/side.svg"
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Chef",
  5580. height: math.unit(9, "feet")
  5581. },
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(65, "feet"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Macro",
  5589. height: math.unit(780, "feet")
  5590. },
  5591. {
  5592. name: "Flaming Mountain",
  5593. height: math.unit(4.8, "miles")
  5594. },
  5595. {
  5596. name: "Celestial",
  5597. height: math.unit(765000, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(5 + 3 / 4, "feet"),
  5606. weight: math.unit(120, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/tails/front.svg"
  5610. }
  5611. }
  5612. },
  5613. [
  5614. {
  5615. name: "Normal",
  5616. height: math.unit(5 + 3 / 4, "feet"),
  5617. default: true
  5618. }
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(4, "feet"),
  5626. weight: math.unit(50, "lbs"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/rainy/front.svg"
  5630. }
  5631. }
  5632. },
  5633. [
  5634. {
  5635. name: "Macro",
  5636. height: math.unit(800, "feet"),
  5637. default: true
  5638. }
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5643. {
  5644. front: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(150, "lbs"),
  5647. name: "Front",
  5648. image: {
  5649. source: "./media/characters/rainier/front.svg"
  5650. }
  5651. }
  5652. },
  5653. [
  5654. {
  5655. name: "Micro",
  5656. height: math.unit(2, "mm"),
  5657. default: true
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(8 + 4/12, "feet"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/andy-renard/front.svg",
  5669. extra: 1839/1726,
  5670. bottom: 134/1973
  5671. }
  5672. },
  5673. back: {
  5674. height: math.unit(8 + 4/12, "feet"),
  5675. name: "Back",
  5676. image: {
  5677. source: "./media/characters/andy-renard/back.svg",
  5678. extra: 1838/1710,
  5679. bottom: 105/1943
  5680. }
  5681. },
  5682. },
  5683. [
  5684. {
  5685. name: "Tall",
  5686. height: math.unit(8 + 4/12, "feet")
  5687. },
  5688. {
  5689. name: "Mini Macro",
  5690. height: math.unit(15, "feet"),
  5691. default: true
  5692. },
  5693. {
  5694. name: "Macro",
  5695. height: math.unit(100, "feet")
  5696. },
  5697. {
  5698. name: "Mega Macro",
  5699. height: math.unit(1000, "feet")
  5700. },
  5701. {
  5702. name: "Giga Macro",
  5703. height: math.unit(10, "miles")
  5704. },
  5705. {
  5706. name: "God Macro",
  5707. height: math.unit(1, "multiverse")
  5708. },
  5709. ]
  5710. ))
  5711. characterMakers.push(() => makeCharacter(
  5712. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5713. {
  5714. front: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(210, "lbs"),
  5717. name: "Front",
  5718. image: {
  5719. source: "./media/characters/cimmaron/front-sfw.svg",
  5720. extra: 701 / 676,
  5721. bottom: 0.046
  5722. }
  5723. },
  5724. back: {
  5725. height: math.unit(6, "feet"),
  5726. weight: math.unit(210, "lbs"),
  5727. name: "Back",
  5728. image: {
  5729. source: "./media/characters/cimmaron/back-sfw.svg",
  5730. extra: 701 / 676,
  5731. bottom: 0.046
  5732. }
  5733. },
  5734. frontNsfw: {
  5735. height: math.unit(6, "feet"),
  5736. weight: math.unit(210, "lbs"),
  5737. name: "Front (NSFW)",
  5738. image: {
  5739. source: "./media/characters/cimmaron/front-nsfw.svg",
  5740. extra: 701 / 676,
  5741. bottom: 0.046
  5742. }
  5743. },
  5744. backNsfw: {
  5745. height: math.unit(6, "feet"),
  5746. weight: math.unit(210, "lbs"),
  5747. name: "Back (NSFW)",
  5748. image: {
  5749. source: "./media/characters/cimmaron/back-nsfw.svg",
  5750. extra: 701 / 676,
  5751. bottom: 0.046
  5752. }
  5753. },
  5754. dick: {
  5755. height: math.unit(1.714, "feet"),
  5756. name: "Dick",
  5757. image: {
  5758. source: "./media/characters/cimmaron/dick.svg"
  5759. }
  5760. },
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(6, "feet"),
  5766. default: true
  5767. },
  5768. {
  5769. name: "Macro Mayor",
  5770. height: math.unit(350, "meters")
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5776. {
  5777. front: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(200, "lbs"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/akari/front.svg",
  5783. extra: 962 / 901,
  5784. bottom: 0.04
  5785. }
  5786. }
  5787. },
  5788. [
  5789. {
  5790. name: "Micro",
  5791. height: math.unit(5, "inches"),
  5792. default: true
  5793. },
  5794. {
  5795. name: "Normal",
  5796. height: math.unit(7, "feet")
  5797. },
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5802. {
  5803. front: {
  5804. height: math.unit(6, "feet"),
  5805. weight: math.unit(140, "lbs"),
  5806. name: "Front",
  5807. image: {
  5808. source: "./media/characters/cynosura/front.svg",
  5809. extra: 896 / 847
  5810. }
  5811. },
  5812. back: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(140, "lbs"),
  5815. name: "Back",
  5816. image: {
  5817. source: "./media/characters/cynosura/back.svg",
  5818. extra: 1365 / 1250
  5819. }
  5820. },
  5821. },
  5822. [
  5823. {
  5824. name: "Micro",
  5825. height: math.unit(4, "inches")
  5826. },
  5827. {
  5828. name: "Normal",
  5829. height: math.unit(5.75, "feet"),
  5830. default: true
  5831. },
  5832. {
  5833. name: "Tall",
  5834. height: math.unit(10, "feet")
  5835. },
  5836. {
  5837. name: "Big",
  5838. height: math.unit(20, "feet")
  5839. },
  5840. {
  5841. name: "Macro",
  5842. height: math.unit(50, "feet")
  5843. },
  5844. ]
  5845. ))
  5846. characterMakers.push(() => makeCharacter(
  5847. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5848. {
  5849. front: {
  5850. height: math.unit(13 + 2/12, "feet"),
  5851. weight: math.unit(800, "kg"),
  5852. name: "Front",
  5853. image: {
  5854. source: "./media/characters/gin/front.svg",
  5855. extra: 1312/1191,
  5856. bottom: 45/1357
  5857. }
  5858. },
  5859. mouth: {
  5860. height: math.unit(2.39 * 1.8, "feet"),
  5861. name: "Mouth",
  5862. image: {
  5863. source: "./media/characters/gin/mouth.svg"
  5864. }
  5865. },
  5866. hand: {
  5867. height: math.unit(1.57 * 2.19, "feet"),
  5868. name: "Hand",
  5869. image: {
  5870. source: "./media/characters/gin/hand.svg"
  5871. }
  5872. },
  5873. foot: {
  5874. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5875. name: "Foot",
  5876. image: {
  5877. source: "./media/characters/gin/foot.svg"
  5878. }
  5879. },
  5880. sole: {
  5881. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5882. name: "Sole",
  5883. image: {
  5884. source: "./media/characters/gin/sole.svg"
  5885. }
  5886. },
  5887. },
  5888. [
  5889. {
  5890. name: "Very Small",
  5891. height: math.unit(13 + 2 / 12, "feet")
  5892. },
  5893. {
  5894. name: "Micro",
  5895. height: math.unit(600, "miles")
  5896. },
  5897. {
  5898. name: "Regular",
  5899. height: math.unit(20, "earths"),
  5900. default: true
  5901. },
  5902. {
  5903. name: "Macro",
  5904. height: math.unit(2.2, "solarradii")
  5905. },
  5906. {
  5907. name: "Teramacro",
  5908. height: math.unit(1.2, "galaxies")
  5909. },
  5910. {
  5911. name: "Omegamacro",
  5912. height: math.unit(200, "universes")
  5913. },
  5914. ]
  5915. ))
  5916. characterMakers.push(() => makeCharacter(
  5917. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5918. {
  5919. front: {
  5920. height: math.unit(6 + 1 / 6, "feet"),
  5921. weight: math.unit(178, "lbs"),
  5922. name: "Front",
  5923. image: {
  5924. source: "./media/characters/guy/front.svg"
  5925. }
  5926. }
  5927. },
  5928. [
  5929. {
  5930. name: "Normal",
  5931. height: math.unit(6 + 1 / 6, "feet"),
  5932. default: true
  5933. },
  5934. {
  5935. name: "Large",
  5936. height: math.unit(25 + 7 / 12, "feet")
  5937. },
  5938. {
  5939. name: "Macro",
  5940. height: math.unit(60 + 9 / 12, "feet")
  5941. },
  5942. {
  5943. name: "Macro+",
  5944. height: math.unit(246, "feet")
  5945. },
  5946. {
  5947. name: "Macro++",
  5948. height: math.unit(878, "feet")
  5949. }
  5950. ]
  5951. ))
  5952. characterMakers.push(() => makeCharacter(
  5953. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5954. {
  5955. front: {
  5956. height: math.unit(9, "feet"),
  5957. weight: math.unit(800, "lbs"),
  5958. name: "Front",
  5959. image: {
  5960. source: "./media/characters/tiberius/front.svg",
  5961. extra: 2295 / 2071
  5962. }
  5963. },
  5964. back: {
  5965. height: math.unit(9, "feet"),
  5966. weight: math.unit(800, "lbs"),
  5967. name: "Back",
  5968. image: {
  5969. source: "./media/characters/tiberius/back.svg",
  5970. extra: 2373 / 2160
  5971. }
  5972. },
  5973. },
  5974. [
  5975. {
  5976. name: "Normal",
  5977. height: math.unit(9, "feet"),
  5978. default: true
  5979. }
  5980. ]
  5981. ))
  5982. characterMakers.push(() => makeCharacter(
  5983. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5984. {
  5985. front: {
  5986. height: math.unit(6, "feet"),
  5987. weight: math.unit(600, "lbs"),
  5988. name: "Front",
  5989. image: {
  5990. source: "./media/characters/surgo/front.svg",
  5991. extra: 3591 / 2227
  5992. }
  5993. },
  5994. back: {
  5995. height: math.unit(6, "feet"),
  5996. weight: math.unit(600, "lbs"),
  5997. name: "Back",
  5998. image: {
  5999. source: "./media/characters/surgo/back.svg",
  6000. extra: 3557 / 2228
  6001. }
  6002. },
  6003. laying: {
  6004. height: math.unit(6 * 0.85, "feet"),
  6005. weight: math.unit(600, "lbs"),
  6006. name: "Laying",
  6007. image: {
  6008. source: "./media/characters/surgo/laying.svg"
  6009. }
  6010. },
  6011. },
  6012. [
  6013. {
  6014. name: "Normal",
  6015. height: math.unit(6, "feet"),
  6016. default: true
  6017. }
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6022. {
  6023. side: {
  6024. height: math.unit(6, "feet"),
  6025. weight: math.unit(150, "lbs"),
  6026. name: "Side",
  6027. image: {
  6028. source: "./media/characters/cibus/side.svg",
  6029. extra: 800 / 400
  6030. }
  6031. },
  6032. },
  6033. [
  6034. {
  6035. name: "Normal",
  6036. height: math.unit(6, "feet"),
  6037. default: true
  6038. }
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6043. {
  6044. front: {
  6045. height: math.unit(6, "feet"),
  6046. weight: math.unit(240, "lbs"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/nibbles/front.svg"
  6050. }
  6051. },
  6052. side: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(240, "lbs"),
  6055. name: "Side",
  6056. image: {
  6057. source: "./media/characters/nibbles/side.svg"
  6058. }
  6059. },
  6060. },
  6061. [
  6062. {
  6063. name: "Normal",
  6064. height: math.unit(9, "feet"),
  6065. default: true
  6066. }
  6067. ]
  6068. ))
  6069. characterMakers.push(() => makeCharacter(
  6070. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6071. {
  6072. side: {
  6073. height: math.unit(5 + 1 / 6, "feet"),
  6074. weight: math.unit(130, "lbs"),
  6075. name: "Side",
  6076. image: {
  6077. source: "./media/characters/rikky/side.svg",
  6078. extra: 851 / 801
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(5 + 1 / 6, "feet")
  6086. },
  6087. {
  6088. name: "Macro",
  6089. height: math.unit(152, "feet"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Megamacro",
  6094. height: math.unit(7, "miles")
  6095. }
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6100. {
  6101. side: {
  6102. height: math.unit(370, "cm"),
  6103. weight: math.unit(350, "lbs"),
  6104. name: "Side",
  6105. image: {
  6106. source: "./media/characters/malfressa/side.svg"
  6107. }
  6108. },
  6109. walking: {
  6110. height: math.unit(370, "cm"),
  6111. weight: math.unit(350, "lbs"),
  6112. name: "Walking",
  6113. image: {
  6114. source: "./media/characters/malfressa/walking.svg"
  6115. }
  6116. },
  6117. feral: {
  6118. height: math.unit(2500, "cm"),
  6119. weight: math.unit(100000, "lbs"),
  6120. name: "Feral",
  6121. image: {
  6122. source: "./media/characters/malfressa/feral.svg",
  6123. extra: 2108 / 837,
  6124. bottom: 0.02
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(370, "cm")
  6132. },
  6133. {
  6134. name: "Macro",
  6135. height: math.unit(300, "meters"),
  6136. default: true
  6137. }
  6138. ]
  6139. ))
  6140. characterMakers.push(() => makeCharacter(
  6141. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6142. {
  6143. front: {
  6144. height: math.unit(6, "feet"),
  6145. weight: math.unit(60, "kg"),
  6146. name: "Front",
  6147. image: {
  6148. source: "./media/characters/jaro/front.svg"
  6149. }
  6150. },
  6151. back: {
  6152. height: math.unit(6, "feet"),
  6153. weight: math.unit(60, "kg"),
  6154. name: "Back",
  6155. image: {
  6156. source: "./media/characters/jaro/back.svg"
  6157. }
  6158. },
  6159. },
  6160. [
  6161. {
  6162. name: "Micro",
  6163. height: math.unit(7, "inches")
  6164. },
  6165. {
  6166. name: "Normal",
  6167. height: math.unit(5.5, "feet"),
  6168. default: true
  6169. },
  6170. {
  6171. name: "Minimacro",
  6172. height: math.unit(20, "feet")
  6173. },
  6174. {
  6175. name: "Macro",
  6176. height: math.unit(200, "meters")
  6177. }
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(6, "feet"),
  6185. weight: math.unit(195, "lb"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/rogue/front.svg"
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Macro",
  6195. height: math.unit(90, "feet"),
  6196. default: true
  6197. },
  6198. ]
  6199. ))
  6200. characterMakers.push(() => makeCharacter(
  6201. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6202. {
  6203. front: {
  6204. height: math.unit(5 + 8 / 12, "feet"),
  6205. weight: math.unit(140, "lb"),
  6206. name: "Front",
  6207. image: {
  6208. source: "./media/characters/piper/front.svg",
  6209. extra: 3948/3655,
  6210. bottom: 0/3948
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Micro",
  6217. height: math.unit(2, "inches")
  6218. },
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(5 + 8 / 12, "feet")
  6222. },
  6223. {
  6224. name: "Macro",
  6225. height: math.unit(250, "feet"),
  6226. default: true
  6227. },
  6228. {
  6229. name: "Megamacro",
  6230. height: math.unit(7, "miles")
  6231. },
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6236. {
  6237. front: {
  6238. height: math.unit(6, "feet"),
  6239. weight: math.unit(220, "lb"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/gemini/front.svg"
  6243. }
  6244. },
  6245. back: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(220, "lb"),
  6248. name: "Back",
  6249. image: {
  6250. source: "./media/characters/gemini/back.svg"
  6251. }
  6252. },
  6253. kneeling: {
  6254. height: math.unit(6 / 1.5, "feet"),
  6255. weight: math.unit(220, "lb"),
  6256. name: "Kneeling",
  6257. image: {
  6258. source: "./media/characters/gemini/kneeling.svg",
  6259. bottom: 0.02
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Macro",
  6266. height: math.unit(300, "meters"),
  6267. default: true
  6268. },
  6269. {
  6270. name: "Megamacro",
  6271. height: math.unit(6900, "meters")
  6272. },
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6277. {
  6278. anthro: {
  6279. height: math.unit(2.35, "meters"),
  6280. weight: math.unit(73, "kg"),
  6281. name: "Anthro",
  6282. image: {
  6283. source: "./media/characters/alicia/anthro.svg",
  6284. extra: 2571 / 2385,
  6285. bottom: 75 / 2648
  6286. }
  6287. },
  6288. paw: {
  6289. height: math.unit(1.32, "feet"),
  6290. name: "Paw",
  6291. image: {
  6292. source: "./media/characters/alicia/paw.svg"
  6293. }
  6294. },
  6295. feral: {
  6296. height: math.unit(1.69, "meters"),
  6297. weight: math.unit(73, "kg"),
  6298. name: "Feral",
  6299. image: {
  6300. source: "./media/characters/alicia/feral.svg",
  6301. extra: 2123 / 1715,
  6302. bottom: 222 / 2349
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(2.35, "meters")
  6310. },
  6311. {
  6312. name: "Macro",
  6313. height: math.unit(60, "meters"),
  6314. default: true
  6315. },
  6316. {
  6317. name: "Megamacro",
  6318. height: math.unit(10000, "kilometers")
  6319. },
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(7, "feet"),
  6327. weight: math.unit(250, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/archy/front.svg"
  6331. }
  6332. }
  6333. },
  6334. [
  6335. {
  6336. name: "Micro",
  6337. height: math.unit(1, "inch")
  6338. },
  6339. {
  6340. name: "Shorty",
  6341. height: math.unit(5, "feet")
  6342. },
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(7, "feet")
  6346. },
  6347. {
  6348. name: "Macro",
  6349. height: math.unit(600, "meters"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Megamacro",
  6354. height: math.unit(1, "mile")
  6355. },
  6356. ]
  6357. ))
  6358. characterMakers.push(() => makeCharacter(
  6359. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6360. {
  6361. front: {
  6362. height: math.unit(1.65, "meters"),
  6363. weight: math.unit(74, "kg"),
  6364. name: "Front",
  6365. image: {
  6366. source: "./media/characters/berri/front.svg",
  6367. extra: 857 / 837,
  6368. bottom: 18 / 877
  6369. }
  6370. },
  6371. bum: {
  6372. height: math.unit(1.46, "feet"),
  6373. name: "Bum",
  6374. image: {
  6375. source: "./media/characters/berri/bum.svg"
  6376. }
  6377. },
  6378. mouth: {
  6379. height: math.unit(0.44, "feet"),
  6380. name: "Mouth",
  6381. image: {
  6382. source: "./media/characters/berri/mouth.svg"
  6383. }
  6384. },
  6385. paw: {
  6386. height: math.unit(0.826, "feet"),
  6387. name: "Paw",
  6388. image: {
  6389. source: "./media/characters/berri/paw.svg"
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(1.65, "meters")
  6397. },
  6398. {
  6399. name: "Macro",
  6400. height: math.unit(60, "m"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "Megamacro",
  6405. height: math.unit(9.213, "km")
  6406. },
  6407. {
  6408. name: "Planet Eater",
  6409. height: math.unit(489, "megameters")
  6410. },
  6411. {
  6412. name: "Teramacro",
  6413. height: math.unit(2471635000000, "meters")
  6414. },
  6415. {
  6416. name: "Examacro",
  6417. height: math.unit(8.0624e+26, "meters")
  6418. }
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6423. {
  6424. front: {
  6425. height: math.unit(1.72, "meters"),
  6426. weight: math.unit(68, "kg"),
  6427. name: "Front",
  6428. image: {
  6429. source: "./media/characters/lexi/front.svg"
  6430. }
  6431. }
  6432. },
  6433. [
  6434. {
  6435. name: "Very Smol",
  6436. height: math.unit(10, "mm")
  6437. },
  6438. {
  6439. name: "Micro",
  6440. height: math.unit(6.8, "cm"),
  6441. default: true
  6442. },
  6443. {
  6444. name: "Normal",
  6445. height: math.unit(1.72, "m")
  6446. }
  6447. ]
  6448. ))
  6449. characterMakers.push(() => makeCharacter(
  6450. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6451. {
  6452. front: {
  6453. height: math.unit(1.69, "meters"),
  6454. weight: math.unit(68, "kg"),
  6455. name: "Front",
  6456. image: {
  6457. source: "./media/characters/martin/front.svg",
  6458. extra: 596 / 581
  6459. }
  6460. }
  6461. },
  6462. [
  6463. {
  6464. name: "Micro",
  6465. height: math.unit(6.85, "cm"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(1.69, "m")
  6471. }
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(1.69, "meters"),
  6479. weight: math.unit(68, "kg"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/juno/front.svg"
  6483. }
  6484. }
  6485. },
  6486. [
  6487. {
  6488. name: "Micro",
  6489. height: math.unit(7, "cm")
  6490. },
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(1.89, "m")
  6494. },
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(353, "meters"),
  6498. default: true
  6499. }
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(1.93, "meters"),
  6507. weight: math.unit(83, "kg"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/samantha/front.svg"
  6511. }
  6512. },
  6513. frontClothed: {
  6514. height: math.unit(1.93, "meters"),
  6515. weight: math.unit(83, "kg"),
  6516. name: "Front (Clothed)",
  6517. image: {
  6518. source: "./media/characters/samantha/front-clothed.svg"
  6519. }
  6520. },
  6521. back: {
  6522. height: math.unit(1.93, "meters"),
  6523. weight: math.unit(83, "kg"),
  6524. name: "Back",
  6525. image: {
  6526. source: "./media/characters/samantha/back.svg"
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(1.93, "m")
  6534. },
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(74, "meters"),
  6538. default: true
  6539. },
  6540. {
  6541. name: "Macro+",
  6542. height: math.unit(223, "meters"),
  6543. },
  6544. {
  6545. name: "Megamacro",
  6546. height: math.unit(8381, "meters"),
  6547. },
  6548. {
  6549. name: "Megamacro+",
  6550. height: math.unit(12000, "kilometers")
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6556. {
  6557. front: {
  6558. height: math.unit(1.92, "meters"),
  6559. weight: math.unit(80, "kg"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/dr-clay/front.svg"
  6563. }
  6564. },
  6565. frontClothed: {
  6566. height: math.unit(1.92, "meters"),
  6567. weight: math.unit(80, "kg"),
  6568. name: "Front (Clothed)",
  6569. image: {
  6570. source: "./media/characters/dr-clay/front-clothed.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(1.92, "m")
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(214, "meters"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Macro+",
  6586. height: math.unit(12.237, "meters"),
  6587. },
  6588. {
  6589. name: "Megamacro",
  6590. height: math.unit(557, "megameters"),
  6591. },
  6592. {
  6593. name: "Unimaginable",
  6594. height: math.unit(120e9, "lightyears")
  6595. },
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(2, "meters"),
  6603. weight: math.unit(80, "kg"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6607. }
  6608. }
  6609. },
  6610. [
  6611. {
  6612. name: "Teramacro",
  6613. height: math.unit(500000, "lightyears"),
  6614. default: true
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6620. {
  6621. crux: {
  6622. height: math.unit(2, "meters"),
  6623. weight: math.unit(150, "kg"),
  6624. name: "Crux",
  6625. image: {
  6626. source: "./media/characters/vemus/crux.svg",
  6627. extra: 1074/936,
  6628. bottom: 23/1097
  6629. }
  6630. },
  6631. skunkTanuki: {
  6632. height: math.unit(2, "meters"),
  6633. weight: math.unit(150, "kg"),
  6634. name: "Skunk-Tanuki",
  6635. image: {
  6636. source: "./media/characters/vemus/skunk-tanuki.svg",
  6637. extra: 926/893,
  6638. bottom: 20/946
  6639. }
  6640. },
  6641. },
  6642. [
  6643. {
  6644. name: "Normal",
  6645. height: math.unit(3.75, "meters"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Big",
  6650. height: math.unit(8, "meters")
  6651. },
  6652. {
  6653. name: "Macro",
  6654. height: math.unit(100, "meters")
  6655. },
  6656. {
  6657. name: "Macro+",
  6658. height: math.unit(1500, "meters")
  6659. },
  6660. {
  6661. name: "Stellar",
  6662. height: math.unit(14e8, "meters")
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6668. {
  6669. front: {
  6670. height: math.unit(2, "meters"),
  6671. weight: math.unit(70, "kg"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/beherit/front.svg",
  6675. extra: 1408 / 1242
  6676. }
  6677. }
  6678. },
  6679. [
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(6, "feet")
  6683. },
  6684. {
  6685. name: "Lorg",
  6686. height: math.unit(25, "feet"),
  6687. default: true
  6688. },
  6689. {
  6690. name: "Lorger",
  6691. height: math.unit(75, "feet")
  6692. },
  6693. {
  6694. name: "Macro",
  6695. height: math.unit(200, "meters")
  6696. },
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(2, "meters"),
  6704. weight: math.unit(150, "kg"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/everett/front.svg",
  6708. extra: 2038 / 1737,
  6709. bottom: 0.03
  6710. }
  6711. },
  6712. paw: {
  6713. height: math.unit(2 / 3.6, "meters"),
  6714. name: "Paw",
  6715. image: {
  6716. source: "./media/characters/everett/paw.svg"
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(15, "feet"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Lorg",
  6728. height: math.unit(70, "feet"),
  6729. default: true
  6730. },
  6731. {
  6732. name: "Lorger",
  6733. height: math.unit(250, "feet")
  6734. },
  6735. {
  6736. name: "Macro",
  6737. height: math.unit(500, "meters")
  6738. },
  6739. ]
  6740. ))
  6741. characterMakers.push(() => makeCharacter(
  6742. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6743. {
  6744. front: {
  6745. height: math.unit(2, "meters"),
  6746. weight: math.unit(86, "kg"),
  6747. name: "Front",
  6748. image: {
  6749. source: "./media/characters/rose/front.svg",
  6750. extra: 1785/1636,
  6751. bottom: 30/1815
  6752. }
  6753. },
  6754. frontSporty: {
  6755. height: math.unit(2, "meters"),
  6756. weight: math.unit(86, "kg"),
  6757. name: "Front (Sporty)",
  6758. image: {
  6759. source: "./media/characters/rose/front-sporty.svg",
  6760. extra: 350/335,
  6761. bottom: 10/360
  6762. }
  6763. },
  6764. frontAlt: {
  6765. height: math.unit(1.6, "meters"),
  6766. weight: math.unit(86, "kg"),
  6767. name: "Front (Alt)",
  6768. image: {
  6769. source: "./media/characters/rose/front-alt.svg",
  6770. extra: 299/283,
  6771. bottom: 3/302
  6772. }
  6773. },
  6774. plush: {
  6775. height: math.unit(2, "meters"),
  6776. weight: math.unit(86/3, "kg"),
  6777. name: "Plush",
  6778. image: {
  6779. source: "./media/characters/rose/plush.svg",
  6780. extra: 361/337,
  6781. bottom: 11/372
  6782. }
  6783. },
  6784. },
  6785. [
  6786. {
  6787. name: "True Micro",
  6788. height: math.unit(9, "cm")
  6789. },
  6790. {
  6791. name: "Micro",
  6792. height: math.unit(16, "cm")
  6793. },
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(1.85, "meters"),
  6797. default: true
  6798. },
  6799. {
  6800. name: "Mini-Macro",
  6801. height: math.unit(5, "meters")
  6802. },
  6803. {
  6804. name: "Macro",
  6805. height: math.unit(15, "meters")
  6806. },
  6807. {
  6808. name: "True Macro",
  6809. height: math.unit(40, "meters")
  6810. },
  6811. {
  6812. name: "City Scale",
  6813. height: math.unit(1, "km")
  6814. },
  6815. ]
  6816. ))
  6817. characterMakers.push(() => makeCharacter(
  6818. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6819. {
  6820. front: {
  6821. height: math.unit(2, "meters"),
  6822. weight: math.unit(350, "lbs"),
  6823. name: "Front",
  6824. image: {
  6825. source: "./media/characters/regal/front.svg"
  6826. }
  6827. },
  6828. back: {
  6829. height: math.unit(2, "meters"),
  6830. weight: math.unit(350, "lbs"),
  6831. name: "Back",
  6832. image: {
  6833. source: "./media/characters/regal/back.svg"
  6834. }
  6835. },
  6836. },
  6837. [
  6838. {
  6839. name: "Macro",
  6840. height: math.unit(350, "feet"),
  6841. default: true
  6842. }
  6843. ]
  6844. ))
  6845. characterMakers.push(() => makeCharacter(
  6846. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6847. {
  6848. front: {
  6849. height: math.unit(4 + 11 / 12, "feet"),
  6850. weight: math.unit(100, "lbs"),
  6851. name: "Front",
  6852. image: {
  6853. source: "./media/characters/opal/front.svg"
  6854. }
  6855. },
  6856. frontAlt: {
  6857. height: math.unit(4 + 11 / 12, "feet"),
  6858. weight: math.unit(100, "lbs"),
  6859. name: "Front (Alt)",
  6860. image: {
  6861. source: "./media/characters/opal/front-alt.svg"
  6862. }
  6863. },
  6864. },
  6865. [
  6866. {
  6867. name: "Small",
  6868. height: math.unit(4 + 11 / 12, "feet")
  6869. },
  6870. {
  6871. name: "Normal",
  6872. height: math.unit(20, "feet"),
  6873. default: true
  6874. },
  6875. {
  6876. name: "Macro",
  6877. height: math.unit(120, "feet")
  6878. },
  6879. {
  6880. name: "Megamacro",
  6881. height: math.unit(80, "miles")
  6882. },
  6883. {
  6884. name: "True Size",
  6885. height: math.unit(100000, "lightyears")
  6886. },
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6891. {
  6892. front: {
  6893. height: math.unit(6, "feet"),
  6894. weight: math.unit(200, "lbs"),
  6895. name: "Front",
  6896. image: {
  6897. source: "./media/characters/vector-wuff/front.svg"
  6898. }
  6899. }
  6900. },
  6901. [
  6902. {
  6903. name: "Normal",
  6904. height: math.unit(2.8, "meters")
  6905. },
  6906. {
  6907. name: "Macro",
  6908. height: math.unit(450, "meters"),
  6909. default: true
  6910. },
  6911. {
  6912. name: "Megamacro",
  6913. height: math.unit(15, "kilometers")
  6914. }
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6919. {
  6920. front: {
  6921. height: math.unit(6, "feet"),
  6922. weight: math.unit(256, "lbs"),
  6923. name: "Front",
  6924. image: {
  6925. source: "./media/characters/dannik/front.svg"
  6926. }
  6927. }
  6928. },
  6929. [
  6930. {
  6931. name: "Macro",
  6932. height: math.unit(69.57, "meters"),
  6933. default: true
  6934. },
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6939. {
  6940. front: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(120, "lbs"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/azura-saharah/front.svg"
  6946. }
  6947. },
  6948. back: {
  6949. height: math.unit(6, "feet"),
  6950. weight: math.unit(120, "lbs"),
  6951. name: "Back",
  6952. image: {
  6953. source: "./media/characters/azura-saharah/back.svg"
  6954. }
  6955. },
  6956. },
  6957. [
  6958. {
  6959. name: "Macro",
  6960. height: math.unit(100, "feet"),
  6961. default: true
  6962. },
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6967. {
  6968. side: {
  6969. height: math.unit(5 + 4 / 12, "feet"),
  6970. weight: math.unit(163, "lbs"),
  6971. name: "Side",
  6972. image: {
  6973. source: "./media/characters/kennedy/side.svg"
  6974. }
  6975. }
  6976. },
  6977. [
  6978. {
  6979. name: "Standard Doggo",
  6980. height: math.unit(5 + 4 / 12, "feet")
  6981. },
  6982. {
  6983. name: "Big Doggo",
  6984. height: math.unit(25 + 3 / 12, "feet"),
  6985. default: true
  6986. },
  6987. ]
  6988. ))
  6989. characterMakers.push(() => makeCharacter(
  6990. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6991. {
  6992. front: {
  6993. height: math.unit(6, "feet"),
  6994. weight: math.unit(90, "lbs"),
  6995. name: "Front",
  6996. image: {
  6997. source: "./media/characters/odi-lunar/front.svg"
  6998. }
  6999. }
  7000. },
  7001. [
  7002. {
  7003. name: "Micro",
  7004. height: math.unit(3, "inches"),
  7005. default: true
  7006. },
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(5.5, "feet")
  7010. }
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7015. {
  7016. back: {
  7017. height: math.unit(6, "feet"),
  7018. weight: math.unit(220, "lbs"),
  7019. name: "Back",
  7020. image: {
  7021. source: "./media/characters/mandake/back.svg"
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Normal",
  7028. height: math.unit(7, "feet"),
  7029. default: true
  7030. },
  7031. {
  7032. name: "Macro",
  7033. height: math.unit(78, "feet")
  7034. },
  7035. {
  7036. name: "Macro+",
  7037. height: math.unit(300, "meters")
  7038. },
  7039. {
  7040. name: "Macro++",
  7041. height: math.unit(2400, "feet")
  7042. },
  7043. {
  7044. name: "Megamacro",
  7045. height: math.unit(5167, "meters")
  7046. },
  7047. {
  7048. name: "Gigamacro",
  7049. height: math.unit(41769, "miles")
  7050. },
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7055. {
  7056. front: {
  7057. height: math.unit(6, "feet"),
  7058. weight: math.unit(120, "lbs"),
  7059. name: "Front",
  7060. image: {
  7061. source: "./media/characters/yozey/front.svg"
  7062. }
  7063. },
  7064. frontAlt: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(120, "lbs"),
  7067. name: "Front (Alt)",
  7068. image: {
  7069. source: "./media/characters/yozey/front-alt.svg"
  7070. }
  7071. },
  7072. side: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(120, "lbs"),
  7075. name: "Side",
  7076. image: {
  7077. source: "./media/characters/yozey/side.svg"
  7078. }
  7079. },
  7080. },
  7081. [
  7082. {
  7083. name: "Micro",
  7084. height: math.unit(3, "inches"),
  7085. default: true
  7086. },
  7087. {
  7088. name: "Normal",
  7089. height: math.unit(6, "feet")
  7090. }
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7095. {
  7096. front: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(103, "lbs"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/valeska-voss/front.svg"
  7102. }
  7103. }
  7104. },
  7105. [
  7106. {
  7107. name: "Mini-Sized Sub",
  7108. height: math.unit(3.1, "inches")
  7109. },
  7110. {
  7111. name: "Mid-Sized Sub",
  7112. height: math.unit(6.2, "inches")
  7113. },
  7114. {
  7115. name: "Full-Sized Sub",
  7116. height: math.unit(9.3, "inches")
  7117. },
  7118. {
  7119. name: "Normal",
  7120. height: math.unit(5 + 2 / 12, "foot"),
  7121. default: true
  7122. },
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7127. {
  7128. front: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(160, "lbs"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/gene-zeta/front.svg",
  7134. extra: 3006 / 2826,
  7135. bottom: 182 / 3188
  7136. }
  7137. }
  7138. },
  7139. [
  7140. {
  7141. name: "Micro",
  7142. height: math.unit(6, "inches")
  7143. },
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(5 + 11 / 12, "foot"),
  7147. default: true
  7148. },
  7149. {
  7150. name: "Macro",
  7151. height: math.unit(140, "feet")
  7152. },
  7153. {
  7154. name: "Supercharged",
  7155. height: math.unit(2500, "feet")
  7156. },
  7157. ]
  7158. ))
  7159. characterMakers.push(() => makeCharacter(
  7160. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7161. {
  7162. front: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(350, "lbs"),
  7165. name: "Front",
  7166. image: {
  7167. source: "./media/characters/razinox/front.svg",
  7168. extra: 1686 / 1548,
  7169. bottom: 28.2 / 1868
  7170. }
  7171. },
  7172. back: {
  7173. height: math.unit(6, "feet"),
  7174. weight: math.unit(350, "lbs"),
  7175. name: "Back",
  7176. image: {
  7177. source: "./media/characters/razinox/back.svg",
  7178. extra: 1660 / 1590,
  7179. bottom: 15 / 1665
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Normal",
  7186. height: math.unit(10 + 8 / 12, "foot")
  7187. },
  7188. {
  7189. name: "Minimacro",
  7190. height: math.unit(15, "foot")
  7191. },
  7192. {
  7193. name: "Macro",
  7194. height: math.unit(60, "foot"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Megamacro",
  7199. height: math.unit(5, "miles")
  7200. },
  7201. {
  7202. name: "Gigamacro",
  7203. height: math.unit(6000, "miles")
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(150, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/cobalt/front.svg"
  7216. }
  7217. }
  7218. },
  7219. [
  7220. {
  7221. name: "Normal",
  7222. height: math.unit(8 + 1 / 12, "foot")
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(111, "foot"),
  7227. default: true
  7228. },
  7229. {
  7230. name: "Supracosmic",
  7231. height: math.unit(1e42, "feet")
  7232. },
  7233. ]
  7234. ))
  7235. characterMakers.push(() => makeCharacter(
  7236. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7237. {
  7238. front: {
  7239. height: math.unit(6, "feet"),
  7240. weight: math.unit(140, "lbs"),
  7241. name: "Front",
  7242. image: {
  7243. source: "./media/characters/amanda/front.svg"
  7244. }
  7245. }
  7246. },
  7247. [
  7248. {
  7249. name: "Micro",
  7250. height: math.unit(5, "inches"),
  7251. default: true
  7252. },
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(2.75, "meters"),
  7260. weight: math.unit(1200, "lb"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/teal/front.svg",
  7264. extra: 2463 / 2320,
  7265. bottom: 166 / 2629
  7266. }
  7267. },
  7268. back: {
  7269. height: math.unit(2.75, "meters"),
  7270. weight: math.unit(1200, "lb"),
  7271. name: "Back",
  7272. image: {
  7273. source: "./media/characters/teal/back.svg",
  7274. extra: 2580 / 2489,
  7275. bottom: 151 / 2731
  7276. }
  7277. },
  7278. sitting: {
  7279. height: math.unit(1.9, "meters"),
  7280. weight: math.unit(1200, "lb"),
  7281. name: "Sitting",
  7282. image: {
  7283. source: "./media/characters/teal/sitting.svg",
  7284. extra: 623 / 590,
  7285. bottom: 121 / 744
  7286. }
  7287. },
  7288. standing: {
  7289. height: math.unit(2.75, "meters"),
  7290. weight: math.unit(1200, "lb"),
  7291. name: "Standing",
  7292. image: {
  7293. source: "./media/characters/teal/standing.svg",
  7294. extra: 923 / 893,
  7295. bottom: 60 / 983
  7296. }
  7297. },
  7298. stretching: {
  7299. height: math.unit(3.65, "meters"),
  7300. weight: math.unit(1200, "lb"),
  7301. name: "Stretching",
  7302. image: {
  7303. source: "./media/characters/teal/stretching.svg",
  7304. extra: 1276 / 1244,
  7305. bottom: 0 / 1276
  7306. }
  7307. },
  7308. legged: {
  7309. height: math.unit(1.3, "meters"),
  7310. weight: math.unit(100, "lb"),
  7311. name: "Legged",
  7312. image: {
  7313. source: "./media/characters/teal/legged.svg",
  7314. extra: 462 / 437,
  7315. bottom: 24 / 486
  7316. }
  7317. },
  7318. naga: {
  7319. height: math.unit(5.4, "meters"),
  7320. weight: math.unit(4000, "lb"),
  7321. name: "Naga",
  7322. image: {
  7323. source: "./media/characters/teal/naga.svg",
  7324. extra: 1902 / 1858,
  7325. bottom: 0 / 1902
  7326. }
  7327. },
  7328. hand: {
  7329. height: math.unit(0.52, "meters"),
  7330. name: "Hand",
  7331. image: {
  7332. source: "./media/characters/teal/hand.svg"
  7333. }
  7334. },
  7335. maw: {
  7336. height: math.unit(0.43, "meters"),
  7337. name: "Maw",
  7338. image: {
  7339. source: "./media/characters/teal/maw.svg"
  7340. }
  7341. },
  7342. slit: {
  7343. height: math.unit(0.25, "meters"),
  7344. name: "Slit",
  7345. image: {
  7346. source: "./media/characters/teal/slit.svg"
  7347. }
  7348. },
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(2.75, "meters"),
  7354. default: true
  7355. },
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(300, "feet")
  7359. },
  7360. {
  7361. name: "Macro+",
  7362. height: math.unit(2000, "feet")
  7363. },
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7368. {
  7369. frontCat: {
  7370. height: math.unit(6, "feet"),
  7371. weight: math.unit(180, "lbs"),
  7372. name: "Front (Cat)",
  7373. image: {
  7374. source: "./media/characters/ravin-amulet/front-cat.svg"
  7375. }
  7376. },
  7377. frontCatAlt: {
  7378. height: math.unit(6, "feet"),
  7379. weight: math.unit(180, "lbs"),
  7380. name: "Front (Alt, Cat)",
  7381. image: {
  7382. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7383. }
  7384. },
  7385. frontWerewolf: {
  7386. height: math.unit(6 * 1.2, "feet"),
  7387. weight: math.unit(225, "lbs"),
  7388. name: "Front (Werewolf)",
  7389. image: {
  7390. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7391. }
  7392. },
  7393. backWerewolf: {
  7394. height: math.unit(6 * 1.2, "feet"),
  7395. weight: math.unit(225, "lbs"),
  7396. name: "Back (Werewolf)",
  7397. image: {
  7398. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Nano",
  7405. height: math.unit(1, "micrometer")
  7406. },
  7407. {
  7408. name: "Micro",
  7409. height: math.unit(1, "inch")
  7410. },
  7411. {
  7412. name: "Normal",
  7413. height: math.unit(6, "feet"),
  7414. default: true
  7415. },
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(60, "feet")
  7419. }
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7424. {
  7425. front: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(165, "lbs"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/fluoresce/front.svg"
  7431. }
  7432. }
  7433. },
  7434. [
  7435. {
  7436. name: "Micro",
  7437. height: math.unit(6, "cm")
  7438. },
  7439. {
  7440. name: "Normal",
  7441. height: math.unit(5 + 7 / 12, "feet"),
  7442. default: true
  7443. },
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(56, "feet")
  7447. },
  7448. {
  7449. name: "Megamacro",
  7450. height: math.unit(1.9, "miles")
  7451. },
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7456. {
  7457. front: {
  7458. height: math.unit(9 + 6 / 12, "feet"),
  7459. weight: math.unit(523, "lbs"),
  7460. name: "Side",
  7461. image: {
  7462. source: "./media/characters/aurora/side.svg"
  7463. }
  7464. }
  7465. },
  7466. [
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(9 + 6 / 12, "feet")
  7470. },
  7471. {
  7472. name: "Macro",
  7473. height: math.unit(96, "feet"),
  7474. default: true
  7475. },
  7476. {
  7477. name: "Macro+",
  7478. height: math.unit(243, "feet")
  7479. },
  7480. ]
  7481. ))
  7482. characterMakers.push(() => makeCharacter(
  7483. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7484. {
  7485. front: {
  7486. height: math.unit(194, "cm"),
  7487. weight: math.unit(90, "kg"),
  7488. name: "Front",
  7489. image: {
  7490. source: "./media/characters/ranek/front.svg"
  7491. }
  7492. },
  7493. side: {
  7494. height: math.unit(194, "cm"),
  7495. weight: math.unit(90, "kg"),
  7496. name: "Side",
  7497. image: {
  7498. source: "./media/characters/ranek/side.svg"
  7499. }
  7500. },
  7501. back: {
  7502. height: math.unit(194, "cm"),
  7503. weight: math.unit(90, "kg"),
  7504. name: "Back",
  7505. image: {
  7506. source: "./media/characters/ranek/back.svg"
  7507. }
  7508. },
  7509. feral: {
  7510. height: math.unit(30, "cm"),
  7511. weight: math.unit(1.6, "lbs"),
  7512. name: "Feral",
  7513. image: {
  7514. source: "./media/characters/ranek/feral.svg"
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(194, "cm"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro",
  7526. height: math.unit(100, "meters")
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(5 + 6 / 12, "feet"),
  7535. weight: math.unit(153, "lbs"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/andrew-cooper/front.svg"
  7539. }
  7540. },
  7541. },
  7542. [
  7543. {
  7544. name: "Nano",
  7545. height: math.unit(1, "mm")
  7546. },
  7547. {
  7548. name: "Micro",
  7549. height: math.unit(2, "inches")
  7550. },
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(5 + 6 / 12, "feet"),
  7554. default: true
  7555. }
  7556. ]
  7557. ))
  7558. characterMakers.push(() => makeCharacter(
  7559. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7560. {
  7561. front: {
  7562. height: math.unit(6, "feet"),
  7563. weight: math.unit(180, "lbs"),
  7564. name: "Front",
  7565. image: {
  7566. source: "./media/characters/akane-sato/front.svg",
  7567. extra: 1219 / 1140
  7568. }
  7569. },
  7570. back: {
  7571. height: math.unit(6, "feet"),
  7572. weight: math.unit(180, "lbs"),
  7573. name: "Back",
  7574. image: {
  7575. source: "./media/characters/akane-sato/back.svg",
  7576. extra: 1219 / 1170
  7577. }
  7578. },
  7579. },
  7580. [
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(2.5, "meters")
  7584. },
  7585. {
  7586. name: "Macro",
  7587. height: math.unit(250, "meters"),
  7588. default: true
  7589. },
  7590. {
  7591. name: "Megamacro",
  7592. height: math.unit(25, "km")
  7593. },
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7598. {
  7599. front: {
  7600. height: math.unit(6, "feet"),
  7601. weight: math.unit(65, "kg"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/rook/front.svg",
  7605. extra: 960 / 950
  7606. }
  7607. }
  7608. },
  7609. [
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(8.8, "feet")
  7613. },
  7614. {
  7615. name: "Macro",
  7616. height: math.unit(88, "feet"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Megamacro",
  7621. height: math.unit(8, "miles")
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7627. {
  7628. front: {
  7629. height: math.unit(12 + 2 / 12, "feet"),
  7630. weight: math.unit(808, "lbs"),
  7631. name: "Front",
  7632. image: {
  7633. source: "./media/characters/prodigy/front.svg"
  7634. }
  7635. }
  7636. },
  7637. [
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(12 + 2 / 12, "feet"),
  7641. default: true
  7642. },
  7643. {
  7644. name: "Macro",
  7645. height: math.unit(143, "feet")
  7646. },
  7647. {
  7648. name: "Macro+",
  7649. height: math.unit(400, "feet")
  7650. },
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7655. {
  7656. front: {
  7657. height: math.unit(6, "feet"),
  7658. weight: math.unit(225, "lbs"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/daniel/front.svg"
  7662. }
  7663. },
  7664. leaning: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(225, "lbs"),
  7667. name: "Leaning",
  7668. image: {
  7669. source: "./media/characters/daniel/leaning.svg"
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(1000, "feet"),
  7677. default: true
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(6, "feet"),
  7686. weight: math.unit(88, "lbs"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/chiros/front.svg",
  7690. extra: 306 / 226
  7691. }
  7692. },
  7693. side: {
  7694. height: math.unit(6, "feet"),
  7695. weight: math.unit(88, "lbs"),
  7696. name: "Side",
  7697. image: {
  7698. source: "./media/characters/chiros/side.svg",
  7699. extra: 306 / 226
  7700. }
  7701. },
  7702. },
  7703. [
  7704. {
  7705. name: "Normal",
  7706. height: math.unit(6, "cm"),
  7707. default: true
  7708. },
  7709. ]
  7710. ))
  7711. characterMakers.push(() => makeCharacter(
  7712. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7713. {
  7714. front: {
  7715. height: math.unit(6, "feet"),
  7716. weight: math.unit(100, "lbs"),
  7717. name: "Front",
  7718. image: {
  7719. source: "./media/characters/selka/front.svg",
  7720. extra: 947 / 887
  7721. }
  7722. }
  7723. },
  7724. [
  7725. {
  7726. name: "Normal",
  7727. height: math.unit(5, "cm"),
  7728. default: true
  7729. },
  7730. ]
  7731. ))
  7732. characterMakers.push(() => makeCharacter(
  7733. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7734. {
  7735. front: {
  7736. height: math.unit(8 + 3 / 12, "feet"),
  7737. weight: math.unit(424, "lbs"),
  7738. name: "Front",
  7739. image: {
  7740. source: "./media/characters/verin/front.svg",
  7741. extra: 1845 / 1550
  7742. }
  7743. },
  7744. frontArmored: {
  7745. height: math.unit(8 + 3 / 12, "feet"),
  7746. weight: math.unit(424, "lbs"),
  7747. name: "Front (Armored)",
  7748. image: {
  7749. source: "./media/characters/verin/front-armor.svg",
  7750. extra: 1845 / 1550,
  7751. bottom: 0.01
  7752. }
  7753. },
  7754. back: {
  7755. height: math.unit(8 + 3 / 12, "feet"),
  7756. weight: math.unit(424, "lbs"),
  7757. name: "Back",
  7758. image: {
  7759. source: "./media/characters/verin/back.svg",
  7760. bottom: 0.1,
  7761. extra: 1
  7762. }
  7763. },
  7764. foot: {
  7765. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7766. name: "Foot",
  7767. image: {
  7768. source: "./media/characters/verin/foot.svg"
  7769. }
  7770. },
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(8 + 3 / 12, "feet")
  7776. },
  7777. {
  7778. name: "Minimacro",
  7779. height: math.unit(21, "feet"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(626, "feet")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(2.718, "meters"),
  7793. weight: math.unit(150, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/sovrim-terraquian/front.svg"
  7797. }
  7798. },
  7799. back: {
  7800. height: math.unit(2.718, "meters"),
  7801. weight: math.unit(150, "lbs"),
  7802. name: "Back",
  7803. image: {
  7804. source: "./media/characters/sovrim-terraquian/back.svg"
  7805. }
  7806. }
  7807. },
  7808. [
  7809. {
  7810. name: "Micro",
  7811. height: math.unit(2, "inches")
  7812. },
  7813. {
  7814. name: "Small",
  7815. height: math.unit(1, "meter")
  7816. },
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(Math.E, "meters"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Macro",
  7824. height: math.unit(20, "meters")
  7825. },
  7826. {
  7827. name: "Macro+",
  7828. height: math.unit(400, "meters")
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(7, "feet"),
  7837. weight: math.unit(489, "lbs"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/reece-silvermane/front.svg",
  7841. bottom: 0.02,
  7842. extra: 1
  7843. }
  7844. },
  7845. },
  7846. [
  7847. {
  7848. name: "Macro",
  7849. height: math.unit(1.5, "miles"),
  7850. default: true
  7851. },
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(6, "feet"),
  7859. weight: math.unit(78, "kg"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/kane/front.svg",
  7863. extra: 978 / 899
  7864. }
  7865. },
  7866. },
  7867. [
  7868. {
  7869. name: "Normal",
  7870. height: math.unit(2.1, "m"),
  7871. },
  7872. {
  7873. name: "Macro",
  7874. height: math.unit(1, "km"),
  7875. default: true
  7876. },
  7877. ]
  7878. ))
  7879. characterMakers.push(() => makeCharacter(
  7880. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7881. {
  7882. front: {
  7883. height: math.unit(6, "feet"),
  7884. weight: math.unit(200, "kg"),
  7885. name: "Front",
  7886. image: {
  7887. source: "./media/characters/tegon/front.svg",
  7888. bottom: 0.01,
  7889. extra: 1
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Micro",
  7896. height: math.unit(1, "inch")
  7897. },
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(6 + 3 / 12, "feet"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Macro",
  7905. height: math.unit(300, "feet")
  7906. },
  7907. {
  7908. name: "Megamacro",
  7909. height: math.unit(69, "miles")
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7915. {
  7916. side: {
  7917. height: math.unit(6, "feet"),
  7918. weight: math.unit(2304, "lbs"),
  7919. name: "Side",
  7920. image: {
  7921. source: "./media/characters/arcturax/side.svg",
  7922. extra: 790 / 376,
  7923. bottom: 0.01
  7924. }
  7925. },
  7926. },
  7927. [
  7928. {
  7929. name: "Micro",
  7930. height: math.unit(2, "inch")
  7931. },
  7932. {
  7933. name: "Normal",
  7934. height: math.unit(6, "feet")
  7935. },
  7936. {
  7937. name: "Macro",
  7938. height: math.unit(39, "feet"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Megamacro",
  7943. height: math.unit(7, "miles")
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7949. {
  7950. front: {
  7951. height: math.unit(6, "feet"),
  7952. weight: math.unit(50, "lbs"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/sentri/front.svg",
  7956. extra: 1750 / 1570,
  7957. bottom: 0.025
  7958. }
  7959. },
  7960. frontAlt: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(50, "lbs"),
  7963. name: "Front (Alt)",
  7964. image: {
  7965. source: "./media/characters/sentri/front-alt.svg",
  7966. extra: 1750 / 1570,
  7967. bottom: 0.025
  7968. }
  7969. },
  7970. },
  7971. [
  7972. {
  7973. name: "Normal",
  7974. height: math.unit(15, "feet"),
  7975. default: true
  7976. },
  7977. {
  7978. name: "Macro",
  7979. height: math.unit(2500, "feet")
  7980. }
  7981. ]
  7982. ))
  7983. characterMakers.push(() => makeCharacter(
  7984. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7985. {
  7986. front: {
  7987. height: math.unit(5 + 8 / 12, "feet"),
  7988. weight: math.unit(130, "lbs"),
  7989. name: "Front",
  7990. image: {
  7991. source: "./media/characters/corvin/front.svg",
  7992. extra: 1803 / 1629
  7993. }
  7994. },
  7995. frontShirt: {
  7996. height: math.unit(5 + 8 / 12, "feet"),
  7997. weight: math.unit(130, "lbs"),
  7998. name: "Front (Shirt)",
  7999. image: {
  8000. source: "./media/characters/corvin/front-shirt.svg",
  8001. extra: 1803 / 1629
  8002. }
  8003. },
  8004. frontPoncho: {
  8005. height: math.unit(5 + 8 / 12, "feet"),
  8006. weight: math.unit(130, "lbs"),
  8007. name: "Front (Poncho)",
  8008. image: {
  8009. source: "./media/characters/corvin/front-poncho.svg",
  8010. extra: 1803 / 1629
  8011. }
  8012. },
  8013. side: {
  8014. height: math.unit(5 + 8 / 12, "feet"),
  8015. weight: math.unit(130, "lbs"),
  8016. name: "Side",
  8017. image: {
  8018. source: "./media/characters/corvin/side.svg",
  8019. extra: 1012 / 945
  8020. }
  8021. },
  8022. back: {
  8023. height: math.unit(5 + 8 / 12, "feet"),
  8024. weight: math.unit(130, "lbs"),
  8025. name: "Back",
  8026. image: {
  8027. source: "./media/characters/corvin/back.svg",
  8028. extra: 1803 / 1629
  8029. }
  8030. },
  8031. },
  8032. [
  8033. {
  8034. name: "Micro",
  8035. height: math.unit(3, "inches")
  8036. },
  8037. {
  8038. name: "Normal",
  8039. height: math.unit(5 + 8 / 12, "feet")
  8040. },
  8041. {
  8042. name: "Macro",
  8043. height: math.unit(300, "feet"),
  8044. default: true
  8045. },
  8046. {
  8047. name: "Megamacro",
  8048. height: math.unit(500, "miles")
  8049. }
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8054. {
  8055. front: {
  8056. height: math.unit(6, "feet"),
  8057. weight: math.unit(135, "lbs"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/q/front.svg",
  8061. extra: 854 / 752,
  8062. bottom: 0.005
  8063. }
  8064. },
  8065. back: {
  8066. height: math.unit(6, "feet"),
  8067. weight: math.unit(130, "lbs"),
  8068. name: "Back",
  8069. image: {
  8070. source: "./media/characters/q/back.svg",
  8071. extra: 854 / 752
  8072. }
  8073. },
  8074. },
  8075. [
  8076. {
  8077. name: "Macro",
  8078. height: math.unit(90, "feet"),
  8079. default: true
  8080. },
  8081. {
  8082. name: "Extra Macro",
  8083. height: math.unit(300, "feet"),
  8084. },
  8085. {
  8086. name: "BIG WALF",
  8087. height: math.unit(750, "feet"),
  8088. },
  8089. ]
  8090. ))
  8091. characterMakers.push(() => makeCharacter(
  8092. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8093. {
  8094. front: {
  8095. height: math.unit(6, "feet"),
  8096. weight: math.unit(150, "lbs"),
  8097. name: "Front",
  8098. image: {
  8099. source: "./media/characters/carley/front.svg",
  8100. extra: 3927 / 3540,
  8101. bottom: 29.2 / 735
  8102. }
  8103. }
  8104. },
  8105. [
  8106. {
  8107. name: "Normal",
  8108. height: math.unit(6 + 3 / 12, "feet")
  8109. },
  8110. {
  8111. name: "Macro",
  8112. height: math.unit(185, "feet"),
  8113. default: true
  8114. },
  8115. {
  8116. name: "Megamacro",
  8117. height: math.unit(8, "miles"),
  8118. },
  8119. ]
  8120. ))
  8121. characterMakers.push(() => makeCharacter(
  8122. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8123. {
  8124. front: {
  8125. height: math.unit(3, "feet"),
  8126. weight: math.unit(28, "lbs"),
  8127. name: "Front",
  8128. image: {
  8129. source: "./media/characters/citrine/front.svg"
  8130. }
  8131. }
  8132. },
  8133. [
  8134. {
  8135. name: "Normal",
  8136. height: math.unit(3, "feet"),
  8137. default: true
  8138. }
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8143. {
  8144. front: {
  8145. height: math.unit(14, "feet"),
  8146. weight: math.unit(1450, "kg"),
  8147. capacity: math.unit(15, "people"),
  8148. name: "Front",
  8149. image: {
  8150. source: "./media/characters/aura-starwind/front.svg",
  8151. extra: 1455 / 1335
  8152. }
  8153. },
  8154. side: {
  8155. height: math.unit(14, "feet"),
  8156. weight: math.unit(1450, "kg"),
  8157. capacity: math.unit(15, "people"),
  8158. name: "Side",
  8159. image: {
  8160. source: "./media/characters/aura-starwind/side.svg",
  8161. extra: 1654 / 1497
  8162. }
  8163. },
  8164. taur: {
  8165. height: math.unit(18, "feet"),
  8166. weight: math.unit(5500, "kg"),
  8167. capacity: math.unit(50, "people"),
  8168. name: "Taur",
  8169. image: {
  8170. source: "./media/characters/aura-starwind/taur.svg",
  8171. extra: 1760 / 1650
  8172. }
  8173. },
  8174. feral: {
  8175. height: math.unit(46, "feet"),
  8176. weight: math.unit(25000, "kg"),
  8177. capacity: math.unit(120, "people"),
  8178. name: "Feral",
  8179. image: {
  8180. source: "./media/characters/aura-starwind/feral.svg"
  8181. }
  8182. },
  8183. },
  8184. [
  8185. {
  8186. name: "Normal",
  8187. height: math.unit(14, "feet"),
  8188. default: true
  8189. },
  8190. {
  8191. name: "Macro",
  8192. height: math.unit(50, "meters")
  8193. },
  8194. {
  8195. name: "Megamacro",
  8196. height: math.unit(5000, "meters")
  8197. },
  8198. {
  8199. name: "Gigamacro",
  8200. height: math.unit(100000, "kilometers")
  8201. },
  8202. ]
  8203. ))
  8204. characterMakers.push(() => makeCharacter(
  8205. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8206. {
  8207. front: {
  8208. height: math.unit(2 + 7 / 12, "feet"),
  8209. weight: math.unit(32, "lbs"),
  8210. name: "Front",
  8211. image: {
  8212. source: "./media/characters/rivet/front.svg",
  8213. extra: 1716 / 1658,
  8214. bottom: 0.03
  8215. }
  8216. },
  8217. foot: {
  8218. height: math.unit(0.551, "feet"),
  8219. name: "Rivet's Foot",
  8220. image: {
  8221. source: "./media/characters/rivet/foot.svg"
  8222. },
  8223. rename: true
  8224. }
  8225. },
  8226. [
  8227. {
  8228. name: "Micro",
  8229. height: math.unit(1.5, "inches"),
  8230. },
  8231. {
  8232. name: "Normal",
  8233. height: math.unit(2 + 7 / 12, "feet"),
  8234. default: true
  8235. },
  8236. {
  8237. name: "Macro",
  8238. height: math.unit(85, "feet")
  8239. },
  8240. {
  8241. name: "Megamacro",
  8242. height: math.unit(2.2, "km")
  8243. }
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(5 + 9 / 12, "feet"),
  8251. weight: math.unit(150, "lbs"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/coffee/front.svg",
  8255. extra: 3666 / 3032,
  8256. bottom: 0.04
  8257. }
  8258. },
  8259. foot: {
  8260. height: math.unit(1.29, "feet"),
  8261. name: "Foot",
  8262. image: {
  8263. source: "./media/characters/coffee/foot.svg"
  8264. }
  8265. },
  8266. },
  8267. [
  8268. {
  8269. name: "Micro",
  8270. height: math.unit(2, "inches"),
  8271. },
  8272. {
  8273. name: "Normal",
  8274. height: math.unit(5 + 9 / 12, "feet"),
  8275. default: true
  8276. },
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(800, "feet")
  8280. },
  8281. {
  8282. name: "Megamacro",
  8283. height: math.unit(25, "miles")
  8284. }
  8285. ]
  8286. ))
  8287. characterMakers.push(() => makeCharacter(
  8288. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8289. {
  8290. front: {
  8291. height: math.unit(6, "feet"),
  8292. weight: math.unit(200, "lbs"),
  8293. name: "Front",
  8294. image: {
  8295. source: "./media/characters/chari-gal/front.svg",
  8296. extra: 1568 / 1385,
  8297. bottom: 0.047
  8298. }
  8299. },
  8300. gigantamax: {
  8301. height: math.unit(6 * 16, "feet"),
  8302. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8303. name: "Gigantamax",
  8304. image: {
  8305. source: "./media/characters/chari-gal/gigantamax.svg",
  8306. extra: 1124 / 888,
  8307. bottom: 0.03
  8308. }
  8309. },
  8310. },
  8311. [
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(5 + 7 / 12, "feet")
  8315. },
  8316. {
  8317. name: "Macro",
  8318. height: math.unit(200, "feet"),
  8319. default: true
  8320. }
  8321. ]
  8322. ))
  8323. characterMakers.push(() => makeCharacter(
  8324. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8325. {
  8326. front: {
  8327. height: math.unit(6, "feet"),
  8328. weight: math.unit(150, "lbs"),
  8329. name: "Front",
  8330. image: {
  8331. source: "./media/characters/nova/front.svg",
  8332. extra: 5000 / 4722,
  8333. bottom: 0.02
  8334. }
  8335. }
  8336. },
  8337. [
  8338. {
  8339. name: "Micro-",
  8340. height: math.unit(0.8, "inches")
  8341. },
  8342. {
  8343. name: "Micro",
  8344. height: math.unit(2, "inches"),
  8345. default: true
  8346. },
  8347. ]
  8348. ))
  8349. characterMakers.push(() => makeCharacter(
  8350. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8351. {
  8352. front: {
  8353. height: math.unit(3 + 1 / 12, "feet"),
  8354. weight: math.unit(21.7, "lbs"),
  8355. name: "Front",
  8356. image: {
  8357. source: "./media/characters/argent/front.svg",
  8358. extra: 1471 / 1331,
  8359. bottom: 100.8 / 1575.5
  8360. }
  8361. }
  8362. },
  8363. [
  8364. {
  8365. name: "Micro",
  8366. height: math.unit(2, "inches")
  8367. },
  8368. {
  8369. name: "Normal",
  8370. height: math.unit(3 + 1 / 12, "feet"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Macro",
  8375. height: math.unit(120, "feet")
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8381. {
  8382. lamp: {
  8383. height: math.unit(7 * 1559 / 989, "feet"),
  8384. name: "Magic Lamp",
  8385. image: {
  8386. source: "./media/characters/mira-al-cul/lamp.svg",
  8387. extra: 1617 / 1559
  8388. }
  8389. },
  8390. front: {
  8391. height: math.unit(7, "feet"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/mira-al-cul/front.svg",
  8395. extra: 1044 / 990
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Heavily Restricted",
  8402. height: math.unit(7 * 1559 / 989, "feet")
  8403. },
  8404. {
  8405. name: "Freshly Freed",
  8406. height: math.unit(50 * 1559 / 989, "feet")
  8407. },
  8408. {
  8409. name: "World Encompassing",
  8410. height: math.unit(10000 * 1559 / 989, "miles")
  8411. },
  8412. {
  8413. name: "Galactic",
  8414. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8415. },
  8416. {
  8417. name: "Palmed Universe",
  8418. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8419. default: true
  8420. },
  8421. {
  8422. name: "Multiversal Matriarch",
  8423. height: math.unit(8.87e10, "yottameters")
  8424. },
  8425. {
  8426. name: "Void Mother",
  8427. height: math.unit(3.14e110, "yottaparsecs")
  8428. },
  8429. {
  8430. name: "Toying with Transcendence",
  8431. height: math.unit(1e307, "meters")
  8432. },
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8437. {
  8438. front: {
  8439. height: math.unit(17 + 1 / 12, "feet"),
  8440. weight: math.unit(476.2 * 5, "lbs"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/kuro-shi-uchū/front.svg",
  8444. extra: 2329 / 1835,
  8445. bottom: 0.02
  8446. }
  8447. },
  8448. },
  8449. [
  8450. {
  8451. name: "Micro",
  8452. height: math.unit(2, "inches")
  8453. },
  8454. {
  8455. name: "Normal",
  8456. height: math.unit(12, "meters")
  8457. },
  8458. {
  8459. name: "Planetary",
  8460. height: math.unit(0.00929, "AU"),
  8461. default: true
  8462. },
  8463. {
  8464. name: "Universal",
  8465. height: math.unit(20, "gigaparsecs")
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8471. {
  8472. front: {
  8473. height: math.unit(5 + 2 / 12, "feet"),
  8474. weight: math.unit(120, "lbs"),
  8475. name: "Front",
  8476. image: {
  8477. source: "./media/characters/katherine/front.svg",
  8478. extra: 2075 / 1969
  8479. }
  8480. },
  8481. dress: {
  8482. height: math.unit(5 + 2 / 12, "feet"),
  8483. weight: math.unit(120, "lbs"),
  8484. name: "Dress",
  8485. image: {
  8486. source: "./media/characters/katherine/dress.svg",
  8487. extra: 2258 / 2064
  8488. }
  8489. },
  8490. },
  8491. [
  8492. {
  8493. name: "Micro",
  8494. height: math.unit(1, "inches"),
  8495. default: true
  8496. },
  8497. {
  8498. name: "Normal",
  8499. height: math.unit(5 + 2 / 12, "feet")
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(100, "meters")
  8504. },
  8505. {
  8506. name: "Megamacro",
  8507. height: math.unit(80, "miles")
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(7 + 8 / 12, "feet"),
  8516. weight: math.unit(250, "lbs"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/yevis/front.svg",
  8520. extra: 1938 / 1755
  8521. }
  8522. }
  8523. },
  8524. [
  8525. {
  8526. name: "Mortal",
  8527. height: math.unit(7 + 8 / 12, "feet")
  8528. },
  8529. {
  8530. name: "Battle",
  8531. height: math.unit(25 + 11 / 12, "feet")
  8532. },
  8533. {
  8534. name: "Wrath",
  8535. height: math.unit(1654 + 11 / 12, "feet")
  8536. },
  8537. {
  8538. name: "Planet Destroyer",
  8539. height: math.unit(12000, "miles")
  8540. },
  8541. {
  8542. name: "Galaxy Conqueror",
  8543. height: math.unit(1.45, "zettameters"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Universal War",
  8548. height: math.unit(184, "gigaparsecs")
  8549. },
  8550. {
  8551. name: "Eternity War",
  8552. height: math.unit(1.98e55, "yottaparsecs")
  8553. },
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8558. {
  8559. front: {
  8560. height: math.unit(5 + 8 / 12, "feet"),
  8561. weight: math.unit(63, "kg"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/xavier/front.svg",
  8565. extra: 944 / 883
  8566. }
  8567. },
  8568. frontStretch: {
  8569. height: math.unit(5 + 8 / 12, "feet"),
  8570. weight: math.unit(63, "kg"),
  8571. name: "Stretching",
  8572. image: {
  8573. source: "./media/characters/xavier/front-stretch.svg",
  8574. extra: 962 / 820
  8575. }
  8576. },
  8577. },
  8578. [
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(5 + 8 / 12, "feet")
  8582. },
  8583. {
  8584. name: "Macro",
  8585. height: math.unit(100, "meters"),
  8586. default: true
  8587. },
  8588. {
  8589. name: "McLargeHuge",
  8590. height: math.unit(10, "miles")
  8591. },
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(5 + 5 / 12, "feet"),
  8599. weight: math.unit(150, "lb"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/joshii/front.svg",
  8603. extra: 765 / 653,
  8604. bottom: 51 / 816
  8605. }
  8606. },
  8607. foot: {
  8608. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8609. name: "Foot",
  8610. image: {
  8611. source: "./media/characters/joshii/foot.svg"
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Micro",
  8618. height: math.unit(2, "inches"),
  8619. default: true
  8620. },
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(5 + 5 / 12, "feet")
  8624. },
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(785, "feet")
  8628. },
  8629. {
  8630. name: "Megamacro",
  8631. height: math.unit(24.5, "miles")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(6, "feet"),
  8640. weight: math.unit(150, "lb"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/goddess-elizabeth/front.svg",
  8644. extra: 1800 / 1525,
  8645. bottom: 0.005
  8646. }
  8647. },
  8648. foot: {
  8649. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8650. name: "Foot",
  8651. image: {
  8652. source: "./media/characters/goddess-elizabeth/foot.svg"
  8653. }
  8654. },
  8655. mouth: {
  8656. height: math.unit(6, "feet"),
  8657. name: "Mouth",
  8658. image: {
  8659. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Micro",
  8666. height: math.unit(12, "feet")
  8667. },
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(80, "miles"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Macro",
  8675. height: math.unit(15000, "parsecs")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(5 + 9 / 12, "feet"),
  8684. weight: math.unit(144, "lb"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/kara/front.svg"
  8688. }
  8689. },
  8690. feet: {
  8691. height: math.unit(6 / 6.765, "feet"),
  8692. name: "Kara's Feet",
  8693. rename: true,
  8694. image: {
  8695. source: "./media/characters/kara/feet.svg"
  8696. }
  8697. },
  8698. },
  8699. [
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(5 + 9 / 12, "feet")
  8703. },
  8704. {
  8705. name: "Macro",
  8706. height: math.unit(174, "feet"),
  8707. default: true
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(18, "feet"),
  8716. weight: math.unit(4050, "lb"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/tyrone/front.svg",
  8720. extra: 2405 / 2270,
  8721. bottom: 182 / 2587
  8722. }
  8723. },
  8724. },
  8725. [
  8726. {
  8727. name: "Normal",
  8728. height: math.unit(18, "feet"),
  8729. default: true
  8730. },
  8731. {
  8732. name: "Macro",
  8733. height: math.unit(300, "feet")
  8734. },
  8735. {
  8736. name: "Megamacro",
  8737. height: math.unit(15, "km")
  8738. },
  8739. {
  8740. name: "Gigamacro",
  8741. height: math.unit(500, "km")
  8742. },
  8743. {
  8744. name: "Teramacro",
  8745. height: math.unit(0.5, "gigameters")
  8746. },
  8747. {
  8748. name: "Omnimacro",
  8749. height: math.unit(1e252, "yottauniverse")
  8750. },
  8751. ]
  8752. ))
  8753. characterMakers.push(() => makeCharacter(
  8754. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8755. {
  8756. front: {
  8757. height: math.unit(7 + 8 / 12, "feet"),
  8758. weight: math.unit(120, "lb"),
  8759. name: "Front",
  8760. image: {
  8761. source: "./media/characters/danny/front.svg",
  8762. extra: 1490 / 1350
  8763. }
  8764. },
  8765. back: {
  8766. height: math.unit(7 + 8 / 12, "feet"),
  8767. weight: math.unit(120, "lb"),
  8768. name: "Back",
  8769. image: {
  8770. source: "./media/characters/danny/back.svg",
  8771. extra: 1490 / 1350
  8772. }
  8773. },
  8774. },
  8775. [
  8776. {
  8777. name: "Normal",
  8778. height: math.unit(7 + 8 / 12, "feet"),
  8779. default: true
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(3.5, "inches"),
  8788. weight: math.unit(19, "grams"),
  8789. name: "Front",
  8790. image: {
  8791. source: "./media/characters/mallow/front.svg",
  8792. extra: 471 / 431
  8793. }
  8794. },
  8795. back: {
  8796. height: math.unit(3.5, "inches"),
  8797. weight: math.unit(19, "grams"),
  8798. name: "Back",
  8799. image: {
  8800. source: "./media/characters/mallow/back.svg",
  8801. extra: 471 / 431
  8802. }
  8803. },
  8804. },
  8805. [
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(3.5, "inches"),
  8809. default: true
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(9, "feet"),
  8818. weight: math.unit(230, "kg"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/starry-aqua/front.svg"
  8822. }
  8823. },
  8824. back: {
  8825. height: math.unit(9, "feet"),
  8826. weight: math.unit(230, "kg"),
  8827. name: "Back",
  8828. image: {
  8829. source: "./media/characters/starry-aqua/back.svg"
  8830. }
  8831. },
  8832. hand: {
  8833. height: math.unit(9 * 0.1168, "feet"),
  8834. name: "Hand",
  8835. image: {
  8836. source: "./media/characters/starry-aqua/hand.svg"
  8837. }
  8838. },
  8839. foot: {
  8840. height: math.unit(9 * 0.18, "feet"),
  8841. name: "Foot",
  8842. image: {
  8843. source: "./media/characters/starry-aqua/foot.svg"
  8844. }
  8845. }
  8846. },
  8847. [
  8848. {
  8849. name: "Micro",
  8850. height: math.unit(3, "inches")
  8851. },
  8852. {
  8853. name: "Normal",
  8854. height: math.unit(9, "feet")
  8855. },
  8856. {
  8857. name: "Macro",
  8858. height: math.unit(300, "feet"),
  8859. default: true
  8860. },
  8861. {
  8862. name: "Megamacro",
  8863. height: math.unit(3200, "feet")
  8864. }
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8869. {
  8870. front: {
  8871. height: math.unit(6, "feet"),
  8872. weight: math.unit(230, "lb"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/luka/front.svg",
  8876. extra: 1,
  8877. bottom: 0.025
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(12 + 8 / 12, "feet"),
  8885. default: true
  8886. },
  8887. {
  8888. name: "Minimacro",
  8889. height: math.unit(20, "feet")
  8890. },
  8891. {
  8892. name: "Macro",
  8893. height: math.unit(250, "feet")
  8894. },
  8895. {
  8896. name: "Megamacro",
  8897. height: math.unit(5, "miles")
  8898. },
  8899. {
  8900. name: "Gigamacro",
  8901. height: math.unit(8000, "miles")
  8902. },
  8903. ]
  8904. ))
  8905. characterMakers.push(() => makeCharacter(
  8906. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8907. {
  8908. front: {
  8909. height: math.unit(6, "feet"),
  8910. weight: math.unit(150, "lb"),
  8911. name: "Front",
  8912. image: {
  8913. source: "./media/characters/natalie-nightring/front.svg",
  8914. extra: 1,
  8915. bottom: 0.06
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Uh Oh",
  8922. height: math.unit(0.1, "mm")
  8923. },
  8924. {
  8925. name: "Small",
  8926. height: math.unit(3, "inches")
  8927. },
  8928. {
  8929. name: "Human Scale",
  8930. height: math.unit(6, "feet")
  8931. },
  8932. {
  8933. name: "Librarian",
  8934. height: math.unit(50, "feet"),
  8935. default: true
  8936. },
  8937. {
  8938. name: "Immense",
  8939. height: math.unit(200, "miles")
  8940. },
  8941. ]
  8942. ))
  8943. characterMakers.push(() => makeCharacter(
  8944. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8945. {
  8946. front: {
  8947. height: math.unit(6, "feet"),
  8948. weight: math.unit(180, "lbs"),
  8949. name: "Front",
  8950. image: {
  8951. source: "./media/characters/danni-rosie/front.svg",
  8952. extra: 1260 / 1128,
  8953. bottom: 0.022
  8954. }
  8955. },
  8956. },
  8957. [
  8958. {
  8959. name: "Micro",
  8960. height: math.unit(2, "inches"),
  8961. default: true
  8962. },
  8963. ]
  8964. ))
  8965. characterMakers.push(() => makeCharacter(
  8966. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8967. {
  8968. front: {
  8969. height: math.unit(5 + 9 / 12, "feet"),
  8970. weight: math.unit(220, "lb"),
  8971. name: "Front",
  8972. image: {
  8973. source: "./media/characters/samantha-kruse/front.svg",
  8974. extra: (985 / 935),
  8975. bottom: 0.03
  8976. }
  8977. },
  8978. frontUndressed: {
  8979. height: math.unit(5 + 9 / 12, "feet"),
  8980. weight: math.unit(220, "lb"),
  8981. name: "Front (Undressed)",
  8982. image: {
  8983. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8984. extra: (973 / 923),
  8985. bottom: 0.025
  8986. }
  8987. },
  8988. fat: {
  8989. height: math.unit(5 + 9 / 12, "feet"),
  8990. weight: math.unit(900, "lb"),
  8991. name: "Front (Fat)",
  8992. image: {
  8993. source: "./media/characters/samantha-kruse/fat.svg",
  8994. extra: 2688 / 2561
  8995. }
  8996. },
  8997. },
  8998. [
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(5 + 9 / 12, "feet"),
  9002. default: true
  9003. }
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9008. {
  9009. back: {
  9010. height: math.unit(5 + 4 / 12, "feet"),
  9011. weight: math.unit(4963, "lb"),
  9012. name: "Back",
  9013. image: {
  9014. source: "./media/characters/amelia-rosie/back.svg",
  9015. extra: 1113 / 963,
  9016. bottom: 0.01
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Level 0",
  9023. height: math.unit(5 + 4 / 12, "feet")
  9024. },
  9025. {
  9026. name: "Level 1",
  9027. height: math.unit(164597, "feet"),
  9028. default: true
  9029. },
  9030. {
  9031. name: "Level 2",
  9032. height: math.unit(956243, "miles")
  9033. },
  9034. {
  9035. name: "Level 3",
  9036. height: math.unit(29421709423, "miles")
  9037. },
  9038. {
  9039. name: "Level 4",
  9040. height: math.unit(154, "lightyears")
  9041. },
  9042. {
  9043. name: "Level 5",
  9044. height: math.unit(4738272, "lightyears")
  9045. },
  9046. {
  9047. name: "Level 6",
  9048. height: math.unit(145787152896, "lightyears")
  9049. },
  9050. ]
  9051. ))
  9052. characterMakers.push(() => makeCharacter(
  9053. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9054. {
  9055. front: {
  9056. height: math.unit(5 + 11 / 12, "feet"),
  9057. weight: math.unit(65, "kg"),
  9058. name: "Front",
  9059. image: {
  9060. source: "./media/characters/rook-kitara/front.svg",
  9061. extra: 1347 / 1274,
  9062. bottom: 0.005
  9063. }
  9064. },
  9065. },
  9066. [
  9067. {
  9068. name: "Totally Unfair",
  9069. height: math.unit(1.8, "mm")
  9070. },
  9071. {
  9072. name: "Lap Rookie",
  9073. height: math.unit(1.4, "feet")
  9074. },
  9075. {
  9076. name: "Normal",
  9077. height: math.unit(5 + 11 / 12, "feet"),
  9078. default: true
  9079. },
  9080. {
  9081. name: "How Did This Happen",
  9082. height: math.unit(80, "miles")
  9083. }
  9084. ]
  9085. ))
  9086. characterMakers.push(() => makeCharacter(
  9087. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9088. {
  9089. front: {
  9090. height: math.unit(7, "feet"),
  9091. weight: math.unit(300, "lb"),
  9092. name: "Front",
  9093. image: {
  9094. source: "./media/characters/pisces/front.svg",
  9095. extra: 2255 / 2115,
  9096. bottom: 0.03
  9097. }
  9098. },
  9099. back: {
  9100. height: math.unit(7, "feet"),
  9101. weight: math.unit(300, "lb"),
  9102. name: "Back",
  9103. image: {
  9104. source: "./media/characters/pisces/back.svg",
  9105. extra: 2146 / 2055,
  9106. bottom: 0.04
  9107. }
  9108. },
  9109. },
  9110. [
  9111. {
  9112. name: "Normal",
  9113. height: math.unit(7, "feet"),
  9114. default: true
  9115. },
  9116. {
  9117. name: "Swimming Pool",
  9118. height: math.unit(12.2, "meters")
  9119. },
  9120. {
  9121. name: "Olympic Swimming Pool",
  9122. height: math.unit(56.3, "meters")
  9123. },
  9124. {
  9125. name: "Lake Superior",
  9126. height: math.unit(93900, "meters")
  9127. },
  9128. {
  9129. name: "Mediterranean Sea",
  9130. height: math.unit(644457, "meters")
  9131. },
  9132. {
  9133. name: "World's Oceans",
  9134. height: math.unit(4567491, "meters")
  9135. },
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9140. {
  9141. front: {
  9142. height: math.unit(2.3, "meters"),
  9143. weight: math.unit(120, "kg"),
  9144. name: "Front",
  9145. image: {
  9146. source: "./media/characters/zelas/front.svg"
  9147. }
  9148. },
  9149. side: {
  9150. height: math.unit(2.3, "meters"),
  9151. weight: math.unit(120, "kg"),
  9152. name: "Side",
  9153. image: {
  9154. source: "./media/characters/zelas/side.svg"
  9155. }
  9156. },
  9157. back: {
  9158. height: math.unit(2.3, "meters"),
  9159. weight: math.unit(120, "kg"),
  9160. name: "Back",
  9161. image: {
  9162. source: "./media/characters/zelas/back.svg"
  9163. }
  9164. },
  9165. foot: {
  9166. height: math.unit(1.116, "feet"),
  9167. name: "Foot",
  9168. image: {
  9169. source: "./media/characters/zelas/foot.svg"
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(2.3, "meters")
  9177. },
  9178. {
  9179. name: "Macro",
  9180. height: math.unit(30, "meters"),
  9181. default: true
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9187. {
  9188. front: {
  9189. height: math.unit(1, "inch"),
  9190. weight: math.unit(0.21, "grams"),
  9191. name: "Front",
  9192. image: {
  9193. source: "./media/characters/talbot/front.svg",
  9194. extra: 594 / 544
  9195. }
  9196. },
  9197. },
  9198. [
  9199. {
  9200. name: "Micro",
  9201. height: math.unit(1, "inch"),
  9202. default: true
  9203. },
  9204. ]
  9205. ))
  9206. characterMakers.push(() => makeCharacter(
  9207. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9208. {
  9209. front: {
  9210. height: math.unit(3 + 3 / 12, "feet"),
  9211. weight: math.unit(51.8, "lb"),
  9212. name: "Front",
  9213. image: {
  9214. source: "./media/characters/fliss/front.svg",
  9215. extra: 840 / 640
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Teeny Tiny",
  9222. height: math.unit(1, "mm")
  9223. },
  9224. {
  9225. name: "Small",
  9226. height: math.unit(1, "inch"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Standard Sylveon",
  9231. height: math.unit(3 + 3 / 12, "feet")
  9232. },
  9233. {
  9234. name: "Large Nuisance",
  9235. height: math.unit(33, "feet")
  9236. },
  9237. {
  9238. name: "City Filler",
  9239. height: math.unit(3000, "feet")
  9240. },
  9241. {
  9242. name: "New Horizon",
  9243. height: math.unit(6000, "miles")
  9244. },
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9249. {
  9250. front: {
  9251. height: math.unit(5, "cm"),
  9252. weight: math.unit(1.94, "g"),
  9253. name: "Front",
  9254. image: {
  9255. source: "./media/characters/fleta/front.svg",
  9256. extra: 835 / 803
  9257. }
  9258. },
  9259. back: {
  9260. height: math.unit(5, "cm"),
  9261. weight: math.unit(1.94, "g"),
  9262. name: "Back",
  9263. image: {
  9264. source: "./media/characters/fleta/back.svg",
  9265. extra: 835 / 803
  9266. }
  9267. },
  9268. },
  9269. [
  9270. {
  9271. name: "Micro",
  9272. height: math.unit(5, "cm"),
  9273. default: true
  9274. },
  9275. ]
  9276. ))
  9277. characterMakers.push(() => makeCharacter(
  9278. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9279. {
  9280. front: {
  9281. height: math.unit(6, "feet"),
  9282. weight: math.unit(225, "lb"),
  9283. name: "Front",
  9284. image: {
  9285. source: "./media/characters/dominic/front.svg",
  9286. extra: 1770 / 1620,
  9287. bottom: 0.025
  9288. }
  9289. },
  9290. back: {
  9291. height: math.unit(6, "feet"),
  9292. weight: math.unit(225, "lb"),
  9293. name: "Back",
  9294. image: {
  9295. source: "./media/characters/dominic/back.svg",
  9296. extra: 1745 / 1620,
  9297. bottom: 0.065
  9298. }
  9299. },
  9300. },
  9301. [
  9302. {
  9303. name: "Nano",
  9304. height: math.unit(0.1, "mm")
  9305. },
  9306. {
  9307. name: "Micro-",
  9308. height: math.unit(1, "mm")
  9309. },
  9310. {
  9311. name: "Micro",
  9312. height: math.unit(4, "inches")
  9313. },
  9314. {
  9315. name: "Normal",
  9316. height: math.unit(6 + 4 / 12, "feet"),
  9317. default: true
  9318. },
  9319. {
  9320. name: "Macro",
  9321. height: math.unit(115, "feet")
  9322. },
  9323. {
  9324. name: "Macro+",
  9325. height: math.unit(955, "feet")
  9326. },
  9327. {
  9328. name: "Megamacro",
  9329. height: math.unit(8990, "feet")
  9330. },
  9331. {
  9332. name: "Gigmacro",
  9333. height: math.unit(9310, "miles")
  9334. },
  9335. {
  9336. name: "Teramacro",
  9337. height: math.unit(1567005010, "miles")
  9338. },
  9339. {
  9340. name: "Examacro",
  9341. height: math.unit(1425, "parsecs")
  9342. },
  9343. ]
  9344. ))
  9345. characterMakers.push(() => makeCharacter(
  9346. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9347. {
  9348. front: {
  9349. height: math.unit(400, "feet"),
  9350. weight: math.unit(44444444, "lb"),
  9351. name: "Front",
  9352. image: {
  9353. source: "./media/characters/major-colonel/front.svg"
  9354. }
  9355. },
  9356. back: {
  9357. height: math.unit(400, "feet"),
  9358. weight: math.unit(44444444, "lb"),
  9359. name: "Back",
  9360. image: {
  9361. source: "./media/characters/major-colonel/back.svg"
  9362. }
  9363. },
  9364. },
  9365. [
  9366. {
  9367. name: "Macro",
  9368. height: math.unit(400, "feet"),
  9369. default: true
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9375. {
  9376. catFront: {
  9377. height: math.unit(6, "feet"),
  9378. weight: math.unit(120, "lb"),
  9379. name: "Front (Cat Side)",
  9380. image: {
  9381. source: "./media/characters/axel-lycan/cat-front.svg",
  9382. extra: 430 / 402,
  9383. bottom: 43 / 472.35
  9384. }
  9385. },
  9386. catBack: {
  9387. height: math.unit(6, "feet"),
  9388. weight: math.unit(120, "lb"),
  9389. name: "Back (Cat Side)",
  9390. image: {
  9391. source: "./media/characters/axel-lycan/cat-back.svg",
  9392. extra: 447 / 419,
  9393. bottom: 23.3 / 469
  9394. }
  9395. },
  9396. wolfFront: {
  9397. height: math.unit(6, "feet"),
  9398. weight: math.unit(120, "lb"),
  9399. name: "Front (Wolf Side)",
  9400. image: {
  9401. source: "./media/characters/axel-lycan/wolf-front.svg",
  9402. extra: 485 / 456,
  9403. bottom: 19 / 504
  9404. }
  9405. },
  9406. wolfBack: {
  9407. height: math.unit(6, "feet"),
  9408. weight: math.unit(120, "lb"),
  9409. name: "Back (Wolf Side)",
  9410. image: {
  9411. source: "./media/characters/axel-lycan/wolf-back.svg",
  9412. extra: 475 / 438,
  9413. bottom: 39.2 / 514
  9414. }
  9415. },
  9416. },
  9417. [
  9418. {
  9419. name: "Macro",
  9420. height: math.unit(1, "km"),
  9421. default: true
  9422. },
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9427. {
  9428. front: {
  9429. height: math.unit(5 + 9 / 12, "feet"),
  9430. weight: math.unit(175, "lb"),
  9431. name: "Front",
  9432. image: {
  9433. source: "./media/characters/vanrel-hyena/front.svg",
  9434. extra: 1086 / 1010,
  9435. bottom: 0.04
  9436. }
  9437. },
  9438. },
  9439. [
  9440. {
  9441. name: "Normal",
  9442. height: math.unit(5 + 9 / 12, "feet"),
  9443. default: true
  9444. },
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9449. {
  9450. front: {
  9451. height: math.unit(6, "feet"),
  9452. weight: math.unit(103, "lb"),
  9453. name: "Front",
  9454. image: {
  9455. source: "./media/characters/abbott-absol/front.svg",
  9456. extra: 2010 / 1842
  9457. }
  9458. },
  9459. },
  9460. [
  9461. {
  9462. name: "Megamicro",
  9463. height: math.unit(0.1, "mm")
  9464. },
  9465. {
  9466. name: "Micro",
  9467. height: math.unit(1, "inch")
  9468. },
  9469. {
  9470. name: "Normal",
  9471. height: math.unit(6, "feet"),
  9472. default: true
  9473. },
  9474. ]
  9475. ))
  9476. characterMakers.push(() => makeCharacter(
  9477. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9478. {
  9479. front: {
  9480. height: math.unit(6, "feet"),
  9481. weight: math.unit(264, "lb"),
  9482. name: "Front",
  9483. image: {
  9484. source: "./media/characters/hector/front.svg",
  9485. extra: 2280 / 2130,
  9486. bottom: 0.07
  9487. }
  9488. },
  9489. },
  9490. [
  9491. {
  9492. name: "Normal",
  9493. height: math.unit(12.25, "foot"),
  9494. default: true
  9495. },
  9496. {
  9497. name: "Macro",
  9498. height: math.unit(160, "feet")
  9499. },
  9500. ]
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9504. {
  9505. front: {
  9506. height: math.unit(6, "feet"),
  9507. weight: math.unit(150, "lb"),
  9508. name: "Front",
  9509. image: {
  9510. source: "./media/characters/sal/front.svg",
  9511. extra: 1846 / 1699,
  9512. bottom: 0.04
  9513. }
  9514. },
  9515. },
  9516. [
  9517. {
  9518. name: "Megamacro",
  9519. height: math.unit(10, "miles"),
  9520. default: true
  9521. },
  9522. ]
  9523. ))
  9524. characterMakers.push(() => makeCharacter(
  9525. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9526. {
  9527. front: {
  9528. height: math.unit(3, "meters"),
  9529. weight: math.unit(450, "kg"),
  9530. name: "front",
  9531. image: {
  9532. source: "./media/characters/ranger/front.svg",
  9533. extra: 2401 / 2243,
  9534. bottom: 0.05
  9535. }
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Normal",
  9541. height: math.unit(3, "meters"),
  9542. default: true
  9543. },
  9544. ]
  9545. ))
  9546. characterMakers.push(() => makeCharacter(
  9547. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9548. {
  9549. front: {
  9550. height: math.unit(14, "feet"),
  9551. weight: math.unit(800, "kg"),
  9552. name: "Front",
  9553. image: {
  9554. source: "./media/characters/theresa/front.svg",
  9555. extra: 3575 / 3346,
  9556. bottom: 0.03
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Normal",
  9563. height: math.unit(14, "feet"),
  9564. default: true
  9565. },
  9566. ]
  9567. ))
  9568. characterMakers.push(() => makeCharacter(
  9569. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9570. {
  9571. front: {
  9572. height: math.unit(6, "feet"),
  9573. weight: math.unit(3, "kg"),
  9574. name: "Front",
  9575. image: {
  9576. source: "./media/characters/ine/front.svg",
  9577. extra: 678 / 539,
  9578. bottom: 0.023
  9579. }
  9580. },
  9581. },
  9582. [
  9583. {
  9584. name: "Normal",
  9585. height: math.unit(2.265, "feet"),
  9586. default: true
  9587. },
  9588. ]
  9589. ))
  9590. characterMakers.push(() => makeCharacter(
  9591. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9592. {
  9593. front: {
  9594. height: math.unit(5, "feet"),
  9595. weight: math.unit(30, "kg"),
  9596. name: "Front",
  9597. image: {
  9598. source: "./media/characters/vial/front.svg",
  9599. extra: 1365 / 1277,
  9600. bottom: 0.04
  9601. }
  9602. },
  9603. },
  9604. [
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(5, "feet"),
  9608. default: true
  9609. },
  9610. ]
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9614. {
  9615. side: {
  9616. height: math.unit(3.4, "meters"),
  9617. weight: math.unit(1000, "lb"),
  9618. name: "Side",
  9619. image: {
  9620. source: "./media/characters/rovoska/side.svg",
  9621. extra: 4403 / 1515
  9622. }
  9623. },
  9624. },
  9625. [
  9626. {
  9627. name: "Normal",
  9628. height: math.unit(3.4, "meters"),
  9629. default: true
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9635. {
  9636. front: {
  9637. height: math.unit(8, "feet"),
  9638. weight: math.unit(315, "lb"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/gunner-rotthbauer/front.svg"
  9642. }
  9643. },
  9644. back: {
  9645. height: math.unit(8, "feet"),
  9646. weight: math.unit(315, "lb"),
  9647. name: "Back",
  9648. image: {
  9649. source: "./media/characters/gunner-rotthbauer/back.svg"
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Micro",
  9656. height: math.unit(3.5, "inches")
  9657. },
  9658. {
  9659. name: "Normal",
  9660. height: math.unit(8, "feet"),
  9661. default: true
  9662. },
  9663. {
  9664. name: "Macro",
  9665. height: math.unit(250, "feet")
  9666. },
  9667. {
  9668. name: "Megamacro",
  9669. height: math.unit(1, "AU")
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(5 + 5 / 12, "feet"),
  9678. weight: math.unit(140, "lb"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/allatia/front.svg",
  9682. extra: 1227 / 1180,
  9683. bottom: 0.027
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(5 + 5 / 12, "feet")
  9691. },
  9692. {
  9693. name: "Macro",
  9694. height: math.unit(250, "feet"),
  9695. default: true
  9696. },
  9697. {
  9698. name: "Megamacro",
  9699. height: math.unit(8, "miles")
  9700. }
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(6, "feet"),
  9708. weight: math.unit(120, "lb"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/tene/front.svg",
  9712. extra: 1728 / 1578,
  9713. bottom: 0.022
  9714. }
  9715. },
  9716. stomping: {
  9717. height: math.unit(2.025, "meters"),
  9718. weight: math.unit(120, "lb"),
  9719. name: "Stomping",
  9720. image: {
  9721. source: "./media/characters/tene/stomping.svg",
  9722. extra: 938 / 873,
  9723. bottom: 0.01
  9724. }
  9725. },
  9726. sitting: {
  9727. height: math.unit(1, "meter"),
  9728. weight: math.unit(120, "lb"),
  9729. name: "Sitting",
  9730. image: {
  9731. source: "./media/characters/tene/sitting.svg",
  9732. extra: 437 / 415,
  9733. bottom: 0.1
  9734. }
  9735. },
  9736. feral: {
  9737. height: math.unit(3.9, "feet"),
  9738. weight: math.unit(250, "lb"),
  9739. name: "Feral",
  9740. image: {
  9741. source: "./media/characters/tene/feral.svg",
  9742. extra: 717 / 458,
  9743. bottom: 0.179
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(6, "feet")
  9751. },
  9752. {
  9753. name: "Macro",
  9754. height: math.unit(300, "feet"),
  9755. default: true
  9756. },
  9757. {
  9758. name: "Megamacro",
  9759. height: math.unit(5, "miles")
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9765. {
  9766. side: {
  9767. height: math.unit(6, "feet"),
  9768. name: "Side",
  9769. image: {
  9770. source: "./media/characters/evander/side.svg",
  9771. extra: 877 / 477
  9772. }
  9773. },
  9774. },
  9775. [
  9776. {
  9777. name: "Normal",
  9778. height: math.unit(0.83, "meters"),
  9779. default: true
  9780. },
  9781. ]
  9782. ))
  9783. characterMakers.push(() => makeCharacter(
  9784. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9785. {
  9786. front: {
  9787. height: math.unit(12, "feet"),
  9788. weight: math.unit(1000, "lb"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9792. extra: 1762 / 1611
  9793. }
  9794. },
  9795. back: {
  9796. height: math.unit(12, "feet"),
  9797. weight: math.unit(1000, "lb"),
  9798. name: "Back",
  9799. image: {
  9800. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9801. extra: 1762 / 1611
  9802. }
  9803. },
  9804. },
  9805. [
  9806. {
  9807. name: "Normal",
  9808. height: math.unit(12, "feet"),
  9809. default: true
  9810. },
  9811. {
  9812. name: "Kaiju",
  9813. height: math.unit(150, "feet")
  9814. },
  9815. ]
  9816. ))
  9817. characterMakers.push(() => makeCharacter(
  9818. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9819. {
  9820. front: {
  9821. height: math.unit(6, "feet"),
  9822. weight: math.unit(150, "lb"),
  9823. name: "Front",
  9824. image: {
  9825. source: "./media/characters/zero-alurus/front.svg"
  9826. }
  9827. },
  9828. back: {
  9829. height: math.unit(6, "feet"),
  9830. weight: math.unit(150, "lb"),
  9831. name: "Back",
  9832. image: {
  9833. source: "./media/characters/zero-alurus/back.svg"
  9834. }
  9835. },
  9836. },
  9837. [
  9838. {
  9839. name: "Normal",
  9840. height: math.unit(5 + 10 / 12, "feet")
  9841. },
  9842. {
  9843. name: "Macro",
  9844. height: math.unit(60, "feet"),
  9845. default: true
  9846. },
  9847. {
  9848. name: "Macro+",
  9849. height: math.unit(450, "feet")
  9850. },
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9855. {
  9856. front: {
  9857. height: math.unit(6, "feet"),
  9858. weight: math.unit(200, "lb"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/mega-shi/front.svg",
  9862. extra: 1279 / 1250,
  9863. bottom: 0.02
  9864. }
  9865. },
  9866. back: {
  9867. height: math.unit(6, "feet"),
  9868. weight: math.unit(200, "lb"),
  9869. name: "Back",
  9870. image: {
  9871. source: "./media/characters/mega-shi/back.svg",
  9872. extra: 1279 / 1250,
  9873. bottom: 0.02
  9874. }
  9875. },
  9876. },
  9877. [
  9878. {
  9879. name: "Micro",
  9880. height: math.unit(16 + 6 / 12, "feet")
  9881. },
  9882. {
  9883. name: "Third Dimension",
  9884. height: math.unit(40, "meters")
  9885. },
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(660, "feet"),
  9889. default: true
  9890. },
  9891. {
  9892. name: "Megamacro",
  9893. height: math.unit(10, "miles")
  9894. },
  9895. {
  9896. name: "Planetary Launch",
  9897. height: math.unit(500, "miles")
  9898. },
  9899. {
  9900. name: "Interstellar",
  9901. height: math.unit(1e9, "miles")
  9902. },
  9903. {
  9904. name: "Leaving the Universe",
  9905. height: math.unit(1, "gigaparsec")
  9906. },
  9907. {
  9908. name: "Travelling Universes",
  9909. height: math.unit(30e15, "parsecs")
  9910. },
  9911. ]
  9912. ))
  9913. characterMakers.push(() => makeCharacter(
  9914. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9915. {
  9916. front: {
  9917. height: math.unit(6, "feet"),
  9918. weight: math.unit(150, "lb"),
  9919. name: "Front",
  9920. image: {
  9921. source: "./media/characters/odyssey/front.svg",
  9922. extra: 1782 / 1582,
  9923. bottom: 0.01
  9924. }
  9925. },
  9926. side: {
  9927. height: math.unit(5.7, "feet"),
  9928. weight: math.unit(140, "lb"),
  9929. name: "Side",
  9930. image: {
  9931. source: "./media/characters/odyssey/side.svg",
  9932. extra: 6462 / 5700
  9933. }
  9934. },
  9935. },
  9936. [
  9937. {
  9938. name: "Normal",
  9939. height: math.unit(5 + 4 / 12, "feet")
  9940. },
  9941. {
  9942. name: "Macro",
  9943. height: math.unit(1, "km")
  9944. },
  9945. {
  9946. name: "Megamacro",
  9947. height: math.unit(3000, "km")
  9948. },
  9949. {
  9950. name: "Gigamacro",
  9951. height: math.unit(1, "AU"),
  9952. default: true
  9953. },
  9954. {
  9955. name: "Omniversal",
  9956. height: math.unit(100e14, "lightyears")
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(6, "feet"),
  9965. weight: math.unit(300, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/mekuto/front.svg",
  9969. extra: 921 / 832,
  9970. bottom: 0.03
  9971. }
  9972. },
  9973. hand: {
  9974. height: math.unit(6 / 10.24, "feet"),
  9975. name: "Hand",
  9976. image: {
  9977. source: "./media/characters/mekuto/hand.svg"
  9978. }
  9979. },
  9980. foot: {
  9981. height: math.unit(6 / 5.05, "feet"),
  9982. name: "Foot",
  9983. image: {
  9984. source: "./media/characters/mekuto/foot.svg"
  9985. }
  9986. },
  9987. },
  9988. [
  9989. {
  9990. name: "Minimicro",
  9991. height: math.unit(0.2, "inches")
  9992. },
  9993. {
  9994. name: "Micro",
  9995. height: math.unit(1.5, "inches")
  9996. },
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(5 + 11 / 12, "feet"),
  10000. default: true
  10001. },
  10002. {
  10003. name: "Minimacro",
  10004. height: math.unit(17 + 9 / 12, "feet")
  10005. },
  10006. {
  10007. name: "Macro",
  10008. height: math.unit(177.5, "feet")
  10009. },
  10010. {
  10011. name: "Megamacro",
  10012. height: math.unit(152, "miles")
  10013. },
  10014. ]
  10015. ))
  10016. characterMakers.push(() => makeCharacter(
  10017. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10018. {
  10019. front: {
  10020. height: math.unit(6.5, "inches"),
  10021. weight: math.unit(13, "oz"),
  10022. name: "Front",
  10023. image: {
  10024. source: "./media/characters/dafydd-tomos/front.svg",
  10025. extra: 2990 / 2603,
  10026. bottom: 0.03
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Micro",
  10033. height: math.unit(6.5, "inches"),
  10034. default: true
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10040. {
  10041. front: {
  10042. height: math.unit(6, "feet"),
  10043. weight: math.unit(150, "lb"),
  10044. name: "Front",
  10045. image: {
  10046. source: "./media/characters/splinter/front.svg",
  10047. extra: 2990 / 2882,
  10048. bottom: 0.04
  10049. }
  10050. },
  10051. back: {
  10052. height: math.unit(6, "feet"),
  10053. weight: math.unit(150, "lb"),
  10054. name: "Back",
  10055. image: {
  10056. source: "./media/characters/splinter/back.svg",
  10057. extra: 2990 / 2882,
  10058. bottom: 0.04
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(6, "feet")
  10066. },
  10067. {
  10068. name: "Macro",
  10069. height: math.unit(230, "meters"),
  10070. default: true
  10071. },
  10072. ]
  10073. ))
  10074. characterMakers.push(() => makeCharacter(
  10075. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10076. {
  10077. front: {
  10078. height: math.unit(4 + 10 / 12, "feet"),
  10079. weight: math.unit(480, "lb"),
  10080. name: "Front",
  10081. image: {
  10082. source: "./media/characters/snow-gabumon/front.svg",
  10083. extra: 1140 / 963,
  10084. bottom: 0.058
  10085. }
  10086. },
  10087. back: {
  10088. height: math.unit(4 + 10 / 12, "feet"),
  10089. weight: math.unit(480, "lb"),
  10090. name: "Back",
  10091. image: {
  10092. source: "./media/characters/snow-gabumon/back.svg",
  10093. extra: 1115 / 962,
  10094. bottom: 0.041
  10095. }
  10096. },
  10097. frontUndresed: {
  10098. height: math.unit(4 + 10 / 12, "feet"),
  10099. weight: math.unit(480, "lb"),
  10100. name: "Front (Undressed)",
  10101. image: {
  10102. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10103. extra: 1061 / 960,
  10104. bottom: 0.045
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Micro",
  10111. height: math.unit(1, "inch")
  10112. },
  10113. {
  10114. name: "Normal",
  10115. height: math.unit(4 + 10 / 12, "feet"),
  10116. default: true
  10117. },
  10118. {
  10119. name: "Macro",
  10120. height: math.unit(200, "feet")
  10121. },
  10122. {
  10123. name: "Megamacro",
  10124. height: math.unit(120, "miles")
  10125. },
  10126. {
  10127. name: "Gigamacro",
  10128. height: math.unit(9800, "miles")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(1.7, "meters"),
  10137. weight: math.unit(140, "lb"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/moody/front.svg",
  10141. extra: 3226 / 3007,
  10142. bottom: 0.087
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Micro",
  10149. height: math.unit(1, "mm")
  10150. },
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(1.7, "meters"),
  10154. default: true
  10155. },
  10156. {
  10157. name: "Macro",
  10158. height: math.unit(80, "meters")
  10159. },
  10160. {
  10161. name: "Macro+",
  10162. height: math.unit(500, "meters")
  10163. },
  10164. ]
  10165. ))
  10166. characterMakers.push(() => makeCharacter(
  10167. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10168. {
  10169. front: {
  10170. height: math.unit(6, "feet"),
  10171. weight: math.unit(150, "lb"),
  10172. name: "Front",
  10173. image: {
  10174. source: "./media/characters/zyas/front.svg",
  10175. extra: 1180 / 1120,
  10176. bottom: 0.045
  10177. }
  10178. },
  10179. },
  10180. [
  10181. {
  10182. name: "Normal",
  10183. height: math.unit(10, "feet"),
  10184. default: true
  10185. },
  10186. {
  10187. name: "Macro",
  10188. height: math.unit(500, "feet")
  10189. },
  10190. {
  10191. name: "Megamacro",
  10192. height: math.unit(5, "miles")
  10193. },
  10194. {
  10195. name: "Teramacro",
  10196. height: math.unit(150000, "miles")
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(6, "feet"),
  10205. weight: math.unit(150, "lb"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/cuon/front.svg",
  10209. extra: 1390 / 1320,
  10210. bottom: 0.008
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Micro",
  10217. height: math.unit(3, "inches")
  10218. },
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(18 + 9 / 12, "feet"),
  10222. default: true
  10223. },
  10224. {
  10225. name: "Macro",
  10226. height: math.unit(360, "feet")
  10227. },
  10228. {
  10229. name: "Megamacro",
  10230. height: math.unit(360, "miles")
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(2.4, "meters"),
  10239. weight: math.unit(70, "kg"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/nyanuxk/front.svg",
  10243. extra: 1172 / 1084,
  10244. bottom: 0.065
  10245. }
  10246. },
  10247. side: {
  10248. height: math.unit(2.4, "meters"),
  10249. weight: math.unit(70, "kg"),
  10250. name: "Side",
  10251. image: {
  10252. source: "./media/characters/nyanuxk/side.svg",
  10253. extra: 1190 / 1132,
  10254. bottom: 0.007
  10255. }
  10256. },
  10257. back: {
  10258. height: math.unit(2.4, "meters"),
  10259. weight: math.unit(70, "kg"),
  10260. name: "Back",
  10261. image: {
  10262. source: "./media/characters/nyanuxk/back.svg",
  10263. extra: 1200 / 1141,
  10264. bottom: 0.015
  10265. }
  10266. },
  10267. foot: {
  10268. height: math.unit(0.52, "meters"),
  10269. name: "Foot",
  10270. image: {
  10271. source: "./media/characters/nyanuxk/foot.svg"
  10272. }
  10273. },
  10274. },
  10275. [
  10276. {
  10277. name: "Micro",
  10278. height: math.unit(2, "cm")
  10279. },
  10280. {
  10281. name: "Normal",
  10282. height: math.unit(2.4, "meters"),
  10283. default: true
  10284. },
  10285. {
  10286. name: "Smaller Macro",
  10287. height: math.unit(120, "meters")
  10288. },
  10289. {
  10290. name: "Bigger Macro",
  10291. height: math.unit(1.2, "km")
  10292. },
  10293. {
  10294. name: "Megamacro",
  10295. height: math.unit(15, "kilometers")
  10296. },
  10297. {
  10298. name: "Gigamacro",
  10299. height: math.unit(2000, "km")
  10300. },
  10301. {
  10302. name: "Teramacro",
  10303. height: math.unit(500000, "km")
  10304. },
  10305. ]
  10306. ))
  10307. characterMakers.push(() => makeCharacter(
  10308. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10309. {
  10310. side: {
  10311. height: math.unit(6, "feet"),
  10312. name: "Side",
  10313. image: {
  10314. source: "./media/characters/ailbhe/side.svg",
  10315. extra: 757 / 464,
  10316. bottom: 0.041
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(1.07, "meters"),
  10324. default: true
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(120, "kg"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/zevulfius/front.svg",
  10337. extra: 965 / 903
  10338. }
  10339. },
  10340. side: {
  10341. height: math.unit(6, "feet"),
  10342. weight: math.unit(120, "kg"),
  10343. name: "Side",
  10344. image: {
  10345. source: "./media/characters/zevulfius/side.svg",
  10346. extra: 939 / 900
  10347. }
  10348. },
  10349. back: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(120, "kg"),
  10352. name: "Back",
  10353. image: {
  10354. source: "./media/characters/zevulfius/back.svg",
  10355. extra: 918 / 854,
  10356. bottom: 0.005
  10357. }
  10358. },
  10359. foot: {
  10360. height: math.unit(6 / 3.72, "feet"),
  10361. name: "Foot",
  10362. image: {
  10363. source: "./media/characters/zevulfius/foot.svg"
  10364. }
  10365. },
  10366. },
  10367. [
  10368. {
  10369. name: "Macro",
  10370. height: math.unit(750, "meters")
  10371. },
  10372. {
  10373. name: "Megamacro",
  10374. height: math.unit(20, "km"),
  10375. default: true
  10376. },
  10377. {
  10378. name: "Gigamacro",
  10379. height: math.unit(2000, "km")
  10380. },
  10381. {
  10382. name: "Teramacro",
  10383. height: math.unit(250000, "km")
  10384. },
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(100, "feet"),
  10392. weight: math.unit(350, "kg"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/rikes/front.svg",
  10396. extra: 1565 / 1483,
  10397. bottom: 0.017
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Macro",
  10404. height: math.unit(100, "feet"),
  10405. default: true
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10411. {
  10412. anthro: {
  10413. height: math.unit(8, "feet"),
  10414. weight: math.unit(120, "kg"),
  10415. name: "Anthro",
  10416. image: {
  10417. source: "./media/characters/adam-silver-mane/anthro.svg",
  10418. extra: 5743 / 5339,
  10419. bottom: 0.07
  10420. }
  10421. },
  10422. taur: {
  10423. height: math.unit(16, "feet"),
  10424. weight: math.unit(1500, "kg"),
  10425. name: "Taur",
  10426. image: {
  10427. source: "./media/characters/adam-silver-mane/taur.svg",
  10428. extra: 1713 / 1571,
  10429. bottom: 0.01
  10430. }
  10431. },
  10432. },
  10433. [
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(8, "feet")
  10437. },
  10438. {
  10439. name: "Minimacro",
  10440. height: math.unit(80, "feet")
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(800, "feet"),
  10445. default: true
  10446. },
  10447. {
  10448. name: "Megamacro",
  10449. height: math.unit(8000, "feet")
  10450. },
  10451. {
  10452. name: "Gigamacro",
  10453. height: math.unit(800, "miles")
  10454. },
  10455. {
  10456. name: "Teramacro",
  10457. height: math.unit(80000, "miles")
  10458. },
  10459. {
  10460. name: "Celestial",
  10461. height: math.unit(8e6, "miles")
  10462. },
  10463. {
  10464. name: "Star Dragon",
  10465. height: math.unit(800000, "parsecs")
  10466. },
  10467. {
  10468. name: "Godly",
  10469. height: math.unit(800, "teraparsecs")
  10470. },
  10471. ]
  10472. ))
  10473. characterMakers.push(() => makeCharacter(
  10474. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10475. {
  10476. front: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(150, "lb"),
  10479. name: "Front",
  10480. image: {
  10481. source: "./media/characters/ky'owin/front.svg",
  10482. extra: 3888 / 3068,
  10483. bottom: 0.015
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(6 + 8 / 12, "feet")
  10491. },
  10492. {
  10493. name: "Large",
  10494. height: math.unit(68, "feet")
  10495. },
  10496. {
  10497. name: "Macro",
  10498. height: math.unit(132, "feet")
  10499. },
  10500. {
  10501. name: "Macro+",
  10502. height: math.unit(340, "feet")
  10503. },
  10504. {
  10505. name: "Macro++",
  10506. height: math.unit(680, "feet"),
  10507. default: true
  10508. },
  10509. {
  10510. name: "Megamacro",
  10511. height: math.unit(1, "mile")
  10512. },
  10513. {
  10514. name: "Megamacro+",
  10515. height: math.unit(10, "miles")
  10516. },
  10517. ]
  10518. ))
  10519. characterMakers.push(() => makeCharacter(
  10520. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10521. {
  10522. front: {
  10523. height: math.unit(4, "feet"),
  10524. weight: math.unit(50, "lb"),
  10525. name: "Front",
  10526. image: {
  10527. source: "./media/characters/mal/front.svg",
  10528. extra: 785 / 724,
  10529. bottom: 0.07
  10530. }
  10531. },
  10532. },
  10533. [
  10534. {
  10535. name: "Micro",
  10536. height: math.unit(4, "inches")
  10537. },
  10538. {
  10539. name: "Normal",
  10540. height: math.unit(4, "feet"),
  10541. default: true
  10542. },
  10543. {
  10544. name: "Macro",
  10545. height: math.unit(200, "feet")
  10546. },
  10547. ]
  10548. ))
  10549. characterMakers.push(() => makeCharacter(
  10550. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10551. {
  10552. front: {
  10553. height: math.unit(6, "feet"),
  10554. weight: math.unit(150, "lb"),
  10555. name: "Front",
  10556. image: {
  10557. source: "./media/characters/jordan-deware/front.svg",
  10558. extra: 1191 / 1012
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Nano",
  10565. height: math.unit(0.01, "mm")
  10566. },
  10567. {
  10568. name: "Minimicro",
  10569. height: math.unit(1, "mm")
  10570. },
  10571. {
  10572. name: "Micro",
  10573. height: math.unit(0.5, "inches")
  10574. },
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(4, "feet"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Minimacro",
  10582. height: math.unit(40, "meters")
  10583. },
  10584. {
  10585. name: "Small Macro",
  10586. height: math.unit(400, "meters")
  10587. },
  10588. {
  10589. name: "Macro",
  10590. height: math.unit(4, "miles")
  10591. },
  10592. {
  10593. name: "Megamacro",
  10594. height: math.unit(40, "miles")
  10595. },
  10596. {
  10597. name: "Megamacro+",
  10598. height: math.unit(400, "miles")
  10599. },
  10600. {
  10601. name: "Gigamacro",
  10602. height: math.unit(400000, "miles")
  10603. },
  10604. ]
  10605. ))
  10606. characterMakers.push(() => makeCharacter(
  10607. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10608. {
  10609. side: {
  10610. height: math.unit(6, "feet"),
  10611. weight: math.unit(150, "lb"),
  10612. name: "Side",
  10613. image: {
  10614. source: "./media/characters/kimiko/side.svg",
  10615. extra: 600 / 358
  10616. }
  10617. },
  10618. },
  10619. [
  10620. {
  10621. name: "Normal",
  10622. height: math.unit(15, "feet"),
  10623. default: true
  10624. },
  10625. {
  10626. name: "Macro",
  10627. height: math.unit(220, "feet")
  10628. },
  10629. {
  10630. name: "Macro+",
  10631. height: math.unit(1450, "feet")
  10632. },
  10633. {
  10634. name: "Megamacro",
  10635. height: math.unit(11500, "feet")
  10636. },
  10637. {
  10638. name: "Gigamacro",
  10639. height: math.unit(9500, "miles")
  10640. },
  10641. {
  10642. name: "Teramacro",
  10643. height: math.unit(2208005005, "miles")
  10644. },
  10645. {
  10646. name: "Examacro",
  10647. height: math.unit(2750, "parsecs")
  10648. },
  10649. {
  10650. name: "Zettamacro",
  10651. height: math.unit(101500, "parsecs")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(6, "feet"),
  10660. weight: math.unit(70, "kg"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/andrew-sleepy/front.svg"
  10664. }
  10665. },
  10666. side: {
  10667. height: math.unit(6, "feet"),
  10668. weight: math.unit(70, "kg"),
  10669. name: "Side",
  10670. image: {
  10671. source: "./media/characters/andrew-sleepy/side.svg"
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Micro",
  10678. height: math.unit(1, "mm"),
  10679. default: true
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10685. {
  10686. front: {
  10687. height: math.unit(6, "feet"),
  10688. weight: math.unit(150, "lb"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/judio/front.svg",
  10692. extra: 1258 / 1110
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Normal",
  10699. height: math.unit(5 + 6 / 12, "feet")
  10700. },
  10701. {
  10702. name: "Macro",
  10703. height: math.unit(1000, "feet"),
  10704. default: true
  10705. },
  10706. {
  10707. name: "Megamacro",
  10708. height: math.unit(10, "miles")
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(6, "feet"),
  10717. weight: math.unit(68, "kg"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/nomaxice/front.svg",
  10721. extra: 1498 / 1073,
  10722. bottom: 0.075
  10723. }
  10724. },
  10725. foot: {
  10726. height: math.unit(1.1, "feet"),
  10727. name: "Foot",
  10728. image: {
  10729. source: "./media/characters/nomaxice/foot.svg"
  10730. }
  10731. },
  10732. },
  10733. [
  10734. {
  10735. name: "Micro",
  10736. height: math.unit(8, "cm")
  10737. },
  10738. {
  10739. name: "Norm",
  10740. height: math.unit(1.82, "m")
  10741. },
  10742. {
  10743. name: "Norm+",
  10744. height: math.unit(8.8, "feet")
  10745. },
  10746. {
  10747. name: "Big",
  10748. height: math.unit(8, "meters"),
  10749. default: true
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(18, "meters")
  10754. },
  10755. {
  10756. name: "Macro+",
  10757. height: math.unit(88, "meters")
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10763. {
  10764. front: {
  10765. height: math.unit(12, "feet"),
  10766. weight: math.unit(1.5, "tons"),
  10767. name: "Front",
  10768. image: {
  10769. source: "./media/characters/dydros/front.svg",
  10770. extra: 863 / 800,
  10771. bottom: 0.015
  10772. }
  10773. },
  10774. back: {
  10775. height: math.unit(12, "feet"),
  10776. weight: math.unit(1.5, "tons"),
  10777. name: "Back",
  10778. image: {
  10779. source: "./media/characters/dydros/back.svg",
  10780. extra: 900 / 843,
  10781. bottom: 0.005
  10782. }
  10783. },
  10784. },
  10785. [
  10786. {
  10787. name: "Normal",
  10788. height: math.unit(12, "feet"),
  10789. default: true
  10790. },
  10791. ]
  10792. ))
  10793. characterMakers.push(() => makeCharacter(
  10794. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10795. {
  10796. front: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(100, "kg"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/riggi/front.svg",
  10802. extra: 5787 / 5303
  10803. }
  10804. },
  10805. hyper: {
  10806. height: math.unit(6 * 5 / 3, "feet"),
  10807. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10808. name: "Hyper",
  10809. image: {
  10810. source: "./media/characters/riggi/hyper.svg",
  10811. extra: 3595 / 3485
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Small Macro",
  10818. height: math.unit(50, "feet")
  10819. },
  10820. {
  10821. name: "Default",
  10822. height: math.unit(200, "feet"),
  10823. default: true
  10824. },
  10825. {
  10826. name: "Loom",
  10827. height: math.unit(10000, "feet")
  10828. },
  10829. {
  10830. name: "Cruising Altitude",
  10831. height: math.unit(30000, "feet")
  10832. },
  10833. {
  10834. name: "Megamacro",
  10835. height: math.unit(100, "miles")
  10836. },
  10837. {
  10838. name: "Continent Sized",
  10839. height: math.unit(2800, "miles")
  10840. },
  10841. {
  10842. name: "Earth Sized",
  10843. height: math.unit(8000, "miles")
  10844. },
  10845. ]
  10846. ))
  10847. characterMakers.push(() => makeCharacter(
  10848. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10849. {
  10850. front: {
  10851. height: math.unit(6, "feet"),
  10852. weight: math.unit(250, "lb"),
  10853. name: "Front",
  10854. image: {
  10855. source: "./media/characters/alexi/front.svg",
  10856. extra: 3483 / 3291,
  10857. bottom: 0.04
  10858. }
  10859. },
  10860. back: {
  10861. height: math.unit(6, "feet"),
  10862. weight: math.unit(250, "lb"),
  10863. name: "Back",
  10864. image: {
  10865. source: "./media/characters/alexi/back.svg",
  10866. extra: 3533 / 3356,
  10867. bottom: 0.021
  10868. }
  10869. },
  10870. frontTransforming: {
  10871. height: math.unit(8.58, "feet"),
  10872. weight: math.unit(1300, "lb"),
  10873. name: "Transforming",
  10874. image: {
  10875. source: "./media/characters/alexi/front-transforming.svg",
  10876. extra: 437 / 409,
  10877. bottom: 19 / 458.66
  10878. }
  10879. },
  10880. frontTransformed: {
  10881. height: math.unit(12.5, "feet"),
  10882. weight: math.unit(4000, "lb"),
  10883. name: "Transformed",
  10884. image: {
  10885. source: "./media/characters/alexi/front-transformed.svg",
  10886. extra: 639 / 614,
  10887. bottom: 30.55 / 671
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(14, "feet"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Minimacro",
  10899. height: math.unit(30, "meters")
  10900. },
  10901. {
  10902. name: "Macro",
  10903. height: math.unit(500, "meters")
  10904. },
  10905. {
  10906. name: "Megamacro",
  10907. height: math.unit(9000, "km")
  10908. },
  10909. {
  10910. name: "Teramacro",
  10911. height: math.unit(384000, "km")
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(150, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/kayroo/front.svg",
  10924. extra: 1153 / 1038,
  10925. bottom: 0.06
  10926. }
  10927. },
  10928. foot: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(150, "lb"),
  10931. name: "Foot",
  10932. image: {
  10933. source: "./media/characters/kayroo/foot.svg"
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Normal",
  10940. height: math.unit(8, "feet"),
  10941. default: true
  10942. },
  10943. {
  10944. name: "Minimacro",
  10945. height: math.unit(250, "feet")
  10946. },
  10947. {
  10948. name: "Macro",
  10949. height: math.unit(2800, "feet")
  10950. },
  10951. {
  10952. name: "Megamacro",
  10953. height: math.unit(5200, "feet")
  10954. },
  10955. {
  10956. name: "Gigamacro",
  10957. height: math.unit(27000, "feet")
  10958. },
  10959. {
  10960. name: "Omega",
  10961. height: math.unit(45000, "feet")
  10962. },
  10963. ]
  10964. ))
  10965. characterMakers.push(() => makeCharacter(
  10966. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10967. {
  10968. front: {
  10969. height: math.unit(18, "feet"),
  10970. weight: math.unit(5800, "lb"),
  10971. name: "Front",
  10972. image: {
  10973. source: "./media/characters/rhys/front.svg",
  10974. extra: 3386 / 3090,
  10975. bottom: 0.07
  10976. }
  10977. },
  10978. },
  10979. [
  10980. {
  10981. name: "Normal",
  10982. height: math.unit(18, "feet"),
  10983. default: true
  10984. },
  10985. {
  10986. name: "Working Size",
  10987. height: math.unit(200, "feet")
  10988. },
  10989. {
  10990. name: "Demolition Size",
  10991. height: math.unit(2000, "feet")
  10992. },
  10993. {
  10994. name: "Maximum Licensed Size",
  10995. height: math.unit(5, "miles")
  10996. },
  10997. {
  10998. name: "Maximum Observed Size",
  10999. height: math.unit(10, "yottameters")
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11005. {
  11006. front: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(250, "lb"),
  11009. name: "Front",
  11010. image: {
  11011. source: "./media/characters/toto/front.svg",
  11012. extra: 527 / 479,
  11013. bottom: 0.05
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Micro",
  11020. height: math.unit(3, "feet")
  11021. },
  11022. {
  11023. name: "Normal",
  11024. height: math.unit(10, "feet")
  11025. },
  11026. {
  11027. name: "Macro",
  11028. height: math.unit(150, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Megamacro",
  11033. height: math.unit(1200, "feet")
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "King", species: ["lion"], tags: ["anthro"] },
  11039. {
  11040. back: {
  11041. height: math.unit(6, "feet"),
  11042. weight: math.unit(150, "lb"),
  11043. name: "Back",
  11044. image: {
  11045. source: "./media/characters/king/back.svg"
  11046. }
  11047. },
  11048. },
  11049. [
  11050. {
  11051. name: "Micro",
  11052. height: math.unit(2, "inches")
  11053. },
  11054. {
  11055. name: "Normal",
  11056. height: math.unit(8, "feet")
  11057. },
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(200, "feet"),
  11061. default: true
  11062. },
  11063. {
  11064. name: "Megamacro",
  11065. height: math.unit(50, "miles")
  11066. },
  11067. ]
  11068. ))
  11069. characterMakers.push(() => makeCharacter(
  11070. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11071. {
  11072. anthro: {
  11073. height: math.unit(6 + 5 / 12, "feet"),
  11074. weight: math.unit(280, "lb"),
  11075. name: "Anthro",
  11076. image: {
  11077. source: "./media/characters/cordite/anthro.svg",
  11078. extra: 1986 / 1905,
  11079. bottom: 0.025
  11080. }
  11081. },
  11082. feral: {
  11083. height: math.unit(2, "feet"),
  11084. weight: math.unit(90, "lb"),
  11085. name: "Feral",
  11086. image: {
  11087. source: "./media/characters/cordite/feral.svg",
  11088. extra: 1260 / 755,
  11089. bottom: 0.05
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Normal",
  11096. height: math.unit(6 + 5 / 12, "feet"),
  11097. default: true
  11098. },
  11099. ]
  11100. ))
  11101. characterMakers.push(() => makeCharacter(
  11102. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11103. {
  11104. front: {
  11105. height: math.unit(6, "feet"),
  11106. weight: math.unit(150, "lb"),
  11107. name: "Front",
  11108. image: {
  11109. source: "./media/characters/pianostrong/front.svg",
  11110. extra: 6577 / 6254,
  11111. bottom: 0.02
  11112. }
  11113. },
  11114. side: {
  11115. height: math.unit(6, "feet"),
  11116. weight: math.unit(150, "lb"),
  11117. name: "Side",
  11118. image: {
  11119. source: "./media/characters/pianostrong/side.svg",
  11120. extra: 6106 / 5730
  11121. }
  11122. },
  11123. back: {
  11124. height: math.unit(6, "feet"),
  11125. weight: math.unit(150, "lb"),
  11126. name: "Back",
  11127. image: {
  11128. source: "./media/characters/pianostrong/back.svg",
  11129. extra: 6085 / 5733,
  11130. bottom: 0.01
  11131. }
  11132. },
  11133. },
  11134. [
  11135. {
  11136. name: "Macro",
  11137. height: math.unit(100, "feet")
  11138. },
  11139. {
  11140. name: "Macro+",
  11141. height: math.unit(300, "feet"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Macro++",
  11146. height: math.unit(1000, "feet")
  11147. },
  11148. ]
  11149. ))
  11150. characterMakers.push(() => makeCharacter(
  11151. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11152. {
  11153. front: {
  11154. height: math.unit(6, "feet"),
  11155. weight: math.unit(150, "lb"),
  11156. name: "Front",
  11157. image: {
  11158. source: "./media/characters/kona/front.svg",
  11159. extra: 2960 / 2629,
  11160. bottom: 0.005
  11161. }
  11162. },
  11163. },
  11164. [
  11165. {
  11166. name: "Normal",
  11167. height: math.unit(11 + 8 / 12, "feet")
  11168. },
  11169. {
  11170. name: "Macro",
  11171. height: math.unit(850, "feet"),
  11172. default: true
  11173. },
  11174. {
  11175. name: "Macro+",
  11176. height: math.unit(1.5, "km"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Megamacro",
  11181. height: math.unit(80, "miles")
  11182. },
  11183. {
  11184. name: "Gigamacro",
  11185. height: math.unit(3500, "miles")
  11186. },
  11187. ]
  11188. ))
  11189. characterMakers.push(() => makeCharacter(
  11190. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11191. {
  11192. side: {
  11193. height: math.unit(1.9, "meters"),
  11194. weight: math.unit(326, "kg"),
  11195. name: "Side",
  11196. image: {
  11197. source: "./media/characters/levi/side.svg",
  11198. extra: 1704 / 1334,
  11199. bottom: 0.02
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(1.9, "meters"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Macro",
  11211. height: math.unit(20, "meters")
  11212. },
  11213. {
  11214. name: "Macro+",
  11215. height: math.unit(200, "meters")
  11216. },
  11217. {
  11218. name: "Megamacro",
  11219. height: math.unit(2, "km")
  11220. },
  11221. {
  11222. name: "Megamacro+",
  11223. height: math.unit(20, "km")
  11224. },
  11225. {
  11226. name: "Gigamacro",
  11227. height: math.unit(2500, "km")
  11228. },
  11229. {
  11230. name: "Gigamacro+",
  11231. height: math.unit(120000, "km")
  11232. },
  11233. {
  11234. name: "Teramacro",
  11235. height: math.unit(7.77e6, "km")
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11241. {
  11242. front: {
  11243. height: math.unit(6 + 4/12, "feet"),
  11244. weight: math.unit(190, "lb"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/bmc/front.svg",
  11248. extra: 1626/1472,
  11249. bottom: 79/1705
  11250. }
  11251. },
  11252. back: {
  11253. height: math.unit(6 + 4/12, "feet"),
  11254. weight: math.unit(190, "lb"),
  11255. name: "Back",
  11256. image: {
  11257. source: "./media/characters/bmc/back.svg",
  11258. extra: 1640/1479,
  11259. bottom: 45/1685
  11260. }
  11261. },
  11262. frontArmor: {
  11263. height: math.unit(6 + 4/12, "feet"),
  11264. weight: math.unit(190, "lb"),
  11265. name: "Front-armor",
  11266. image: {
  11267. source: "./media/characters/bmc/front-armor.svg",
  11268. extra: 1538/1468,
  11269. bottom: 79/1617
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Human-sized",
  11276. height: math.unit(6 + 4 / 12, "feet")
  11277. },
  11278. {
  11279. name: "Interactive Size",
  11280. height: math.unit(25, "feet")
  11281. },
  11282. {
  11283. name: "Small",
  11284. height: math.unit(250, "feet")
  11285. },
  11286. {
  11287. name: "Normal",
  11288. height: math.unit(1250, "feet"),
  11289. default: true
  11290. },
  11291. {
  11292. name: "Good Day",
  11293. height: math.unit(88, "miles")
  11294. },
  11295. {
  11296. name: "Largest Measured Size",
  11297. height: math.unit(105.960, "galaxies")
  11298. },
  11299. ]
  11300. ))
  11301. characterMakers.push(() => makeCharacter(
  11302. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11303. {
  11304. front: {
  11305. height: math.unit(20, "feet"),
  11306. weight: math.unit(2016, "kg"),
  11307. name: "Front",
  11308. image: {
  11309. source: "./media/characters/sven-the-kaiju/front.svg",
  11310. extra: 1277/1250,
  11311. bottom: 35/1312
  11312. }
  11313. },
  11314. mouth: {
  11315. height: math.unit(1.85, "feet"),
  11316. name: "Mouth",
  11317. image: {
  11318. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Fairy",
  11325. height: math.unit(6, "inches")
  11326. },
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(20, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Rampage",
  11334. height: math.unit(200, "feet")
  11335. },
  11336. {
  11337. name: "Archfey Forest Guardian",
  11338. height: math.unit(1, "mile")
  11339. },
  11340. ]
  11341. ))
  11342. characterMakers.push(() => makeCharacter(
  11343. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11344. {
  11345. front: {
  11346. height: math.unit(4, "meters"),
  11347. weight: math.unit(2, "tons"),
  11348. name: "Front",
  11349. image: {
  11350. source: "./media/characters/marik/front.svg",
  11351. extra: 1057 / 1003,
  11352. bottom: 0.08
  11353. }
  11354. },
  11355. },
  11356. [
  11357. {
  11358. name: "Normal",
  11359. height: math.unit(4, "meters"),
  11360. default: true
  11361. },
  11362. {
  11363. name: "Macro",
  11364. height: math.unit(20, "meters")
  11365. },
  11366. {
  11367. name: "Megamacro",
  11368. height: math.unit(50, "km")
  11369. },
  11370. {
  11371. name: "Gigamacro",
  11372. height: math.unit(100, "km")
  11373. },
  11374. {
  11375. name: "Alpha Macro",
  11376. height: math.unit(7.88e7, "yottameters")
  11377. },
  11378. ]
  11379. ))
  11380. characterMakers.push(() => makeCharacter(
  11381. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11382. {
  11383. front: {
  11384. height: math.unit(6, "feet"),
  11385. weight: math.unit(110, "lb"),
  11386. name: "Front",
  11387. image: {
  11388. source: "./media/characters/mel/front.svg",
  11389. extra: 736 / 617,
  11390. bottom: 0.017
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Pico",
  11397. height: math.unit(3, "pm")
  11398. },
  11399. {
  11400. name: "Nano",
  11401. height: math.unit(3, "nm")
  11402. },
  11403. {
  11404. name: "Micro",
  11405. height: math.unit(0.3, "mm"),
  11406. default: true
  11407. },
  11408. {
  11409. name: "Micro+",
  11410. height: math.unit(3, "mm")
  11411. },
  11412. {
  11413. name: "Normal",
  11414. height: math.unit(5 + 10.5 / 12, "feet")
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11420. {
  11421. kaiju: {
  11422. height: math.unit(1.75, "meters"),
  11423. weight: math.unit(55, "kg"),
  11424. name: "Kaiju",
  11425. image: {
  11426. source: "./media/characters/lykonous/kaiju.svg",
  11427. extra: 1055 / 946,
  11428. bottom: 0.135
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(2.5, "meters"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Kaiju Dragon",
  11440. height: math.unit(60, "meters")
  11441. },
  11442. {
  11443. name: "Mega Kaiju",
  11444. height: math.unit(120, "km")
  11445. },
  11446. {
  11447. name: "Giga Kaiju",
  11448. height: math.unit(200, "megameters")
  11449. },
  11450. {
  11451. name: "Terra Kaiju",
  11452. height: math.unit(400, "gigameters")
  11453. },
  11454. {
  11455. name: "Kaiju Dragon God",
  11456. height: math.unit(13000, "exaparsecs")
  11457. },
  11458. ]
  11459. ))
  11460. characterMakers.push(() => makeCharacter(
  11461. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11462. {
  11463. front: {
  11464. height: math.unit(6, "feet"),
  11465. weight: math.unit(150, "lb"),
  11466. name: "Front",
  11467. image: {
  11468. source: "./media/characters/blü/front.svg",
  11469. extra: 1883 / 1564,
  11470. bottom: 0.031
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Normal",
  11477. height: math.unit(13, "feet"),
  11478. default: true
  11479. },
  11480. {
  11481. name: "Big Boi",
  11482. height: math.unit(150, "meters")
  11483. },
  11484. {
  11485. name: "Mini Stomper",
  11486. height: math.unit(300, "meters")
  11487. },
  11488. {
  11489. name: "Macro",
  11490. height: math.unit(1000, "meters")
  11491. },
  11492. {
  11493. name: "Megamacro",
  11494. height: math.unit(11000, "meters")
  11495. },
  11496. {
  11497. name: "Gigamacro",
  11498. height: math.unit(11000, "km")
  11499. },
  11500. {
  11501. name: "Teramacro",
  11502. height: math.unit(420000, "km")
  11503. },
  11504. {
  11505. name: "Examacro",
  11506. height: math.unit(120, "parsecs")
  11507. },
  11508. {
  11509. name: "God Tho",
  11510. height: math.unit(98000000000, "parsecs")
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11516. {
  11517. taurFront: {
  11518. height: math.unit(6, "feet"),
  11519. weight: math.unit(200, "lb"),
  11520. name: "Taur (Front)",
  11521. image: {
  11522. source: "./media/characters/scales/taur-front.svg",
  11523. extra: 1,
  11524. bottom: 0.05
  11525. }
  11526. },
  11527. taurBack: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(200, "lb"),
  11530. name: "Taur (Back)",
  11531. image: {
  11532. source: "./media/characters/scales/taur-back.svg",
  11533. extra: 1,
  11534. bottom: 0.08
  11535. }
  11536. },
  11537. anthro: {
  11538. height: math.unit(6 * 7 / 12, "feet"),
  11539. weight: math.unit(100, "lb"),
  11540. name: "Anthro",
  11541. image: {
  11542. source: "./media/characters/scales/anthro.svg",
  11543. extra: 1,
  11544. bottom: 0.06
  11545. }
  11546. },
  11547. },
  11548. [
  11549. {
  11550. name: "Normal",
  11551. height: math.unit(12, "feet"),
  11552. default: true
  11553. },
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11558. {
  11559. front: {
  11560. height: math.unit(6, "feet"),
  11561. weight: math.unit(150, "lb"),
  11562. name: "Front",
  11563. image: {
  11564. source: "./media/characters/koragos/front.svg",
  11565. extra: 841 / 794,
  11566. bottom: 0.035
  11567. }
  11568. },
  11569. back: {
  11570. height: math.unit(6, "feet"),
  11571. weight: math.unit(150, "lb"),
  11572. name: "Back",
  11573. image: {
  11574. source: "./media/characters/koragos/back.svg",
  11575. extra: 841 / 810,
  11576. bottom: 0.022
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(6 + 11 / 12, "feet"),
  11584. default: true
  11585. },
  11586. {
  11587. name: "Macro",
  11588. height: math.unit(490, "feet")
  11589. },
  11590. {
  11591. name: "Megamacro",
  11592. height: math.unit(10, "miles")
  11593. },
  11594. {
  11595. name: "Gigamacro",
  11596. height: math.unit(50, "miles")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(250, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/xylrem/front.svg",
  11609. extra: 3323 / 3050,
  11610. bottom: 0.065
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Micro",
  11617. height: math.unit(4, "feet")
  11618. },
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(16, "feet"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(2720, "feet")
  11627. },
  11628. {
  11629. name: "Megamacro",
  11630. height: math.unit(25000, "miles")
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11636. {
  11637. front: {
  11638. height: math.unit(8, "feet"),
  11639. weight: math.unit(250, "kg"),
  11640. name: "Front",
  11641. image: {
  11642. source: "./media/characters/ikideru/front.svg",
  11643. extra: 930 / 870,
  11644. bottom: 0.087
  11645. }
  11646. },
  11647. back: {
  11648. height: math.unit(8, "feet"),
  11649. weight: math.unit(250, "kg"),
  11650. name: "Back",
  11651. image: {
  11652. source: "./media/characters/ikideru/back.svg",
  11653. extra: 919 / 852,
  11654. bottom: 0.055
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Rare",
  11661. height: math.unit(8, "feet"),
  11662. default: true
  11663. },
  11664. {
  11665. name: "Playful Loom",
  11666. height: math.unit(80, "feet")
  11667. },
  11668. {
  11669. name: "City Leaner",
  11670. height: math.unit(230, "feet")
  11671. },
  11672. {
  11673. name: "Megamacro",
  11674. height: math.unit(2500, "feet")
  11675. },
  11676. {
  11677. name: "Gigamacro",
  11678. height: math.unit(26400, "feet")
  11679. },
  11680. {
  11681. name: "Tectonic Shifter",
  11682. height: math.unit(1.7, "megameters")
  11683. },
  11684. {
  11685. name: "Planet Carer",
  11686. height: math.unit(21, "megameters")
  11687. },
  11688. {
  11689. name: "God",
  11690. height: math.unit(11157.22, "parsecs")
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11696. {
  11697. front: {
  11698. height: math.unit(6, "feet"),
  11699. weight: math.unit(120, "lb"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/neo/front.svg"
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Micro",
  11709. height: math.unit(2, "inches"),
  11710. default: true
  11711. },
  11712. {
  11713. name: "Human Size",
  11714. height: math.unit(5 + 8 / 12, "feet")
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(13 + 10 / 12, "feet"),
  11723. weight: math.unit(5320, "lb"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/chauncey-chantz/front.svg",
  11727. extra: 1587 / 1435,
  11728. bottom: 0.02
  11729. }
  11730. },
  11731. },
  11732. [
  11733. {
  11734. name: "Normal",
  11735. height: math.unit(13 + 10 / 12, "feet"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Macro",
  11740. height: math.unit(45, "feet")
  11741. },
  11742. {
  11743. name: "Megamacro",
  11744. height: math.unit(250, "miles")
  11745. },
  11746. {
  11747. name: "Planetary",
  11748. height: math.unit(10000, "miles")
  11749. },
  11750. {
  11751. name: "Galactic",
  11752. height: math.unit(40000, "parsecs")
  11753. },
  11754. {
  11755. name: "Universal",
  11756. height: math.unit(1, "yottameter")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11762. {
  11763. front: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Front",
  11767. image: {
  11768. source: "./media/characters/epifox/front.svg",
  11769. extra: 1,
  11770. bottom: 0.075
  11771. }
  11772. },
  11773. },
  11774. [
  11775. {
  11776. name: "Micro",
  11777. height: math.unit(6, "inches")
  11778. },
  11779. {
  11780. name: "Normal",
  11781. height: math.unit(12, "feet"),
  11782. default: true
  11783. },
  11784. {
  11785. name: "Macro",
  11786. height: math.unit(3810, "feet")
  11787. },
  11788. {
  11789. name: "Megamacro",
  11790. height: math.unit(500, "miles")
  11791. },
  11792. ]
  11793. ))
  11794. characterMakers.push(() => makeCharacter(
  11795. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11796. {
  11797. front: {
  11798. height: math.unit(1.8796, "m"),
  11799. weight: math.unit(230, "lb"),
  11800. name: "Front",
  11801. image: {
  11802. source: "./media/characters/colin-t/front.svg",
  11803. extra: 1272 / 1193,
  11804. bottom: 0.07
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Micro",
  11811. height: math.unit(0.571, "meters")
  11812. },
  11813. {
  11814. name: "Normal",
  11815. height: math.unit(1.8796, "meters"),
  11816. default: true
  11817. },
  11818. {
  11819. name: "Tall",
  11820. height: math.unit(4, "meters")
  11821. },
  11822. {
  11823. name: "Macro",
  11824. height: math.unit(67.241, "meters")
  11825. },
  11826. {
  11827. name: "Megamacro",
  11828. height: math.unit(371.856, "meters")
  11829. },
  11830. {
  11831. name: "Planetary",
  11832. height: math.unit(12631.5689, "km")
  11833. },
  11834. ]
  11835. ))
  11836. characterMakers.push(() => makeCharacter(
  11837. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11838. {
  11839. front: {
  11840. height: math.unit(1.85, "meters"),
  11841. weight: math.unit(80, "kg"),
  11842. name: "Front",
  11843. image: {
  11844. source: "./media/characters/matvei/front.svg",
  11845. extra: 614 / 594,
  11846. bottom: 0.01
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(1.85, "meters"),
  11854. default: true
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(5 + 9 / 12, "feet"),
  11863. weight: math.unit(70, "lb"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/quincy/front.svg",
  11867. extra: 3041 / 2751
  11868. }
  11869. },
  11870. back: {
  11871. height: math.unit(5 + 9 / 12, "feet"),
  11872. weight: math.unit(70, "lb"),
  11873. name: "Back",
  11874. image: {
  11875. source: "./media/characters/quincy/back.svg",
  11876. extra: 3041 / 2751
  11877. }
  11878. },
  11879. flying: {
  11880. height: math.unit(5 + 4 / 12, "feet"),
  11881. weight: math.unit(70, "lb"),
  11882. name: "Flying",
  11883. image: {
  11884. source: "./media/characters/quincy/flying.svg",
  11885. extra: 1044 / 930
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Micro",
  11892. height: math.unit(3, "cm")
  11893. },
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(5 + 9 / 12, "feet")
  11897. },
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(200, "meters"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Megamacro",
  11905. height: math.unit(1000, "meters")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(3 + 11/12, "feet"),
  11914. weight: math.unit(50, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/vanrel/front.svg",
  11918. extra: 1104/949,
  11919. bottom: 52/1156
  11920. }
  11921. },
  11922. back: {
  11923. height: math.unit(3 + 11/12, "feet"),
  11924. weight: math.unit(50, "lb"),
  11925. name: "Back",
  11926. image: {
  11927. source: "./media/characters/vanrel/back.svg",
  11928. extra: 1119/976,
  11929. bottom: 37/1156
  11930. }
  11931. },
  11932. tome: {
  11933. height: math.unit(1.35, "feet"),
  11934. weight: math.unit(10, "lb"),
  11935. name: "Vanrel's Tome",
  11936. rename: true,
  11937. image: {
  11938. source: "./media/characters/vanrel/tome.svg"
  11939. }
  11940. },
  11941. beans: {
  11942. height: math.unit(0.89, "feet"),
  11943. name: "Beans",
  11944. image: {
  11945. source: "./media/characters/vanrel/beans.svg"
  11946. }
  11947. },
  11948. },
  11949. [
  11950. {
  11951. name: "Normal",
  11952. height: math.unit(3 + 11/12, "feet"),
  11953. default: true
  11954. },
  11955. ]
  11956. ))
  11957. characterMakers.push(() => makeCharacter(
  11958. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11959. {
  11960. front: {
  11961. height: math.unit(7 + 5 / 12, "feet"),
  11962. name: "Front",
  11963. image: {
  11964. source: "./media/characters/kuiper-vanrel/front.svg",
  11965. extra: 1219/1169,
  11966. bottom: 69/1288
  11967. }
  11968. },
  11969. back: {
  11970. height: math.unit(7 + 5 / 12, "feet"),
  11971. name: "Back",
  11972. image: {
  11973. source: "./media/characters/kuiper-vanrel/back.svg",
  11974. extra: 1236/1193,
  11975. bottom: 27/1263
  11976. }
  11977. },
  11978. foot: {
  11979. height: math.unit(0.55, "meters"),
  11980. name: "Foot",
  11981. image: {
  11982. source: "./media/characters/kuiper-vanrel/foot.svg",
  11983. }
  11984. },
  11985. battle: {
  11986. height: math.unit(6.824, "feet"),
  11987. name: "Battle",
  11988. image: {
  11989. source: "./media/characters/kuiper-vanrel/battle.svg",
  11990. extra: 1466 / 1327,
  11991. bottom: 29 / 1492.5
  11992. }
  11993. },
  11994. },
  11995. [
  11996. {
  11997. name: "Normal",
  11998. height: math.unit(7 + 5 / 12, "feet"),
  11999. default: true
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12005. {
  12006. front: {
  12007. height: math.unit(8 + 5 / 12, "feet"),
  12008. name: "Front",
  12009. image: {
  12010. source: "./media/characters/keset-vanrel/front.svg",
  12011. extra: 1231/1148,
  12012. bottom: 82/1313
  12013. }
  12014. },
  12015. back: {
  12016. height: math.unit(8 + 5 / 12, "feet"),
  12017. name: "Back",
  12018. image: {
  12019. source: "./media/characters/keset-vanrel/back.svg",
  12020. extra: 1240/1174,
  12021. bottom: 33/1273
  12022. }
  12023. },
  12024. hand: {
  12025. height: math.unit(0.6, "meters"),
  12026. name: "Hand",
  12027. image: {
  12028. source: "./media/characters/keset-vanrel/hand.svg"
  12029. }
  12030. },
  12031. foot: {
  12032. height: math.unit(0.94978, "meters"),
  12033. name: "Foot",
  12034. image: {
  12035. source: "./media/characters/keset-vanrel/foot.svg"
  12036. }
  12037. },
  12038. battle: {
  12039. height: math.unit(7.408, "feet"),
  12040. name: "Battle",
  12041. image: {
  12042. source: "./media/characters/keset-vanrel/battle.svg",
  12043. extra: 1890 / 1386,
  12044. bottom: 73.28 / 1970
  12045. }
  12046. },
  12047. },
  12048. [
  12049. {
  12050. name: "Normal",
  12051. height: math.unit(8 + 5 / 12, "feet"),
  12052. default: true
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12058. {
  12059. front: {
  12060. height: math.unit(6, "feet"),
  12061. weight: math.unit(150, "lb"),
  12062. name: "Front",
  12063. image: {
  12064. source: "./media/characters/neos/front.svg",
  12065. extra: 1696 / 992,
  12066. bottom: 0.14
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(54, "cm"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Macro",
  12078. height: math.unit(100, "m")
  12079. },
  12080. {
  12081. name: "Megamacro",
  12082. height: math.unit(10, "km")
  12083. },
  12084. {
  12085. name: "Megamacro+",
  12086. height: math.unit(100, "km")
  12087. },
  12088. {
  12089. name: "Gigamacro",
  12090. height: math.unit(100, "Mm")
  12091. },
  12092. {
  12093. name: "Teramacro",
  12094. height: math.unit(100, "Gm")
  12095. },
  12096. {
  12097. name: "Examacro",
  12098. height: math.unit(100, "Em")
  12099. },
  12100. {
  12101. name: "Godly",
  12102. height: math.unit(10000, "Ym")
  12103. },
  12104. {
  12105. name: "Beyond Godly",
  12106. height: math.unit(25, "multiverses")
  12107. },
  12108. ]
  12109. ))
  12110. characterMakers.push(() => makeCharacter(
  12111. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12112. {
  12113. feminine: {
  12114. height: math.unit(5, "feet"),
  12115. weight: math.unit(100, "lb"),
  12116. name: "Feminine",
  12117. image: {
  12118. source: "./media/characters/sammy-mouse/feminine.svg",
  12119. extra: 2526 / 2425,
  12120. bottom: 0.123
  12121. }
  12122. },
  12123. masculine: {
  12124. height: math.unit(5, "feet"),
  12125. weight: math.unit(100, "lb"),
  12126. name: "Masculine",
  12127. image: {
  12128. source: "./media/characters/sammy-mouse/masculine.svg",
  12129. extra: 2526 / 2425,
  12130. bottom: 0.123
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "Micro",
  12137. height: math.unit(5, "inches")
  12138. },
  12139. {
  12140. name: "Normal",
  12141. height: math.unit(5, "feet"),
  12142. default: true
  12143. },
  12144. {
  12145. name: "Macro",
  12146. height: math.unit(60, "feet")
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12152. {
  12153. front: {
  12154. height: math.unit(4, "feet"),
  12155. weight: math.unit(50, "lb"),
  12156. name: "Front",
  12157. image: {
  12158. source: "./media/characters/kole/front.svg",
  12159. extra: 1423 / 1303,
  12160. bottom: 0.025
  12161. }
  12162. },
  12163. back: {
  12164. height: math.unit(4, "feet"),
  12165. weight: math.unit(50, "lb"),
  12166. name: "Back",
  12167. image: {
  12168. source: "./media/characters/kole/back.svg",
  12169. extra: 1426 / 1280,
  12170. bottom: 0.02
  12171. }
  12172. },
  12173. },
  12174. [
  12175. {
  12176. name: "Normal",
  12177. height: math.unit(4, "feet"),
  12178. default: true
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(2.5, "feet"),
  12187. weight: math.unit(32, "lb"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/rufran/front.svg",
  12191. extra: 1313/885,
  12192. bottom: 94/1407
  12193. }
  12194. },
  12195. side: {
  12196. height: math.unit(2.5, "feet"),
  12197. weight: math.unit(32, "lb"),
  12198. name: "Side",
  12199. image: {
  12200. source: "./media/characters/rufran/side.svg",
  12201. extra: 1109/852,
  12202. bottom: 118/1227
  12203. }
  12204. },
  12205. back: {
  12206. height: math.unit(2.5, "feet"),
  12207. weight: math.unit(32, "lb"),
  12208. name: "Back",
  12209. image: {
  12210. source: "./media/characters/rufran/back.svg",
  12211. extra: 1280/878,
  12212. bottom: 131/1411
  12213. }
  12214. },
  12215. mouth: {
  12216. height: math.unit(1.13, "feet"),
  12217. name: "Mouth",
  12218. image: {
  12219. source: "./media/characters/rufran/mouth.svg"
  12220. }
  12221. },
  12222. foot: {
  12223. height: math.unit(1.33, "feet"),
  12224. name: "Foot",
  12225. image: {
  12226. source: "./media/characters/rufran/foot.svg"
  12227. }
  12228. },
  12229. koboldFront: {
  12230. height: math.unit(2 + 6 / 12, "feet"),
  12231. weight: math.unit(20, "lb"),
  12232. name: "Front (Kobold)",
  12233. image: {
  12234. source: "./media/characters/rufran/kobold-front.svg",
  12235. extra: 2041 / 1839,
  12236. bottom: 0.055
  12237. }
  12238. },
  12239. koboldBack: {
  12240. height: math.unit(2 + 6 / 12, "feet"),
  12241. weight: math.unit(20, "lb"),
  12242. name: "Back (Kobold)",
  12243. image: {
  12244. source: "./media/characters/rufran/kobold-back.svg",
  12245. extra: 2054 / 1839,
  12246. bottom: 0.01
  12247. }
  12248. },
  12249. koboldHand: {
  12250. height: math.unit(0.2166, "meters"),
  12251. name: "Hand (Kobold)",
  12252. image: {
  12253. source: "./media/characters/rufran/kobold-hand.svg"
  12254. }
  12255. },
  12256. koboldFoot: {
  12257. height: math.unit(0.185, "meters"),
  12258. name: "Foot (Kobold)",
  12259. image: {
  12260. source: "./media/characters/rufran/kobold-foot.svg"
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Micro",
  12267. height: math.unit(1, "inch")
  12268. },
  12269. {
  12270. name: "Normal",
  12271. height: math.unit(2 + 6 / 12, "feet"),
  12272. default: true
  12273. },
  12274. {
  12275. name: "Big",
  12276. height: math.unit(60, "feet")
  12277. },
  12278. {
  12279. name: "Macro",
  12280. height: math.unit(325, "feet")
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12286. {
  12287. front: {
  12288. height: math.unit(0.3, "meters"),
  12289. weight: math.unit(3.5, "kg"),
  12290. name: "Front",
  12291. image: {
  12292. source: "./media/characters/chip/front.svg",
  12293. extra: 748 / 674
  12294. }
  12295. },
  12296. },
  12297. [
  12298. {
  12299. name: "Micro",
  12300. height: math.unit(1, "inch"),
  12301. default: true
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12307. {
  12308. side: {
  12309. height: math.unit(2.3, "meters"),
  12310. weight: math.unit(3500, "lb"),
  12311. name: "Side",
  12312. image: {
  12313. source: "./media/characters/torvid/side.svg",
  12314. extra: 1972 / 722,
  12315. bottom: 0.035
  12316. }
  12317. },
  12318. },
  12319. [
  12320. {
  12321. name: "Normal",
  12322. height: math.unit(2.3, "meters"),
  12323. default: true
  12324. },
  12325. ]
  12326. ))
  12327. characterMakers.push(() => makeCharacter(
  12328. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12329. {
  12330. front: {
  12331. height: math.unit(2, "meters"),
  12332. weight: math.unit(150.5, "kg"),
  12333. name: "Front",
  12334. image: {
  12335. source: "./media/characters/susan/front.svg",
  12336. extra: 693 / 635,
  12337. bottom: 0.05
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Megamacro",
  12344. height: math.unit(505, "miles"),
  12345. default: true
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12351. {
  12352. front: {
  12353. height: math.unit(6, "feet"),
  12354. weight: math.unit(150, "lb"),
  12355. name: "Front",
  12356. image: {
  12357. source: "./media/characters/raindrops/front.svg",
  12358. extra: 2655 / 2461,
  12359. bottom: 49 / 2705
  12360. }
  12361. },
  12362. back: {
  12363. height: math.unit(6, "feet"),
  12364. weight: math.unit(150, "lb"),
  12365. name: "Back",
  12366. image: {
  12367. source: "./media/characters/raindrops/back.svg",
  12368. extra: 2574 / 2400,
  12369. bottom: 65 / 2634
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Micro",
  12376. height: math.unit(6, "inches")
  12377. },
  12378. {
  12379. name: "Normal",
  12380. height: math.unit(6 + 2 / 12, "feet")
  12381. },
  12382. {
  12383. name: "Macro",
  12384. height: math.unit(131, "feet"),
  12385. default: true
  12386. },
  12387. {
  12388. name: "Megamacro",
  12389. height: math.unit(15, "miles")
  12390. },
  12391. {
  12392. name: "Gigamacro",
  12393. height: math.unit(4000, "miles")
  12394. },
  12395. {
  12396. name: "Teramacro",
  12397. height: math.unit(315000, "miles")
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(2.794, "meters"),
  12406. weight: math.unit(325, "kg"),
  12407. name: "Front",
  12408. image: {
  12409. source: "./media/characters/tezwa/front.svg",
  12410. extra: 2083 / 1906,
  12411. bottom: 0.031
  12412. }
  12413. },
  12414. foot: {
  12415. height: math.unit(0.687, "meters"),
  12416. name: "Foot",
  12417. image: {
  12418. source: "./media/characters/tezwa/foot.svg"
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Normal",
  12425. height: math.unit(9 + 2 / 12, "feet"),
  12426. default: true
  12427. },
  12428. ]
  12429. ))
  12430. characterMakers.push(() => makeCharacter(
  12431. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12432. {
  12433. front: {
  12434. height: math.unit(58, "feet"),
  12435. weight: math.unit(89000, "lb"),
  12436. name: "Front",
  12437. image: {
  12438. source: "./media/characters/typhus/front.svg",
  12439. extra: 816 / 800,
  12440. bottom: 0.065
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(58, "feet"),
  12448. default: true
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(12, "feet"),
  12457. weight: math.unit(6, "tonnes"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/lyra-von-wulf/front.svg",
  12461. extra: 1,
  12462. bottom: 0.10
  12463. }
  12464. },
  12465. frontMecha: {
  12466. height: math.unit(12, "feet"),
  12467. weight: math.unit(12, "tonnes"),
  12468. name: "Front (Mecha)",
  12469. image: {
  12470. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12471. extra: 1,
  12472. bottom: 0.042
  12473. }
  12474. },
  12475. maw: {
  12476. height: math.unit(2.2, "feet"),
  12477. name: "Maw",
  12478. image: {
  12479. source: "./media/characters/lyra-von-wulf/maw.svg"
  12480. }
  12481. },
  12482. },
  12483. [
  12484. {
  12485. name: "Normal",
  12486. height: math.unit(12, "feet"),
  12487. default: true
  12488. },
  12489. {
  12490. name: "Classic",
  12491. height: math.unit(50, "feet")
  12492. },
  12493. {
  12494. name: "Macro",
  12495. height: math.unit(500, "feet")
  12496. },
  12497. {
  12498. name: "Megamacro",
  12499. height: math.unit(1, "mile")
  12500. },
  12501. {
  12502. name: "Gigamacro",
  12503. height: math.unit(400, "miles")
  12504. },
  12505. {
  12506. name: "Teramacro",
  12507. height: math.unit(22000, "miles")
  12508. },
  12509. {
  12510. name: "Solarmacro",
  12511. height: math.unit(8600000, "miles")
  12512. },
  12513. {
  12514. name: "Galactic",
  12515. height: math.unit(1057000, "lightyears")
  12516. },
  12517. ]
  12518. ))
  12519. characterMakers.push(() => makeCharacter(
  12520. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12521. {
  12522. front: {
  12523. height: math.unit(6 + 10 / 12, "feet"),
  12524. weight: math.unit(150, "lb"),
  12525. name: "Front",
  12526. image: {
  12527. source: "./media/characters/dixon/front.svg",
  12528. extra: 3361 / 3209,
  12529. bottom: 0.01
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Normal",
  12536. height: math.unit(6 + 10 / 12, "feet"),
  12537. default: true
  12538. },
  12539. {
  12540. name: "Big",
  12541. height: math.unit(12, "meters")
  12542. },
  12543. {
  12544. name: "Macro",
  12545. height: math.unit(500, "meters")
  12546. },
  12547. {
  12548. name: "Megamacro",
  12549. height: math.unit(2, "km")
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12555. {
  12556. front: {
  12557. height: math.unit(185, "cm"),
  12558. weight: math.unit(68, "kg"),
  12559. name: "Front",
  12560. image: {
  12561. source: "./media/characters/kauko/front.svg",
  12562. extra: 1455 / 1421,
  12563. bottom: 0.03
  12564. }
  12565. },
  12566. back: {
  12567. height: math.unit(185, "cm"),
  12568. weight: math.unit(68, "kg"),
  12569. name: "Back",
  12570. image: {
  12571. source: "./media/characters/kauko/back.svg",
  12572. extra: 1455 / 1421,
  12573. bottom: 0.004
  12574. }
  12575. },
  12576. },
  12577. [
  12578. {
  12579. name: "Normal",
  12580. height: math.unit(185, "cm"),
  12581. default: true
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12587. {
  12588. front: {
  12589. height: math.unit(6, "feet"),
  12590. weight: math.unit(150, "kg"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/varg/front.svg",
  12594. extra: 1108 / 1018,
  12595. bottom: 0.0375
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Normal",
  12602. height: math.unit(5, "meters")
  12603. },
  12604. {
  12605. name: "Macro",
  12606. height: math.unit(200, "meters")
  12607. },
  12608. {
  12609. name: "Megamacro",
  12610. height: math.unit(20, "kilometers")
  12611. },
  12612. {
  12613. name: "True Size",
  12614. height: math.unit(211, "km"),
  12615. default: true
  12616. },
  12617. {
  12618. name: "Gigamacro",
  12619. height: math.unit(1000, "km")
  12620. },
  12621. {
  12622. name: "Gigamacro+",
  12623. height: math.unit(8000, "km")
  12624. },
  12625. {
  12626. name: "Teramacro",
  12627. height: math.unit(1000000, "km")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(7 + 7 / 12, "feet"),
  12636. weight: math.unit(267, "lb"),
  12637. name: "Front",
  12638. image: {
  12639. source: "./media/characters/dayza/front.svg",
  12640. extra: 1262 / 1200,
  12641. bottom: 0.035
  12642. }
  12643. },
  12644. side: {
  12645. height: math.unit(7 + 7 / 12, "feet"),
  12646. weight: math.unit(267, "lb"),
  12647. name: "Side",
  12648. image: {
  12649. source: "./media/characters/dayza/side.svg",
  12650. extra: 1295 / 1245,
  12651. bottom: 0.05
  12652. }
  12653. },
  12654. back: {
  12655. height: math.unit(7 + 7 / 12, "feet"),
  12656. weight: math.unit(267, "lb"),
  12657. name: "Back",
  12658. image: {
  12659. source: "./media/characters/dayza/back.svg",
  12660. extra: 1241 / 1170
  12661. }
  12662. },
  12663. },
  12664. [
  12665. {
  12666. name: "Normal",
  12667. height: math.unit(7 + 7 / 12, "feet"),
  12668. default: true
  12669. },
  12670. {
  12671. name: "Macro",
  12672. height: math.unit(155, "feet")
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(6 + 5 / 12, "feet"),
  12681. weight: math.unit(160, "lb"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/xanthos/front.svg",
  12685. extra: 1,
  12686. bottom: 0.04
  12687. }
  12688. },
  12689. back: {
  12690. height: math.unit(6 + 5 / 12, "feet"),
  12691. weight: math.unit(160, "lb"),
  12692. name: "Back",
  12693. image: {
  12694. source: "./media/characters/xanthos/back.svg",
  12695. extra: 1,
  12696. bottom: 0.03
  12697. }
  12698. },
  12699. hand: {
  12700. height: math.unit(0.928, "feet"),
  12701. name: "Hand",
  12702. image: {
  12703. source: "./media/characters/xanthos/hand.svg"
  12704. }
  12705. },
  12706. foot: {
  12707. height: math.unit(1.286, "feet"),
  12708. name: "Foot",
  12709. image: {
  12710. source: "./media/characters/xanthos/foot.svg"
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Normal",
  12717. height: math.unit(6 + 5 / 12, "feet"),
  12718. default: true
  12719. },
  12720. {
  12721. name: "Normal+",
  12722. height: math.unit(6, "meters")
  12723. },
  12724. {
  12725. name: "Macro",
  12726. height: math.unit(40, "feet")
  12727. },
  12728. {
  12729. name: "Macro+",
  12730. height: math.unit(200, "meters")
  12731. },
  12732. {
  12733. name: "Megamacro",
  12734. height: math.unit(20, "km")
  12735. },
  12736. {
  12737. name: "Megamacro+",
  12738. height: math.unit(100, "km")
  12739. },
  12740. {
  12741. name: "Gigamacro",
  12742. height: math.unit(200, "megameters")
  12743. },
  12744. {
  12745. name: "Gigamacro+",
  12746. height: math.unit(1.5, "gigameters")
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12752. {
  12753. front: {
  12754. height: math.unit(6 + 3 / 12, "feet"),
  12755. weight: math.unit(215, "lb"),
  12756. name: "Front",
  12757. image: {
  12758. source: "./media/characters/grynn/front.svg",
  12759. extra: 4627 / 4209,
  12760. bottom: 0.047
  12761. }
  12762. },
  12763. },
  12764. [
  12765. {
  12766. name: "Micro",
  12767. height: math.unit(6, "inches")
  12768. },
  12769. {
  12770. name: "Normal",
  12771. height: math.unit(6 + 3 / 12, "feet"),
  12772. default: true
  12773. },
  12774. {
  12775. name: "Big",
  12776. height: math.unit(104, "feet")
  12777. },
  12778. {
  12779. name: "Macro",
  12780. height: math.unit(944, "feet")
  12781. },
  12782. {
  12783. name: "Macro+",
  12784. height: math.unit(9480, "feet")
  12785. },
  12786. {
  12787. name: "Megamacro",
  12788. height: math.unit(78752, "feet")
  12789. },
  12790. {
  12791. name: "Megamacro+",
  12792. height: math.unit(630128, "feet")
  12793. },
  12794. {
  12795. name: "Megamacro++",
  12796. height: math.unit(3150695, "feet")
  12797. },
  12798. ]
  12799. ))
  12800. characterMakers.push(() => makeCharacter(
  12801. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12802. {
  12803. front: {
  12804. height: math.unit(7 + 5 / 12, "feet"),
  12805. weight: math.unit(450, "lb"),
  12806. name: "Front",
  12807. image: {
  12808. source: "./media/characters/mocha-aura/front.svg",
  12809. extra: 1907 / 1817,
  12810. bottom: 0.04
  12811. }
  12812. },
  12813. back: {
  12814. height: math.unit(7 + 5 / 12, "feet"),
  12815. weight: math.unit(450, "lb"),
  12816. name: "Back",
  12817. image: {
  12818. source: "./media/characters/mocha-aura/back.svg",
  12819. extra: 1900 / 1825,
  12820. bottom: 0.045
  12821. }
  12822. },
  12823. },
  12824. [
  12825. {
  12826. name: "Nano",
  12827. height: math.unit(1, "nm")
  12828. },
  12829. {
  12830. name: "Megamicro",
  12831. height: math.unit(1, "mm")
  12832. },
  12833. {
  12834. name: "Micro",
  12835. height: math.unit(3, "inches")
  12836. },
  12837. {
  12838. name: "Normal",
  12839. height: math.unit(7 + 5 / 12, "feet"),
  12840. default: true
  12841. },
  12842. {
  12843. name: "Macro",
  12844. height: math.unit(30, "feet")
  12845. },
  12846. {
  12847. name: "Megamacro",
  12848. height: math.unit(3500, "feet")
  12849. },
  12850. {
  12851. name: "Teramacro",
  12852. height: math.unit(500000, "miles")
  12853. },
  12854. {
  12855. name: "Petamacro",
  12856. height: math.unit(50000000000000000, "parsecs")
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12862. {
  12863. front: {
  12864. height: math.unit(6, "feet"),
  12865. weight: math.unit(150, "lb"),
  12866. name: "Front",
  12867. image: {
  12868. source: "./media/characters/ilisha-devya/front.svg",
  12869. extra: 1,
  12870. bottom: 0.175
  12871. }
  12872. },
  12873. back: {
  12874. height: math.unit(6, "feet"),
  12875. weight: math.unit(150, "lb"),
  12876. name: "Back",
  12877. image: {
  12878. source: "./media/characters/ilisha-devya/back.svg",
  12879. extra: 1,
  12880. bottom: 0.015
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Macro",
  12887. height: math.unit(500, "feet"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Megamacro",
  12892. height: math.unit(10, "miles")
  12893. },
  12894. {
  12895. name: "Gigamacro",
  12896. height: math.unit(100000, "miles")
  12897. },
  12898. {
  12899. name: "Examacro",
  12900. height: math.unit(1e9, "lightyears")
  12901. },
  12902. {
  12903. name: "Omniversal",
  12904. height: math.unit(1e33, "lightyears")
  12905. },
  12906. {
  12907. name: "Beyond Infinite",
  12908. height: math.unit(1e100, "lightyears")
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12914. {
  12915. Side: {
  12916. height: math.unit(6, "feet"),
  12917. weight: math.unit(150, "lb"),
  12918. name: "Side",
  12919. image: {
  12920. source: "./media/characters/mira/side.svg",
  12921. extra: 900 / 799,
  12922. bottom: 0.02
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Human Size",
  12929. height: math.unit(6, "feet")
  12930. },
  12931. {
  12932. name: "Macro",
  12933. height: math.unit(100, "feet"),
  12934. default: true
  12935. },
  12936. {
  12937. name: "Megamacro",
  12938. height: math.unit(10, "miles")
  12939. },
  12940. {
  12941. name: "Gigamacro",
  12942. height: math.unit(25000, "miles")
  12943. },
  12944. {
  12945. name: "Teramacro",
  12946. height: math.unit(300, "AU")
  12947. },
  12948. {
  12949. name: "Full Size",
  12950. height: math.unit(4.5e10, "lightyears")
  12951. },
  12952. ]
  12953. ))
  12954. characterMakers.push(() => makeCharacter(
  12955. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12956. {
  12957. front: {
  12958. height: math.unit(6, "feet"),
  12959. weight: math.unit(150, "lb"),
  12960. name: "Front",
  12961. image: {
  12962. source: "./media/characters/holly/front.svg",
  12963. extra: 639 / 606
  12964. }
  12965. },
  12966. back: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(150, "lb"),
  12969. name: "Back",
  12970. image: {
  12971. source: "./media/characters/holly/back.svg",
  12972. extra: 623 / 598
  12973. }
  12974. },
  12975. frontWorking: {
  12976. height: math.unit(6, "feet"),
  12977. weight: math.unit(150, "lb"),
  12978. name: "Front (Working)",
  12979. image: {
  12980. source: "./media/characters/holly/front-working.svg",
  12981. extra: 607 / 577,
  12982. bottom: 0.048
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(12 + 3 / 12, "feet"),
  12990. default: true
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12996. {
  12997. front: {
  12998. height: math.unit(6, "feet"),
  12999. weight: math.unit(150, "lb"),
  13000. name: "Front",
  13001. image: {
  13002. source: "./media/characters/porter/front.svg",
  13003. extra: 1,
  13004. bottom: 0.01
  13005. }
  13006. },
  13007. frontRobes: {
  13008. height: math.unit(6, "feet"),
  13009. weight: math.unit(150, "lb"),
  13010. name: "Front (Robes)",
  13011. image: {
  13012. source: "./media/characters/porter/front-robes.svg",
  13013. extra: 1.01,
  13014. bottom: 0.01
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Normal",
  13021. height: math.unit(11 + 9 / 12, "feet"),
  13022. default: true
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13028. {
  13029. legendary: {
  13030. height: math.unit(6, "feet"),
  13031. weight: math.unit(150, "lb"),
  13032. name: "Legendary",
  13033. image: {
  13034. source: "./media/characters/lucy/legendary.svg",
  13035. extra: 1355 / 1100,
  13036. bottom: 0.045
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Legendary",
  13043. height: math.unit(86882 * 2, "miles"),
  13044. default: true
  13045. },
  13046. ]
  13047. ))
  13048. characterMakers.push(() => makeCharacter(
  13049. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13050. {
  13051. front: {
  13052. height: math.unit(6, "feet"),
  13053. weight: math.unit(150, "lb"),
  13054. name: "Front",
  13055. image: {
  13056. source: "./media/characters/drusilla/front.svg",
  13057. extra: 678 / 635,
  13058. bottom: 0.03
  13059. }
  13060. },
  13061. back: {
  13062. height: math.unit(6, "feet"),
  13063. weight: math.unit(150, "lb"),
  13064. name: "Back",
  13065. image: {
  13066. source: "./media/characters/drusilla/back.svg",
  13067. extra: 678 / 635,
  13068. bottom: 0.005
  13069. }
  13070. },
  13071. },
  13072. [
  13073. {
  13074. name: "Macro",
  13075. height: math.unit(100, "feet")
  13076. },
  13077. {
  13078. name: "Canon Height",
  13079. height: math.unit(2000, "feet"),
  13080. default: true
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(6, "feet"),
  13089. weight: math.unit(180, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/renard-thatch/front.svg",
  13093. extra: 2411 / 2275,
  13094. bottom: 0.01
  13095. }
  13096. },
  13097. frontPosing: {
  13098. height: math.unit(6, "feet"),
  13099. weight: math.unit(180, "lb"),
  13100. name: "Front (Posing)",
  13101. image: {
  13102. source: "./media/characters/renard-thatch/front-posing.svg",
  13103. extra: 2381 / 2261,
  13104. bottom: 0.01
  13105. }
  13106. },
  13107. back: {
  13108. height: math.unit(6, "feet"),
  13109. weight: math.unit(180, "lb"),
  13110. name: "Back",
  13111. image: {
  13112. source: "./media/characters/renard-thatch/back.svg",
  13113. extra: 2428 / 2288
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Micro",
  13120. height: math.unit(3, "inches")
  13121. },
  13122. {
  13123. name: "Default",
  13124. height: math.unit(6, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(75, "feet")
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13135. {
  13136. front: {
  13137. height: math.unit(1450, "feet"),
  13138. weight: math.unit(1.21e6, "tons"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/sekvra/front.svg",
  13142. extra: 1,
  13143. bottom: 0.03
  13144. }
  13145. },
  13146. frontClothed: {
  13147. height: math.unit(1450, "feet"),
  13148. weight: math.unit(1.21e6, "tons"),
  13149. name: "Front (Clothed)",
  13150. image: {
  13151. source: "./media/characters/sekvra/front-clothed.svg",
  13152. extra: 1,
  13153. bottom: 0.03
  13154. }
  13155. },
  13156. side: {
  13157. height: math.unit(1450, "feet"),
  13158. weight: math.unit(1.21e6, "tons"),
  13159. name: "Side",
  13160. image: {
  13161. source: "./media/characters/sekvra/side.svg",
  13162. extra: 1,
  13163. bottom: 0.025
  13164. }
  13165. },
  13166. back: {
  13167. height: math.unit(1450, "feet"),
  13168. weight: math.unit(1.21e6, "tons"),
  13169. name: "Back",
  13170. image: {
  13171. source: "./media/characters/sekvra/back.svg",
  13172. extra: 1,
  13173. bottom: 0.005
  13174. }
  13175. },
  13176. },
  13177. [
  13178. {
  13179. name: "Macro",
  13180. height: math.unit(1450, "feet"),
  13181. default: true
  13182. },
  13183. {
  13184. name: "Megamacro",
  13185. height: math.unit(15000, "feet")
  13186. },
  13187. ]
  13188. ))
  13189. characterMakers.push(() => makeCharacter(
  13190. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13191. {
  13192. front: {
  13193. height: math.unit(6, "feet"),
  13194. weight: math.unit(150, "lb"),
  13195. name: "Front",
  13196. image: {
  13197. source: "./media/characters/carmine/front.svg",
  13198. extra: 1,
  13199. bottom: 0.035
  13200. }
  13201. },
  13202. frontArmor: {
  13203. height: math.unit(6, "feet"),
  13204. weight: math.unit(150, "lb"),
  13205. name: "Front (Armor)",
  13206. image: {
  13207. source: "./media/characters/carmine/front-armor.svg",
  13208. extra: 1,
  13209. bottom: 0.035
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Large",
  13216. height: math.unit(1, "mile")
  13217. },
  13218. {
  13219. name: "Huge",
  13220. height: math.unit(40, "miles"),
  13221. default: true
  13222. },
  13223. {
  13224. name: "Colossal",
  13225. height: math.unit(2500, "miles")
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13231. {
  13232. front: {
  13233. height: math.unit(6, "feet"),
  13234. weight: math.unit(150, "lb"),
  13235. name: "Front",
  13236. image: {
  13237. source: "./media/characters/elyssia/front.svg",
  13238. extra: 2201 / 2035,
  13239. bottom: 0.05
  13240. }
  13241. },
  13242. frontClothed: {
  13243. height: math.unit(6, "feet"),
  13244. weight: math.unit(150, "lb"),
  13245. name: "Front (Clothed)",
  13246. image: {
  13247. source: "./media/characters/elyssia/front-clothed.svg",
  13248. extra: 2201 / 2035,
  13249. bottom: 0.05
  13250. }
  13251. },
  13252. back: {
  13253. height: math.unit(6, "feet"),
  13254. weight: math.unit(150, "lb"),
  13255. name: "Back",
  13256. image: {
  13257. source: "./media/characters/elyssia/back.svg",
  13258. extra: 2201 / 2035,
  13259. bottom: 0.013
  13260. }
  13261. },
  13262. },
  13263. [
  13264. {
  13265. name: "Smaller",
  13266. height: math.unit(150, "feet")
  13267. },
  13268. {
  13269. name: "Standard",
  13270. height: math.unit(1400, "feet"),
  13271. default: true
  13272. },
  13273. {
  13274. name: "Distracted",
  13275. height: math.unit(15000, "feet")
  13276. },
  13277. ]
  13278. ))
  13279. characterMakers.push(() => makeCharacter(
  13280. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13281. {
  13282. front: {
  13283. height: math.unit(7 + 4 / 12, "feet"),
  13284. weight: math.unit(500, "lb"),
  13285. name: "Front",
  13286. image: {
  13287. source: "./media/characters/geno-maxwell/front.svg",
  13288. extra: 2207 / 2040,
  13289. bottom: 0.015
  13290. }
  13291. },
  13292. },
  13293. [
  13294. {
  13295. name: "Micro",
  13296. height: math.unit(3, "inches")
  13297. },
  13298. {
  13299. name: "Normal",
  13300. height: math.unit(7 + 4 / 12, "feet"),
  13301. default: true
  13302. },
  13303. {
  13304. name: "Macro",
  13305. height: math.unit(220, "feet")
  13306. },
  13307. {
  13308. name: "Megamacro",
  13309. height: math.unit(11, "miles")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(7 + 4 / 12, "feet"),
  13318. weight: math.unit(500, "lb"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/regena-maxwell/front.svg",
  13322. extra: 3115 / 2770,
  13323. bottom: 0.02
  13324. }
  13325. },
  13326. },
  13327. [
  13328. {
  13329. name: "Normal",
  13330. height: math.unit(7 + 4 / 12, "feet"),
  13331. default: true
  13332. },
  13333. {
  13334. name: "Macro",
  13335. height: math.unit(220, "feet")
  13336. },
  13337. {
  13338. name: "Megamacro",
  13339. height: math.unit(11, "miles")
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13345. {
  13346. front: {
  13347. height: math.unit(6, "feet"),
  13348. weight: math.unit(150, "lb"),
  13349. name: "Front",
  13350. image: {
  13351. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13352. extra: 860 / 690,
  13353. bottom: 0.03
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Normal",
  13360. height: math.unit(1.7, "meters"),
  13361. default: true
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13367. {
  13368. front: {
  13369. height: math.unit(6, "feet"),
  13370. weight: math.unit(150, "lb"),
  13371. name: "Front",
  13372. image: {
  13373. source: "./media/characters/quilly/front.svg",
  13374. extra: 890 / 776
  13375. }
  13376. },
  13377. },
  13378. [
  13379. {
  13380. name: "Gigamacro",
  13381. height: math.unit(404090, "miles"),
  13382. default: true
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13388. {
  13389. front: {
  13390. height: math.unit(7 + 8 / 12, "feet"),
  13391. weight: math.unit(350, "lb"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/tempest/front.svg",
  13395. extra: 1175 / 1086,
  13396. bottom: 0.02
  13397. }
  13398. },
  13399. },
  13400. [
  13401. {
  13402. name: "Normal",
  13403. height: math.unit(7 + 8 / 12, "feet"),
  13404. default: true
  13405. },
  13406. ]
  13407. ))
  13408. characterMakers.push(() => makeCharacter(
  13409. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13410. {
  13411. side: {
  13412. height: math.unit(4 + 5 / 12, "feet"),
  13413. weight: math.unit(80, "lb"),
  13414. name: "Side",
  13415. image: {
  13416. source: "./media/characters/rodger/side.svg",
  13417. extra: 1235 / 1118
  13418. }
  13419. },
  13420. },
  13421. [
  13422. {
  13423. name: "Micro",
  13424. height: math.unit(1, "inch")
  13425. },
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(4 + 5 / 12, "feet"),
  13429. default: true
  13430. },
  13431. {
  13432. name: "Macro",
  13433. height: math.unit(120, "feet")
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13439. {
  13440. front: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "lb"),
  13443. name: "Front",
  13444. image: {
  13445. source: "./media/characters/danyel/front.svg",
  13446. extra: 1185 / 1123,
  13447. bottom: 0.05
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Shrunken",
  13454. height: math.unit(0.5, "mm")
  13455. },
  13456. {
  13457. name: "Micro",
  13458. height: math.unit(1, "mm"),
  13459. default: true
  13460. },
  13461. {
  13462. name: "Upsized",
  13463. height: math.unit(5 + 5 / 12, "feet")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(5 + 6 / 12, "feet"),
  13472. weight: math.unit(200, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/vivian-bijoux/front.svg",
  13476. extra: 1,
  13477. bottom: 0.072
  13478. }
  13479. },
  13480. },
  13481. [
  13482. {
  13483. name: "Normal",
  13484. height: math.unit(5 + 6 / 12, "feet"),
  13485. default: true
  13486. },
  13487. {
  13488. name: "Bad Dream",
  13489. height: math.unit(500, "feet")
  13490. },
  13491. {
  13492. name: "Nightmare",
  13493. height: math.unit(500, "miles")
  13494. },
  13495. ]
  13496. ))
  13497. characterMakers.push(() => makeCharacter(
  13498. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13499. {
  13500. front: {
  13501. height: math.unit(6 + 1 / 12, "feet"),
  13502. weight: math.unit(260, "lb"),
  13503. name: "Front",
  13504. image: {
  13505. source: "./media/characters/zeta/front.svg",
  13506. extra: 1968 / 1889,
  13507. bottom: 0.06
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(6 + 1 / 12, "feet"),
  13512. weight: math.unit(260, "lb"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/zeta/back.svg",
  13516. extra: 1944 / 1858,
  13517. bottom: 0.03
  13518. }
  13519. },
  13520. hand: {
  13521. height: math.unit(1.112, "feet"),
  13522. name: "Hand",
  13523. image: {
  13524. source: "./media/characters/zeta/hand.svg"
  13525. }
  13526. },
  13527. foot: {
  13528. height: math.unit(1.48, "feet"),
  13529. name: "Foot",
  13530. image: {
  13531. source: "./media/characters/zeta/foot.svg"
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Micro",
  13538. height: math.unit(6, "inches")
  13539. },
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(6 + 1 / 12, "feet"),
  13543. default: true
  13544. },
  13545. {
  13546. name: "Macro",
  13547. height: math.unit(20, "feet")
  13548. },
  13549. ]
  13550. ))
  13551. characterMakers.push(() => makeCharacter(
  13552. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13553. {
  13554. front: {
  13555. height: math.unit(6, "feet"),
  13556. weight: math.unit(150, "lb"),
  13557. name: "Front",
  13558. image: {
  13559. source: "./media/characters/jamie-larsen/front.svg",
  13560. extra: 962 / 933,
  13561. bottom: 0.02
  13562. }
  13563. },
  13564. back: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(150, "lb"),
  13567. name: "Back",
  13568. image: {
  13569. source: "./media/characters/jamie-larsen/back.svg",
  13570. extra: 997 / 946
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Macro",
  13577. height: math.unit(28 + 7 / 12, "feet"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Macro+",
  13582. height: math.unit(180, "feet")
  13583. },
  13584. {
  13585. name: "Megamacro",
  13586. height: math.unit(10, "miles")
  13587. },
  13588. {
  13589. name: "Gigamacro",
  13590. height: math.unit(200000, "miles")
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(6, "feet"),
  13599. weight: math.unit(120, "lb"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/vance/front.svg",
  13603. extra: 1980 / 1890,
  13604. bottom: 0.09
  13605. }
  13606. },
  13607. back: {
  13608. height: math.unit(6, "feet"),
  13609. weight: math.unit(120, "lb"),
  13610. name: "Back",
  13611. image: {
  13612. source: "./media/characters/vance/back.svg",
  13613. extra: 2081 / 1994,
  13614. bottom: 0.014
  13615. }
  13616. },
  13617. hand: {
  13618. height: math.unit(0.88, "feet"),
  13619. name: "Hand",
  13620. image: {
  13621. source: "./media/characters/vance/hand.svg"
  13622. }
  13623. },
  13624. foot: {
  13625. height: math.unit(0.64, "feet"),
  13626. name: "Foot",
  13627. image: {
  13628. source: "./media/characters/vance/foot.svg"
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Small",
  13635. height: math.unit(90, "feet"),
  13636. default: true
  13637. },
  13638. {
  13639. name: "Macro",
  13640. height: math.unit(100, "meters")
  13641. },
  13642. {
  13643. name: "Megamacro",
  13644. height: math.unit(15, "miles")
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(180, "lb"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/xochitl/front.svg",
  13657. extra: 2297 / 2261,
  13658. bottom: 0.065
  13659. }
  13660. },
  13661. back: {
  13662. height: math.unit(6, "feet"),
  13663. weight: math.unit(180, "lb"),
  13664. name: "Back",
  13665. image: {
  13666. source: "./media/characters/xochitl/back.svg",
  13667. extra: 2386 / 2354,
  13668. bottom: 0.01
  13669. }
  13670. },
  13671. foot: {
  13672. height: math.unit(6 / 5 * 1.15, "feet"),
  13673. weight: math.unit(150, "lb"),
  13674. name: "Foot",
  13675. image: {
  13676. source: "./media/characters/xochitl/foot.svg"
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Macro",
  13683. height: math.unit(80, "feet")
  13684. },
  13685. {
  13686. name: "Macro+",
  13687. height: math.unit(400, "feet"),
  13688. default: true
  13689. },
  13690. {
  13691. name: "Gigamacro",
  13692. height: math.unit(80000, "miles")
  13693. },
  13694. {
  13695. name: "Gigamacro+",
  13696. height: math.unit(400000, "miles")
  13697. },
  13698. {
  13699. name: "Teramacro",
  13700. height: math.unit(300, "AU")
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13706. {
  13707. front: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/vincent/front.svg",
  13713. extra: 1130 / 1080,
  13714. bottom: 0.055
  13715. }
  13716. },
  13717. beak: {
  13718. height: math.unit(6 * 0.1, "feet"),
  13719. name: "Beak",
  13720. image: {
  13721. source: "./media/characters/vincent/beak.svg"
  13722. }
  13723. },
  13724. hand: {
  13725. height: math.unit(6 * 0.85, "feet"),
  13726. weight: math.unit(150, "lb"),
  13727. name: "Hand",
  13728. image: {
  13729. source: "./media/characters/vincent/hand.svg"
  13730. }
  13731. },
  13732. foot: {
  13733. height: math.unit(6 * 0.19, "feet"),
  13734. weight: math.unit(150, "lb"),
  13735. name: "Foot",
  13736. image: {
  13737. source: "./media/characters/vincent/foot.svg"
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Base",
  13744. height: math.unit(6 + 5 / 12, "feet"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Macro",
  13749. height: math.unit(300, "feet")
  13750. },
  13751. {
  13752. name: "Megamacro",
  13753. height: math.unit(2, "miles")
  13754. },
  13755. {
  13756. name: "Gigamacro",
  13757. height: math.unit(1000, "miles")
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13763. {
  13764. front: {
  13765. height: math.unit(2, "meters"),
  13766. weight: math.unit(500, "kg"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/coatl/front.svg",
  13770. extra: 3948 / 3500,
  13771. bottom: 0.082
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Normal",
  13778. height: math.unit(4, "meters")
  13779. },
  13780. {
  13781. name: "Macro",
  13782. height: math.unit(100, "meters"),
  13783. default: true
  13784. },
  13785. {
  13786. name: "Macro+",
  13787. height: math.unit(300, "meters")
  13788. },
  13789. {
  13790. name: "Megamacro",
  13791. height: math.unit(3, "gigameters")
  13792. },
  13793. {
  13794. name: "Megamacro+",
  13795. height: math.unit(300, "terameters")
  13796. },
  13797. {
  13798. name: "Megamacro++",
  13799. height: math.unit(3, "lightyears")
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(6, "feet"),
  13808. weight: math.unit(50, "kg"),
  13809. name: "front",
  13810. image: {
  13811. source: "./media/characters/shiroryu/front.svg",
  13812. extra: 1990 / 1935
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Mortal Mingling",
  13819. height: math.unit(3, "meters")
  13820. },
  13821. {
  13822. name: "Kaiju-ish",
  13823. height: math.unit(250, "meters")
  13824. },
  13825. {
  13826. name: "Somewhat Godly",
  13827. height: math.unit(400, "km"),
  13828. default: true
  13829. },
  13830. {
  13831. name: "Planetary",
  13832. height: math.unit(300, "megameters")
  13833. },
  13834. {
  13835. name: "Galaxy-dwarfing",
  13836. height: math.unit(450, "kiloparsecs")
  13837. },
  13838. {
  13839. name: "Universe Eater",
  13840. height: math.unit(150, "gigaparsecs")
  13841. },
  13842. {
  13843. name: "Almost Immeasurable",
  13844. height: math.unit(1.3e266, "yottaparsecs")
  13845. },
  13846. ]
  13847. ))
  13848. characterMakers.push(() => makeCharacter(
  13849. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13850. {
  13851. front: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Front",
  13855. image: {
  13856. source: "./media/characters/umeko/front.svg",
  13857. extra: 1,
  13858. bottom: 0.019
  13859. }
  13860. },
  13861. frontArmored: {
  13862. height: math.unit(6, "feet"),
  13863. weight: math.unit(150, "lb"),
  13864. name: "Front (Armored)",
  13865. image: {
  13866. source: "./media/characters/umeko/front-armored.svg",
  13867. extra: 1,
  13868. bottom: 0.021
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Macro",
  13875. height: math.unit(220, "feet"),
  13876. default: true
  13877. },
  13878. {
  13879. name: "Guardian Dragon",
  13880. height: math.unit(50, "miles")
  13881. },
  13882. {
  13883. name: "Cosmic",
  13884. height: math.unit(800000, "miles")
  13885. },
  13886. ]
  13887. ))
  13888. characterMakers.push(() => makeCharacter(
  13889. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13890. {
  13891. front: {
  13892. height: math.unit(6, "feet"),
  13893. weight: math.unit(150, "lb"),
  13894. name: "Front",
  13895. image: {
  13896. source: "./media/characters/cassidy/front.svg",
  13897. extra: 1,
  13898. bottom: 0.043
  13899. }
  13900. },
  13901. },
  13902. [
  13903. {
  13904. name: "Canon Height",
  13905. height: math.unit(120, "feet"),
  13906. default: true
  13907. },
  13908. {
  13909. name: "Macro+",
  13910. height: math.unit(400, "feet")
  13911. },
  13912. {
  13913. name: "Macro++",
  13914. height: math.unit(4000, "feet")
  13915. },
  13916. {
  13917. name: "Megamacro",
  13918. height: math.unit(3, "miles")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(150, "lb"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/isaac/front.svg",
  13931. extra: 896 / 815,
  13932. bottom: 0.11
  13933. }
  13934. },
  13935. },
  13936. [
  13937. {
  13938. name: "Human Size",
  13939. height: math.unit(8, "feet"),
  13940. default: true
  13941. },
  13942. {
  13943. name: "Macro",
  13944. height: math.unit(400, "feet")
  13945. },
  13946. {
  13947. name: "Megamacro",
  13948. height: math.unit(50, "miles")
  13949. },
  13950. {
  13951. name: "Canon Height",
  13952. height: math.unit(200, "AU")
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(6, "feet"),
  13961. weight: math.unit(72, "kg"),
  13962. name: "Front",
  13963. image: {
  13964. source: "./media/characters/sleekit/front.svg",
  13965. extra: 4693 / 4487,
  13966. bottom: 0.012
  13967. }
  13968. },
  13969. },
  13970. [
  13971. {
  13972. name: "Minimum Height",
  13973. height: math.unit(10, "meters")
  13974. },
  13975. {
  13976. name: "Smaller",
  13977. height: math.unit(25, "meters")
  13978. },
  13979. {
  13980. name: "Larger",
  13981. height: math.unit(38, "meters"),
  13982. default: true
  13983. },
  13984. {
  13985. name: "Maximum height",
  13986. height: math.unit(100, "meters")
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(6, "feet"),
  13995. weight: math.unit(150, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/nillia/front.svg",
  13999. extra: 2195 / 2037,
  14000. bottom: 0.005
  14001. }
  14002. },
  14003. back: {
  14004. height: math.unit(6, "feet"),
  14005. weight: math.unit(150, "lb"),
  14006. name: "Back",
  14007. image: {
  14008. source: "./media/characters/nillia/back.svg",
  14009. extra: 2195 / 2037,
  14010. bottom: 0.005
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Canon Height",
  14017. height: math.unit(489, "feet"),
  14018. default: true
  14019. }
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14024. {
  14025. front: {
  14026. height: math.unit(6, "feet"),
  14027. weight: math.unit(150, "lb"),
  14028. name: "Front",
  14029. image: {
  14030. source: "./media/characters/mesmyriza/front.svg",
  14031. extra: 2067 / 1784,
  14032. bottom: 0.035
  14033. }
  14034. },
  14035. foot: {
  14036. height: math.unit(6 / (250 / 35), "feet"),
  14037. name: "Foot",
  14038. image: {
  14039. source: "./media/characters/mesmyriza/foot.svg"
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Macro",
  14046. height: math.unit(457, "meters"),
  14047. default: true
  14048. },
  14049. {
  14050. name: "Megamacro",
  14051. height: math.unit(8, "megameters")
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(6, "feet"),
  14060. weight: math.unit(250, "lb"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/saudade/front.svg",
  14064. extra: 1172 / 1139,
  14065. bottom: 0.035
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Micro",
  14072. height: math.unit(3, "inches")
  14073. },
  14074. {
  14075. name: "Normal",
  14076. height: math.unit(6, "feet"),
  14077. default: true
  14078. },
  14079. {
  14080. name: "Macro",
  14081. height: math.unit(50, "feet")
  14082. },
  14083. {
  14084. name: "Megamacro",
  14085. height: math.unit(2800, "feet")
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14091. {
  14092. front: {
  14093. height: math.unit(5 + 4 / 12, "feet"),
  14094. weight: math.unit(100, "lb"),
  14095. name: "Front",
  14096. image: {
  14097. source: "./media/characters/keireer/front.svg",
  14098. extra: 716 / 666,
  14099. bottom: 0.05
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Normal",
  14106. height: math.unit(5 + 4 / 12, "feet"),
  14107. default: true
  14108. },
  14109. ]
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14113. {
  14114. front: {
  14115. height: math.unit(6, "feet"),
  14116. weight: math.unit(90, "kg"),
  14117. name: "Front",
  14118. image: {
  14119. source: "./media/characters/mirja/front.svg",
  14120. extra: 1789 / 1683,
  14121. bottom: 0.05
  14122. }
  14123. },
  14124. frontDressed: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(90, "lb"),
  14127. name: "Front (Dressed)",
  14128. image: {
  14129. source: "./media/characters/mirja/front-dressed.svg",
  14130. extra: 1789 / 1683,
  14131. bottom: 0.05
  14132. }
  14133. },
  14134. back: {
  14135. height: math.unit(6, "feet"),
  14136. weight: math.unit(90, "lb"),
  14137. name: "Back",
  14138. image: {
  14139. source: "./media/characters/mirja/back.svg",
  14140. extra: 953 / 917,
  14141. bottom: 0.017
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "\"Incognito\"",
  14148. height: math.unit(3, "meters")
  14149. },
  14150. {
  14151. name: "Strolling Size",
  14152. height: math.unit(15, "km")
  14153. },
  14154. {
  14155. name: "Larger Strolling Size",
  14156. height: math.unit(400, "km")
  14157. },
  14158. {
  14159. name: "Preferred Size",
  14160. height: math.unit(5000, "km")
  14161. },
  14162. {
  14163. name: "True Size",
  14164. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14165. default: true
  14166. },
  14167. ]
  14168. ))
  14169. characterMakers.push(() => makeCharacter(
  14170. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14171. {
  14172. front: {
  14173. height: math.unit(15, "feet"),
  14174. weight: math.unit(880, "kg"),
  14175. name: "Front",
  14176. image: {
  14177. source: "./media/characters/nightraver/front.svg",
  14178. extra: 2444 / 2160,
  14179. bottom: 0.027
  14180. }
  14181. },
  14182. back: {
  14183. height: math.unit(15, "feet"),
  14184. weight: math.unit(880, "kg"),
  14185. name: "Back",
  14186. image: {
  14187. source: "./media/characters/nightraver/back.svg",
  14188. extra: 2309 / 2180,
  14189. bottom: 0.005
  14190. }
  14191. },
  14192. sole: {
  14193. height: math.unit(2.878, "feet"),
  14194. name: "Sole",
  14195. image: {
  14196. source: "./media/characters/nightraver/sole.svg"
  14197. }
  14198. },
  14199. foot: {
  14200. height: math.unit(2.285, "feet"),
  14201. name: "Foot",
  14202. image: {
  14203. source: "./media/characters/nightraver/foot.svg"
  14204. }
  14205. },
  14206. maw: {
  14207. height: math.unit(2.67, "feet"),
  14208. name: "Maw",
  14209. image: {
  14210. source: "./media/characters/nightraver/maw.svg"
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Micro",
  14217. height: math.unit(1, "cm")
  14218. },
  14219. {
  14220. name: "Normal",
  14221. height: math.unit(15, "feet"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Macro",
  14226. height: math.unit(300, "feet")
  14227. },
  14228. {
  14229. name: "Megamacro",
  14230. height: math.unit(300, "miles")
  14231. },
  14232. {
  14233. name: "Gigamacro",
  14234. height: math.unit(10000, "miles")
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14240. {
  14241. side: {
  14242. height: math.unit(2, "inches"),
  14243. weight: math.unit(5, "grams"),
  14244. name: "Side",
  14245. image: {
  14246. source: "./media/characters/arc/side.svg"
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Micro",
  14253. height: math.unit(2, "inches"),
  14254. default: true
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(1.1938, "meters"),
  14263. weight: math.unit(54, "kg"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/nebula-shahar/front.svg",
  14267. extra: 1642 / 1436,
  14268. bottom: 0.06
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Megamicro",
  14275. height: math.unit(0.3, "mm")
  14276. },
  14277. {
  14278. name: "Micro",
  14279. height: math.unit(3, "cm")
  14280. },
  14281. {
  14282. name: "Normal",
  14283. height: math.unit(138, "cm"),
  14284. default: true
  14285. },
  14286. {
  14287. name: "Macro",
  14288. height: math.unit(30, "m")
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14294. {
  14295. front: {
  14296. height: math.unit(5.24, "feet"),
  14297. weight: math.unit(150, "lb"),
  14298. name: "Front",
  14299. image: {
  14300. source: "./media/characters/shayla/front.svg",
  14301. extra: 1512 / 1414,
  14302. bottom: 0.01
  14303. }
  14304. },
  14305. back: {
  14306. height: math.unit(5.24, "feet"),
  14307. weight: math.unit(150, "lb"),
  14308. name: "Back",
  14309. image: {
  14310. source: "./media/characters/shayla/back.svg",
  14311. extra: 1512 / 1414
  14312. }
  14313. },
  14314. hand: {
  14315. height: math.unit(0.7781496062992126, "feet"),
  14316. name: "Hand",
  14317. image: {
  14318. source: "./media/characters/shayla/hand.svg"
  14319. }
  14320. },
  14321. foot: {
  14322. height: math.unit(1.4206036745406823, "feet"),
  14323. name: "Foot",
  14324. image: {
  14325. source: "./media/characters/shayla/foot.svg"
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Micro",
  14332. height: math.unit(0.32, "feet")
  14333. },
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(5.24, "feet"),
  14337. default: true
  14338. },
  14339. {
  14340. name: "Macro",
  14341. height: math.unit(492.12, "feet")
  14342. },
  14343. {
  14344. name: "Megamacro",
  14345. height: math.unit(186.41, "miles")
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14351. {
  14352. front: {
  14353. height: math.unit(2.2, "m"),
  14354. weight: math.unit(120, "kg"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/pia-jr/front.svg",
  14358. extra: 1000 / 970,
  14359. bottom: 0.035
  14360. }
  14361. },
  14362. hand: {
  14363. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14364. name: "Hand",
  14365. image: {
  14366. source: "./media/characters/pia-jr/hand.svg"
  14367. }
  14368. },
  14369. paw: {
  14370. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14371. name: "Paw",
  14372. image: {
  14373. source: "./media/characters/pia-jr/paw.svg"
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Micro",
  14380. height: math.unit(1.2, "cm")
  14381. },
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(2.2, "m"),
  14385. default: true
  14386. },
  14387. {
  14388. name: "Macro",
  14389. height: math.unit(180, "m")
  14390. },
  14391. {
  14392. name: "Megamacro",
  14393. height: math.unit(420, "km")
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(2, "m"),
  14402. weight: math.unit(115, "kg"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/pia-sr/front.svg",
  14406. extra: 760 / 730,
  14407. bottom: 0.015
  14408. }
  14409. },
  14410. back: {
  14411. height: math.unit(2, "m"),
  14412. weight: math.unit(115, "kg"),
  14413. name: "Back",
  14414. image: {
  14415. source: "./media/characters/pia-sr/back.svg",
  14416. extra: 760 / 730,
  14417. bottom: 0.01
  14418. }
  14419. },
  14420. hand: {
  14421. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14422. name: "Hand",
  14423. image: {
  14424. source: "./media/characters/pia-sr/hand.svg"
  14425. }
  14426. },
  14427. foot: {
  14428. height: math.unit(1.83, "feet"),
  14429. name: "Foot",
  14430. image: {
  14431. source: "./media/characters/pia-sr/foot.svg"
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Micro",
  14438. height: math.unit(88, "mm")
  14439. },
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(2, "m"),
  14443. default: true
  14444. },
  14445. {
  14446. name: "Macro",
  14447. height: math.unit(200, "m")
  14448. },
  14449. {
  14450. name: "Megamacro",
  14451. height: math.unit(420, "km")
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(8 + 2 / 12, "feet"),
  14460. weight: math.unit(300, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/kibibyte/front.svg",
  14464. extra: 2221 / 2098,
  14465. bottom: 0.04
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(8 + 2 / 12, "feet"),
  14473. default: true
  14474. },
  14475. {
  14476. name: "Socialable Macro",
  14477. height: math.unit(50, "feet")
  14478. },
  14479. {
  14480. name: "Macro",
  14481. height: math.unit(300, "feet")
  14482. },
  14483. {
  14484. name: "Megamacro",
  14485. height: math.unit(500, "miles")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(150, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/felix/front.svg",
  14498. extra: 762 / 722,
  14499. bottom: 0.02
  14500. }
  14501. },
  14502. frontClothed: {
  14503. height: math.unit(6, "feet"),
  14504. weight: math.unit(150, "lb"),
  14505. name: "Front (Clothed)",
  14506. image: {
  14507. source: "./media/characters/felix/front-clothed.svg",
  14508. extra: 762 / 722,
  14509. bottom: 0.02
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(6 + 8 / 12, "feet"),
  14517. default: true
  14518. },
  14519. {
  14520. name: "Macro",
  14521. height: math.unit(2600, "feet")
  14522. },
  14523. {
  14524. name: "Megamacro",
  14525. height: math.unit(450, "miles")
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(6 + 1 / 12, "feet"),
  14534. weight: math.unit(250, "lb"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/tobo/front.svg",
  14538. extra: 608 / 586,
  14539. bottom: 0.023
  14540. }
  14541. },
  14542. back: {
  14543. height: math.unit(6 + 1 / 12, "feet"),
  14544. weight: math.unit(250, "lb"),
  14545. name: "Back",
  14546. image: {
  14547. source: "./media/characters/tobo/back.svg",
  14548. extra: 608 / 586
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Nano",
  14555. height: math.unit(2, "nm")
  14556. },
  14557. {
  14558. name: "Megamicro",
  14559. height: math.unit(0.1, "mm")
  14560. },
  14561. {
  14562. name: "Micro",
  14563. height: math.unit(1, "inch"),
  14564. default: true
  14565. },
  14566. {
  14567. name: "Human-sized",
  14568. height: math.unit(6 + 1 / 12, "feet")
  14569. },
  14570. {
  14571. name: "Macro",
  14572. height: math.unit(250, "feet")
  14573. },
  14574. {
  14575. name: "Megamacro",
  14576. height: math.unit(75, "miles")
  14577. },
  14578. {
  14579. name: "Texas-sized",
  14580. height: math.unit(750, "miles")
  14581. },
  14582. {
  14583. name: "Teramacro",
  14584. height: math.unit(50000, "miles")
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(269, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/danny-kapowsky/front.svg",
  14597. extra: 766 / 736,
  14598. bottom: 0.044
  14599. }
  14600. },
  14601. back: {
  14602. height: math.unit(6, "feet"),
  14603. weight: math.unit(269, "lb"),
  14604. name: "Back",
  14605. image: {
  14606. source: "./media/characters/danny-kapowsky/back.svg",
  14607. extra: 797 / 760,
  14608. bottom: 0.025
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Macro",
  14615. height: math.unit(150, "feet"),
  14616. default: true
  14617. },
  14618. {
  14619. name: "Macro+",
  14620. height: math.unit(200, "feet")
  14621. },
  14622. {
  14623. name: "Macro++",
  14624. height: math.unit(300, "feet")
  14625. },
  14626. {
  14627. name: "Macro+++",
  14628. height: math.unit(400, "feet")
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14634. {
  14635. side: {
  14636. height: math.unit(6, "feet"),
  14637. weight: math.unit(170, "lb"),
  14638. name: "Side",
  14639. image: {
  14640. source: "./media/characters/finn/side.svg",
  14641. extra: 1953 / 1807,
  14642. bottom: 0.057
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Megamacro",
  14649. height: math.unit(14445, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(5 + 6 / 12, "feet"),
  14659. weight: math.unit(125, "lb"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/roy/front.svg",
  14663. extra: 1,
  14664. bottom: 0.11
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Micro",
  14671. height: math.unit(3, "inches"),
  14672. default: true
  14673. },
  14674. {
  14675. name: "Normal",
  14676. height: math.unit(5 + 6 / 12, "feet")
  14677. },
  14678. {
  14679. name: "Lesser Macro",
  14680. height: math.unit(60, "feet")
  14681. },
  14682. {
  14683. name: "Greater Macro",
  14684. height: math.unit(120, "feet")
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14690. {
  14691. front: {
  14692. height: math.unit(6, "feet"),
  14693. weight: math.unit(100, "lb"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/aevsivs/front.svg",
  14697. extra: 1,
  14698. bottom: 0.03
  14699. }
  14700. },
  14701. back: {
  14702. height: math.unit(6, "feet"),
  14703. weight: math.unit(100, "lb"),
  14704. name: "Back",
  14705. image: {
  14706. source: "./media/characters/aevsivs/back.svg"
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Micro",
  14713. height: math.unit(2, "inches"),
  14714. default: true
  14715. },
  14716. {
  14717. name: "Normal",
  14718. height: math.unit(5, "feet")
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(5 + 7 / 12, "feet"),
  14727. weight: math.unit(159, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/hildegard/front.svg",
  14731. extra: 289 / 269,
  14732. bottom: 7.63 / 297.8
  14733. }
  14734. },
  14735. back: {
  14736. height: math.unit(5 + 7 / 12, "feet"),
  14737. weight: math.unit(159, "lb"),
  14738. name: "Back",
  14739. image: {
  14740. source: "./media/characters/hildegard/back.svg",
  14741. extra: 280 / 260,
  14742. bottom: 2.3 / 282
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(5 + 7 / 12, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14756. {
  14757. bernard: {
  14758. height: math.unit(2 + 7 / 12, "feet"),
  14759. weight: math.unit(66, "lb"),
  14760. name: "Bernard",
  14761. rename: true,
  14762. image: {
  14763. source: "./media/characters/bernard-wilder/bernard.svg",
  14764. extra: 192 / 128,
  14765. bottom: 0.05
  14766. }
  14767. },
  14768. wilder: {
  14769. height: math.unit(5 + 8 / 12, "feet"),
  14770. weight: math.unit(143, "lb"),
  14771. name: "Wilder",
  14772. rename: true,
  14773. image: {
  14774. source: "./media/characters/bernard-wilder/wilder.svg",
  14775. extra: 361 / 312,
  14776. bottom: 0.02
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(2 + 7 / 12, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14790. {
  14791. anthro: {
  14792. height: math.unit(6 + 1 / 12, "feet"),
  14793. weight: math.unit(155, "lb"),
  14794. name: "Anthro",
  14795. image: {
  14796. source: "./media/characters/hearth/anthro.svg",
  14797. extra: 260 / 250,
  14798. bottom: 0.02
  14799. }
  14800. },
  14801. feral: {
  14802. height: math.unit(3.78, "feet"),
  14803. weight: math.unit(35, "kg"),
  14804. name: "Feral",
  14805. image: {
  14806. source: "./media/characters/hearth/feral.svg",
  14807. extra: 153 / 135,
  14808. bottom: 0.03
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(6 + 1 / 12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(6, "feet"),
  14825. weight: math.unit(182, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/ingrid/front.svg",
  14829. extra: 294 / 268,
  14830. bottom: 0.027
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(6, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14844. {
  14845. eevee: {
  14846. height: math.unit(2 + 10 / 12, "feet"),
  14847. weight: math.unit(86, "lb"),
  14848. name: "Malgam",
  14849. image: {
  14850. source: "./media/characters/malgam/eevee.svg",
  14851. extra: 218 / 180,
  14852. bottom: 0.2
  14853. }
  14854. },
  14855. sylveon: {
  14856. height: math.unit(4, "feet"),
  14857. weight: math.unit(101, "lb"),
  14858. name: "Future Malgam",
  14859. rename: true,
  14860. image: {
  14861. source: "./media/characters/malgam/sylveon.svg",
  14862. extra: 371 / 325,
  14863. bottom: 0.015
  14864. }
  14865. },
  14866. gigantamax: {
  14867. height: math.unit(50, "feet"),
  14868. name: "Gigantamax Malgam",
  14869. rename: true,
  14870. image: {
  14871. source: "./media/characters/malgam/gigantamax.svg"
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Normal",
  14878. height: math.unit(2 + 10 / 12, "feet"),
  14879. default: true
  14880. },
  14881. ]
  14882. ))
  14883. characterMakers.push(() => makeCharacter(
  14884. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14885. {
  14886. front: {
  14887. height: math.unit(5 + 11 / 12, "feet"),
  14888. weight: math.unit(188, "lb"),
  14889. name: "Front",
  14890. image: {
  14891. source: "./media/characters/fleur/front.svg",
  14892. extra: 309 / 283,
  14893. bottom: 0.007
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Normal",
  14900. height: math.unit(5 + 11 / 12, "feet"),
  14901. default: true
  14902. },
  14903. ]
  14904. ))
  14905. characterMakers.push(() => makeCharacter(
  14906. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14907. {
  14908. front: {
  14909. height: math.unit(5 + 4 / 12, "feet"),
  14910. weight: math.unit(122, "lb"),
  14911. name: "Front",
  14912. image: {
  14913. source: "./media/characters/jude/front.svg",
  14914. extra: 288 / 273,
  14915. bottom: 0.03
  14916. }
  14917. },
  14918. },
  14919. [
  14920. {
  14921. name: "Normal",
  14922. height: math.unit(5 + 4 / 12, "feet"),
  14923. default: true
  14924. },
  14925. ]
  14926. ))
  14927. characterMakers.push(() => makeCharacter(
  14928. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14929. {
  14930. front: {
  14931. height: math.unit(5 + 11 / 12, "feet"),
  14932. weight: math.unit(190, "lb"),
  14933. name: "Front",
  14934. image: {
  14935. source: "./media/characters/seara/front.svg",
  14936. extra: 1,
  14937. bottom: 0.05
  14938. }
  14939. },
  14940. },
  14941. [
  14942. {
  14943. name: "Normal",
  14944. height: math.unit(5 + 11 / 12, "feet"),
  14945. default: true
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14951. {
  14952. front: {
  14953. height: math.unit(16 + 5 / 12, "feet"),
  14954. weight: math.unit(524, "lb"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/caspian/front.svg",
  14958. extra: 1,
  14959. bottom: 0.04
  14960. }
  14961. },
  14962. },
  14963. [
  14964. {
  14965. name: "Normal",
  14966. height: math.unit(16 + 5 / 12, "feet"),
  14967. default: true
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14973. {
  14974. front: {
  14975. height: math.unit(5 + 7 / 12, "feet"),
  14976. weight: math.unit(170, "lb"),
  14977. name: "Front",
  14978. image: {
  14979. source: "./media/characters/mika/front.svg",
  14980. extra: 1,
  14981. bottom: 0.016
  14982. }
  14983. },
  14984. },
  14985. [
  14986. {
  14987. name: "Normal",
  14988. height: math.unit(5 + 7 / 12, "feet"),
  14989. default: true
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14995. {
  14996. front: {
  14997. height: math.unit(6 + 2 / 12, "feet"),
  14998. weight: math.unit(268, "lb"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/sol/front.svg",
  15002. extra: 247 / 231,
  15003. bottom: 0.05
  15004. }
  15005. },
  15006. },
  15007. [
  15008. {
  15009. name: "Normal",
  15010. height: math.unit(6 + 2 / 12, "feet"),
  15011. default: true
  15012. },
  15013. ]
  15014. ))
  15015. characterMakers.push(() => makeCharacter(
  15016. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15017. {
  15018. buizel: {
  15019. height: math.unit(2 + 5 / 12, "feet"),
  15020. weight: math.unit(87, "lb"),
  15021. name: "Buizel",
  15022. image: {
  15023. source: "./media/characters/umiko/buizel.svg",
  15024. extra: 172 / 157,
  15025. bottom: 0.01
  15026. }
  15027. },
  15028. floatzel: {
  15029. height: math.unit(5 + 9 / 12, "feet"),
  15030. weight: math.unit(250, "lb"),
  15031. name: "Floatzel",
  15032. image: {
  15033. source: "./media/characters/umiko/floatzel.svg",
  15034. extra: 262 / 248
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(2 + 5 / 12, "feet"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15048. {
  15049. front: {
  15050. height: math.unit(6 + 2 / 12, "feet"),
  15051. weight: math.unit(146, "lb"),
  15052. name: "Front",
  15053. image: {
  15054. source: "./media/characters/iliac/front.svg",
  15055. extra: 389 / 365,
  15056. bottom: 0.035
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(6 + 2 / 12, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(6, "feet"),
  15073. weight: math.unit(170, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/topaz/front.svg",
  15077. extra: 317 / 303,
  15078. bottom: 0.055
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(6, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(5 + 11 / 12, "feet"),
  15095. weight: math.unit(144, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/gabriel/front.svg",
  15099. extra: 285 / 262,
  15100. bottom: 0.004
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(5 + 11 / 12, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15114. {
  15115. side: {
  15116. height: math.unit(6 + 5 / 12, "feet"),
  15117. weight: math.unit(300, "lb"),
  15118. name: "Side",
  15119. image: {
  15120. source: "./media/characters/tempest-suicune/side.svg",
  15121. extra: 195 / 154,
  15122. bottom: 0.04
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(6 + 5 / 12, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(7 + 2 / 12, "feet"),
  15139. weight: math.unit(322, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/vulcan/front.svg",
  15143. extra: 154 / 147,
  15144. bottom: 0.04
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(7 + 2 / 12, "feet"),
  15152. default: true
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(5 + 10 / 12, "feet"),
  15161. weight: math.unit(264, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/gault/front.svg",
  15165. extra: 161 / 140,
  15166. bottom: 0.028
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(5 + 10 / 12, "feet"),
  15174. default: true
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(6, "feet"),
  15183. weight: math.unit(150, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/shard/front.svg",
  15187. extra: 273 / 238,
  15188. bottom: 0.02
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(3 + 6 / 12, "feet"),
  15196. default: true
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(5 + 11 / 12, "feet"),
  15205. weight: math.unit(146, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/ashe/front.svg",
  15209. extra: 400 / 373,
  15210. bottom: 0.01
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(5 + 11 / 12, "feet"),
  15218. default: true
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(5 + 5 / 12, "feet"),
  15227. weight: math.unit(135, "lb"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/beatrix/front.svg",
  15231. extra: 392 / 379,
  15232. bottom: 0.01
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Normal",
  15239. height: math.unit(6, "feet"),
  15240. default: true
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(6, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/ignatius/front.svg",
  15253. extra: 245 / 222,
  15254. bottom: 0.01
  15255. }
  15256. },
  15257. },
  15258. [
  15259. {
  15260. name: "Normal",
  15261. height: math.unit(5 + 5 / 12, "feet"),
  15262. default: true
  15263. },
  15264. ]
  15265. ))
  15266. characterMakers.push(() => makeCharacter(
  15267. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15268. {
  15269. front: {
  15270. height: math.unit(6 + 2 / 12, "feet"),
  15271. weight: math.unit(138, "lb"),
  15272. name: "Front",
  15273. image: {
  15274. source: "./media/characters/mei-li/front.svg",
  15275. extra: 237 / 229,
  15276. bottom: 0.03
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(6 + 2 / 12, "feet"),
  15284. default: true
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(2 + 4 / 12, "feet"),
  15293. weight: math.unit(62, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/puru/front.svg",
  15297. extra: 206 / 149,
  15298. bottom: 0.06
  15299. }
  15300. },
  15301. },
  15302. [
  15303. {
  15304. name: "Normal",
  15305. height: math.unit(2 + 4 / 12, "feet"),
  15306. default: true
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15312. {
  15313. anthro: {
  15314. height: math.unit(5 + 8/12, "feet"),
  15315. weight: math.unit(200, "lb"),
  15316. energyNeed: math.unit(2000, "kcal"),
  15317. name: "Anthro",
  15318. image: {
  15319. source: "./media/characters/kee/anthro.svg",
  15320. extra: 3251/3184,
  15321. bottom: 250/3501
  15322. }
  15323. },
  15324. taur: {
  15325. height: math.unit(11, "feet"),
  15326. weight: math.unit(500, "lb"),
  15327. energyNeed: math.unit(5000, "kcal"),
  15328. name: "Taur",
  15329. image: {
  15330. source: "./media/characters/kee/taur.svg",
  15331. extra: 1362/1320,
  15332. bottom: 83/1445
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Normal",
  15339. height: math.unit(5 + 8/12, "feet"),
  15340. default: true
  15341. },
  15342. {
  15343. name: "Macro",
  15344. height: math.unit(35, "feet")
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15350. {
  15351. anthro: {
  15352. height: math.unit(7, "feet"),
  15353. weight: math.unit(190, "lb"),
  15354. name: "Anthro",
  15355. image: {
  15356. source: "./media/characters/cobalt-dracha/anthro.svg",
  15357. extra: 231 / 225,
  15358. bottom: 0.04
  15359. }
  15360. },
  15361. feral: {
  15362. height: math.unit(9 + 7 / 12, "feet"),
  15363. weight: math.unit(294, "lb"),
  15364. name: "Feral",
  15365. image: {
  15366. source: "./media/characters/cobalt-dracha/feral.svg",
  15367. extra: 692 / 633,
  15368. bottom: 0.05
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Normal",
  15375. height: math.unit(7, "feet"),
  15376. default: true
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15382. {
  15383. fallen: {
  15384. height: math.unit(11 + 8 / 12, "feet"),
  15385. weight: math.unit(485, "lb"),
  15386. name: "Java (Fallen)",
  15387. rename: true,
  15388. image: {
  15389. source: "./media/characters/java/fallen.svg",
  15390. extra: 226 / 208,
  15391. bottom: 0.005
  15392. }
  15393. },
  15394. godkin: {
  15395. height: math.unit(10 + 6 / 12, "feet"),
  15396. weight: math.unit(328, "lb"),
  15397. name: "Java (Godkin)",
  15398. rename: true,
  15399. image: {
  15400. source: "./media/characters/java/godkin.svg",
  15401. extra: 270 / 262,
  15402. bottom: 0.02
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(11 + 8 / 12, "feet"),
  15410. default: true
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(7 + 8 / 12, "feet"),
  15419. weight: math.unit(320, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/skoll/front.svg",
  15423. extra: 232 / 220,
  15424. bottom: 0.02
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(7 + 8 / 12, "feet"),
  15432. default: true
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(5 + 9 / 12, "feet"),
  15441. weight: math.unit(170, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/purna/front.svg",
  15445. extra: 239 / 229,
  15446. bottom: 0.01
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(5 + 9 / 12, "feet"),
  15454. default: true
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(5 + 9 / 12, "feet"),
  15463. weight: math.unit(142, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/kuva/front.svg",
  15467. extra: 281 / 271,
  15468. bottom: 0.006
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(5 + 9 / 12, "feet"),
  15476. default: true
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15482. {
  15483. anthro: {
  15484. height: math.unit(9 + 2 / 12, "feet"),
  15485. weight: math.unit(270, "lb"),
  15486. name: "Anthro",
  15487. image: {
  15488. source: "./media/characters/embra/anthro.svg",
  15489. extra: 200 / 187,
  15490. bottom: 0.02
  15491. }
  15492. },
  15493. feral: {
  15494. height: math.unit(18 + 8 / 12, "feet"),
  15495. weight: math.unit(576, "lb"),
  15496. name: "Feral",
  15497. image: {
  15498. source: "./media/characters/embra/feral.svg",
  15499. extra: 152 / 137,
  15500. bottom: 0.037
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(9 + 2 / 12, "feet"),
  15508. default: true
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15514. {
  15515. anthro: {
  15516. height: math.unit(10 + 9 / 12, "feet"),
  15517. weight: math.unit(224, "lb"),
  15518. name: "Anthro",
  15519. image: {
  15520. source: "./media/characters/grottos/anthro.svg",
  15521. extra: 350 / 332,
  15522. bottom: 0.045
  15523. }
  15524. },
  15525. feral: {
  15526. height: math.unit(20 + 7 / 12, "feet"),
  15527. weight: math.unit(629, "lb"),
  15528. name: "Feral",
  15529. image: {
  15530. source: "./media/characters/grottos/feral.svg",
  15531. extra: 207 / 190,
  15532. bottom: 0.05
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(10 + 9 / 12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15546. {
  15547. anthro: {
  15548. height: math.unit(9 + 6 / 12, "feet"),
  15549. weight: math.unit(298, "lb"),
  15550. name: "Anthro",
  15551. image: {
  15552. source: "./media/characters/frifna/anthro.svg",
  15553. extra: 282 / 269,
  15554. bottom: 0.015
  15555. }
  15556. },
  15557. feral: {
  15558. height: math.unit(16 + 2 / 12, "feet"),
  15559. weight: math.unit(624, "lb"),
  15560. name: "Feral",
  15561. image: {
  15562. source: "./media/characters/frifna/feral.svg"
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(9 + 6 / 12, "feet"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(6 + 2 / 12, "feet"),
  15579. weight: math.unit(168, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/elise/front.svg",
  15583. extra: 276 / 271
  15584. }
  15585. },
  15586. },
  15587. [
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(6 + 2 / 12, "feet"),
  15591. default: true
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(5 + 10 / 12, "feet"),
  15600. weight: math.unit(210, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/glade/front.svg",
  15604. extra: 258 / 247,
  15605. bottom: 0.008
  15606. }
  15607. },
  15608. },
  15609. [
  15610. {
  15611. name: "Normal",
  15612. height: math.unit(5 + 10 / 12, "feet"),
  15613. default: true
  15614. },
  15615. ]
  15616. ))
  15617. characterMakers.push(() => makeCharacter(
  15618. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15619. {
  15620. front: {
  15621. height: math.unit(5 + 10 / 12, "feet"),
  15622. weight: math.unit(129, "lb"),
  15623. name: "Front",
  15624. image: {
  15625. source: "./media/characters/rina/front.svg",
  15626. extra: 266 / 255,
  15627. bottom: 0.005
  15628. }
  15629. },
  15630. },
  15631. [
  15632. {
  15633. name: "Normal",
  15634. height: math.unit(5 + 10 / 12, "feet"),
  15635. default: true
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15641. {
  15642. front: {
  15643. height: math.unit(6 + 1 / 12, "feet"),
  15644. weight: math.unit(192, "lb"),
  15645. name: "Front",
  15646. image: {
  15647. source: "./media/characters/veronica/front.svg",
  15648. extra: 319 / 309,
  15649. bottom: 0.005
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Normal",
  15656. height: math.unit(6 + 1 / 12, "feet"),
  15657. default: true
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(9 + 3 / 12, "feet"),
  15666. weight: math.unit(1100, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/braxton/front.svg",
  15670. extra: 1057 / 984,
  15671. bottom: 0.05
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Normal",
  15678. height: math.unit(9 + 3 / 12, "feet")
  15679. },
  15680. {
  15681. name: "Giant",
  15682. height: math.unit(300, "feet"),
  15683. default: true
  15684. },
  15685. {
  15686. name: "Macro",
  15687. height: math.unit(700, "feet")
  15688. },
  15689. {
  15690. name: "Megamacro",
  15691. height: math.unit(6000, "feet")
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(6 + 7 / 12, "feet"),
  15700. weight: math.unit(150, "lb"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/blue-feyonics/front.svg",
  15704. extra: 1403 / 1306,
  15705. bottom: 0.047
  15706. }
  15707. },
  15708. },
  15709. [
  15710. {
  15711. name: "Normal",
  15712. height: math.unit(6 + 7 / 12, "feet"),
  15713. default: true
  15714. },
  15715. ]
  15716. ))
  15717. characterMakers.push(() => makeCharacter(
  15718. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15719. {
  15720. front: {
  15721. height: math.unit(1.8, "meters"),
  15722. weight: math.unit(60, "kg"),
  15723. name: "Front",
  15724. image: {
  15725. source: "./media/characters/maxwell/front.svg",
  15726. extra: 2060 / 1873
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Micro",
  15733. height: math.unit(1, "mm")
  15734. },
  15735. {
  15736. name: "Normal",
  15737. height: math.unit(1.8, "meter"),
  15738. default: true
  15739. },
  15740. {
  15741. name: "Macro",
  15742. height: math.unit(30, "meters")
  15743. },
  15744. {
  15745. name: "Megamacro",
  15746. height: math.unit(10, "km")
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15752. {
  15753. front: {
  15754. height: math.unit(6, "feet"),
  15755. weight: math.unit(150, "lb"),
  15756. name: "Front",
  15757. image: {
  15758. source: "./media/characters/jack/front.svg",
  15759. extra: 1754 / 1640,
  15760. bottom: 0.01
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(80000, "feet"),
  15768. default: true
  15769. },
  15770. {
  15771. name: "Max size",
  15772. height: math.unit(10, "lightyears")
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15778. {
  15779. urban: {
  15780. height: math.unit(5, "feet"),
  15781. weight: math.unit(240, "lb"),
  15782. name: "Urban",
  15783. image: {
  15784. source: "./media/characters/cafat/urban.svg",
  15785. extra: 1223/1126,
  15786. bottom: 205/1428
  15787. }
  15788. },
  15789. summer: {
  15790. height: math.unit(5, "feet"),
  15791. weight: math.unit(240, "lb"),
  15792. name: "Summer",
  15793. image: {
  15794. source: "./media/characters/cafat/summer.svg",
  15795. extra: 1223/1126,
  15796. bottom: 205/1428
  15797. }
  15798. },
  15799. winter: {
  15800. height: math.unit(5, "feet"),
  15801. weight: math.unit(240, "lb"),
  15802. name: "Winter",
  15803. image: {
  15804. source: "./media/characters/cafat/winter.svg",
  15805. extra: 1223/1126,
  15806. bottom: 205/1428
  15807. }
  15808. },
  15809. lingerie: {
  15810. height: math.unit(5, "feet"),
  15811. weight: math.unit(240, "lb"),
  15812. name: "Lingerie",
  15813. image: {
  15814. source: "./media/characters/cafat/lingerie.svg",
  15815. extra: 1223/1126,
  15816. bottom: 205/1428
  15817. }
  15818. },
  15819. upright: {
  15820. height: math.unit(6.3, "feet"),
  15821. weight: math.unit(240, "lb"),
  15822. name: "Upright",
  15823. image: {
  15824. source: "./media/characters/cafat/upright.svg",
  15825. bottom: 0.01
  15826. }
  15827. },
  15828. uprightFull: {
  15829. height: math.unit(6.3, "feet"),
  15830. weight: math.unit(240, "lb"),
  15831. name: "Upright (Full)",
  15832. image: {
  15833. source: "./media/characters/cafat/upright-full.svg",
  15834. bottom: 0.01
  15835. }
  15836. },
  15837. },
  15838. [
  15839. {
  15840. name: "Small",
  15841. height: math.unit(5, "feet"),
  15842. default: true
  15843. },
  15844. {
  15845. name: "Large",
  15846. height: math.unit(13, "feet")
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(6, "feet"),
  15855. weight: math.unit(150, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/verin-raharra/front.svg",
  15859. extra: 5019 / 4835,
  15860. bottom: 0.023
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(7 + 5 / 12, "feet"),
  15868. default: true
  15869. },
  15870. {
  15871. name: "Upsized",
  15872. height: math.unit(20, "feet")
  15873. },
  15874. ]
  15875. ))
  15876. characterMakers.push(() => makeCharacter(
  15877. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15878. {
  15879. front: {
  15880. height: math.unit(7, "feet"),
  15881. weight: math.unit(230, "lb"),
  15882. name: "Front",
  15883. image: {
  15884. source: "./media/characters/nakata/front.svg",
  15885. extra: 1.005,
  15886. bottom: 0.01
  15887. }
  15888. },
  15889. },
  15890. [
  15891. {
  15892. name: "Normal",
  15893. height: math.unit(7, "feet"),
  15894. default: true
  15895. },
  15896. {
  15897. name: "Big",
  15898. height: math.unit(14, "feet")
  15899. },
  15900. {
  15901. name: "Macro",
  15902. height: math.unit(400, "feet")
  15903. },
  15904. ]
  15905. ))
  15906. characterMakers.push(() => makeCharacter(
  15907. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15908. {
  15909. front: {
  15910. height: math.unit(4.91, "feet"),
  15911. weight: math.unit(100, "lb"),
  15912. name: "Front",
  15913. image: {
  15914. source: "./media/characters/lily/front.svg",
  15915. extra: 1585 / 1415,
  15916. bottom: 0.02
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Normal",
  15923. height: math.unit(4.91, "feet"),
  15924. default: true
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15930. {
  15931. laying: {
  15932. height: math.unit(4 + 4 / 12, "feet"),
  15933. weight: math.unit(600, "lb"),
  15934. name: "Laying",
  15935. image: {
  15936. source: "./media/characters/sheila/laying.svg",
  15937. extra: 1333 / 1265,
  15938. bottom: 0.16
  15939. }
  15940. },
  15941. },
  15942. [
  15943. {
  15944. name: "Normal",
  15945. height: math.unit(4 + 4 / 12, "feet"),
  15946. default: true
  15947. },
  15948. ]
  15949. ))
  15950. characterMakers.push(() => makeCharacter(
  15951. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15952. {
  15953. front: {
  15954. height: math.unit(6, "feet"),
  15955. weight: math.unit(190, "lb"),
  15956. name: "Front",
  15957. image: {
  15958. source: "./media/characters/sax/front.svg",
  15959. extra: 1187 / 973,
  15960. bottom: 0.042
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Micro",
  15967. height: math.unit(4, "inches"),
  15968. default: true
  15969. },
  15970. ]
  15971. ))
  15972. characterMakers.push(() => makeCharacter(
  15973. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15974. {
  15975. front: {
  15976. height: math.unit(6, "feet"),
  15977. weight: math.unit(150, "lb"),
  15978. name: "Front",
  15979. image: {
  15980. source: "./media/characters/pandora/front.svg",
  15981. extra: 2720 / 2556,
  15982. bottom: 0.015
  15983. }
  15984. },
  15985. back: {
  15986. height: math.unit(6, "feet"),
  15987. weight: math.unit(150, "lb"),
  15988. name: "Back",
  15989. image: {
  15990. source: "./media/characters/pandora/back.svg",
  15991. extra: 2720 / 2556,
  15992. bottom: 0.01
  15993. }
  15994. },
  15995. beans: {
  15996. height: math.unit(6 / 8, "feet"),
  15997. name: "Beans",
  15998. image: {
  15999. source: "./media/characters/pandora/beans.svg"
  16000. }
  16001. },
  16002. collar: {
  16003. height: math.unit(0.31, "feet"),
  16004. name: "Collar",
  16005. image: {
  16006. source: "./media/characters/pandora/collar.svg"
  16007. }
  16008. },
  16009. skirt: {
  16010. height: math.unit(6, "feet"),
  16011. weight: math.unit(150, "lb"),
  16012. name: "Skirt",
  16013. image: {
  16014. source: "./media/characters/pandora/skirt.svg",
  16015. extra: 1622 / 1525,
  16016. bottom: 0.015
  16017. }
  16018. },
  16019. hoodie: {
  16020. height: math.unit(6, "feet"),
  16021. weight: math.unit(150, "lb"),
  16022. name: "Hoodie",
  16023. image: {
  16024. source: "./media/characters/pandora/hoodie.svg",
  16025. extra: 1622 / 1525,
  16026. bottom: 0.015
  16027. }
  16028. },
  16029. casual: {
  16030. height: math.unit(6, "feet"),
  16031. weight: math.unit(150, "lb"),
  16032. name: "Casual",
  16033. image: {
  16034. source: "./media/characters/pandora/casual.svg",
  16035. extra: 1622 / 1525,
  16036. bottom: 0.015
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Normal",
  16043. height: math.unit(6, "feet")
  16044. },
  16045. {
  16046. name: "Big Steppy",
  16047. height: math.unit(1, "km"),
  16048. default: true
  16049. },
  16050. {
  16051. name: "Galactic Steppy",
  16052. height: math.unit(2, "gigameters")
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16058. {
  16059. side: {
  16060. height: math.unit(10, "feet"),
  16061. weight: math.unit(800, "kg"),
  16062. name: "Side",
  16063. image: {
  16064. source: "./media/characters/venio-darcony/side.svg",
  16065. extra: 1373 / 1003,
  16066. bottom: 0.037
  16067. }
  16068. },
  16069. front: {
  16070. height: math.unit(19, "feet"),
  16071. weight: math.unit(800, "kg"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/venio-darcony/front.svg"
  16075. }
  16076. },
  16077. back: {
  16078. height: math.unit(19, "feet"),
  16079. weight: math.unit(800, "kg"),
  16080. name: "Back",
  16081. image: {
  16082. source: "./media/characters/venio-darcony/back.svg"
  16083. }
  16084. },
  16085. sideNsfw: {
  16086. height: math.unit(10, "feet"),
  16087. weight: math.unit(800, "kg"),
  16088. name: "Side (NSFW)",
  16089. image: {
  16090. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16091. extra: 1373 / 1003,
  16092. bottom: 0.037
  16093. }
  16094. },
  16095. frontNsfw: {
  16096. height: math.unit(19, "feet"),
  16097. weight: math.unit(800, "kg"),
  16098. name: "Front (NSFW)",
  16099. image: {
  16100. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16101. }
  16102. },
  16103. backNsfw: {
  16104. height: math.unit(19, "feet"),
  16105. weight: math.unit(800, "kg"),
  16106. name: "Back (NSFW)",
  16107. image: {
  16108. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16109. }
  16110. },
  16111. sideArmored: {
  16112. height: math.unit(10, "feet"),
  16113. weight: math.unit(800, "kg"),
  16114. name: "Side (Armored)",
  16115. image: {
  16116. source: "./media/characters/venio-darcony/side-armored.svg",
  16117. extra: 1373 / 1003,
  16118. bottom: 0.037
  16119. }
  16120. },
  16121. frontArmored: {
  16122. height: math.unit(19, "feet"),
  16123. weight: math.unit(900, "kg"),
  16124. name: "Front (Armored)",
  16125. image: {
  16126. source: "./media/characters/venio-darcony/front-armored.svg"
  16127. }
  16128. },
  16129. backArmored: {
  16130. height: math.unit(19, "feet"),
  16131. weight: math.unit(900, "kg"),
  16132. name: "Back (Armored)",
  16133. image: {
  16134. source: "./media/characters/venio-darcony/back-armored.svg"
  16135. }
  16136. },
  16137. sword: {
  16138. height: math.unit(10, "feet"),
  16139. weight: math.unit(50, "lb"),
  16140. name: "Sword",
  16141. image: {
  16142. source: "./media/characters/venio-darcony/sword.svg"
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(10, "feet")
  16150. },
  16151. {
  16152. name: "Macro",
  16153. height: math.unit(130, "feet"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "Macro+",
  16158. height: math.unit(240, "feet")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(150, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/veski/front.svg",
  16171. extra: 1299 / 1225,
  16172. bottom: 0.04
  16173. }
  16174. },
  16175. back: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(150, "lb"),
  16178. name: "Back",
  16179. image: {
  16180. source: "./media/characters/veski/back.svg",
  16181. extra: 1299 / 1225,
  16182. bottom: 0.008
  16183. }
  16184. },
  16185. maw: {
  16186. height: math.unit(1.5 * 1.21, "feet"),
  16187. name: "Maw",
  16188. image: {
  16189. source: "./media/characters/veski/maw.svg"
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Macro",
  16196. height: math.unit(2, "km"),
  16197. default: true
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16203. {
  16204. front: {
  16205. height: math.unit(5 + 7 / 12, "feet"),
  16206. name: "Front",
  16207. image: {
  16208. source: "./media/characters/isabelle/front.svg",
  16209. extra: 2130 / 1976,
  16210. bottom: 0.05
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Supermicro",
  16217. height: math.unit(10, "micrometers")
  16218. },
  16219. {
  16220. name: "Micro",
  16221. height: math.unit(1, "inch")
  16222. },
  16223. {
  16224. name: "Tiny",
  16225. height: math.unit(5, "inches")
  16226. },
  16227. {
  16228. name: "Standard",
  16229. height: math.unit(5 + 7 / 12, "inches")
  16230. },
  16231. {
  16232. name: "Macro",
  16233. height: math.unit(80, "meters"),
  16234. default: true
  16235. },
  16236. {
  16237. name: "Megamacro",
  16238. height: math.unit(250, "meters")
  16239. },
  16240. {
  16241. name: "Gigamacro",
  16242. height: math.unit(5, "km")
  16243. },
  16244. {
  16245. name: "Cosmic",
  16246. height: math.unit(2.5e6, "miles")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(6, "feet"),
  16255. weight: math.unit(150, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/hanzo/front.svg",
  16259. extra: 374 / 344,
  16260. bottom: 0.02
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(8, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(7, "feet"),
  16277. weight: math.unit(130, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/anna/front.svg",
  16281. extra: 169 / 145,
  16282. bottom: 0.06
  16283. }
  16284. },
  16285. full: {
  16286. height: math.unit(4.96, "feet"),
  16287. weight: math.unit(220, "lb"),
  16288. name: "Full",
  16289. image: {
  16290. source: "./media/characters/anna/full.svg",
  16291. extra: 138 / 114,
  16292. bottom: 0.15
  16293. }
  16294. },
  16295. tongue: {
  16296. height: math.unit(2.53, "feet"),
  16297. name: "Tongue",
  16298. image: {
  16299. source: "./media/characters/anna/tongue.svg"
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(7, "feet"),
  16307. default: true
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16313. {
  16314. front: {
  16315. height: math.unit(7, "feet"),
  16316. weight: math.unit(150, "lb"),
  16317. name: "Front",
  16318. image: {
  16319. source: "./media/characters/ian-corvid/front.svg",
  16320. extra: 150 / 142,
  16321. bottom: 0.02
  16322. }
  16323. },
  16324. back: {
  16325. height: math.unit(7, "feet"),
  16326. weight: math.unit(150, "lb"),
  16327. name: "Back",
  16328. image: {
  16329. source: "./media/characters/ian-corvid/back.svg",
  16330. extra: 150 / 143,
  16331. bottom: 0.01
  16332. }
  16333. },
  16334. stomping: {
  16335. height: math.unit(7, "feet"),
  16336. weight: math.unit(150, "lb"),
  16337. name: "Stomping",
  16338. image: {
  16339. source: "./media/characters/ian-corvid/stomping.svg",
  16340. extra: 76 / 72
  16341. }
  16342. },
  16343. sitting: {
  16344. height: math.unit(7 / 1.8, "feet"),
  16345. weight: math.unit(150, "lb"),
  16346. name: "Sitting",
  16347. image: {
  16348. source: "./media/characters/ian-corvid/sitting.svg",
  16349. extra: 1400 / 1269,
  16350. bottom: 0.15
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Tiny Microw",
  16357. height: math.unit(1, "inch")
  16358. },
  16359. {
  16360. name: "Microw",
  16361. height: math.unit(6, "inches")
  16362. },
  16363. {
  16364. name: "Crow",
  16365. height: math.unit(7 + 1 / 12, "feet"),
  16366. default: true
  16367. },
  16368. {
  16369. name: "Macrow",
  16370. height: math.unit(176, "feet")
  16371. },
  16372. ]
  16373. ))
  16374. characterMakers.push(() => makeCharacter(
  16375. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16376. {
  16377. front: {
  16378. height: math.unit(5 + 7 / 12, "feet"),
  16379. weight: math.unit(147, "lb"),
  16380. name: "Front",
  16381. image: {
  16382. source: "./media/characters/natalie-kellon/front.svg",
  16383. extra: 1214 / 1141,
  16384. bottom: 0.02
  16385. }
  16386. },
  16387. },
  16388. [
  16389. {
  16390. name: "Micro",
  16391. height: math.unit(1 / 16, "inch")
  16392. },
  16393. {
  16394. name: "Tiny",
  16395. height: math.unit(4, "inches")
  16396. },
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(5 + 7 / 12, "feet"),
  16400. default: true
  16401. },
  16402. {
  16403. name: "Amazon",
  16404. height: math.unit(12, "feet")
  16405. },
  16406. {
  16407. name: "Giantess",
  16408. height: math.unit(160, "meters")
  16409. },
  16410. {
  16411. name: "Titaness",
  16412. height: math.unit(800, "meters")
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(6, "feet"),
  16421. weight: math.unit(150, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/alluria/front.svg",
  16425. extra: 806 / 738,
  16426. bottom: 0.01
  16427. }
  16428. },
  16429. side: {
  16430. height: math.unit(6, "feet"),
  16431. weight: math.unit(150, "lb"),
  16432. name: "Side",
  16433. image: {
  16434. source: "./media/characters/alluria/side.svg",
  16435. extra: 800 / 750,
  16436. }
  16437. },
  16438. back: {
  16439. height: math.unit(6, "feet"),
  16440. weight: math.unit(150, "lb"),
  16441. name: "Back",
  16442. image: {
  16443. source: "./media/characters/alluria/back.svg",
  16444. extra: 806 / 738,
  16445. }
  16446. },
  16447. frontMaid: {
  16448. height: math.unit(6, "feet"),
  16449. weight: math.unit(150, "lb"),
  16450. name: "Front (Maid)",
  16451. image: {
  16452. source: "./media/characters/alluria/front-maid.svg",
  16453. extra: 806 / 738,
  16454. bottom: 0.01
  16455. }
  16456. },
  16457. sideMaid: {
  16458. height: math.unit(6, "feet"),
  16459. weight: math.unit(150, "lb"),
  16460. name: "Side (Maid)",
  16461. image: {
  16462. source: "./media/characters/alluria/side-maid.svg",
  16463. extra: 800 / 750,
  16464. bottom: 0.005
  16465. }
  16466. },
  16467. backMaid: {
  16468. height: math.unit(6, "feet"),
  16469. weight: math.unit(150, "lb"),
  16470. name: "Back (Maid)",
  16471. image: {
  16472. source: "./media/characters/alluria/back-maid.svg",
  16473. extra: 806 / 738,
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Micro",
  16480. height: math.unit(6, "inches"),
  16481. default: true
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16487. {
  16488. front: {
  16489. height: math.unit(6, "feet"),
  16490. weight: math.unit(150, "lb"),
  16491. name: "Front",
  16492. image: {
  16493. source: "./media/characters/kyle/front.svg",
  16494. extra: 1069 / 962,
  16495. bottom: 77.228 / 1727.45
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Macro",
  16502. height: math.unit(150, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(6, "feet"),
  16512. weight: math.unit(300, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/duncan/front.svg",
  16516. extra: 1650 / 1482,
  16517. bottom: 0.05
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Macro",
  16524. height: math.unit(100, "feet"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(5 + 4 / 12, "feet"),
  16534. weight: math.unit(220, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/memory/front.svg",
  16538. extra: 3641 / 3545,
  16539. bottom: 0.03
  16540. }
  16541. },
  16542. back: {
  16543. height: math.unit(5 + 4 / 12, "feet"),
  16544. weight: math.unit(220, "lb"),
  16545. name: "Back",
  16546. image: {
  16547. source: "./media/characters/memory/back.svg",
  16548. extra: 3641 / 3545,
  16549. bottom: 0.025
  16550. }
  16551. },
  16552. frontSkirt: {
  16553. height: math.unit(5 + 4 / 12, "feet"),
  16554. weight: math.unit(220, "lb"),
  16555. name: "Front (Skirt)",
  16556. image: {
  16557. source: "./media/characters/memory/front-skirt.svg",
  16558. extra: 3641 / 3545,
  16559. bottom: 0.03
  16560. }
  16561. },
  16562. frontDress: {
  16563. height: math.unit(5 + 4 / 12, "feet"),
  16564. weight: math.unit(220, "lb"),
  16565. name: "Front (Dress)",
  16566. image: {
  16567. source: "./media/characters/memory/front-dress.svg",
  16568. extra: 3641 / 3545,
  16569. bottom: 0.03
  16570. }
  16571. },
  16572. },
  16573. [
  16574. {
  16575. name: "Micro",
  16576. height: math.unit(6, "inches"),
  16577. default: true
  16578. },
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(5 + 4 / 12, "feet")
  16582. },
  16583. ]
  16584. ))
  16585. characterMakers.push(() => makeCharacter(
  16586. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16587. {
  16588. front: {
  16589. height: math.unit(4 + 11 / 12, "feet"),
  16590. weight: math.unit(100, "lb"),
  16591. name: "Front",
  16592. image: {
  16593. source: "./media/characters/luno/front.svg",
  16594. extra: 1535 / 1487,
  16595. bottom: 0.03
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Micro",
  16602. height: math.unit(3, "inches")
  16603. },
  16604. {
  16605. name: "Normal",
  16606. height: math.unit(4 + 11 / 12, "feet"),
  16607. default: true
  16608. },
  16609. {
  16610. name: "Macro",
  16611. height: math.unit(300, "feet")
  16612. },
  16613. {
  16614. name: "Megamacro",
  16615. height: math.unit(700, "miles")
  16616. },
  16617. ]
  16618. ))
  16619. characterMakers.push(() => makeCharacter(
  16620. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16621. {
  16622. front: {
  16623. height: math.unit(6 + 2 / 12, "feet"),
  16624. weight: math.unit(170, "lb"),
  16625. name: "Front",
  16626. image: {
  16627. source: "./media/characters/jamesy/front.svg",
  16628. extra: 440 / 382,
  16629. bottom: 0.005
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Micro",
  16636. height: math.unit(3, "inches")
  16637. },
  16638. {
  16639. name: "Normal",
  16640. height: math.unit(6 + 2 / 12, "feet"),
  16641. default: true
  16642. },
  16643. {
  16644. name: "Macro",
  16645. height: math.unit(300, "feet")
  16646. },
  16647. {
  16648. name: "Megamacro",
  16649. height: math.unit(700, "miles")
  16650. },
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16655. {
  16656. front: {
  16657. height: math.unit(6, "feet"),
  16658. weight: math.unit(160, "lb"),
  16659. name: "Front",
  16660. image: {
  16661. source: "./media/characters/mark/front.svg",
  16662. extra: 3300 / 3100,
  16663. bottom: 136.42 / 3440.47
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Macro",
  16670. height: math.unit(120, "meters")
  16671. },
  16672. {
  16673. name: "Bigger Macro",
  16674. height: math.unit(350, "meters")
  16675. },
  16676. {
  16677. name: "Megamacro",
  16678. height: math.unit(8, "km"),
  16679. default: true
  16680. },
  16681. {
  16682. name: "Continental",
  16683. height: math.unit(4550, "km")
  16684. },
  16685. {
  16686. name: "Planetary",
  16687. height: math.unit(65000, "km")
  16688. },
  16689. ]
  16690. ))
  16691. characterMakers.push(() => makeCharacter(
  16692. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16693. {
  16694. front: {
  16695. height: math.unit(6, "feet"),
  16696. weight: math.unit(400, "lb"),
  16697. name: "Front",
  16698. image: {
  16699. source: "./media/characters/mac/front.svg",
  16700. extra: 1048 / 987.7,
  16701. bottom: 60 / 1107.6,
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Macro",
  16708. height: math.unit(500, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(5 + 2 / 12, "feet"),
  16718. weight: math.unit(190, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/bari/front.svg",
  16722. extra: 3156 / 2880,
  16723. bottom: 0.03
  16724. }
  16725. },
  16726. back: {
  16727. height: math.unit(5 + 2 / 12, "feet"),
  16728. weight: math.unit(190, "lb"),
  16729. name: "Back",
  16730. image: {
  16731. source: "./media/characters/bari/back.svg",
  16732. extra: 3260 / 2834,
  16733. bottom: 0.025
  16734. }
  16735. },
  16736. frontPlush: {
  16737. height: math.unit(5 + 2 / 12, "feet"),
  16738. weight: math.unit(190, "lb"),
  16739. name: "Front (Plush)",
  16740. image: {
  16741. source: "./media/characters/bari/front-plush.svg",
  16742. extra: 1112 / 1061,
  16743. bottom: 0.002
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Micro",
  16750. height: math.unit(3, "inches")
  16751. },
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(5 + 2 / 12, "feet"),
  16755. default: true
  16756. },
  16757. {
  16758. name: "Macro",
  16759. height: math.unit(20, "feet")
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(6 + 1 / 12, "feet"),
  16768. weight: math.unit(275, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/hunter-misha-raven/front.svg"
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Mortal",
  16778. height: math.unit(6 + 1 / 12, "feet")
  16779. },
  16780. {
  16781. name: "Divine",
  16782. height: math.unit(1.12134e34, "parsecs"),
  16783. default: true
  16784. },
  16785. ]
  16786. ))
  16787. characterMakers.push(() => makeCharacter(
  16788. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16789. {
  16790. front: {
  16791. height: math.unit(6 + 3 / 12, "feet"),
  16792. weight: math.unit(220, "lb"),
  16793. name: "Front",
  16794. image: {
  16795. source: "./media/characters/max-calore/front.svg",
  16796. extra: 1700 / 1648,
  16797. bottom: 0.01
  16798. }
  16799. },
  16800. back: {
  16801. height: math.unit(6 + 3 / 12, "feet"),
  16802. weight: math.unit(220, "lb"),
  16803. name: "Back",
  16804. image: {
  16805. source: "./media/characters/max-calore/back.svg",
  16806. extra: 1700 / 1648,
  16807. bottom: 0.01
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(6 + 3 / 12, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16821. {
  16822. side: {
  16823. height: math.unit(2 + 8 / 12, "feet"),
  16824. weight: math.unit(99, "lb"),
  16825. name: "Side",
  16826. image: {
  16827. source: "./media/characters/aspen/side.svg",
  16828. extra: 152 / 138,
  16829. bottom: 0.032
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(2 + 8 / 12, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16843. {
  16844. side: {
  16845. height: math.unit(3 + 2 / 12, "feet"),
  16846. weight: math.unit(224, "lb"),
  16847. name: "Side",
  16848. image: {
  16849. source: "./media/characters/sheila-feral-wolf/side.svg",
  16850. extra: 179 / 166,
  16851. bottom: 0.03
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(3 + 2 / 12, "feet"),
  16859. default: true
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16865. {
  16866. side: {
  16867. height: math.unit(1 + 9 / 12, "feet"),
  16868. weight: math.unit(38, "lb"),
  16869. name: "Side",
  16870. image: {
  16871. source: "./media/characters/michelle/side.svg",
  16872. extra: 147 / 136.7,
  16873. bottom: 0.03
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(1 + 9 / 12, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(1 + 1 / 12, "feet"),
  16890. weight: math.unit(18, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/nino/front.svg"
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(1 + 1 / 12, "feet"),
  16901. default: true
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16907. {
  16908. front: {
  16909. height: math.unit(1, "feet"),
  16910. weight: math.unit(16, "lb"),
  16911. name: "Front",
  16912. image: {
  16913. source: "./media/characters/viola/front.svg"
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(1, "feet"),
  16921. default: true
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16927. {
  16928. front: {
  16929. height: math.unit(6 + 5 / 12, "feet"),
  16930. weight: math.unit(580, "lb"),
  16931. name: "Front",
  16932. image: {
  16933. source: "./media/characters/atlas/front.svg",
  16934. extra: 298.5 / 290,
  16935. bottom: 0.015
  16936. }
  16937. },
  16938. },
  16939. [
  16940. {
  16941. name: "Normal",
  16942. height: math.unit(6 + 5 / 12, "feet"),
  16943. default: true
  16944. },
  16945. ]
  16946. ))
  16947. characterMakers.push(() => makeCharacter(
  16948. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16949. {
  16950. side: {
  16951. height: math.unit(1 + 10 / 12, "feet"),
  16952. weight: math.unit(25, "lb"),
  16953. name: "Side",
  16954. image: {
  16955. source: "./media/characters/davy/side.svg",
  16956. extra: 200 / 170,
  16957. bottom: 0.01
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(1 + 10 / 12, "feet"),
  16965. default: true
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16971. {
  16972. side: {
  16973. height: math.unit(4 + 8 / 12, "feet"),
  16974. weight: math.unit(166, "lb"),
  16975. name: "Side",
  16976. image: {
  16977. source: "./media/characters/fiona/side.svg",
  16978. extra: 232 / 220,
  16979. bottom: 0.03
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(4 + 8 / 12, "feet"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16993. {
  16994. front: {
  16995. height: math.unit(2, "feet"),
  16996. weight: math.unit(62, "lb"),
  16997. name: "Front",
  16998. image: {
  16999. source: "./media/characters/lyla/front.svg",
  17000. bottom: 0.1
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(2, "feet"),
  17008. default: true
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17014. {
  17015. side: {
  17016. height: math.unit(1.8, "feet"),
  17017. weight: math.unit(44, "lb"),
  17018. name: "Side",
  17019. image: {
  17020. source: "./media/characters/perseus/side.svg",
  17021. bottom: 0.21
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(1.8, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17035. {
  17036. side: {
  17037. height: math.unit(4 + 2 / 12, "feet"),
  17038. weight: math.unit(20, "lb"),
  17039. name: "Side",
  17040. image: {
  17041. source: "./media/characters/remus/side.svg"
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Normal",
  17048. height: math.unit(4 + 2 / 12, "feet"),
  17049. default: true
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17055. {
  17056. front: {
  17057. height: math.unit(4 + 11 / 12, "feet"),
  17058. weight: math.unit(114, "lb"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/raf/front.svg",
  17062. bottom: 20.5 / 1863
  17063. }
  17064. },
  17065. side: {
  17066. height: math.unit(4 + 11 / 12, "feet"),
  17067. weight: math.unit(114, "lb"),
  17068. name: "Side",
  17069. image: {
  17070. source: "./media/characters/raf/side.svg",
  17071. bottom: 22 / 1822
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Micro",
  17078. height: math.unit(2, "inches")
  17079. },
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(4 + 11 / 12, "feet"),
  17083. default: true
  17084. },
  17085. {
  17086. name: "Macro",
  17087. height: math.unit(70, "feet")
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17093. {
  17094. front: {
  17095. height: math.unit(1.5, "meters"),
  17096. weight: math.unit(68, "kg"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/liam-einarr/front.svg",
  17100. extra: 2822 / 2666
  17101. }
  17102. },
  17103. back: {
  17104. height: math.unit(1.5, "meters"),
  17105. weight: math.unit(68, "kg"),
  17106. name: "Back",
  17107. image: {
  17108. source: "./media/characters/liam-einarr/back.svg",
  17109. extra: 2822 / 2666,
  17110. bottom: 0.015
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(1.5, "meters"),
  17118. default: true
  17119. },
  17120. {
  17121. name: "Macro",
  17122. height: math.unit(150, "meters")
  17123. },
  17124. {
  17125. name: "Megamacro",
  17126. height: math.unit(35, "km")
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(6, "feet"),
  17135. weight: math.unit(75, "kg"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/linda/front.svg",
  17139. extra: 930 / 874,
  17140. bottom: 0.004
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(6, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(6 + 8 / 12, "feet"),
  17157. weight: math.unit(220, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/caylex/front.svg",
  17161. extra: 821 / 772,
  17162. bottom: 0.07
  17163. }
  17164. },
  17165. back: {
  17166. height: math.unit(6 + 8 / 12, "feet"),
  17167. weight: math.unit(220, "lb"),
  17168. name: "Back",
  17169. image: {
  17170. source: "./media/characters/caylex/back.svg",
  17171. extra: 821 / 772,
  17172. bottom: 0.022
  17173. }
  17174. },
  17175. hand: {
  17176. height: math.unit(1.25, "feet"),
  17177. name: "Hand",
  17178. image: {
  17179. source: "./media/characters/caylex/hand.svg"
  17180. }
  17181. },
  17182. foot: {
  17183. height: math.unit(1.6, "feet"),
  17184. name: "Foot",
  17185. image: {
  17186. source: "./media/characters/caylex/foot.svg"
  17187. }
  17188. },
  17189. armored: {
  17190. height: math.unit(6 + 8 / 12, "feet"),
  17191. weight: math.unit(250, "lb"),
  17192. name: "Armored",
  17193. image: {
  17194. source: "./media/characters/caylex/armored.svg",
  17195. extra: 1420 / 1310,
  17196. bottom: 0.045
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(6 + 8 / 12, "feet"),
  17204. default: true
  17205. },
  17206. {
  17207. name: "Normal+",
  17208. height: math.unit(12, "feet")
  17209. },
  17210. ]
  17211. ))
  17212. characterMakers.push(() => makeCharacter(
  17213. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17214. {
  17215. front: {
  17216. height: math.unit(7 + 6 / 12, "feet"),
  17217. weight: math.unit(288, "lb"),
  17218. name: "Front",
  17219. image: {
  17220. source: "./media/characters/alana/front.svg",
  17221. extra: 679 / 653,
  17222. bottom: 22.5 / 701
  17223. }
  17224. },
  17225. },
  17226. [
  17227. {
  17228. name: "Normal",
  17229. height: math.unit(7 + 6 / 12, "feet")
  17230. },
  17231. {
  17232. name: "Large",
  17233. height: math.unit(50, "feet")
  17234. },
  17235. {
  17236. name: "Macro",
  17237. height: math.unit(100, "feet"),
  17238. default: true
  17239. },
  17240. {
  17241. name: "Macro+",
  17242. height: math.unit(200, "feet")
  17243. },
  17244. ]
  17245. ))
  17246. characterMakers.push(() => makeCharacter(
  17247. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17248. {
  17249. front: {
  17250. height: math.unit(6 + 1 / 12, "feet"),
  17251. weight: math.unit(210, "lb"),
  17252. name: "Front",
  17253. image: {
  17254. source: "./media/characters/hasani/front.svg",
  17255. extra: 244 / 232,
  17256. bottom: 0.01
  17257. }
  17258. },
  17259. back: {
  17260. height: math.unit(6 + 1 / 12, "feet"),
  17261. weight: math.unit(210, "lb"),
  17262. name: "Back",
  17263. image: {
  17264. source: "./media/characters/hasani/back.svg",
  17265. extra: 244 / 232,
  17266. bottom: 0.01
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Normal",
  17273. height: math.unit(6 + 1 / 12, "feet")
  17274. },
  17275. {
  17276. name: "Macro",
  17277. height: math.unit(175, "feet"),
  17278. default: true
  17279. },
  17280. ]
  17281. ))
  17282. characterMakers.push(() => makeCharacter(
  17283. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17284. {
  17285. front: {
  17286. height: math.unit(1.82, "meters"),
  17287. weight: math.unit(140, "lb"),
  17288. name: "Front",
  17289. image: {
  17290. source: "./media/characters/nita/front.svg",
  17291. extra: 2473 / 2363,
  17292. bottom: 0.01
  17293. }
  17294. },
  17295. },
  17296. [
  17297. {
  17298. name: "Normal",
  17299. height: math.unit(1.82, "m")
  17300. },
  17301. {
  17302. name: "Macro",
  17303. height: math.unit(300, "m")
  17304. },
  17305. {
  17306. name: "Mistake Canon",
  17307. height: math.unit(0.5, "miles"),
  17308. default: true
  17309. },
  17310. {
  17311. name: "Big Mistake",
  17312. height: math.unit(13, "miles")
  17313. },
  17314. {
  17315. name: "Playing God",
  17316. height: math.unit(2450, "miles")
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17322. {
  17323. front: {
  17324. height: math.unit(4, "feet"),
  17325. weight: math.unit(120, "lb"),
  17326. name: "Front",
  17327. image: {
  17328. source: "./media/characters/shiriko/front.svg",
  17329. extra: 970/934,
  17330. bottom: 5/975
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Normal",
  17337. height: math.unit(4, "feet"),
  17338. default: true
  17339. },
  17340. ]
  17341. ))
  17342. characterMakers.push(() => makeCharacter(
  17343. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17344. {
  17345. front: {
  17346. height: math.unit(6, "feet"),
  17347. name: "front",
  17348. image: {
  17349. source: "./media/characters/deja/front.svg",
  17350. extra: 926 / 840,
  17351. bottom: 0.07
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Planck Length",
  17358. height: math.unit(1.6e-35, "meters")
  17359. },
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(30.48, "meters"),
  17363. default: true
  17364. },
  17365. {
  17366. name: "Universal",
  17367. height: math.unit(8.8e26, "meters")
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17373. {
  17374. side: {
  17375. height: math.unit(8, "feet"),
  17376. weight: math.unit(6300, "lb"),
  17377. name: "Side",
  17378. image: {
  17379. source: "./media/characters/anima/side.svg",
  17380. bottom: 0.035
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(8, "feet"),
  17388. default: true
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17394. {
  17395. front: {
  17396. height: math.unit(8, "feet"),
  17397. weight: math.unit(350, "lb"),
  17398. name: "Front",
  17399. image: {
  17400. source: "./media/characters/bianca/front.svg",
  17401. extra: 234 / 225,
  17402. bottom: 0.03
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(8, "feet"),
  17410. default: true
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(6, "feet"),
  17419. weight: math.unit(150, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/adinia/front.svg",
  17423. extra: 1845 / 1672,
  17424. bottom: 0.02
  17425. }
  17426. },
  17427. back: {
  17428. height: math.unit(6, "feet"),
  17429. weight: math.unit(150, "lb"),
  17430. name: "Back",
  17431. image: {
  17432. source: "./media/characters/adinia/back.svg",
  17433. extra: 1845 / 1672,
  17434. bottom: 0.002
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Normal",
  17441. height: math.unit(11 + 5 / 12, "feet"),
  17442. default: true
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17448. {
  17449. front: {
  17450. height: math.unit(3, "meters"),
  17451. weight: math.unit(200, "kg"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/lykasa/front.svg",
  17455. extra: 1076 / 976,
  17456. bottom: 0.06
  17457. }
  17458. },
  17459. },
  17460. [
  17461. {
  17462. name: "Normal",
  17463. height: math.unit(3, "meters")
  17464. },
  17465. {
  17466. name: "Kaiju",
  17467. height: math.unit(120, "meters"),
  17468. default: true
  17469. },
  17470. {
  17471. name: "Mega Kaiju",
  17472. height: math.unit(240, "km")
  17473. },
  17474. {
  17475. name: "Giga Kaiju",
  17476. height: math.unit(400, "megameters")
  17477. },
  17478. {
  17479. name: "Tera Kaiju",
  17480. height: math.unit(800, "gigameters")
  17481. },
  17482. {
  17483. name: "Kaiju Dragon Goddess",
  17484. height: math.unit(26, "zettaparsecs")
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17490. {
  17491. side: {
  17492. height: math.unit(283 / 124 * 6, "feet"),
  17493. weight: math.unit(35000, "lb"),
  17494. name: "Side",
  17495. image: {
  17496. source: "./media/characters/malfaren/side.svg",
  17497. extra: 2500 / 1010,
  17498. bottom: 0.01
  17499. }
  17500. },
  17501. front: {
  17502. height: math.unit(22.36, "feet"),
  17503. weight: math.unit(35000, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/malfaren/front.svg",
  17507. extra: 1631 / 1476,
  17508. bottom: 0.01
  17509. }
  17510. },
  17511. maw: {
  17512. height: math.unit(6.9, "feet"),
  17513. name: "Maw",
  17514. image: {
  17515. source: "./media/characters/malfaren/maw.svg"
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Big",
  17522. height: math.unit(283 / 162 * 6, "feet"),
  17523. },
  17524. {
  17525. name: "Bigger",
  17526. height: math.unit(283 / 124 * 6, "feet")
  17527. },
  17528. {
  17529. name: "Massive",
  17530. height: math.unit(283 / 92 * 6, "feet"),
  17531. default: true
  17532. },
  17533. {
  17534. name: "👀💦",
  17535. height: math.unit(283 / 73 * 6, "feet"),
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17541. {
  17542. front: {
  17543. height: math.unit(1.7, "m"),
  17544. weight: math.unit(70, "kg"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/kernel/front.svg",
  17548. extra: 222 / 210,
  17549. bottom: 0.007
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Nano",
  17556. height: math.unit(17, "micrometers")
  17557. },
  17558. {
  17559. name: "Micro",
  17560. height: math.unit(1.7, "mm")
  17561. },
  17562. {
  17563. name: "Small",
  17564. height: math.unit(1.7, "cm")
  17565. },
  17566. {
  17567. name: "Normal",
  17568. height: math.unit(1.7, "m"),
  17569. default: true
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17575. {
  17576. front: {
  17577. height: math.unit(1.75, "meters"),
  17578. weight: math.unit(65, "kg"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/jayne-folest/front.svg",
  17582. extra: 2115 / 2007,
  17583. bottom: 0.02
  17584. }
  17585. },
  17586. back: {
  17587. height: math.unit(1.75, "meters"),
  17588. weight: math.unit(65, "kg"),
  17589. name: "Back",
  17590. image: {
  17591. source: "./media/characters/jayne-folest/back.svg",
  17592. extra: 2115 / 2007,
  17593. bottom: 0.005
  17594. }
  17595. },
  17596. frontClothed: {
  17597. height: math.unit(1.75, "meters"),
  17598. weight: math.unit(65, "kg"),
  17599. name: "Front (Clothed)",
  17600. image: {
  17601. source: "./media/characters/jayne-folest/front-clothed.svg",
  17602. extra: 2115 / 2007,
  17603. bottom: 0.035
  17604. }
  17605. },
  17606. hand: {
  17607. height: math.unit(1 / 1.260, "feet"),
  17608. name: "Hand",
  17609. image: {
  17610. source: "./media/characters/jayne-folest/hand.svg"
  17611. }
  17612. },
  17613. foot: {
  17614. height: math.unit(1 / 0.918, "feet"),
  17615. name: "Foot",
  17616. image: {
  17617. source: "./media/characters/jayne-folest/foot.svg"
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Micro",
  17624. height: math.unit(4, "cm")
  17625. },
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(1.75, "meters")
  17629. },
  17630. {
  17631. name: "Macro",
  17632. height: math.unit(47.5, "meters"),
  17633. default: true
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17639. {
  17640. front: {
  17641. height: math.unit(180, "cm"),
  17642. weight: math.unit(70, "kg"),
  17643. name: "Front",
  17644. image: {
  17645. source: "./media/characters/algier/front.svg",
  17646. extra: 596 / 572,
  17647. bottom: 0.04
  17648. }
  17649. },
  17650. back: {
  17651. height: math.unit(180, "cm"),
  17652. weight: math.unit(70, "kg"),
  17653. name: "Back",
  17654. image: {
  17655. source: "./media/characters/algier/back.svg",
  17656. extra: 596 / 572,
  17657. bottom: 0.025
  17658. }
  17659. },
  17660. frontdressed: {
  17661. height: math.unit(180, "cm"),
  17662. weight: math.unit(150, "kg"),
  17663. name: "Front-dressed",
  17664. image: {
  17665. source: "./media/characters/algier/front-dressed.svg",
  17666. extra: 596 / 572,
  17667. bottom: 0.038
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Micro",
  17674. height: math.unit(5, "cm")
  17675. },
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(180, "cm"),
  17679. default: true
  17680. },
  17681. {
  17682. name: "Macro",
  17683. height: math.unit(64, "m")
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17689. {
  17690. upright: {
  17691. height: math.unit(7, "feet"),
  17692. weight: math.unit(300, "lb"),
  17693. name: "Upright",
  17694. image: {
  17695. source: "./media/characters/pretzel/upright.svg",
  17696. extra: 534 / 522,
  17697. bottom: 0.065
  17698. }
  17699. },
  17700. sprawling: {
  17701. height: math.unit(3.75, "feet"),
  17702. weight: math.unit(300, "lb"),
  17703. name: "Sprawling",
  17704. image: {
  17705. source: "./media/characters/pretzel/sprawling.svg",
  17706. extra: 314 / 281,
  17707. bottom: 0.1
  17708. }
  17709. },
  17710. tongue: {
  17711. height: math.unit(2, "feet"),
  17712. name: "Tongue",
  17713. image: {
  17714. source: "./media/characters/pretzel/tongue.svg"
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(7, "feet"),
  17722. default: true
  17723. },
  17724. {
  17725. name: "Oversized",
  17726. height: math.unit(15, "feet")
  17727. },
  17728. {
  17729. name: "Huge",
  17730. height: math.unit(30, "feet")
  17731. },
  17732. {
  17733. name: "Macro",
  17734. height: math.unit(250, "feet")
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17740. {
  17741. sideFront: {
  17742. height: math.unit(5 + 2 / 12, "feet"),
  17743. weight: math.unit(120, "lb"),
  17744. name: "Front Side",
  17745. image: {
  17746. source: "./media/characters/roxi/side-front.svg",
  17747. extra: 2924 / 2717,
  17748. bottom: 0.08
  17749. }
  17750. },
  17751. sideBack: {
  17752. height: math.unit(5 + 2 / 12, "feet"),
  17753. weight: math.unit(120, "lb"),
  17754. name: "Back Side",
  17755. image: {
  17756. source: "./media/characters/roxi/side-back.svg",
  17757. extra: 2904 / 2693,
  17758. bottom: 0.06
  17759. }
  17760. },
  17761. front: {
  17762. height: math.unit(5 + 2 / 12, "feet"),
  17763. weight: math.unit(120, "lb"),
  17764. name: "Front",
  17765. image: {
  17766. source: "./media/characters/roxi/front.svg",
  17767. extra: 2028 / 1907,
  17768. bottom: 0.01
  17769. }
  17770. },
  17771. frontAlt: {
  17772. height: math.unit(5 + 2 / 12, "feet"),
  17773. weight: math.unit(120, "lb"),
  17774. name: "Front (Alt)",
  17775. image: {
  17776. source: "./media/characters/roxi/front-alt.svg",
  17777. extra: 1828 / 1798,
  17778. bottom: 0.01
  17779. }
  17780. },
  17781. sitting: {
  17782. height: math.unit(2.8, "feet"),
  17783. weight: math.unit(120, "lb"),
  17784. name: "Sitting",
  17785. image: {
  17786. source: "./media/characters/roxi/sitting.svg",
  17787. extra: 2660 / 2462,
  17788. bottom: 0.1
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(5 + 2 / 12, "feet"),
  17796. default: true
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17802. {
  17803. side: {
  17804. height: math.unit(55, "feet"),
  17805. weight: math.unit(153, "tons"),
  17806. name: "Side",
  17807. image: {
  17808. source: "./media/characters/shadow/side.svg",
  17809. extra: 701 / 628,
  17810. bottom: 0.02
  17811. }
  17812. },
  17813. flying: {
  17814. height: math.unit(145, "feet"),
  17815. weight: math.unit(153, "tons"),
  17816. name: "Flying",
  17817. image: {
  17818. source: "./media/characters/shadow/flying.svg"
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(55, "feet"),
  17826. default: true
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(6, "feet"),
  17835. weight: math.unit(200, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/marcie/front.svg",
  17839. extra: 960 / 876,
  17840. bottom: 58 / 1017.87
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Macro",
  17847. height: math.unit(1, "mile"),
  17848. default: true
  17849. },
  17850. ]
  17851. ))
  17852. characterMakers.push(() => makeCharacter(
  17853. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17854. {
  17855. front: {
  17856. height: math.unit(7, "feet"),
  17857. weight: math.unit(200, "lb"),
  17858. name: "Front",
  17859. image: {
  17860. source: "./media/characters/kachina/front.svg",
  17861. extra: 1290.68 / 1119,
  17862. bottom: 36.5 / 1327.18
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(7, "feet"),
  17870. default: true
  17871. },
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17876. {
  17877. looking: {
  17878. height: math.unit(2, "meters"),
  17879. weight: math.unit(300, "kg"),
  17880. name: "Looking",
  17881. image: {
  17882. source: "./media/characters/kash/looking.svg",
  17883. extra: 474 / 344,
  17884. bottom: 0.03
  17885. }
  17886. },
  17887. side: {
  17888. height: math.unit(2, "meters"),
  17889. weight: math.unit(300, "kg"),
  17890. name: "Side",
  17891. image: {
  17892. source: "./media/characters/kash/side.svg",
  17893. extra: 302 / 251,
  17894. bottom: 0.03
  17895. }
  17896. },
  17897. front: {
  17898. height: math.unit(2, "meters"),
  17899. weight: math.unit(300, "kg"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/kash/front.svg",
  17903. extra: 495 / 360,
  17904. bottom: 0.015
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(2, "meters"),
  17912. default: true
  17913. },
  17914. {
  17915. name: "Big",
  17916. height: math.unit(3, "meters")
  17917. },
  17918. {
  17919. name: "Large",
  17920. height: math.unit(5, "meters")
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17926. {
  17927. feeding: {
  17928. height: math.unit(6.7, "feet"),
  17929. weight: math.unit(350, "lb"),
  17930. name: "Feeding",
  17931. image: {
  17932. source: "./media/characters/lalim/feeding.svg",
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Normal",
  17939. height: math.unit(6.7, "feet"),
  17940. default: true
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17946. {
  17947. front: {
  17948. height: math.unit(9.5, "feet"),
  17949. weight: math.unit(600, "lb"),
  17950. name: "Front",
  17951. image: {
  17952. source: "./media/characters/de'vout/front.svg",
  17953. extra: 1443 / 1328,
  17954. bottom: 0.025
  17955. }
  17956. },
  17957. back: {
  17958. height: math.unit(9.5, "feet"),
  17959. weight: math.unit(600, "lb"),
  17960. name: "Back",
  17961. image: {
  17962. source: "./media/characters/de'vout/back.svg",
  17963. extra: 1443 / 1328
  17964. }
  17965. },
  17966. frontDressed: {
  17967. height: math.unit(9.5, "feet"),
  17968. weight: math.unit(600, "lb"),
  17969. name: "Front (Dressed",
  17970. image: {
  17971. source: "./media/characters/de'vout/front-dressed.svg",
  17972. extra: 1443 / 1328,
  17973. bottom: 0.025
  17974. }
  17975. },
  17976. backDressed: {
  17977. height: math.unit(9.5, "feet"),
  17978. weight: math.unit(600, "lb"),
  17979. name: "Back (Dressed",
  17980. image: {
  17981. source: "./media/characters/de'vout/back-dressed.svg",
  17982. extra: 1443 / 1328
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Normal",
  17989. height: math.unit(9.5, "feet"),
  17990. default: true
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17996. {
  17997. front: {
  17998. height: math.unit(8, "feet"),
  17999. weight: math.unit(225, "lb"),
  18000. name: "Front",
  18001. image: {
  18002. source: "./media/characters/talana/front.svg",
  18003. extra: 1410 / 1300,
  18004. bottom: 0.015
  18005. }
  18006. },
  18007. frontDressed: {
  18008. height: math.unit(8, "feet"),
  18009. weight: math.unit(225, "lb"),
  18010. name: "Front (Dressed",
  18011. image: {
  18012. source: "./media/characters/talana/front-dressed.svg",
  18013. extra: 1410 / 1300,
  18014. bottom: 0.015
  18015. }
  18016. },
  18017. },
  18018. [
  18019. {
  18020. name: "Normal",
  18021. height: math.unit(8, "feet"),
  18022. default: true
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18028. {
  18029. side: {
  18030. height: math.unit(7.2, "feet"),
  18031. weight: math.unit(150, "lb"),
  18032. name: "Side",
  18033. image: {
  18034. source: "./media/characters/xeauvok/side.svg",
  18035. extra: 1975 / 1523,
  18036. bottom: 0.07
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(7.2, "feet"),
  18044. default: true
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18050. {
  18051. side: {
  18052. height: math.unit(10, "feet"),
  18053. weight: math.unit(900, "kg"),
  18054. name: "Side",
  18055. image: {
  18056. source: "./media/characters/zara/side.svg",
  18057. extra: 504 / 498
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(10, "feet"),
  18065. default: true
  18066. },
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18071. {
  18072. side: {
  18073. height: math.unit(6, "feet"),
  18074. weight: math.unit(150, "lb"),
  18075. name: "Side",
  18076. image: {
  18077. source: "./media/characters/richard-dragon/side.svg",
  18078. extra: 845 / 340,
  18079. bottom: 0.017
  18080. }
  18081. },
  18082. maw: {
  18083. height: math.unit(2.97, "feet"),
  18084. name: "Maw",
  18085. image: {
  18086. source: "./media/characters/richard-dragon/maw.svg"
  18087. }
  18088. },
  18089. },
  18090. [
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18095. {
  18096. front: {
  18097. height: math.unit(4, "feet"),
  18098. weight: math.unit(100, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/richard-smeargle/front.svg",
  18102. extra: 2952 / 2820,
  18103. bottom: 0.028
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(4, "feet"),
  18111. default: true
  18112. },
  18113. {
  18114. name: "Dynamax",
  18115. height: math.unit(20, "meters")
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18121. {
  18122. front: {
  18123. height: math.unit(6, "feet"),
  18124. weight: math.unit(110, "lb"),
  18125. name: "Front",
  18126. image: {
  18127. source: "./media/characters/klay/front.svg",
  18128. extra: 962 / 883,
  18129. bottom: 0.04
  18130. }
  18131. },
  18132. back: {
  18133. height: math.unit(6, "feet"),
  18134. weight: math.unit(110, "lb"),
  18135. name: "Back",
  18136. image: {
  18137. source: "./media/characters/klay/back.svg",
  18138. extra: 962 / 883
  18139. }
  18140. },
  18141. beans: {
  18142. height: math.unit(1.15, "feet"),
  18143. name: "Beans",
  18144. image: {
  18145. source: "./media/characters/klay/beans.svg"
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Micro",
  18152. height: math.unit(6, "inches")
  18153. },
  18154. {
  18155. name: "Mini",
  18156. height: math.unit(3, "feet")
  18157. },
  18158. {
  18159. name: "Normal",
  18160. height: math.unit(6, "feet"),
  18161. default: true
  18162. },
  18163. {
  18164. name: "Big",
  18165. height: math.unit(25, "feet")
  18166. },
  18167. {
  18168. name: "Macro",
  18169. height: math.unit(100, "feet")
  18170. },
  18171. {
  18172. name: "Megamacro",
  18173. height: math.unit(400, "feet")
  18174. },
  18175. ]
  18176. ))
  18177. characterMakers.push(() => makeCharacter(
  18178. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18179. {
  18180. front: {
  18181. height: math.unit(6, "feet"),
  18182. weight: math.unit(160, "lb"),
  18183. name: "Front",
  18184. image: {
  18185. source: "./media/characters/marcus/front.svg",
  18186. extra: 734 / 676,
  18187. bottom: 0.03
  18188. }
  18189. },
  18190. },
  18191. [
  18192. {
  18193. name: "Little",
  18194. height: math.unit(6, "feet")
  18195. },
  18196. {
  18197. name: "Normal",
  18198. height: math.unit(110, "feet"),
  18199. default: true
  18200. },
  18201. {
  18202. name: "Macro",
  18203. height: math.unit(250, "feet")
  18204. },
  18205. {
  18206. name: "Megamacro",
  18207. height: math.unit(1000, "feet")
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18213. {
  18214. front: {
  18215. height: math.unit(7, "feet"),
  18216. weight: math.unit(275, "lb"),
  18217. name: "Front",
  18218. image: {
  18219. source: "./media/characters/claude-delroute/front.svg",
  18220. extra: 230 / 214,
  18221. bottom: 0.007
  18222. }
  18223. },
  18224. side: {
  18225. height: math.unit(7, "feet"),
  18226. weight: math.unit(275, "lb"),
  18227. name: "Side",
  18228. image: {
  18229. source: "./media/characters/claude-delroute/side.svg",
  18230. extra: 222 / 214,
  18231. bottom: 0.01
  18232. }
  18233. },
  18234. back: {
  18235. height: math.unit(7, "feet"),
  18236. weight: math.unit(275, "lb"),
  18237. name: "Back",
  18238. image: {
  18239. source: "./media/characters/claude-delroute/back.svg",
  18240. extra: 230 / 214,
  18241. bottom: 0.015
  18242. }
  18243. },
  18244. maw: {
  18245. height: math.unit(0.6407, "meters"),
  18246. name: "Maw",
  18247. image: {
  18248. source: "./media/characters/claude-delroute/maw.svg"
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(7, "feet"),
  18256. default: true
  18257. },
  18258. {
  18259. name: "Lorge",
  18260. height: math.unit(20, "feet")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(8 + 4 / 12, "feet"),
  18269. weight: math.unit(600, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/dragonien/front.svg",
  18273. extra: 100 / 94,
  18274. bottom: 3.3 / 103.3445
  18275. }
  18276. },
  18277. back: {
  18278. height: math.unit(8 + 4 / 12, "feet"),
  18279. weight: math.unit(600, "lb"),
  18280. name: "Back",
  18281. image: {
  18282. source: "./media/characters/dragonien/back.svg",
  18283. extra: 776 / 746,
  18284. bottom: 6.4 / 782.0616
  18285. }
  18286. },
  18287. foot: {
  18288. height: math.unit(1.54, "feet"),
  18289. name: "Foot",
  18290. image: {
  18291. source: "./media/characters/dragonien/foot.svg",
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Normal",
  18298. height: math.unit(8 + 4 / 12, "feet"),
  18299. default: true
  18300. },
  18301. {
  18302. name: "Macro",
  18303. height: math.unit(200, "feet")
  18304. },
  18305. {
  18306. name: "Megamacro",
  18307. height: math.unit(1, "mile")
  18308. },
  18309. {
  18310. name: "Gigamacro",
  18311. height: math.unit(1000, "miles")
  18312. },
  18313. ]
  18314. ))
  18315. characterMakers.push(() => makeCharacter(
  18316. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18317. {
  18318. front: {
  18319. height: math.unit(5 + 2 / 12, "feet"),
  18320. weight: math.unit(110, "lb"),
  18321. name: "Front",
  18322. image: {
  18323. source: "./media/characters/desta/front.svg",
  18324. extra: 767 / 726,
  18325. bottom: 11.7 / 779
  18326. }
  18327. },
  18328. back: {
  18329. height: math.unit(5 + 2 / 12, "feet"),
  18330. weight: math.unit(110, "lb"),
  18331. name: "Back",
  18332. image: {
  18333. source: "./media/characters/desta/back.svg",
  18334. extra: 777 / 728,
  18335. bottom: 6 / 784
  18336. }
  18337. },
  18338. frontAlt: {
  18339. height: math.unit(5 + 2 / 12, "feet"),
  18340. weight: math.unit(110, "lb"),
  18341. name: "Front",
  18342. image: {
  18343. source: "./media/characters/desta/front-alt.svg",
  18344. extra: 1482 / 1417
  18345. }
  18346. },
  18347. side: {
  18348. height: math.unit(5 + 2 / 12, "feet"),
  18349. weight: math.unit(110, "lb"),
  18350. name: "Side",
  18351. image: {
  18352. source: "./media/characters/desta/side.svg",
  18353. extra: 2579 / 2491,
  18354. bottom: 0.053
  18355. }
  18356. },
  18357. },
  18358. [
  18359. {
  18360. name: "Micro",
  18361. height: math.unit(6, "inches")
  18362. },
  18363. {
  18364. name: "Normal",
  18365. height: math.unit(5 + 2 / 12, "feet"),
  18366. default: true
  18367. },
  18368. {
  18369. name: "Macro",
  18370. height: math.unit(62, "feet")
  18371. },
  18372. {
  18373. name: "Megamacro",
  18374. height: math.unit(1800, "feet")
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18380. {
  18381. front: {
  18382. height: math.unit(10, "feet"),
  18383. weight: math.unit(700, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/storm-alystar/front.svg",
  18387. extra: 2112 / 1898,
  18388. bottom: 0.034
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Micro",
  18395. height: math.unit(3.5, "inches")
  18396. },
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(10, "feet"),
  18400. default: true
  18401. },
  18402. {
  18403. name: "Macro",
  18404. height: math.unit(400, "feet")
  18405. },
  18406. {
  18407. name: "Deific",
  18408. height: math.unit(60, "miles")
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18414. {
  18415. front: {
  18416. height: math.unit(2.35, "meters"),
  18417. weight: math.unit(119, "kg"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/ilia/front.svg",
  18421. extra: 1285 / 1255,
  18422. bottom: 0.06
  18423. }
  18424. },
  18425. },
  18426. [
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(2.35, "meters")
  18430. },
  18431. {
  18432. name: "Macro",
  18433. height: math.unit(140, "meters"),
  18434. default: true
  18435. },
  18436. {
  18437. name: "Megamacro",
  18438. height: math.unit(100, "miles")
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18444. {
  18445. front: {
  18446. height: math.unit(6 + 5 / 12, "feet"),
  18447. weight: math.unit(190, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/kingdead/front.svg",
  18451. extra: 1228 / 1177
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Micro",
  18458. height: math.unit(7, "inches")
  18459. },
  18460. {
  18461. name: "Normal",
  18462. height: math.unit(6 + 5 / 12, "feet")
  18463. },
  18464. {
  18465. name: "Macro",
  18466. height: math.unit(150, "feet"),
  18467. default: true
  18468. },
  18469. {
  18470. name: "Megamacro",
  18471. height: math.unit(200, "miles")
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18477. {
  18478. front: {
  18479. height: math.unit(8, "feet"),
  18480. weight: math.unit(600, "lb"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/kyrehx/front.svg",
  18484. extra: 1195 / 1095,
  18485. bottom: 0.034
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Micro",
  18492. height: math.unit(2, "inches")
  18493. },
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(8, "feet"),
  18497. default: true
  18498. },
  18499. {
  18500. name: "Macro",
  18501. height: math.unit(255, "feet")
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18507. {
  18508. front: {
  18509. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18510. weight: math.unit(184, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/xang/front.svg",
  18514. extra: 845 / 755
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18522. default: true
  18523. },
  18524. {
  18525. name: "Macro",
  18526. height: math.unit(0.935 * 146, "feet")
  18527. },
  18528. {
  18529. name: "Megamacro",
  18530. height: math.unit(0.935 * 3, "miles")
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18536. {
  18537. frontDressed: {
  18538. height: math.unit(5 + 7 / 12, "feet"),
  18539. weight: math.unit(140, "lb"),
  18540. name: "Front (Dressed)",
  18541. image: {
  18542. source: "./media/characters/doc-weardno/front-dressed.svg",
  18543. extra: 263 / 234
  18544. }
  18545. },
  18546. backDressed: {
  18547. height: math.unit(5 + 7 / 12, "feet"),
  18548. weight: math.unit(140, "lb"),
  18549. name: "Back (Dressed)",
  18550. image: {
  18551. source: "./media/characters/doc-weardno/back-dressed.svg",
  18552. extra: 266 / 238
  18553. }
  18554. },
  18555. front: {
  18556. height: math.unit(5 + 7 / 12, "feet"),
  18557. weight: math.unit(140, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/doc-weardno/front.svg",
  18561. extra: 254 / 233
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Micro",
  18568. height: math.unit(3, "inches")
  18569. },
  18570. {
  18571. name: "Normal",
  18572. height: math.unit(5 + 7 / 12, "feet"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "Macro",
  18577. height: math.unit(25, "feet")
  18578. },
  18579. {
  18580. name: "Megamacro",
  18581. height: math.unit(2, "miles")
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(6 + 2 / 12, "feet"),
  18590. weight: math.unit(153, "lb"),
  18591. name: "Front",
  18592. image: {
  18593. source: "./media/characters/seth-whilst/front.svg",
  18594. bottom: 0.07
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Micro",
  18601. height: math.unit(5, "inches")
  18602. },
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(6 + 2 / 12, "feet"),
  18606. default: true
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18612. {
  18613. front: {
  18614. height: math.unit(3, "inches"),
  18615. weight: math.unit(8, "grams"),
  18616. name: "Front",
  18617. image: {
  18618. source: "./media/characters/pocket-jabari/front.svg",
  18619. extra: 1024 / 974,
  18620. bottom: 0.039
  18621. }
  18622. },
  18623. },
  18624. [
  18625. {
  18626. name: "Minimicro",
  18627. height: math.unit(8, "mm")
  18628. },
  18629. {
  18630. name: "Micro",
  18631. height: math.unit(3, "inches"),
  18632. default: true
  18633. },
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(3, "feet")
  18637. },
  18638. ]
  18639. ))
  18640. characterMakers.push(() => makeCharacter(
  18641. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18642. {
  18643. front: {
  18644. height: math.unit(15, "feet"),
  18645. weight: math.unit(3280, "lb"),
  18646. name: "Front",
  18647. image: {
  18648. source: "./media/characters/sapphy/front.svg",
  18649. extra: 671 / 577,
  18650. bottom: 0.085
  18651. }
  18652. },
  18653. back: {
  18654. height: math.unit(15, "feet"),
  18655. weight: math.unit(3280, "lb"),
  18656. name: "Back",
  18657. image: {
  18658. source: "./media/characters/sapphy/back.svg",
  18659. extra: 631 / 607,
  18660. bottom: 0.045
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(15, "feet")
  18668. },
  18669. {
  18670. name: "Casual Macro",
  18671. height: math.unit(120, "feet")
  18672. },
  18673. {
  18674. name: "Macro",
  18675. height: math.unit(2150, "feet"),
  18676. default: true
  18677. },
  18678. {
  18679. name: "Megamacro",
  18680. height: math.unit(8, "miles")
  18681. },
  18682. {
  18683. name: "Galaxy Mom",
  18684. height: math.unit(6, "megalightyears")
  18685. },
  18686. ]
  18687. ))
  18688. characterMakers.push(() => makeCharacter(
  18689. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18690. {
  18691. front: {
  18692. height: math.unit(6, "feet"),
  18693. weight: math.unit(170, "lb"),
  18694. name: "Front",
  18695. image: {
  18696. source: "./media/characters/kiro/front.svg",
  18697. extra: 1064 / 1012,
  18698. bottom: 0.052
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Micro",
  18705. height: math.unit(6, "inches")
  18706. },
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(6, "feet"),
  18710. default: true
  18711. },
  18712. {
  18713. name: "Macro",
  18714. height: math.unit(72, "feet")
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(5 + 9 / 12, "feet"),
  18723. weight: math.unit(175, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/irishfox/front.svg",
  18727. extra: 1912 / 1680,
  18728. bottom: 0.02
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Nano",
  18735. height: math.unit(1, "mm")
  18736. },
  18737. {
  18738. name: "Micro",
  18739. height: math.unit(2, "inches")
  18740. },
  18741. {
  18742. name: "Normal",
  18743. height: math.unit(5 + 9 / 12, "feet"),
  18744. default: true
  18745. },
  18746. {
  18747. name: "Macro",
  18748. height: math.unit(45, "feet")
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18754. {
  18755. front: {
  18756. height: math.unit(6 + 1 / 12, "feet"),
  18757. weight: math.unit(75, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/aronai-sieyes/front.svg",
  18761. extra: 1556 / 1480,
  18762. bottom: 0.015
  18763. }
  18764. },
  18765. side: {
  18766. height: math.unit(6 + 1 / 12, "feet"),
  18767. weight: math.unit(75, "lb"),
  18768. name: "Side",
  18769. image: {
  18770. source: "./media/characters/aronai-sieyes/side.svg",
  18771. extra: 1433 / 1390,
  18772. bottom: 0.0393
  18773. }
  18774. },
  18775. back: {
  18776. height: math.unit(6 + 1 / 12, "feet"),
  18777. weight: math.unit(75, "lb"),
  18778. name: "Back",
  18779. image: {
  18780. source: "./media/characters/aronai-sieyes/back.svg",
  18781. extra: 1544 / 1494,
  18782. bottom: 0.02
  18783. }
  18784. },
  18785. frontClothed: {
  18786. height: math.unit(6 + 1 / 12, "feet"),
  18787. weight: math.unit(75, "lb"),
  18788. name: "Front (Clothed)",
  18789. image: {
  18790. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18791. extra: 1582 / 1527
  18792. }
  18793. },
  18794. feral: {
  18795. height: math.unit(18, "feet"),
  18796. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18797. name: "Feral",
  18798. image: {
  18799. source: "./media/characters/aronai-sieyes/feral.svg",
  18800. extra: 1530 / 1240,
  18801. bottom: 0.035
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Micro",
  18808. height: math.unit(2, "inches")
  18809. },
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(6 + 1 / 12, "feet"),
  18813. default: true
  18814. }
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18819. {
  18820. front: {
  18821. height: math.unit(12, "feet"),
  18822. weight: math.unit(410, "kg"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/xuna/front.svg",
  18826. extra: 2184 / 1980
  18827. }
  18828. },
  18829. side: {
  18830. height: math.unit(12, "feet"),
  18831. weight: math.unit(410, "kg"),
  18832. name: "Side",
  18833. image: {
  18834. source: "./media/characters/xuna/side.svg",
  18835. extra: 2184 / 1980
  18836. }
  18837. },
  18838. back: {
  18839. height: math.unit(12, "feet"),
  18840. weight: math.unit(410, "kg"),
  18841. name: "Back",
  18842. image: {
  18843. source: "./media/characters/xuna/back.svg",
  18844. extra: 2184 / 1980
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Nano glow",
  18851. height: math.unit(10, "nm")
  18852. },
  18853. {
  18854. name: "Micro floof",
  18855. height: math.unit(0.3, "m")
  18856. },
  18857. {
  18858. name: "Huggable softy boi",
  18859. height: math.unit(3.6576, "m"),
  18860. default: true
  18861. },
  18862. {
  18863. name: "Admirable floof",
  18864. height: math.unit(80, "meters")
  18865. },
  18866. {
  18867. name: "Gentle macro",
  18868. height: math.unit(300, "meters")
  18869. },
  18870. {
  18871. name: "Very careful floof",
  18872. height: math.unit(3200, "meters")
  18873. },
  18874. {
  18875. name: "The mega floof",
  18876. height: math.unit(36000, "meters")
  18877. },
  18878. {
  18879. name: "Giga-fur-Wicker",
  18880. height: math.unit(4800000, "meters")
  18881. },
  18882. {
  18883. name: "Licky world",
  18884. height: math.unit(20000000, "meters")
  18885. },
  18886. {
  18887. name: "Floofy cyan sun",
  18888. height: math.unit(1500000000, "meters")
  18889. },
  18890. {
  18891. name: "Milky Wicker",
  18892. height: math.unit(1000000000000000000000, "meters")
  18893. },
  18894. {
  18895. name: "The observing Wicker",
  18896. height: math.unit(999999999999999999999999999, "meters")
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(5 + 9 / 12, "feet"),
  18905. weight: math.unit(150, "lb"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/arokha-sieyes/front.svg",
  18909. extra: 1425 / 1284,
  18910. bottom: 0.05
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(5 + 9 / 12, "feet")
  18918. },
  18919. {
  18920. name: "Macro",
  18921. height: math.unit(30, "meters"),
  18922. default: true
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(6, "feet"),
  18931. weight: math.unit(180, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/arokh-sieyes/front.svg",
  18935. extra: 1830 / 1769,
  18936. bottom: 0.01
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(6, "feet")
  18944. },
  18945. {
  18946. name: "Macro",
  18947. height: math.unit(30, "meters"),
  18948. default: true
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18954. {
  18955. side: {
  18956. height: math.unit(13 + 1 / 12, "feet"),
  18957. weight: math.unit(8.5, "tonnes"),
  18958. name: "Side",
  18959. image: {
  18960. source: "./media/characters/goldeneye/side.svg",
  18961. extra: 1182 / 778,
  18962. bottom: 0.067
  18963. }
  18964. },
  18965. paw: {
  18966. height: math.unit(3.4, "feet"),
  18967. name: "Paw",
  18968. image: {
  18969. source: "./media/characters/goldeneye/paw.svg"
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(13 + 1 / 12, "feet"),
  18977. default: true
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18983. {
  18984. front: {
  18985. height: math.unit(6 + 1 / 12, "feet"),
  18986. weight: math.unit(210, "lb"),
  18987. name: "Front",
  18988. image: {
  18989. source: "./media/characters/leonardo-lycheborne/front.svg",
  18990. extra: 390 / 365,
  18991. bottom: 0.032
  18992. }
  18993. },
  18994. side: {
  18995. height: math.unit(6 + 1 / 12, "feet"),
  18996. weight: math.unit(210, "lb"),
  18997. name: "Side",
  18998. image: {
  18999. source: "./media/characters/leonardo-lycheborne/side.svg",
  19000. extra: 390 / 365,
  19001. bottom: 0.005
  19002. }
  19003. },
  19004. back: {
  19005. height: math.unit(6 + 1 / 12, "feet"),
  19006. weight: math.unit(210, "lb"),
  19007. name: "Back",
  19008. image: {
  19009. source: "./media/characters/leonardo-lycheborne/back.svg",
  19010. extra: 392 / 366,
  19011. bottom: 0.01
  19012. }
  19013. },
  19014. hand: {
  19015. height: math.unit(1.08, "feet"),
  19016. name: "Hand",
  19017. image: {
  19018. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19019. }
  19020. },
  19021. foot: {
  19022. height: math.unit(1.32, "feet"),
  19023. name: "Foot",
  19024. image: {
  19025. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19026. }
  19027. },
  19028. were: {
  19029. height: math.unit(20, "feet"),
  19030. weight: math.unit(7800, "lb"),
  19031. name: "Were",
  19032. image: {
  19033. source: "./media/characters/leonardo-lycheborne/were.svg",
  19034. extra: 308 / 294,
  19035. bottom: 0.048
  19036. }
  19037. },
  19038. feral: {
  19039. height: math.unit(7.5, "feet"),
  19040. weight: math.unit(600, "lb"),
  19041. name: "Feral",
  19042. image: {
  19043. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19044. extra: 210 / 186,
  19045. bottom: 0.108
  19046. }
  19047. },
  19048. taur: {
  19049. height: math.unit(11, "feet"),
  19050. weight: math.unit(3300, "lb"),
  19051. name: "Taur",
  19052. image: {
  19053. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19054. extra: 320 / 303,
  19055. bottom: 0.025
  19056. }
  19057. },
  19058. barghest: {
  19059. height: math.unit(11, "feet"),
  19060. weight: math.unit(1300, "lb"),
  19061. name: "Barghest",
  19062. image: {
  19063. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19064. extra: 323 / 302,
  19065. bottom: 0.027
  19066. }
  19067. },
  19068. dick: {
  19069. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19070. name: "Dick",
  19071. image: {
  19072. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19073. }
  19074. },
  19075. dickWere: {
  19076. height: math.unit((20) / 3.8, "feet"),
  19077. name: "Dick (Were)",
  19078. image: {
  19079. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Normal",
  19086. height: math.unit(6 + 1 / 12, "feet"),
  19087. default: true
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(10, "feet"),
  19096. weight: math.unit(350, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/jet/front.svg",
  19100. extra: 2050 / 1980,
  19101. bottom: 0.013
  19102. }
  19103. },
  19104. back: {
  19105. height: math.unit(10, "feet"),
  19106. weight: math.unit(350, "lb"),
  19107. name: "Back",
  19108. image: {
  19109. source: "./media/characters/jet/back.svg",
  19110. extra: 2050 / 1980,
  19111. bottom: 0.013
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Micro",
  19118. height: math.unit(6, "inches")
  19119. },
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(10, "feet"),
  19123. default: true
  19124. },
  19125. {
  19126. name: "Macro",
  19127. height: math.unit(100, "feet")
  19128. },
  19129. ]
  19130. ))
  19131. characterMakers.push(() => makeCharacter(
  19132. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19133. {
  19134. front: {
  19135. height: math.unit(15, "feet"),
  19136. weight: math.unit(2800, "lb"),
  19137. name: "Front",
  19138. image: {
  19139. source: "./media/characters/tanarath/front.svg",
  19140. extra: 2392 / 2220,
  19141. bottom: 0.03
  19142. }
  19143. },
  19144. back: {
  19145. height: math.unit(15, "feet"),
  19146. weight: math.unit(2800, "lb"),
  19147. name: "Back",
  19148. image: {
  19149. source: "./media/characters/tanarath/back.svg",
  19150. extra: 2392 / 2220,
  19151. bottom: 0.03
  19152. }
  19153. },
  19154. },
  19155. [
  19156. {
  19157. name: "Normal",
  19158. height: math.unit(15, "feet"),
  19159. default: true
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19165. {
  19166. front: {
  19167. height: math.unit(7 + 1 / 12, "feet"),
  19168. weight: math.unit(175, "lb"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/patty-cattybatty/front.svg",
  19172. extra: 908 / 874,
  19173. bottom: 0.025
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Micro",
  19180. height: math.unit(1, "inch")
  19181. },
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(7 + 1 / 12, "feet")
  19185. },
  19186. {
  19187. name: "Mini Macro",
  19188. height: math.unit(155, "feet")
  19189. },
  19190. {
  19191. name: "Macro",
  19192. height: math.unit(1077, "feet")
  19193. },
  19194. {
  19195. name: "Mega Macro",
  19196. height: math.unit(47650, "feet"),
  19197. default: true
  19198. },
  19199. {
  19200. name: "Giga Macro",
  19201. height: math.unit(440, "miles")
  19202. },
  19203. {
  19204. name: "Tera Macro",
  19205. height: math.unit(8700, "miles")
  19206. },
  19207. {
  19208. name: "Planetary Macro",
  19209. height: math.unit(32700, "miles")
  19210. },
  19211. {
  19212. name: "Solar Macro",
  19213. height: math.unit(550000, "miles")
  19214. },
  19215. {
  19216. name: "Celestial Macro",
  19217. height: math.unit(2.5, "AU")
  19218. },
  19219. ]
  19220. ))
  19221. characterMakers.push(() => makeCharacter(
  19222. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19223. {
  19224. front: {
  19225. height: math.unit(4 + 5 / 12, "feet"),
  19226. weight: math.unit(90, "lb"),
  19227. name: "Front",
  19228. image: {
  19229. source: "./media/characters/cappu/front.svg",
  19230. extra: 1247 / 1152,
  19231. bottom: 0.012
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(4 + 5 / 12, "feet"),
  19239. default: true
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19245. {
  19246. frontDressed: {
  19247. height: math.unit(70, "cm"),
  19248. weight: math.unit(6, "kg"),
  19249. name: "Front (Dressed)",
  19250. image: {
  19251. source: "./media/characters/sebi/front-dressed.svg",
  19252. extra: 713.5 / 686.5,
  19253. bottom: 0.003
  19254. }
  19255. },
  19256. front: {
  19257. height: math.unit(70, "cm"),
  19258. weight: math.unit(5, "kg"),
  19259. name: "Front",
  19260. image: {
  19261. source: "./media/characters/sebi/front.svg",
  19262. extra: 713.5 / 686.5,
  19263. bottom: 0.003
  19264. }
  19265. }
  19266. },
  19267. [
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(70, "cm"),
  19271. default: true
  19272. },
  19273. {
  19274. name: "Macro",
  19275. height: math.unit(8, "meters")
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(6, "feet"),
  19284. weight: math.unit(150, "lb"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/typhek/front.svg",
  19288. extra: 1948 / 1929,
  19289. bottom: 0.025
  19290. }
  19291. },
  19292. side: {
  19293. height: math.unit(6, "feet"),
  19294. weight: math.unit(150, "lb"),
  19295. name: "Side",
  19296. image: {
  19297. source: "./media/characters/typhek/side.svg",
  19298. extra: 2034 / 2010,
  19299. bottom: 0.003
  19300. }
  19301. },
  19302. back: {
  19303. height: math.unit(6, "feet"),
  19304. weight: math.unit(150, "lb"),
  19305. name: "Back",
  19306. image: {
  19307. source: "./media/characters/typhek/back.svg",
  19308. extra: 2005 / 1978,
  19309. bottom: 0.004
  19310. }
  19311. },
  19312. palm: {
  19313. height: math.unit(1.2, "feet"),
  19314. name: "Palm",
  19315. image: {
  19316. source: "./media/characters/typhek/palm.svg"
  19317. }
  19318. },
  19319. fist: {
  19320. height: math.unit(1.1, "feet"),
  19321. name: "Fist",
  19322. image: {
  19323. source: "./media/characters/typhek/fist.svg"
  19324. }
  19325. },
  19326. foot: {
  19327. height: math.unit(1.57, "feet"),
  19328. name: "Foot",
  19329. image: {
  19330. source: "./media/characters/typhek/foot.svg"
  19331. }
  19332. },
  19333. sole: {
  19334. height: math.unit(2.05, "feet"),
  19335. name: "Sole",
  19336. image: {
  19337. source: "./media/characters/typhek/sole.svg"
  19338. }
  19339. },
  19340. },
  19341. [
  19342. {
  19343. name: "Macro",
  19344. height: math.unit(40, "stories"),
  19345. default: true
  19346. },
  19347. {
  19348. name: "Megamacro",
  19349. height: math.unit(1, "mile")
  19350. },
  19351. {
  19352. name: "Gigamacro",
  19353. height: math.unit(4000, "solarradii")
  19354. },
  19355. {
  19356. name: "Universal",
  19357. height: math.unit(1.1, "universes")
  19358. }
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19363. {
  19364. side: {
  19365. height: math.unit(5 + 7 / 12, "feet"),
  19366. weight: math.unit(150, "lb"),
  19367. name: "Side",
  19368. image: {
  19369. source: "./media/characters/kassy/side.svg",
  19370. extra: 1280 / 1225,
  19371. bottom: 0.002
  19372. }
  19373. },
  19374. front: {
  19375. height: math.unit(5 + 7 / 12, "feet"),
  19376. weight: math.unit(150, "lb"),
  19377. name: "Front",
  19378. image: {
  19379. source: "./media/characters/kassy/front.svg",
  19380. extra: 1280 / 1225,
  19381. bottom: 0.025
  19382. }
  19383. },
  19384. back: {
  19385. height: math.unit(5 + 7 / 12, "feet"),
  19386. weight: math.unit(150, "lb"),
  19387. name: "Back",
  19388. image: {
  19389. source: "./media/characters/kassy/back.svg",
  19390. extra: 1280 / 1225,
  19391. bottom: 0.002
  19392. }
  19393. },
  19394. foot: {
  19395. height: math.unit(1.266, "feet"),
  19396. name: "Foot",
  19397. image: {
  19398. source: "./media/characters/kassy/foot.svg"
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(5 + 7 / 12, "feet")
  19406. },
  19407. {
  19408. name: "Macro",
  19409. height: math.unit(137, "feet"),
  19410. default: true
  19411. },
  19412. {
  19413. name: "Megamacro",
  19414. height: math.unit(1, "mile")
  19415. },
  19416. ]
  19417. ))
  19418. characterMakers.push(() => makeCharacter(
  19419. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19420. {
  19421. front: {
  19422. height: math.unit(6 + 1 / 12, "feet"),
  19423. weight: math.unit(200, "lb"),
  19424. name: "Front",
  19425. image: {
  19426. source: "./media/characters/neil/front.svg",
  19427. extra: 1326 / 1250,
  19428. bottom: 0.023
  19429. }
  19430. },
  19431. },
  19432. [
  19433. {
  19434. name: "Normal",
  19435. height: math.unit(6 + 1 / 12, "feet"),
  19436. default: true
  19437. },
  19438. {
  19439. name: "Macro",
  19440. height: math.unit(200, "feet")
  19441. },
  19442. ]
  19443. ))
  19444. characterMakers.push(() => makeCharacter(
  19445. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19446. {
  19447. front: {
  19448. height: math.unit(5 + 9 / 12, "feet"),
  19449. weight: math.unit(190, "lb"),
  19450. name: "Front",
  19451. image: {
  19452. source: "./media/characters/atticus/front.svg",
  19453. extra: 2934 / 2785,
  19454. bottom: 0.025
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(5 + 9 / 12, "feet"),
  19462. default: true
  19463. },
  19464. {
  19465. name: "Macro",
  19466. height: math.unit(180, "feet")
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19472. {
  19473. side: {
  19474. height: math.unit(9, "feet"),
  19475. weight: math.unit(650, "lb"),
  19476. name: "Side",
  19477. image: {
  19478. source: "./media/characters/milo/side.svg",
  19479. extra: 2644 / 2310,
  19480. bottom: 0.032
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(9, "feet"),
  19488. default: true
  19489. },
  19490. {
  19491. name: "Macro",
  19492. height: math.unit(300, "feet")
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19498. {
  19499. side: {
  19500. height: math.unit(8, "meters"),
  19501. weight: math.unit(90000, "kg"),
  19502. name: "Side",
  19503. image: {
  19504. source: "./media/characters/ijzer/side.svg",
  19505. extra: 2756 / 1600,
  19506. bottom: 0.01
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Small",
  19513. height: math.unit(3, "meters")
  19514. },
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(8, "meters"),
  19518. default: true
  19519. },
  19520. {
  19521. name: "Normal+",
  19522. height: math.unit(10, "meters")
  19523. },
  19524. {
  19525. name: "Bigger",
  19526. height: math.unit(24, "meters")
  19527. },
  19528. {
  19529. name: "Huge",
  19530. height: math.unit(80, "meters")
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19536. {
  19537. front: {
  19538. height: math.unit(6 + 2 / 12, "feet"),
  19539. weight: math.unit(153, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/luca-cervicum/front.svg",
  19543. extra: 370 / 327,
  19544. bottom: 0.015
  19545. }
  19546. },
  19547. back: {
  19548. height: math.unit(6 + 2 / 12, "feet"),
  19549. weight: math.unit(153, "lb"),
  19550. name: "Back",
  19551. image: {
  19552. source: "./media/characters/luca-cervicum/back.svg",
  19553. extra: 367 / 333,
  19554. bottom: 0.005
  19555. }
  19556. },
  19557. frontGear: {
  19558. height: math.unit(6 + 2 / 12, "feet"),
  19559. weight: math.unit(173, "lb"),
  19560. name: "Front (Gear)",
  19561. image: {
  19562. source: "./media/characters/luca-cervicum/front-gear.svg",
  19563. extra: 377 / 333,
  19564. bottom: 0.006
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(6 + 2 / 12, "feet"),
  19572. default: true
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(6 + 1 / 12, "feet"),
  19581. weight: math.unit(304, "lb"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/oliver/front.svg",
  19585. extra: 157 / 143,
  19586. bottom: 0.08
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Normal",
  19593. height: math.unit(6 + 1 / 12, "feet"),
  19594. default: true
  19595. },
  19596. ]
  19597. ))
  19598. characterMakers.push(() => makeCharacter(
  19599. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19600. {
  19601. front: {
  19602. height: math.unit(5 + 7 / 12, "feet"),
  19603. weight: math.unit(140, "lb"),
  19604. name: "Front",
  19605. image: {
  19606. source: "./media/characters/shane/front.svg",
  19607. extra: 304 / 289,
  19608. bottom: 0.005
  19609. }
  19610. },
  19611. },
  19612. [
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(5 + 7 / 12, "feet"),
  19616. default: true
  19617. },
  19618. ]
  19619. ))
  19620. characterMakers.push(() => makeCharacter(
  19621. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19622. {
  19623. front: {
  19624. height: math.unit(5 + 9 / 12, "feet"),
  19625. weight: math.unit(178, "lb"),
  19626. name: "Front",
  19627. image: {
  19628. source: "./media/characters/shin/front.svg",
  19629. extra: 159 / 151,
  19630. bottom: 0.015
  19631. }
  19632. },
  19633. },
  19634. [
  19635. {
  19636. name: "Normal",
  19637. height: math.unit(5 + 9 / 12, "feet"),
  19638. default: true
  19639. },
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19644. {
  19645. front: {
  19646. height: math.unit(5 + 10 / 12, "feet"),
  19647. weight: math.unit(168, "lb"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/xerxes/front.svg",
  19651. extra: 282 / 260,
  19652. bottom: 0.045
  19653. }
  19654. },
  19655. },
  19656. [
  19657. {
  19658. name: "Normal",
  19659. height: math.unit(5 + 10 / 12, "feet"),
  19660. default: true
  19661. },
  19662. ]
  19663. ))
  19664. characterMakers.push(() => makeCharacter(
  19665. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19666. {
  19667. front: {
  19668. height: math.unit(6 + 7 / 12, "feet"),
  19669. weight: math.unit(208, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/chaska/front.svg",
  19673. extra: 332 / 319,
  19674. bottom: 0.015
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Normal",
  19681. height: math.unit(6 + 7 / 12, "feet"),
  19682. default: true
  19683. },
  19684. ]
  19685. ))
  19686. characterMakers.push(() => makeCharacter(
  19687. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19688. {
  19689. front: {
  19690. height: math.unit(5 + 8 / 12, "feet"),
  19691. weight: math.unit(208, "lb"),
  19692. name: "Front",
  19693. image: {
  19694. source: "./media/characters/enuk/front.svg",
  19695. extra: 437 / 406,
  19696. bottom: 0.02
  19697. }
  19698. },
  19699. },
  19700. [
  19701. {
  19702. name: "Normal",
  19703. height: math.unit(5 + 8 / 12, "feet"),
  19704. default: true
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(5 + 10 / 12, "feet"),
  19713. weight: math.unit(252, "lb"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/bruun/front.svg",
  19717. extra: 197 / 187,
  19718. bottom: 0.012
  19719. }
  19720. },
  19721. },
  19722. [
  19723. {
  19724. name: "Normal",
  19725. height: math.unit(5 + 10 / 12, "feet"),
  19726. default: true
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19732. {
  19733. front: {
  19734. height: math.unit(6 + 10 / 12, "feet"),
  19735. weight: math.unit(255, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/alexeev/front.svg",
  19739. extra: 213 / 200,
  19740. bottom: 0.05
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(6 + 10 / 12, "feet"),
  19748. default: true
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(2 + 8 / 12, "feet"),
  19757. weight: math.unit(22, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/evelyn/front.svg",
  19761. extra: 208 / 180
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(2 + 8 / 12, "feet"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(5 + 9 / 12, "feet"),
  19778. weight: math.unit(139, "lb"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/inca/front.svg",
  19782. extra: 294 / 291,
  19783. bottom: 0.03
  19784. }
  19785. },
  19786. },
  19787. [
  19788. {
  19789. name: "Normal",
  19790. height: math.unit(5 + 9 / 12, "feet"),
  19791. default: true
  19792. },
  19793. ]
  19794. ))
  19795. characterMakers.push(() => makeCharacter(
  19796. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19797. {
  19798. front: {
  19799. height: math.unit(5 + 1 / 12, "feet"),
  19800. weight: math.unit(84, "lb"),
  19801. name: "Front",
  19802. image: {
  19803. source: "./media/characters/magdalene/front.svg",
  19804. extra: 293 / 273
  19805. }
  19806. },
  19807. },
  19808. [
  19809. {
  19810. name: "Normal",
  19811. height: math.unit(5 + 1 / 12, "feet"),
  19812. default: true
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19818. {
  19819. front: {
  19820. height: math.unit(6 + 3 / 12, "feet"),
  19821. weight: math.unit(185, "lb"),
  19822. name: "Front",
  19823. image: {
  19824. source: "./media/characters/mera/front.svg",
  19825. extra: 291 / 277,
  19826. bottom: 0.03
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(6 + 3 / 12, "feet"),
  19834. default: true
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19840. {
  19841. front: {
  19842. height: math.unit(6 + 7 / 12, "feet"),
  19843. weight: math.unit(160, "lb"),
  19844. name: "Front",
  19845. image: {
  19846. source: "./media/characters/ceres/front.svg",
  19847. extra: 1023 / 950,
  19848. bottom: 0.027
  19849. }
  19850. },
  19851. back: {
  19852. height: math.unit(6 + 7 / 12, "feet"),
  19853. weight: math.unit(160, "lb"),
  19854. name: "Back",
  19855. image: {
  19856. source: "./media/characters/ceres/back.svg",
  19857. extra: 1023 / 950
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(6 + 7 / 12, "feet"),
  19865. default: true
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(5 + 10 / 12, "feet"),
  19874. weight: math.unit(150, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/kris/front.svg",
  19878. extra: 885 / 803,
  19879. bottom: 0.03
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(5 + 10 / 12, "feet"),
  19887. default: true
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19893. {
  19894. front: {
  19895. height: math.unit(7, "feet"),
  19896. weight: math.unit(120, "kg"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/taluthus/front.svg",
  19900. extra: 903 / 833,
  19901. bottom: 0.015
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(7, "feet"),
  19909. default: true
  19910. },
  19911. {
  19912. name: "Macro",
  19913. height: math.unit(300, "feet")
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(5 + 9 / 12, "feet"),
  19922. weight: math.unit(145, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/dawn/front.svg",
  19926. extra: 2094 / 2016,
  19927. bottom: 0.025
  19928. }
  19929. },
  19930. back: {
  19931. height: math.unit(5 + 9 / 12, "feet"),
  19932. weight: math.unit(160, "lb"),
  19933. name: "Back",
  19934. image: {
  19935. source: "./media/characters/dawn/back.svg",
  19936. extra: 2112 / 2080,
  19937. bottom: 0.005
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(6 + 7 / 12, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19951. {
  19952. anthro: {
  19953. height: math.unit(8 + 3 / 12, "feet"),
  19954. weight: math.unit(450, "lb"),
  19955. name: "Anthro",
  19956. image: {
  19957. source: "./media/characters/arador/anthro.svg",
  19958. extra: 1835 / 1718,
  19959. bottom: 0.025
  19960. }
  19961. },
  19962. feral: {
  19963. height: math.unit(4, "feet"),
  19964. weight: math.unit(200, "lb"),
  19965. name: "Feral",
  19966. image: {
  19967. source: "./media/characters/arador/feral.svg",
  19968. extra: 1683 / 1514,
  19969. bottom: 0.07
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(8 + 3 / 12, "feet")
  19977. },
  19978. {
  19979. name: "Macro",
  19980. height: math.unit(82.5, "feet"),
  19981. default: true
  19982. },
  19983. ]
  19984. ))
  19985. characterMakers.push(() => makeCharacter(
  19986. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19987. {
  19988. front: {
  19989. height: math.unit(5 + 10 / 12, "feet"),
  19990. weight: math.unit(125, "lb"),
  19991. name: "Front",
  19992. image: {
  19993. source: "./media/characters/dharsi/front.svg",
  19994. extra: 716 / 630,
  19995. bottom: 0.035
  19996. }
  19997. },
  19998. },
  19999. [
  20000. {
  20001. name: "Nano",
  20002. height: math.unit(100, "nm")
  20003. },
  20004. {
  20005. name: "Micro",
  20006. height: math.unit(2, "inches")
  20007. },
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(5 + 10 / 12, "feet"),
  20011. default: true
  20012. },
  20013. {
  20014. name: "Macro",
  20015. height: math.unit(1000, "feet")
  20016. },
  20017. {
  20018. name: "Megamacro",
  20019. height: math.unit(10, "miles")
  20020. },
  20021. {
  20022. name: "Gigamacro",
  20023. height: math.unit(3000, "miles")
  20024. },
  20025. {
  20026. name: "Teramacro",
  20027. height: math.unit(500000, "miles")
  20028. },
  20029. {
  20030. name: "Teramacro+",
  20031. height: math.unit(30, "galaxies")
  20032. },
  20033. ]
  20034. ))
  20035. characterMakers.push(() => makeCharacter(
  20036. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20037. {
  20038. front: {
  20039. height: math.unit(6, "feet"),
  20040. weight: math.unit(150, "lb"),
  20041. name: "Front",
  20042. image: {
  20043. source: "./media/characters/deathy/front.svg",
  20044. extra: 1552 / 1463,
  20045. bottom: 0.025
  20046. }
  20047. },
  20048. side: {
  20049. height: math.unit(6, "feet"),
  20050. weight: math.unit(150, "lb"),
  20051. name: "Side",
  20052. image: {
  20053. source: "./media/characters/deathy/side.svg",
  20054. extra: 1604 / 1455,
  20055. bottom: 0.025
  20056. }
  20057. },
  20058. back: {
  20059. height: math.unit(6, "feet"),
  20060. weight: math.unit(150, "lb"),
  20061. name: "Back",
  20062. image: {
  20063. source: "./media/characters/deathy/back.svg",
  20064. extra: 1580 / 1463,
  20065. bottom: 0.005
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "Micro",
  20072. height: math.unit(5, "millimeters")
  20073. },
  20074. {
  20075. name: "Normal",
  20076. height: math.unit(6 + 5 / 12, "feet"),
  20077. default: true
  20078. },
  20079. ]
  20080. ))
  20081. characterMakers.push(() => makeCharacter(
  20082. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20083. {
  20084. front: {
  20085. height: math.unit(16, "feet"),
  20086. weight: math.unit(4000, "lb"),
  20087. name: "Front",
  20088. image: {
  20089. source: "./media/characters/juniper/front.svg",
  20090. bottom: 0.04
  20091. }
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(16, "feet"),
  20098. default: true
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(6, "feet"),
  20107. weight: math.unit(150, "lb"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/hipster/front.svg",
  20111. extra: 1312 / 1209,
  20112. bottom: 0.025
  20113. }
  20114. },
  20115. back: {
  20116. height: math.unit(6, "feet"),
  20117. weight: math.unit(150, "lb"),
  20118. name: "Back",
  20119. image: {
  20120. source: "./media/characters/hipster/back.svg",
  20121. extra: 1281 / 1196,
  20122. bottom: 0.01
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Micro",
  20129. height: math.unit(1, "mm")
  20130. },
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(4, "inches"),
  20134. default: true
  20135. },
  20136. {
  20137. name: "Macro",
  20138. height: math.unit(500, "feet")
  20139. },
  20140. {
  20141. name: "Megamacro",
  20142. height: math.unit(1000, "miles")
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20148. {
  20149. front: {
  20150. height: math.unit(6, "feet"),
  20151. weight: math.unit(150, "lb"),
  20152. name: "Front",
  20153. image: {
  20154. source: "./media/characters/tendirmuldr/front.svg",
  20155. extra: 1878 / 1772,
  20156. bottom: 0.015
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Megamacro",
  20163. height: math.unit(1500, "miles"),
  20164. default: true
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20170. {
  20171. front: {
  20172. height: math.unit(14, "feet"),
  20173. weight: math.unit(12000, "lb"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/mort/front.svg",
  20177. extra: 365 / 318,
  20178. bottom: 0.01
  20179. }
  20180. },
  20181. side: {
  20182. height: math.unit(14, "feet"),
  20183. weight: math.unit(12000, "lb"),
  20184. name: "Side",
  20185. image: {
  20186. source: "./media/characters/mort/side.svg",
  20187. extra: 365 / 318,
  20188. bottom: 0.052
  20189. },
  20190. default: true
  20191. },
  20192. back: {
  20193. height: math.unit(14, "feet"),
  20194. weight: math.unit(12000, "lb"),
  20195. name: "Back",
  20196. image: {
  20197. source: "./media/characters/mort/back.svg",
  20198. extra: 371 / 332,
  20199. bottom: 0.18
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(14, "feet"),
  20207. default: true
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20213. {
  20214. front: {
  20215. height: math.unit(8, "feet"),
  20216. weight: math.unit(1, "ton"),
  20217. name: "Front",
  20218. image: {
  20219. source: "./media/characters/lycoa/front.svg",
  20220. extra: 1875 / 1789,
  20221. bottom: 0.022
  20222. }
  20223. },
  20224. back: {
  20225. height: math.unit(8, "feet"),
  20226. weight: math.unit(1, "ton"),
  20227. name: "Back",
  20228. image: {
  20229. source: "./media/characters/lycoa/back.svg",
  20230. extra: 1835 / 1781,
  20231. bottom: 0.03
  20232. }
  20233. },
  20234. head: {
  20235. height: math.unit(2.1, "feet"),
  20236. name: "Head",
  20237. image: {
  20238. source: "./media/characters/lycoa/head.svg"
  20239. }
  20240. },
  20241. tailmaw: {
  20242. height: math.unit(1.9, "feet"),
  20243. name: "Tailmaw",
  20244. image: {
  20245. source: "./media/characters/lycoa/tailmaw.svg"
  20246. }
  20247. },
  20248. tentacles: {
  20249. height: math.unit(2.1, "feet"),
  20250. name: "Tentacles",
  20251. image: {
  20252. source: "./media/characters/lycoa/tentacles.svg"
  20253. }
  20254. },
  20255. dick: {
  20256. height: math.unit(1.73, "feet"),
  20257. name: "Dick",
  20258. image: {
  20259. source: "./media/characters/lycoa/dick.svg"
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(8, "feet"),
  20267. default: true
  20268. },
  20269. {
  20270. name: "Macro",
  20271. height: math.unit(30, "feet")
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20277. {
  20278. front: {
  20279. height: math.unit(4 + 2 / 12, "feet"),
  20280. weight: math.unit(70, "lb"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/naldara/front.svg",
  20284. extra: 841 / 720,
  20285. bottom: 0.04
  20286. }
  20287. },
  20288. naga: {
  20289. height: math.unit(23, "feet"),
  20290. weight: math.unit(15000, "kg"),
  20291. name: "Naga",
  20292. image: {
  20293. source: "./media/characters/naldara/naga.svg",
  20294. extra: 3290 / 2959,
  20295. bottom: 124 / 3432
  20296. }
  20297. },
  20298. },
  20299. [
  20300. {
  20301. name: "Normal",
  20302. height: math.unit(4 + 2 / 12, "feet"),
  20303. default: true
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20309. {
  20310. front: {
  20311. height: math.unit(13 + 7 / 12, "feet"),
  20312. weight: math.unit(1500, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/briar/front.svg",
  20316. extra: 626 / 596,
  20317. bottom: 0.08
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(13 + 7 / 12, "feet"),
  20325. default: true
  20326. },
  20327. ]
  20328. ))
  20329. characterMakers.push(() => makeCharacter(
  20330. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20331. {
  20332. side: {
  20333. height: math.unit(10, "feet"),
  20334. weight: math.unit(500, "lb"),
  20335. name: "Side",
  20336. image: {
  20337. source: "./media/characters/vanguard/side.svg",
  20338. extra: 502 / 425,
  20339. bottom: 0.087
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(10, "feet"),
  20347. default: true
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20353. {
  20354. front: {
  20355. height: math.unit(7.5, "feet"),
  20356. weight: math.unit(2, "lb"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/artemis/front.svg",
  20360. extra: 1192 / 1075,
  20361. bottom: 0.07
  20362. }
  20363. },
  20364. frontNsfw: {
  20365. height: math.unit(7.5, "feet"),
  20366. weight: math.unit(2, "lb"),
  20367. name: "Front (NSFW)",
  20368. image: {
  20369. source: "./media/characters/artemis/front-nsfw.svg",
  20370. extra: 1192 / 1075,
  20371. bottom: 0.07
  20372. }
  20373. },
  20374. frontNsfwer: {
  20375. height: math.unit(7.5, "feet"),
  20376. weight: math.unit(2, "lb"),
  20377. name: "Front (NSFW-er)",
  20378. image: {
  20379. source: "./media/characters/artemis/front-nsfwer.svg",
  20380. extra: 1192 / 1075,
  20381. bottom: 0.07
  20382. }
  20383. },
  20384. side: {
  20385. height: math.unit(7.5, "feet"),
  20386. weight: math.unit(2, "lb"),
  20387. name: "Side",
  20388. image: {
  20389. source: "./media/characters/artemis/side.svg",
  20390. extra: 1192 / 1075,
  20391. bottom: 0.07
  20392. }
  20393. },
  20394. sideNsfw: {
  20395. height: math.unit(7.5, "feet"),
  20396. weight: math.unit(2, "lb"),
  20397. name: "Side (NSFW)",
  20398. image: {
  20399. source: "./media/characters/artemis/side-nsfw.svg",
  20400. extra: 1192 / 1075,
  20401. bottom: 0.07
  20402. }
  20403. },
  20404. sideNsfwer: {
  20405. height: math.unit(7.5, "feet"),
  20406. weight: math.unit(2, "lb"),
  20407. name: "Side (NSFW-er)",
  20408. image: {
  20409. source: "./media/characters/artemis/side-nsfwer.svg",
  20410. extra: 1192 / 1075,
  20411. bottom: 0.07
  20412. }
  20413. },
  20414. maw: {
  20415. height: math.unit(1.1, "feet"),
  20416. name: "Maw",
  20417. image: {
  20418. source: "./media/characters/artemis/maw.svg"
  20419. }
  20420. },
  20421. stomach: {
  20422. height: math.unit(0.95, "feet"),
  20423. name: "Stomach",
  20424. image: {
  20425. source: "./media/characters/artemis/stomach.svg"
  20426. }
  20427. },
  20428. dickCanine: {
  20429. height: math.unit(1, "feet"),
  20430. name: "Dick (Canine)",
  20431. image: {
  20432. source: "./media/characters/artemis/dick-canine.svg"
  20433. }
  20434. },
  20435. dickEquine: {
  20436. height: math.unit(0.85, "feet"),
  20437. name: "Dick (Equine)",
  20438. image: {
  20439. source: "./media/characters/artemis/dick-equine.svg"
  20440. }
  20441. },
  20442. dickExotic: {
  20443. height: math.unit(0.85, "feet"),
  20444. name: "Dick (Exotic)",
  20445. image: {
  20446. source: "./media/characters/artemis/dick-exotic.svg"
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(7.5, "feet"),
  20454. default: true
  20455. },
  20456. {
  20457. name: "Enlarged",
  20458. height: math.unit(12, "feet")
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(5 + 3 / 12, "feet"),
  20467. weight: math.unit(160, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/kira/front.svg",
  20471. extra: 906 / 786,
  20472. bottom: 0.01
  20473. }
  20474. },
  20475. back: {
  20476. height: math.unit(5 + 3 / 12, "feet"),
  20477. weight: math.unit(160, "lb"),
  20478. name: "Back",
  20479. image: {
  20480. source: "./media/characters/kira/back.svg",
  20481. extra: 882 / 757,
  20482. bottom: 0.005
  20483. }
  20484. },
  20485. frontDressed: {
  20486. height: math.unit(5 + 3 / 12, "feet"),
  20487. weight: math.unit(160, "lb"),
  20488. name: "Front (Dressed)",
  20489. image: {
  20490. source: "./media/characters/kira/front-dressed.svg",
  20491. extra: 906 / 786,
  20492. bottom: 0.01
  20493. }
  20494. },
  20495. beans: {
  20496. height: math.unit(0.92, "feet"),
  20497. name: "Beans",
  20498. image: {
  20499. source: "./media/characters/kira/beans.svg"
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(5 + 3 / 12, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(5 + 4 / 12, "feet"),
  20516. weight: math.unit(145, "lb"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/scramble/front.svg",
  20520. extra: 763 / 727,
  20521. bottom: 0.05
  20522. }
  20523. },
  20524. back: {
  20525. height: math.unit(5 + 4 / 12, "feet"),
  20526. weight: math.unit(145, "lb"),
  20527. name: "Back",
  20528. image: {
  20529. source: "./media/characters/scramble/back.svg",
  20530. extra: 826 / 737,
  20531. bottom: 0.002
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(5 + 4 / 12, "feet"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20545. {
  20546. side: {
  20547. height: math.unit(6 + 2 / 12, "feet"),
  20548. weight: math.unit(190, "lb"),
  20549. name: "Side",
  20550. image: {
  20551. source: "./media/characters/biscuit/side.svg",
  20552. extra: 858 / 791,
  20553. bottom: 0.044
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(6 + 2 / 12, "feet"),
  20561. default: true
  20562. },
  20563. ]
  20564. ))
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20567. {
  20568. front: {
  20569. height: math.unit(5 + 2 / 12, "feet"),
  20570. weight: math.unit(120, "lb"),
  20571. name: "Front",
  20572. image: {
  20573. source: "./media/characters/poffin/front.svg",
  20574. extra: 786 / 680,
  20575. bottom: 0.005
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(5 + 2 / 12, "feet"),
  20583. default: true
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20589. {
  20590. front: {
  20591. height: math.unit(6 + 3 / 12, "feet"),
  20592. weight: math.unit(519, "lb"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/dhari/front.svg",
  20596. extra: 1048 / 946,
  20597. bottom: 0.015
  20598. }
  20599. },
  20600. back: {
  20601. height: math.unit(6 + 3 / 12, "feet"),
  20602. weight: math.unit(519, "lb"),
  20603. name: "Back",
  20604. image: {
  20605. source: "./media/characters/dhari/back.svg",
  20606. extra: 1048 / 931,
  20607. bottom: 0.005
  20608. }
  20609. },
  20610. frontDressed: {
  20611. height: math.unit(6 + 3 / 12, "feet"),
  20612. weight: math.unit(519, "lb"),
  20613. name: "Front (Dressed)",
  20614. image: {
  20615. source: "./media/characters/dhari/front-dressed.svg",
  20616. extra: 1713 / 1546,
  20617. bottom: 0.02
  20618. }
  20619. },
  20620. backDressed: {
  20621. height: math.unit(6 + 3 / 12, "feet"),
  20622. weight: math.unit(519, "lb"),
  20623. name: "Back (Dressed)",
  20624. image: {
  20625. source: "./media/characters/dhari/back-dressed.svg",
  20626. extra: 1699 / 1537,
  20627. bottom: 0.01
  20628. }
  20629. },
  20630. maw: {
  20631. height: math.unit(0.95, "feet"),
  20632. name: "Maw",
  20633. image: {
  20634. source: "./media/characters/dhari/maw.svg"
  20635. }
  20636. },
  20637. wereFront: {
  20638. height: math.unit(12 + 8 / 12, "feet"),
  20639. weight: math.unit(4000, "lb"),
  20640. name: "Front (Were)",
  20641. image: {
  20642. source: "./media/characters/dhari/were-front.svg",
  20643. extra: 1065 / 969,
  20644. bottom: 0.015
  20645. }
  20646. },
  20647. wereBack: {
  20648. height: math.unit(12 + 8 / 12, "feet"),
  20649. weight: math.unit(4000, "lb"),
  20650. name: "Back (Were)",
  20651. image: {
  20652. source: "./media/characters/dhari/were-back.svg",
  20653. extra: 1065 / 969,
  20654. bottom: 0.012
  20655. }
  20656. },
  20657. wereMaw: {
  20658. height: math.unit(0.625, "meters"),
  20659. name: "Maw (Were)",
  20660. image: {
  20661. source: "./media/characters/dhari/were-maw.svg"
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(6 + 3 / 12, "feet"),
  20669. default: true
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20675. {
  20676. anthro: {
  20677. height: math.unit(5 + 7 / 12, "feet"),
  20678. weight: math.unit(175, "lb"),
  20679. name: "Anthro",
  20680. image: {
  20681. source: "./media/characters/rena-dyne/anthro.svg",
  20682. extra: 1849 / 1785,
  20683. bottom: 0.005
  20684. }
  20685. },
  20686. taur: {
  20687. height: math.unit(15 + 6 / 12, "feet"),
  20688. weight: math.unit(8000, "lb"),
  20689. name: "Taur",
  20690. image: {
  20691. source: "./media/characters/rena-dyne/taur.svg",
  20692. extra: 2315 / 2234,
  20693. bottom: 0.033
  20694. }
  20695. },
  20696. },
  20697. [
  20698. {
  20699. name: "Normal",
  20700. height: math.unit(5 + 7 / 12, "feet"),
  20701. default: true
  20702. },
  20703. ]
  20704. ))
  20705. characterMakers.push(() => makeCharacter(
  20706. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20707. {
  20708. front: {
  20709. height: math.unit(8, "feet"),
  20710. weight: math.unit(600, "lb"),
  20711. name: "Front",
  20712. image: {
  20713. source: "./media/characters/weremeep/front.svg",
  20714. extra: 967 / 862,
  20715. bottom: 0.01
  20716. }
  20717. },
  20718. },
  20719. [
  20720. {
  20721. name: "Normal",
  20722. height: math.unit(8, "feet"),
  20723. default: true
  20724. },
  20725. {
  20726. name: "Lorg",
  20727. height: math.unit(12, "feet")
  20728. },
  20729. {
  20730. name: "Oh Lawd She Comin'",
  20731. height: math.unit(20, "feet")
  20732. },
  20733. ]
  20734. ))
  20735. characterMakers.push(() => makeCharacter(
  20736. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20737. {
  20738. front: {
  20739. height: math.unit(4, "feet"),
  20740. weight: math.unit(90, "lb"),
  20741. name: "Front",
  20742. image: {
  20743. source: "./media/characters/reza/front.svg",
  20744. extra: 1183 / 1111,
  20745. bottom: 0.017
  20746. }
  20747. },
  20748. back: {
  20749. height: math.unit(4, "feet"),
  20750. weight: math.unit(90, "lb"),
  20751. name: "Back",
  20752. image: {
  20753. source: "./media/characters/reza/back.svg",
  20754. extra: 1183 / 1111,
  20755. bottom: 0.01
  20756. }
  20757. },
  20758. drake: {
  20759. height: math.unit(30, "feet"),
  20760. weight: math.unit(246960, "lb"),
  20761. name: "Drake",
  20762. image: {
  20763. source: "./media/characters/reza/drake.svg",
  20764. extra: 2350 / 2024,
  20765. bottom: 60.7 / 2403
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(4, "feet"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20779. {
  20780. side: {
  20781. height: math.unit(15, "feet"),
  20782. weight: math.unit(14, "tons"),
  20783. name: "Side",
  20784. image: {
  20785. source: "./media/characters/athea/side.svg",
  20786. extra: 960 / 540,
  20787. bottom: 0.003
  20788. }
  20789. },
  20790. sitting: {
  20791. height: math.unit(6 * 2.85, "feet"),
  20792. weight: math.unit(14, "tons"),
  20793. name: "Sitting",
  20794. image: {
  20795. source: "./media/characters/athea/sitting.svg",
  20796. extra: 621 / 581,
  20797. bottom: 0.075
  20798. }
  20799. },
  20800. maw: {
  20801. height: math.unit(7.59498031496063, "feet"),
  20802. name: "Maw",
  20803. image: {
  20804. source: "./media/characters/athea/maw.svg"
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Lap Cat",
  20811. height: math.unit(2.5, "feet")
  20812. },
  20813. {
  20814. name: "Minimacro",
  20815. height: math.unit(15, "feet"),
  20816. default: true
  20817. },
  20818. {
  20819. name: "Macro",
  20820. height: math.unit(120, "feet")
  20821. },
  20822. {
  20823. name: "Macro+",
  20824. height: math.unit(640, "feet")
  20825. },
  20826. {
  20827. name: "Colossus",
  20828. height: math.unit(2.2, "miles")
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20834. {
  20835. front: {
  20836. height: math.unit(8 + 8 / 12, "feet"),
  20837. weight: math.unit(130, "kg"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/seroko/front.svg",
  20841. extra: 1385 / 1280,
  20842. bottom: 0.025
  20843. }
  20844. },
  20845. back: {
  20846. height: math.unit(8 + 8 / 12, "feet"),
  20847. weight: math.unit(130, "kg"),
  20848. name: "Back",
  20849. image: {
  20850. source: "./media/characters/seroko/back.svg",
  20851. extra: 1369 / 1238,
  20852. bottom: 0.018
  20853. }
  20854. },
  20855. frontDressed: {
  20856. height: math.unit(8 + 8 / 12, "feet"),
  20857. weight: math.unit(130, "kg"),
  20858. name: "Front (Dressed)",
  20859. image: {
  20860. source: "./media/characters/seroko/front-dressed.svg",
  20861. extra: 1366 / 1275,
  20862. bottom: 0.03
  20863. }
  20864. },
  20865. },
  20866. [
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(8 + 8 / 12, "feet"),
  20870. default: true
  20871. },
  20872. ]
  20873. ))
  20874. characterMakers.push(() => makeCharacter(
  20875. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20876. {
  20877. front: {
  20878. height: math.unit(5.5, "feet"),
  20879. weight: math.unit(160, "lb"),
  20880. name: "Front",
  20881. image: {
  20882. source: "./media/characters/quatzi/front.svg",
  20883. extra: 2346 / 2242,
  20884. bottom: 0.015
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(5.5, "feet"),
  20892. default: true
  20893. },
  20894. {
  20895. name: "Big",
  20896. height: math.unit(7.7, "feet")
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(5 + 11 / 12, "feet"),
  20905. weight: math.unit(180, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/sen/front.svg",
  20909. extra: 1321 / 1254,
  20910. bottom: 0.015
  20911. }
  20912. },
  20913. side: {
  20914. height: math.unit(5 + 11 / 12, "feet"),
  20915. weight: math.unit(180, "lb"),
  20916. name: "Side",
  20917. image: {
  20918. source: "./media/characters/sen/side.svg",
  20919. extra: 1321 / 1254,
  20920. bottom: 0.007
  20921. }
  20922. },
  20923. back: {
  20924. height: math.unit(5 + 11 / 12, "feet"),
  20925. weight: math.unit(180, "lb"),
  20926. name: "Back",
  20927. image: {
  20928. source: "./media/characters/sen/back.svg",
  20929. extra: 1321 / 1254
  20930. }
  20931. },
  20932. },
  20933. [
  20934. {
  20935. name: "Normal",
  20936. height: math.unit(5 + 11 / 12, "feet"),
  20937. default: true
  20938. },
  20939. ]
  20940. ))
  20941. characterMakers.push(() => makeCharacter(
  20942. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20943. {
  20944. front: {
  20945. height: math.unit(166.6, "cm"),
  20946. weight: math.unit(66.6, "kg"),
  20947. name: "Front",
  20948. image: {
  20949. source: "./media/characters/fruity/front.svg",
  20950. extra: 1510 / 1386,
  20951. bottom: 0.04
  20952. }
  20953. },
  20954. back: {
  20955. height: math.unit(166.6, "cm"),
  20956. weight: math.unit(66.6, "lb"),
  20957. name: "Back",
  20958. image: {
  20959. source: "./media/characters/fruity/back.svg",
  20960. extra: 1563 / 1435,
  20961. bottom: 0.005
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Normal",
  20968. height: math.unit(166.6, "cm"),
  20969. default: true
  20970. },
  20971. {
  20972. name: "Demonic",
  20973. height: math.unit(166.6, "feet")
  20974. },
  20975. ]
  20976. ))
  20977. characterMakers.push(() => makeCharacter(
  20978. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20979. {
  20980. side: {
  20981. height: math.unit(10, "feet"),
  20982. weight: math.unit(500, "lb"),
  20983. name: "Side",
  20984. image: {
  20985. source: "./media/characters/zost/side.svg",
  20986. extra: 966 / 880,
  20987. bottom: 0.075
  20988. }
  20989. },
  20990. mawFront: {
  20991. height: math.unit(1.08, "meters"),
  20992. name: "Maw (Front)",
  20993. image: {
  20994. source: "./media/characters/zost/maw-front.svg"
  20995. }
  20996. },
  20997. mawSide: {
  20998. height: math.unit(2.66, "feet"),
  20999. name: "Maw (Side)",
  21000. image: {
  21001. source: "./media/characters/zost/maw-side.svg"
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(10, "feet"),
  21009. default: true
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(5 + 4 / 12, "feet"),
  21018. weight: math.unit(120, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/luci/front.svg",
  21022. extra: 1985 / 1884,
  21023. bottom: 0.04
  21024. }
  21025. },
  21026. back: {
  21027. height: math.unit(5 + 4 / 12, "feet"),
  21028. weight: math.unit(120, "lb"),
  21029. name: "Back",
  21030. image: {
  21031. source: "./media/characters/luci/back.svg",
  21032. extra: 1892 / 1791,
  21033. bottom: 0.002
  21034. }
  21035. },
  21036. },
  21037. [
  21038. {
  21039. name: "Normal",
  21040. height: math.unit(5 + 4 / 12, "feet"),
  21041. default: true
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21047. {
  21048. front: {
  21049. height: math.unit(1500, "feet"),
  21050. weight: math.unit(3.8e6, "tons"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/2th/front.svg",
  21054. extra: 3489 / 3350,
  21055. bottom: 0.1
  21056. }
  21057. },
  21058. foot: {
  21059. height: math.unit(461, "feet"),
  21060. name: "Foot",
  21061. image: {
  21062. source: "./media/characters/2th/foot.svg"
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "\"Micro\"",
  21069. height: math.unit(15 + 7 / 12, "feet")
  21070. },
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(1500, "feet"),
  21074. default: true
  21075. },
  21076. {
  21077. name: "Macro",
  21078. height: math.unit(5000, "feet")
  21079. },
  21080. {
  21081. name: "Megamacro",
  21082. height: math.unit(15, "miles")
  21083. },
  21084. {
  21085. name: "Gigamacro",
  21086. height: math.unit(4000, "miles")
  21087. },
  21088. {
  21089. name: "Galactic",
  21090. height: math.unit(50, "AU")
  21091. },
  21092. ]
  21093. ))
  21094. characterMakers.push(() => makeCharacter(
  21095. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21096. {
  21097. front: {
  21098. height: math.unit(5 + 6 / 12, "feet"),
  21099. weight: math.unit(220, "lb"),
  21100. name: "Front",
  21101. image: {
  21102. source: "./media/characters/amethyst/front.svg",
  21103. extra: 2078 / 2040,
  21104. bottom: 0.045
  21105. }
  21106. },
  21107. back: {
  21108. height: math.unit(5 + 6 / 12, "feet"),
  21109. weight: math.unit(220, "lb"),
  21110. name: "Back",
  21111. image: {
  21112. source: "./media/characters/amethyst/back.svg",
  21113. extra: 2021 / 1989,
  21114. bottom: 0.02
  21115. }
  21116. },
  21117. },
  21118. [
  21119. {
  21120. name: "Normal",
  21121. height: math.unit(5 + 6 / 12, "feet"),
  21122. default: true
  21123. },
  21124. ]
  21125. ))
  21126. characterMakers.push(() => makeCharacter(
  21127. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21128. {
  21129. front: {
  21130. height: math.unit(4 + 11 / 12, "feet"),
  21131. weight: math.unit(120, "lb"),
  21132. name: "Front",
  21133. image: {
  21134. source: "./media/characters/yumi-akiyama/front.svg",
  21135. extra: 1327 / 1235,
  21136. bottom: 0.02
  21137. }
  21138. },
  21139. back: {
  21140. height: math.unit(4 + 11 / 12, "feet"),
  21141. weight: math.unit(120, "lb"),
  21142. name: "Back",
  21143. image: {
  21144. source: "./media/characters/yumi-akiyama/back.svg",
  21145. extra: 1287 / 1245,
  21146. bottom: 0.002
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Galactic",
  21153. height: math.unit(50, "galaxies"),
  21154. default: true
  21155. },
  21156. {
  21157. name: "Universal",
  21158. height: math.unit(100, "universes")
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21164. {
  21165. front: {
  21166. height: math.unit(8, "feet"),
  21167. weight: math.unit(500, "lb"),
  21168. name: "Front",
  21169. image: {
  21170. source: "./media/characters/rifter-yrmori/front.svg",
  21171. extra: 1180 / 1125,
  21172. bottom: 0.02
  21173. }
  21174. },
  21175. back: {
  21176. height: math.unit(8, "feet"),
  21177. weight: math.unit(500, "lb"),
  21178. name: "Back",
  21179. image: {
  21180. source: "./media/characters/rifter-yrmori/back.svg",
  21181. extra: 1190 / 1145,
  21182. bottom: 0.001
  21183. }
  21184. },
  21185. wings: {
  21186. height: math.unit(7.75, "feet"),
  21187. weight: math.unit(500, "lb"),
  21188. name: "Wings",
  21189. image: {
  21190. source: "./media/characters/rifter-yrmori/wings.svg",
  21191. extra: 1357 / 1285
  21192. }
  21193. },
  21194. maw: {
  21195. height: math.unit(0.8, "feet"),
  21196. name: "Maw",
  21197. image: {
  21198. source: "./media/characters/rifter-yrmori/maw.svg"
  21199. }
  21200. },
  21201. mawfront: {
  21202. height: math.unit(1.45, "feet"),
  21203. name: "Maw (Front)",
  21204. image: {
  21205. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21206. }
  21207. },
  21208. },
  21209. [
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(8, "feet"),
  21213. default: true
  21214. },
  21215. {
  21216. name: "Macro",
  21217. height: math.unit(42, "meters")
  21218. },
  21219. ]
  21220. ))
  21221. characterMakers.push(() => makeCharacter(
  21222. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21223. {
  21224. were: {
  21225. height: math.unit(25 + 6 / 12, "feet"),
  21226. weight: math.unit(10000, "lb"),
  21227. name: "Were",
  21228. image: {
  21229. source: "./media/characters/tahajin/were.svg",
  21230. extra: 801 / 770,
  21231. bottom: 0.042
  21232. }
  21233. },
  21234. aquatic: {
  21235. height: math.unit(6 + 4 / 12, "feet"),
  21236. weight: math.unit(160, "lb"),
  21237. name: "Aquatic",
  21238. image: {
  21239. source: "./media/characters/tahajin/aquatic.svg",
  21240. extra: 572 / 542,
  21241. bottom: 0.04
  21242. }
  21243. },
  21244. chow: {
  21245. height: math.unit(8 + 11 / 12, "feet"),
  21246. weight: math.unit(450, "lb"),
  21247. name: "Chow",
  21248. image: {
  21249. source: "./media/characters/tahajin/chow.svg",
  21250. extra: 660 / 640,
  21251. bottom: 0.015
  21252. }
  21253. },
  21254. demiNaga: {
  21255. height: math.unit(6 + 8 / 12, "feet"),
  21256. weight: math.unit(300, "lb"),
  21257. name: "Demi Naga",
  21258. image: {
  21259. source: "./media/characters/tahajin/demi-naga.svg",
  21260. extra: 643 / 615,
  21261. bottom: 0.1
  21262. }
  21263. },
  21264. data: {
  21265. height: math.unit(5, "inches"),
  21266. weight: math.unit(0.1, "lb"),
  21267. name: "Data",
  21268. image: {
  21269. source: "./media/characters/tahajin/data.svg"
  21270. }
  21271. },
  21272. fluu: {
  21273. height: math.unit(5 + 7 / 12, "feet"),
  21274. weight: math.unit(140, "lb"),
  21275. name: "Fluu",
  21276. image: {
  21277. source: "./media/characters/tahajin/fluu.svg",
  21278. extra: 628 / 592,
  21279. bottom: 0.02
  21280. }
  21281. },
  21282. starWarrior: {
  21283. height: math.unit(4 + 5 / 12, "feet"),
  21284. weight: math.unit(50, "lb"),
  21285. name: "Star Warrior",
  21286. image: {
  21287. source: "./media/characters/tahajin/star-warrior.svg"
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(25 + 6 / 12, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21301. {
  21302. front: {
  21303. height: math.unit(8, "feet"),
  21304. weight: math.unit(350, "lb"),
  21305. name: "Front",
  21306. image: {
  21307. source: "./media/characters/gabira/front.svg",
  21308. extra: 608 / 580,
  21309. bottom: 0.03
  21310. }
  21311. },
  21312. back: {
  21313. height: math.unit(8, "feet"),
  21314. weight: math.unit(350, "lb"),
  21315. name: "Back",
  21316. image: {
  21317. source: "./media/characters/gabira/back.svg",
  21318. extra: 608 / 580,
  21319. bottom: 0.03
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(8, "feet"),
  21327. default: true
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21333. {
  21334. front: {
  21335. height: math.unit(5 + 3 / 12, "feet"),
  21336. weight: math.unit(137, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/sasha-katraine/front.svg",
  21340. bottom: 0.045
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Micro",
  21347. height: math.unit(5, "inches")
  21348. },
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(5 + 3 / 12, "feet"),
  21352. default: true
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21358. {
  21359. side: {
  21360. height: math.unit(4, "inches"),
  21361. weight: math.unit(200, "grams"),
  21362. name: "Side",
  21363. image: {
  21364. source: "./media/characters/der/side.svg",
  21365. extra: 719 / 400,
  21366. bottom: 30.6 / 749.9187
  21367. }
  21368. },
  21369. },
  21370. [
  21371. {
  21372. name: "Micro",
  21373. height: math.unit(4, "inches"),
  21374. default: true
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21380. {
  21381. side: {
  21382. height: math.unit(30, "meters"),
  21383. weight: math.unit(700, "tonnes"),
  21384. name: "Side",
  21385. image: {
  21386. source: "./media/characters/fixerdragon/side.svg",
  21387. extra: (1293.0514 - 116.03) / 1106.86,
  21388. bottom: 116.03 / 1293.0514
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Planck",
  21395. height: math.unit(1.6e-35, "meters")
  21396. },
  21397. {
  21398. name: "Micro",
  21399. height: math.unit(0.4, "meters")
  21400. },
  21401. {
  21402. name: "Normal",
  21403. height: math.unit(30, "meters"),
  21404. default: true
  21405. },
  21406. {
  21407. name: "Megamacro",
  21408. height: math.unit(1.2, "megameters")
  21409. },
  21410. {
  21411. name: "Teramacro",
  21412. height: math.unit(130, "terameters")
  21413. },
  21414. {
  21415. name: "Yottamacro",
  21416. height: math.unit(6200, "yottameters")
  21417. },
  21418. ]
  21419. ));
  21420. characterMakers.push(() => makeCharacter(
  21421. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21422. {
  21423. front: {
  21424. height: math.unit(8, "feet"),
  21425. weight: math.unit(250, "lb"),
  21426. name: "Front",
  21427. image: {
  21428. source: "./media/characters/kite/front.svg",
  21429. extra: 2796 / 2659,
  21430. bottom: 0.002
  21431. }
  21432. },
  21433. },
  21434. [
  21435. {
  21436. name: "Normal",
  21437. height: math.unit(8, "feet"),
  21438. default: true
  21439. },
  21440. {
  21441. name: "Macro",
  21442. height: math.unit(360, "feet")
  21443. },
  21444. {
  21445. name: "Megamacro",
  21446. height: math.unit(1500, "feet")
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(5 + 10 / 12, "feet"),
  21455. weight: math.unit(150, "lb"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/poojawa-vynar/front.svg",
  21459. extra: (1506.1547 - 55) / 1356.6,
  21460. bottom: 55 / 1506.1547
  21461. }
  21462. },
  21463. frontTailless: {
  21464. height: math.unit(5 + 10 / 12, "feet"),
  21465. weight: math.unit(150, "lb"),
  21466. name: "Front (Tailless)",
  21467. image: {
  21468. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21469. extra: (1506.1547 - 55) / 1356.6,
  21470. bottom: 55 / 1506.1547
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Normal",
  21477. height: math.unit(5 + 10 / 12, "feet"),
  21478. default: true
  21479. },
  21480. ]
  21481. ))
  21482. characterMakers.push(() => makeCharacter(
  21483. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21484. {
  21485. front: {
  21486. height: math.unit(293, "meters"),
  21487. weight: math.unit(70400, "tons"),
  21488. name: "Front",
  21489. image: {
  21490. source: "./media/characters/violette/front.svg",
  21491. extra: 1227 / 1180,
  21492. bottom: 0.005
  21493. }
  21494. },
  21495. back: {
  21496. height: math.unit(293, "meters"),
  21497. weight: math.unit(70400, "tons"),
  21498. name: "Back",
  21499. image: {
  21500. source: "./media/characters/violette/back.svg",
  21501. extra: 1227 / 1180,
  21502. bottom: 0.005
  21503. }
  21504. },
  21505. },
  21506. [
  21507. {
  21508. name: "Macro",
  21509. height: math.unit(293, "meters"),
  21510. default: true
  21511. },
  21512. ]
  21513. ))
  21514. characterMakers.push(() => makeCharacter(
  21515. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21516. {
  21517. front: {
  21518. height: math.unit(1050, "feet"),
  21519. weight: math.unit(200000, "tons"),
  21520. name: "Front",
  21521. image: {
  21522. source: "./media/characters/alessandra/front.svg",
  21523. extra: 960 / 912,
  21524. bottom: 0.06
  21525. }
  21526. },
  21527. },
  21528. [
  21529. {
  21530. name: "Macro",
  21531. height: math.unit(1050, "feet")
  21532. },
  21533. {
  21534. name: "Macro+",
  21535. height: math.unit(900, "meters"),
  21536. default: true
  21537. },
  21538. ]
  21539. ))
  21540. characterMakers.push(() => makeCharacter(
  21541. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21542. {
  21543. front: {
  21544. height: math.unit(5, "feet"),
  21545. weight: math.unit(187, "lb"),
  21546. name: "Front",
  21547. image: {
  21548. source: "./media/characters/person/front.svg",
  21549. extra: 3087 / 2945,
  21550. bottom: 91 / 3181
  21551. }
  21552. },
  21553. },
  21554. [
  21555. {
  21556. name: "Micro",
  21557. height: math.unit(3, "inches")
  21558. },
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(5, "feet"),
  21562. default: true
  21563. },
  21564. {
  21565. name: "Macro",
  21566. height: math.unit(90, "feet")
  21567. },
  21568. {
  21569. name: "Max Size",
  21570. height: math.unit(280, "feet")
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21576. {
  21577. front: {
  21578. height: math.unit(4.5, "meters"),
  21579. weight: math.unit(3200, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/ty/front.svg",
  21583. extra: 1038 / 960,
  21584. bottom: 31.156 / 1068
  21585. }
  21586. },
  21587. back: {
  21588. height: math.unit(4.5, "meters"),
  21589. weight: math.unit(3200, "lb"),
  21590. name: "Back",
  21591. image: {
  21592. source: "./media/characters/ty/back.svg",
  21593. extra: 1044 / 966,
  21594. bottom: 7.48 / 1049
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(4.5, "meters"),
  21602. default: true
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(5 + 4 / 12, "feet"),
  21611. weight: math.unit(115, "lb"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/rocky/front.svg",
  21615. extra: 1012 / 975,
  21616. bottom: 54 / 1066
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(5 + 4 / 12, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21630. {
  21631. upright: {
  21632. height: math.unit(6, "meters"),
  21633. weight: math.unit(4000, "kg"),
  21634. name: "Upright",
  21635. image: {
  21636. source: "./media/characters/ruin/upright.svg",
  21637. extra: 668 / 661,
  21638. bottom: 42 / 799.8396
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(6, "meters"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21652. {
  21653. front: {
  21654. height: math.unit(5, "feet"),
  21655. weight: math.unit(106, "lb"),
  21656. name: "Front",
  21657. image: {
  21658. source: "./media/characters/robin/front.svg",
  21659. extra: 862 / 799,
  21660. bottom: 42.4 / 914.8856
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(5, "feet"),
  21668. default: true
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21674. {
  21675. side: {
  21676. height: math.unit(3, "feet"),
  21677. weight: math.unit(225, "lb"),
  21678. name: "Side",
  21679. image: {
  21680. source: "./media/characters/saian/side.svg",
  21681. extra: 566 / 356,
  21682. bottom: 79.7 / 643
  21683. }
  21684. },
  21685. maw: {
  21686. height: math.unit(2.85, "feet"),
  21687. name: "Maw",
  21688. image: {
  21689. source: "./media/characters/saian/maw.svg"
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(3, "feet"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21703. {
  21704. side: {
  21705. height: math.unit(8, "feet"),
  21706. weight: math.unit(300, "lb"),
  21707. name: "Side",
  21708. image: {
  21709. source: "./media/characters/equus-silvermane/side.svg",
  21710. extra: 2176 / 2050,
  21711. bottom: 65.7 / 2245
  21712. }
  21713. },
  21714. front: {
  21715. height: math.unit(8, "feet"),
  21716. weight: math.unit(300, "lb"),
  21717. name: "Front",
  21718. image: {
  21719. source: "./media/characters/equus-silvermane/front.svg",
  21720. extra: 4633 / 4400,
  21721. bottom: 71.3 / 4706.915
  21722. }
  21723. },
  21724. sideStepping: {
  21725. height: math.unit(8, "feet"),
  21726. weight: math.unit(300, "lb"),
  21727. name: "Side (Stepping)",
  21728. image: {
  21729. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21730. extra: 1968 / 1860,
  21731. bottom: 16.4 / 1989
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(8, "feet")
  21739. },
  21740. {
  21741. name: "Minimacro",
  21742. height: math.unit(75, "feet"),
  21743. default: true
  21744. },
  21745. {
  21746. name: "Macro",
  21747. height: math.unit(150, "feet")
  21748. },
  21749. {
  21750. name: "Macro+",
  21751. height: math.unit(1000, "feet")
  21752. },
  21753. {
  21754. name: "Megamacro",
  21755. height: math.unit(1, "mile")
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21761. {
  21762. side: {
  21763. height: math.unit(20, "feet"),
  21764. weight: math.unit(30000, "kg"),
  21765. name: "Side",
  21766. image: {
  21767. source: "./media/characters/windar/side.svg",
  21768. extra: 1491 / 1248,
  21769. bottom: 82.56 / 1568
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(20, "feet"),
  21777. default: true
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21783. {
  21784. side: {
  21785. height: math.unit(15.66, "feet"),
  21786. weight: math.unit(150, "lb"),
  21787. name: "Side",
  21788. image: {
  21789. source: "./media/characters/melody/side.svg",
  21790. extra: 1097 / 944,
  21791. bottom: 11.8 / 1109
  21792. }
  21793. },
  21794. sideOutfit: {
  21795. height: math.unit(15.66, "feet"),
  21796. weight: math.unit(150, "lb"),
  21797. name: "Side (Outfit)",
  21798. image: {
  21799. source: "./media/characters/melody/side-outfit.svg",
  21800. extra: 1097 / 944,
  21801. bottom: 11.8 / 1109
  21802. }
  21803. },
  21804. },
  21805. [
  21806. {
  21807. name: "Normal",
  21808. height: math.unit(15.66, "feet"),
  21809. default: true
  21810. },
  21811. ]
  21812. ))
  21813. characterMakers.push(() => makeCharacter(
  21814. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21815. {
  21816. front: {
  21817. height: math.unit(8, "feet"),
  21818. weight: math.unit(325, "lb"),
  21819. name: "Front",
  21820. image: {
  21821. source: "./media/characters/windera/front.svg",
  21822. extra: 3180 / 2845,
  21823. bottom: 178 / 3365
  21824. }
  21825. },
  21826. },
  21827. [
  21828. {
  21829. name: "Normal",
  21830. height: math.unit(8, "feet"),
  21831. default: true
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21837. {
  21838. front: {
  21839. height: math.unit(28.75, "feet"),
  21840. weight: math.unit(2000, "kg"),
  21841. name: "Front",
  21842. image: {
  21843. source: "./media/characters/sonear/front.svg",
  21844. extra: 1041.1 / 964.9,
  21845. bottom: 53.7 / 1096.6
  21846. }
  21847. },
  21848. },
  21849. [
  21850. {
  21851. name: "Normal",
  21852. height: math.unit(28.75, "feet"),
  21853. default: true
  21854. },
  21855. ]
  21856. ))
  21857. characterMakers.push(() => makeCharacter(
  21858. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21859. {
  21860. side: {
  21861. height: math.unit(25.5, "feet"),
  21862. weight: math.unit(23000, "kg"),
  21863. name: "Side",
  21864. image: {
  21865. source: "./media/characters/kanara/side.svg"
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(25.5, "feet"),
  21873. default: true
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21879. {
  21880. side: {
  21881. height: math.unit(10, "feet"),
  21882. weight: math.unit(1000, "kg"),
  21883. name: "Side",
  21884. image: {
  21885. source: "./media/characters/ereus/side.svg",
  21886. extra: 1157 / 959,
  21887. bottom: 153 / 1312.5
  21888. }
  21889. },
  21890. },
  21891. [
  21892. {
  21893. name: "Normal",
  21894. height: math.unit(10, "feet"),
  21895. default: true
  21896. },
  21897. ]
  21898. ))
  21899. characterMakers.push(() => makeCharacter(
  21900. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21901. {
  21902. side: {
  21903. height: math.unit(4.5, "feet"),
  21904. weight: math.unit(500, "lb"),
  21905. name: "Side",
  21906. image: {
  21907. source: "./media/characters/e-ter/side.svg",
  21908. extra: 1550 / 1248,
  21909. bottom: 146 / 1694
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(4.5, "feet"),
  21917. default: true
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21923. {
  21924. side: {
  21925. height: math.unit(9.7, "feet"),
  21926. weight: math.unit(4000, "kg"),
  21927. name: "Side",
  21928. image: {
  21929. source: "./media/characters/yamie/side.svg"
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Normal",
  21936. height: math.unit(9.7, "feet"),
  21937. default: true
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21943. {
  21944. front: {
  21945. height: math.unit(50, "feet"),
  21946. weight: math.unit(50000, "kg"),
  21947. name: "Front",
  21948. image: {
  21949. source: "./media/characters/anders/front.svg",
  21950. extra: 570 / 539,
  21951. bottom: 14.7 / 586.7
  21952. }
  21953. },
  21954. },
  21955. [
  21956. {
  21957. name: "Large",
  21958. height: math.unit(50, "feet")
  21959. },
  21960. {
  21961. name: "Macro",
  21962. height: math.unit(2000, "feet"),
  21963. default: true
  21964. },
  21965. {
  21966. name: "Megamacro",
  21967. height: math.unit(12, "miles")
  21968. },
  21969. ]
  21970. ))
  21971. characterMakers.push(() => makeCharacter(
  21972. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21973. {
  21974. front: {
  21975. height: math.unit(7 + 2 / 12, "feet"),
  21976. weight: math.unit(300, "lb"),
  21977. name: "Front",
  21978. image: {
  21979. source: "./media/characters/reban/front.svg",
  21980. extra: 516 / 487,
  21981. bottom: 42.82 / 558.356
  21982. }
  21983. },
  21984. dick: {
  21985. height: math.unit(7 / 5, "feet"),
  21986. name: "Dick",
  21987. image: {
  21988. source: "./media/characters/reban/dick.svg"
  21989. }
  21990. },
  21991. },
  21992. [
  21993. {
  21994. name: "Natural Height",
  21995. height: math.unit(7 + 2 / 12, "feet")
  21996. },
  21997. {
  21998. name: "Macro",
  21999. height: math.unit(500, "feet"),
  22000. default: true
  22001. },
  22002. {
  22003. name: "Canon Height",
  22004. height: math.unit(50, "AU")
  22005. },
  22006. ]
  22007. ))
  22008. characterMakers.push(() => makeCharacter(
  22009. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22010. {
  22011. front: {
  22012. height: math.unit(6, "feet"),
  22013. weight: math.unit(150, "lb"),
  22014. name: "Front",
  22015. image: {
  22016. source: "./media/characters/terrance-keayes/front.svg",
  22017. extra: 1.005,
  22018. bottom: 151 / 1615
  22019. }
  22020. },
  22021. side: {
  22022. height: math.unit(6, "feet"),
  22023. weight: math.unit(150, "lb"),
  22024. name: "Side",
  22025. image: {
  22026. source: "./media/characters/terrance-keayes/side.svg",
  22027. extra: 1.005,
  22028. bottom: 129.4 / 1544
  22029. }
  22030. },
  22031. back: {
  22032. height: math.unit(6, "feet"),
  22033. weight: math.unit(150, "lb"),
  22034. name: "Back",
  22035. image: {
  22036. source: "./media/characters/terrance-keayes/back.svg",
  22037. extra: 1.005,
  22038. bottom: 58.4 / 1557.3
  22039. }
  22040. },
  22041. dick: {
  22042. height: math.unit(6 * 0.208, "feet"),
  22043. name: "Dick",
  22044. image: {
  22045. source: "./media/characters/terrance-keayes/dick.svg"
  22046. }
  22047. },
  22048. },
  22049. [
  22050. {
  22051. name: "Canon Height",
  22052. height: math.unit(35, "miles"),
  22053. default: true
  22054. },
  22055. ]
  22056. ))
  22057. characterMakers.push(() => makeCharacter(
  22058. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22059. {
  22060. front: {
  22061. height: math.unit(6, "feet"),
  22062. weight: math.unit(150, "lb"),
  22063. name: "Front",
  22064. image: {
  22065. source: "./media/characters/ofelia/front.svg",
  22066. extra: 546 / 541,
  22067. bottom: 39 / 583
  22068. }
  22069. },
  22070. back: {
  22071. height: math.unit(6, "feet"),
  22072. weight: math.unit(150, "lb"),
  22073. name: "Back",
  22074. image: {
  22075. source: "./media/characters/ofelia/back.svg",
  22076. extra: 564 / 559.5,
  22077. bottom: 8.69 / 573.02
  22078. }
  22079. },
  22080. maw: {
  22081. height: math.unit(1, "feet"),
  22082. name: "Maw",
  22083. image: {
  22084. source: "./media/characters/ofelia/maw.svg"
  22085. }
  22086. },
  22087. foot: {
  22088. height: math.unit(1.949, "feet"),
  22089. name: "Foot",
  22090. image: {
  22091. source: "./media/characters/ofelia/foot.svg"
  22092. }
  22093. },
  22094. },
  22095. [
  22096. {
  22097. name: "Canon Height",
  22098. height: math.unit(2000, "miles"),
  22099. default: true
  22100. },
  22101. ]
  22102. ))
  22103. characterMakers.push(() => makeCharacter(
  22104. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22105. {
  22106. front: {
  22107. height: math.unit(6, "feet"),
  22108. weight: math.unit(150, "lb"),
  22109. name: "Front",
  22110. image: {
  22111. source: "./media/characters/samuel/front.svg",
  22112. extra: 265 / 258,
  22113. bottom: 2 / 266.1566
  22114. }
  22115. },
  22116. },
  22117. [
  22118. {
  22119. name: "Macro",
  22120. height: math.unit(100, "feet"),
  22121. default: true
  22122. },
  22123. {
  22124. name: "Full Size",
  22125. height: math.unit(1000, "miles")
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22131. {
  22132. front: {
  22133. height: math.unit(6, "feet"),
  22134. weight: math.unit(300, "lb"),
  22135. name: "Front",
  22136. image: {
  22137. source: "./media/characters/beishir-kiel/front.svg",
  22138. extra: 569 / 547,
  22139. bottom: 41.9 / 609
  22140. }
  22141. },
  22142. maw: {
  22143. height: math.unit(6 * 0.202, "feet"),
  22144. name: "Maw",
  22145. image: {
  22146. source: "./media/characters/beishir-kiel/maw.svg"
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Macro",
  22153. height: math.unit(300, "feet"),
  22154. default: true
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22160. {
  22161. front: {
  22162. height: math.unit(5 + 7/12, "feet"),
  22163. weight: math.unit(120, "lb"),
  22164. name: "Front",
  22165. image: {
  22166. source: "./media/characters/logan-grey/front.svg",
  22167. extra: 1836/1738,
  22168. bottom: 108/1944
  22169. }
  22170. },
  22171. back: {
  22172. height: math.unit(5 + 7/12, "feet"),
  22173. weight: math.unit(120, "lb"),
  22174. name: "Back",
  22175. image: {
  22176. source: "./media/characters/logan-grey/back.svg",
  22177. extra: 1880/1794,
  22178. bottom: 24/1904
  22179. }
  22180. },
  22181. frontSfw: {
  22182. height: math.unit(5 + 7/12, "feet"),
  22183. weight: math.unit(120, "lb"),
  22184. name: "Front (SFW)",
  22185. image: {
  22186. source: "./media/characters/logan-grey/front-sfw.svg",
  22187. extra: 1836/1738,
  22188. bottom: 108/1944
  22189. }
  22190. },
  22191. backSfw: {
  22192. height: math.unit(5 + 7/12, "feet"),
  22193. weight: math.unit(120, "lb"),
  22194. name: "Back (SFW)",
  22195. image: {
  22196. source: "./media/characters/logan-grey/back-sfw.svg",
  22197. extra: 1880/1794,
  22198. bottom: 24/1904
  22199. }
  22200. },
  22201. hands: {
  22202. height: math.unit(0.84, "feet"),
  22203. name: "Hands",
  22204. image: {
  22205. source: "./media/characters/logan-grey/hands.svg"
  22206. }
  22207. },
  22208. paws: {
  22209. height: math.unit(0.72, "feet"),
  22210. name: "Paws",
  22211. image: {
  22212. source: "./media/characters/logan-grey/paws.svg"
  22213. }
  22214. },
  22215. cock: {
  22216. height: math.unit(1.45, "feet"),
  22217. name: "Cock",
  22218. image: {
  22219. source: "./media/characters/logan-grey/cock.svg"
  22220. }
  22221. },
  22222. cockAlt: {
  22223. height: math.unit(1.437, "feet"),
  22224. name: "Cock (alt)",
  22225. image: {
  22226. source: "./media/characters/logan-grey/cock-alt.svg"
  22227. }
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(5 + 8 / 12, "feet")
  22234. },
  22235. {
  22236. name: "The 500 Foot Femboy",
  22237. height: math.unit(500, "feet"),
  22238. default: true
  22239. },
  22240. {
  22241. name: "Megmacro",
  22242. height: math.unit(20, "miles")
  22243. },
  22244. ]
  22245. ))
  22246. characterMakers.push(() => makeCharacter(
  22247. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22248. {
  22249. front: {
  22250. height: math.unit(8 + 2 / 12, "feet"),
  22251. weight: math.unit(275, "lb"),
  22252. name: "Front",
  22253. image: {
  22254. source: "./media/characters/draganta/front.svg",
  22255. extra: 1177 / 1135,
  22256. bottom: 33.46 / 1212.1
  22257. }
  22258. },
  22259. },
  22260. [
  22261. {
  22262. name: "Normal",
  22263. height: math.unit(8 + 6 / 12, "feet"),
  22264. default: true
  22265. },
  22266. {
  22267. name: "Macro",
  22268. height: math.unit(150, "feet")
  22269. },
  22270. {
  22271. name: "Megamacro",
  22272. height: math.unit(1000, "miles")
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22278. {
  22279. front: {
  22280. height: math.unit(1.72, "m"),
  22281. weight: math.unit(80, "lb"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/voski/front.svg",
  22285. extra: 2076.22 / 2022.4,
  22286. bottom: 102.7 / 2177.3866
  22287. }
  22288. },
  22289. frontNsfw: {
  22290. height: math.unit(1.72, "m"),
  22291. weight: math.unit(80, "lb"),
  22292. name: "Front (NSFW)",
  22293. image: {
  22294. source: "./media/characters/voski/front-nsfw.svg",
  22295. extra: 2076.22 / 2022.4,
  22296. bottom: 102.7 / 2177.3866
  22297. }
  22298. },
  22299. back: {
  22300. height: math.unit(1.72, "m"),
  22301. weight: math.unit(80, "lb"),
  22302. name: "Back",
  22303. image: {
  22304. source: "./media/characters/voski/back.svg",
  22305. extra: 2104 / 2051,
  22306. bottom: 10.45 / 2113.63
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Normal",
  22313. height: math.unit(1.72, "m")
  22314. },
  22315. {
  22316. name: "Macro",
  22317. height: math.unit(55, "m"),
  22318. default: true
  22319. },
  22320. {
  22321. name: "Macro+",
  22322. height: math.unit(300, "m")
  22323. },
  22324. {
  22325. name: "Macro++",
  22326. height: math.unit(700, "m")
  22327. },
  22328. {
  22329. name: "Macro+++",
  22330. height: math.unit(4500, "m")
  22331. },
  22332. {
  22333. name: "Macro++++",
  22334. height: math.unit(45, "km")
  22335. },
  22336. {
  22337. name: "Macro+++++",
  22338. height: math.unit(1220, "km")
  22339. },
  22340. ]
  22341. ))
  22342. characterMakers.push(() => makeCharacter(
  22343. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22344. {
  22345. front: {
  22346. height: math.unit(2.3, "m"),
  22347. weight: math.unit(304, "kg"),
  22348. name: "Front",
  22349. image: {
  22350. source: "./media/characters/icowom-lee/front.svg",
  22351. extra: 985 / 955,
  22352. bottom: 25.4 / 1012
  22353. }
  22354. },
  22355. fronttentacles: {
  22356. height: math.unit(2.3, "m"),
  22357. weight: math.unit(304, "kg"),
  22358. name: "Front-tentacles",
  22359. image: {
  22360. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22361. extra: 985 / 955,
  22362. bottom: 25.4 / 1012
  22363. }
  22364. },
  22365. back: {
  22366. height: math.unit(2.3, "m"),
  22367. weight: math.unit(304, "kg"),
  22368. name: "Back",
  22369. image: {
  22370. source: "./media/characters/icowom-lee/back.svg",
  22371. extra: 975 / 954,
  22372. bottom: 9.5 / 985
  22373. }
  22374. },
  22375. backtentacles: {
  22376. height: math.unit(2.3, "m"),
  22377. weight: math.unit(304, "kg"),
  22378. name: "Back-tentacles",
  22379. image: {
  22380. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22381. extra: 975 / 954,
  22382. bottom: 9.5 / 985
  22383. }
  22384. },
  22385. frontDressed: {
  22386. height: math.unit(2.3, "m"),
  22387. weight: math.unit(304, "kg"),
  22388. name: "Front (Dressed)",
  22389. image: {
  22390. source: "./media/characters/icowom-lee/front-dressed.svg",
  22391. extra: 3076 / 2933,
  22392. bottom: 51.4 / 3125.1889
  22393. }
  22394. },
  22395. rump: {
  22396. height: math.unit(0.776, "meters"),
  22397. name: "Rump",
  22398. image: {
  22399. source: "./media/characters/icowom-lee/rump.svg"
  22400. }
  22401. },
  22402. genitals: {
  22403. height: math.unit(0.78, "meters"),
  22404. name: "Genitals",
  22405. image: {
  22406. source: "./media/characters/icowom-lee/genitals.svg"
  22407. }
  22408. },
  22409. },
  22410. [
  22411. {
  22412. name: "Normal",
  22413. height: math.unit(2.3, "meters"),
  22414. default: true
  22415. },
  22416. {
  22417. name: "Macro",
  22418. height: math.unit(94, "meters"),
  22419. default: true
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(22, "meters"),
  22428. weight: math.unit(21000, "kg"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/shock-diamond/front.svg",
  22432. extra: 2204 / 2053,
  22433. bottom: 65 / 2239.47
  22434. }
  22435. },
  22436. frontNude: {
  22437. height: math.unit(22, "meters"),
  22438. weight: math.unit(21000, "kg"),
  22439. name: "Front (Nude)",
  22440. image: {
  22441. source: "./media/characters/shock-diamond/front-nude.svg",
  22442. extra: 2514 / 2285,
  22443. bottom: 13 / 2527.56
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Normal",
  22450. height: math.unit(3, "meters")
  22451. },
  22452. {
  22453. name: "Macro",
  22454. height: math.unit(22, "meters"),
  22455. default: true
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22461. {
  22462. front: {
  22463. height: math.unit(5 + 4 / 12, "feet"),
  22464. weight: math.unit(120, "lb"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/rory/front.svg",
  22468. extra: 1318/1241,
  22469. bottom: 42/1360
  22470. }
  22471. },
  22472. back: {
  22473. height: math.unit(5 + 4 / 12, "feet"),
  22474. weight: math.unit(120, "lb"),
  22475. name: "Back",
  22476. image: {
  22477. source: "./media/characters/rory/back.svg",
  22478. extra: 1318/1241,
  22479. bottom: 42/1360
  22480. }
  22481. },
  22482. butt: {
  22483. height: math.unit(1.74, "feet"),
  22484. name: "Butt",
  22485. image: {
  22486. source: "./media/characters/rory/butt.svg"
  22487. }
  22488. },
  22489. dick: {
  22490. height: math.unit(1.02, "feet"),
  22491. name: "Dick",
  22492. image: {
  22493. source: "./media/characters/rory/dick.svg"
  22494. }
  22495. },
  22496. paws: {
  22497. height: math.unit(1, "feet"),
  22498. name: "Paws",
  22499. image: {
  22500. source: "./media/characters/rory/paws.svg"
  22501. }
  22502. },
  22503. frontAlt: {
  22504. height: math.unit(5 + 4 / 12, "feet"),
  22505. weight: math.unit(120, "lb"),
  22506. name: "Front (Alt)",
  22507. image: {
  22508. source: "./media/characters/rory/front-alt.svg",
  22509. extra: 589 / 556,
  22510. bottom: 45.7 / 635.76
  22511. }
  22512. },
  22513. frontAltNude: {
  22514. height: math.unit(5 + 4 / 12, "feet"),
  22515. weight: math.unit(120, "lb"),
  22516. name: "Front (Alt, Nude)",
  22517. image: {
  22518. source: "./media/characters/rory/front-alt-nude.svg",
  22519. extra: 589 / 556,
  22520. bottom: 45.7 / 635.76
  22521. }
  22522. },
  22523. side: {
  22524. height: math.unit(5 + 4 / 12, "feet"),
  22525. weight: math.unit(120, "lb"),
  22526. name: "Side",
  22527. image: {
  22528. source: "./media/characters/rory/side.svg",
  22529. extra: 597 / 564,
  22530. bottom: 55 / 653
  22531. }
  22532. },
  22533. backAlt: {
  22534. height: math.unit(5 + 4 / 12, "feet"),
  22535. weight: math.unit(120, "lb"),
  22536. name: "Back (Alt)",
  22537. image: {
  22538. source: "./media/characters/rory/back-alt.svg",
  22539. extra: 620 / 585,
  22540. bottom: 8.86 / 630.43
  22541. }
  22542. },
  22543. dickAlt: {
  22544. height: math.unit(0.86, "feet"),
  22545. name: "Dick (Alt)",
  22546. image: {
  22547. source: "./media/characters/rory/dick-alt.svg"
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Normal",
  22554. height: math.unit(5 + 4 / 12, "feet"),
  22555. default: true
  22556. },
  22557. {
  22558. name: "Macro",
  22559. height: math.unit(100, "feet")
  22560. },
  22561. {
  22562. name: "Macro+",
  22563. height: math.unit(140, "feet")
  22564. },
  22565. {
  22566. name: "Macro++",
  22567. height: math.unit(300, "feet")
  22568. },
  22569. ]
  22570. ))
  22571. characterMakers.push(() => makeCharacter(
  22572. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22573. {
  22574. front: {
  22575. height: math.unit(5 + 9 / 12, "feet"),
  22576. weight: math.unit(190, "lb"),
  22577. name: "Front",
  22578. image: {
  22579. source: "./media/characters/sprisk/front.svg",
  22580. extra: 1225 / 1180,
  22581. bottom: 42.7 / 1266.4
  22582. }
  22583. },
  22584. frontNsfw: {
  22585. height: math.unit(5 + 9 / 12, "feet"),
  22586. weight: math.unit(190, "lb"),
  22587. name: "Front (NSFW)",
  22588. image: {
  22589. source: "./media/characters/sprisk/front-nsfw.svg",
  22590. extra: 1225 / 1180,
  22591. bottom: 42.7 / 1266.4
  22592. }
  22593. },
  22594. back: {
  22595. height: math.unit(5 + 9 / 12, "feet"),
  22596. weight: math.unit(190, "lb"),
  22597. name: "Back",
  22598. image: {
  22599. source: "./media/characters/sprisk/back.svg",
  22600. extra: 1247 / 1200,
  22601. bottom: 5.6 / 1253.04
  22602. }
  22603. },
  22604. },
  22605. [
  22606. {
  22607. name: "Tiny",
  22608. height: math.unit(2, "inches")
  22609. },
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(5 + 9 / 12, "feet"),
  22613. default: true
  22614. },
  22615. {
  22616. name: "Mini Macro",
  22617. height: math.unit(18, "feet")
  22618. },
  22619. {
  22620. name: "Macro",
  22621. height: math.unit(100, "feet")
  22622. },
  22623. {
  22624. name: "MACRO",
  22625. height: math.unit(50, "miles")
  22626. },
  22627. {
  22628. name: "M A C R O",
  22629. height: math.unit(300, "miles")
  22630. },
  22631. ]
  22632. ))
  22633. characterMakers.push(() => makeCharacter(
  22634. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22635. {
  22636. side: {
  22637. height: math.unit(15.6, "meters"),
  22638. weight: math.unit(700000, "kg"),
  22639. name: "Side",
  22640. image: {
  22641. source: "./media/characters/bunsen/side.svg",
  22642. extra: 1644 / 358
  22643. }
  22644. },
  22645. foot: {
  22646. height: math.unit(1.611 * 1644 / 358, "meter"),
  22647. name: "Foot",
  22648. image: {
  22649. source: "./media/characters/bunsen/foot.svg"
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Small",
  22656. height: math.unit(10, "feet")
  22657. },
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(15.6, "meters"),
  22661. default: true
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22667. {
  22668. front: {
  22669. height: math.unit(4 + 11 / 12, "feet"),
  22670. weight: math.unit(140, "lb"),
  22671. name: "Front",
  22672. image: {
  22673. source: "./media/characters/sesh/front.svg",
  22674. extra: 3420 / 3231,
  22675. bottom: 72 / 3949.5
  22676. }
  22677. },
  22678. },
  22679. [
  22680. {
  22681. name: "Normal",
  22682. height: math.unit(4 + 11 / 12, "feet")
  22683. },
  22684. {
  22685. name: "Grown",
  22686. height: math.unit(15, "feet"),
  22687. default: true
  22688. },
  22689. {
  22690. name: "Macro",
  22691. height: math.unit(1500, "feet")
  22692. },
  22693. {
  22694. name: "Megamacro",
  22695. height: math.unit(30, "miles")
  22696. },
  22697. {
  22698. name: "Continental",
  22699. height: math.unit(3000, "miles")
  22700. },
  22701. {
  22702. name: "Gravity Mass",
  22703. height: math.unit(300000, "miles")
  22704. },
  22705. {
  22706. name: "Planet Buster",
  22707. height: math.unit(30000000, "miles")
  22708. },
  22709. {
  22710. name: "Big",
  22711. height: math.unit(3000000000, "miles")
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22717. {
  22718. front: {
  22719. height: math.unit(9, "feet"),
  22720. weight: math.unit(350, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/pepper/front.svg",
  22724. extra: 1448 / 1312,
  22725. bottom: 9.4 / 1457.88
  22726. }
  22727. },
  22728. back: {
  22729. height: math.unit(9, "feet"),
  22730. weight: math.unit(350, "lb"),
  22731. name: "Back",
  22732. image: {
  22733. source: "./media/characters/pepper/back.svg",
  22734. extra: 1423 / 1300,
  22735. bottom: 4.6 / 1429
  22736. }
  22737. },
  22738. maw: {
  22739. height: math.unit(0.932, "feet"),
  22740. name: "Maw",
  22741. image: {
  22742. source: "./media/characters/pepper/maw.svg"
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(9, "feet"),
  22750. default: true
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22756. {
  22757. front: {
  22758. height: math.unit(6, "feet"),
  22759. weight: math.unit(150, "lb"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/maelstrom/front.svg",
  22763. extra: 2100 / 1883,
  22764. bottom: 94 / 2196.7
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Less Kaiju",
  22771. height: math.unit(200, "feet")
  22772. },
  22773. {
  22774. name: "Kaiju",
  22775. height: math.unit(400, "feet"),
  22776. default: true
  22777. },
  22778. {
  22779. name: "Kaiju-er",
  22780. height: math.unit(600, "feet")
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22786. {
  22787. front: {
  22788. height: math.unit(6 + 5 / 12, "feet"),
  22789. weight: math.unit(180, "lb"),
  22790. name: "Front",
  22791. image: {
  22792. source: "./media/characters/lexir/front.svg",
  22793. extra: 180 / 172,
  22794. bottom: 12 / 192
  22795. }
  22796. },
  22797. back: {
  22798. height: math.unit(6 + 5 / 12, "feet"),
  22799. weight: math.unit(180, "lb"),
  22800. name: "Back",
  22801. image: {
  22802. source: "./media/characters/lexir/back.svg",
  22803. extra: 183.84 / 175.5,
  22804. bottom: 3.1 / 187
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Very Smal",
  22811. height: math.unit(1, "nm")
  22812. },
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(6 + 5 / 12, "feet"),
  22816. default: true
  22817. },
  22818. {
  22819. name: "Macro",
  22820. height: math.unit(1, "mile")
  22821. },
  22822. {
  22823. name: "Megamacro",
  22824. height: math.unit(50, "miles")
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22830. {
  22831. front: {
  22832. height: math.unit(1.5, "meters"),
  22833. weight: math.unit(100, "lb"),
  22834. name: "Front",
  22835. image: {
  22836. source: "./media/characters/maksio/front.svg",
  22837. extra: 1549 / 1531,
  22838. bottom: 123.7 / 1674.5429
  22839. }
  22840. },
  22841. back: {
  22842. height: math.unit(1.5, "meters"),
  22843. weight: math.unit(100, "lb"),
  22844. name: "Back",
  22845. image: {
  22846. source: "./media/characters/maksio/back.svg",
  22847. extra: 1541 / 1509,
  22848. bottom: 97 / 1639
  22849. }
  22850. },
  22851. hand: {
  22852. height: math.unit(0.621, "feet"),
  22853. name: "Hand",
  22854. image: {
  22855. source: "./media/characters/maksio/hand.svg"
  22856. }
  22857. },
  22858. foot: {
  22859. height: math.unit(1.611, "feet"),
  22860. name: "Foot",
  22861. image: {
  22862. source: "./media/characters/maksio/foot.svg"
  22863. }
  22864. },
  22865. },
  22866. [
  22867. {
  22868. name: "Shrunken",
  22869. height: math.unit(10, "cm")
  22870. },
  22871. {
  22872. name: "Normal",
  22873. height: math.unit(150, "cm"),
  22874. default: true
  22875. },
  22876. ]
  22877. ))
  22878. characterMakers.push(() => makeCharacter(
  22879. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22880. {
  22881. front: {
  22882. height: math.unit(100, "feet"),
  22883. name: "Front",
  22884. image: {
  22885. source: "./media/characters/erza-bear/front.svg",
  22886. extra: 2449 / 2390,
  22887. bottom: 46 / 2494
  22888. }
  22889. },
  22890. back: {
  22891. height: math.unit(100, "feet"),
  22892. name: "Back",
  22893. image: {
  22894. source: "./media/characters/erza-bear/back.svg",
  22895. extra: 2489 / 2430,
  22896. bottom: 85.4 / 2480
  22897. }
  22898. },
  22899. tail: {
  22900. height: math.unit(42, "feet"),
  22901. name: "Tail",
  22902. image: {
  22903. source: "./media/characters/erza-bear/tail.svg"
  22904. }
  22905. },
  22906. tongue: {
  22907. height: math.unit(8, "feet"),
  22908. name: "Tongue",
  22909. image: {
  22910. source: "./media/characters/erza-bear/tongue.svg"
  22911. }
  22912. },
  22913. dick: {
  22914. height: math.unit(10.5, "feet"),
  22915. name: "Dick",
  22916. image: {
  22917. source: "./media/characters/erza-bear/dick.svg"
  22918. }
  22919. },
  22920. dickVertical: {
  22921. height: math.unit(16.9, "feet"),
  22922. name: "Dick (Vertical)",
  22923. image: {
  22924. source: "./media/characters/erza-bear/dick-vertical.svg"
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Macro",
  22931. height: math.unit(100, "feet"),
  22932. default: true
  22933. },
  22934. ]
  22935. ))
  22936. characterMakers.push(() => makeCharacter(
  22937. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22938. {
  22939. front: {
  22940. height: math.unit(172, "cm"),
  22941. weight: math.unit(73, "kg"),
  22942. name: "Front",
  22943. image: {
  22944. source: "./media/characters/violet-flor/front.svg",
  22945. extra: 1530 / 1442,
  22946. bottom: 61.9 / 1588.8
  22947. }
  22948. },
  22949. back: {
  22950. height: math.unit(180, "cm"),
  22951. weight: math.unit(73, "kg"),
  22952. name: "Back",
  22953. image: {
  22954. source: "./media/characters/violet-flor/back.svg",
  22955. extra: 1692 / 1630,
  22956. bottom: 20 / 1712
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Normal",
  22963. height: math.unit(172, "cm"),
  22964. default: true
  22965. },
  22966. ]
  22967. ))
  22968. characterMakers.push(() => makeCharacter(
  22969. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22970. {
  22971. front: {
  22972. height: math.unit(6, "feet"),
  22973. weight: math.unit(220, "lb"),
  22974. name: "Front",
  22975. image: {
  22976. source: "./media/characters/lynn-rhea/front.svg",
  22977. extra: 310 / 273
  22978. }
  22979. },
  22980. back: {
  22981. height: math.unit(6, "feet"),
  22982. weight: math.unit(220, "lb"),
  22983. name: "Back",
  22984. image: {
  22985. source: "./media/characters/lynn-rhea/back.svg",
  22986. extra: 310 / 273
  22987. }
  22988. },
  22989. dicks: {
  22990. height: math.unit(0.9, "feet"),
  22991. name: "Dicks",
  22992. image: {
  22993. source: "./media/characters/lynn-rhea/dicks.svg"
  22994. }
  22995. },
  22996. slit: {
  22997. height: math.unit(0.4, "feet"),
  22998. name: "Slit",
  22999. image: {
  23000. source: "./media/characters/lynn-rhea/slit.svg"
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Micro",
  23007. height: math.unit(1, "inch")
  23008. },
  23009. {
  23010. name: "Macro",
  23011. height: math.unit(60, "feet"),
  23012. default: true
  23013. },
  23014. {
  23015. name: "Megamacro",
  23016. height: math.unit(2, "miles")
  23017. },
  23018. {
  23019. name: "Gigamacro",
  23020. height: math.unit(3, "earths")
  23021. },
  23022. {
  23023. name: "Galactic",
  23024. height: math.unit(0.8, "galaxies")
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23030. {
  23031. front: {
  23032. height: math.unit(1600, "feet"),
  23033. weight: math.unit(85758785169, "kg"),
  23034. name: "Front",
  23035. image: {
  23036. source: "./media/characters/valathos/front.svg",
  23037. extra: 1451 / 1339
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Macro",
  23044. height: math.unit(1600, "feet"),
  23045. default: true
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23051. {
  23052. front: {
  23053. height: math.unit(7 + 5 / 12, "feet"),
  23054. weight: math.unit(300, "lb"),
  23055. name: "Front",
  23056. image: {
  23057. source: "./media/characters/azula/front.svg",
  23058. extra: 3208 / 2880,
  23059. bottom: 80.2 / 3277
  23060. }
  23061. },
  23062. back: {
  23063. height: math.unit(7 + 5 / 12, "feet"),
  23064. weight: math.unit(300, "lb"),
  23065. name: "Back",
  23066. image: {
  23067. source: "./media/characters/azula/back.svg",
  23068. extra: 3169 / 2822,
  23069. bottom: 150.6 / 3321
  23070. }
  23071. },
  23072. },
  23073. [
  23074. {
  23075. name: "Normal",
  23076. height: math.unit(7 + 5 / 12, "feet"),
  23077. default: true
  23078. },
  23079. {
  23080. name: "Big",
  23081. height: math.unit(20, "feet")
  23082. },
  23083. ]
  23084. ))
  23085. characterMakers.push(() => makeCharacter(
  23086. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23087. {
  23088. front: {
  23089. height: math.unit(5 + 1 / 12, "feet"),
  23090. weight: math.unit(110, "lb"),
  23091. name: "Front",
  23092. image: {
  23093. source: "./media/characters/rupert/front.svg",
  23094. extra: 1549 / 1495,
  23095. bottom: 54.2 / 1604.4
  23096. }
  23097. },
  23098. },
  23099. [
  23100. {
  23101. name: "Normal",
  23102. height: math.unit(5 + 1 / 12, "feet"),
  23103. default: true
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23109. {
  23110. front: {
  23111. height: math.unit(8 + 4 / 12, "feet"),
  23112. weight: math.unit(350, "lb"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/sheera-castellar/front.svg",
  23116. extra: 1957 / 1894,
  23117. bottom: 26.97 / 1975.017
  23118. }
  23119. },
  23120. side: {
  23121. height: math.unit(8 + 4 / 12, "feet"),
  23122. weight: math.unit(350, "lb"),
  23123. name: "Side",
  23124. image: {
  23125. source: "./media/characters/sheera-castellar/side.svg",
  23126. extra: 1957 / 1894
  23127. }
  23128. },
  23129. back: {
  23130. height: math.unit(8 + 4 / 12, "feet"),
  23131. weight: math.unit(350, "lb"),
  23132. name: "Back",
  23133. image: {
  23134. source: "./media/characters/sheera-castellar/back.svg",
  23135. extra: 1957 / 1894
  23136. }
  23137. },
  23138. angled: {
  23139. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23140. weight: math.unit(350, "lb"),
  23141. name: "Angled",
  23142. image: {
  23143. source: "./media/characters/sheera-castellar/angled.svg",
  23144. extra: 1807 / 1707,
  23145. bottom: 68 / 1875
  23146. }
  23147. },
  23148. genitals: {
  23149. height: math.unit(2.2, "feet"),
  23150. name: "Genitals",
  23151. image: {
  23152. source: "./media/characters/sheera-castellar/genitals.svg"
  23153. }
  23154. },
  23155. taur: {
  23156. height: math.unit(10 + 6/12, "feet"),
  23157. name: "Taur",
  23158. image: {
  23159. source: "./media/characters/sheera-castellar/taur.svg",
  23160. extra: 2017/1909,
  23161. bottom: 185/2202
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(8 + 4 / 12, "feet")
  23169. },
  23170. {
  23171. name: "Macro",
  23172. height: math.unit(150, "feet"),
  23173. default: true
  23174. },
  23175. {
  23176. name: "Macro+",
  23177. height: math.unit(800, "feet")
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(6, "feet"),
  23186. weight: math.unit(150, "lb"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/jaipur/front.svg",
  23190. extra: 3860 / 3731,
  23191. bottom: 287 / 4140
  23192. }
  23193. },
  23194. back: {
  23195. height: math.unit(6, "feet"),
  23196. weight: math.unit(150, "lb"),
  23197. name: "Back",
  23198. image: {
  23199. source: "./media/characters/jaipur/back.svg",
  23200. extra: 4060 / 3930,
  23201. bottom: 151 / 4200
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(1.85, "meters"),
  23209. default: true
  23210. },
  23211. {
  23212. name: "Macro",
  23213. height: math.unit(150, "meters")
  23214. },
  23215. {
  23216. name: "Macro+",
  23217. height: math.unit(0.5, "miles")
  23218. },
  23219. {
  23220. name: "Macro++",
  23221. height: math.unit(2.5, "miles")
  23222. },
  23223. {
  23224. name: "Macro+++",
  23225. height: math.unit(12, "miles")
  23226. },
  23227. {
  23228. name: "Macro++++",
  23229. height: math.unit(120, "miles")
  23230. },
  23231. {
  23232. name: "Macro+++++",
  23233. height: math.unit(1200, "miles")
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23239. {
  23240. front: {
  23241. height: math.unit(6, "feet"),
  23242. weight: math.unit(150, "lb"),
  23243. name: "Front",
  23244. image: {
  23245. source: "./media/characters/sheila-wolf/front.svg",
  23246. extra: 1931 / 1808,
  23247. bottom: 29.5 / 1960
  23248. }
  23249. },
  23250. dick: {
  23251. height: math.unit(1.464, "feet"),
  23252. name: "Dick",
  23253. image: {
  23254. source: "./media/characters/sheila-wolf/dick.svg"
  23255. }
  23256. },
  23257. muzzle: {
  23258. height: math.unit(0.513, "feet"),
  23259. name: "Muzzle",
  23260. image: {
  23261. source: "./media/characters/sheila-wolf/muzzle.svg"
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Macro",
  23268. height: math.unit(70, "feet"),
  23269. default: true
  23270. },
  23271. ]
  23272. ))
  23273. characterMakers.push(() => makeCharacter(
  23274. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23275. {
  23276. front: {
  23277. height: math.unit(32, "meters"),
  23278. weight: math.unit(300000, "kg"),
  23279. name: "Front",
  23280. image: {
  23281. source: "./media/characters/almor/front.svg",
  23282. extra: 1408 / 1322,
  23283. bottom: 94.6 / 1506.5
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Macro",
  23290. height: math.unit(32, "meters"),
  23291. default: true
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23297. {
  23298. front: {
  23299. height: math.unit(7, "feet"),
  23300. weight: math.unit(200, "lb"),
  23301. name: "Front",
  23302. image: {
  23303. source: "./media/characters/silver/front.svg",
  23304. extra: 472.1 / 450.5,
  23305. bottom: 26.5 / 499.424
  23306. }
  23307. },
  23308. },
  23309. [
  23310. {
  23311. name: "Normal",
  23312. height: math.unit(7, "feet"),
  23313. default: true
  23314. },
  23315. {
  23316. name: "Macro",
  23317. height: math.unit(800, "feet")
  23318. },
  23319. {
  23320. name: "Megamacro",
  23321. height: math.unit(250, "miles")
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23327. {
  23328. front: {
  23329. height: math.unit(6, "feet"),
  23330. weight: math.unit(150, "lb"),
  23331. name: "Front",
  23332. image: {
  23333. source: "./media/characters/pliskin/front.svg",
  23334. extra: 1469 / 1359,
  23335. bottom: 70 / 1540
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "Micro",
  23342. height: math.unit(3, "inches")
  23343. },
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(5 + 11 / 12, "feet"),
  23347. default: true
  23348. },
  23349. {
  23350. name: "Macro",
  23351. height: math.unit(120, "feet")
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23357. {
  23358. front: {
  23359. height: math.unit(6, "feet"),
  23360. weight: math.unit(150, "lb"),
  23361. name: "Front",
  23362. image: {
  23363. source: "./media/characters/sammy/front.svg",
  23364. extra: 1193 / 1089,
  23365. bottom: 30.5 / 1226
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(1700, "feet"),
  23373. default: true
  23374. },
  23375. {
  23376. name: "Examacro",
  23377. height: math.unit(2.5e9, "lightyears")
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23383. {
  23384. front: {
  23385. height: math.unit(21, "meters"),
  23386. weight: math.unit(12, "tonnes"),
  23387. name: "Front",
  23388. image: {
  23389. source: "./media/characters/kuru/front.svg",
  23390. extra: 4301 / 3785,
  23391. bottom: 371.3 / 4691
  23392. }
  23393. },
  23394. },
  23395. [
  23396. {
  23397. name: "Macro",
  23398. height: math.unit(21, "meters"),
  23399. default: true
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(23, "meters"),
  23408. weight: math.unit(12.2, "tonnes"),
  23409. name: "Front",
  23410. image: {
  23411. source: "./media/characters/rakka/front.svg",
  23412. extra: 4670 / 4169,
  23413. bottom: 301 / 4968.7
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Macro",
  23420. height: math.unit(23, "meters"),
  23421. default: true
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(6, "feet"),
  23430. weight: math.unit(150, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/rhys-feline/front.svg",
  23434. extra: 2488 / 2308,
  23435. bottom: 35.67 / 2519.19
  23436. }
  23437. },
  23438. },
  23439. [
  23440. {
  23441. name: "Really Small",
  23442. height: math.unit(1, "nm")
  23443. },
  23444. {
  23445. name: "Micro",
  23446. height: math.unit(4, "inches")
  23447. },
  23448. {
  23449. name: "Normal",
  23450. height: math.unit(4 + 10 / 12, "feet"),
  23451. default: true
  23452. },
  23453. {
  23454. name: "Macro",
  23455. height: math.unit(100, "feet")
  23456. },
  23457. {
  23458. name: "Megamacto",
  23459. height: math.unit(50, "miles")
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23465. {
  23466. side: {
  23467. height: math.unit(30, "feet"),
  23468. weight: math.unit(35000, "kg"),
  23469. name: "Side",
  23470. image: {
  23471. source: "./media/characters/alydar/side.svg",
  23472. extra: 234 / 222,
  23473. bottom: 6.5 / 241
  23474. }
  23475. },
  23476. front: {
  23477. height: math.unit(30, "feet"),
  23478. weight: math.unit(35000, "kg"),
  23479. name: "Front",
  23480. image: {
  23481. source: "./media/characters/alydar/front.svg",
  23482. extra: 223.37 / 210.2,
  23483. bottom: 22.3 / 246.76
  23484. }
  23485. },
  23486. top: {
  23487. height: math.unit(64.54, "feet"),
  23488. weight: math.unit(35000, "kg"),
  23489. name: "Top",
  23490. image: {
  23491. source: "./media/characters/alydar/top.svg"
  23492. }
  23493. },
  23494. anthro: {
  23495. height: math.unit(30, "feet"),
  23496. weight: math.unit(9000, "kg"),
  23497. name: "Anthro",
  23498. image: {
  23499. source: "./media/characters/alydar/anthro.svg",
  23500. extra: 432 / 421,
  23501. bottom: 7.18 / 440
  23502. }
  23503. },
  23504. maw: {
  23505. height: math.unit(11.693, "feet"),
  23506. name: "Maw",
  23507. image: {
  23508. source: "./media/characters/alydar/maw.svg"
  23509. }
  23510. },
  23511. head: {
  23512. height: math.unit(11.693, "feet"),
  23513. name: "Head",
  23514. image: {
  23515. source: "./media/characters/alydar/head.svg"
  23516. }
  23517. },
  23518. headAlt: {
  23519. height: math.unit(12.861, "feet"),
  23520. name: "Head (Alt)",
  23521. image: {
  23522. source: "./media/characters/alydar/head-alt.svg"
  23523. }
  23524. },
  23525. wing: {
  23526. height: math.unit(20.712, "feet"),
  23527. name: "Wing",
  23528. image: {
  23529. source: "./media/characters/alydar/wing.svg"
  23530. }
  23531. },
  23532. wingFeather: {
  23533. height: math.unit(9.662, "feet"),
  23534. name: "Wing Feather",
  23535. image: {
  23536. source: "./media/characters/alydar/wing-feather.svg"
  23537. }
  23538. },
  23539. countourFeather: {
  23540. height: math.unit(4.154, "feet"),
  23541. name: "Contour Feather",
  23542. image: {
  23543. source: "./media/characters/alydar/contour-feather.svg"
  23544. }
  23545. },
  23546. },
  23547. [
  23548. {
  23549. name: "Diplomatic",
  23550. height: math.unit(13, "feet"),
  23551. default: true
  23552. },
  23553. {
  23554. name: "Small",
  23555. height: math.unit(30, "feet")
  23556. },
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(95, "feet"),
  23560. default: true
  23561. },
  23562. {
  23563. name: "Large",
  23564. height: math.unit(285, "feet")
  23565. },
  23566. {
  23567. name: "Incomprehensible",
  23568. height: math.unit(450, "megameters")
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23574. {
  23575. side: {
  23576. height: math.unit(11, "feet"),
  23577. weight: math.unit(1750, "kg"),
  23578. name: "Side",
  23579. image: {
  23580. source: "./media/characters/selicia/side.svg",
  23581. extra: 440 / 396,
  23582. bottom: 24.8 / 465.979
  23583. }
  23584. },
  23585. maw: {
  23586. height: math.unit(4.665, "feet"),
  23587. name: "Maw",
  23588. image: {
  23589. source: "./media/characters/selicia/maw.svg"
  23590. }
  23591. },
  23592. },
  23593. [
  23594. {
  23595. name: "Normal",
  23596. height: math.unit(11, "feet"),
  23597. default: true
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23603. {
  23604. side: {
  23605. height: math.unit(2 + 6 / 12, "feet"),
  23606. weight: math.unit(30, "lb"),
  23607. name: "Side",
  23608. image: {
  23609. source: "./media/characters/layla/side.svg",
  23610. extra: 244 / 188,
  23611. bottom: 18.2 / 262.1
  23612. }
  23613. },
  23614. back: {
  23615. height: math.unit(2 + 6 / 12, "feet"),
  23616. weight: math.unit(30, "lb"),
  23617. name: "Back",
  23618. image: {
  23619. source: "./media/characters/layla/back.svg",
  23620. extra: 308 / 241.5,
  23621. bottom: 8.9 / 316.8
  23622. }
  23623. },
  23624. cumming: {
  23625. height: math.unit(2 + 6 / 12, "feet"),
  23626. weight: math.unit(30, "lb"),
  23627. name: "Cumming",
  23628. image: {
  23629. source: "./media/characters/layla/cumming.svg",
  23630. extra: 342 / 279,
  23631. bottom: 595 / 938
  23632. }
  23633. },
  23634. dickFlaccid: {
  23635. height: math.unit(2.595, "feet"),
  23636. name: "Flaccid Genitals",
  23637. image: {
  23638. source: "./media/characters/layla/dick-flaccid.svg"
  23639. }
  23640. },
  23641. dickErect: {
  23642. height: math.unit(2.359, "feet"),
  23643. name: "Erect Genitals",
  23644. image: {
  23645. source: "./media/characters/layla/dick-erect.svg"
  23646. }
  23647. },
  23648. dragon: {
  23649. height: math.unit(40, "feet"),
  23650. name: "Dragon",
  23651. image: {
  23652. source: "./media/characters/layla/dragon.svg",
  23653. extra: 610/535,
  23654. bottom: 367/977
  23655. }
  23656. },
  23657. taur: {
  23658. height: math.unit(30, "feet"),
  23659. name: "Taur",
  23660. image: {
  23661. source: "./media/characters/layla/taur.svg",
  23662. extra: 1268/1199,
  23663. bottom: 112/1380
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Micro",
  23670. height: math.unit(1, "inch")
  23671. },
  23672. {
  23673. name: "Small",
  23674. height: math.unit(1, "foot")
  23675. },
  23676. {
  23677. name: "Normal",
  23678. height: math.unit(2 + 6 / 12, "feet"),
  23679. default: true
  23680. },
  23681. {
  23682. name: "Macro",
  23683. height: math.unit(200, "feet")
  23684. },
  23685. {
  23686. name: "Megamacro",
  23687. height: math.unit(1000, "miles")
  23688. },
  23689. {
  23690. name: "Planetary",
  23691. height: math.unit(8000, "miles")
  23692. },
  23693. {
  23694. name: "True Layla",
  23695. height: math.unit(200000 * 7, "multiverses")
  23696. },
  23697. ]
  23698. ))
  23699. characterMakers.push(() => makeCharacter(
  23700. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23701. {
  23702. back: {
  23703. height: math.unit(10.5, "feet"),
  23704. weight: math.unit(800, "lb"),
  23705. name: "Back",
  23706. image: {
  23707. source: "./media/characters/knox/back.svg",
  23708. extra: 1486 / 1089,
  23709. bottom: 107 / 1601.4
  23710. }
  23711. },
  23712. side: {
  23713. height: math.unit(10.5, "feet"),
  23714. weight: math.unit(800, "lb"),
  23715. name: "Side",
  23716. image: {
  23717. source: "./media/characters/knox/side.svg",
  23718. extra: 244 / 218,
  23719. bottom: 14 / 260
  23720. }
  23721. },
  23722. },
  23723. [
  23724. {
  23725. name: "Compact",
  23726. height: math.unit(10.5, "feet"),
  23727. default: true
  23728. },
  23729. {
  23730. name: "Dynamax",
  23731. height: math.unit(210, "feet")
  23732. },
  23733. {
  23734. name: "Full Macro",
  23735. height: math.unit(850, "feet")
  23736. },
  23737. ]
  23738. ))
  23739. characterMakers.push(() => makeCharacter(
  23740. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23741. {
  23742. front: {
  23743. height: math.unit(28, "feet"),
  23744. weight: math.unit(10500, "lb"),
  23745. name: "Front",
  23746. image: {
  23747. source: "./media/characters/kayda/front.svg",
  23748. extra: 1536 / 1428,
  23749. bottom: 68.7 / 1603
  23750. }
  23751. },
  23752. back: {
  23753. height: math.unit(28, "feet"),
  23754. weight: math.unit(10500, "lb"),
  23755. name: "Back",
  23756. image: {
  23757. source: "./media/characters/kayda/back.svg",
  23758. extra: 1557 / 1464,
  23759. bottom: 39.5 / 1597.49
  23760. }
  23761. },
  23762. dick: {
  23763. height: math.unit(3.858, "feet"),
  23764. name: "Dick",
  23765. image: {
  23766. source: "./media/characters/kayda/dick.svg"
  23767. }
  23768. },
  23769. },
  23770. [
  23771. {
  23772. name: "Macro",
  23773. height: math.unit(28, "feet"),
  23774. default: true
  23775. },
  23776. ]
  23777. ))
  23778. characterMakers.push(() => makeCharacter(
  23779. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23780. {
  23781. front: {
  23782. height: math.unit(10 + 11 / 12, "feet"),
  23783. weight: math.unit(1400, "lb"),
  23784. name: "Front",
  23785. image: {
  23786. source: "./media/characters/brian/front.svg",
  23787. extra: 737 / 692,
  23788. bottom: 55.4 / 785
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Normal",
  23795. height: math.unit(10 + 11 / 12, "feet"),
  23796. default: true
  23797. },
  23798. ]
  23799. ))
  23800. characterMakers.push(() => makeCharacter(
  23801. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23802. {
  23803. front: {
  23804. height: math.unit(5 + 8 / 12, "feet"),
  23805. weight: math.unit(140, "lb"),
  23806. name: "Front",
  23807. image: {
  23808. source: "./media/characters/khemri/front.svg",
  23809. extra: 4780 / 4059,
  23810. bottom: 80.1 / 4859.25
  23811. }
  23812. },
  23813. },
  23814. [
  23815. {
  23816. name: "Micro",
  23817. height: math.unit(6, "inches")
  23818. },
  23819. {
  23820. name: "Normal",
  23821. height: math.unit(5 + 8 / 12, "feet"),
  23822. default: true
  23823. },
  23824. ]
  23825. ))
  23826. characterMakers.push(() => makeCharacter(
  23827. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23828. {
  23829. front: {
  23830. height: math.unit(13, "feet"),
  23831. weight: math.unit(1700, "lb"),
  23832. name: "Front",
  23833. image: {
  23834. source: "./media/characters/felix-braveheart/front.svg",
  23835. extra: 1222 / 1157,
  23836. bottom: 53.2 / 1280
  23837. }
  23838. },
  23839. back: {
  23840. height: math.unit(13, "feet"),
  23841. weight: math.unit(1700, "lb"),
  23842. name: "Back",
  23843. image: {
  23844. source: "./media/characters/felix-braveheart/back.svg",
  23845. extra: 1277 / 1203,
  23846. bottom: 50.2 / 1327
  23847. }
  23848. },
  23849. feral: {
  23850. height: math.unit(6, "feet"),
  23851. weight: math.unit(400, "lb"),
  23852. name: "Feral",
  23853. image: {
  23854. source: "./media/characters/felix-braveheart/feral.svg",
  23855. extra: 682 / 625,
  23856. bottom: 6.9 / 688
  23857. }
  23858. },
  23859. },
  23860. [
  23861. {
  23862. name: "Normal",
  23863. height: math.unit(13, "feet"),
  23864. default: true
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23870. {
  23871. side: {
  23872. height: math.unit(5 + 11 / 12, "feet"),
  23873. weight: math.unit(1400, "lb"),
  23874. name: "Side",
  23875. image: {
  23876. source: "./media/characters/shadow-blade/side.svg",
  23877. extra: 1726 / 1267,
  23878. bottom: 58.4 / 1785
  23879. }
  23880. },
  23881. },
  23882. [
  23883. {
  23884. name: "Normal",
  23885. height: math.unit(5 + 11 / 12, "feet"),
  23886. default: true
  23887. },
  23888. ]
  23889. ))
  23890. characterMakers.push(() => makeCharacter(
  23891. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23892. {
  23893. front: {
  23894. height: math.unit(1 + 6 / 12, "feet"),
  23895. weight: math.unit(25, "lb"),
  23896. name: "Front",
  23897. image: {
  23898. source: "./media/characters/karla-halldor/front.svg",
  23899. extra: 1459 / 1383,
  23900. bottom: 12 / 1472
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(1 + 6 / 12, "feet"),
  23908. default: true
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(6 + 2 / 12, "feet"),
  23917. weight: math.unit(160, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/ariam/front.svg",
  23921. extra: 714 / 617,
  23922. bottom: 23.4 / 737,
  23923. }
  23924. },
  23925. squatting: {
  23926. height: math.unit(4.1, "feet"),
  23927. weight: math.unit(160, "lb"),
  23928. name: "Squatting",
  23929. image: {
  23930. source: "./media/characters/ariam/squatting.svg",
  23931. extra: 2617 / 2112,
  23932. bottom: 61.2 / 2681,
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(6 + 2 / 12, "feet"),
  23940. default: true
  23941. },
  23942. {
  23943. name: "Normal+",
  23944. height: math.unit(4, "meters")
  23945. },
  23946. {
  23947. name: "Macro",
  23948. height: math.unit(50, "meters")
  23949. },
  23950. {
  23951. name: "Macro+",
  23952. height: math.unit(100, "meters")
  23953. },
  23954. {
  23955. name: "Megamacro",
  23956. height: math.unit(20, "km")
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23962. {
  23963. front: {
  23964. height: math.unit(1.67, "meters"),
  23965. weight: math.unit(140, "lb"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23969. extra: 438 / 410,
  23970. bottom: 0.75 / 439
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Shrunken",
  23977. height: math.unit(7.6, "cm")
  23978. },
  23979. {
  23980. name: "Human Scale",
  23981. height: math.unit(1.67, "meters")
  23982. },
  23983. {
  23984. name: "Wolxi Scale",
  23985. height: math.unit(36.7, "meters"),
  23986. default: true
  23987. },
  23988. ]
  23989. ))
  23990. characterMakers.push(() => makeCharacter(
  23991. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23992. {
  23993. front: {
  23994. height: math.unit(1.73, "meters"),
  23995. weight: math.unit(240, "lb"),
  23996. name: "Front",
  23997. image: {
  23998. source: "./media/characters/izue-two-mothers/front.svg",
  23999. extra: 469 / 437,
  24000. bottom: 1.24 / 470.6
  24001. }
  24002. },
  24003. },
  24004. [
  24005. {
  24006. name: "Shrunken",
  24007. height: math.unit(7.86, "cm")
  24008. },
  24009. {
  24010. name: "Human Scale",
  24011. height: math.unit(1.73, "meters")
  24012. },
  24013. {
  24014. name: "Wolxi Scale",
  24015. height: math.unit(38, "meters"),
  24016. default: true
  24017. },
  24018. ]
  24019. ))
  24020. characterMakers.push(() => makeCharacter(
  24021. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24022. {
  24023. front: {
  24024. height: math.unit(1.55, "meters"),
  24025. weight: math.unit(120, "lb"),
  24026. name: "Front",
  24027. image: {
  24028. source: "./media/characters/teeku-love-shack/front.svg",
  24029. extra: 387 / 362,
  24030. bottom: 1.51 / 388
  24031. }
  24032. },
  24033. },
  24034. [
  24035. {
  24036. name: "Shrunken",
  24037. height: math.unit(7, "cm")
  24038. },
  24039. {
  24040. name: "Human Scale",
  24041. height: math.unit(1.55, "meters")
  24042. },
  24043. {
  24044. name: "Wolxi Scale",
  24045. height: math.unit(34.1, "meters"),
  24046. default: true
  24047. },
  24048. ]
  24049. ))
  24050. characterMakers.push(() => makeCharacter(
  24051. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24052. {
  24053. front: {
  24054. height: math.unit(1.83, "meters"),
  24055. weight: math.unit(135, "lb"),
  24056. name: "Front",
  24057. image: {
  24058. source: "./media/characters/dejma-the-red/front.svg",
  24059. extra: 480 / 458,
  24060. bottom: 1.8 / 482
  24061. }
  24062. },
  24063. },
  24064. [
  24065. {
  24066. name: "Shrunken",
  24067. height: math.unit(8.3, "cm")
  24068. },
  24069. {
  24070. name: "Human Scale",
  24071. height: math.unit(1.83, "meters")
  24072. },
  24073. {
  24074. name: "Wolxi Scale",
  24075. height: math.unit(40, "meters"),
  24076. default: true
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24082. {
  24083. front: {
  24084. height: math.unit(1.78, "meters"),
  24085. weight: math.unit(65, "kg"),
  24086. name: "Front",
  24087. image: {
  24088. source: "./media/characters/aki/front.svg",
  24089. extra: 452 / 415
  24090. }
  24091. },
  24092. frontNsfw: {
  24093. height: math.unit(1.78, "meters"),
  24094. weight: math.unit(65, "kg"),
  24095. name: "Front (NSFW)",
  24096. image: {
  24097. source: "./media/characters/aki/front-nsfw.svg",
  24098. extra: 452 / 415
  24099. }
  24100. },
  24101. back: {
  24102. height: math.unit(1.78, "meters"),
  24103. weight: math.unit(65, "kg"),
  24104. name: "Back",
  24105. image: {
  24106. source: "./media/characters/aki/back.svg",
  24107. extra: 452 / 415
  24108. }
  24109. },
  24110. rump: {
  24111. height: math.unit(2.05, "feet"),
  24112. name: "Rump",
  24113. image: {
  24114. source: "./media/characters/aki/rump.svg"
  24115. }
  24116. },
  24117. dick: {
  24118. height: math.unit(0.95, "feet"),
  24119. name: "Dick",
  24120. image: {
  24121. source: "./media/characters/aki/dick.svg"
  24122. }
  24123. },
  24124. },
  24125. [
  24126. {
  24127. name: "Micro",
  24128. height: math.unit(15, "cm")
  24129. },
  24130. {
  24131. name: "Normal",
  24132. height: math.unit(178, "cm"),
  24133. default: true
  24134. },
  24135. {
  24136. name: "Macro",
  24137. height: math.unit(214, "m")
  24138. },
  24139. {
  24140. name: "Macro+",
  24141. height: math.unit(534, "m")
  24142. },
  24143. ]
  24144. ))
  24145. characterMakers.push(() => makeCharacter(
  24146. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24147. {
  24148. front: {
  24149. height: math.unit(5 + 5 / 12, "feet"),
  24150. weight: math.unit(120, "lb"),
  24151. name: "Front",
  24152. image: {
  24153. source: "./media/characters/ari/front.svg",
  24154. extra: 714.5 / 682,
  24155. bottom: 8 / 722.5
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Normal",
  24162. height: math.unit(5 + 5 / 12, "feet")
  24163. },
  24164. {
  24165. name: "Macro",
  24166. height: math.unit(100, "feet"),
  24167. default: true
  24168. },
  24169. {
  24170. name: "Megamacro",
  24171. height: math.unit(100, "miles")
  24172. },
  24173. {
  24174. name: "Gigamacro",
  24175. height: math.unit(80000, "miles")
  24176. },
  24177. ]
  24178. ))
  24179. characterMakers.push(() => makeCharacter(
  24180. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24181. {
  24182. side: {
  24183. height: math.unit(9, "feet"),
  24184. weight: math.unit(400, "kg"),
  24185. name: "Side",
  24186. image: {
  24187. source: "./media/characters/bolt/side.svg",
  24188. extra: 1126 / 896,
  24189. bottom: 60 / 1187.3,
  24190. }
  24191. },
  24192. },
  24193. [
  24194. {
  24195. name: "Micro",
  24196. height: math.unit(5, "inches")
  24197. },
  24198. {
  24199. name: "Normal",
  24200. height: math.unit(9, "feet"),
  24201. default: true
  24202. },
  24203. {
  24204. name: "Macro",
  24205. height: math.unit(700, "feet")
  24206. },
  24207. {
  24208. name: "Max Size",
  24209. height: math.unit(1.52e22, "yottameters")
  24210. },
  24211. ]
  24212. ))
  24213. characterMakers.push(() => makeCharacter(
  24214. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24215. {
  24216. front: {
  24217. height: math.unit(4.53, "meters"),
  24218. weight: math.unit(3, "tons"),
  24219. name: "Front",
  24220. image: {
  24221. source: "./media/characters/draekon-sylviar/front.svg",
  24222. extra: 1228 / 1068,
  24223. bottom: 41 / 1270
  24224. }
  24225. },
  24226. tail: {
  24227. height: math.unit(1.772, "meter"),
  24228. name: "Tail",
  24229. image: {
  24230. source: "./media/characters/draekon-sylviar/tail.svg"
  24231. }
  24232. },
  24233. head: {
  24234. height: math.unit(1.331, "meter"),
  24235. name: "Head",
  24236. image: {
  24237. source: "./media/characters/draekon-sylviar/head.svg"
  24238. }
  24239. },
  24240. hand: {
  24241. height: math.unit(0.564, "meter"),
  24242. name: "Hand",
  24243. image: {
  24244. source: "./media/characters/draekon-sylviar/hand.svg"
  24245. }
  24246. },
  24247. foot: {
  24248. height: math.unit(0.621, "meter"),
  24249. name: "Foot",
  24250. image: {
  24251. source: "./media/characters/draekon-sylviar/foot.svg",
  24252. bottom: 32 / 324
  24253. }
  24254. },
  24255. dick: {
  24256. height: math.unit(61, "cm"),
  24257. name: "Dick",
  24258. image: {
  24259. source: "./media/characters/draekon-sylviar/dick.svg"
  24260. }
  24261. },
  24262. dickseparated: {
  24263. height: math.unit(61, "cm"),
  24264. name: "Dick-separated",
  24265. image: {
  24266. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24267. }
  24268. },
  24269. },
  24270. [
  24271. {
  24272. name: "Small",
  24273. height: math.unit(4.53 / 2, "meters"),
  24274. default: true
  24275. },
  24276. {
  24277. name: "Normal",
  24278. height: math.unit(4.53, "meters"),
  24279. default: true
  24280. },
  24281. {
  24282. name: "Large",
  24283. height: math.unit(4.53 * 2, "meters"),
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24289. {
  24290. front: {
  24291. height: math.unit(6 + 2 / 12, "feet"),
  24292. weight: math.unit(180, "lb"),
  24293. name: "Front",
  24294. image: {
  24295. source: "./media/characters/brawler/front.svg",
  24296. extra: 3301 / 3027,
  24297. bottom: 138 / 3439
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Normal",
  24304. height: math.unit(6 + 2 / 12, "feet"),
  24305. default: true
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(11, "feet"),
  24314. weight: math.unit(1000, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/alex/front.svg",
  24318. bottom: 44.5 / 620
  24319. }
  24320. },
  24321. },
  24322. [
  24323. {
  24324. name: "Micro",
  24325. height: math.unit(5, "inches")
  24326. },
  24327. {
  24328. name: "Normal",
  24329. height: math.unit(11, "feet"),
  24330. default: true
  24331. },
  24332. {
  24333. name: "Macro",
  24334. height: math.unit(9.5e9, "feet")
  24335. },
  24336. {
  24337. name: "Max Size",
  24338. height: math.unit(1.4e283, "yottameters")
  24339. },
  24340. ]
  24341. ))
  24342. characterMakers.push(() => makeCharacter(
  24343. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24344. {
  24345. female: {
  24346. height: math.unit(29.9, "m"),
  24347. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24348. name: "Female",
  24349. image: {
  24350. source: "./media/characters/zenari/female.svg",
  24351. extra: 3281.6 / 3217,
  24352. bottom: 72.2 / 3353
  24353. }
  24354. },
  24355. male: {
  24356. height: math.unit(27.7, "m"),
  24357. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24358. name: "Male",
  24359. image: {
  24360. source: "./media/characters/zenari/male.svg",
  24361. extra: 3008 / 2991,
  24362. bottom: 54.6 / 3069
  24363. }
  24364. },
  24365. },
  24366. [
  24367. {
  24368. name: "Macro",
  24369. height: math.unit(29.7, "meters"),
  24370. default: true
  24371. },
  24372. ]
  24373. ))
  24374. characterMakers.push(() => makeCharacter(
  24375. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24376. {
  24377. female: {
  24378. height: math.unit(23.8, "m"),
  24379. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24380. name: "Female",
  24381. image: {
  24382. source: "./media/characters/mactarian/female.svg",
  24383. extra: 2662 / 2569,
  24384. bottom: 73 / 2736
  24385. }
  24386. },
  24387. male: {
  24388. height: math.unit(23.8, "m"),
  24389. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24390. name: "Male",
  24391. image: {
  24392. source: "./media/characters/mactarian/male.svg",
  24393. extra: 2673 / 2600,
  24394. bottom: 76 / 2750
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(23.8, "meters"),
  24402. default: true
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24408. {
  24409. female: {
  24410. height: math.unit(19.3, "m"),
  24411. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24412. name: "Female",
  24413. image: {
  24414. source: "./media/characters/umok/female.svg",
  24415. extra: 2186 / 2078,
  24416. bottom: 87 / 2277
  24417. }
  24418. },
  24419. male: {
  24420. height: math.unit(19.5, "m"),
  24421. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24422. name: "Male",
  24423. image: {
  24424. source: "./media/characters/umok/male.svg",
  24425. extra: 2233 / 2140,
  24426. bottom: 24.4 / 2258
  24427. }
  24428. },
  24429. },
  24430. [
  24431. {
  24432. name: "Macro",
  24433. height: math.unit(19.3, "meters"),
  24434. default: true
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24440. {
  24441. female: {
  24442. height: math.unit(26.15, "m"),
  24443. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24444. name: "Female",
  24445. image: {
  24446. source: "./media/characters/joraxian/female.svg",
  24447. extra: 2912 / 2824,
  24448. bottom: 36 / 2956
  24449. }
  24450. },
  24451. male: {
  24452. height: math.unit(25.4, "m"),
  24453. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24454. name: "Male",
  24455. image: {
  24456. source: "./media/characters/joraxian/male.svg",
  24457. extra: 2877 / 2721,
  24458. bottom: 82 / 2967
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Macro",
  24465. height: math.unit(26.15, "meters"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24472. {
  24473. female: {
  24474. height: math.unit(21.6, "m"),
  24475. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24476. name: "Female",
  24477. image: {
  24478. source: "./media/characters/sthara/female.svg",
  24479. extra: 2516 / 2347,
  24480. bottom: 21.5 / 2537
  24481. }
  24482. },
  24483. male: {
  24484. height: math.unit(24, "m"),
  24485. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24486. name: "Male",
  24487. image: {
  24488. source: "./media/characters/sthara/male.svg",
  24489. extra: 2732 / 2607,
  24490. bottom: 23 / 2732
  24491. }
  24492. },
  24493. },
  24494. [
  24495. {
  24496. name: "Macro",
  24497. height: math.unit(21.6, "meters"),
  24498. default: true
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24504. {
  24505. front: {
  24506. height: math.unit(6 + 4 / 12, "feet"),
  24507. weight: math.unit(175, "lb"),
  24508. name: "Front",
  24509. image: {
  24510. source: "./media/characters/luka-bryzant/front.svg",
  24511. extra: 311 / 289,
  24512. bottom: 4 / 315
  24513. }
  24514. },
  24515. back: {
  24516. height: math.unit(6 + 4 / 12, "feet"),
  24517. weight: math.unit(175, "lb"),
  24518. name: "Back",
  24519. image: {
  24520. source: "./media/characters/luka-bryzant/back.svg",
  24521. extra: 311 / 289,
  24522. bottom: 3.8 / 313.7
  24523. }
  24524. },
  24525. },
  24526. [
  24527. {
  24528. name: "Micro",
  24529. height: math.unit(10, "inches")
  24530. },
  24531. {
  24532. name: "Normal",
  24533. height: math.unit(6 + 4 / 12, "feet"),
  24534. default: true
  24535. },
  24536. {
  24537. name: "Large",
  24538. height: math.unit(12, "feet")
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24544. {
  24545. front: {
  24546. height: math.unit(5 + 7 / 12, "feet"),
  24547. weight: math.unit(185, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/aman-aquila/front.svg",
  24551. extra: 1013 / 976,
  24552. bottom: 45.6 / 1057
  24553. }
  24554. },
  24555. side: {
  24556. height: math.unit(5 + 7 / 12, "feet"),
  24557. weight: math.unit(185, "lb"),
  24558. name: "Side",
  24559. image: {
  24560. source: "./media/characters/aman-aquila/side.svg",
  24561. extra: 1054 / 1011,
  24562. bottom: 15 / 1070
  24563. }
  24564. },
  24565. back: {
  24566. height: math.unit(5 + 7 / 12, "feet"),
  24567. weight: math.unit(185, "lb"),
  24568. name: "Back",
  24569. image: {
  24570. source: "./media/characters/aman-aquila/back.svg",
  24571. extra: 1026 / 970,
  24572. bottom: 12 / 1039
  24573. }
  24574. },
  24575. head: {
  24576. height: math.unit(1.211, "feet"),
  24577. name: "Head",
  24578. image: {
  24579. source: "./media/characters/aman-aquila/head.svg",
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Minimicro",
  24586. height: math.unit(0.057, "inches")
  24587. },
  24588. {
  24589. name: "Micro",
  24590. height: math.unit(7, "inches")
  24591. },
  24592. {
  24593. name: "Mini",
  24594. height: math.unit(3 + 7 / 12, "feet")
  24595. },
  24596. {
  24597. name: "Normal",
  24598. height: math.unit(5 + 7 / 12, "feet"),
  24599. default: true
  24600. },
  24601. {
  24602. name: "Macro",
  24603. height: math.unit(157 + 7 / 12, "feet")
  24604. },
  24605. {
  24606. name: "Megamacro",
  24607. height: math.unit(1557 + 7 / 12, "feet")
  24608. },
  24609. {
  24610. name: "Gigamacro",
  24611. height: math.unit(15557 + 7 / 12, "feet")
  24612. },
  24613. ]
  24614. ))
  24615. characterMakers.push(() => makeCharacter(
  24616. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24617. {
  24618. front: {
  24619. height: math.unit(3 + 2 / 12, "inches"),
  24620. weight: math.unit(0.3, "ounces"),
  24621. name: "Front",
  24622. image: {
  24623. source: "./media/characters/hiphae/front.svg",
  24624. extra: 1931 / 1683,
  24625. bottom: 24 / 1955
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Normal",
  24632. height: math.unit(3 + 1 / 2, "inches"),
  24633. default: true
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(5 + 10 / 12, "feet"),
  24642. weight: math.unit(165, "lb"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/nicky/front.svg",
  24646. extra: 3144 / 2886,
  24647. bottom: 45.6 / 3192
  24648. }
  24649. },
  24650. back: {
  24651. height: math.unit(5 + 10 / 12, "feet"),
  24652. weight: math.unit(165, "lb"),
  24653. name: "Back",
  24654. image: {
  24655. source: "./media/characters/nicky/back.svg",
  24656. extra: 3055 / 2804,
  24657. bottom: 28.4 / 3087
  24658. }
  24659. },
  24660. frontclothed: {
  24661. height: math.unit(5 + 10 / 12, "feet"),
  24662. weight: math.unit(165, "lb"),
  24663. name: "Front-clothed",
  24664. image: {
  24665. source: "./media/characters/nicky/front-clothed.svg",
  24666. extra: 3184.9 / 2926.9,
  24667. bottom: 86.5 / 3239.9
  24668. }
  24669. },
  24670. foot: {
  24671. height: math.unit(1.16, "feet"),
  24672. name: "Foot",
  24673. image: {
  24674. source: "./media/characters/nicky/foot.svg"
  24675. }
  24676. },
  24677. feet: {
  24678. height: math.unit(1.34, "feet"),
  24679. name: "Feet",
  24680. image: {
  24681. source: "./media/characters/nicky/feet.svg"
  24682. }
  24683. },
  24684. maw: {
  24685. height: math.unit(0.9, "feet"),
  24686. name: "Maw",
  24687. image: {
  24688. source: "./media/characters/nicky/maw.svg"
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Normal",
  24695. height: math.unit(5 + 10 / 12, "feet"),
  24696. default: true
  24697. },
  24698. {
  24699. name: "Macro",
  24700. height: math.unit(60, "feet")
  24701. },
  24702. {
  24703. name: "Megamacro",
  24704. height: math.unit(1, "mile")
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24710. {
  24711. side: {
  24712. height: math.unit(10, "feet"),
  24713. weight: math.unit(600, "lb"),
  24714. name: "Side",
  24715. image: {
  24716. source: "./media/characters/blair/side.svg",
  24717. bottom: 16.6 / 475,
  24718. extra: 458 / 431
  24719. }
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Micro",
  24725. height: math.unit(8, "inches")
  24726. },
  24727. {
  24728. name: "Normal",
  24729. height: math.unit(10, "feet"),
  24730. default: true
  24731. },
  24732. {
  24733. name: "Macro",
  24734. height: math.unit(180, "feet")
  24735. },
  24736. ]
  24737. ))
  24738. characterMakers.push(() => makeCharacter(
  24739. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24740. {
  24741. front: {
  24742. height: math.unit(5 + 4 / 12, "feet"),
  24743. weight: math.unit(125, "lb"),
  24744. name: "Front",
  24745. image: {
  24746. source: "./media/characters/fisher/front.svg",
  24747. extra: 444 / 390,
  24748. bottom: 2 / 444.8
  24749. }
  24750. },
  24751. },
  24752. [
  24753. {
  24754. name: "Micro",
  24755. height: math.unit(4, "inches")
  24756. },
  24757. {
  24758. name: "Normal",
  24759. height: math.unit(5 + 4 / 12, "feet"),
  24760. default: true
  24761. },
  24762. {
  24763. name: "Macro",
  24764. height: math.unit(100, "feet")
  24765. },
  24766. ]
  24767. ))
  24768. characterMakers.push(() => makeCharacter(
  24769. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24770. {
  24771. front: {
  24772. height: math.unit(6.71, "feet"),
  24773. weight: math.unit(200, "lb"),
  24774. capacity: math.unit(1000000, "people"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/gliss/front.svg",
  24778. extra: 2347 / 2231,
  24779. bottom: 113 / 2462
  24780. }
  24781. },
  24782. hammerspaceSize: {
  24783. height: math.unit(6.71 * 717, "feet"),
  24784. weight: math.unit(200, "lb"),
  24785. capacity: math.unit(1000000, "people"),
  24786. name: "Hammerspace Size",
  24787. image: {
  24788. source: "./media/characters/gliss/front.svg",
  24789. extra: 2347 / 2231,
  24790. bottom: 113 / 2462
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Normal",
  24797. height: math.unit(6.71, "feet"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24804. {
  24805. side: {
  24806. height: math.unit(1.44, "m"),
  24807. weight: math.unit(80, "kg"),
  24808. name: "Side",
  24809. image: {
  24810. source: "./media/characters/dune-anderson/side.svg",
  24811. bottom: 49 / 1426
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Wolf-sized",
  24818. height: math.unit(1.44, "meters")
  24819. },
  24820. {
  24821. name: "Normal",
  24822. height: math.unit(5.05, "meters"),
  24823. default: true
  24824. },
  24825. {
  24826. name: "Big",
  24827. height: math.unit(14.4, "meters")
  24828. },
  24829. {
  24830. name: "Huge",
  24831. height: math.unit(144, "meters")
  24832. },
  24833. ]
  24834. ))
  24835. characterMakers.push(() => makeCharacter(
  24836. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24837. {
  24838. front: {
  24839. height: math.unit(7, "feet"),
  24840. weight: math.unit(425, "lb"),
  24841. name: "Front",
  24842. image: {
  24843. source: "./media/characters/hind/front.svg",
  24844. extra: 2091 / 1860,
  24845. bottom: 129 / 2220
  24846. }
  24847. },
  24848. back: {
  24849. height: math.unit(7, "feet"),
  24850. weight: math.unit(425, "lb"),
  24851. name: "Back",
  24852. image: {
  24853. source: "./media/characters/hind/back.svg",
  24854. extra: 2091 / 1860,
  24855. bottom: 24.6 / 2309
  24856. }
  24857. },
  24858. tail: {
  24859. height: math.unit(2.8, "feet"),
  24860. name: "Tail",
  24861. image: {
  24862. source: "./media/characters/hind/tail.svg"
  24863. }
  24864. },
  24865. head: {
  24866. height: math.unit(2.55, "feet"),
  24867. name: "Head",
  24868. image: {
  24869. source: "./media/characters/hind/head.svg"
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "XS",
  24876. height: math.unit(0.7, "feet")
  24877. },
  24878. {
  24879. name: "Normal",
  24880. height: math.unit(7, "feet"),
  24881. default: true
  24882. },
  24883. {
  24884. name: "XL",
  24885. height: math.unit(70, "feet")
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24891. {
  24892. front: {
  24893. height: math.unit(6, "feet"),
  24894. weight: math.unit(150, "lb"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/tharquench-sizestealer/front.svg",
  24898. extra: 2318 / 2063,
  24899. bottom: 93.4 / 2410
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Nano",
  24906. height: math.unit(1, "mm")
  24907. },
  24908. {
  24909. name: "Micro",
  24910. height: math.unit(1, "cm")
  24911. },
  24912. {
  24913. name: "Normal",
  24914. height: math.unit(2.1, "meters"),
  24915. default: true
  24916. },
  24917. ]
  24918. ))
  24919. characterMakers.push(() => makeCharacter(
  24920. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24921. {
  24922. front: {
  24923. height: math.unit(7 + 5 / 12, "feet"),
  24924. weight: math.unit(357, "lb"),
  24925. name: "Front",
  24926. image: {
  24927. source: "./media/characters/solex-draconov/front.svg",
  24928. extra: 1993 / 1865,
  24929. bottom: 117 / 2111
  24930. }
  24931. },
  24932. },
  24933. [
  24934. {
  24935. name: "Natural Height",
  24936. height: math.unit(7 + 5 / 12, "feet"),
  24937. default: true
  24938. },
  24939. {
  24940. name: "Macro",
  24941. height: math.unit(350, "feet")
  24942. },
  24943. {
  24944. name: "Macro+",
  24945. height: math.unit(1000, "feet")
  24946. },
  24947. {
  24948. name: "Megamacro",
  24949. height: math.unit(20, "km")
  24950. },
  24951. {
  24952. name: "Megamacro+",
  24953. height: math.unit(1000, "km")
  24954. },
  24955. {
  24956. name: "Gigamacro",
  24957. height: math.unit(2.5, "Gm")
  24958. },
  24959. {
  24960. name: "Teramacro",
  24961. height: math.unit(15, "Tm")
  24962. },
  24963. {
  24964. name: "Galactic",
  24965. height: math.unit(30, "Zm")
  24966. },
  24967. {
  24968. name: "Universal",
  24969. height: math.unit(21000, "Ym")
  24970. },
  24971. {
  24972. name: "Omniversal",
  24973. height: math.unit(9.861e50, "Ym")
  24974. },
  24975. {
  24976. name: "Existential",
  24977. height: math.unit(1e300, "meters")
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24983. {
  24984. side: {
  24985. height: math.unit(25, "feet"),
  24986. weight: math.unit(90000, "lb"),
  24987. name: "Side",
  24988. image: {
  24989. source: "./media/characters/mandarax/side.svg",
  24990. extra: 614 / 332,
  24991. bottom: 55 / 630
  24992. }
  24993. },
  24994. head: {
  24995. height: math.unit(11.4, "feet"),
  24996. name: "Head",
  24997. image: {
  24998. source: "./media/characters/mandarax/head.svg"
  24999. }
  25000. },
  25001. belly: {
  25002. height: math.unit(33, "feet"),
  25003. name: "Belly",
  25004. capacity: math.unit(500, "people"),
  25005. image: {
  25006. source: "./media/characters/mandarax/belly.svg"
  25007. }
  25008. },
  25009. dick: {
  25010. height: math.unit(8.46, "feet"),
  25011. name: "Dick",
  25012. image: {
  25013. source: "./media/characters/mandarax/dick.svg"
  25014. }
  25015. },
  25016. top: {
  25017. height: math.unit(28, "meters"),
  25018. name: "Top",
  25019. image: {
  25020. source: "./media/characters/mandarax/top.svg"
  25021. }
  25022. },
  25023. },
  25024. [
  25025. {
  25026. name: "Normal",
  25027. height: math.unit(25, "feet"),
  25028. default: true
  25029. },
  25030. ]
  25031. ))
  25032. characterMakers.push(() => makeCharacter(
  25033. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25034. {
  25035. front: {
  25036. height: math.unit(5, "feet"),
  25037. weight: math.unit(90, "lb"),
  25038. name: "Front",
  25039. image: {
  25040. source: "./media/characters/pixil/front.svg",
  25041. extra: 2000 / 1618,
  25042. bottom: 12.3 / 2011
  25043. }
  25044. },
  25045. },
  25046. [
  25047. {
  25048. name: "Normal",
  25049. height: math.unit(5, "feet"),
  25050. default: true
  25051. },
  25052. {
  25053. name: "Megamacro",
  25054. height: math.unit(10, "miles"),
  25055. },
  25056. ]
  25057. ))
  25058. characterMakers.push(() => makeCharacter(
  25059. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25060. {
  25061. front: {
  25062. height: math.unit(7 + 2 / 12, "feet"),
  25063. weight: math.unit(200, "lb"),
  25064. name: "Front",
  25065. image: {
  25066. source: "./media/characters/angel/front.svg",
  25067. extra: 1830 / 1737,
  25068. bottom: 22.6 / 1854,
  25069. }
  25070. },
  25071. },
  25072. [
  25073. {
  25074. name: "Normal",
  25075. height: math.unit(7 + 2 / 12, "feet"),
  25076. default: true
  25077. },
  25078. {
  25079. name: "Macro",
  25080. height: math.unit(1000, "feet")
  25081. },
  25082. {
  25083. name: "Megamacro",
  25084. height: math.unit(2, "miles")
  25085. },
  25086. {
  25087. name: "Gigamacro",
  25088. height: math.unit(20, "earths")
  25089. },
  25090. ]
  25091. ))
  25092. characterMakers.push(() => makeCharacter(
  25093. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25094. {
  25095. front: {
  25096. height: math.unit(5, "feet"),
  25097. weight: math.unit(180, "lb"),
  25098. name: "Front",
  25099. image: {
  25100. source: "./media/characters/mekana/front.svg",
  25101. extra: 1671 / 1605,
  25102. bottom: 3.5 / 1691
  25103. }
  25104. },
  25105. side: {
  25106. height: math.unit(5, "feet"),
  25107. weight: math.unit(180, "lb"),
  25108. name: "Side",
  25109. image: {
  25110. source: "./media/characters/mekana/side.svg",
  25111. extra: 1671 / 1605,
  25112. bottom: 3.5 / 1691
  25113. }
  25114. },
  25115. back: {
  25116. height: math.unit(5, "feet"),
  25117. weight: math.unit(180, "lb"),
  25118. name: "Back",
  25119. image: {
  25120. source: "./media/characters/mekana/back.svg",
  25121. extra: 1671 / 1605,
  25122. bottom: 3.5 / 1691
  25123. }
  25124. },
  25125. },
  25126. [
  25127. {
  25128. name: "Normal",
  25129. height: math.unit(5, "feet"),
  25130. default: true
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25136. {
  25137. front: {
  25138. height: math.unit(4 + 6 / 12, "feet"),
  25139. weight: math.unit(80, "lb"),
  25140. name: "Front",
  25141. image: {
  25142. source: "./media/characters/pixie/front.svg",
  25143. extra: 1924 / 1825,
  25144. bottom: 22.4 / 1946
  25145. }
  25146. },
  25147. },
  25148. [
  25149. {
  25150. name: "Normal",
  25151. height: math.unit(4 + 6 / 12, "feet"),
  25152. default: true
  25153. },
  25154. {
  25155. name: "Macro",
  25156. height: math.unit(40, "feet")
  25157. },
  25158. ]
  25159. ))
  25160. characterMakers.push(() => makeCharacter(
  25161. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25162. {
  25163. front: {
  25164. height: math.unit(2.1, "meters"),
  25165. weight: math.unit(200, "lb"),
  25166. name: "Front",
  25167. image: {
  25168. source: "./media/characters/the-lascivious/front.svg",
  25169. extra: 1 / 0.893,
  25170. bottom: 3.5 / 573.7
  25171. }
  25172. },
  25173. },
  25174. [
  25175. {
  25176. name: "Human Scale",
  25177. height: math.unit(2.1, "meters")
  25178. },
  25179. {
  25180. name: "Wolxi Scale",
  25181. height: math.unit(46.2, "m"),
  25182. default: true
  25183. },
  25184. {
  25185. name: "Boinker of Buildings",
  25186. height: math.unit(10, "km")
  25187. },
  25188. {
  25189. name: "Shagger of Skyscrapers",
  25190. height: math.unit(40, "km")
  25191. },
  25192. {
  25193. name: "Banger of Boroughs",
  25194. height: math.unit(4000, "km")
  25195. },
  25196. {
  25197. name: "Screwer of States",
  25198. height: math.unit(100000, "km")
  25199. },
  25200. {
  25201. name: "Pounder of Planets",
  25202. height: math.unit(2000000, "km")
  25203. },
  25204. ]
  25205. ))
  25206. characterMakers.push(() => makeCharacter(
  25207. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25208. {
  25209. front: {
  25210. height: math.unit(6, "feet"),
  25211. weight: math.unit(150, "lb"),
  25212. name: "Front",
  25213. image: {
  25214. source: "./media/characters/aj/front.svg",
  25215. extra: 2039 / 1562,
  25216. bottom: 40 / 2079
  25217. }
  25218. },
  25219. },
  25220. [
  25221. {
  25222. name: "Normal",
  25223. height: math.unit(11 + 6 / 12, "feet"),
  25224. default: true
  25225. },
  25226. {
  25227. name: "Megamacro",
  25228. height: math.unit(60, "megameters")
  25229. },
  25230. ]
  25231. ))
  25232. characterMakers.push(() => makeCharacter(
  25233. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25234. {
  25235. side: {
  25236. height: math.unit(31 + 8 / 12, "feet"),
  25237. weight: math.unit(75000, "kg"),
  25238. name: "Side",
  25239. image: {
  25240. source: "./media/characters/koros/side.svg",
  25241. extra: 1442 / 1297,
  25242. bottom: 122.7 / 1562
  25243. }
  25244. },
  25245. dicksKingsCrown: {
  25246. height: math.unit(6, "feet"),
  25247. name: "Dicks (King's Crown)",
  25248. image: {
  25249. source: "./media/characters/koros/dicks-kings-crown.svg"
  25250. }
  25251. },
  25252. dicksTailSet: {
  25253. height: math.unit(3, "feet"),
  25254. name: "Dicks (Tail Set)",
  25255. image: {
  25256. source: "./media/characters/koros/dicks-tail-set.svg"
  25257. }
  25258. },
  25259. dickCumming: {
  25260. height: math.unit(7.98, "feet"),
  25261. name: "Dick (Cumming)",
  25262. image: {
  25263. source: "./media/characters/koros/dick-cumming.svg"
  25264. }
  25265. },
  25266. dicksBack: {
  25267. height: math.unit(5.9, "feet"),
  25268. name: "Dicks (Back)",
  25269. image: {
  25270. source: "./media/characters/koros/dicks-back.svg"
  25271. }
  25272. },
  25273. dicksFront: {
  25274. height: math.unit(3.72, "feet"),
  25275. name: "Dicks (Front)",
  25276. image: {
  25277. source: "./media/characters/koros/dicks-front.svg"
  25278. }
  25279. },
  25280. dicksPeeking: {
  25281. height: math.unit(3.0, "feet"),
  25282. name: "Dicks (Peeking)",
  25283. image: {
  25284. source: "./media/characters/koros/dicks-peeking.svg"
  25285. }
  25286. },
  25287. eye: {
  25288. height: math.unit(1.7, "feet"),
  25289. name: "Eye",
  25290. image: {
  25291. source: "./media/characters/koros/eye.svg"
  25292. }
  25293. },
  25294. headFront: {
  25295. height: math.unit(11.69, "feet"),
  25296. name: "Head (Front)",
  25297. image: {
  25298. source: "./media/characters/koros/head-front.svg"
  25299. }
  25300. },
  25301. headSide: {
  25302. height: math.unit(14, "feet"),
  25303. name: "Head (Side)",
  25304. image: {
  25305. source: "./media/characters/koros/head-side.svg"
  25306. }
  25307. },
  25308. leg: {
  25309. height: math.unit(17, "feet"),
  25310. name: "Leg",
  25311. image: {
  25312. source: "./media/characters/koros/leg.svg"
  25313. }
  25314. },
  25315. mawSide: {
  25316. height: math.unit(12.8, "feet"),
  25317. name: "Maw (Side)",
  25318. image: {
  25319. source: "./media/characters/koros/maw-side.svg"
  25320. }
  25321. },
  25322. mawSpitting: {
  25323. height: math.unit(17, "feet"),
  25324. name: "Maw (Spitting)",
  25325. image: {
  25326. source: "./media/characters/koros/maw-spitting.svg"
  25327. }
  25328. },
  25329. slit: {
  25330. height: math.unit(2.8, "feet"),
  25331. name: "Slit",
  25332. image: {
  25333. source: "./media/characters/koros/slit.svg"
  25334. }
  25335. },
  25336. stomach: {
  25337. height: math.unit(6.8, "feet"),
  25338. capacity: math.unit(20, "people"),
  25339. name: "Stomach",
  25340. image: {
  25341. source: "./media/characters/koros/stomach.svg"
  25342. }
  25343. },
  25344. wingspanBottom: {
  25345. height: math.unit(114, "feet"),
  25346. name: "Wingspan (Bottom)",
  25347. image: {
  25348. source: "./media/characters/koros/wingspan-bottom.svg"
  25349. }
  25350. },
  25351. wingspanTop: {
  25352. height: math.unit(104, "feet"),
  25353. name: "Wingspan (Top)",
  25354. image: {
  25355. source: "./media/characters/koros/wingspan-top.svg"
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(31 + 8 / 12, "feet"),
  25363. default: true
  25364. },
  25365. ]
  25366. ))
  25367. characterMakers.push(() => makeCharacter(
  25368. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25369. {
  25370. front: {
  25371. height: math.unit(18 + 5 / 12, "feet"),
  25372. weight: math.unit(3750, "kg"),
  25373. name: "Front",
  25374. image: {
  25375. source: "./media/characters/vexx/front.svg",
  25376. extra: 426 / 396,
  25377. bottom: 31.5 / 458
  25378. }
  25379. },
  25380. maw: {
  25381. height: math.unit(6, "feet"),
  25382. name: "Maw",
  25383. image: {
  25384. source: "./media/characters/vexx/maw.svg"
  25385. }
  25386. },
  25387. },
  25388. [
  25389. {
  25390. name: "Normal",
  25391. height: math.unit(18 + 5 / 12, "feet"),
  25392. default: true
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25398. {
  25399. front: {
  25400. height: math.unit(17 + 6 / 12, "feet"),
  25401. weight: math.unit(150, "lb"),
  25402. name: "Front",
  25403. image: {
  25404. source: "./media/characters/baadra/front.svg",
  25405. extra: 3137 / 2890,
  25406. bottom: 168.4 / 3305
  25407. }
  25408. },
  25409. back: {
  25410. height: math.unit(17 + 6 / 12, "feet"),
  25411. weight: math.unit(150, "lb"),
  25412. name: "Back",
  25413. image: {
  25414. source: "./media/characters/baadra/back.svg",
  25415. extra: 3142 / 2890,
  25416. bottom: 220 / 3371
  25417. }
  25418. },
  25419. head: {
  25420. height: math.unit(5.45, "feet"),
  25421. name: "Head",
  25422. image: {
  25423. source: "./media/characters/baadra/head.svg"
  25424. }
  25425. },
  25426. headAngry: {
  25427. height: math.unit(4.95, "feet"),
  25428. name: "Head (Angry)",
  25429. image: {
  25430. source: "./media/characters/baadra/head-angry.svg"
  25431. }
  25432. },
  25433. headOpen: {
  25434. height: math.unit(6, "feet"),
  25435. name: "Head (Open)",
  25436. image: {
  25437. source: "./media/characters/baadra/head-open.svg"
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Normal",
  25444. height: math.unit(17 + 6 / 12, "feet"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(7 + 3 / 12, "feet"),
  25454. weight: math.unit(180, "lb"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/juri/front.svg",
  25458. extra: 1401 / 1237,
  25459. bottom: 18.5 / 1418
  25460. }
  25461. },
  25462. side: {
  25463. height: math.unit(7 + 3 / 12, "feet"),
  25464. weight: math.unit(180, "lb"),
  25465. name: "Side",
  25466. image: {
  25467. source: "./media/characters/juri/side.svg",
  25468. extra: 1424 / 1242,
  25469. bottom: 18.5 / 1447
  25470. }
  25471. },
  25472. sitting: {
  25473. height: math.unit(6, "feet"),
  25474. weight: math.unit(180, "lb"),
  25475. name: "Sitting",
  25476. image: {
  25477. source: "./media/characters/juri/sitting.svg",
  25478. extra: 1270 / 1143,
  25479. bottom: 100 / 1343
  25480. }
  25481. },
  25482. back: {
  25483. height: math.unit(7 + 3 / 12, "feet"),
  25484. weight: math.unit(180, "lb"),
  25485. name: "Back",
  25486. image: {
  25487. source: "./media/characters/juri/back.svg",
  25488. extra: 1377 / 1240,
  25489. bottom: 23.7 / 1405
  25490. }
  25491. },
  25492. maw: {
  25493. height: math.unit(2.8, "feet"),
  25494. name: "Maw",
  25495. image: {
  25496. source: "./media/characters/juri/maw.svg"
  25497. }
  25498. },
  25499. stomach: {
  25500. height: math.unit(0.89, "feet"),
  25501. capacity: math.unit(4, "liters"),
  25502. name: "Stomach",
  25503. image: {
  25504. source: "./media/characters/juri/stomach.svg"
  25505. }
  25506. },
  25507. },
  25508. [
  25509. {
  25510. name: "Normal",
  25511. height: math.unit(7 + 3 / 12, "feet"),
  25512. default: true
  25513. },
  25514. ]
  25515. ))
  25516. characterMakers.push(() => makeCharacter(
  25517. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25518. {
  25519. fox: {
  25520. height: math.unit(5 + 6 / 12, "feet"),
  25521. weight: math.unit(140, "lb"),
  25522. name: "Fox",
  25523. image: {
  25524. source: "./media/characters/maxene-sita/fox.svg",
  25525. extra: 146 / 138,
  25526. bottom: 2.1 / 148.19
  25527. }
  25528. },
  25529. foxLaying: {
  25530. height: math.unit(1.70, "feet"),
  25531. weight: math.unit(140, "lb"),
  25532. name: "Fox (Laying)",
  25533. image: {
  25534. source: "./media/characters/maxene-sita/fox-laying.svg",
  25535. extra: 910 / 572,
  25536. bottom: 71 / 981
  25537. }
  25538. },
  25539. kitsune: {
  25540. height: math.unit(10, "feet"),
  25541. weight: math.unit(800, "lb"),
  25542. name: "Kitsune",
  25543. image: {
  25544. source: "./media/characters/maxene-sita/kitsune.svg",
  25545. extra: 185 / 176,
  25546. bottom: 4.7 / 189.9
  25547. }
  25548. },
  25549. hellhound: {
  25550. height: math.unit(10, "feet"),
  25551. weight: math.unit(700, "lb"),
  25552. name: "Hellhound",
  25553. image: {
  25554. source: "./media/characters/maxene-sita/hellhound.svg",
  25555. extra: 1600 / 1545,
  25556. bottom: 81 / 1681
  25557. }
  25558. },
  25559. },
  25560. [
  25561. {
  25562. name: "Normal",
  25563. height: math.unit(5 + 6 / 12, "feet"),
  25564. default: true
  25565. },
  25566. ]
  25567. ))
  25568. characterMakers.push(() => makeCharacter(
  25569. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25570. {
  25571. front: {
  25572. height: math.unit(3 + 4 / 12, "feet"),
  25573. weight: math.unit(70, "lb"),
  25574. name: "Front",
  25575. image: {
  25576. source: "./media/characters/maia/front.svg",
  25577. extra: 227 / 219.5,
  25578. bottom: 40 / 267
  25579. }
  25580. },
  25581. back: {
  25582. height: math.unit(3 + 4 / 12, "feet"),
  25583. weight: math.unit(70, "lb"),
  25584. name: "Back",
  25585. image: {
  25586. source: "./media/characters/maia/back.svg",
  25587. extra: 237 / 225
  25588. }
  25589. },
  25590. },
  25591. [
  25592. {
  25593. name: "Normal",
  25594. height: math.unit(3 + 4 / 12, "feet"),
  25595. default: true
  25596. },
  25597. ]
  25598. ))
  25599. characterMakers.push(() => makeCharacter(
  25600. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25601. {
  25602. front: {
  25603. height: math.unit(5 + 10 / 12, "feet"),
  25604. weight: math.unit(197, "lb"),
  25605. name: "Front",
  25606. image: {
  25607. source: "./media/characters/jabaro/front.svg",
  25608. extra: 225 / 216,
  25609. bottom: 5.06 / 230
  25610. }
  25611. },
  25612. back: {
  25613. height: math.unit(5 + 10 / 12, "feet"),
  25614. weight: math.unit(197, "lb"),
  25615. name: "Back",
  25616. image: {
  25617. source: "./media/characters/jabaro/back.svg",
  25618. extra: 225 / 219,
  25619. bottom: 1.9 / 227
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(5 + 10 / 12, "feet"),
  25627. default: true
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25633. {
  25634. front: {
  25635. height: math.unit(5 + 8 / 12, "feet"),
  25636. weight: math.unit(139, "lb"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/risa/front.svg",
  25640. extra: 270 / 260,
  25641. bottom: 11.2 / 282
  25642. }
  25643. },
  25644. back: {
  25645. height: math.unit(5 + 8 / 12, "feet"),
  25646. weight: math.unit(139, "lb"),
  25647. name: "Back",
  25648. image: {
  25649. source: "./media/characters/risa/back.svg",
  25650. extra: 264 / 255,
  25651. bottom: 4 / 268
  25652. }
  25653. },
  25654. },
  25655. [
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(5 + 8 / 12, "feet"),
  25659. default: true
  25660. },
  25661. ]
  25662. ))
  25663. characterMakers.push(() => makeCharacter(
  25664. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25665. {
  25666. front: {
  25667. height: math.unit(2 + 11 / 12, "feet"),
  25668. weight: math.unit(30, "lb"),
  25669. name: "Front",
  25670. image: {
  25671. source: "./media/characters/weatley/front.svg",
  25672. bottom: 10.7 / 414,
  25673. extra: 403.5 / 362
  25674. }
  25675. },
  25676. back: {
  25677. height: math.unit(2 + 11 / 12, "feet"),
  25678. weight: math.unit(30, "lb"),
  25679. name: "Back",
  25680. image: {
  25681. source: "./media/characters/weatley/back.svg",
  25682. bottom: 10.7 / 414,
  25683. extra: 403.5 / 362
  25684. }
  25685. },
  25686. },
  25687. [
  25688. {
  25689. name: "Normal",
  25690. height: math.unit(2 + 11 / 12, "feet"),
  25691. default: true
  25692. },
  25693. ]
  25694. ))
  25695. characterMakers.push(() => makeCharacter(
  25696. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25697. {
  25698. front: {
  25699. height: math.unit(5 + 2 / 12, "feet"),
  25700. weight: math.unit(50, "kg"),
  25701. name: "Front",
  25702. image: {
  25703. source: "./media/characters/mercury-crescent/front.svg",
  25704. extra: 1088 / 1033,
  25705. bottom: 18.9 / 1109
  25706. }
  25707. },
  25708. },
  25709. [
  25710. {
  25711. name: "Normal",
  25712. height: math.unit(5 + 2 / 12, "feet"),
  25713. default: true
  25714. },
  25715. ]
  25716. ))
  25717. characterMakers.push(() => makeCharacter(
  25718. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25719. {
  25720. front: {
  25721. height: math.unit(2, "feet"),
  25722. weight: math.unit(15, "kg"),
  25723. name: "Front",
  25724. image: {
  25725. source: "./media/characters/diamond-jones/front.svg",
  25726. extra: 727/723,
  25727. bottom: 46/773
  25728. }
  25729. },
  25730. },
  25731. [
  25732. {
  25733. name: "Normal",
  25734. height: math.unit(2, "feet"),
  25735. default: true
  25736. },
  25737. ]
  25738. ))
  25739. characterMakers.push(() => makeCharacter(
  25740. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25741. {
  25742. front: {
  25743. height: math.unit(3, "feet"),
  25744. weight: math.unit(30, "kg"),
  25745. name: "Front",
  25746. image: {
  25747. source: "./media/characters/sweet-bit/front.svg",
  25748. extra: 675 / 567,
  25749. bottom: 27.7 / 703
  25750. }
  25751. },
  25752. },
  25753. [
  25754. {
  25755. name: "Normal",
  25756. height: math.unit(3, "feet"),
  25757. default: true
  25758. },
  25759. ]
  25760. ))
  25761. characterMakers.push(() => makeCharacter(
  25762. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25763. {
  25764. side: {
  25765. height: math.unit(9.178, "feet"),
  25766. weight: math.unit(500, "lb"),
  25767. name: "Side",
  25768. image: {
  25769. source: "./media/characters/umbrazen/side.svg",
  25770. extra: 1730 / 1473,
  25771. bottom: 34.6 / 1765
  25772. }
  25773. },
  25774. },
  25775. [
  25776. {
  25777. name: "Normal",
  25778. height: math.unit(9.178, "feet"),
  25779. default: true
  25780. },
  25781. ]
  25782. ))
  25783. characterMakers.push(() => makeCharacter(
  25784. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25785. {
  25786. front: {
  25787. height: math.unit(10, "feet"),
  25788. weight: math.unit(750, "lb"),
  25789. name: "Front",
  25790. image: {
  25791. source: "./media/characters/arlist/front.svg",
  25792. extra: 961 / 778,
  25793. bottom: 6.2 / 986
  25794. }
  25795. },
  25796. },
  25797. [
  25798. {
  25799. name: "Normal",
  25800. height: math.unit(10, "feet"),
  25801. default: true
  25802. },
  25803. ]
  25804. ))
  25805. characterMakers.push(() => makeCharacter(
  25806. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25807. {
  25808. front: {
  25809. height: math.unit(5 + 1 / 12, "feet"),
  25810. weight: math.unit(110, "lb"),
  25811. name: "Front",
  25812. image: {
  25813. source: "./media/characters/aradel/front.svg",
  25814. extra: 324 / 303,
  25815. bottom: 3.6 / 329.4
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Normal",
  25822. height: math.unit(5 + 1 / 12, "feet"),
  25823. default: true
  25824. },
  25825. ]
  25826. ))
  25827. characterMakers.push(() => makeCharacter(
  25828. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25829. {
  25830. front: {
  25831. height: math.unit(3 + 8 / 12, "feet"),
  25832. weight: math.unit(50, "lb"),
  25833. name: "Front",
  25834. image: {
  25835. source: "./media/characters/serryn/front.svg",
  25836. extra: 1792 / 1656,
  25837. bottom: 43.5 / 1840
  25838. }
  25839. },
  25840. },
  25841. [
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(3 + 8 / 12, "feet"),
  25845. default: true
  25846. },
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25851. {
  25852. front: {
  25853. height: math.unit(7 + 10 / 12, "feet"),
  25854. weight: math.unit(255, "lb"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/xavier-thyme/front.svg",
  25858. extra: 3733 / 3642,
  25859. bottom: 131 / 3869
  25860. }
  25861. },
  25862. frontRaven: {
  25863. height: math.unit(7 + 10 / 12, "feet"),
  25864. weight: math.unit(255, "lb"),
  25865. name: "Front (Raven)",
  25866. image: {
  25867. source: "./media/characters/xavier-thyme/front-raven.svg",
  25868. extra: 4385 / 3642,
  25869. bottom: 131 / 4517
  25870. }
  25871. },
  25872. },
  25873. [
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(7 + 10 / 12, "feet"),
  25877. default: true
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25883. {
  25884. front: {
  25885. height: math.unit(1.6, "m"),
  25886. weight: math.unit(50, "kg"),
  25887. name: "Front",
  25888. image: {
  25889. source: "./media/characters/kiki/front.svg",
  25890. extra: 4682 / 3610,
  25891. bottom: 115 / 4777
  25892. }
  25893. },
  25894. },
  25895. [
  25896. {
  25897. name: "Normal",
  25898. height: math.unit(1.6, "meters"),
  25899. default: true
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(50, "m"),
  25908. weight: math.unit(500, "tonnes"),
  25909. name: "Front",
  25910. image: {
  25911. source: "./media/characters/ryoko/front.svg",
  25912. extra: 4632 / 3926,
  25913. bottom: 193 / 4823
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Normal",
  25920. height: math.unit(50, "meters"),
  25921. default: true
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25927. {
  25928. front: {
  25929. height: math.unit(30, "m"),
  25930. weight: math.unit(22, "tonnes"),
  25931. name: "Front",
  25932. image: {
  25933. source: "./media/characters/elio/front.svg",
  25934. extra: 4582 / 3720,
  25935. bottom: 236 / 4828
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Normal",
  25942. height: math.unit(30, "meters"),
  25943. default: true
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(6 + 3 / 12, "feet"),
  25952. weight: math.unit(120, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/azura/front.svg",
  25956. extra: 1149 / 1135,
  25957. bottom: 45 / 1194
  25958. }
  25959. },
  25960. frontClothed: {
  25961. height: math.unit(6 + 3 / 12, "feet"),
  25962. weight: math.unit(120, "lb"),
  25963. name: "Front (Clothed)",
  25964. image: {
  25965. source: "./media/characters/azura/front-clothed.svg",
  25966. extra: 1149 / 1135,
  25967. bottom: 45 / 1194
  25968. }
  25969. },
  25970. },
  25971. [
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(6 + 3 / 12, "feet"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Macro",
  25979. height: math.unit(20 + 6 / 12, "feet")
  25980. },
  25981. {
  25982. name: "Megamacro",
  25983. height: math.unit(12, "miles")
  25984. },
  25985. {
  25986. name: "Gigamacro",
  25987. height: math.unit(10000, "miles")
  25988. },
  25989. {
  25990. name: "Teramacro",
  25991. height: math.unit(900000, "miles")
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(12, "feet"),
  26000. weight: math.unit(1, "ton"),
  26001. capacity: math.unit(660000, "gallons"),
  26002. name: "Front",
  26003. image: {
  26004. source: "./media/characters/zeus/front.svg",
  26005. extra: 5005 / 4717,
  26006. bottom: 363 / 5388
  26007. }
  26008. },
  26009. },
  26010. [
  26011. {
  26012. name: "Normal",
  26013. height: math.unit(12, "feet")
  26014. },
  26015. {
  26016. name: "Preferred Size",
  26017. height: math.unit(0.5, "miles"),
  26018. default: true
  26019. },
  26020. {
  26021. name: "Giga Horse",
  26022. height: math.unit(300, "miles")
  26023. },
  26024. {
  26025. name: "Riding Planets",
  26026. height: math.unit(30, "megameters")
  26027. },
  26028. {
  26029. name: "Cosmic Giant",
  26030. height: math.unit(3, "zettameters")
  26031. },
  26032. {
  26033. name: "Breeding God",
  26034. height: math.unit(9.92e22, "yottameters")
  26035. },
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26040. {
  26041. side: {
  26042. height: math.unit(9, "feet"),
  26043. weight: math.unit(1500, "kg"),
  26044. name: "Side",
  26045. image: {
  26046. source: "./media/characters/fang/side.svg",
  26047. extra: 924 / 866,
  26048. bottom: 47.5 / 972.3
  26049. }
  26050. },
  26051. },
  26052. [
  26053. {
  26054. name: "Normal",
  26055. height: math.unit(9, "feet"),
  26056. default: true
  26057. },
  26058. {
  26059. name: "Macro",
  26060. height: math.unit(75 + 6 / 12, "feet")
  26061. },
  26062. {
  26063. name: "Teramacro",
  26064. height: math.unit(50000, "miles")
  26065. },
  26066. ]
  26067. ))
  26068. characterMakers.push(() => makeCharacter(
  26069. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26070. {
  26071. front: {
  26072. height: math.unit(10, "feet"),
  26073. weight: math.unit(2, "tons"),
  26074. name: "Front",
  26075. image: {
  26076. source: "./media/characters/rekhit/front.svg",
  26077. extra: 2796 / 2590,
  26078. bottom: 225 / 3022
  26079. }
  26080. },
  26081. },
  26082. [
  26083. {
  26084. name: "Normal",
  26085. height: math.unit(10, "feet"),
  26086. default: true
  26087. },
  26088. {
  26089. name: "Macro",
  26090. height: math.unit(500, "feet")
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(7 + 6.451 / 12, "feet"),
  26099. weight: math.unit(310, "lb"),
  26100. name: "Front",
  26101. image: {
  26102. source: "./media/characters/dahlia-verrick/front.svg",
  26103. extra: 1488 / 1365,
  26104. bottom: 6.2 / 1495
  26105. }
  26106. },
  26107. back: {
  26108. height: math.unit(7 + 6.451 / 12, "feet"),
  26109. weight: math.unit(310, "lb"),
  26110. name: "Back",
  26111. image: {
  26112. source: "./media/characters/dahlia-verrick/back.svg",
  26113. extra: 1472 / 1351,
  26114. bottom: 5.28 / 1477
  26115. }
  26116. },
  26117. frontBusiness: {
  26118. height: math.unit(7 + 6.451 / 12, "feet"),
  26119. weight: math.unit(200, "lb"),
  26120. name: "Front (Business)",
  26121. image: {
  26122. source: "./media/characters/dahlia-verrick/front-business.svg",
  26123. extra: 1478 / 1381,
  26124. bottom: 5.5 / 1484
  26125. }
  26126. },
  26127. frontCasual: {
  26128. height: math.unit(7 + 6.451 / 12, "feet"),
  26129. weight: math.unit(200, "lb"),
  26130. name: "Front (Casual)",
  26131. image: {
  26132. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26133. extra: 1478 / 1381,
  26134. bottom: 5.5 / 1484
  26135. }
  26136. },
  26137. },
  26138. [
  26139. {
  26140. name: "Travel-Sized",
  26141. height: math.unit(7.45, "inches")
  26142. },
  26143. {
  26144. name: "Normal",
  26145. height: math.unit(7 + 6.451 / 12, "feet"),
  26146. default: true
  26147. },
  26148. {
  26149. name: "Hitting the Town",
  26150. height: math.unit(37 + 8 / 12, "feet")
  26151. },
  26152. {
  26153. name: "Stomp in the Suburbs",
  26154. height: math.unit(964 + 9.728 / 12, "feet")
  26155. },
  26156. {
  26157. name: "Sit on the City",
  26158. height: math.unit(61747 + 10.592 / 12, "feet")
  26159. },
  26160. {
  26161. name: "Glomp the Globe",
  26162. height: math.unit(252919327 + 4.832 / 12, "feet")
  26163. },
  26164. ]
  26165. ))
  26166. characterMakers.push(() => makeCharacter(
  26167. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26168. {
  26169. front: {
  26170. height: math.unit(6 + 4 / 12, "feet"),
  26171. weight: math.unit(320, "lb"),
  26172. name: "Front",
  26173. image: {
  26174. source: "./media/characters/balina-mahigan/front.svg",
  26175. extra: 447 / 428,
  26176. bottom: 18 / 466
  26177. }
  26178. },
  26179. back: {
  26180. height: math.unit(6 + 4 / 12, "feet"),
  26181. weight: math.unit(320, "lb"),
  26182. name: "Back",
  26183. image: {
  26184. source: "./media/characters/balina-mahigan/back.svg",
  26185. extra: 445 / 428,
  26186. bottom: 4.07 / 448
  26187. }
  26188. },
  26189. arm: {
  26190. height: math.unit(1.88, "feet"),
  26191. name: "Arm",
  26192. image: {
  26193. source: "./media/characters/balina-mahigan/arm.svg"
  26194. }
  26195. },
  26196. backPort: {
  26197. height: math.unit(0.685, "feet"),
  26198. name: "Back Port",
  26199. image: {
  26200. source: "./media/characters/balina-mahigan/back-port.svg"
  26201. }
  26202. },
  26203. hoofpaw: {
  26204. height: math.unit(1.41, "feet"),
  26205. name: "Hoofpaw",
  26206. image: {
  26207. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26208. }
  26209. },
  26210. leftHandBack: {
  26211. height: math.unit(0.938, "feet"),
  26212. name: "Left Hand (Back)",
  26213. image: {
  26214. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26215. }
  26216. },
  26217. leftHandFront: {
  26218. height: math.unit(0.938, "feet"),
  26219. name: "Left Hand (Front)",
  26220. image: {
  26221. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26222. }
  26223. },
  26224. rightHandBack: {
  26225. height: math.unit(0.95, "feet"),
  26226. name: "Right Hand (Back)",
  26227. image: {
  26228. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26229. }
  26230. },
  26231. rightHandFront: {
  26232. height: math.unit(0.95, "feet"),
  26233. name: "Right Hand (Front)",
  26234. image: {
  26235. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Normal",
  26242. height: math.unit(6 + 4 / 12, "feet"),
  26243. default: true
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26249. {
  26250. front: {
  26251. height: math.unit(6, "feet"),
  26252. weight: math.unit(320, "lb"),
  26253. name: "Front",
  26254. image: {
  26255. source: "./media/characters/balina-mejeri/front.svg",
  26256. extra: 517 / 488,
  26257. bottom: 44.2 / 561
  26258. }
  26259. },
  26260. },
  26261. [
  26262. {
  26263. name: "Normal",
  26264. height: math.unit(6 + 4 / 12, "feet")
  26265. },
  26266. {
  26267. name: "Business",
  26268. height: math.unit(155, "feet"),
  26269. default: true
  26270. },
  26271. ]
  26272. ))
  26273. characterMakers.push(() => makeCharacter(
  26274. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26275. {
  26276. kneeling: {
  26277. height: math.unit(6 + 4 / 12, "feet"),
  26278. weight: math.unit(300 * 20, "lb"),
  26279. name: "Kneeling",
  26280. image: {
  26281. source: "./media/characters/balbarian/kneeling.svg",
  26282. extra: 922 / 862,
  26283. bottom: 42.4 / 965
  26284. }
  26285. },
  26286. },
  26287. [
  26288. {
  26289. name: "Normal",
  26290. height: math.unit(6 + 4 / 12, "feet")
  26291. },
  26292. {
  26293. name: "Treasured",
  26294. height: math.unit(18 + 9 / 12, "feet"),
  26295. default: true
  26296. },
  26297. {
  26298. name: "Macro",
  26299. height: math.unit(900, "feet")
  26300. },
  26301. ]
  26302. ))
  26303. characterMakers.push(() => makeCharacter(
  26304. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26305. {
  26306. front: {
  26307. height: math.unit(6 + 4 / 12, "feet"),
  26308. weight: math.unit(325, "lb"),
  26309. name: "Front",
  26310. image: {
  26311. source: "./media/characters/balina-amarini/front.svg",
  26312. extra: 415 / 403,
  26313. bottom: 19 / 433.4
  26314. }
  26315. },
  26316. back: {
  26317. height: math.unit(6 + 4 / 12, "feet"),
  26318. weight: math.unit(325, "lb"),
  26319. name: "Back",
  26320. image: {
  26321. source: "./media/characters/balina-amarini/back.svg",
  26322. extra: 415 / 403,
  26323. bottom: 13.5 / 432
  26324. }
  26325. },
  26326. overdrive: {
  26327. height: math.unit(6 + 4 / 12, "feet"),
  26328. weight: math.unit(400, "lb"),
  26329. name: "Overdrive",
  26330. image: {
  26331. source: "./media/characters/balina-amarini/overdrive.svg",
  26332. extra: 269 / 259,
  26333. bottom: 12 / 282
  26334. }
  26335. },
  26336. },
  26337. [
  26338. {
  26339. name: "Boom",
  26340. height: math.unit(9 + 10 / 12, "feet"),
  26341. default: true
  26342. },
  26343. {
  26344. name: "Macro",
  26345. height: math.unit(280, "feet")
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26351. {
  26352. goddess: {
  26353. height: math.unit(600, "feet"),
  26354. weight: math.unit(2000000, "tons"),
  26355. name: "Goddess",
  26356. image: {
  26357. source: "./media/characters/lady-kubwa/goddess.svg",
  26358. extra: 1240.5 / 1223,
  26359. bottom: 22 / 1263
  26360. }
  26361. },
  26362. goddesser: {
  26363. height: math.unit(900, "feet"),
  26364. weight: math.unit(20000000, "lb"),
  26365. name: "Goddess-er",
  26366. image: {
  26367. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26368. extra: 899 / 888,
  26369. bottom: 12.6 / 912
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Macro",
  26376. height: math.unit(600, "feet"),
  26377. default: true
  26378. },
  26379. {
  26380. name: "Megamacro",
  26381. height: math.unit(250, "miles")
  26382. },
  26383. ]
  26384. ))
  26385. characterMakers.push(() => makeCharacter(
  26386. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26387. {
  26388. front: {
  26389. height: math.unit(7 + 7 / 12, "feet"),
  26390. weight: math.unit(250, "lb"),
  26391. name: "Front",
  26392. image: {
  26393. source: "./media/characters/tala-grovehorn/front.svg",
  26394. extra: 2636 / 2525,
  26395. bottom: 147 / 2781
  26396. }
  26397. },
  26398. back: {
  26399. height: math.unit(7 + 7 / 12, "feet"),
  26400. weight: math.unit(250, "lb"),
  26401. name: "Back",
  26402. image: {
  26403. source: "./media/characters/tala-grovehorn/back.svg",
  26404. extra: 2635 / 2539,
  26405. bottom: 100 / 2732.8
  26406. }
  26407. },
  26408. mouth: {
  26409. height: math.unit(1.15, "feet"),
  26410. name: "Mouth",
  26411. image: {
  26412. source: "./media/characters/tala-grovehorn/mouth.svg"
  26413. }
  26414. },
  26415. dick: {
  26416. height: math.unit(2.36, "feet"),
  26417. name: "Dick",
  26418. image: {
  26419. source: "./media/characters/tala-grovehorn/dick.svg"
  26420. }
  26421. },
  26422. slit: {
  26423. height: math.unit(0.61, "feet"),
  26424. name: "Slit",
  26425. image: {
  26426. source: "./media/characters/tala-grovehorn/slit.svg"
  26427. }
  26428. },
  26429. },
  26430. [
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26435. {
  26436. front: {
  26437. height: math.unit(7 + 7 / 12, "feet"),
  26438. weight: math.unit(225, "lb"),
  26439. name: "Front",
  26440. image: {
  26441. source: "./media/characters/epona/front.svg",
  26442. extra: 2445 / 2290,
  26443. bottom: 251 / 2696
  26444. }
  26445. },
  26446. back: {
  26447. height: math.unit(7 + 7 / 12, "feet"),
  26448. weight: math.unit(225, "lb"),
  26449. name: "Back",
  26450. image: {
  26451. source: "./media/characters/epona/back.svg",
  26452. extra: 2546 / 2408,
  26453. bottom: 44 / 2589
  26454. }
  26455. },
  26456. genitals: {
  26457. height: math.unit(1.5, "feet"),
  26458. name: "Genitals",
  26459. image: {
  26460. source: "./media/characters/epona/genitals.svg"
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Normal",
  26467. height: math.unit(7 + 7 / 12, "feet"),
  26468. default: true
  26469. },
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26474. {
  26475. front: {
  26476. height: math.unit(7, "feet"),
  26477. weight: math.unit(518, "lb"),
  26478. name: "Front",
  26479. image: {
  26480. source: "./media/characters/avia-bloodbourn/front.svg",
  26481. extra: 1466 / 1350,
  26482. bottom: 65 / 1527
  26483. }
  26484. },
  26485. },
  26486. [
  26487. ]
  26488. ))
  26489. characterMakers.push(() => makeCharacter(
  26490. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26491. {
  26492. front: {
  26493. height: math.unit(9.35, "feet"),
  26494. weight: math.unit(600, "lb"),
  26495. name: "Front",
  26496. image: {
  26497. source: "./media/characters/amera/front.svg",
  26498. extra: 891 / 818,
  26499. bottom: 30 / 922.7
  26500. }
  26501. },
  26502. back: {
  26503. height: math.unit(9.35, "feet"),
  26504. weight: math.unit(600, "lb"),
  26505. name: "Back",
  26506. image: {
  26507. source: "./media/characters/amera/back.svg",
  26508. extra: 876 / 824,
  26509. bottom: 6.8 / 884
  26510. }
  26511. },
  26512. dick: {
  26513. height: math.unit(2.14, "feet"),
  26514. name: "Dick",
  26515. image: {
  26516. source: "./media/characters/amera/dick.svg"
  26517. }
  26518. },
  26519. },
  26520. [
  26521. {
  26522. name: "Normal",
  26523. height: math.unit(9.35, "feet"),
  26524. default: true
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26530. {
  26531. kneeling: {
  26532. height: math.unit(3 + 4 / 12, "feet"),
  26533. weight: math.unit(90, "lb"),
  26534. name: "Kneeling",
  26535. image: {
  26536. source: "./media/characters/rosewen/kneeling.svg",
  26537. extra: 1835 / 1571,
  26538. bottom: 27.7 / 1862
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Normal",
  26545. height: math.unit(3 + 4 / 12, "feet"),
  26546. default: true
  26547. },
  26548. ]
  26549. ))
  26550. characterMakers.push(() => makeCharacter(
  26551. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26552. {
  26553. front: {
  26554. height: math.unit(5 + 10 / 12, "feet"),
  26555. weight: math.unit(200, "lb"),
  26556. name: "Front",
  26557. image: {
  26558. source: "./media/characters/sabah/front.svg",
  26559. extra: 849 / 763,
  26560. bottom: 33.9 / 881
  26561. }
  26562. },
  26563. },
  26564. [
  26565. {
  26566. name: "Normal",
  26567. height: math.unit(5 + 10 / 12, "feet"),
  26568. default: true
  26569. },
  26570. ]
  26571. ))
  26572. characterMakers.push(() => makeCharacter(
  26573. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26574. {
  26575. front: {
  26576. height: math.unit(3 + 5 / 12, "feet"),
  26577. weight: math.unit(40, "kg"),
  26578. name: "Front",
  26579. image: {
  26580. source: "./media/characters/purple-flame/front.svg",
  26581. extra: 1577 / 1412,
  26582. bottom: 97 / 1694
  26583. }
  26584. },
  26585. frontDressed: {
  26586. height: math.unit(3 + 5 / 12, "feet"),
  26587. weight: math.unit(40, "kg"),
  26588. name: "Front (Dressed)",
  26589. image: {
  26590. source: "./media/characters/purple-flame/front-dressed.svg",
  26591. extra: 1577 / 1412,
  26592. bottom: 97 / 1694
  26593. }
  26594. },
  26595. headphones: {
  26596. height: math.unit(0.85, "feet"),
  26597. name: "Headphones",
  26598. image: {
  26599. source: "./media/characters/purple-flame/headphones.svg"
  26600. }
  26601. },
  26602. },
  26603. [
  26604. {
  26605. name: "Really Small",
  26606. height: math.unit(5, "cm")
  26607. },
  26608. {
  26609. name: "Micro",
  26610. height: math.unit(1 + 5 / 12, "feet")
  26611. },
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(3 + 5 / 12, "feet"),
  26615. default: true
  26616. },
  26617. {
  26618. name: "Minimacro",
  26619. height: math.unit(125, "feet")
  26620. },
  26621. {
  26622. name: "Macro",
  26623. height: math.unit(0.5, "miles")
  26624. },
  26625. {
  26626. name: "Megamacro",
  26627. height: math.unit(50, "miles")
  26628. },
  26629. {
  26630. name: "Gigantic",
  26631. height: math.unit(750, "miles")
  26632. },
  26633. {
  26634. name: "Planetary",
  26635. height: math.unit(15000, "miles")
  26636. },
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26641. {
  26642. front: {
  26643. height: math.unit(14, "feet"),
  26644. weight: math.unit(959, "lb"),
  26645. name: "Front",
  26646. image: {
  26647. source: "./media/characters/arsenal/front.svg",
  26648. extra: 2357 / 2157,
  26649. bottom: 93 / 2458
  26650. }
  26651. },
  26652. },
  26653. [
  26654. {
  26655. name: "Normal",
  26656. height: math.unit(14, "feet"),
  26657. default: true
  26658. },
  26659. ]
  26660. ))
  26661. characterMakers.push(() => makeCharacter(
  26662. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26663. {
  26664. front: {
  26665. height: math.unit(6, "feet"),
  26666. weight: math.unit(150, "lb"),
  26667. name: "Front",
  26668. image: {
  26669. source: "./media/characters/adira/front.svg",
  26670. extra: 1078 / 1029,
  26671. bottom: 87 / 1166
  26672. }
  26673. },
  26674. },
  26675. [
  26676. {
  26677. name: "Micro",
  26678. height: math.unit(4, "inches"),
  26679. default: true
  26680. },
  26681. {
  26682. name: "Macro",
  26683. height: math.unit(50, "feet")
  26684. },
  26685. ]
  26686. ))
  26687. characterMakers.push(() => makeCharacter(
  26688. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26689. {
  26690. front: {
  26691. height: math.unit(16, "feet"),
  26692. weight: math.unit(1000, "lb"),
  26693. name: "Front",
  26694. image: {
  26695. source: "./media/characters/grim/front.svg",
  26696. extra: 622 / 614,
  26697. bottom: 18.1 / 642
  26698. }
  26699. },
  26700. back: {
  26701. height: math.unit(16, "feet"),
  26702. weight: math.unit(1000, "lb"),
  26703. name: "Back",
  26704. image: {
  26705. source: "./media/characters/grim/back.svg",
  26706. extra: 610.6 / 602,
  26707. bottom: 40.8 / 652
  26708. }
  26709. },
  26710. hunched: {
  26711. height: math.unit(9.75, "feet"),
  26712. weight: math.unit(1000, "lb"),
  26713. name: "Hunched",
  26714. image: {
  26715. source: "./media/characters/grim/hunched.svg",
  26716. extra: 304 / 297,
  26717. bottom: 35.4 / 394
  26718. }
  26719. },
  26720. },
  26721. [
  26722. {
  26723. name: "Normal",
  26724. height: math.unit(16, "feet"),
  26725. default: true
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(2.3, "meters"),
  26734. weight: math.unit(300, "lb"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/sinja/front-sfw.svg",
  26738. extra: 1393 / 1294,
  26739. bottom: 70 / 1463
  26740. }
  26741. },
  26742. frontNsfw: {
  26743. height: math.unit(2.3, "meters"),
  26744. weight: math.unit(300, "lb"),
  26745. name: "Front (NSFW)",
  26746. image: {
  26747. source: "./media/characters/sinja/front-nsfw.svg",
  26748. extra: 1393 / 1294,
  26749. bottom: 70 / 1463
  26750. }
  26751. },
  26752. back: {
  26753. height: math.unit(2.3, "meters"),
  26754. weight: math.unit(300, "lb"),
  26755. name: "Back",
  26756. image: {
  26757. source: "./media/characters/sinja/back.svg",
  26758. extra: 1393 / 1294,
  26759. bottom: 70 / 1463
  26760. }
  26761. },
  26762. head: {
  26763. height: math.unit(1.771, "feet"),
  26764. name: "Head",
  26765. image: {
  26766. source: "./media/characters/sinja/head.svg"
  26767. }
  26768. },
  26769. slit: {
  26770. height: math.unit(0.8, "feet"),
  26771. name: "Slit",
  26772. image: {
  26773. source: "./media/characters/sinja/slit.svg"
  26774. }
  26775. },
  26776. },
  26777. [
  26778. {
  26779. name: "Normal",
  26780. height: math.unit(2.3, "meters")
  26781. },
  26782. {
  26783. name: "Macro",
  26784. height: math.unit(91, "meters"),
  26785. default: true
  26786. },
  26787. {
  26788. name: "Megamacro",
  26789. height: math.unit(91440, "meters")
  26790. },
  26791. {
  26792. name: "Gigamacro",
  26793. height: math.unit(60960000, "meters")
  26794. },
  26795. {
  26796. name: "Teramacro",
  26797. height: math.unit(9144000000, "meters")
  26798. },
  26799. ]
  26800. ))
  26801. characterMakers.push(() => makeCharacter(
  26802. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26803. {
  26804. front: {
  26805. height: math.unit(1.7, "meters"),
  26806. weight: math.unit(130, "lb"),
  26807. name: "Front",
  26808. image: {
  26809. source: "./media/characters/kyu/front.svg",
  26810. extra: 415 / 395,
  26811. bottom: 5 / 420
  26812. }
  26813. },
  26814. head: {
  26815. height: math.unit(1.75, "feet"),
  26816. name: "Head",
  26817. image: {
  26818. source: "./media/characters/kyu/head.svg"
  26819. }
  26820. },
  26821. foot: {
  26822. height: math.unit(0.81, "feet"),
  26823. name: "Foot",
  26824. image: {
  26825. source: "./media/characters/kyu/foot.svg"
  26826. }
  26827. },
  26828. },
  26829. [
  26830. {
  26831. name: "Normal",
  26832. height: math.unit(1.7, "meters")
  26833. },
  26834. {
  26835. name: "Macro",
  26836. height: math.unit(131, "feet"),
  26837. default: true
  26838. },
  26839. {
  26840. name: "Megamacro",
  26841. height: math.unit(91440, "meters")
  26842. },
  26843. {
  26844. name: "Gigamacro",
  26845. height: math.unit(60960000, "meters")
  26846. },
  26847. {
  26848. name: "Teramacro",
  26849. height: math.unit(9144000000, "meters")
  26850. },
  26851. ]
  26852. ))
  26853. characterMakers.push(() => makeCharacter(
  26854. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26855. {
  26856. front: {
  26857. height: math.unit(7 + 1 / 12, "feet"),
  26858. weight: math.unit(250, "lb"),
  26859. name: "Front",
  26860. image: {
  26861. source: "./media/characters/joey/front.svg",
  26862. extra: 1791 / 1537,
  26863. bottom: 28 / 1816
  26864. }
  26865. },
  26866. },
  26867. [
  26868. {
  26869. name: "Micro",
  26870. height: math.unit(3, "inches")
  26871. },
  26872. {
  26873. name: "Normal",
  26874. height: math.unit(7 + 1 / 12, "feet"),
  26875. default: true
  26876. },
  26877. ]
  26878. ))
  26879. characterMakers.push(() => makeCharacter(
  26880. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26881. {
  26882. front: {
  26883. height: math.unit(165, "cm"),
  26884. weight: math.unit(140, "lb"),
  26885. name: "Front",
  26886. image: {
  26887. source: "./media/characters/sam-evans/front.svg",
  26888. extra: 3417 / 3230,
  26889. bottom: 41.3 / 3417
  26890. }
  26891. },
  26892. frontSixTails: {
  26893. height: math.unit(165, "cm"),
  26894. weight: math.unit(140, "lb"),
  26895. name: "Front-six-tails",
  26896. image: {
  26897. source: "./media/characters/sam-evans/front-six-tails.svg",
  26898. extra: 3417 / 3230,
  26899. bottom: 41.3 / 3417
  26900. }
  26901. },
  26902. back: {
  26903. height: math.unit(165, "cm"),
  26904. weight: math.unit(140, "lb"),
  26905. name: "Back",
  26906. image: {
  26907. source: "./media/characters/sam-evans/back.svg",
  26908. extra: 3227 / 3032,
  26909. bottom: 6.8 / 3234
  26910. }
  26911. },
  26912. face: {
  26913. height: math.unit(0.68, "feet"),
  26914. name: "Face",
  26915. image: {
  26916. source: "./media/characters/sam-evans/face.svg"
  26917. }
  26918. },
  26919. },
  26920. [
  26921. {
  26922. name: "Normal",
  26923. height: math.unit(165, "cm"),
  26924. default: true
  26925. },
  26926. {
  26927. name: "Macro",
  26928. height: math.unit(100, "meters")
  26929. },
  26930. {
  26931. name: "Macro+",
  26932. height: math.unit(800, "meters")
  26933. },
  26934. {
  26935. name: "Macro++",
  26936. height: math.unit(3, "km")
  26937. },
  26938. {
  26939. name: "Macro+++",
  26940. height: math.unit(30, "km")
  26941. },
  26942. ]
  26943. ))
  26944. characterMakers.push(() => makeCharacter(
  26945. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26946. {
  26947. front: {
  26948. height: math.unit(10, "feet"),
  26949. weight: math.unit(750, "lb"),
  26950. name: "Front",
  26951. image: {
  26952. source: "./media/characters/juliet-a/front.svg",
  26953. extra: 1766 / 1720,
  26954. bottom: 43 / 1809
  26955. }
  26956. },
  26957. back: {
  26958. height: math.unit(10, "feet"),
  26959. weight: math.unit(750, "lb"),
  26960. name: "Back",
  26961. image: {
  26962. source: "./media/characters/juliet-a/back.svg",
  26963. extra: 1781 / 1734,
  26964. bottom: 35 / 1810,
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Normal",
  26971. height: math.unit(10, "feet"),
  26972. default: true
  26973. },
  26974. {
  26975. name: "Dragon Form",
  26976. height: math.unit(250, "feet")
  26977. },
  26978. {
  26979. name: "Macro",
  26980. height: math.unit(1000, "feet")
  26981. },
  26982. {
  26983. name: "Megamacro",
  26984. height: math.unit(10000, "feet")
  26985. }
  26986. ]
  26987. ))
  26988. characterMakers.push(() => makeCharacter(
  26989. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26990. {
  26991. regular: {
  26992. height: math.unit(7 + 3 / 12, "feet"),
  26993. weight: math.unit(260, "lb"),
  26994. name: "Regular",
  26995. image: {
  26996. source: "./media/characters/wild/regular.svg",
  26997. extra: 97.45 / 92,
  26998. bottom: 6.8 / 104.3
  26999. }
  27000. },
  27001. biggums: {
  27002. height: math.unit(8 + 6 / 12, "feet"),
  27003. weight: math.unit(425, "lb"),
  27004. name: "Biggums",
  27005. image: {
  27006. source: "./media/characters/wild/biggums.svg",
  27007. extra: 97.45 / 92,
  27008. bottom: 7.5 / 132.34
  27009. }
  27010. },
  27011. mawRegular: {
  27012. height: math.unit(1.24, "feet"),
  27013. name: "Maw (Regular)",
  27014. image: {
  27015. source: "./media/characters/wild/maw.svg"
  27016. }
  27017. },
  27018. mawBiggums: {
  27019. height: math.unit(1.47, "feet"),
  27020. name: "Maw (Biggums)",
  27021. image: {
  27022. source: "./media/characters/wild/maw.svg"
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Normal",
  27029. height: math.unit(7 + 3 / 12, "feet"),
  27030. default: true
  27031. },
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27036. {
  27037. front: {
  27038. height: math.unit(2.5, "meters"),
  27039. weight: math.unit(200, "kg"),
  27040. name: "Front",
  27041. image: {
  27042. source: "./media/characters/vidar/front.svg",
  27043. extra: 2994 / 2795,
  27044. bottom: 56 / 3061
  27045. }
  27046. },
  27047. back: {
  27048. height: math.unit(2.5, "meters"),
  27049. weight: math.unit(200, "kg"),
  27050. name: "Back",
  27051. image: {
  27052. source: "./media/characters/vidar/back.svg",
  27053. extra: 3131 / 2928,
  27054. bottom: 13.5 / 3141.5
  27055. }
  27056. },
  27057. feral: {
  27058. height: math.unit(2.5, "meters"),
  27059. weight: math.unit(2000, "kg"),
  27060. name: "Feral",
  27061. image: {
  27062. source: "./media/characters/vidar/feral.svg",
  27063. extra: 2790 / 1765,
  27064. bottom: 6 / 2796
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Normal",
  27071. height: math.unit(2.5, "meters"),
  27072. default: true
  27073. },
  27074. {
  27075. name: "Macro",
  27076. height: math.unit(100, "meters")
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(5 + 9 / 12, "feet"),
  27085. weight: math.unit(120, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/ash/front.svg",
  27089. extra: 2189 / 1961,
  27090. bottom: 5.2 / 2194
  27091. }
  27092. },
  27093. },
  27094. [
  27095. {
  27096. name: "Normal",
  27097. height: math.unit(5 + 9 / 12, "feet"),
  27098. default: true
  27099. },
  27100. ]
  27101. ))
  27102. characterMakers.push(() => makeCharacter(
  27103. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27104. {
  27105. front: {
  27106. height: math.unit(9, "feet"),
  27107. weight: math.unit(10000, "lb"),
  27108. name: "Front",
  27109. image: {
  27110. source: "./media/characters/gygabite/front.svg",
  27111. bottom: 31.7 / 537.8,
  27112. extra: 505 / 370
  27113. }
  27114. },
  27115. },
  27116. [
  27117. {
  27118. name: "Normal",
  27119. height: math.unit(9, "feet"),
  27120. default: true
  27121. },
  27122. ]
  27123. ))
  27124. characterMakers.push(() => makeCharacter(
  27125. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27126. {
  27127. front: {
  27128. height: math.unit(12, "feet"),
  27129. weight: math.unit(35000, "lb"),
  27130. name: "Front",
  27131. image: {
  27132. source: "./media/characters/p0tat0/front.svg",
  27133. extra: 1065 / 921,
  27134. bottom: 55.7 / 1121.25
  27135. }
  27136. },
  27137. },
  27138. [
  27139. {
  27140. name: "Normal",
  27141. height: math.unit(12, "feet"),
  27142. default: true
  27143. },
  27144. ]
  27145. ))
  27146. characterMakers.push(() => makeCharacter(
  27147. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27148. {
  27149. side: {
  27150. height: math.unit(6.5, "feet"),
  27151. weight: math.unit(800, "lb"),
  27152. name: "Side",
  27153. image: {
  27154. source: "./media/characters/dusk/side.svg",
  27155. extra: 615 / 373,
  27156. bottom: 53 / 664
  27157. }
  27158. },
  27159. sitting: {
  27160. height: math.unit(7, "feet"),
  27161. weight: math.unit(800, "lb"),
  27162. name: "Sitting",
  27163. image: {
  27164. source: "./media/characters/dusk/sitting.svg",
  27165. extra: 753 / 425,
  27166. bottom: 33 / 774
  27167. }
  27168. },
  27169. head: {
  27170. height: math.unit(6.1, "feet"),
  27171. name: "Head",
  27172. image: {
  27173. source: "./media/characters/dusk/head.svg"
  27174. }
  27175. },
  27176. },
  27177. [
  27178. {
  27179. name: "Normal",
  27180. height: math.unit(7, "feet"),
  27181. default: true
  27182. },
  27183. ]
  27184. ))
  27185. characterMakers.push(() => makeCharacter(
  27186. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27187. {
  27188. front: {
  27189. height: math.unit(15, "feet"),
  27190. weight: math.unit(7000, "lb"),
  27191. name: "Front",
  27192. image: {
  27193. source: "./media/characters/jay-direwolf/front.svg",
  27194. extra: 1810 / 1732,
  27195. bottom: 66 / 1892
  27196. }
  27197. },
  27198. },
  27199. [
  27200. {
  27201. name: "Normal",
  27202. height: math.unit(15, "feet"),
  27203. default: true
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27209. {
  27210. front: {
  27211. height: math.unit(4 + 9 / 12, "feet"),
  27212. weight: math.unit(130, "lb"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/anchovie/front.svg",
  27216. extra: 382 / 350,
  27217. bottom: 25 / 409
  27218. }
  27219. },
  27220. back: {
  27221. height: math.unit(4 + 9 / 12, "feet"),
  27222. weight: math.unit(130, "lb"),
  27223. name: "Back",
  27224. image: {
  27225. source: "./media/characters/anchovie/back.svg",
  27226. extra: 385 / 352,
  27227. bottom: 16.6 / 402
  27228. }
  27229. },
  27230. frontDressed: {
  27231. height: math.unit(4 + 9 / 12, "feet"),
  27232. weight: math.unit(130, "lb"),
  27233. name: "Front (Dressed)",
  27234. image: {
  27235. source: "./media/characters/anchovie/front-dressed.svg",
  27236. extra: 382 / 350,
  27237. bottom: 25 / 409
  27238. }
  27239. },
  27240. backDressed: {
  27241. height: math.unit(4 + 9 / 12, "feet"),
  27242. weight: math.unit(130, "lb"),
  27243. name: "Back (Dressed)",
  27244. image: {
  27245. source: "./media/characters/anchovie/back-dressed.svg",
  27246. extra: 385 / 352,
  27247. bottom: 16.6 / 402
  27248. }
  27249. },
  27250. },
  27251. [
  27252. {
  27253. name: "Micro",
  27254. height: math.unit(6.4, "inches")
  27255. },
  27256. {
  27257. name: "Normal",
  27258. height: math.unit(4 + 9 / 12, "feet"),
  27259. default: true
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27265. {
  27266. front: {
  27267. height: math.unit(2, "meters"),
  27268. weight: math.unit(180, "lb"),
  27269. name: "Front",
  27270. image: {
  27271. source: "./media/characters/acidrenamon/front.svg",
  27272. extra: 987 / 890,
  27273. bottom: 22.8 / 1009
  27274. }
  27275. },
  27276. back: {
  27277. height: math.unit(2, "meters"),
  27278. weight: math.unit(180, "lb"),
  27279. name: "Back",
  27280. image: {
  27281. source: "./media/characters/acidrenamon/back.svg",
  27282. extra: 983 / 891,
  27283. bottom: 8.4 / 992
  27284. }
  27285. },
  27286. head: {
  27287. height: math.unit(1.92, "feet"),
  27288. name: "Head",
  27289. image: {
  27290. source: "./media/characters/acidrenamon/head.svg"
  27291. }
  27292. },
  27293. rump: {
  27294. height: math.unit(1.72, "feet"),
  27295. name: "Rump",
  27296. image: {
  27297. source: "./media/characters/acidrenamon/rump.svg"
  27298. }
  27299. },
  27300. tail: {
  27301. height: math.unit(4.2, "feet"),
  27302. name: "Tail",
  27303. image: {
  27304. source: "./media/characters/acidrenamon/tail.svg"
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Normal",
  27311. height: math.unit(2, "meters"),
  27312. default: true
  27313. },
  27314. {
  27315. name: "Minimacro",
  27316. height: math.unit(7, "meters")
  27317. },
  27318. {
  27319. name: "Macro",
  27320. height: math.unit(200, "meters")
  27321. },
  27322. {
  27323. name: "Gigamacro",
  27324. height: math.unit(0.2, "earths")
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(6, "feet"),
  27333. weight: math.unit(150, "lb"),
  27334. name: "Front",
  27335. image: {
  27336. source: "./media/characters/kenzie-lee/front.svg",
  27337. extra: 1525 / 1465,
  27338. bottom: 45 / 1570
  27339. }
  27340. },
  27341. side: {
  27342. height: math.unit(6, "feet"),
  27343. weight: math.unit(150, "lb"),
  27344. name: "Side",
  27345. image: {
  27346. source: "./media/characters/kenzie-lee/side.svg",
  27347. extra: 5505 / 5383,
  27348. bottom: 60 / 5573
  27349. }
  27350. },
  27351. paw: {
  27352. height: math.unit(0.57, "feet"),
  27353. name: "Paw",
  27354. image: {
  27355. source: "./media/characters/kenzie-lee/paw.svg"
  27356. }
  27357. },
  27358. },
  27359. [
  27360. {
  27361. name: "Normal",
  27362. height: math.unit(152, "feet"),
  27363. default: true
  27364. },
  27365. {
  27366. name: "Megamacro",
  27367. height: math.unit(7, "miles")
  27368. },
  27369. {
  27370. name: "Gigamacro",
  27371. height: math.unit(8000, "miles")
  27372. },
  27373. ]
  27374. ))
  27375. characterMakers.push(() => makeCharacter(
  27376. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27377. {
  27378. side: {
  27379. height: math.unit(6, "feet"),
  27380. weight: math.unit(150, "lb"),
  27381. name: "Side",
  27382. image: {
  27383. source: "./media/characters/withers/side.svg",
  27384. extra: 1830 / 1728,
  27385. bottom: 96 / 1927
  27386. }
  27387. },
  27388. front: {
  27389. height: math.unit(6, "feet"),
  27390. weight: math.unit(150, "lb"),
  27391. name: "Front",
  27392. image: {
  27393. source: "./media/characters/withers/front.svg",
  27394. extra: 1514 / 1438,
  27395. bottom: 118 / 1632
  27396. }
  27397. },
  27398. },
  27399. [
  27400. {
  27401. name: "Macro",
  27402. height: math.unit(168, "feet"),
  27403. default: true
  27404. },
  27405. {
  27406. name: "Megamacro",
  27407. height: math.unit(15, "miles")
  27408. }
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27413. {
  27414. front: {
  27415. height: math.unit(6 + 7 / 12, "feet"),
  27416. weight: math.unit(250, "lb"),
  27417. name: "Front",
  27418. image: {
  27419. source: "./media/characters/nemoskii/front.svg",
  27420. extra: 2270 / 1734,
  27421. bottom: 86 / 2354
  27422. }
  27423. },
  27424. back: {
  27425. height: math.unit(6 + 7 / 12, "feet"),
  27426. weight: math.unit(250, "lb"),
  27427. name: "Back",
  27428. image: {
  27429. source: "./media/characters/nemoskii/back.svg",
  27430. extra: 1845 / 1788,
  27431. bottom: 10.5 / 1852
  27432. }
  27433. },
  27434. head: {
  27435. height: math.unit(1.31, "feet"),
  27436. name: "Head",
  27437. image: {
  27438. source: "./media/characters/nemoskii/head.svg"
  27439. }
  27440. },
  27441. },
  27442. [
  27443. {
  27444. name: "Micro",
  27445. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27446. },
  27447. {
  27448. name: "Normal",
  27449. height: math.unit(6 + 7 / 12, "feet"),
  27450. default: true
  27451. },
  27452. {
  27453. name: "Macro",
  27454. height: math.unit((6 + 7 / 12) * 150, "feet")
  27455. },
  27456. {
  27457. name: "Macro+",
  27458. height: math.unit((6 + 7 / 12) * 500, "feet")
  27459. },
  27460. {
  27461. name: "Megamacro",
  27462. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27468. {
  27469. front: {
  27470. height: math.unit(1, "mile"),
  27471. weight: math.unit(265261.9, "lb"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/shui/front.svg",
  27475. extra: 1633 / 1564,
  27476. bottom: 91.5 / 1726
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Macro",
  27483. height: math.unit(1, "mile"),
  27484. default: true
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27490. {
  27491. front: {
  27492. height: math.unit(12 + 6 / 12, "feet"),
  27493. weight: math.unit(1342, "lb"),
  27494. name: "Front",
  27495. image: {
  27496. source: "./media/characters/arokh-takakura/front.svg",
  27497. extra: 1089 / 1043,
  27498. bottom: 77.4 / 1176.7
  27499. }
  27500. },
  27501. back: {
  27502. height: math.unit(12 + 6 / 12, "feet"),
  27503. weight: math.unit(1342, "lb"),
  27504. name: "Back",
  27505. image: {
  27506. source: "./media/characters/arokh-takakura/back.svg",
  27507. extra: 1046 / 1019,
  27508. bottom: 102 / 1150
  27509. }
  27510. },
  27511. },
  27512. [
  27513. {
  27514. name: "Big",
  27515. height: math.unit(12 + 6 / 12, "feet"),
  27516. default: true
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27522. {
  27523. front: {
  27524. height: math.unit(5 + 6 / 12, "feet"),
  27525. weight: math.unit(150, "lb"),
  27526. name: "Front",
  27527. image: {
  27528. source: "./media/characters/theo/front.svg",
  27529. extra: 1184 / 1131,
  27530. bottom: 7.4 / 1191
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Micro",
  27537. height: math.unit(5, "inches")
  27538. },
  27539. {
  27540. name: "Normal",
  27541. height: math.unit(5 + 6 / 12, "feet"),
  27542. default: true
  27543. },
  27544. ]
  27545. ))
  27546. characterMakers.push(() => makeCharacter(
  27547. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27548. {
  27549. front: {
  27550. height: math.unit(5 + 9 / 12, "feet"),
  27551. weight: math.unit(130, "lb"),
  27552. name: "Front",
  27553. image: {
  27554. source: "./media/characters/cecelia-swift/front.svg",
  27555. extra: 502 / 484,
  27556. bottom: 23 / 523
  27557. }
  27558. },
  27559. back: {
  27560. height: math.unit(5 + 9 / 12, "feet"),
  27561. weight: math.unit(130, "lb"),
  27562. name: "Back",
  27563. image: {
  27564. source: "./media/characters/cecelia-swift/back.svg",
  27565. extra: 499 / 485,
  27566. bottom: 12 / 511
  27567. }
  27568. },
  27569. head: {
  27570. height: math.unit(0.90, "feet"),
  27571. name: "Head",
  27572. image: {
  27573. source: "./media/characters/cecelia-swift/head.svg"
  27574. }
  27575. },
  27576. rump: {
  27577. height: math.unit(1.75, "feet"),
  27578. name: "Rump",
  27579. image: {
  27580. source: "./media/characters/cecelia-swift/rump.svg"
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Normal",
  27587. height: math.unit(5 + 9 / 12, "feet"),
  27588. default: true
  27589. },
  27590. {
  27591. name: "Big",
  27592. height: math.unit(50, "feet")
  27593. },
  27594. {
  27595. name: "Macro",
  27596. height: math.unit(100, "feet")
  27597. },
  27598. {
  27599. name: "Macro+",
  27600. height: math.unit(500, "feet")
  27601. },
  27602. {
  27603. name: "Macro++",
  27604. height: math.unit(1000, "feet")
  27605. },
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27610. {
  27611. front: {
  27612. height: math.unit(6, "feet"),
  27613. weight: math.unit(150, "lb"),
  27614. name: "Front",
  27615. image: {
  27616. source: "./media/characters/kaunan/front.svg",
  27617. extra: 2890 / 2523,
  27618. bottom: 49 / 2939
  27619. }
  27620. },
  27621. },
  27622. [
  27623. {
  27624. name: "Macro",
  27625. height: math.unit(150, "feet"),
  27626. default: true
  27627. },
  27628. ]
  27629. ))
  27630. characterMakers.push(() => makeCharacter(
  27631. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27632. {
  27633. front: {
  27634. height: math.unit(175, "cm"),
  27635. weight: math.unit(60, "kg"),
  27636. name: "Front",
  27637. image: {
  27638. source: "./media/characters/fei/front.svg",
  27639. extra: 1873/1723,
  27640. bottom: 53/1926
  27641. }
  27642. },
  27643. },
  27644. [
  27645. {
  27646. name: "Mortal",
  27647. height: math.unit(175, "cm")
  27648. },
  27649. {
  27650. name: "Normal",
  27651. height: math.unit(3500, "m"),
  27652. default: true
  27653. },
  27654. {
  27655. name: "Stroll",
  27656. height: math.unit(17.5, "km")
  27657. },
  27658. {
  27659. name: "Showoff",
  27660. height: math.unit(175, "km")
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(7, "feet"),
  27669. weight: math.unit(1000, "kg"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/edrax/front.svg",
  27673. extra: 2838 / 2550,
  27674. bottom: 130 / 2968
  27675. }
  27676. },
  27677. },
  27678. [
  27679. {
  27680. name: "Small",
  27681. height: math.unit(7, "feet")
  27682. },
  27683. {
  27684. name: "Normal",
  27685. height: math.unit(1500, "meters")
  27686. },
  27687. {
  27688. name: "Mega",
  27689. height: math.unit(12000000, "km"),
  27690. default: true
  27691. },
  27692. {
  27693. name: "Megamacro",
  27694. height: math.unit(10600000, "lightyears")
  27695. },
  27696. {
  27697. name: "Hypermacro",
  27698. height: math.unit(256, "yottameters")
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27704. {
  27705. front: {
  27706. height: math.unit(10, "feet"),
  27707. weight: math.unit(750, "lb"),
  27708. name: "Front",
  27709. image: {
  27710. source: "./media/characters/clove/front.svg",
  27711. extra: 2031 / 1860,
  27712. bottom: 47.8 / 2080
  27713. }
  27714. },
  27715. back: {
  27716. height: math.unit(10, "feet"),
  27717. weight: math.unit(750, "lb"),
  27718. name: "Back",
  27719. image: {
  27720. source: "./media/characters/clove/back.svg",
  27721. extra: 2025 / 1859,
  27722. bottom: 46 / 2071
  27723. }
  27724. },
  27725. },
  27726. [
  27727. {
  27728. name: "Normal",
  27729. height: math.unit(10, "feet"),
  27730. default: true
  27731. },
  27732. ]
  27733. ))
  27734. characterMakers.push(() => makeCharacter(
  27735. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27736. {
  27737. front: {
  27738. height: math.unit(4, "feet"),
  27739. weight: math.unit(50, "lb"),
  27740. name: "Front",
  27741. image: {
  27742. source: "./media/characters/alex-rabbit/front.svg",
  27743. extra: 507 / 458,
  27744. bottom: 18.5 / 527
  27745. }
  27746. },
  27747. back: {
  27748. height: math.unit(4, "feet"),
  27749. weight: math.unit(50, "lb"),
  27750. name: "Back",
  27751. image: {
  27752. source: "./media/characters/alex-rabbit/back.svg",
  27753. extra: 502 / 460,
  27754. bottom: 18.9 / 521
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Normal",
  27761. height: math.unit(4, "feet"),
  27762. default: true
  27763. },
  27764. ]
  27765. ))
  27766. characterMakers.push(() => makeCharacter(
  27767. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27768. {
  27769. front: {
  27770. height: math.unit(1 + 3 / 12, "feet"),
  27771. weight: math.unit(80, "lb"),
  27772. name: "Front",
  27773. image: {
  27774. source: "./media/characters/zander-rose/front.svg",
  27775. extra: 916 / 797,
  27776. bottom: 17 / 933
  27777. }
  27778. },
  27779. back: {
  27780. height: math.unit(1 + 3 / 12, "feet"),
  27781. weight: math.unit(80, "lb"),
  27782. name: "Back",
  27783. image: {
  27784. source: "./media/characters/zander-rose/back.svg",
  27785. extra: 903 / 779,
  27786. bottom: 31 / 934
  27787. }
  27788. },
  27789. },
  27790. [
  27791. {
  27792. name: "Normal",
  27793. height: math.unit(1 + 3 / 12, "feet"),
  27794. default: true
  27795. },
  27796. ]
  27797. ))
  27798. characterMakers.push(() => makeCharacter(
  27799. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27800. {
  27801. anthro: {
  27802. height: math.unit(6, "feet"),
  27803. weight: math.unit(150, "lb"),
  27804. name: "Anthro",
  27805. image: {
  27806. source: "./media/characters/razz/anthro.svg",
  27807. extra: 1437 / 1343,
  27808. bottom: 48 / 1485
  27809. }
  27810. },
  27811. feral: {
  27812. height: math.unit(6, "feet"),
  27813. weight: math.unit(150, "lb"),
  27814. name: "Feral",
  27815. image: {
  27816. source: "./media/characters/razz/feral.svg",
  27817. extra: 2569 / 1385,
  27818. bottom: 95 / 2664
  27819. }
  27820. },
  27821. },
  27822. [
  27823. {
  27824. name: "Normal",
  27825. height: math.unit(6, "feet"),
  27826. default: true
  27827. },
  27828. ]
  27829. ))
  27830. characterMakers.push(() => makeCharacter(
  27831. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27832. {
  27833. front: {
  27834. height: math.unit(9 + 4 / 12, "feet"),
  27835. weight: math.unit(500, "lb"),
  27836. name: "Front",
  27837. image: {
  27838. source: "./media/characters/morrigan/front.svg",
  27839. extra: 2707 / 2579,
  27840. bottom: 156 / 2863
  27841. }
  27842. },
  27843. },
  27844. [
  27845. {
  27846. name: "Normal",
  27847. height: math.unit(9 + 4 / 12, "feet"),
  27848. default: true
  27849. },
  27850. ]
  27851. ))
  27852. characterMakers.push(() => makeCharacter(
  27853. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27854. {
  27855. front: {
  27856. height: math.unit(5, "stories"),
  27857. weight: math.unit(4000, "lb"),
  27858. name: "Front",
  27859. image: {
  27860. source: "./media/characters/jenene/front.svg",
  27861. extra: 1780 / 1710,
  27862. bottom: 57 / 1837
  27863. }
  27864. },
  27865. },
  27866. [
  27867. {
  27868. name: "Normal",
  27869. height: math.unit(5, "stories"),
  27870. default: true
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27876. {
  27877. taurSfw: {
  27878. height: math.unit(10, "meters"),
  27879. weight: math.unit(17500, "kg"),
  27880. name: "Taur",
  27881. image: {
  27882. source: "./media/characters/faey/taur-sfw.svg",
  27883. extra: 1200 / 968,
  27884. bottom: 41 / 1241
  27885. }
  27886. },
  27887. chestmaw: {
  27888. height: math.unit(2.01, "meters"),
  27889. name: "Chestmaw",
  27890. image: {
  27891. source: "./media/characters/faey/chestmaw.svg"
  27892. }
  27893. },
  27894. foot: {
  27895. height: math.unit(2.43, "meters"),
  27896. name: "Foot",
  27897. image: {
  27898. source: "./media/characters/faey/foot.svg"
  27899. }
  27900. },
  27901. jaws: {
  27902. height: math.unit(1.66, "meters"),
  27903. name: "Jaws",
  27904. image: {
  27905. source: "./media/characters/faey/jaws.svg"
  27906. }
  27907. },
  27908. tongues: {
  27909. height: math.unit(2.01, "meters"),
  27910. name: "Tongues",
  27911. image: {
  27912. source: "./media/characters/faey/tongues.svg"
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Small",
  27919. height: math.unit(10, "meters"),
  27920. default: true
  27921. },
  27922. {
  27923. name: "Big",
  27924. height: math.unit(500000, "km")
  27925. },
  27926. ]
  27927. ))
  27928. characterMakers.push(() => makeCharacter(
  27929. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27930. {
  27931. front: {
  27932. height: math.unit(7, "feet"),
  27933. weight: math.unit(275, "lb"),
  27934. name: "Front",
  27935. image: {
  27936. source: "./media/characters/roku/front.svg",
  27937. extra: 903 / 878,
  27938. bottom: 37 / 940
  27939. }
  27940. },
  27941. },
  27942. [
  27943. {
  27944. name: "Normal",
  27945. height: math.unit(7, "feet"),
  27946. default: true
  27947. },
  27948. {
  27949. name: "Macro",
  27950. height: math.unit(500, "feet")
  27951. },
  27952. {
  27953. name: "Megamacro",
  27954. height: math.unit(200, "miles")
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(6 + 2 / 12, "feet"),
  27963. weight: math.unit(150, "lb"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/lira/front.svg",
  27967. extra: 1727 / 1605,
  27968. bottom: 26 / 1753
  27969. }
  27970. },
  27971. back: {
  27972. height: math.unit(6 + 2 / 12, "feet"),
  27973. weight: math.unit(150, "lb"),
  27974. name: "Back",
  27975. image: {
  27976. source: "./media/characters/lira/back.svg",
  27977. extra: 1713/1621,
  27978. bottom: 20/1733
  27979. }
  27980. },
  27981. hand: {
  27982. height: math.unit(0.75, "feet"),
  27983. name: "Hand",
  27984. image: {
  27985. source: "./media/characters/lira/hand.svg"
  27986. }
  27987. },
  27988. maw: {
  27989. height: math.unit(0.65, "feet"),
  27990. name: "Maw",
  27991. image: {
  27992. source: "./media/characters/lira/maw.svg"
  27993. }
  27994. },
  27995. pawDigi: {
  27996. height: math.unit(1.6, "feet"),
  27997. name: "Paw Digi",
  27998. image: {
  27999. source: "./media/characters/lira/paw-digi.svg"
  28000. }
  28001. },
  28002. pawPlanti: {
  28003. height: math.unit(1.4, "feet"),
  28004. name: "Paw Planti",
  28005. image: {
  28006. source: "./media/characters/lira/paw-planti.svg"
  28007. }
  28008. },
  28009. },
  28010. [
  28011. {
  28012. name: "Normal",
  28013. height: math.unit(6 + 2 / 12, "feet"),
  28014. default: true
  28015. },
  28016. {
  28017. name: "Macro",
  28018. height: math.unit(100, "feet")
  28019. },
  28020. {
  28021. name: "Macro²",
  28022. height: math.unit(1600, "feet")
  28023. },
  28024. {
  28025. name: "Planetary",
  28026. height: math.unit(20, "earths")
  28027. },
  28028. ]
  28029. ))
  28030. characterMakers.push(() => makeCharacter(
  28031. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28032. {
  28033. front: {
  28034. height: math.unit(6, "feet"),
  28035. weight: math.unit(150, "lb"),
  28036. name: "Front",
  28037. image: {
  28038. source: "./media/characters/hadjet/front.svg",
  28039. extra: 1480 / 1346,
  28040. bottom: 26 / 1506
  28041. }
  28042. },
  28043. frontNsfw: {
  28044. height: math.unit(6, "feet"),
  28045. weight: math.unit(150, "lb"),
  28046. name: "Front (NSFW)",
  28047. image: {
  28048. source: "./media/characters/hadjet/front-nsfw.svg",
  28049. extra: 1440 / 1358,
  28050. bottom: 52 / 1492
  28051. }
  28052. },
  28053. },
  28054. [
  28055. {
  28056. name: "Macro",
  28057. height: math.unit(10, "stories"),
  28058. default: true
  28059. },
  28060. {
  28061. name: "Megamacro",
  28062. height: math.unit(1.5, "miles")
  28063. },
  28064. {
  28065. name: "Megamacro+",
  28066. height: math.unit(5, "miles")
  28067. },
  28068. ]
  28069. ))
  28070. characterMakers.push(() => makeCharacter(
  28071. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28072. {
  28073. side: {
  28074. height: math.unit(106, "feet"),
  28075. weight: math.unit(500, "tonnes"),
  28076. name: "Side",
  28077. image: {
  28078. source: "./media/characters/kodran/side.svg",
  28079. extra: 553 / 480,
  28080. bottom: 33 / 586
  28081. }
  28082. },
  28083. front: {
  28084. height: math.unit(132, "feet"),
  28085. weight: math.unit(500, "tonnes"),
  28086. name: "Front",
  28087. image: {
  28088. source: "./media/characters/kodran/front.svg",
  28089. extra: 667 / 643,
  28090. bottom: 42 / 709
  28091. }
  28092. },
  28093. flying: {
  28094. height: math.unit(350, "feet"),
  28095. weight: math.unit(500, "tonnes"),
  28096. name: "Flying",
  28097. image: {
  28098. source: "./media/characters/kodran/flying.svg"
  28099. }
  28100. },
  28101. foot: {
  28102. height: math.unit(33, "feet"),
  28103. name: "Foot",
  28104. image: {
  28105. source: "./media/characters/kodran/foot.svg"
  28106. }
  28107. },
  28108. footFront: {
  28109. height: math.unit(19, "feet"),
  28110. name: "Foot (Front)",
  28111. image: {
  28112. source: "./media/characters/kodran/foot-front.svg",
  28113. extra: 261 / 261,
  28114. bottom: 91 / 352
  28115. }
  28116. },
  28117. headFront: {
  28118. height: math.unit(53, "feet"),
  28119. name: "Head (Front)",
  28120. image: {
  28121. source: "./media/characters/kodran/head-front.svg"
  28122. }
  28123. },
  28124. headSide: {
  28125. height: math.unit(65, "feet"),
  28126. name: "Head (Side)",
  28127. image: {
  28128. source: "./media/characters/kodran/head-side.svg"
  28129. }
  28130. },
  28131. throat: {
  28132. height: math.unit(79, "feet"),
  28133. name: "Throat",
  28134. image: {
  28135. source: "./media/characters/kodran/throat.svg"
  28136. }
  28137. },
  28138. },
  28139. [
  28140. {
  28141. name: "Large",
  28142. height: math.unit(106, "feet"),
  28143. default: true
  28144. },
  28145. ]
  28146. ))
  28147. characterMakers.push(() => makeCharacter(
  28148. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28149. {
  28150. side: {
  28151. height: math.unit(11, "feet"),
  28152. weight: math.unit(150, "lb"),
  28153. name: "Side",
  28154. image: {
  28155. source: "./media/characters/pyxaron/side.svg",
  28156. extra: 305 / 195,
  28157. bottom: 17 / 322
  28158. }
  28159. },
  28160. },
  28161. [
  28162. {
  28163. name: "Normal",
  28164. height: math.unit(11, "feet"),
  28165. default: true
  28166. },
  28167. ]
  28168. ))
  28169. characterMakers.push(() => makeCharacter(
  28170. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28171. {
  28172. front: {
  28173. height: math.unit(6, "feet"),
  28174. weight: math.unit(150, "lb"),
  28175. name: "Front",
  28176. image: {
  28177. source: "./media/characters/meep/front.svg",
  28178. extra: 88 / 80,
  28179. bottom: 6 / 94
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Fun Sized",
  28186. height: math.unit(2, "inches"),
  28187. default: true
  28188. },
  28189. {
  28190. name: "Friend Sized",
  28191. height: math.unit(8, "inches")
  28192. },
  28193. ]
  28194. ))
  28195. characterMakers.push(() => makeCharacter(
  28196. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28197. {
  28198. front: {
  28199. height: math.unit(15, "feet"),
  28200. weight: math.unit(2500, "lb"),
  28201. name: "Front",
  28202. image: {
  28203. source: "./media/characters/holly-rabbit/front.svg",
  28204. extra: 1433 / 1233,
  28205. bottom: 125 / 1558
  28206. }
  28207. },
  28208. dick: {
  28209. height: math.unit(4.6, "feet"),
  28210. name: "Dick",
  28211. image: {
  28212. source: "./media/characters/holly-rabbit/dick.svg"
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Normal",
  28219. height: math.unit(15, "feet"),
  28220. default: true
  28221. },
  28222. {
  28223. name: "Macro",
  28224. height: math.unit(250, "feet")
  28225. },
  28226. {
  28227. name: "Macro+",
  28228. height: math.unit(2500, "feet")
  28229. },
  28230. ]
  28231. ))
  28232. characterMakers.push(() => makeCharacter(
  28233. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28234. {
  28235. front: {
  28236. height: math.unit(3.02, "meters"),
  28237. weight: math.unit(500, "kg"),
  28238. name: "Front",
  28239. image: {
  28240. source: "./media/characters/drena/front.svg",
  28241. extra: 282 / 243,
  28242. bottom: 8 / 290
  28243. }
  28244. },
  28245. side: {
  28246. height: math.unit(3.02, "meters"),
  28247. weight: math.unit(500, "kg"),
  28248. name: "Side",
  28249. image: {
  28250. source: "./media/characters/drena/side.svg",
  28251. extra: 280 / 245,
  28252. bottom: 10 / 290
  28253. }
  28254. },
  28255. back: {
  28256. height: math.unit(3.02, "meters"),
  28257. weight: math.unit(500, "kg"),
  28258. name: "Back",
  28259. image: {
  28260. source: "./media/characters/drena/back.svg",
  28261. extra: 278 / 243,
  28262. bottom: 2 / 280
  28263. }
  28264. },
  28265. foot: {
  28266. height: math.unit(0.75, "meters"),
  28267. name: "Foot",
  28268. image: {
  28269. source: "./media/characters/drena/foot.svg"
  28270. }
  28271. },
  28272. maw: {
  28273. height: math.unit(0.82, "meters"),
  28274. name: "Maw",
  28275. image: {
  28276. source: "./media/characters/drena/maw.svg"
  28277. }
  28278. },
  28279. rump: {
  28280. height: math.unit(0.93, "meters"),
  28281. name: "Rump",
  28282. image: {
  28283. source: "./media/characters/drena/rump.svg"
  28284. }
  28285. },
  28286. },
  28287. [
  28288. {
  28289. name: "Normal",
  28290. height: math.unit(3.02, "meters"),
  28291. default: true
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28297. {
  28298. front: {
  28299. height: math.unit(6 + 4 / 12, "feet"),
  28300. weight: math.unit(250, "lb"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/remmyzilla/front.svg",
  28304. extra: 4033 / 3588,
  28305. bottom: 123 / 4156
  28306. }
  28307. },
  28308. back: {
  28309. height: math.unit(6 + 4 / 12, "feet"),
  28310. weight: math.unit(250, "lb"),
  28311. name: "Back",
  28312. image: {
  28313. source: "./media/characters/remmyzilla/back.svg",
  28314. extra: 2687 / 2555,
  28315. bottom: 48 / 2735
  28316. }
  28317. },
  28318. paw: {
  28319. height: math.unit(1.73, "feet"),
  28320. name: "Paw",
  28321. image: {
  28322. source: "./media/characters/remmyzilla/paw.svg"
  28323. }
  28324. },
  28325. maw: {
  28326. height: math.unit(1.73, "feet"),
  28327. name: "Maw",
  28328. image: {
  28329. source: "./media/characters/remmyzilla/maw.svg"
  28330. }
  28331. },
  28332. },
  28333. [
  28334. {
  28335. name: "Normal",
  28336. height: math.unit(6 + 4 / 12, "feet")
  28337. },
  28338. {
  28339. name: "Minimacro",
  28340. height: math.unit(12 + 8 / 12, "feet")
  28341. },
  28342. {
  28343. name: "Normal",
  28344. height: math.unit(640, "feet"),
  28345. default: true
  28346. },
  28347. {
  28348. name: "Megamacro",
  28349. height: math.unit(6400, "feet")
  28350. },
  28351. {
  28352. name: "Gigamacro",
  28353. height: math.unit(64000, "miles")
  28354. },
  28355. ]
  28356. ))
  28357. characterMakers.push(() => makeCharacter(
  28358. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28359. {
  28360. front: {
  28361. height: math.unit(2.5, "meters"),
  28362. weight: math.unit(300, "lb"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/lawrence/front.svg",
  28366. extra: 357 / 335,
  28367. bottom: 30 / 387
  28368. }
  28369. },
  28370. back: {
  28371. height: math.unit(2.5, "meters"),
  28372. weight: math.unit(300, "lb"),
  28373. name: "Back",
  28374. image: {
  28375. source: "./media/characters/lawrence/back.svg",
  28376. extra: 357 / 338,
  28377. bottom: 16 / 373
  28378. }
  28379. },
  28380. head: {
  28381. height: math.unit(0.9, "meter"),
  28382. name: "Head",
  28383. image: {
  28384. source: "./media/characters/lawrence/head.svg"
  28385. }
  28386. },
  28387. maw: {
  28388. height: math.unit(0.7, "meter"),
  28389. name: "Maw",
  28390. image: {
  28391. source: "./media/characters/lawrence/maw.svg"
  28392. }
  28393. },
  28394. footBottom: {
  28395. height: math.unit(0.5, "meter"),
  28396. name: "Foot (Bottom)",
  28397. image: {
  28398. source: "./media/characters/lawrence/foot-bottom.svg"
  28399. }
  28400. },
  28401. footTop: {
  28402. height: math.unit(0.5, "meter"),
  28403. name: "Foot (Top)",
  28404. image: {
  28405. source: "./media/characters/lawrence/foot-top.svg"
  28406. }
  28407. },
  28408. },
  28409. [
  28410. {
  28411. name: "Normal",
  28412. height: math.unit(2.5, "meters"),
  28413. default: true
  28414. },
  28415. {
  28416. name: "Macro",
  28417. height: math.unit(95, "meters")
  28418. },
  28419. {
  28420. name: "Megamacro",
  28421. height: math.unit(150, "km")
  28422. },
  28423. ]
  28424. ))
  28425. characterMakers.push(() => makeCharacter(
  28426. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28427. {
  28428. front: {
  28429. height: math.unit(4.2, "meters"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/sydney/front.svg",
  28433. extra: 1323 / 1277,
  28434. bottom: 111 / 1434
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Normal",
  28441. height: math.unit(4.2, "meters"),
  28442. default: true
  28443. },
  28444. ]
  28445. ))
  28446. characterMakers.push(() => makeCharacter(
  28447. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28448. {
  28449. back: {
  28450. height: math.unit(201, "feet"),
  28451. name: "Back",
  28452. image: {
  28453. source: "./media/characters/jessica/back.svg",
  28454. extra: 273 / 259,
  28455. bottom: 7 / 280
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(201, "feet"),
  28463. default: true
  28464. },
  28465. {
  28466. name: "Megamacro",
  28467. height: math.unit(8, "miles")
  28468. },
  28469. ]
  28470. ))
  28471. characterMakers.push(() => makeCharacter(
  28472. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28473. {
  28474. side: {
  28475. height: math.unit(320, "cm"),
  28476. name: "Side",
  28477. image: {
  28478. source: "./media/characters/victoria/side.svg",
  28479. extra: 778 / 346,
  28480. bottom: 56 / 834
  28481. }
  28482. },
  28483. maw: {
  28484. height: math.unit(5.9, "feet"),
  28485. name: "Maw",
  28486. image: {
  28487. source: "./media/characters/victoria/maw.svg"
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Normal",
  28494. height: math.unit(320, "cm"),
  28495. default: true
  28496. },
  28497. ]
  28498. ))
  28499. characterMakers.push(() => makeCharacter(
  28500. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28501. {
  28502. front: {
  28503. height: math.unit(5 + 6 / 12, "feet"),
  28504. name: "Front",
  28505. image: {
  28506. source: "./media/characters/cat/front.svg",
  28507. extra: 1449/1295,
  28508. bottom: 34/1483
  28509. }
  28510. },
  28511. back: {
  28512. height: math.unit(5 + 6 / 12, "feet"),
  28513. name: "Back",
  28514. image: {
  28515. source: "./media/characters/cat/back.svg",
  28516. extra: 1466/1301,
  28517. bottom: 19/1485
  28518. }
  28519. },
  28520. taur: {
  28521. height: math.unit(7, "feet"),
  28522. name: "Taur",
  28523. image: {
  28524. source: "./media/characters/cat/taur.svg",
  28525. extra: 1389/1233,
  28526. bottom: 83/1472
  28527. }
  28528. },
  28529. lucarioFront: {
  28530. height: math.unit(4, "feet"),
  28531. name: "Lucario (Front)",
  28532. image: {
  28533. source: "./media/characters/cat/lucario-front.svg",
  28534. extra: 1149/1019,
  28535. bottom: 84/1233
  28536. }
  28537. },
  28538. lucarioBack: {
  28539. height: math.unit(4, "feet"),
  28540. name: "Lucario (Back)",
  28541. image: {
  28542. source: "./media/characters/cat/lucario-back.svg",
  28543. extra: 1190/1059,
  28544. bottom: 33/1223
  28545. }
  28546. },
  28547. megaLucario: {
  28548. height: math.unit(4, "feet"),
  28549. name: "Mega Lucario",
  28550. image: {
  28551. source: "./media/characters/cat/mega-lucario.svg",
  28552. extra: 1515 / 1319,
  28553. bottom: 63 / 1578
  28554. }
  28555. },
  28556. nickit: {
  28557. height: math.unit(2, "feet"),
  28558. name: "Nickit",
  28559. image: {
  28560. source: "./media/characters/cat/nickit.svg",
  28561. extra: 1980 / 1585,
  28562. bottom: 102 / 2082
  28563. }
  28564. },
  28565. lopunnyFront: {
  28566. height: math.unit(5, "feet"),
  28567. name: "Lopunny (Front)",
  28568. image: {
  28569. source: "./media/characters/cat/lopunny-front.svg",
  28570. extra: 1782 / 1469,
  28571. bottom: 38 / 1820
  28572. }
  28573. },
  28574. lopunnyBack: {
  28575. height: math.unit(5, "feet"),
  28576. name: "Lopunny (Back)",
  28577. image: {
  28578. source: "./media/characters/cat/lopunny-back.svg",
  28579. extra: 1660 / 1490,
  28580. bottom: 25 / 1685
  28581. }
  28582. },
  28583. },
  28584. [
  28585. {
  28586. name: "Really small",
  28587. height: math.unit(1, "nm")
  28588. },
  28589. {
  28590. name: "Micro",
  28591. height: math.unit(5, "inches")
  28592. },
  28593. {
  28594. name: "Normal",
  28595. height: math.unit(5 + 6 / 12, "feet"),
  28596. default: true
  28597. },
  28598. {
  28599. name: "Macro",
  28600. height: math.unit(50, "feet")
  28601. },
  28602. {
  28603. name: "Macro+",
  28604. height: math.unit(150, "feet")
  28605. },
  28606. {
  28607. name: "Megamacro",
  28608. height: math.unit(100, "miles")
  28609. },
  28610. ]
  28611. ))
  28612. characterMakers.push(() => makeCharacter(
  28613. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28614. {
  28615. front: {
  28616. height: math.unit(63.4, "meters"),
  28617. weight: math.unit(3.28349e+6, "kilograms"),
  28618. name: "Front",
  28619. image: {
  28620. source: "./media/characters/kirina-violet/front.svg",
  28621. extra: 2812 / 2725,
  28622. bottom: 0 / 2812
  28623. }
  28624. },
  28625. back: {
  28626. height: math.unit(63.4, "meters"),
  28627. weight: math.unit(3.28349e+6, "kilograms"),
  28628. name: "Back",
  28629. image: {
  28630. source: "./media/characters/kirina-violet/back.svg",
  28631. extra: 2812 / 2725,
  28632. bottom: 0 / 2812
  28633. }
  28634. },
  28635. mouth: {
  28636. height: math.unit(4.35, "meters"),
  28637. name: "Mouth",
  28638. image: {
  28639. source: "./media/characters/kirina-violet/mouth.svg"
  28640. }
  28641. },
  28642. paw: {
  28643. height: math.unit(5.6, "meters"),
  28644. name: "Paw",
  28645. image: {
  28646. source: "./media/characters/kirina-violet/paw.svg"
  28647. }
  28648. },
  28649. tail: {
  28650. height: math.unit(18, "meters"),
  28651. name: "Tail",
  28652. image: {
  28653. source: "./media/characters/kirina-violet/tail.svg"
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Macro",
  28660. height: math.unit(63.4, "meters"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28667. {
  28668. front: {
  28669. height: math.unit(75, "feet"),
  28670. name: "Front",
  28671. image: {
  28672. source: "./media/characters/cat-gigachu/front.svg",
  28673. extra: 1239/1027,
  28674. bottom: 32/1271
  28675. }
  28676. },
  28677. back: {
  28678. height: math.unit(75, "feet"),
  28679. name: "Back",
  28680. image: {
  28681. source: "./media/characters/cat-gigachu/back.svg",
  28682. extra: 1229/1030,
  28683. bottom: 9/1238
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Dynamax",
  28690. height: math.unit(75, "feet"),
  28691. default: true
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28697. {
  28698. front: {
  28699. height: math.unit(6, "feet"),
  28700. weight: math.unit(150, "lb"),
  28701. name: "Front",
  28702. image: {
  28703. source: "./media/characters/sfaiyan/front.svg",
  28704. extra: 999 / 978,
  28705. bottom: 5 / 1004
  28706. }
  28707. },
  28708. },
  28709. [
  28710. {
  28711. name: "Normal",
  28712. height: math.unit(1.82, "meters")
  28713. },
  28714. {
  28715. name: "Giant",
  28716. height: math.unit(2.27, "km"),
  28717. default: true
  28718. },
  28719. ]
  28720. ))
  28721. characterMakers.push(() => makeCharacter(
  28722. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28723. {
  28724. front: {
  28725. height: math.unit(179, "cm"),
  28726. weight: math.unit(100, "kg"),
  28727. name: "Front",
  28728. image: {
  28729. source: "./media/characters/raunehkeli/front.svg",
  28730. extra: 1934 / 1926,
  28731. bottom: 0 / 1934
  28732. }
  28733. },
  28734. },
  28735. [
  28736. {
  28737. name: "Normal",
  28738. height: math.unit(179, "cm")
  28739. },
  28740. {
  28741. name: "Maximum",
  28742. height: math.unit(575, "meters"),
  28743. default: true
  28744. },
  28745. ]
  28746. ))
  28747. characterMakers.push(() => makeCharacter(
  28748. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28749. {
  28750. front: {
  28751. height: math.unit(6, "feet"),
  28752. weight: math.unit(150, "lb"),
  28753. name: "Front",
  28754. image: {
  28755. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28756. extra: 2625 / 2518,
  28757. bottom: 60 / 2685
  28758. }
  28759. },
  28760. },
  28761. [
  28762. {
  28763. name: "Normal",
  28764. height: math.unit(6 + 2 / 12, "feet")
  28765. },
  28766. {
  28767. name: "Macro",
  28768. height: math.unit(1180, "feet"),
  28769. default: true
  28770. },
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28775. {
  28776. front: {
  28777. height: math.unit(5 + 6 / 12, "feet"),
  28778. weight: math.unit(108, "lb"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/lilith-zott/front.svg",
  28782. extra: 2510 / 2238,
  28783. bottom: 100 / 2610
  28784. }
  28785. },
  28786. frontDressed: {
  28787. height: math.unit(5 + 6 / 12, "feet"),
  28788. weight: math.unit(108, "lb"),
  28789. name: "Front (Dressed)",
  28790. image: {
  28791. source: "./media/characters/lilith-zott/front-dressed.svg",
  28792. extra: 2510 / 2238,
  28793. bottom: 100 / 2610
  28794. }
  28795. },
  28796. },
  28797. [
  28798. {
  28799. name: "Normal",
  28800. height: math.unit(5 + 6 / 12, "feet")
  28801. },
  28802. {
  28803. name: "Macro",
  28804. height: math.unit(1030, "feet"),
  28805. default: true
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28811. {
  28812. front: {
  28813. height: math.unit(6, "feet"),
  28814. weight: math.unit(150, "lb"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28818. extra: 2567 / 2435,
  28819. bottom: 39 / 2606
  28820. }
  28821. },
  28822. frontSuper: {
  28823. height: math.unit(6, "feet"),
  28824. name: "Front (Super)",
  28825. image: {
  28826. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28827. extra: 2567 / 2435,
  28828. bottom: 39 / 2606
  28829. }
  28830. },
  28831. },
  28832. [
  28833. {
  28834. name: "Normal",
  28835. height: math.unit(5 + 10 / 12, "feet")
  28836. },
  28837. {
  28838. name: "Macro",
  28839. height: math.unit(1100, "feet"),
  28840. default: true
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28846. {
  28847. front: {
  28848. height: math.unit(100, "miles"),
  28849. name: "Front",
  28850. image: {
  28851. source: "./media/characters/sona/front.svg",
  28852. extra: 2433 / 2201,
  28853. bottom: 53 / 2486
  28854. }
  28855. },
  28856. foot: {
  28857. height: math.unit(16.1, "miles"),
  28858. name: "Foot",
  28859. image: {
  28860. source: "./media/characters/sona/foot.svg"
  28861. }
  28862. },
  28863. },
  28864. [
  28865. {
  28866. name: "Macro",
  28867. height: math.unit(100, "miles"),
  28868. default: true
  28869. },
  28870. ]
  28871. ))
  28872. characterMakers.push(() => makeCharacter(
  28873. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28874. {
  28875. front: {
  28876. height: math.unit(6, "feet"),
  28877. weight: math.unit(150, "lb"),
  28878. name: "Front",
  28879. image: {
  28880. source: "./media/characters/bailey/front.svg",
  28881. extra: 1778 / 1724,
  28882. bottom: 30 / 1808
  28883. }
  28884. },
  28885. },
  28886. [
  28887. {
  28888. name: "Micro",
  28889. height: math.unit(4, "inches")
  28890. },
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(5 + 5 / 12, "feet"),
  28894. default: true
  28895. },
  28896. {
  28897. name: "Macro",
  28898. height: math.unit(250, "feet")
  28899. },
  28900. {
  28901. name: "Megamacro",
  28902. height: math.unit(100, "miles")
  28903. },
  28904. ]
  28905. ))
  28906. characterMakers.push(() => makeCharacter(
  28907. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28908. {
  28909. front: {
  28910. height: math.unit(5 + 2 / 12, "feet"),
  28911. weight: math.unit(120, "lb"),
  28912. name: "Front",
  28913. image: {
  28914. source: "./media/characters/snaps/front.svg",
  28915. extra: 2370 / 2177,
  28916. bottom: 48 / 2418
  28917. }
  28918. },
  28919. back: {
  28920. height: math.unit(5 + 2 / 12, "feet"),
  28921. weight: math.unit(120, "lb"),
  28922. name: "Back",
  28923. image: {
  28924. source: "./media/characters/snaps/back.svg",
  28925. extra: 2408 / 2258,
  28926. bottom: 15 / 2423
  28927. }
  28928. },
  28929. },
  28930. [
  28931. {
  28932. name: "Micro",
  28933. height: math.unit(9, "inches")
  28934. },
  28935. {
  28936. name: "Normal",
  28937. height: math.unit(5 + 2 / 12, "feet"),
  28938. default: true
  28939. },
  28940. {
  28941. name: "Mini Macro",
  28942. height: math.unit(10, "feet")
  28943. },
  28944. ]
  28945. ))
  28946. characterMakers.push(() => makeCharacter(
  28947. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28948. {
  28949. front: {
  28950. height: math.unit(1.8, "meters"),
  28951. weight: math.unit(85, "kg"),
  28952. name: "Front",
  28953. image: {
  28954. source: "./media/characters/azteck/front.svg",
  28955. extra: 2815 / 2625,
  28956. bottom: 89 / 2904
  28957. }
  28958. },
  28959. back: {
  28960. height: math.unit(1.8, "meters"),
  28961. weight: math.unit(85, "kg"),
  28962. name: "Back",
  28963. image: {
  28964. source: "./media/characters/azteck/back.svg",
  28965. extra: 2856 / 2648,
  28966. bottom: 85 / 2941
  28967. }
  28968. },
  28969. frontDressed: {
  28970. height: math.unit(1.8, "meters"),
  28971. weight: math.unit(85, "kg"),
  28972. name: "Front (Dressed)",
  28973. image: {
  28974. source: "./media/characters/azteck/front-dressed.svg",
  28975. extra: 2147 / 2003,
  28976. bottom: 68 / 2215
  28977. }
  28978. },
  28979. head: {
  28980. height: math.unit(0.47, "meters"),
  28981. weight: math.unit(85, "kg"),
  28982. name: "Head",
  28983. image: {
  28984. source: "./media/characters/azteck/head.svg"
  28985. }
  28986. },
  28987. },
  28988. [
  28989. {
  28990. name: "Bite sized",
  28991. height: math.unit(16, "cm")
  28992. },
  28993. {
  28994. name: "Normal",
  28995. height: math.unit(1.8, "meters"),
  28996. default: true
  28997. },
  28998. ]
  28999. ))
  29000. characterMakers.push(() => makeCharacter(
  29001. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29002. {
  29003. front: {
  29004. height: math.unit(6, "feet"),
  29005. weight: math.unit(150, "lb"),
  29006. name: "Front",
  29007. image: {
  29008. source: "./media/characters/pidge/front.svg",
  29009. extra: 620 / 588,
  29010. bottom: 9 / 629
  29011. }
  29012. },
  29013. back: {
  29014. height: math.unit(6, "feet"),
  29015. weight: math.unit(150, "lb"),
  29016. name: "Back",
  29017. image: {
  29018. source: "./media/characters/pidge/back.svg",
  29019. extra: 620 / 588,
  29020. bottom: 9 / 629
  29021. }
  29022. },
  29023. },
  29024. [
  29025. {
  29026. name: "Macro",
  29027. height: math.unit(1, "mile"),
  29028. default: true
  29029. },
  29030. ]
  29031. ))
  29032. characterMakers.push(() => makeCharacter(
  29033. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29034. {
  29035. front: {
  29036. height: math.unit(6, "feet"),
  29037. weight: math.unit(150, "lb"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/en/front.svg",
  29041. extra: 1697 / 1563,
  29042. bottom: 103 / 1800
  29043. }
  29044. },
  29045. back: {
  29046. height: math.unit(6, "feet"),
  29047. weight: math.unit(150, "lb"),
  29048. name: "Back",
  29049. image: {
  29050. source: "./media/characters/en/back.svg",
  29051. extra: 1700 / 1570,
  29052. bottom: 51 / 1751
  29053. }
  29054. },
  29055. frontDressed: {
  29056. height: math.unit(6, "feet"),
  29057. weight: math.unit(150, "lb"),
  29058. name: "Front (Dressed)",
  29059. image: {
  29060. source: "./media/characters/en/front-dressed.svg",
  29061. extra: 1697 / 1563,
  29062. bottom: 103 / 1800
  29063. }
  29064. },
  29065. backDressed: {
  29066. height: math.unit(6, "feet"),
  29067. weight: math.unit(150, "lb"),
  29068. name: "Back (Dressed)",
  29069. image: {
  29070. source: "./media/characters/en/back-dressed.svg",
  29071. extra: 1700 / 1570,
  29072. bottom: 51 / 1751
  29073. }
  29074. },
  29075. },
  29076. [
  29077. {
  29078. name: "Macro",
  29079. height: math.unit(210, "feet"),
  29080. default: true
  29081. },
  29082. ]
  29083. ))
  29084. characterMakers.push(() => makeCharacter(
  29085. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29086. {
  29087. front: {
  29088. height: math.unit(6, "feet"),
  29089. weight: math.unit(150, "lb"),
  29090. name: "Front",
  29091. image: {
  29092. source: "./media/characters/haze-orris/front.svg",
  29093. extra: 3975 / 3525,
  29094. bottom: 137 / 4112
  29095. }
  29096. },
  29097. },
  29098. [
  29099. {
  29100. name: "Micro",
  29101. height: math.unit(150, "mm"),
  29102. default: true
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29108. {
  29109. front: {
  29110. height: math.unit(6, "feet"),
  29111. weight: math.unit(150, "lb"),
  29112. name: "Front",
  29113. image: {
  29114. source: "./media/characters/casselene-yaro/front.svg",
  29115. extra: 4721 / 4541,
  29116. bottom: 82 / 4803
  29117. }
  29118. },
  29119. back: {
  29120. height: math.unit(6, "feet"),
  29121. weight: math.unit(150, "lb"),
  29122. name: "Back",
  29123. image: {
  29124. source: "./media/characters/casselene-yaro/back.svg",
  29125. extra: 4569 / 4377,
  29126. bottom: 69 / 4638
  29127. }
  29128. },
  29129. frontDressed: {
  29130. height: math.unit(6, "feet"),
  29131. weight: math.unit(150, "lb"),
  29132. name: "Front-dressed",
  29133. image: {
  29134. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29135. extra: 4721 / 4541,
  29136. bottom: 82 / 4803
  29137. }
  29138. },
  29139. },
  29140. [
  29141. {
  29142. name: "Macro",
  29143. height: math.unit(190, "feet"),
  29144. default: true
  29145. },
  29146. ]
  29147. ))
  29148. characterMakers.push(() => makeCharacter(
  29149. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29150. {
  29151. front: {
  29152. height: math.unit(6, "feet"),
  29153. weight: math.unit(150, "lb"),
  29154. name: "Front",
  29155. image: {
  29156. source: "./media/characters/myra-rue-delore/front.svg",
  29157. extra: 1340 / 1308,
  29158. bottom: 67 / 1407
  29159. }
  29160. },
  29161. back: {
  29162. height: math.unit(6, "feet"),
  29163. weight: math.unit(150, "lb"),
  29164. name: "Back",
  29165. image: {
  29166. source: "./media/characters/myra-rue-delore/back.svg",
  29167. extra: 1341 / 1310,
  29168. bottom: 40 / 1381
  29169. }
  29170. },
  29171. frontDressed: {
  29172. height: math.unit(6, "feet"),
  29173. weight: math.unit(150, "lb"),
  29174. name: "Front (Dressed)",
  29175. image: {
  29176. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29177. extra: 1340 / 1308,
  29178. bottom: 67 / 1407
  29179. }
  29180. },
  29181. },
  29182. [
  29183. {
  29184. name: "Macro",
  29185. height: math.unit(150, "feet"),
  29186. default: true
  29187. },
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29192. {
  29193. front: {
  29194. height: math.unit(10, "feet"),
  29195. weight: math.unit(15015, "lb"),
  29196. name: "Front",
  29197. image: {
  29198. source: "./media/characters/fem!plat/front.svg",
  29199. extra: 2799 / 2604,
  29200. bottom: 149 / 2948
  29201. }
  29202. },
  29203. },
  29204. [
  29205. {
  29206. name: "Normal",
  29207. height: math.unit(10, "feet"),
  29208. default: true
  29209. },
  29210. {
  29211. name: "Macro",
  29212. height: math.unit(100, "feet")
  29213. },
  29214. {
  29215. name: "Megamacro",
  29216. height: math.unit(1000, "feet")
  29217. },
  29218. ]
  29219. ))
  29220. characterMakers.push(() => makeCharacter(
  29221. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29222. {
  29223. front: {
  29224. height: math.unit(15 + 5 / 12, "feet"),
  29225. weight: math.unit(4600, "lb"),
  29226. name: "Front",
  29227. image: {
  29228. source: "./media/characters/neapolitan-ananassa/front.svg",
  29229. extra: 2903 / 2736,
  29230. bottom: 0 / 2903
  29231. }
  29232. },
  29233. side: {
  29234. height: math.unit(15 + 5 / 12, "feet"),
  29235. weight: math.unit(4600, "lb"),
  29236. name: "Side",
  29237. image: {
  29238. source: "./media/characters/neapolitan-ananassa/side.svg",
  29239. extra: 2925 / 2719,
  29240. bottom: 0 / 2925
  29241. }
  29242. },
  29243. back: {
  29244. height: math.unit(15 + 5 / 12, "feet"),
  29245. weight: math.unit(4600, "lb"),
  29246. name: "Back",
  29247. image: {
  29248. source: "./media/characters/neapolitan-ananassa/back.svg",
  29249. extra: 2903 / 2736,
  29250. bottom: 0 / 2903
  29251. }
  29252. },
  29253. },
  29254. [
  29255. {
  29256. name: "Normal",
  29257. height: math.unit(15 + 5 / 12, "feet"),
  29258. default: true
  29259. },
  29260. {
  29261. name: "Post-Millenium",
  29262. height: math.unit(35 + 5 / 12, "feet")
  29263. },
  29264. {
  29265. name: "Post-Era",
  29266. height: math.unit(450 + 5 / 12, "feet")
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(300, "meters"),
  29275. weight: math.unit(125000, "tonnes"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/pazuzu/front.svg",
  29279. extra: 877 / 794,
  29280. bottom: 47 / 924
  29281. }
  29282. },
  29283. },
  29284. [
  29285. {
  29286. name: "Macro",
  29287. height: math.unit(300, "meters"),
  29288. default: true
  29289. },
  29290. ]
  29291. ))
  29292. characterMakers.push(() => makeCharacter(
  29293. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29294. {
  29295. side: {
  29296. height: math.unit(10 + 7 / 12, "feet"),
  29297. weight: math.unit(2.5, "tons"),
  29298. name: "Side",
  29299. image: {
  29300. source: "./media/characters/aasha/side.svg",
  29301. extra: 1345 / 1245,
  29302. bottom: 111 / 1456
  29303. }
  29304. },
  29305. back: {
  29306. height: math.unit(10 + 7 / 12, "feet"),
  29307. weight: math.unit(2.5, "tons"),
  29308. name: "Back",
  29309. image: {
  29310. source: "./media/characters/aasha/back.svg",
  29311. extra: 1133 / 1057,
  29312. bottom: 257 / 1390
  29313. }
  29314. },
  29315. },
  29316. [
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(10 + 7 / 12, "feet"),
  29320. default: true
  29321. },
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29326. {
  29327. front: {
  29328. height: math.unit(6 + 3 / 12, "feet"),
  29329. name: "Front",
  29330. image: {
  29331. source: "./media/characters/nevan/front.svg",
  29332. extra: 704 / 704,
  29333. bottom: 28 / 732
  29334. }
  29335. },
  29336. back: {
  29337. height: math.unit(6 + 3 / 12, "feet"),
  29338. name: "Back",
  29339. image: {
  29340. source: "./media/characters/nevan/back.svg",
  29341. extra: 714 / 714,
  29342. bottom: 21 / 735
  29343. }
  29344. },
  29345. frontFlaccid: {
  29346. height: math.unit(6 + 3 / 12, "feet"),
  29347. name: "Front (Flaccid)",
  29348. image: {
  29349. source: "./media/characters/nevan/front-flaccid.svg",
  29350. extra: 704 / 704,
  29351. bottom: 28 / 732
  29352. }
  29353. },
  29354. frontErect: {
  29355. height: math.unit(6 + 3 / 12, "feet"),
  29356. name: "Front (Erect)",
  29357. image: {
  29358. source: "./media/characters/nevan/front-erect.svg",
  29359. extra: 704 / 704,
  29360. bottom: 28 / 732
  29361. }
  29362. },
  29363. backFlaccid: {
  29364. height: math.unit(6 + 3 / 12, "feet"),
  29365. name: "Back (Flaccid)",
  29366. image: {
  29367. source: "./media/characters/nevan/back-flaccid.svg",
  29368. extra: 714 / 714,
  29369. bottom: 21 / 735
  29370. }
  29371. },
  29372. },
  29373. [
  29374. {
  29375. name: "Normal",
  29376. height: math.unit(6 + 3 / 12, "feet"),
  29377. default: true
  29378. },
  29379. ]
  29380. ))
  29381. characterMakers.push(() => makeCharacter(
  29382. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29383. {
  29384. front: {
  29385. height: math.unit(4, "feet"),
  29386. name: "Front",
  29387. image: {
  29388. source: "./media/characters/arhan/front.svg",
  29389. extra: 3368 / 3133,
  29390. bottom: 0 / 3368
  29391. }
  29392. },
  29393. side: {
  29394. height: math.unit(4, "feet"),
  29395. name: "Side",
  29396. image: {
  29397. source: "./media/characters/arhan/side.svg",
  29398. extra: 3347 / 3105,
  29399. bottom: 0 / 3347
  29400. }
  29401. },
  29402. tongue: {
  29403. height: math.unit(1.42, "feet"),
  29404. name: "Tongue",
  29405. image: {
  29406. source: "./media/characters/arhan/tongue.svg"
  29407. }
  29408. },
  29409. head: {
  29410. height: math.unit(0.85, "feet"),
  29411. name: "Head",
  29412. image: {
  29413. source: "./media/characters/arhan/head.svg"
  29414. }
  29415. },
  29416. },
  29417. [
  29418. {
  29419. name: "Normal",
  29420. height: math.unit(4, "feet"),
  29421. default: true
  29422. },
  29423. ]
  29424. ))
  29425. characterMakers.push(() => makeCharacter(
  29426. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29427. {
  29428. front: {
  29429. height: math.unit(5 + 7.5 / 12, "feet"),
  29430. weight: math.unit(120, "lb"),
  29431. name: "Front",
  29432. image: {
  29433. source: "./media/characters/digi-duncan/front.svg",
  29434. extra: 330 / 326,
  29435. bottom: 16 / 346
  29436. }
  29437. },
  29438. side: {
  29439. height: math.unit(5 + 7.5 / 12, "feet"),
  29440. weight: math.unit(120, "lb"),
  29441. name: "Side",
  29442. image: {
  29443. source: "./media/characters/digi-duncan/side.svg",
  29444. extra: 341 / 337,
  29445. bottom: 1 / 342
  29446. }
  29447. },
  29448. back: {
  29449. height: math.unit(5 + 7.5 / 12, "feet"),
  29450. weight: math.unit(120, "lb"),
  29451. name: "Back",
  29452. image: {
  29453. source: "./media/characters/digi-duncan/back.svg",
  29454. extra: 330 / 326,
  29455. bottom: 12 / 342
  29456. }
  29457. },
  29458. },
  29459. [
  29460. {
  29461. name: "Speck",
  29462. height: math.unit(0.25, "mm")
  29463. },
  29464. {
  29465. name: "Micro",
  29466. height: math.unit(5, "mm")
  29467. },
  29468. {
  29469. name: "Tiny",
  29470. height: math.unit(0.5, "inches"),
  29471. default: true
  29472. },
  29473. {
  29474. name: "Human",
  29475. height: math.unit(5 + 7.5 / 12, "feet")
  29476. },
  29477. {
  29478. name: "Minigiant",
  29479. height: math.unit(8 + 5.25, "feet")
  29480. },
  29481. {
  29482. name: "Giant",
  29483. height: math.unit(2000, "feet")
  29484. },
  29485. {
  29486. name: "Mega",
  29487. height: math.unit(371.1, "miles")
  29488. },
  29489. ]
  29490. ))
  29491. characterMakers.push(() => makeCharacter(
  29492. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29493. {
  29494. front: {
  29495. height: math.unit(2, "meters"),
  29496. weight: math.unit(350, "kg"),
  29497. name: "Front",
  29498. image: {
  29499. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29500. extra: 898 / 838,
  29501. bottom: 9 / 907
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "Micro",
  29508. height: math.unit(8, "meters")
  29509. },
  29510. {
  29511. name: "Normal",
  29512. height: math.unit(50, "meters"),
  29513. default: true
  29514. },
  29515. {
  29516. name: "Macro",
  29517. height: math.unit(500, "meters")
  29518. },
  29519. ]
  29520. ))
  29521. characterMakers.push(() => makeCharacter(
  29522. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29523. {
  29524. front: {
  29525. height: math.unit(6 + 6 / 12, "feet"),
  29526. name: "Front",
  29527. image: {
  29528. source: "./media/characters/khardesh/front.svg",
  29529. extra: 888 / 797,
  29530. bottom: 25 / 913
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Normal",
  29537. height: math.unit(6 + 6 / 12, "feet"),
  29538. default: true
  29539. },
  29540. {
  29541. name: "Normal+",
  29542. height: math.unit(4, "meters")
  29543. },
  29544. {
  29545. name: "Macro",
  29546. height: math.unit(50, "meters")
  29547. },
  29548. {
  29549. name: "Macro+",
  29550. height: math.unit(100, "meters")
  29551. },
  29552. {
  29553. name: "Megamacro",
  29554. height: math.unit(20, "km")
  29555. },
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29560. {
  29561. front: {
  29562. height: math.unit(6, "feet"),
  29563. weight: math.unit(150, "lb"),
  29564. name: "Front",
  29565. image: {
  29566. source: "./media/characters/kosho/front.svg",
  29567. extra: 1847 / 1847,
  29568. bottom: 86 / 1933
  29569. }
  29570. },
  29571. },
  29572. [
  29573. {
  29574. name: "Second-stage micro",
  29575. height: math.unit(0.5, "inches")
  29576. },
  29577. {
  29578. name: "First-stage micro",
  29579. height: math.unit(6, "inches")
  29580. },
  29581. {
  29582. name: "Normal",
  29583. height: math.unit(6, "feet"),
  29584. default: true
  29585. },
  29586. {
  29587. name: "First-stage macro",
  29588. height: math.unit(72, "feet")
  29589. },
  29590. {
  29591. name: "Second-stage macro",
  29592. height: math.unit(864, "feet")
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29598. {
  29599. normal: {
  29600. height: math.unit(4 + 6 / 12, "feet"),
  29601. name: "Normal",
  29602. image: {
  29603. source: "./media/characters/hydra/normal.svg",
  29604. extra: 2833 / 2634,
  29605. bottom: 68 / 2901
  29606. }
  29607. },
  29608. smol: {
  29609. height: math.unit(0.705, "inches"),
  29610. name: "Smol",
  29611. image: {
  29612. source: "./media/characters/hydra/smol.svg",
  29613. extra: 2715 / 2540,
  29614. bottom: 0 / 2715
  29615. }
  29616. },
  29617. },
  29618. [
  29619. {
  29620. name: "Normal",
  29621. height: math.unit(4 + 6 / 12, "feet"),
  29622. default: true
  29623. }
  29624. ]
  29625. ))
  29626. characterMakers.push(() => makeCharacter(
  29627. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29628. {
  29629. front: {
  29630. height: math.unit(0.6, "cm"),
  29631. name: "Front",
  29632. image: {
  29633. source: "./media/characters/daz/front.svg",
  29634. extra: 1682 / 1164,
  29635. bottom: 42 / 1724
  29636. }
  29637. },
  29638. },
  29639. [
  29640. {
  29641. name: "Normal",
  29642. height: math.unit(0.6, "cm"),
  29643. default: true
  29644. },
  29645. ]
  29646. ))
  29647. characterMakers.push(() => makeCharacter(
  29648. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29649. {
  29650. front: {
  29651. height: math.unit(6, "feet"),
  29652. weight: math.unit(235, "lb"),
  29653. name: "Front",
  29654. image: {
  29655. source: "./media/characters/theo-pangolin/front.svg",
  29656. extra: 1996 / 1969,
  29657. bottom: 115 / 2111
  29658. }
  29659. },
  29660. back: {
  29661. height: math.unit(6, "feet"),
  29662. weight: math.unit(235, "lb"),
  29663. name: "Back",
  29664. image: {
  29665. source: "./media/characters/theo-pangolin/back.svg",
  29666. extra: 1979 / 1979,
  29667. bottom: 40 / 2019
  29668. }
  29669. },
  29670. feral: {
  29671. height: math.unit(2, "feet"),
  29672. weight: math.unit(30, "lb"),
  29673. name: "Feral",
  29674. image: {
  29675. source: "./media/characters/theo-pangolin/feral.svg",
  29676. extra: 803 / 791,
  29677. bottom: 181 / 984
  29678. }
  29679. },
  29680. footFive: {
  29681. height: math.unit(1.43, "feet"),
  29682. name: "Foot (Five Toes)",
  29683. image: {
  29684. source: "./media/characters/theo-pangolin/foot-five.svg"
  29685. }
  29686. },
  29687. footFour: {
  29688. height: math.unit(1.43, "feet"),
  29689. name: "Foot (Four Toes)",
  29690. image: {
  29691. source: "./media/characters/theo-pangolin/foot-four.svg"
  29692. }
  29693. },
  29694. handFour: {
  29695. height: math.unit(0.81, "feet"),
  29696. name: "Hand (Four Fingers)",
  29697. image: {
  29698. source: "./media/characters/theo-pangolin/hand-four.svg"
  29699. }
  29700. },
  29701. handThree: {
  29702. height: math.unit(0.81, "feet"),
  29703. name: "Hand (Three Fingers)",
  29704. image: {
  29705. source: "./media/characters/theo-pangolin/hand-three.svg"
  29706. }
  29707. },
  29708. headFront: {
  29709. height: math.unit(1.37, "feet"),
  29710. name: "Head (Front)",
  29711. image: {
  29712. source: "./media/characters/theo-pangolin/head-front.svg"
  29713. }
  29714. },
  29715. headSide: {
  29716. height: math.unit(1.43, "feet"),
  29717. name: "Head (Side)",
  29718. image: {
  29719. source: "./media/characters/theo-pangolin/head-side.svg"
  29720. }
  29721. },
  29722. tongue: {
  29723. height: math.unit(2.29, "feet"),
  29724. name: "Tongue",
  29725. image: {
  29726. source: "./media/characters/theo-pangolin/tongue.svg"
  29727. }
  29728. },
  29729. },
  29730. [
  29731. {
  29732. name: "Normal",
  29733. height: math.unit(6, "feet")
  29734. },
  29735. {
  29736. name: "Macro",
  29737. height: math.unit(400, "feet"),
  29738. default: true
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(6, "inches"),
  29747. weight: math.unit(0.036, "kg"),
  29748. name: "Front",
  29749. image: {
  29750. source: "./media/characters/renée/front.svg",
  29751. extra: 900 / 886,
  29752. bottom: 8 / 908
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Nano",
  29759. height: math.unit(1, "nm")
  29760. },
  29761. {
  29762. name: "Micro",
  29763. height: math.unit(1, "mm")
  29764. },
  29765. {
  29766. name: "Normal",
  29767. height: math.unit(6, "inches")
  29768. },
  29769. {
  29770. name: "Macro",
  29771. height: math.unit(2000, "feet"),
  29772. default: true
  29773. },
  29774. {
  29775. name: "Megamacro",
  29776. height: math.unit(2, "km")
  29777. },
  29778. {
  29779. name: "Gigamacro",
  29780. height: math.unit(2000, "km")
  29781. },
  29782. {
  29783. name: "Teramacro",
  29784. height: math.unit(250000, "km")
  29785. },
  29786. ]
  29787. ))
  29788. characterMakers.push(() => makeCharacter(
  29789. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29790. {
  29791. front: {
  29792. height: math.unit(4, "meters"),
  29793. weight: math.unit(150, "kg"),
  29794. name: "Front",
  29795. image: {
  29796. source: "./media/characters/caledvwlch/front.svg",
  29797. extra: 1760 / 1551,
  29798. bottom: 28 / 1788
  29799. }
  29800. },
  29801. side: {
  29802. height: math.unit(4, "meters"),
  29803. weight: math.unit(150, "kg"),
  29804. name: "Side",
  29805. image: {
  29806. source: "./media/characters/caledvwlch/side.svg",
  29807. extra: 1605 / 1536,
  29808. bottom: 31 / 1636
  29809. }
  29810. },
  29811. back: {
  29812. height: math.unit(4, "meters"),
  29813. weight: math.unit(150, "kg"),
  29814. name: "Back",
  29815. image: {
  29816. source: "./media/characters/caledvwlch/back.svg",
  29817. extra: 1635 / 1565,
  29818. bottom: 27 / 1662
  29819. }
  29820. },
  29821. },
  29822. [
  29823. {
  29824. name: "\"Incognito\"",
  29825. height: math.unit(4, "meters")
  29826. },
  29827. {
  29828. name: "Small rampage",
  29829. height: math.unit(600, "meters")
  29830. },
  29831. {
  29832. name: "Mega",
  29833. height: math.unit(30, "km")
  29834. },
  29835. {
  29836. name: "Home-size",
  29837. height: math.unit(50, "km"),
  29838. default: true
  29839. },
  29840. {
  29841. name: "Giga",
  29842. height: math.unit(300, "km")
  29843. },
  29844. {
  29845. name: "Lounging",
  29846. height: math.unit(11000, "km")
  29847. },
  29848. {
  29849. name: "Planet snacking",
  29850. height: math.unit(2000000, "km")
  29851. },
  29852. ]
  29853. ))
  29854. characterMakers.push(() => makeCharacter(
  29855. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29856. {
  29857. front: {
  29858. height: math.unit(6, "feet"),
  29859. weight: math.unit(215, "lb"),
  29860. name: "Front",
  29861. image: {
  29862. source: "./media/characters/sapphire-svell/front.svg",
  29863. extra: 495 / 455,
  29864. bottom: 20 / 515
  29865. }
  29866. },
  29867. back: {
  29868. height: math.unit(6, "feet"),
  29869. weight: math.unit(216, "lb"),
  29870. name: "Back",
  29871. image: {
  29872. source: "./media/characters/sapphire-svell/back.svg",
  29873. extra: 497 / 477,
  29874. bottom: 7 / 504
  29875. }
  29876. },
  29877. maw: {
  29878. height: math.unit(1.57, "feet"),
  29879. name: "Maw",
  29880. image: {
  29881. source: "./media/characters/sapphire-svell/maw.svg"
  29882. }
  29883. },
  29884. foot: {
  29885. height: math.unit(1.07, "feet"),
  29886. name: "Foot",
  29887. image: {
  29888. source: "./media/characters/sapphire-svell/foot.svg"
  29889. }
  29890. },
  29891. toering: {
  29892. height: math.unit(1.7, "inch"),
  29893. name: "Toering",
  29894. image: {
  29895. source: "./media/characters/sapphire-svell/toering.svg"
  29896. }
  29897. },
  29898. },
  29899. [
  29900. {
  29901. name: "Normal",
  29902. height: math.unit(300, "feet"),
  29903. default: true
  29904. },
  29905. {
  29906. name: "Augmented",
  29907. height: math.unit(1250, "feet")
  29908. },
  29909. {
  29910. name: "Unleashed",
  29911. height: math.unit(3000, "feet")
  29912. },
  29913. ]
  29914. ))
  29915. characterMakers.push(() => makeCharacter(
  29916. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29917. {
  29918. side: {
  29919. height: math.unit(2 + 3 / 12, "feet"),
  29920. weight: math.unit(110, "lb"),
  29921. name: "Side",
  29922. image: {
  29923. source: "./media/characters/glitch-flux/side.svg",
  29924. extra: 997 / 805,
  29925. bottom: 20 / 1017
  29926. }
  29927. },
  29928. },
  29929. [
  29930. {
  29931. name: "Normal",
  29932. height: math.unit(2 + 3 / 12, "feet"),
  29933. default: true
  29934. },
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(4, "meters"),
  29942. name: "Front",
  29943. image: {
  29944. source: "./media/characters/mid/front.svg",
  29945. extra: 507 / 476,
  29946. bottom: 17 / 524
  29947. }
  29948. },
  29949. back: {
  29950. height: math.unit(4, "meters"),
  29951. name: "Back",
  29952. image: {
  29953. source: "./media/characters/mid/back.svg",
  29954. extra: 519 / 487,
  29955. bottom: 7 / 526
  29956. }
  29957. },
  29958. stuck: {
  29959. height: math.unit(2.2, "meters"),
  29960. name: "Stuck",
  29961. image: {
  29962. source: "./media/characters/mid/stuck.svg",
  29963. extra: 1951 / 1869,
  29964. bottom: 88 / 2039
  29965. }
  29966. }
  29967. },
  29968. [
  29969. {
  29970. name: "Normal",
  29971. height: math.unit(4, "meters"),
  29972. default: true
  29973. },
  29974. {
  29975. name: "Big",
  29976. height: math.unit(10, "meters")
  29977. },
  29978. {
  29979. name: "Macro",
  29980. height: math.unit(800, "meters")
  29981. },
  29982. {
  29983. name: "Megamacro",
  29984. height: math.unit(100, "km")
  29985. },
  29986. {
  29987. name: "Overgrown",
  29988. height: math.unit(1, "parsec")
  29989. },
  29990. ]
  29991. ))
  29992. characterMakers.push(() => makeCharacter(
  29993. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29994. {
  29995. front: {
  29996. height: math.unit(2.5, "meters"),
  29997. weight: math.unit(225, "kg"),
  29998. name: "Front",
  29999. image: {
  30000. source: "./media/characters/iris/front.svg",
  30001. extra: 3348 / 3251,
  30002. bottom: 205 / 3553
  30003. }
  30004. },
  30005. maw: {
  30006. height: math.unit(0.56, "meter"),
  30007. name: "Maw",
  30008. image: {
  30009. source: "./media/characters/iris/maw.svg"
  30010. }
  30011. },
  30012. },
  30013. [
  30014. {
  30015. name: "Mewter cat",
  30016. height: math.unit(1.2, "meters")
  30017. },
  30018. {
  30019. name: "Minimacro",
  30020. height: math.unit(2.5, "meters"),
  30021. default: true
  30022. },
  30023. {
  30024. name: "Macro",
  30025. height: math.unit(180, "meters")
  30026. },
  30027. {
  30028. name: "Megamacro",
  30029. height: math.unit(2746, "meters")
  30030. },
  30031. ]
  30032. ))
  30033. characterMakers.push(() => makeCharacter(
  30034. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30035. {
  30036. front: {
  30037. height: math.unit(6, "feet"),
  30038. weight: math.unit(135, "lb"),
  30039. name: "Front",
  30040. image: {
  30041. source: "./media/characters/axel/front.svg",
  30042. extra: 908 / 908,
  30043. bottom: 58 / 966
  30044. }
  30045. },
  30046. side: {
  30047. height: math.unit(6, "feet"),
  30048. weight: math.unit(135, "lb"),
  30049. name: "Side",
  30050. image: {
  30051. source: "./media/characters/axel/side.svg",
  30052. extra: 958 / 958,
  30053. bottom: 11 / 969
  30054. }
  30055. },
  30056. back: {
  30057. height: math.unit(6, "feet"),
  30058. weight: math.unit(135, "lb"),
  30059. name: "Back",
  30060. image: {
  30061. source: "./media/characters/axel/back.svg",
  30062. extra: 887 / 887,
  30063. bottom: 34 / 921
  30064. }
  30065. },
  30066. head: {
  30067. height: math.unit(1.07, "feet"),
  30068. name: "Head",
  30069. image: {
  30070. source: "./media/characters/axel/head.svg"
  30071. }
  30072. },
  30073. beak: {
  30074. height: math.unit(1.4, "feet"),
  30075. name: "Beak",
  30076. image: {
  30077. source: "./media/characters/axel/beak.svg"
  30078. }
  30079. },
  30080. beakSide: {
  30081. height: math.unit(1.4, "feet"),
  30082. name: "Beak Side",
  30083. image: {
  30084. source: "./media/characters/axel/beak-side.svg"
  30085. }
  30086. },
  30087. sheath: {
  30088. height: math.unit(0.5, "feet"),
  30089. name: "Sheath",
  30090. image: {
  30091. source: "./media/characters/axel/sheath.svg"
  30092. }
  30093. },
  30094. dick: {
  30095. height: math.unit(0.98, "feet"),
  30096. name: "Dick",
  30097. image: {
  30098. source: "./media/characters/axel/dick.svg"
  30099. }
  30100. },
  30101. },
  30102. [
  30103. {
  30104. name: "Macro",
  30105. height: math.unit(68, "meters"),
  30106. default: true
  30107. },
  30108. ]
  30109. ))
  30110. characterMakers.push(() => makeCharacter(
  30111. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30112. {
  30113. front: {
  30114. height: math.unit(3.5, "meters"),
  30115. weight: math.unit(1200, "kg"),
  30116. name: "Front",
  30117. image: {
  30118. source: "./media/characters/joanna/front.svg",
  30119. extra: 1596 / 1488,
  30120. bottom: 29 / 1625
  30121. }
  30122. },
  30123. back: {
  30124. height: math.unit(3.5, "meters"),
  30125. weight: math.unit(1200, "kg"),
  30126. name: "Back",
  30127. image: {
  30128. source: "./media/characters/joanna/back.svg",
  30129. extra: 1594 / 1495,
  30130. bottom: 26 / 1620
  30131. }
  30132. },
  30133. frontShorts: {
  30134. height: math.unit(3.5, "meters"),
  30135. weight: math.unit(1200, "kg"),
  30136. name: "Front (Shorts)",
  30137. image: {
  30138. source: "./media/characters/joanna/front-shorts.svg",
  30139. extra: 1596 / 1488,
  30140. bottom: 29 / 1625
  30141. }
  30142. },
  30143. frontBiker: {
  30144. height: math.unit(3.5, "meters"),
  30145. weight: math.unit(1200, "kg"),
  30146. name: "Front (Biker)",
  30147. image: {
  30148. source: "./media/characters/joanna/front-biker.svg",
  30149. extra: 1596 / 1488,
  30150. bottom: 29 / 1625
  30151. }
  30152. },
  30153. backBiker: {
  30154. height: math.unit(3.5, "meters"),
  30155. weight: math.unit(1200, "kg"),
  30156. name: "Back (Biker)",
  30157. image: {
  30158. source: "./media/characters/joanna/back-biker.svg",
  30159. extra: 1594 / 1495,
  30160. bottom: 88 / 1682
  30161. }
  30162. },
  30163. bikeLeft: {
  30164. height: math.unit(2.4, "meters"),
  30165. weight: math.unit(1600, "kg"),
  30166. name: "Bike (Left)",
  30167. image: {
  30168. source: "./media/characters/joanna/bike-left.svg",
  30169. extra: 720 / 720,
  30170. bottom: 8 / 728
  30171. }
  30172. },
  30173. bikeRight: {
  30174. height: math.unit(2.4, "meters"),
  30175. weight: math.unit(1600, "kg"),
  30176. name: "Bike (Right)",
  30177. image: {
  30178. source: "./media/characters/joanna/bike-right.svg",
  30179. extra: 720 / 720,
  30180. bottom: 8 / 728
  30181. }
  30182. },
  30183. },
  30184. [
  30185. {
  30186. name: "Incognito",
  30187. height: math.unit(3.5, "meters")
  30188. },
  30189. {
  30190. name: "Casual Big",
  30191. height: math.unit(200, "meters")
  30192. },
  30193. {
  30194. name: "Macro",
  30195. height: math.unit(600, "meters")
  30196. },
  30197. {
  30198. name: "Original",
  30199. height: math.unit(20, "km"),
  30200. default: true
  30201. },
  30202. {
  30203. name: "Giga",
  30204. height: math.unit(400, "km")
  30205. },
  30206. {
  30207. name: "Lounging",
  30208. height: math.unit(1500, "km")
  30209. },
  30210. {
  30211. name: "Planetary",
  30212. height: math.unit(200000, "km")
  30213. },
  30214. ]
  30215. ))
  30216. characterMakers.push(() => makeCharacter(
  30217. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30218. {
  30219. front: {
  30220. height: math.unit(6, "feet"),
  30221. weight: math.unit(150, "lb"),
  30222. name: "Front",
  30223. image: {
  30224. source: "./media/characters/hugo-sigil/front.svg",
  30225. extra: 522 / 500,
  30226. bottom: 2 / 524
  30227. }
  30228. },
  30229. back: {
  30230. height: math.unit(6, "feet"),
  30231. weight: math.unit(150, "lb"),
  30232. name: "Back",
  30233. image: {
  30234. source: "./media/characters/hugo-sigil/back.svg",
  30235. extra: 519 / 495,
  30236. bottom: 5 / 524
  30237. }
  30238. },
  30239. maw: {
  30240. height: math.unit(1.4, "feet"),
  30241. weight: math.unit(150, "lb"),
  30242. name: "Maw",
  30243. image: {
  30244. source: "./media/characters/hugo-sigil/maw.svg"
  30245. }
  30246. },
  30247. feet: {
  30248. height: math.unit(1.56, "feet"),
  30249. weight: math.unit(150, "lb"),
  30250. name: "Feet",
  30251. image: {
  30252. source: "./media/characters/hugo-sigil/feet.svg",
  30253. extra: 177 / 177,
  30254. bottom: 12 / 189
  30255. }
  30256. },
  30257. },
  30258. [
  30259. {
  30260. name: "Normal",
  30261. height: math.unit(6, "feet")
  30262. },
  30263. {
  30264. name: "Macro",
  30265. height: math.unit(200, "feet"),
  30266. default: true
  30267. },
  30268. ]
  30269. ))
  30270. characterMakers.push(() => makeCharacter(
  30271. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30272. {
  30273. front: {
  30274. height: math.unit(6, "feet"),
  30275. weight: math.unit(150, "lb"),
  30276. name: "Front",
  30277. image: {
  30278. source: "./media/characters/peri/front.svg",
  30279. extra: 2354 / 2233,
  30280. bottom: 49 / 2403
  30281. }
  30282. },
  30283. },
  30284. [
  30285. {
  30286. name: "Really Small",
  30287. height: math.unit(1, "nm")
  30288. },
  30289. {
  30290. name: "Micro",
  30291. height: math.unit(4, "inches")
  30292. },
  30293. {
  30294. name: "Normal",
  30295. height: math.unit(7, "inches"),
  30296. default: true
  30297. },
  30298. {
  30299. name: "Macro",
  30300. height: math.unit(400, "feet")
  30301. },
  30302. {
  30303. name: "Megamacro",
  30304. height: math.unit(100, "miles")
  30305. },
  30306. ]
  30307. ))
  30308. characterMakers.push(() => makeCharacter(
  30309. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30310. {
  30311. frontSlim: {
  30312. height: math.unit(7, "feet"),
  30313. name: "Front (Slim)",
  30314. image: {
  30315. source: "./media/characters/issilora/front-slim.svg",
  30316. extra: 529 / 449,
  30317. bottom: 53 / 582
  30318. }
  30319. },
  30320. sideSlim: {
  30321. height: math.unit(7, "feet"),
  30322. name: "Side (Slim)",
  30323. image: {
  30324. source: "./media/characters/issilora/side-slim.svg",
  30325. extra: 570 / 480,
  30326. bottom: 30 / 600
  30327. }
  30328. },
  30329. backSlim: {
  30330. height: math.unit(7, "feet"),
  30331. name: "Back (Slim)",
  30332. image: {
  30333. source: "./media/characters/issilora/back-slim.svg",
  30334. extra: 537 / 455,
  30335. bottom: 46 / 583
  30336. }
  30337. },
  30338. frontBuff: {
  30339. height: math.unit(7, "feet"),
  30340. name: "Front (Buff)",
  30341. image: {
  30342. source: "./media/characters/issilora/front-buff.svg",
  30343. extra: 2310 / 2035,
  30344. bottom: 335 / 2645
  30345. }
  30346. },
  30347. head: {
  30348. height: math.unit(1.94, "feet"),
  30349. name: "Head",
  30350. image: {
  30351. source: "./media/characters/issilora/head.svg"
  30352. }
  30353. },
  30354. },
  30355. [
  30356. {
  30357. name: "Minimum",
  30358. height: math.unit(7, "feet")
  30359. },
  30360. {
  30361. name: "Comfortable",
  30362. height: math.unit(17, "feet")
  30363. },
  30364. {
  30365. name: "Fun Size",
  30366. height: math.unit(47, "feet")
  30367. },
  30368. {
  30369. name: "Natural Macro",
  30370. height: math.unit(137, "feet"),
  30371. default: true
  30372. },
  30373. {
  30374. name: "Maximum Kaiju",
  30375. height: math.unit(397, "feet")
  30376. },
  30377. ]
  30378. ))
  30379. characterMakers.push(() => makeCharacter(
  30380. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30381. {
  30382. front: {
  30383. height: math.unit(50 + 9/12, "feet"),
  30384. weight: math.unit(32.8, "tons"),
  30385. name: "Front",
  30386. image: {
  30387. source: "./media/characters/irb'iiritaahn/front.svg",
  30388. extra: 1878/1826,
  30389. bottom: 326/2204
  30390. }
  30391. },
  30392. back: {
  30393. height: math.unit(50 + 9/12, "feet"),
  30394. weight: math.unit(32.8, "tons"),
  30395. name: "Back",
  30396. image: {
  30397. source: "./media/characters/irb'iiritaahn/back.svg",
  30398. extra: 2052/2018,
  30399. bottom: 152/2204
  30400. }
  30401. },
  30402. head: {
  30403. height: math.unit(12.86, "feet"),
  30404. name: "Head",
  30405. image: {
  30406. source: "./media/characters/irb'iiritaahn/head.svg"
  30407. }
  30408. },
  30409. maw: {
  30410. height: math.unit(9.66, "feet"),
  30411. name: "Maw",
  30412. image: {
  30413. source: "./media/characters/irb'iiritaahn/maw.svg"
  30414. }
  30415. },
  30416. frontDick: {
  30417. height: math.unit(8.78461, "feet"),
  30418. name: "Front Dick",
  30419. image: {
  30420. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30421. }
  30422. },
  30423. rearDick: {
  30424. height: math.unit(8.78461, "feet"),
  30425. name: "Rear Dick",
  30426. image: {
  30427. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30428. }
  30429. },
  30430. rearDickUnfolded: {
  30431. height: math.unit(8.78, "feet"),
  30432. name: "Rear Dick (Unfolded)",
  30433. image: {
  30434. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30435. }
  30436. },
  30437. wings: {
  30438. height: math.unit(43, "feet"),
  30439. name: "Wings",
  30440. image: {
  30441. source: "./media/characters/irb'iiritaahn/wings.svg"
  30442. }
  30443. },
  30444. },
  30445. [
  30446. {
  30447. name: "Macro",
  30448. height: math.unit(50 + 9/12, "feet"),
  30449. default: true
  30450. },
  30451. ]
  30452. ))
  30453. characterMakers.push(() => makeCharacter(
  30454. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30455. {
  30456. front: {
  30457. height: math.unit(205, "cm"),
  30458. weight: math.unit(102, "kg"),
  30459. name: "Front",
  30460. image: {
  30461. source: "./media/characters/irbisgreif/front.svg",
  30462. extra: 785/706,
  30463. bottom: 13/798
  30464. }
  30465. },
  30466. back: {
  30467. height: math.unit(205, "cm"),
  30468. weight: math.unit(102, "kg"),
  30469. name: "Back",
  30470. image: {
  30471. source: "./media/characters/irbisgreif/back.svg",
  30472. extra: 713/701,
  30473. bottom: 26/739
  30474. }
  30475. },
  30476. frontDressed: {
  30477. height: math.unit(216, "cm"),
  30478. weight: math.unit(102, "kg"),
  30479. name: "Front-dressed",
  30480. image: {
  30481. source: "./media/characters/irbisgreif/front-dressed.svg",
  30482. extra: 902/776,
  30483. bottom: 14/916
  30484. }
  30485. },
  30486. sideDressed: {
  30487. height: math.unit(195, "cm"),
  30488. weight: math.unit(102, "kg"),
  30489. name: "Side-dressed",
  30490. image: {
  30491. source: "./media/characters/irbisgreif/side-dressed.svg",
  30492. extra: 788/688,
  30493. bottom: 21/809
  30494. }
  30495. },
  30496. backDressed: {
  30497. height: math.unit(216, "cm"),
  30498. weight: math.unit(102, "kg"),
  30499. name: "Back-dressed",
  30500. image: {
  30501. source: "./media/characters/irbisgreif/back-dressed.svg",
  30502. extra: 901/783,
  30503. bottom: 10/911
  30504. }
  30505. },
  30506. dick: {
  30507. height: math.unit(0.49, "feet"),
  30508. name: "Dick",
  30509. image: {
  30510. source: "./media/characters/irbisgreif/dick.svg"
  30511. }
  30512. },
  30513. wingTop: {
  30514. height: math.unit(1.93 , "feet"),
  30515. name: "Wing-top",
  30516. image: {
  30517. source: "./media/characters/irbisgreif/wing-top.svg"
  30518. }
  30519. },
  30520. wingBottom: {
  30521. height: math.unit(1.93 , "feet"),
  30522. name: "Wing-bottom",
  30523. image: {
  30524. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30525. }
  30526. },
  30527. },
  30528. [
  30529. {
  30530. name: "Normal",
  30531. height: math.unit(216, "cm"),
  30532. default: true
  30533. },
  30534. ]
  30535. ))
  30536. characterMakers.push(() => makeCharacter(
  30537. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30538. {
  30539. front: {
  30540. height: math.unit(6, "feet"),
  30541. weight: math.unit(150, "lb"),
  30542. name: "Front",
  30543. image: {
  30544. source: "./media/characters/pride/front.svg",
  30545. extra: 1299/1230,
  30546. bottom: 18/1317
  30547. }
  30548. },
  30549. },
  30550. [
  30551. {
  30552. name: "Normal",
  30553. height: math.unit(7, "feet")
  30554. },
  30555. {
  30556. name: "Mini-macro",
  30557. height: math.unit(11, "feet")
  30558. },
  30559. {
  30560. name: "Macro",
  30561. height: math.unit(15, "meters"),
  30562. default: true
  30563. },
  30564. {
  30565. name: "Macro+",
  30566. height: math.unit(40, "meters")
  30567. },
  30568. ]
  30569. ))
  30570. characterMakers.push(() => makeCharacter(
  30571. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30572. {
  30573. front: {
  30574. height: math.unit(4 + 2 / 12, "feet"),
  30575. weight: math.unit(95, "lb"),
  30576. name: "Front",
  30577. image: {
  30578. source: "./media/characters/vaelophis-nyx/front.svg",
  30579. extra: 2532/2330,
  30580. bottom: 0/2532
  30581. }
  30582. },
  30583. back: {
  30584. height: math.unit(4 + 2 / 12, "feet"),
  30585. weight: math.unit(95, "lb"),
  30586. name: "Back",
  30587. image: {
  30588. source: "./media/characters/vaelophis-nyx/back.svg",
  30589. extra: 2484/2361,
  30590. bottom: 0/2484
  30591. }
  30592. },
  30593. feralSide: {
  30594. height: math.unit(2 + 1/12, "feet"),
  30595. weight: math.unit(20, "lb"),
  30596. name: "Feral (Side)",
  30597. image: {
  30598. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30599. extra: 1721/1581,
  30600. bottom: 70/1791
  30601. }
  30602. },
  30603. feralLazing: {
  30604. height: math.unit(1.08, "feet"),
  30605. weight: math.unit(20, "lb"),
  30606. name: "Feral (Lazing)",
  30607. image: {
  30608. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30609. extra: 822/822,
  30610. bottom: 248/1070
  30611. }
  30612. },
  30613. ear: {
  30614. height: math.unit(0.416, "feet"),
  30615. name: "Ear",
  30616. image: {
  30617. source: "./media/characters/vaelophis-nyx/ear.svg"
  30618. }
  30619. },
  30620. eye: {
  30621. height: math.unit(0.0748, "feet"),
  30622. name: "Eye",
  30623. image: {
  30624. source: "./media/characters/vaelophis-nyx/eye.svg"
  30625. }
  30626. },
  30627. mouth: {
  30628. height: math.unit(0.378, "feet"),
  30629. name: "Mouth",
  30630. image: {
  30631. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30632. }
  30633. },
  30634. spade: {
  30635. height: math.unit(0.55, "feet"),
  30636. name: "Spade",
  30637. image: {
  30638. source: "./media/characters/vaelophis-nyx/spade.svg"
  30639. }
  30640. },
  30641. },
  30642. [
  30643. {
  30644. name: "Normal",
  30645. height: math.unit(4 + 2/12, "feet"),
  30646. default: true
  30647. },
  30648. ]
  30649. ))
  30650. characterMakers.push(() => makeCharacter(
  30651. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30652. {
  30653. front: {
  30654. height: math.unit(7, "feet"),
  30655. weight: math.unit(231, "lb"),
  30656. name: "Front",
  30657. image: {
  30658. source: "./media/characters/flux/front.svg",
  30659. extra: 919/871,
  30660. bottom: 0/919
  30661. }
  30662. },
  30663. back: {
  30664. height: math.unit(7, "feet"),
  30665. weight: math.unit(231, "lb"),
  30666. name: "Back",
  30667. image: {
  30668. source: "./media/characters/flux/back.svg",
  30669. extra: 1040/992,
  30670. bottom: 0/1040
  30671. }
  30672. },
  30673. frontDressed: {
  30674. height: math.unit(7, "feet"),
  30675. weight: math.unit(231, "lb"),
  30676. name: "Front (Dressed)",
  30677. image: {
  30678. source: "./media/characters/flux/front-dressed.svg",
  30679. extra: 919/871,
  30680. bottom: 0/919
  30681. }
  30682. },
  30683. feralSide: {
  30684. height: math.unit(5, "feet"),
  30685. weight: math.unit(150, "lb"),
  30686. name: "Feral (Side)",
  30687. image: {
  30688. source: "./media/characters/flux/feral-side.svg",
  30689. extra: 598/528,
  30690. bottom: 28/626
  30691. }
  30692. },
  30693. head: {
  30694. height: math.unit(1.585, "feet"),
  30695. name: "Head",
  30696. image: {
  30697. source: "./media/characters/flux/head.svg"
  30698. }
  30699. },
  30700. headSide: {
  30701. height: math.unit(1.74, "feet"),
  30702. name: "Head (Side)",
  30703. image: {
  30704. source: "./media/characters/flux/head-side.svg"
  30705. }
  30706. },
  30707. headSideFire: {
  30708. height: math.unit(1.76, "feet"),
  30709. name: "Head (Side, Fire)",
  30710. image: {
  30711. source: "./media/characters/flux/head-side-fire.svg"
  30712. }
  30713. },
  30714. },
  30715. [
  30716. {
  30717. name: "Normal",
  30718. height: math.unit(7, "feet"),
  30719. default: true
  30720. },
  30721. ]
  30722. ))
  30723. characterMakers.push(() => makeCharacter(
  30724. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30725. {
  30726. front: {
  30727. height: math.unit(9, "feet"),
  30728. weight: math.unit(1012, "lb"),
  30729. name: "Front",
  30730. image: {
  30731. source: "./media/characters/ulfra-lupae/front.svg",
  30732. extra: 1083/1011,
  30733. bottom: 67/1150
  30734. }
  30735. },
  30736. },
  30737. [
  30738. {
  30739. name: "Micro",
  30740. height: math.unit(6, "inches")
  30741. },
  30742. {
  30743. name: "Socializing",
  30744. height: math.unit(6 + 5/12, "feet")
  30745. },
  30746. {
  30747. name: "Normal",
  30748. height: math.unit(9, "feet"),
  30749. default: true
  30750. },
  30751. {
  30752. name: "Macro",
  30753. height: math.unit(150, "feet")
  30754. },
  30755. ]
  30756. ))
  30757. characterMakers.push(() => makeCharacter(
  30758. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30759. {
  30760. front: {
  30761. height: math.unit(5 + 2/12, "feet"),
  30762. weight: math.unit(120, "lb"),
  30763. name: "Front",
  30764. image: {
  30765. source: "./media/characters/timber/front.svg",
  30766. extra: 2814/2705,
  30767. bottom: 181/2995
  30768. }
  30769. },
  30770. },
  30771. [
  30772. {
  30773. name: "Normal",
  30774. height: math.unit(5 + 2/12, "feet"),
  30775. default: true
  30776. },
  30777. ]
  30778. ))
  30779. characterMakers.push(() => makeCharacter(
  30780. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30781. {
  30782. front: {
  30783. height: math.unit(5 + 7/12, "feet"),
  30784. weight: math.unit(220, "lb"),
  30785. name: "Front",
  30786. image: {
  30787. source: "./media/characters/nicki/front.svg",
  30788. extra: 453/419,
  30789. bottom: 7/460
  30790. }
  30791. },
  30792. frontAlt: {
  30793. height: math.unit(5 + 7/12, "feet"),
  30794. weight: math.unit(220, "lb"),
  30795. name: "Front-alt",
  30796. image: {
  30797. source: "./media/characters/nicki/front-alt.svg",
  30798. extra: 435/411,
  30799. bottom: 12/447
  30800. }
  30801. },
  30802. back: {
  30803. height: math.unit(5 + 7/12, "feet"),
  30804. weight: math.unit(220, "lb"),
  30805. name: "Back",
  30806. image: {
  30807. source: "./media/characters/nicki/back.svg",
  30808. extra: 440/413,
  30809. bottom: 19/459
  30810. }
  30811. },
  30812. taur: {
  30813. height: math.unit(7 + 6/12, "feet"),
  30814. weight: math.unit(700, "lb"),
  30815. name: "Taur",
  30816. image: {
  30817. source: "./media/characters/nicki/taur.svg",
  30818. extra: 975/773,
  30819. bottom: 0/975
  30820. }
  30821. },
  30822. frontNsfw: {
  30823. height: math.unit(5 + 7/12, "feet"),
  30824. weight: math.unit(220, "lb"),
  30825. name: "Front (NSFW)",
  30826. image: {
  30827. source: "./media/characters/nicki/front-nsfw.svg",
  30828. extra: 453/419,
  30829. bottom: 7/460
  30830. }
  30831. },
  30832. frontNsfwAlt: {
  30833. height: math.unit(5 + 7/12, "feet"),
  30834. weight: math.unit(220, "lb"),
  30835. name: "Front (Alt, NSFW)",
  30836. image: {
  30837. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30838. extra: 435/411,
  30839. bottom: 12/447
  30840. }
  30841. },
  30842. backNsfw: {
  30843. height: math.unit(5 + 7/12, "feet"),
  30844. weight: math.unit(220, "lb"),
  30845. name: "Back (NSFW)",
  30846. image: {
  30847. source: "./media/characters/nicki/back-nsfw.svg",
  30848. extra: 440/413,
  30849. bottom: 19/459
  30850. }
  30851. },
  30852. head: {
  30853. height: math.unit(2.1, "feet"),
  30854. name: "Head",
  30855. image: {
  30856. source: "./media/characters/nicki/head.svg"
  30857. }
  30858. },
  30859. paw: {
  30860. height: math.unit(1.88, "feet"),
  30861. name: "Paw",
  30862. image: {
  30863. source: "./media/characters/nicki/paw.svg"
  30864. }
  30865. },
  30866. },
  30867. [
  30868. {
  30869. name: "Normal",
  30870. height: math.unit(5 + 7/12, "feet"),
  30871. default: true
  30872. },
  30873. ]
  30874. ))
  30875. characterMakers.push(() => makeCharacter(
  30876. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30877. {
  30878. front: {
  30879. height: math.unit(7 + 10/12, "feet"),
  30880. weight: math.unit(3.5, "tons"),
  30881. name: "Front",
  30882. image: {
  30883. source: "./media/characters/lee/front.svg",
  30884. extra: 1773/1615,
  30885. bottom: 86/1859
  30886. }
  30887. },
  30888. hand: {
  30889. height: math.unit(1.78, "feet"),
  30890. name: "Hand",
  30891. image: {
  30892. source: "./media/characters/lee/hand.svg"
  30893. }
  30894. },
  30895. maw: {
  30896. height: math.unit(1.18, "feet"),
  30897. name: "Maw",
  30898. image: {
  30899. source: "./media/characters/lee/maw.svg"
  30900. }
  30901. },
  30902. },
  30903. [
  30904. {
  30905. name: "Normal",
  30906. height: math.unit(7 + 10/12, "feet"),
  30907. default: true
  30908. },
  30909. ]
  30910. ))
  30911. characterMakers.push(() => makeCharacter(
  30912. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30913. {
  30914. front: {
  30915. height: math.unit(9, "feet"),
  30916. name: "Front",
  30917. image: {
  30918. source: "./media/characters/guti/front.svg",
  30919. extra: 4551/4355,
  30920. bottom: 123/4674
  30921. }
  30922. },
  30923. tongue: {
  30924. height: math.unit(1, "feet"),
  30925. name: "Tongue",
  30926. image: {
  30927. source: "./media/characters/guti/tongue.svg"
  30928. }
  30929. },
  30930. paw: {
  30931. height: math.unit(1.18, "feet"),
  30932. name: "Paw",
  30933. image: {
  30934. source: "./media/characters/guti/paw.svg"
  30935. }
  30936. },
  30937. },
  30938. [
  30939. {
  30940. name: "Normal",
  30941. height: math.unit(9, "feet"),
  30942. default: true
  30943. },
  30944. ]
  30945. ))
  30946. characterMakers.push(() => makeCharacter(
  30947. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30948. {
  30949. side: {
  30950. height: math.unit(5, "meters"),
  30951. name: "Side",
  30952. image: {
  30953. source: "./media/characters/vesper/side.svg",
  30954. extra: 1605/1518,
  30955. bottom: 0/1605
  30956. }
  30957. },
  30958. },
  30959. [
  30960. {
  30961. name: "Small",
  30962. height: math.unit(5, "meters")
  30963. },
  30964. {
  30965. name: "Sage",
  30966. height: math.unit(100, "meters"),
  30967. default: true
  30968. },
  30969. {
  30970. name: "Fun Size",
  30971. height: math.unit(600, "meters")
  30972. },
  30973. {
  30974. name: "Goddess",
  30975. height: math.unit(20000, "km")
  30976. },
  30977. {
  30978. name: "Maximum",
  30979. height: math.unit(5, "galaxies")
  30980. },
  30981. ]
  30982. ))
  30983. characterMakers.push(() => makeCharacter(
  30984. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30985. {
  30986. front: {
  30987. height: math.unit(6 + 3/12, "feet"),
  30988. weight: math.unit(190, "lb"),
  30989. name: "Front",
  30990. image: {
  30991. source: "./media/characters/gawain/front.svg",
  30992. extra: 2222/2139,
  30993. bottom: 90/2312
  30994. }
  30995. },
  30996. back: {
  30997. height: math.unit(6 + 3/12, "feet"),
  30998. weight: math.unit(190, "lb"),
  30999. name: "Back",
  31000. image: {
  31001. source: "./media/characters/gawain/back.svg",
  31002. extra: 2199/2111,
  31003. bottom: 73/2272
  31004. }
  31005. },
  31006. },
  31007. [
  31008. {
  31009. name: "Normal",
  31010. height: math.unit(6 + 3/12, "feet"),
  31011. default: true
  31012. },
  31013. ]
  31014. ))
  31015. characterMakers.push(() => makeCharacter(
  31016. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31017. {
  31018. side: {
  31019. height: math.unit(3.5, "meters"),
  31020. weight: math.unit(16000, "lb"),
  31021. name: "Side",
  31022. image: {
  31023. source: "./media/characters/dascalti/side.svg",
  31024. extra: 392/273,
  31025. bottom: 47/439
  31026. }
  31027. },
  31028. breath: {
  31029. height: math.unit(7.4, "feet"),
  31030. name: "Breath",
  31031. image: {
  31032. source: "./media/characters/dascalti/breath.svg"
  31033. }
  31034. },
  31035. fed: {
  31036. height: math.unit(3.6, "meters"),
  31037. weight: math.unit(16000, "lb"),
  31038. name: "Fed",
  31039. image: {
  31040. source: "./media/characters/dascalti/fed.svg",
  31041. extra: 1419/820,
  31042. bottom: 95/1514
  31043. }
  31044. },
  31045. },
  31046. [
  31047. {
  31048. name: "Normal",
  31049. height: math.unit(3.5, "meters"),
  31050. default: true
  31051. },
  31052. ]
  31053. ))
  31054. characterMakers.push(() => makeCharacter(
  31055. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31056. {
  31057. front: {
  31058. height: math.unit(3 + 5/12, "feet"),
  31059. name: "Front",
  31060. image: {
  31061. source: "./media/characters/mauve/front.svg",
  31062. extra: 1126/1033,
  31063. bottom: 65/1191
  31064. }
  31065. },
  31066. side: {
  31067. height: math.unit(3 + 5/12, "feet"),
  31068. name: "Side",
  31069. image: {
  31070. source: "./media/characters/mauve/side.svg",
  31071. extra: 1089/1001,
  31072. bottom: 29/1118
  31073. }
  31074. },
  31075. back: {
  31076. height: math.unit(3 + 5/12, "feet"),
  31077. name: "Back",
  31078. image: {
  31079. source: "./media/characters/mauve/back.svg",
  31080. extra: 1173/1053,
  31081. bottom: 109/1282
  31082. }
  31083. },
  31084. },
  31085. [
  31086. {
  31087. name: "Normal",
  31088. height: math.unit(3 + 5/12, "feet"),
  31089. default: true
  31090. },
  31091. ]
  31092. ))
  31093. characterMakers.push(() => makeCharacter(
  31094. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31095. {
  31096. front: {
  31097. height: math.unit(6 + 3/12, "feet"),
  31098. weight: math.unit(430, "lb"),
  31099. name: "Front",
  31100. image: {
  31101. source: "./media/characters/carlos/front.svg",
  31102. extra: 1964/1913,
  31103. bottom: 70/2034
  31104. }
  31105. },
  31106. },
  31107. [
  31108. {
  31109. name: "Normal",
  31110. height: math.unit(6 + 3/12, "feet"),
  31111. default: true
  31112. },
  31113. ]
  31114. ))
  31115. characterMakers.push(() => makeCharacter(
  31116. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31117. {
  31118. back: {
  31119. height: math.unit(5 + 10/12, "feet"),
  31120. weight: math.unit(200, "lb"),
  31121. name: "Back",
  31122. image: {
  31123. source: "./media/characters/jax/back.svg",
  31124. extra: 764/739,
  31125. bottom: 25/789
  31126. }
  31127. },
  31128. },
  31129. [
  31130. {
  31131. name: "Normal",
  31132. height: math.unit(5 + 10/12, "feet"),
  31133. default: true
  31134. },
  31135. ]
  31136. ))
  31137. characterMakers.push(() => makeCharacter(
  31138. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31139. {
  31140. front: {
  31141. height: math.unit(8, "feet"),
  31142. weight: math.unit(250, "lb"),
  31143. name: "Front",
  31144. image: {
  31145. source: "./media/characters/eikthynir/front.svg",
  31146. extra: 1332/1166,
  31147. bottom: 82/1414
  31148. }
  31149. },
  31150. back: {
  31151. height: math.unit(8, "feet"),
  31152. weight: math.unit(250, "lb"),
  31153. name: "Back",
  31154. image: {
  31155. source: "./media/characters/eikthynir/back.svg",
  31156. extra: 1342/1190,
  31157. bottom: 19/1361
  31158. }
  31159. },
  31160. dick: {
  31161. height: math.unit(2.35, "feet"),
  31162. name: "Dick",
  31163. image: {
  31164. source: "./media/characters/eikthynir/dick.svg"
  31165. }
  31166. },
  31167. },
  31168. [
  31169. {
  31170. name: "Normal",
  31171. height: math.unit(8, "feet"),
  31172. default: true
  31173. },
  31174. ]
  31175. ))
  31176. characterMakers.push(() => makeCharacter(
  31177. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31178. {
  31179. front: {
  31180. height: math.unit(99, "meters"),
  31181. weight: math.unit(13000, "tons"),
  31182. name: "Front",
  31183. image: {
  31184. source: "./media/characters/zlmos/front.svg",
  31185. extra: 2202/1992,
  31186. bottom: 315/2517
  31187. }
  31188. },
  31189. },
  31190. [
  31191. {
  31192. name: "Macro",
  31193. height: math.unit(99, "meters"),
  31194. default: true
  31195. },
  31196. ]
  31197. ))
  31198. characterMakers.push(() => makeCharacter(
  31199. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31200. {
  31201. front: {
  31202. height: math.unit(6 + 5/12, "feet"),
  31203. name: "Front",
  31204. image: {
  31205. source: "./media/characters/purri/front.svg",
  31206. extra: 1698/1610,
  31207. bottom: 32/1730
  31208. }
  31209. },
  31210. frontAlt: {
  31211. height: math.unit(6 + 5/12, "feet"),
  31212. name: "Front (Alt)",
  31213. image: {
  31214. source: "./media/characters/purri/front-alt.svg",
  31215. extra: 450/420,
  31216. bottom: 26/476
  31217. }
  31218. },
  31219. boots: {
  31220. height: math.unit(5.5, "feet"),
  31221. name: "Boots",
  31222. image: {
  31223. source: "./media/characters/purri/boots.svg",
  31224. extra: 905/853,
  31225. bottom: 18/923
  31226. }
  31227. },
  31228. lying: {
  31229. height: math.unit(2, "feet"),
  31230. name: "Lying",
  31231. image: {
  31232. source: "./media/characters/purri/lying.svg",
  31233. extra: 940/843,
  31234. bottom: 146/1086
  31235. }
  31236. },
  31237. devious: {
  31238. height: math.unit(1.77, "feet"),
  31239. name: "Devious",
  31240. image: {
  31241. source: "./media/characters/purri/devious.svg",
  31242. extra: 1440/1155,
  31243. bottom: 147/1587
  31244. }
  31245. },
  31246. bean: {
  31247. height: math.unit(1.94, "feet"),
  31248. name: "Bean",
  31249. image: {
  31250. source: "./media/characters/purri/bean.svg"
  31251. }
  31252. },
  31253. },
  31254. [
  31255. {
  31256. name: "Micro",
  31257. height: math.unit(1, "mm")
  31258. },
  31259. {
  31260. name: "Normal",
  31261. height: math.unit(6 + 5/12, "feet"),
  31262. default: true
  31263. },
  31264. {
  31265. name: "Macro :3c",
  31266. height: math.unit(2, "miles")
  31267. },
  31268. ]
  31269. ))
  31270. characterMakers.push(() => makeCharacter(
  31271. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31272. {
  31273. front: {
  31274. height: math.unit(6 + 2/12, "feet"),
  31275. weight: math.unit(250, "lb"),
  31276. name: "Front",
  31277. image: {
  31278. source: "./media/characters/moonlight/front.svg",
  31279. extra: 1044/908,
  31280. bottom: 56/1100
  31281. }
  31282. },
  31283. feral: {
  31284. height: math.unit(3 + 1/12, "feet"),
  31285. weight: math.unit(50, "kg"),
  31286. name: "Feral",
  31287. image: {
  31288. source: "./media/characters/moonlight/feral.svg",
  31289. extra: 3705/2791,
  31290. bottom: 145/3850
  31291. }
  31292. },
  31293. paw: {
  31294. height: math.unit(1, "feet"),
  31295. name: "Paw",
  31296. image: {
  31297. source: "./media/characters/moonlight/paw.svg"
  31298. }
  31299. },
  31300. paws: {
  31301. height: math.unit(0.98, "feet"),
  31302. name: "Paws",
  31303. image: {
  31304. source: "./media/characters/moonlight/paws.svg",
  31305. extra: 939/939,
  31306. bottom: 50/989
  31307. }
  31308. },
  31309. mouth: {
  31310. height: math.unit(0.48, "feet"),
  31311. name: "Mouth",
  31312. image: {
  31313. source: "./media/characters/moonlight/mouth.svg"
  31314. }
  31315. },
  31316. dick: {
  31317. height: math.unit(1.46, "feet"),
  31318. name: "Dick",
  31319. image: {
  31320. source: "./media/characters/moonlight/dick.svg"
  31321. }
  31322. },
  31323. },
  31324. [
  31325. {
  31326. name: "Normal",
  31327. height: math.unit(6 + 2/12, "feet"),
  31328. default: true
  31329. },
  31330. {
  31331. name: "Macro",
  31332. height: math.unit(300, "feet")
  31333. },
  31334. {
  31335. name: "Macro+",
  31336. height: math.unit(1, "mile")
  31337. },
  31338. {
  31339. name: "Mt. Moon",
  31340. height: math.unit(5, "miles")
  31341. },
  31342. {
  31343. name: "Megamacro",
  31344. height: math.unit(15, "miles")
  31345. },
  31346. ]
  31347. ))
  31348. characterMakers.push(() => makeCharacter(
  31349. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31350. {
  31351. back: {
  31352. height: math.unit(6, "feet"),
  31353. weight: math.unit(150, "lb"),
  31354. name: "Back",
  31355. image: {
  31356. source: "./media/characters/sylen/back.svg",
  31357. extra: 1335/1273,
  31358. bottom: 107/1442
  31359. }
  31360. },
  31361. },
  31362. [
  31363. {
  31364. name: "Normal",
  31365. height: math.unit(5 + 5/12, "feet")
  31366. },
  31367. {
  31368. name: "Megamacro",
  31369. height: math.unit(3, "miles"),
  31370. default: true
  31371. },
  31372. ]
  31373. ))
  31374. characterMakers.push(() => makeCharacter(
  31375. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31376. {
  31377. front: {
  31378. height: math.unit(6, "feet"),
  31379. weight: math.unit(190, "lb"),
  31380. name: "Front",
  31381. image: {
  31382. source: "./media/characters/huttser/front.svg",
  31383. extra: 1152/1058,
  31384. bottom: 23/1175
  31385. }
  31386. },
  31387. side: {
  31388. height: math.unit(6, "feet"),
  31389. weight: math.unit(190, "lb"),
  31390. name: "Side",
  31391. image: {
  31392. source: "./media/characters/huttser/side.svg",
  31393. extra: 1174/1065,
  31394. bottom: 18/1192
  31395. }
  31396. },
  31397. back: {
  31398. height: math.unit(6, "feet"),
  31399. weight: math.unit(190, "lb"),
  31400. name: "Back",
  31401. image: {
  31402. source: "./media/characters/huttser/back.svg",
  31403. extra: 1158/1056,
  31404. bottom: 12/1170
  31405. }
  31406. },
  31407. },
  31408. [
  31409. ]
  31410. ))
  31411. characterMakers.push(() => makeCharacter(
  31412. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31413. {
  31414. side: {
  31415. height: math.unit(12 + 9/12, "feet"),
  31416. weight: math.unit(15000, "lb"),
  31417. name: "Side",
  31418. image: {
  31419. source: "./media/characters/faan/side.svg",
  31420. extra: 2747/2697,
  31421. bottom: 0/2747
  31422. }
  31423. },
  31424. front: {
  31425. height: math.unit(12 + 9/12, "feet"),
  31426. weight: math.unit(15000, "lb"),
  31427. name: "Front",
  31428. image: {
  31429. source: "./media/characters/faan/front.svg",
  31430. extra: 607/571,
  31431. bottom: 24/631
  31432. }
  31433. },
  31434. head: {
  31435. height: math.unit(2.85, "feet"),
  31436. name: "Head",
  31437. image: {
  31438. source: "./media/characters/faan/head.svg"
  31439. }
  31440. },
  31441. headAlt: {
  31442. height: math.unit(3.13, "feet"),
  31443. name: "Head-alt",
  31444. image: {
  31445. source: "./media/characters/faan/head-alt.svg"
  31446. }
  31447. },
  31448. },
  31449. [
  31450. {
  31451. name: "Normal",
  31452. height: math.unit(12 + 9/12, "feet"),
  31453. default: true
  31454. },
  31455. ]
  31456. ))
  31457. characterMakers.push(() => makeCharacter(
  31458. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31459. {
  31460. front: {
  31461. height: math.unit(6, "feet"),
  31462. weight: math.unit(300, "lb"),
  31463. name: "Front",
  31464. image: {
  31465. source: "./media/characters/tanio/front.svg",
  31466. extra: 711/673,
  31467. bottom: 25/736
  31468. }
  31469. },
  31470. },
  31471. [
  31472. {
  31473. name: "Normal",
  31474. height: math.unit(6, "feet"),
  31475. default: true
  31476. },
  31477. ]
  31478. ))
  31479. characterMakers.push(() => makeCharacter(
  31480. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31481. {
  31482. front: {
  31483. height: math.unit(3, "inches"),
  31484. name: "Front",
  31485. image: {
  31486. source: "./media/characters/noboru/front.svg",
  31487. extra: 1039/932,
  31488. bottom: 18/1057
  31489. }
  31490. },
  31491. },
  31492. [
  31493. {
  31494. name: "Micro",
  31495. height: math.unit(3, "inches"),
  31496. default: true
  31497. },
  31498. ]
  31499. ))
  31500. characterMakers.push(() => makeCharacter(
  31501. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31502. {
  31503. front: {
  31504. height: math.unit(1.85, "meters"),
  31505. weight: math.unit(80, "kg"),
  31506. name: "Front",
  31507. image: {
  31508. source: "./media/characters/daniel-barrett/front.svg",
  31509. extra: 355/337,
  31510. bottom: 9/364
  31511. }
  31512. },
  31513. },
  31514. [
  31515. {
  31516. name: "Pico",
  31517. height: math.unit(0.0433, "mm")
  31518. },
  31519. {
  31520. name: "Nano",
  31521. height: math.unit(1.5, "mm")
  31522. },
  31523. {
  31524. name: "Micro",
  31525. height: math.unit(5.3, "cm"),
  31526. default: true
  31527. },
  31528. {
  31529. name: "Normal",
  31530. height: math.unit(1.85, "meters")
  31531. },
  31532. {
  31533. name: "Macro",
  31534. height: math.unit(64.7, "meters")
  31535. },
  31536. {
  31537. name: "Megamacro",
  31538. height: math.unit(2.26, "km")
  31539. },
  31540. {
  31541. name: "Gigamacro",
  31542. height: math.unit(79, "km")
  31543. },
  31544. {
  31545. name: "Teramacro",
  31546. height: math.unit(2765, "km")
  31547. },
  31548. {
  31549. name: "Petamacro",
  31550. height: math.unit(96678, "km")
  31551. },
  31552. ]
  31553. ))
  31554. characterMakers.push(() => makeCharacter(
  31555. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31556. {
  31557. front: {
  31558. height: math.unit(30, "meters"),
  31559. weight: math.unit(400, "tons"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/zeel/front.svg",
  31563. extra: 2599/2599,
  31564. bottom: 226/2825
  31565. }
  31566. },
  31567. },
  31568. [
  31569. {
  31570. name: "Macro",
  31571. height: math.unit(30, "meters"),
  31572. default: true
  31573. },
  31574. ]
  31575. ))
  31576. characterMakers.push(() => makeCharacter(
  31577. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31578. {
  31579. front: {
  31580. height: math.unit(6 + 7/12, "feet"),
  31581. weight: math.unit(210, "lb"),
  31582. name: "Front",
  31583. image: {
  31584. source: "./media/characters/tarn/front.svg",
  31585. extra: 3517/3220,
  31586. bottom: 91/3608
  31587. }
  31588. },
  31589. back: {
  31590. height: math.unit(6 + 7/12, "feet"),
  31591. weight: math.unit(210, "lb"),
  31592. name: "Back",
  31593. image: {
  31594. source: "./media/characters/tarn/back.svg",
  31595. extra: 3566/3241,
  31596. bottom: 34/3600
  31597. }
  31598. },
  31599. dick: {
  31600. height: math.unit(1.65, "feet"),
  31601. name: "Dick",
  31602. image: {
  31603. source: "./media/characters/tarn/dick.svg"
  31604. }
  31605. },
  31606. paw: {
  31607. height: math.unit(1.80, "feet"),
  31608. name: "Paw",
  31609. image: {
  31610. source: "./media/characters/tarn/paw.svg"
  31611. }
  31612. },
  31613. tongue: {
  31614. height: math.unit(0.97, "feet"),
  31615. name: "Tongue",
  31616. image: {
  31617. source: "./media/characters/tarn/tongue.svg"
  31618. }
  31619. },
  31620. },
  31621. [
  31622. {
  31623. name: "Micro",
  31624. height: math.unit(4, "inches")
  31625. },
  31626. {
  31627. name: "Normal",
  31628. height: math.unit(6 + 7/12, "feet"),
  31629. default: true
  31630. },
  31631. {
  31632. name: "Macro",
  31633. height: math.unit(300, "feet")
  31634. },
  31635. ]
  31636. ))
  31637. characterMakers.push(() => makeCharacter(
  31638. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31639. {
  31640. front: {
  31641. height: math.unit(5 + 7/12, "feet"),
  31642. weight: math.unit(80, "kg"),
  31643. name: "Front",
  31644. image: {
  31645. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31646. extra: 3023/2865,
  31647. bottom: 33/3056
  31648. }
  31649. },
  31650. back: {
  31651. height: math.unit(5 + 7/12, "feet"),
  31652. weight: math.unit(80, "kg"),
  31653. name: "Back",
  31654. image: {
  31655. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31656. extra: 3020/2886,
  31657. bottom: 30/3050
  31658. }
  31659. },
  31660. dick: {
  31661. height: math.unit(0.98, "feet"),
  31662. name: "Dick",
  31663. image: {
  31664. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31665. }
  31666. },
  31667. anatomy: {
  31668. height: math.unit(2.86, "feet"),
  31669. name: "Anatomy",
  31670. image: {
  31671. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31672. }
  31673. },
  31674. },
  31675. [
  31676. {
  31677. name: "Really Small",
  31678. height: math.unit(2, "inches")
  31679. },
  31680. {
  31681. name: "Micro",
  31682. height: math.unit(5.583, "inches")
  31683. },
  31684. {
  31685. name: "Normal",
  31686. height: math.unit(5 + 7/12, "feet"),
  31687. default: true
  31688. },
  31689. {
  31690. name: "Macro",
  31691. height: math.unit(67, "feet")
  31692. },
  31693. {
  31694. name: "Megamacro",
  31695. height: math.unit(134, "feet")
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31701. {
  31702. front: {
  31703. height: math.unit(9, "feet"),
  31704. weight: math.unit(120, "lb"),
  31705. name: "Front",
  31706. image: {
  31707. source: "./media/characters/sally/front.svg",
  31708. extra: 1506/1349,
  31709. bottom: 66/1572
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Normal",
  31716. height: math.unit(9, "feet"),
  31717. default: true
  31718. },
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31723. {
  31724. front: {
  31725. height: math.unit(8, "feet"),
  31726. weight: math.unit(900, "lb"),
  31727. name: "Front",
  31728. image: {
  31729. source: "./media/characters/owen/front.svg",
  31730. extra: 1761/1657,
  31731. bottom: 74/1835
  31732. }
  31733. },
  31734. side: {
  31735. height: math.unit(8, "feet"),
  31736. weight: math.unit(900, "lb"),
  31737. name: "Side",
  31738. image: {
  31739. source: "./media/characters/owen/side.svg",
  31740. extra: 1797/1734,
  31741. bottom: 30/1827
  31742. }
  31743. },
  31744. back: {
  31745. height: math.unit(8, "feet"),
  31746. weight: math.unit(900, "lb"),
  31747. name: "Back",
  31748. image: {
  31749. source: "./media/characters/owen/back.svg",
  31750. extra: 1796/1706,
  31751. bottom: 59/1855
  31752. }
  31753. },
  31754. maw: {
  31755. height: math.unit(1.76, "feet"),
  31756. name: "Maw",
  31757. image: {
  31758. source: "./media/characters/owen/maw.svg"
  31759. }
  31760. },
  31761. },
  31762. [
  31763. {
  31764. name: "Normal",
  31765. height: math.unit(8, "feet"),
  31766. default: true
  31767. },
  31768. ]
  31769. ))
  31770. characterMakers.push(() => makeCharacter(
  31771. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31772. {
  31773. front: {
  31774. height: math.unit(4, "feet"),
  31775. weight: math.unit(400, "lb"),
  31776. name: "Front",
  31777. image: {
  31778. source: "./media/characters/ryth/front.svg",
  31779. extra: 1920/1748,
  31780. bottom: 42/1962
  31781. }
  31782. },
  31783. back: {
  31784. height: math.unit(4, "feet"),
  31785. weight: math.unit(400, "lb"),
  31786. name: "Back",
  31787. image: {
  31788. source: "./media/characters/ryth/back.svg",
  31789. extra: 1897/1690,
  31790. bottom: 89/1986
  31791. }
  31792. },
  31793. mouth: {
  31794. height: math.unit(1.39, "feet"),
  31795. name: "Mouth",
  31796. image: {
  31797. source: "./media/characters/ryth/mouth.svg"
  31798. }
  31799. },
  31800. tailmaw: {
  31801. height: math.unit(1.23, "feet"),
  31802. name: "Tailmaw",
  31803. image: {
  31804. source: "./media/characters/ryth/tailmaw.svg"
  31805. }
  31806. },
  31807. goia: {
  31808. height: math.unit(12, "feet"),
  31809. weight: math.unit(10800, "lb"),
  31810. name: "Goia",
  31811. image: {
  31812. source: "./media/characters/ryth/goia.svg",
  31813. extra: 3450/3198,
  31814. bottom: 61/3511
  31815. }
  31816. },
  31817. },
  31818. [
  31819. {
  31820. name: "Normal",
  31821. height: math.unit(4, "feet"),
  31822. default: true
  31823. },
  31824. ]
  31825. ))
  31826. characterMakers.push(() => makeCharacter(
  31827. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31828. {
  31829. front: {
  31830. height: math.unit(7, "feet"),
  31831. weight: math.unit(180, "lb"),
  31832. name: "Front",
  31833. image: {
  31834. source: "./media/characters/necrolance/front.svg",
  31835. extra: 1062/947,
  31836. bottom: 41/1103
  31837. }
  31838. },
  31839. back: {
  31840. height: math.unit(7, "feet"),
  31841. weight: math.unit(180, "lb"),
  31842. name: "Back",
  31843. image: {
  31844. source: "./media/characters/necrolance/back.svg",
  31845. extra: 1045/984,
  31846. bottom: 14/1059
  31847. }
  31848. },
  31849. wing: {
  31850. height: math.unit(2.67, "feet"),
  31851. name: "Wing",
  31852. image: {
  31853. source: "./media/characters/necrolance/wing.svg"
  31854. }
  31855. },
  31856. },
  31857. [
  31858. {
  31859. name: "Normal",
  31860. height: math.unit(7, "feet"),
  31861. default: true
  31862. },
  31863. ]
  31864. ))
  31865. characterMakers.push(() => makeCharacter(
  31866. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31867. {
  31868. front: {
  31869. height: math.unit(76, "meters"),
  31870. weight: math.unit(30000, "tons"),
  31871. name: "Front",
  31872. image: {
  31873. source: "./media/characters/tyler/front.svg",
  31874. extra: 1640/1640,
  31875. bottom: 114/1754
  31876. }
  31877. },
  31878. },
  31879. [
  31880. {
  31881. name: "Macro",
  31882. height: math.unit(76, "meters"),
  31883. default: true
  31884. },
  31885. ]
  31886. ))
  31887. characterMakers.push(() => makeCharacter(
  31888. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31889. {
  31890. front: {
  31891. height: math.unit(4 + 11/12, "feet"),
  31892. weight: math.unit(132, "lb"),
  31893. name: "Front",
  31894. image: {
  31895. source: "./media/characters/icey/front.svg",
  31896. extra: 2750/2550,
  31897. bottom: 33/2783
  31898. }
  31899. },
  31900. back: {
  31901. height: math.unit(4 + 11/12, "feet"),
  31902. weight: math.unit(132, "lb"),
  31903. name: "Back",
  31904. image: {
  31905. source: "./media/characters/icey/back.svg",
  31906. extra: 2624/2481,
  31907. bottom: 35/2659
  31908. }
  31909. },
  31910. },
  31911. [
  31912. {
  31913. name: "Normal",
  31914. height: math.unit(4 + 11/12, "feet"),
  31915. default: true
  31916. },
  31917. ]
  31918. ))
  31919. characterMakers.push(() => makeCharacter(
  31920. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31921. {
  31922. front: {
  31923. height: math.unit(100, "feet"),
  31924. weight: math.unit(0, "lb"),
  31925. name: "Front",
  31926. image: {
  31927. source: "./media/characters/smile/front.svg",
  31928. extra: 2983/2912,
  31929. bottom: 162/3145
  31930. }
  31931. },
  31932. back: {
  31933. height: math.unit(100, "feet"),
  31934. weight: math.unit(0, "lb"),
  31935. name: "Back",
  31936. image: {
  31937. source: "./media/characters/smile/back.svg",
  31938. extra: 3143/3031,
  31939. bottom: 91/3234
  31940. }
  31941. },
  31942. head: {
  31943. height: math.unit(26.3, "feet"),
  31944. weight: math.unit(0, "lb"),
  31945. name: "Head",
  31946. image: {
  31947. source: "./media/characters/smile/head.svg"
  31948. }
  31949. },
  31950. collar: {
  31951. height: math.unit(5.3, "feet"),
  31952. weight: math.unit(0, "lb"),
  31953. name: "Collar",
  31954. image: {
  31955. source: "./media/characters/smile/collar.svg"
  31956. }
  31957. },
  31958. },
  31959. [
  31960. {
  31961. name: "Macro",
  31962. height: math.unit(100, "feet"),
  31963. default: true
  31964. },
  31965. ]
  31966. ))
  31967. characterMakers.push(() => makeCharacter(
  31968. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31969. {
  31970. dragon: {
  31971. height: math.unit(26, "feet"),
  31972. weight: math.unit(36, "tons"),
  31973. name: "Dragon",
  31974. image: {
  31975. source: "./media/characters/arimphae/dragon.svg",
  31976. extra: 1574/983,
  31977. bottom: 357/1931
  31978. }
  31979. },
  31980. drake: {
  31981. height: math.unit(9, "feet"),
  31982. weight: math.unit(1.5, "tons"),
  31983. name: "Drake",
  31984. image: {
  31985. source: "./media/characters/arimphae/drake.svg",
  31986. extra: 1120/925,
  31987. bottom: 435/1555
  31988. }
  31989. },
  31990. },
  31991. [
  31992. {
  31993. name: "Small",
  31994. height: math.unit(26*5/9, "feet")
  31995. },
  31996. {
  31997. name: "Normal",
  31998. height: math.unit(26, "feet"),
  31999. default: true
  32000. },
  32001. ]
  32002. ))
  32003. characterMakers.push(() => makeCharacter(
  32004. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32005. {
  32006. front: {
  32007. height: math.unit(8 + 9/12, "feet"),
  32008. name: "Front",
  32009. image: {
  32010. source: "./media/characters/xander/front.svg",
  32011. extra: 848/673,
  32012. bottom: 62/910
  32013. }
  32014. },
  32015. },
  32016. [
  32017. {
  32018. name: "Normal",
  32019. height: math.unit(8 + 9/12, "feet"),
  32020. default: true
  32021. },
  32022. {
  32023. name: "Gaze Grabber",
  32024. height: math.unit(13 + 8/12, "feet")
  32025. },
  32026. {
  32027. name: "Jaw Dropper",
  32028. height: math.unit(27, "feet")
  32029. },
  32030. {
  32031. name: "Show Stopper",
  32032. height: math.unit(136, "feet")
  32033. },
  32034. {
  32035. name: "Superstar",
  32036. height: math.unit(1.9e6, "miles")
  32037. },
  32038. ]
  32039. ))
  32040. characterMakers.push(() => makeCharacter(
  32041. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32042. {
  32043. side: {
  32044. height: math.unit(2100, "feet"),
  32045. name: "Side",
  32046. image: {
  32047. source: "./media/characters/osiris/side.svg",
  32048. extra: 1105/939,
  32049. bottom: 167/1272
  32050. }
  32051. },
  32052. },
  32053. [
  32054. {
  32055. name: "Macro",
  32056. height: math.unit(2100, "feet"),
  32057. default: true
  32058. },
  32059. ]
  32060. ))
  32061. characterMakers.push(() => makeCharacter(
  32062. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32063. {
  32064. front: {
  32065. height: math.unit(6 + 8/12, "feet"),
  32066. weight: math.unit(225, "lb"),
  32067. name: "Front",
  32068. image: {
  32069. source: "./media/characters/rhys-londe/front.svg",
  32070. extra: 2258/2141,
  32071. bottom: 188/2446
  32072. }
  32073. },
  32074. back: {
  32075. height: math.unit(6 + 8/12, "feet"),
  32076. weight: math.unit(225, "lb"),
  32077. name: "Back",
  32078. image: {
  32079. source: "./media/characters/rhys-londe/back.svg",
  32080. extra: 2237/2137,
  32081. bottom: 63/2300
  32082. }
  32083. },
  32084. frontNsfw: {
  32085. height: math.unit(6 + 8/12, "feet"),
  32086. weight: math.unit(225, "lb"),
  32087. name: "Front (NSFW)",
  32088. image: {
  32089. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32090. extra: 2258/2141,
  32091. bottom: 188/2446
  32092. }
  32093. },
  32094. backNsfw: {
  32095. height: math.unit(6 + 8/12, "feet"),
  32096. weight: math.unit(225, "lb"),
  32097. name: "Back (NSFW)",
  32098. image: {
  32099. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32100. extra: 2237/2137,
  32101. bottom: 63/2300
  32102. }
  32103. },
  32104. dick: {
  32105. height: math.unit(30, "inches"),
  32106. name: "Dick",
  32107. image: {
  32108. source: "./media/characters/rhys-londe/dick.svg"
  32109. }
  32110. },
  32111. maw: {
  32112. height: math.unit(1.6, "feet"),
  32113. name: "Maw",
  32114. image: {
  32115. source: "./media/characters/rhys-londe/maw.svg"
  32116. }
  32117. },
  32118. },
  32119. [
  32120. {
  32121. name: "Normal",
  32122. height: math.unit(6 + 8/12, "feet"),
  32123. default: true
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32129. {
  32130. front: {
  32131. height: math.unit(3 + 10/12, "feet"),
  32132. weight: math.unit(90, "lb"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/taivas-ensim/front.svg",
  32136. extra: 1327/1216,
  32137. bottom: 96/1423
  32138. }
  32139. },
  32140. back: {
  32141. height: math.unit(3 + 10/12, "feet"),
  32142. weight: math.unit(90, "lb"),
  32143. name: "Back",
  32144. image: {
  32145. source: "./media/characters/taivas-ensim/back.svg",
  32146. extra: 1355/1247,
  32147. bottom: 11/1366
  32148. }
  32149. },
  32150. frontNsfw: {
  32151. height: math.unit(3 + 10/12, "feet"),
  32152. weight: math.unit(90, "lb"),
  32153. name: "Front (NSFW)",
  32154. image: {
  32155. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32156. extra: 1327/1216,
  32157. bottom: 96/1423
  32158. }
  32159. },
  32160. backNsfw: {
  32161. height: math.unit(3 + 10/12, "feet"),
  32162. weight: math.unit(90, "lb"),
  32163. name: "Back (NSFW)",
  32164. image: {
  32165. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32166. extra: 1355/1247,
  32167. bottom: 11/1366
  32168. }
  32169. },
  32170. },
  32171. [
  32172. {
  32173. name: "Normal",
  32174. height: math.unit(3 + 10/12, "feet"),
  32175. default: true
  32176. },
  32177. ]
  32178. ))
  32179. characterMakers.push(() => makeCharacter(
  32180. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32181. {
  32182. front: {
  32183. height: math.unit(9 + 6/12, "feet"),
  32184. weight: math.unit(940, "lb"),
  32185. name: "Front",
  32186. image: {
  32187. source: "./media/characters/byliss/front.svg",
  32188. extra: 1327/1290,
  32189. bottom: 82/1409
  32190. }
  32191. },
  32192. back: {
  32193. height: math.unit(9 + 6/12, "feet"),
  32194. weight: math.unit(940, "lb"),
  32195. name: "Back",
  32196. image: {
  32197. source: "./media/characters/byliss/back.svg",
  32198. extra: 1376/1349,
  32199. bottom: 9/1385
  32200. }
  32201. },
  32202. frontNsfw: {
  32203. height: math.unit(9 + 6/12, "feet"),
  32204. weight: math.unit(940, "lb"),
  32205. name: "Front (NSFW)",
  32206. image: {
  32207. source: "./media/characters/byliss/front-nsfw.svg",
  32208. extra: 1327/1290,
  32209. bottom: 82/1409
  32210. }
  32211. },
  32212. backNsfw: {
  32213. height: math.unit(9 + 6/12, "feet"),
  32214. weight: math.unit(940, "lb"),
  32215. name: "Back (NSFW)",
  32216. image: {
  32217. source: "./media/characters/byliss/back-nsfw.svg",
  32218. extra: 1376/1349,
  32219. bottom: 9/1385
  32220. }
  32221. },
  32222. },
  32223. [
  32224. {
  32225. name: "Normal",
  32226. height: math.unit(9 + 6/12, "feet"),
  32227. default: true
  32228. },
  32229. ]
  32230. ))
  32231. characterMakers.push(() => makeCharacter(
  32232. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32233. {
  32234. front: {
  32235. height: math.unit(5 + 2/12, "feet"),
  32236. weight: math.unit(200, "lb"),
  32237. name: "Front",
  32238. image: {
  32239. source: "./media/characters/noraly/front.svg",
  32240. extra: 4985/4773,
  32241. bottom: 150/5135
  32242. }
  32243. },
  32244. full: {
  32245. height: math.unit(5 + 2/12, "feet"),
  32246. weight: math.unit(164, "lb"),
  32247. name: "Full",
  32248. image: {
  32249. source: "./media/characters/noraly/full.svg",
  32250. extra: 1114/1059,
  32251. bottom: 35/1149
  32252. }
  32253. },
  32254. fuller: {
  32255. height: math.unit(5 + 2/12, "feet"),
  32256. weight: math.unit(230, "lb"),
  32257. name: "Fuller",
  32258. image: {
  32259. source: "./media/characters/noraly/fuller.svg",
  32260. extra: 1114/1059,
  32261. bottom: 35/1149
  32262. }
  32263. },
  32264. fullest: {
  32265. height: math.unit(5 + 2/12, "feet"),
  32266. weight: math.unit(300, "lb"),
  32267. name: "Fullest",
  32268. image: {
  32269. source: "./media/characters/noraly/fullest.svg",
  32270. extra: 1114/1059,
  32271. bottom: 35/1149
  32272. }
  32273. },
  32274. },
  32275. [
  32276. {
  32277. name: "Normal",
  32278. height: math.unit(5 + 2/12, "feet"),
  32279. default: true
  32280. },
  32281. ]
  32282. ))
  32283. characterMakers.push(() => makeCharacter(
  32284. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32285. {
  32286. front: {
  32287. height: math.unit(5 + 2/12, "feet"),
  32288. weight: math.unit(210, "lb"),
  32289. name: "Front",
  32290. image: {
  32291. source: "./media/characters/pera/front.svg",
  32292. extra: 1560/1531,
  32293. bottom: 165/1725
  32294. }
  32295. },
  32296. back: {
  32297. height: math.unit(5 + 2/12, "feet"),
  32298. weight: math.unit(210, "lb"),
  32299. name: "Back",
  32300. image: {
  32301. source: "./media/characters/pera/back.svg",
  32302. extra: 1523/1493,
  32303. bottom: 152/1675
  32304. }
  32305. },
  32306. dick: {
  32307. height: math.unit(2.4, "feet"),
  32308. name: "Dick",
  32309. image: {
  32310. source: "./media/characters/pera/dick.svg"
  32311. }
  32312. },
  32313. },
  32314. [
  32315. {
  32316. name: "Normal",
  32317. height: math.unit(5 + 2/12, "feet"),
  32318. default: true
  32319. },
  32320. ]
  32321. ))
  32322. characterMakers.push(() => makeCharacter(
  32323. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32324. {
  32325. front: {
  32326. height: math.unit(12, "feet"),
  32327. weight: math.unit(3200, "lb"),
  32328. name: "Front",
  32329. image: {
  32330. source: "./media/characters/julian/front.svg",
  32331. extra: 2962/2701,
  32332. bottom: 184/3146
  32333. }
  32334. },
  32335. maw: {
  32336. height: math.unit(5.35, "feet"),
  32337. name: "Maw",
  32338. image: {
  32339. source: "./media/characters/julian/maw.svg"
  32340. }
  32341. },
  32342. paw: {
  32343. height: math.unit(3.07, "feet"),
  32344. name: "Paw",
  32345. image: {
  32346. source: "./media/characters/julian/paw.svg"
  32347. }
  32348. },
  32349. },
  32350. [
  32351. {
  32352. name: "Default",
  32353. height: math.unit(12, "feet"),
  32354. default: true
  32355. },
  32356. {
  32357. name: "Big",
  32358. height: math.unit(50, "feet")
  32359. },
  32360. {
  32361. name: "Really Big",
  32362. height: math.unit(1, "mile")
  32363. },
  32364. {
  32365. name: "Extremely Big",
  32366. height: math.unit(100, "miles")
  32367. },
  32368. {
  32369. name: "Planet Hugger",
  32370. height: math.unit(200, "megameters")
  32371. },
  32372. {
  32373. name: "Unreasonably Big",
  32374. height: math.unit(1e300, "meters")
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32380. {
  32381. solgooleo: {
  32382. height: math.unit(4, "meters"),
  32383. weight: math.unit(6000*1.5, "kg"),
  32384. volume: math.unit(6000, "liters"),
  32385. name: "Solgooleo",
  32386. image: {
  32387. source: "./media/characters/pi/solgooleo.svg",
  32388. extra: 388/331,
  32389. bottom: 29/417
  32390. }
  32391. },
  32392. },
  32393. [
  32394. {
  32395. name: "Normal",
  32396. height: math.unit(4, "meters"),
  32397. default: true
  32398. },
  32399. ]
  32400. ))
  32401. characterMakers.push(() => makeCharacter(
  32402. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32403. {
  32404. front: {
  32405. height: math.unit(8 + 2/12, "feet"),
  32406. weight: math.unit(4, "tons"),
  32407. name: "Front",
  32408. image: {
  32409. source: "./media/characters/shaun/front.svg",
  32410. extra: 1550/1505,
  32411. bottom: 353/1903
  32412. }
  32413. },
  32414. },
  32415. [
  32416. {
  32417. name: "Lorg",
  32418. height: math.unit(8 + 2/12, "feet"),
  32419. default: true
  32420. },
  32421. ]
  32422. ))
  32423. characterMakers.push(() => makeCharacter(
  32424. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32425. {
  32426. front: {
  32427. height: math.unit(7, "feet"),
  32428. name: "Front",
  32429. image: {
  32430. source: "./media/characters/sini/front.svg",
  32431. extra: 726/678,
  32432. bottom: 35/761
  32433. }
  32434. },
  32435. back: {
  32436. height: math.unit(7, "feet"),
  32437. name: "Back",
  32438. image: {
  32439. source: "./media/characters/sini/back.svg",
  32440. extra: 743/701,
  32441. bottom: 12/755
  32442. }
  32443. },
  32444. mawAnthro: {
  32445. height: math.unit(2.14, "feet"),
  32446. name: "Maw (Anthro)",
  32447. image: {
  32448. source: "./media/characters/sini/maw-anthro.svg"
  32449. }
  32450. },
  32451. dick: {
  32452. height: math.unit(1.45, "feet"),
  32453. name: "Dick (Anthro)",
  32454. image: {
  32455. source: "./media/characters/sini/dick-anthro.svg"
  32456. }
  32457. },
  32458. feral: {
  32459. height: math.unit(16, "feet"),
  32460. name: "Feral",
  32461. image: {
  32462. source: "./media/characters/sini/feral.svg",
  32463. extra: 814/605,
  32464. bottom: 11/825
  32465. }
  32466. },
  32467. mawFeral: {
  32468. height: math.unit(5.66, "feet"),
  32469. name: "Maw-feral",
  32470. image: {
  32471. source: "./media/characters/sini/maw-feral.svg"
  32472. }
  32473. },
  32474. footFeral: {
  32475. height: math.unit(5.17, "feet"),
  32476. name: "Foot-feral",
  32477. image: {
  32478. source: "./media/characters/sini/foot-feral.svg"
  32479. }
  32480. },
  32481. },
  32482. [
  32483. {
  32484. name: "Normal",
  32485. height: math.unit(7, "feet"),
  32486. default: true
  32487. },
  32488. ]
  32489. ))
  32490. characterMakers.push(() => makeCharacter(
  32491. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32492. {
  32493. side: {
  32494. height: math.unit(13, "meters"),
  32495. weight: math.unit(9072, "kg"),
  32496. name: "Side",
  32497. image: {
  32498. source: "./media/characters/raylldo/side.svg",
  32499. extra: 403/344,
  32500. bottom: 42/445
  32501. }
  32502. },
  32503. leaping: {
  32504. height: math.unit(12.3, "meters"),
  32505. weight: math.unit(9072, "kg"),
  32506. name: "Leaping",
  32507. image: {
  32508. source: "./media/characters/raylldo/leaping.svg",
  32509. extra: 470/249,
  32510. bottom: 13/483
  32511. }
  32512. },
  32513. flying: {
  32514. height: math.unit(18, "meters"),
  32515. weight: math.unit(9072, "kg"),
  32516. name: "Flying",
  32517. image: {
  32518. source: "./media/characters/raylldo/flying.svg"
  32519. }
  32520. },
  32521. head: {
  32522. height: math.unit(5.85, "meters"),
  32523. name: "Head",
  32524. image: {
  32525. source: "./media/characters/raylldo/head.svg"
  32526. }
  32527. },
  32528. maw: {
  32529. height: math.unit(5.32, "meters"),
  32530. name: "Maw",
  32531. image: {
  32532. source: "./media/characters/raylldo/maw.svg"
  32533. }
  32534. },
  32535. eye: {
  32536. height: math.unit(0.54, "meters"),
  32537. name: "Eye",
  32538. image: {
  32539. source: "./media/characters/raylldo/eye.svg"
  32540. }
  32541. },
  32542. },
  32543. [
  32544. {
  32545. name: "Normal",
  32546. height: math.unit(13, "meters"),
  32547. default: true
  32548. },
  32549. ]
  32550. ))
  32551. characterMakers.push(() => makeCharacter(
  32552. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32553. {
  32554. anthroFront: {
  32555. height: math.unit(9, "feet"),
  32556. weight: math.unit(600, "lb"),
  32557. name: "Anthro (Front)",
  32558. image: {
  32559. source: "./media/characters/glint/anthro-front.svg",
  32560. extra: 1097/1018,
  32561. bottom: 28/1125
  32562. }
  32563. },
  32564. anthroBack: {
  32565. height: math.unit(9, "feet"),
  32566. weight: math.unit(600, "lb"),
  32567. name: "Anthro (Back)",
  32568. image: {
  32569. source: "./media/characters/glint/anthro-back.svg",
  32570. extra: 1154/997,
  32571. bottom: 36/1190
  32572. }
  32573. },
  32574. feral: {
  32575. height: math.unit(11, "feet"),
  32576. weight: math.unit(50000, "lb"),
  32577. name: "Feral",
  32578. image: {
  32579. source: "./media/characters/glint/feral.svg",
  32580. extra: 3035/1585,
  32581. bottom: 1169/4204
  32582. }
  32583. },
  32584. dickAnthro: {
  32585. height: math.unit(0.7, "meters"),
  32586. name: "Dick (Anthro)",
  32587. image: {
  32588. source: "./media/characters/glint/dick-anthro.svg"
  32589. }
  32590. },
  32591. dickFeral: {
  32592. height: math.unit(2.65, "meters"),
  32593. name: "Dick (Feral)",
  32594. image: {
  32595. source: "./media/characters/glint/dick-feral.svg"
  32596. }
  32597. },
  32598. slitHidden: {
  32599. height: math.unit(5.85, "meters"),
  32600. name: "Slit (Hidden)",
  32601. image: {
  32602. source: "./media/characters/glint/slit-hidden.svg"
  32603. }
  32604. },
  32605. slitErect: {
  32606. height: math.unit(5.85, "meters"),
  32607. name: "Slit (Erect)",
  32608. image: {
  32609. source: "./media/characters/glint/slit-erect.svg"
  32610. }
  32611. },
  32612. mawAnthro: {
  32613. height: math.unit(0.63, "meters"),
  32614. name: "Maw (Anthro)",
  32615. image: {
  32616. source: "./media/characters/glint/maw.svg"
  32617. }
  32618. },
  32619. mawFeral: {
  32620. height: math.unit(2.89, "meters"),
  32621. name: "Maw (Feral)",
  32622. image: {
  32623. source: "./media/characters/glint/maw.svg"
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(9, "feet"),
  32631. default: true
  32632. },
  32633. ]
  32634. ))
  32635. characterMakers.push(() => makeCharacter(
  32636. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32637. {
  32638. side: {
  32639. height: math.unit(15, "feet"),
  32640. weight: math.unit(5000, "kg"),
  32641. name: "Side",
  32642. image: {
  32643. source: "./media/characters/kairne/side.svg",
  32644. extra: 979/811,
  32645. bottom: 13/992
  32646. }
  32647. },
  32648. front: {
  32649. height: math.unit(15, "feet"),
  32650. weight: math.unit(5000, "kg"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/kairne/front.svg",
  32654. extra: 908/814,
  32655. bottom: 26/934
  32656. }
  32657. },
  32658. sideNsfw: {
  32659. height: math.unit(15, "feet"),
  32660. weight: math.unit(5000, "kg"),
  32661. name: "Side (NSFW)",
  32662. image: {
  32663. source: "./media/characters/kairne/side-nsfw.svg",
  32664. extra: 979/811,
  32665. bottom: 13/992
  32666. }
  32667. },
  32668. frontNsfw: {
  32669. height: math.unit(15, "feet"),
  32670. weight: math.unit(5000, "kg"),
  32671. name: "Front (NSFW)",
  32672. image: {
  32673. source: "./media/characters/kairne/front-nsfw.svg",
  32674. extra: 908/814,
  32675. bottom: 26/934
  32676. }
  32677. },
  32678. dickCaged: {
  32679. height: math.unit(0.65, "meters"),
  32680. name: "Dick-caged",
  32681. image: {
  32682. source: "./media/characters/kairne/dick-caged.svg"
  32683. }
  32684. },
  32685. dick: {
  32686. height: math.unit(0.79, "meters"),
  32687. name: "Dick",
  32688. image: {
  32689. source: "./media/characters/kairne/dick.svg"
  32690. }
  32691. },
  32692. genitals: {
  32693. height: math.unit(1.29, "meters"),
  32694. name: "Genitals",
  32695. image: {
  32696. source: "./media/characters/kairne/genitals.svg"
  32697. }
  32698. },
  32699. maw: {
  32700. height: math.unit(1.73, "meters"),
  32701. name: "Maw",
  32702. image: {
  32703. source: "./media/characters/kairne/maw.svg"
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Normal",
  32710. height: math.unit(15, "feet"),
  32711. default: true
  32712. },
  32713. ]
  32714. ))
  32715. characterMakers.push(() => makeCharacter(
  32716. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32717. {
  32718. front: {
  32719. height: math.unit(5 + 8/12, "feet"),
  32720. weight: math.unit(139, "lb"),
  32721. name: "Front",
  32722. image: {
  32723. source: "./media/characters/biscuit-jackal/front.svg",
  32724. extra: 2106/1961,
  32725. bottom: 58/2164
  32726. }
  32727. },
  32728. back: {
  32729. height: math.unit(5 + 8/12, "feet"),
  32730. weight: math.unit(139, "lb"),
  32731. name: "Back",
  32732. image: {
  32733. source: "./media/characters/biscuit-jackal/back.svg",
  32734. extra: 2132/1976,
  32735. bottom: 57/2189
  32736. }
  32737. },
  32738. werejackal: {
  32739. height: math.unit(6 + 3/12, "feet"),
  32740. weight: math.unit(188, "lb"),
  32741. name: "Werejackal",
  32742. image: {
  32743. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32744. extra: 2373/2178,
  32745. bottom: 53/2426
  32746. }
  32747. },
  32748. },
  32749. [
  32750. {
  32751. name: "Normal",
  32752. height: math.unit(5 + 8/12, "feet"),
  32753. default: true
  32754. },
  32755. ]
  32756. ))
  32757. characterMakers.push(() => makeCharacter(
  32758. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32759. {
  32760. front: {
  32761. height: math.unit(140, "cm"),
  32762. weight: math.unit(45, "kg"),
  32763. name: "Front",
  32764. image: {
  32765. source: "./media/characters/tayra-white/front.svg",
  32766. extra: 2229/2192,
  32767. bottom: 75/2304
  32768. }
  32769. },
  32770. },
  32771. [
  32772. {
  32773. name: "Normal",
  32774. height: math.unit(140, "cm"),
  32775. default: true
  32776. },
  32777. ]
  32778. ))
  32779. characterMakers.push(() => makeCharacter(
  32780. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32781. {
  32782. front: {
  32783. height: math.unit(4 + 5/12, "feet"),
  32784. name: "Front",
  32785. image: {
  32786. source: "./media/characters/scoop/front.svg",
  32787. extra: 1257/1136,
  32788. bottom: 69/1326
  32789. }
  32790. },
  32791. back: {
  32792. height: math.unit(4 + 5/12, "feet"),
  32793. name: "Back",
  32794. image: {
  32795. source: "./media/characters/scoop/back.svg",
  32796. extra: 1321/1152,
  32797. bottom: 32/1353
  32798. }
  32799. },
  32800. maw: {
  32801. height: math.unit(0.68, "feet"),
  32802. name: "Maw",
  32803. image: {
  32804. source: "./media/characters/scoop/maw.svg"
  32805. }
  32806. },
  32807. },
  32808. [
  32809. {
  32810. name: "Really Small",
  32811. height: math.unit(1, "mm")
  32812. },
  32813. {
  32814. name: "Micro",
  32815. height: math.unit(1, "inch")
  32816. },
  32817. {
  32818. name: "Normal",
  32819. height: math.unit(4 + 5/12, "feet"),
  32820. default: true
  32821. },
  32822. {
  32823. name: "Macro",
  32824. height: math.unit(200, "feet")
  32825. },
  32826. {
  32827. name: "Megamacro",
  32828. height: math.unit(3240, "feet")
  32829. },
  32830. {
  32831. name: "Teramacro",
  32832. height: math.unit(2500, "miles")
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32838. {
  32839. front: {
  32840. height: math.unit(15 + 7/12, "feet"),
  32841. name: "Front",
  32842. image: {
  32843. source: "./media/characters/saphinara/front.svg",
  32844. extra: 604/546,
  32845. bottom: 19/623
  32846. }
  32847. },
  32848. side: {
  32849. height: math.unit(15 + 7/12, "feet"),
  32850. name: "Side",
  32851. image: {
  32852. source: "./media/characters/saphinara/side.svg",
  32853. extra: 605/547,
  32854. bottom: 6/611
  32855. }
  32856. },
  32857. back: {
  32858. height: math.unit(15 + 7/12, "feet"),
  32859. name: "Back",
  32860. image: {
  32861. source: "./media/characters/saphinara/back.svg",
  32862. extra: 591/531,
  32863. bottom: 13/604
  32864. }
  32865. },
  32866. frontTail: {
  32867. height: math.unit(15 + 7/12, "feet"),
  32868. name: "Front (Full Tail)",
  32869. image: {
  32870. source: "./media/characters/saphinara/front-tail.svg",
  32871. extra: 748/547,
  32872. bottom: 66/814
  32873. }
  32874. },
  32875. },
  32876. [
  32877. {
  32878. name: "Normal",
  32879. height: math.unit(15 + 7/12, "feet"),
  32880. default: true
  32881. },
  32882. {
  32883. name: "Angry",
  32884. height: math.unit(30 + 6/12, "feet")
  32885. },
  32886. {
  32887. name: "Enraged",
  32888. height: math.unit(102 + 1/12, "feet")
  32889. },
  32890. ]
  32891. ))
  32892. characterMakers.push(() => makeCharacter(
  32893. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32894. {
  32895. front: {
  32896. height: math.unit(6 + 8/12, "feet"),
  32897. weight: math.unit(300, "lb"),
  32898. name: "Front",
  32899. image: {
  32900. source: "./media/characters/jrain/front.svg",
  32901. extra: 3039/2865,
  32902. bottom: 399/3438
  32903. }
  32904. },
  32905. back: {
  32906. height: math.unit(6 + 8/12, "feet"),
  32907. weight: math.unit(300, "lb"),
  32908. name: "Back",
  32909. image: {
  32910. source: "./media/characters/jrain/back.svg",
  32911. extra: 3089/2938,
  32912. bottom: 172/3261
  32913. }
  32914. },
  32915. head: {
  32916. height: math.unit(2.14, "feet"),
  32917. name: "Head",
  32918. image: {
  32919. source: "./media/characters/jrain/head.svg"
  32920. }
  32921. },
  32922. maw: {
  32923. height: math.unit(1.77, "feet"),
  32924. name: "Maw",
  32925. image: {
  32926. source: "./media/characters/jrain/maw.svg"
  32927. }
  32928. },
  32929. leftHand: {
  32930. height: math.unit(1.1, "feet"),
  32931. name: "Left Hand",
  32932. image: {
  32933. source: "./media/characters/jrain/left-hand.svg"
  32934. }
  32935. },
  32936. rightHand: {
  32937. height: math.unit(1.1, "feet"),
  32938. name: "Right Hand",
  32939. image: {
  32940. source: "./media/characters/jrain/right-hand.svg"
  32941. }
  32942. },
  32943. eye: {
  32944. height: math.unit(0.35, "feet"),
  32945. name: "Eye",
  32946. image: {
  32947. source: "./media/characters/jrain/eye.svg"
  32948. }
  32949. },
  32950. },
  32951. [
  32952. {
  32953. name: "Normal",
  32954. height: math.unit(6 + 8/12, "feet"),
  32955. default: true
  32956. },
  32957. {
  32958. name: "Casually Large",
  32959. height: math.unit(25, "feet")
  32960. },
  32961. {
  32962. name: "Giant",
  32963. height: math.unit(100, "feet")
  32964. },
  32965. {
  32966. name: "Kaiju",
  32967. height: math.unit(300, "feet")
  32968. },
  32969. ]
  32970. ))
  32971. characterMakers.push(() => makeCharacter(
  32972. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32973. {
  32974. dragon: {
  32975. height: math.unit(5, "meters"),
  32976. name: "Dragon",
  32977. image: {
  32978. source: "./media/characters/sabrina/dragon.svg",
  32979. extra: 3670 / 2365,
  32980. bottom: 333 / 4003
  32981. }
  32982. },
  32983. gryphon: {
  32984. height: math.unit(3, "meters"),
  32985. name: "Gryphon",
  32986. image: {
  32987. source: "./media/characters/sabrina/gryphon.svg",
  32988. extra: 1576 / 945,
  32989. bottom: 71 / 1647
  32990. }
  32991. },
  32992. snake: {
  32993. height: math.unit(12, "meters"),
  32994. name: "Snake",
  32995. image: {
  32996. source: "./media/characters/sabrina/snake.svg",
  32997. extra: 1758 / 1320,
  32998. bottom: 186 / 1944
  32999. }
  33000. },
  33001. collar: {
  33002. height: math.unit(1.86, "meters"),
  33003. name: "Collar",
  33004. image: {
  33005. source: "./media/characters/sabrina/collar.svg"
  33006. }
  33007. },
  33008. eye: {
  33009. height: math.unit(0.53, "meters"),
  33010. name: "Eye",
  33011. image: {
  33012. source: "./media/characters/sabrina/eye.svg"
  33013. }
  33014. },
  33015. foot: {
  33016. height: math.unit(1.86, "meters"),
  33017. name: "Foot",
  33018. image: {
  33019. source: "./media/characters/sabrina/foot.svg"
  33020. }
  33021. },
  33022. hand: {
  33023. height: math.unit(1.32, "meters"),
  33024. name: "Hand",
  33025. image: {
  33026. source: "./media/characters/sabrina/hand.svg"
  33027. }
  33028. },
  33029. head: {
  33030. height: math.unit(2.44, "meters"),
  33031. name: "Head",
  33032. image: {
  33033. source: "./media/characters/sabrina/head.svg"
  33034. }
  33035. },
  33036. headAngry: {
  33037. height: math.unit(2.44, "meters"),
  33038. name: "Head (Angry))",
  33039. image: {
  33040. source: "./media/characters/sabrina/head-angry.svg"
  33041. }
  33042. },
  33043. maw: {
  33044. height: math.unit(1.65, "meters"),
  33045. name: "Maw",
  33046. image: {
  33047. source: "./media/characters/sabrina/maw.svg"
  33048. }
  33049. },
  33050. spikes: {
  33051. height: math.unit(1.69, "meters"),
  33052. name: "Spikes",
  33053. image: {
  33054. source: "./media/characters/sabrina/spikes.svg"
  33055. }
  33056. },
  33057. stomach: {
  33058. height: math.unit(1.15, "meters"),
  33059. name: "Stomach",
  33060. image: {
  33061. source: "./media/characters/sabrina/stomach.svg"
  33062. }
  33063. },
  33064. tongue: {
  33065. height: math.unit(1.27, "meters"),
  33066. name: "Tongue",
  33067. image: {
  33068. source: "./media/characters/sabrina/tongue.svg"
  33069. }
  33070. },
  33071. wingDorsal: {
  33072. height: math.unit(4.85, "meters"),
  33073. name: "Wing (Dorsal)",
  33074. image: {
  33075. source: "./media/characters/sabrina/wing-dorsal.svg"
  33076. }
  33077. },
  33078. wingVentral: {
  33079. height: math.unit(4.85, "meters"),
  33080. name: "Wing (Ventral)",
  33081. image: {
  33082. source: "./media/characters/sabrina/wing-ventral.svg"
  33083. }
  33084. },
  33085. },
  33086. [
  33087. {
  33088. name: "Normal",
  33089. height: math.unit(5, "meters"),
  33090. default: true
  33091. },
  33092. ]
  33093. ))
  33094. characterMakers.push(() => makeCharacter(
  33095. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33096. {
  33097. frontMaid: {
  33098. height: math.unit(5 + 5/12, "feet"),
  33099. weight: math.unit(130, "lb"),
  33100. name: "Front (Maid)",
  33101. image: {
  33102. source: "./media/characters/midnight-tales/front-maid.svg",
  33103. extra: 489/454,
  33104. bottom: 61/550
  33105. }
  33106. },
  33107. frontFormal: {
  33108. height: math.unit(5 + 5/12, "feet"),
  33109. weight: math.unit(130, "lb"),
  33110. name: "Front (Formal)",
  33111. image: {
  33112. source: "./media/characters/midnight-tales/front-formal.svg",
  33113. extra: 489/454,
  33114. bottom: 61/550
  33115. }
  33116. },
  33117. back: {
  33118. height: math.unit(5 + 5/12, "feet"),
  33119. weight: math.unit(130, "lb"),
  33120. name: "Back",
  33121. image: {
  33122. source: "./media/characters/midnight-tales/back.svg",
  33123. extra: 498/456,
  33124. bottom: 33/531
  33125. }
  33126. },
  33127. frontBeast: {
  33128. height: math.unit(40, "feet"),
  33129. weight: math.unit(64000, "lb"),
  33130. name: "Front (Beast)",
  33131. image: {
  33132. source: "./media/characters/midnight-tales/front-beast.svg",
  33133. extra: 927/860,
  33134. bottom: 53/980
  33135. }
  33136. },
  33137. backBeast: {
  33138. height: math.unit(40, "feet"),
  33139. weight: math.unit(64000, "lb"),
  33140. name: "Back (Beast)",
  33141. image: {
  33142. source: "./media/characters/midnight-tales/back-beast.svg",
  33143. extra: 929/855,
  33144. bottom: 16/945
  33145. }
  33146. },
  33147. footBeast: {
  33148. height: math.unit(6.7, "feet"),
  33149. name: "Foot (Beast)",
  33150. image: {
  33151. source: "./media/characters/midnight-tales/foot-beast.svg"
  33152. }
  33153. },
  33154. headBeast: {
  33155. height: math.unit(8, "feet"),
  33156. name: "Head (Beast)",
  33157. image: {
  33158. source: "./media/characters/midnight-tales/head-beast.svg"
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Normal",
  33165. height: math.unit(5 + 5 / 12, "feet"),
  33166. default: true
  33167. },
  33168. {
  33169. name: "Macro",
  33170. height: math.unit(25, "feet")
  33171. },
  33172. ]
  33173. ))
  33174. characterMakers.push(() => makeCharacter(
  33175. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33176. {
  33177. front: {
  33178. height: math.unit(5 + 10/12, "feet"),
  33179. name: "Front",
  33180. image: {
  33181. source: "./media/characters/argon/front.svg",
  33182. extra: 2009/1935,
  33183. bottom: 118/2127
  33184. }
  33185. },
  33186. back: {
  33187. height: math.unit(5 + 10/12, "feet"),
  33188. name: "Back",
  33189. image: {
  33190. source: "./media/characters/argon/back.svg",
  33191. extra: 2047/1992,
  33192. bottom: 20/2067
  33193. }
  33194. },
  33195. frontDressed: {
  33196. height: math.unit(5 + 10/12, "feet"),
  33197. name: "Front (Dressed)",
  33198. image: {
  33199. source: "./media/characters/argon/front-dressed.svg",
  33200. extra: 2009/1935,
  33201. bottom: 118/2127
  33202. }
  33203. },
  33204. },
  33205. [
  33206. {
  33207. name: "Normal",
  33208. height: math.unit(5 + 10/12, "feet"),
  33209. default: true
  33210. },
  33211. ]
  33212. ))
  33213. characterMakers.push(() => makeCharacter(
  33214. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33215. {
  33216. front: {
  33217. height: math.unit(8 + 6/12, "feet"),
  33218. weight: math.unit(1150, "lb"),
  33219. name: "Front",
  33220. image: {
  33221. source: "./media/characters/kichi/front.svg",
  33222. extra: 1267/1164,
  33223. bottom: 61/1328
  33224. }
  33225. },
  33226. back: {
  33227. height: math.unit(8 + 6/12, "feet"),
  33228. weight: math.unit(1150, "lb"),
  33229. name: "Back",
  33230. image: {
  33231. source: "./media/characters/kichi/back.svg",
  33232. extra: 1273/1166,
  33233. bottom: 33/1306
  33234. }
  33235. },
  33236. },
  33237. [
  33238. {
  33239. name: "Normal",
  33240. height: math.unit(8 + 6/12, "feet"),
  33241. default: true
  33242. },
  33243. ]
  33244. ))
  33245. characterMakers.push(() => makeCharacter(
  33246. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33247. {
  33248. front: {
  33249. height: math.unit(6, "feet"),
  33250. weight: math.unit(210, "lb"),
  33251. name: "Front",
  33252. image: {
  33253. source: "./media/characters/manetel-greyscale/front.svg",
  33254. extra: 350/312,
  33255. bottom: 8/358
  33256. }
  33257. },
  33258. },
  33259. [
  33260. {
  33261. name: "Micro",
  33262. height: math.unit(2, "inches")
  33263. },
  33264. {
  33265. name: "Normal",
  33266. height: math.unit(6, "feet"),
  33267. default: true
  33268. },
  33269. {
  33270. name: "Minimacro",
  33271. height: math.unit(17, "feet")
  33272. },
  33273. {
  33274. name: "Macro",
  33275. height: math.unit(117, "feet")
  33276. },
  33277. ]
  33278. ))
  33279. characterMakers.push(() => makeCharacter(
  33280. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33281. {
  33282. side: {
  33283. height: math.unit(5 + 1/12, "feet"),
  33284. weight: math.unit(418, "lb"),
  33285. name: "Side",
  33286. image: {
  33287. source: "./media/characters/softpurr/side.svg",
  33288. extra: 1993/1945,
  33289. bottom: 134/2127
  33290. }
  33291. },
  33292. front: {
  33293. height: math.unit(5 + 1/12, "feet"),
  33294. weight: math.unit(418, "lb"),
  33295. name: "Front",
  33296. image: {
  33297. source: "./media/characters/softpurr/front.svg",
  33298. extra: 1950/1856,
  33299. bottom: 174/2124
  33300. }
  33301. },
  33302. paw: {
  33303. height: math.unit(1, "feet"),
  33304. name: "Paw",
  33305. image: {
  33306. source: "./media/characters/softpurr/paw.svg"
  33307. }
  33308. },
  33309. },
  33310. [
  33311. {
  33312. name: "Normal",
  33313. height: math.unit(5 + 1/12, "feet"),
  33314. default: true
  33315. },
  33316. ]
  33317. ))
  33318. characterMakers.push(() => makeCharacter(
  33319. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33320. {
  33321. front: {
  33322. height: math.unit(260, "meters"),
  33323. name: "Front",
  33324. image: {
  33325. source: "./media/characters/anahita/front.svg",
  33326. extra: 665/635,
  33327. bottom: 89/754
  33328. }
  33329. },
  33330. },
  33331. [
  33332. {
  33333. name: "Macro",
  33334. height: math.unit(260, "meters"),
  33335. default: true
  33336. },
  33337. ]
  33338. ))
  33339. characterMakers.push(() => makeCharacter(
  33340. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33341. {
  33342. front: {
  33343. height: math.unit(4 + 10/12, "feet"),
  33344. weight: math.unit(160, "lb"),
  33345. name: "Front",
  33346. image: {
  33347. source: "./media/characters/chip-mouse/front.svg",
  33348. extra: 3528/3408,
  33349. bottom: 0/3528
  33350. }
  33351. },
  33352. frontNsfw: {
  33353. height: math.unit(4 + 10/12, "feet"),
  33354. weight: math.unit(160, "lb"),
  33355. name: "Front (NSFW)",
  33356. image: {
  33357. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33358. extra: 3528/3408,
  33359. bottom: 0/3528
  33360. }
  33361. },
  33362. },
  33363. [
  33364. {
  33365. name: "Normal",
  33366. height: math.unit(4 + 10/12, "feet"),
  33367. default: true
  33368. },
  33369. ]
  33370. ))
  33371. characterMakers.push(() => makeCharacter(
  33372. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33373. {
  33374. side: {
  33375. height: math.unit(10, "feet"),
  33376. weight: math.unit(14000, "lb"),
  33377. name: "Side",
  33378. image: {
  33379. source: "./media/characters/kremm/side.svg",
  33380. extra: 1390/1053,
  33381. bottom: 90/1480
  33382. }
  33383. },
  33384. gut: {
  33385. height: math.unit(5.8, "feet"),
  33386. name: "Gut",
  33387. image: {
  33388. source: "./media/characters/kremm/gut.svg"
  33389. }
  33390. },
  33391. ass: {
  33392. height: math.unit(6.1, "feet"),
  33393. name: "Ass",
  33394. image: {
  33395. source: "./media/characters/kremm/ass.svg"
  33396. }
  33397. },
  33398. jaws: {
  33399. height: math.unit(2.2, "feet"),
  33400. name: "Jaws",
  33401. image: {
  33402. source: "./media/characters/kremm/jaws.svg"
  33403. }
  33404. },
  33405. dick: {
  33406. height: math.unit(4.26, "feet"),
  33407. name: "Dick",
  33408. image: {
  33409. source: "./media/characters/kremm/dick.svg"
  33410. }
  33411. },
  33412. },
  33413. [
  33414. {
  33415. name: "Normal",
  33416. height: math.unit(10, "feet"),
  33417. default: true
  33418. },
  33419. ]
  33420. ))
  33421. characterMakers.push(() => makeCharacter(
  33422. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33423. {
  33424. front: {
  33425. height: math.unit(30, "stories"),
  33426. name: "Front",
  33427. image: {
  33428. source: "./media/characters/kai/front.svg",
  33429. extra: 1892/1718,
  33430. bottom: 162/2054
  33431. }
  33432. },
  33433. },
  33434. [
  33435. {
  33436. name: "Macro",
  33437. height: math.unit(30, "stories"),
  33438. default: true
  33439. },
  33440. ]
  33441. ))
  33442. characterMakers.push(() => makeCharacter(
  33443. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33444. {
  33445. front: {
  33446. height: math.unit(6 + 4/12, "feet"),
  33447. weight: math.unit(145, "lb"),
  33448. name: "Front",
  33449. image: {
  33450. source: "./media/characters/sykes/front.svg",
  33451. extra: 1321 / 1187,
  33452. bottom: 66 / 1387
  33453. }
  33454. },
  33455. back: {
  33456. height: math.unit(6 + 4/12, "feet"),
  33457. weight: math.unit(145, "lb"),
  33458. name: "Back",
  33459. image: {
  33460. source: "./media/characters/sykes/back.svg",
  33461. extra: 1326/1181,
  33462. bottom: 31/1357
  33463. }
  33464. },
  33465. handBack: {
  33466. height: math.unit(0.9, "feet"),
  33467. name: "Hand (Back)",
  33468. image: {
  33469. source: "./media/characters/sykes/hand-back.svg"
  33470. }
  33471. },
  33472. handFront: {
  33473. height: math.unit(0.839, "feet"),
  33474. name: "Hand (Front)",
  33475. image: {
  33476. source: "./media/characters/sykes/hand-front.svg"
  33477. }
  33478. },
  33479. leftFoot: {
  33480. height: math.unit(1.2, "feet"),
  33481. name: "Foot (Left)",
  33482. image: {
  33483. source: "./media/characters/sykes/foot-left.svg"
  33484. }
  33485. },
  33486. rightFoot: {
  33487. height: math.unit(1.2, "feet"),
  33488. name: "Foot (Right)",
  33489. image: {
  33490. source: "./media/characters/sykes/foot-right.svg"
  33491. }
  33492. },
  33493. maw: {
  33494. height: math.unit(1.93, "feet"),
  33495. name: "Maw",
  33496. image: {
  33497. source: "./media/characters/sykes/maw.svg"
  33498. }
  33499. },
  33500. teeth: {
  33501. height: math.unit(0.51, "feet"),
  33502. name: "Teeth",
  33503. image: {
  33504. source: "./media/characters/sykes/teeth.svg"
  33505. }
  33506. },
  33507. tongue: {
  33508. height: math.unit(2.13, "feet"),
  33509. name: "Tongue",
  33510. image: {
  33511. source: "./media/characters/sykes/tongue.svg"
  33512. }
  33513. },
  33514. uvula: {
  33515. height: math.unit(0.16, "feet"),
  33516. name: "Uvula",
  33517. image: {
  33518. source: "./media/characters/sykes/uvula.svg"
  33519. }
  33520. },
  33521. collar: {
  33522. height: math.unit(0.287, "feet"),
  33523. name: "Collar",
  33524. image: {
  33525. source: "./media/characters/sykes/collar.svg"
  33526. }
  33527. },
  33528. },
  33529. [
  33530. {
  33531. name: "Shrunken",
  33532. height: math.unit(5, "inches")
  33533. },
  33534. {
  33535. name: "Normal",
  33536. height: math.unit(6 + 4 / 12, "feet"),
  33537. default: true
  33538. },
  33539. {
  33540. name: "Big",
  33541. height: math.unit(15, "feet")
  33542. },
  33543. ]
  33544. ))
  33545. characterMakers.push(() => makeCharacter(
  33546. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33547. {
  33548. front: {
  33549. height: math.unit(5 + 8/12, "feet"),
  33550. weight: math.unit(190, "lb"),
  33551. name: "Front",
  33552. image: {
  33553. source: "./media/characters/oven-otter/front.svg",
  33554. extra: 1809/1740,
  33555. bottom: 181/1990
  33556. }
  33557. },
  33558. back: {
  33559. height: math.unit(5 + 8/12, "feet"),
  33560. weight: math.unit(190, "lb"),
  33561. name: "Back",
  33562. image: {
  33563. source: "./media/characters/oven-otter/back.svg",
  33564. extra: 1709/1635,
  33565. bottom: 118/1827
  33566. }
  33567. },
  33568. hand: {
  33569. height: math.unit(1.07, "feet"),
  33570. name: "Hand",
  33571. image: {
  33572. source: "./media/characters/oven-otter/hand.svg"
  33573. }
  33574. },
  33575. beans: {
  33576. height: math.unit(1.74, "feet"),
  33577. name: "Beans",
  33578. image: {
  33579. source: "./media/characters/oven-otter/beans.svg"
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Micro",
  33586. height: math.unit(0.5, "inches")
  33587. },
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(5 + 8/12, "feet"),
  33591. default: true
  33592. },
  33593. {
  33594. name: "Macro",
  33595. height: math.unit(250, "feet")
  33596. },
  33597. {
  33598. name: "Really High",
  33599. height: math.unit(420, "feet")
  33600. },
  33601. ]
  33602. ))
  33603. characterMakers.push(() => makeCharacter(
  33604. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33605. {
  33606. front: {
  33607. height: math.unit(5, "meters"),
  33608. weight: math.unit(292000000000000, "kg"),
  33609. name: "Front",
  33610. image: {
  33611. source: "./media/characters/devourer/front.svg",
  33612. extra: 1800/1733,
  33613. bottom: 211/2011
  33614. }
  33615. },
  33616. maw: {
  33617. height: math.unit(1.1, "meter"),
  33618. name: "Maw",
  33619. image: {
  33620. source: "./media/characters/devourer/maw.svg"
  33621. }
  33622. },
  33623. },
  33624. [
  33625. {
  33626. name: "Small",
  33627. height: math.unit(3, "meters")
  33628. },
  33629. {
  33630. name: "Large",
  33631. height: math.unit(5, "meters"),
  33632. default: true
  33633. },
  33634. ]
  33635. ))
  33636. characterMakers.push(() => makeCharacter(
  33637. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33638. {
  33639. front: {
  33640. height: math.unit(6, "feet"),
  33641. weight: math.unit(400, "lb"),
  33642. name: "Front",
  33643. image: {
  33644. source: "./media/characters/ellarby/front.svg",
  33645. extra: 1909/1763,
  33646. bottom: 80/1989
  33647. }
  33648. },
  33649. back: {
  33650. height: math.unit(6, "feet"),
  33651. weight: math.unit(400, "lb"),
  33652. name: "Back",
  33653. image: {
  33654. source: "./media/characters/ellarby/back.svg",
  33655. extra: 1914/1784,
  33656. bottom: 172/2086
  33657. }
  33658. },
  33659. },
  33660. [
  33661. {
  33662. name: "Mischief",
  33663. height: math.unit(18, "inches")
  33664. },
  33665. {
  33666. name: "Trouble",
  33667. height: math.unit(12, "feet")
  33668. },
  33669. {
  33670. name: "Havoc",
  33671. height: math.unit(200, "feet"),
  33672. default: true
  33673. },
  33674. {
  33675. name: "Pandemonium",
  33676. height: math.unit(1, "mile")
  33677. },
  33678. {
  33679. name: "Catastrophe",
  33680. height: math.unit(100, "miles")
  33681. },
  33682. ]
  33683. ))
  33684. characterMakers.push(() => makeCharacter(
  33685. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33686. {
  33687. front: {
  33688. height: math.unit(4.7, "meters"),
  33689. weight: math.unit(6500, "kg"),
  33690. name: "Front",
  33691. image: {
  33692. source: "./media/characters/vex/front.svg",
  33693. extra: 1288/1140,
  33694. bottom: 100/1388
  33695. }
  33696. },
  33697. },
  33698. [
  33699. {
  33700. name: "Normal",
  33701. height: math.unit(4.7, "meters"),
  33702. default: true
  33703. },
  33704. ]
  33705. ))
  33706. characterMakers.push(() => makeCharacter(
  33707. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33708. {
  33709. normal: {
  33710. height: math.unit(6, "feet"),
  33711. weight: math.unit(350, "lb"),
  33712. name: "Normal",
  33713. image: {
  33714. source: "./media/characters/teshy/normal.svg",
  33715. extra: 1795/1735,
  33716. bottom: 16/1811
  33717. }
  33718. },
  33719. monsterFront: {
  33720. height: math.unit(12, "feet"),
  33721. weight: math.unit(4700, "lb"),
  33722. name: "Monster (Front)",
  33723. image: {
  33724. source: "./media/characters/teshy/monster-front.svg",
  33725. extra: 2042/2034,
  33726. bottom: 128/2170
  33727. }
  33728. },
  33729. monsterSide: {
  33730. height: math.unit(12, "feet"),
  33731. weight: math.unit(4700, "lb"),
  33732. name: "Monster (Side)",
  33733. image: {
  33734. source: "./media/characters/teshy/monster-side.svg",
  33735. extra: 2067/2056,
  33736. bottom: 70/2137
  33737. }
  33738. },
  33739. monsterBack: {
  33740. height: math.unit(12, "feet"),
  33741. weight: math.unit(4700, "lb"),
  33742. name: "Monster (Back)",
  33743. image: {
  33744. source: "./media/characters/teshy/monster-back.svg",
  33745. extra: 1921/1914,
  33746. bottom: 171/2092
  33747. }
  33748. },
  33749. },
  33750. [
  33751. {
  33752. name: "Normal",
  33753. height: math.unit(6, "feet"),
  33754. default: true
  33755. },
  33756. ]
  33757. ))
  33758. characterMakers.push(() => makeCharacter(
  33759. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33760. {
  33761. front: {
  33762. height: math.unit(6, "feet"),
  33763. name: "Front",
  33764. image: {
  33765. source: "./media/characters/ramey/front.svg",
  33766. extra: 790/787,
  33767. bottom: 27/817
  33768. }
  33769. },
  33770. },
  33771. [
  33772. {
  33773. name: "Normal",
  33774. height: math.unit(6, "feet"),
  33775. default: true
  33776. },
  33777. ]
  33778. ))
  33779. characterMakers.push(() => makeCharacter(
  33780. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33781. {
  33782. front: {
  33783. height: math.unit(5 + 5/12, "feet"),
  33784. weight: math.unit(120, "lb"),
  33785. name: "Front",
  33786. image: {
  33787. source: "./media/characters/phirae/front.svg",
  33788. extra: 2491/2436,
  33789. bottom: 38/2529
  33790. }
  33791. },
  33792. },
  33793. [
  33794. {
  33795. name: "Normal",
  33796. height: math.unit(5 + 5/12, "feet"),
  33797. default: true
  33798. },
  33799. ]
  33800. ))
  33801. characterMakers.push(() => makeCharacter(
  33802. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33803. {
  33804. front: {
  33805. height: math.unit(6, "feet"),
  33806. weight: math.unit(150, "lb"),
  33807. name: "Front",
  33808. image: {
  33809. source: "./media/characters/stagglas/front.svg",
  33810. extra: 962/882,
  33811. bottom: 53/1015
  33812. }
  33813. },
  33814. },
  33815. [
  33816. {
  33817. name: "Normal",
  33818. height: math.unit(5 + 3/12, "feet"),
  33819. default: true
  33820. },
  33821. ]
  33822. ))
  33823. characterMakers.push(() => makeCharacter(
  33824. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33825. {
  33826. front: {
  33827. height: math.unit(5 + 4/12, "feet"),
  33828. weight: math.unit(145, "lb"),
  33829. name: "Front",
  33830. image: {
  33831. source: "./media/characters/starra/front.svg",
  33832. extra: 1790/1691,
  33833. bottom: 91/1881
  33834. }
  33835. },
  33836. },
  33837. [
  33838. {
  33839. name: "Normal",
  33840. height: math.unit(5 + 4/12, "feet"),
  33841. default: true
  33842. },
  33843. ]
  33844. ))
  33845. characterMakers.push(() => makeCharacter(
  33846. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33847. {
  33848. front: {
  33849. height: math.unit(2.2, "meters"),
  33850. name: "Front",
  33851. image: {
  33852. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33853. extra: 1194/1005,
  33854. bottom: 25/1219
  33855. }
  33856. },
  33857. },
  33858. [
  33859. {
  33860. name: "Normal",
  33861. height: math.unit(2.2, "meters"),
  33862. default: true
  33863. },
  33864. ]
  33865. ))
  33866. characterMakers.push(() => makeCharacter(
  33867. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33868. {
  33869. side: {
  33870. height: math.unit(8 + 2/12, "feet"),
  33871. weight: math.unit(1240, "lb"),
  33872. name: "Side",
  33873. image: {
  33874. source: "./media/characters/mika-valentine/side.svg",
  33875. extra: 2670/2501,
  33876. bottom: 250/2920
  33877. }
  33878. },
  33879. },
  33880. [
  33881. {
  33882. name: "Normal",
  33883. height: math.unit(8 + 2/12, "feet"),
  33884. default: true
  33885. },
  33886. ]
  33887. ))
  33888. characterMakers.push(() => makeCharacter(
  33889. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33890. {
  33891. front: {
  33892. height: math.unit(7 + 2/12, "feet"),
  33893. name: "Front",
  33894. image: {
  33895. source: "./media/characters/xoltol/front.svg",
  33896. extra: 2212/2124,
  33897. bottom: 84/2296
  33898. }
  33899. },
  33900. side: {
  33901. height: math.unit(7 + 2/12, "feet"),
  33902. name: "Side",
  33903. image: {
  33904. source: "./media/characters/xoltol/side.svg",
  33905. extra: 2273/2197,
  33906. bottom: 26/2299
  33907. }
  33908. },
  33909. hand: {
  33910. height: math.unit(2.5, "feet"),
  33911. name: "Hand",
  33912. image: {
  33913. source: "./media/characters/xoltol/hand.svg"
  33914. }
  33915. },
  33916. },
  33917. [
  33918. {
  33919. name: "Small-ish",
  33920. height: math.unit(5 + 11/12, "feet")
  33921. },
  33922. {
  33923. name: "Normal",
  33924. height: math.unit(7 + 2/12, "feet")
  33925. },
  33926. {
  33927. name: "\"Macro\"",
  33928. height: math.unit(14 + 9/12, "feet"),
  33929. default: true
  33930. },
  33931. {
  33932. name: "Alternate Height",
  33933. height: math.unit(20, "feet")
  33934. },
  33935. {
  33936. name: "Actually Macro",
  33937. height: math.unit(100, "feet")
  33938. },
  33939. ]
  33940. ))
  33941. characterMakers.push(() => makeCharacter(
  33942. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33943. {
  33944. front: {
  33945. height: math.unit(5 + 2/12, "feet"),
  33946. name: "Front",
  33947. image: {
  33948. source: "./media/characters/kotetsu-redwood/front.svg",
  33949. extra: 1053/942,
  33950. bottom: 60/1113
  33951. }
  33952. },
  33953. },
  33954. [
  33955. {
  33956. name: "Normal",
  33957. height: math.unit(5 + 2/12, "feet"),
  33958. default: true
  33959. },
  33960. ]
  33961. ))
  33962. characterMakers.push(() => makeCharacter(
  33963. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33964. {
  33965. front: {
  33966. height: math.unit(2.4, "meters"),
  33967. weight: math.unit(125, "kg"),
  33968. name: "Front",
  33969. image: {
  33970. source: "./media/characters/lilith/front.svg",
  33971. extra: 1590/1513,
  33972. bottom: 203/1793
  33973. }
  33974. },
  33975. },
  33976. [
  33977. {
  33978. name: "Humanoid",
  33979. height: math.unit(2.4, "meters")
  33980. },
  33981. {
  33982. name: "Normal",
  33983. height: math.unit(6, "meters"),
  33984. default: true
  33985. },
  33986. {
  33987. name: "Largest",
  33988. height: math.unit(55, "meters")
  33989. },
  33990. ]
  33991. ))
  33992. characterMakers.push(() => makeCharacter(
  33993. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33994. {
  33995. front: {
  33996. height: math.unit(8 + 4/12, "feet"),
  33997. weight: math.unit(535, "lb"),
  33998. name: "Front",
  33999. image: {
  34000. source: "./media/characters/beh'kah-bolger/front.svg",
  34001. extra: 1660/1603,
  34002. bottom: 37/1697
  34003. }
  34004. },
  34005. },
  34006. [
  34007. {
  34008. name: "Normal",
  34009. height: math.unit(8 + 4/12, "feet"),
  34010. default: true
  34011. },
  34012. {
  34013. name: "Kaiju",
  34014. height: math.unit(250, "feet")
  34015. },
  34016. {
  34017. name: "Still Growing",
  34018. height: math.unit(10, "miles")
  34019. },
  34020. {
  34021. name: "Continental",
  34022. height: math.unit(5000, "miles")
  34023. },
  34024. {
  34025. name: "Final Form",
  34026. height: math.unit(2500000, "miles")
  34027. },
  34028. ]
  34029. ))
  34030. characterMakers.push(() => makeCharacter(
  34031. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34032. {
  34033. front: {
  34034. height: math.unit(7 + 2/12, "feet"),
  34035. weight: math.unit(230, "kg"),
  34036. name: "Front",
  34037. image: {
  34038. source: "./media/characters/tatyana-milewska/front.svg",
  34039. extra: 1199/1150,
  34040. bottom: 86/1285
  34041. }
  34042. },
  34043. },
  34044. [
  34045. {
  34046. name: "Normal",
  34047. height: math.unit(7 + 2/12, "feet"),
  34048. default: true
  34049. },
  34050. {
  34051. name: "Big",
  34052. height: math.unit(12, "feet")
  34053. },
  34054. {
  34055. name: "Minimacro",
  34056. height: math.unit(20, "feet")
  34057. },
  34058. {
  34059. name: "Macro",
  34060. height: math.unit(120, "feet")
  34061. },
  34062. ]
  34063. ))
  34064. characterMakers.push(() => makeCharacter(
  34065. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34066. {
  34067. front: {
  34068. height: math.unit(7 + 8/12, "feet"),
  34069. weight: math.unit(152, "kg"),
  34070. name: "Front",
  34071. image: {
  34072. source: "./media/characters/helen-arri/front.svg",
  34073. extra: 440/423,
  34074. bottom: 14/454
  34075. }
  34076. },
  34077. back: {
  34078. height: math.unit(7 + 8/12, "feet"),
  34079. weight: math.unit(152, "kg"),
  34080. name: "Back",
  34081. image: {
  34082. source: "./media/characters/helen-arri/back.svg",
  34083. extra: 443/426,
  34084. bottom: 8/451
  34085. }
  34086. },
  34087. },
  34088. [
  34089. {
  34090. name: "Normal",
  34091. height: math.unit(7 + 8/12, "feet"),
  34092. default: true
  34093. },
  34094. {
  34095. name: "Big",
  34096. height: math.unit(14, "feet")
  34097. },
  34098. {
  34099. name: "Minimacro",
  34100. height: math.unit(24, "feet")
  34101. },
  34102. {
  34103. name: "Macro",
  34104. height: math.unit(140, "feet")
  34105. },
  34106. ]
  34107. ))
  34108. characterMakers.push(() => makeCharacter(
  34109. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34110. {
  34111. front: {
  34112. height: math.unit(6, "meters"),
  34113. name: "Front",
  34114. image: {
  34115. source: "./media/characters/ehanu-rehu/front.svg",
  34116. extra: 1800/1800,
  34117. bottom: 59/1859
  34118. }
  34119. },
  34120. },
  34121. [
  34122. {
  34123. name: "Normal",
  34124. height: math.unit(6, "meters"),
  34125. default: true
  34126. },
  34127. ]
  34128. ))
  34129. characterMakers.push(() => makeCharacter(
  34130. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34131. {
  34132. front: {
  34133. height: math.unit(7 + 3/12, "feet"),
  34134. name: "Front",
  34135. image: {
  34136. source: "./media/characters/renholder/front.svg",
  34137. extra: 3096/2960,
  34138. bottom: 250/3346
  34139. }
  34140. },
  34141. },
  34142. [
  34143. {
  34144. name: "Normal Bat",
  34145. height: math.unit(7 + 3/12, "feet"),
  34146. default: true
  34147. },
  34148. {
  34149. name: "Slightly Tall Bat",
  34150. height: math.unit(100, "feet")
  34151. },
  34152. {
  34153. name: "Big Bat",
  34154. height: math.unit(1000, "feet")
  34155. },
  34156. {
  34157. name: "City-Sized Bat",
  34158. height: math.unit(200000, "feet")
  34159. },
  34160. {
  34161. name: "Bigger Bat",
  34162. height: math.unit(10000, "miles")
  34163. },
  34164. {
  34165. name: "Solar Sized Bat",
  34166. height: math.unit(100, "AU")
  34167. },
  34168. {
  34169. name: "Galactic Bat",
  34170. height: math.unit(200000, "lightyears")
  34171. },
  34172. {
  34173. name: "Universally Known Bat",
  34174. height: math.unit(1, "universe")
  34175. },
  34176. ]
  34177. ))
  34178. characterMakers.push(() => makeCharacter(
  34179. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34180. {
  34181. front: {
  34182. height: math.unit(6 + 11/12, "feet"),
  34183. weight: math.unit(250, "lb"),
  34184. name: "Front",
  34185. image: {
  34186. source: "./media/characters/cookiecat/front.svg",
  34187. extra: 893/827,
  34188. bottom: 14/907
  34189. }
  34190. },
  34191. },
  34192. [
  34193. {
  34194. name: "Micro",
  34195. height: math.unit(3, "inches")
  34196. },
  34197. {
  34198. name: "Normal",
  34199. height: math.unit(6 + 11/12, "feet"),
  34200. default: true
  34201. },
  34202. {
  34203. name: "Macro",
  34204. height: math.unit(100, "feet")
  34205. },
  34206. {
  34207. name: "Macro+",
  34208. height: math.unit(404, "feet")
  34209. },
  34210. {
  34211. name: "Megamacro",
  34212. height: math.unit(165, "miles")
  34213. },
  34214. {
  34215. name: "Planetary",
  34216. height: math.unit(4600, "miles")
  34217. },
  34218. ]
  34219. ))
  34220. characterMakers.push(() => makeCharacter(
  34221. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34222. {
  34223. front: {
  34224. height: math.unit(10 + 3/12, "feet"),
  34225. weight: math.unit(1500, "lb"),
  34226. name: "Front",
  34227. image: {
  34228. source: "./media/characters/tux-kusanagi/front.svg",
  34229. extra: 944/840,
  34230. bottom: 39/983
  34231. }
  34232. },
  34233. back: {
  34234. height: math.unit(10 + 3/12, "feet"),
  34235. weight: math.unit(1500, "lb"),
  34236. name: "Back",
  34237. image: {
  34238. source: "./media/characters/tux-kusanagi/back.svg",
  34239. extra: 941/842,
  34240. bottom: 28/969
  34241. }
  34242. },
  34243. rump: {
  34244. height: math.unit(5.25, "feet"),
  34245. name: "Rump",
  34246. image: {
  34247. source: "./media/characters/tux-kusanagi/rump.svg"
  34248. }
  34249. },
  34250. beak: {
  34251. height: math.unit(1.54, "feet"),
  34252. name: "Beak",
  34253. image: {
  34254. source: "./media/characters/tux-kusanagi/beak.svg"
  34255. }
  34256. },
  34257. },
  34258. [
  34259. {
  34260. name: "Normal",
  34261. height: math.unit(10 + 3/12, "feet"),
  34262. default: true
  34263. },
  34264. ]
  34265. ))
  34266. characterMakers.push(() => makeCharacter(
  34267. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34268. {
  34269. front: {
  34270. height: math.unit(58, "feet"),
  34271. weight: math.unit(200, "tons"),
  34272. name: "Front",
  34273. image: {
  34274. source: "./media/characters/uzarmazari/front.svg",
  34275. extra: 1575/1455,
  34276. bottom: 152/1727
  34277. }
  34278. },
  34279. back: {
  34280. height: math.unit(58, "feet"),
  34281. weight: math.unit(200, "tons"),
  34282. name: "Back",
  34283. image: {
  34284. source: "./media/characters/uzarmazari/back.svg",
  34285. extra: 1585/1510,
  34286. bottom: 157/1742
  34287. }
  34288. },
  34289. head: {
  34290. height: math.unit(26, "feet"),
  34291. name: "Head",
  34292. image: {
  34293. source: "./media/characters/uzarmazari/head.svg"
  34294. }
  34295. },
  34296. },
  34297. [
  34298. {
  34299. name: "Normal",
  34300. height: math.unit(58, "feet"),
  34301. default: true
  34302. },
  34303. ]
  34304. ))
  34305. characterMakers.push(() => makeCharacter(
  34306. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34307. {
  34308. side: {
  34309. height: math.unit(15, "feet"),
  34310. name: "Side",
  34311. image: {
  34312. source: "./media/characters/akitu/side.svg",
  34313. extra: 1421/1321,
  34314. bottom: 157/1578
  34315. }
  34316. },
  34317. front: {
  34318. height: math.unit(15, "feet"),
  34319. name: "Front",
  34320. image: {
  34321. source: "./media/characters/akitu/front.svg",
  34322. extra: 1435/1326,
  34323. bottom: 232/1667
  34324. }
  34325. },
  34326. },
  34327. [
  34328. {
  34329. name: "Normal",
  34330. height: math.unit(15, "feet"),
  34331. default: true
  34332. },
  34333. ]
  34334. ))
  34335. characterMakers.push(() => makeCharacter(
  34336. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34337. {
  34338. front: {
  34339. height: math.unit(10 + 8/12, "feet"),
  34340. name: "Front",
  34341. image: {
  34342. source: "./media/characters/azalie-croixland/front.svg",
  34343. extra: 1972/1856,
  34344. bottom: 31/2003
  34345. }
  34346. },
  34347. },
  34348. [
  34349. {
  34350. name: "Original Height",
  34351. height: math.unit(5 + 4/12, "feet")
  34352. },
  34353. {
  34354. name: "Normal Height",
  34355. height: math.unit(10 + 8/12, "feet"),
  34356. default: true
  34357. },
  34358. ]
  34359. ))
  34360. characterMakers.push(() => makeCharacter(
  34361. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34362. {
  34363. side: {
  34364. height: math.unit(7 + 1/12, "feet"),
  34365. weight: math.unit(245, "lb"),
  34366. name: "Side",
  34367. image: {
  34368. source: "./media/characters/kavus-kazian/side.svg",
  34369. extra: 349/342,
  34370. bottom: 15/364
  34371. }
  34372. },
  34373. },
  34374. [
  34375. {
  34376. name: "Normal",
  34377. height: math.unit(7 + 1/12, "feet"),
  34378. default: true
  34379. },
  34380. ]
  34381. ))
  34382. characterMakers.push(() => makeCharacter(
  34383. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34384. {
  34385. normal: {
  34386. height: math.unit(5 + 11/12, "feet"),
  34387. name: "Normal",
  34388. image: {
  34389. source: "./media/characters/moonlight-rose/normal.svg",
  34390. extra: 1979/1835,
  34391. bottom: 14/1993
  34392. }
  34393. },
  34394. demon: {
  34395. height: math.unit(5, "km"),
  34396. name: "Demon",
  34397. image: {
  34398. source: "./media/characters/moonlight-rose/demon.svg",
  34399. extra: 986/916,
  34400. bottom: 28/1014
  34401. }
  34402. },
  34403. },
  34404. [
  34405. {
  34406. name: "\"Natural\" height",
  34407. height: math.unit(5 + 11/12, "feet")
  34408. },
  34409. {
  34410. name: "Comfortable Size",
  34411. height: math.unit(40, "meters")
  34412. },
  34413. {
  34414. name: "Common Size",
  34415. height: math.unit(50, "km"),
  34416. default: true
  34417. },
  34418. {
  34419. name: "Demonic",
  34420. height: math.unit(1.24415e+21, "meters")
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(16, "feet"),
  34429. weight: math.unit(610, "kg"),
  34430. name: "Front",
  34431. image: {
  34432. source: "./media/characters/huckle/front.svg",
  34433. extra: 1731/1625,
  34434. bottom: 33/1764
  34435. }
  34436. },
  34437. back: {
  34438. height: math.unit(16, "feet"),
  34439. weight: math.unit(610, "kg"),
  34440. name: "Back",
  34441. image: {
  34442. source: "./media/characters/huckle/back.svg",
  34443. extra: 1738/1651,
  34444. bottom: 37/1775
  34445. }
  34446. },
  34447. laughing: {
  34448. height: math.unit(3.75, "feet"),
  34449. name: "Laughing",
  34450. image: {
  34451. source: "./media/characters/huckle/laughing.svg"
  34452. }
  34453. },
  34454. angry: {
  34455. height: math.unit(4.15, "feet"),
  34456. name: "Angry",
  34457. image: {
  34458. source: "./media/characters/huckle/angry.svg"
  34459. }
  34460. },
  34461. },
  34462. [
  34463. {
  34464. name: "Normal",
  34465. height: math.unit(16, "feet"),
  34466. default: true
  34467. },
  34468. {
  34469. name: "Mini Macro",
  34470. height: math.unit(463, "feet")
  34471. },
  34472. {
  34473. name: "Macro",
  34474. height: math.unit(1680, "meters")
  34475. },
  34476. {
  34477. name: "Mega Macro",
  34478. height: math.unit(175, "km")
  34479. },
  34480. {
  34481. name: "Terra Macro",
  34482. height: math.unit(32, "gigameters")
  34483. },
  34484. {
  34485. name: "Multiverse+",
  34486. height: math.unit(2.56e23, "yottameters")
  34487. },
  34488. ]
  34489. ))
  34490. characterMakers.push(() => makeCharacter(
  34491. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34492. {
  34493. front: {
  34494. height: math.unit(6 + 9/12, "feet"),
  34495. weight: math.unit(280, "lb"),
  34496. name: "Front",
  34497. image: {
  34498. source: "./media/characters/candy/front.svg",
  34499. extra: 234/217,
  34500. bottom: 11/245
  34501. }
  34502. },
  34503. },
  34504. [
  34505. {
  34506. name: "Really Small",
  34507. height: math.unit(0.1, "nm")
  34508. },
  34509. {
  34510. name: "Micro",
  34511. height: math.unit(2, "inches")
  34512. },
  34513. {
  34514. name: "Normal",
  34515. height: math.unit(6 + 9/12, "feet"),
  34516. default: true
  34517. },
  34518. {
  34519. name: "Small Macro",
  34520. height: math.unit(69, "feet")
  34521. },
  34522. {
  34523. name: "Macro",
  34524. height: math.unit(160, "feet")
  34525. },
  34526. {
  34527. name: "Megamacro",
  34528. height: math.unit(22000, "miles")
  34529. },
  34530. {
  34531. name: "Gigamacro",
  34532. height: math.unit(50000, "miles")
  34533. },
  34534. ]
  34535. ))
  34536. characterMakers.push(() => makeCharacter(
  34537. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34538. {
  34539. front: {
  34540. height: math.unit(4, "feet"),
  34541. weight: math.unit(90, "lb"),
  34542. name: "Front",
  34543. image: {
  34544. source: "./media/characters/joey-mcdonald/front.svg",
  34545. extra: 1059/852,
  34546. bottom: 33/1092
  34547. }
  34548. },
  34549. back: {
  34550. height: math.unit(4, "feet"),
  34551. weight: math.unit(90, "lb"),
  34552. name: "Back",
  34553. image: {
  34554. source: "./media/characters/joey-mcdonald/back.svg",
  34555. extra: 1077/879,
  34556. bottom: 5/1082
  34557. }
  34558. },
  34559. },
  34560. [
  34561. {
  34562. name: "Normal",
  34563. height: math.unit(4, "feet"),
  34564. default: true
  34565. },
  34566. ]
  34567. ))
  34568. characterMakers.push(() => makeCharacter(
  34569. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34570. {
  34571. front: {
  34572. height: math.unit(12 + 6/12, "feet"),
  34573. name: "Front",
  34574. image: {
  34575. source: "./media/characters/kass-lockheed/front.svg",
  34576. extra: 354/343,
  34577. bottom: 9/363
  34578. }
  34579. },
  34580. back: {
  34581. height: math.unit(12 + 6/12, "feet"),
  34582. name: "Back",
  34583. image: {
  34584. source: "./media/characters/kass-lockheed/back.svg",
  34585. extra: 364/352,
  34586. bottom: 3/367
  34587. }
  34588. },
  34589. dick: {
  34590. height: math.unit(3.12, "feet"),
  34591. name: "Dick",
  34592. image: {
  34593. source: "./media/characters/kass-lockheed/dick.svg"
  34594. }
  34595. },
  34596. head: {
  34597. height: math.unit(2.6, "feet"),
  34598. name: "Head",
  34599. image: {
  34600. source: "./media/characters/kass-lockheed/head.svg"
  34601. }
  34602. },
  34603. bleh: {
  34604. height: math.unit(2.85, "feet"),
  34605. name: "Bleh",
  34606. image: {
  34607. source: "./media/characters/kass-lockheed/bleh.svg"
  34608. }
  34609. },
  34610. smug: {
  34611. height: math.unit(2.85, "feet"),
  34612. name: "Smug",
  34613. image: {
  34614. source: "./media/characters/kass-lockheed/smug.svg"
  34615. }
  34616. },
  34617. },
  34618. [
  34619. {
  34620. name: "Normal",
  34621. height: math.unit(12 + 6/12, "feet"),
  34622. default: true
  34623. },
  34624. ]
  34625. ))
  34626. characterMakers.push(() => makeCharacter(
  34627. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34628. {
  34629. front: {
  34630. height: math.unit(6 + 2/12, "feet"),
  34631. name: "Front",
  34632. image: {
  34633. source: "./media/characters/taylor/front.svg",
  34634. extra: 639/495,
  34635. bottom: 12/651
  34636. }
  34637. },
  34638. },
  34639. [
  34640. {
  34641. name: "Normal",
  34642. height: math.unit(6 + 2/12, "feet"),
  34643. default: true
  34644. },
  34645. {
  34646. name: "Big",
  34647. height: math.unit(15, "feet")
  34648. },
  34649. {
  34650. name: "Lorg",
  34651. height: math.unit(80, "feet")
  34652. },
  34653. {
  34654. name: "Too Lorg",
  34655. height: math.unit(120, "feet")
  34656. },
  34657. ]
  34658. ))
  34659. characterMakers.push(() => makeCharacter(
  34660. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34661. {
  34662. front: {
  34663. height: math.unit(15, "feet"),
  34664. name: "Front",
  34665. image: {
  34666. source: "./media/characters/kaizer/front.svg",
  34667. extra: 1612/1436,
  34668. bottom: 43/1655
  34669. }
  34670. },
  34671. },
  34672. [
  34673. {
  34674. name: "Normal",
  34675. height: math.unit(15, "feet"),
  34676. default: true
  34677. },
  34678. ]
  34679. ))
  34680. characterMakers.push(() => makeCharacter(
  34681. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34682. {
  34683. front: {
  34684. height: math.unit(2, "feet"),
  34685. weight: math.unit(30, "lb"),
  34686. name: "Front",
  34687. image: {
  34688. source: "./media/characters/sandy/front.svg",
  34689. extra: 1439/1307,
  34690. bottom: 194/1633
  34691. }
  34692. },
  34693. },
  34694. [
  34695. {
  34696. name: "Normal",
  34697. height: math.unit(2, "feet"),
  34698. default: true
  34699. },
  34700. ]
  34701. ))
  34702. characterMakers.push(() => makeCharacter(
  34703. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34704. {
  34705. front: {
  34706. height: math.unit(3, "feet"),
  34707. name: "Front",
  34708. image: {
  34709. source: "./media/characters/mellvi/front.svg",
  34710. extra: 1831/1630,
  34711. bottom: 58/1889
  34712. }
  34713. },
  34714. },
  34715. [
  34716. {
  34717. name: "Normal",
  34718. height: math.unit(3, "feet"),
  34719. default: true
  34720. },
  34721. ]
  34722. ))
  34723. characterMakers.push(() => makeCharacter(
  34724. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34725. {
  34726. front: {
  34727. height: math.unit(5 + 11/12, "feet"),
  34728. weight: math.unit(200, "lb"),
  34729. name: "Front",
  34730. image: {
  34731. source: "./media/characters/shirou/front.svg",
  34732. extra: 2491/2383,
  34733. bottom: 189/2680
  34734. }
  34735. },
  34736. back: {
  34737. height: math.unit(5 + 11/12, "feet"),
  34738. weight: math.unit(200, "lb"),
  34739. name: "Back",
  34740. image: {
  34741. source: "./media/characters/shirou/back.svg",
  34742. extra: 2554/2450,
  34743. bottom: 76/2630
  34744. }
  34745. },
  34746. },
  34747. [
  34748. {
  34749. name: "Normal",
  34750. height: math.unit(5 + 11/12, "feet"),
  34751. default: true
  34752. },
  34753. ]
  34754. ))
  34755. characterMakers.push(() => makeCharacter(
  34756. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34757. {
  34758. front: {
  34759. height: math.unit(6 + 3/12, "feet"),
  34760. weight: math.unit(177, "lb"),
  34761. name: "Front",
  34762. image: {
  34763. source: "./media/characters/noryu/front.svg",
  34764. extra: 973/885,
  34765. bottom: 10/983
  34766. }
  34767. },
  34768. },
  34769. [
  34770. {
  34771. name: "Normal",
  34772. height: math.unit(6 + 3/12, "feet"),
  34773. default: true
  34774. },
  34775. ]
  34776. ))
  34777. characterMakers.push(() => makeCharacter(
  34778. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34779. {
  34780. front: {
  34781. height: math.unit(5 + 6/12, "feet"),
  34782. weight: math.unit(170, "lb"),
  34783. name: "Front",
  34784. image: {
  34785. source: "./media/characters/mevolas-rubenido/front.svg",
  34786. extra: 2109/1901,
  34787. bottom: 96/2205
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Normal",
  34794. height: math.unit(5 + 6/12, "feet"),
  34795. default: true
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(100, "feet"),
  34804. name: "Front",
  34805. image: {
  34806. source: "./media/characters/dee/front.svg",
  34807. extra: 2153/2036,
  34808. bottom: 59/2212
  34809. }
  34810. },
  34811. back: {
  34812. height: math.unit(100, "feet"),
  34813. name: "Back",
  34814. image: {
  34815. source: "./media/characters/dee/back.svg",
  34816. extra: 2183/2058,
  34817. bottom: 75/2258
  34818. }
  34819. },
  34820. foot: {
  34821. height: math.unit(19.43, "feet"),
  34822. name: "Foot",
  34823. image: {
  34824. source: "./media/characters/dee/foot.svg"
  34825. }
  34826. },
  34827. hoof: {
  34828. height: math.unit(20.6, "feet"),
  34829. name: "Hoof",
  34830. image: {
  34831. source: "./media/characters/dee/hoof.svg"
  34832. }
  34833. },
  34834. },
  34835. [
  34836. {
  34837. name: "Macro",
  34838. height: math.unit(100, "feet"),
  34839. default: true
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34845. {
  34846. front: {
  34847. height: math.unit(5 + 6/12, "feet"),
  34848. name: "Front",
  34849. image: {
  34850. source: "./media/characters/teh/front.svg",
  34851. extra: 1002/847,
  34852. bottom: 62/1064
  34853. }
  34854. },
  34855. },
  34856. [
  34857. {
  34858. name: "Normal",
  34859. height: math.unit(5 + 6/12, "feet"),
  34860. default: true
  34861. },
  34862. ]
  34863. ))
  34864. characterMakers.push(() => makeCharacter(
  34865. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34866. {
  34867. side: {
  34868. height: math.unit(6 + 1/12, "feet"),
  34869. weight: math.unit(204, "lb"),
  34870. name: "Side",
  34871. image: {
  34872. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34873. extra: 974/775,
  34874. bottom: 169/1143
  34875. }
  34876. },
  34877. sitting: {
  34878. height: math.unit(6 + 2/12, "feet"),
  34879. weight: math.unit(204, "lb"),
  34880. name: "Sitting",
  34881. image: {
  34882. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34883. extra: 1175/964,
  34884. bottom: 378/1553
  34885. }
  34886. },
  34887. },
  34888. [
  34889. {
  34890. name: "Normal",
  34891. height: math.unit(6 + 1/12, "feet"),
  34892. default: true
  34893. },
  34894. ]
  34895. ))
  34896. characterMakers.push(() => makeCharacter(
  34897. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34898. {
  34899. front: {
  34900. height: math.unit(6, "inches"),
  34901. name: "Front",
  34902. image: {
  34903. source: "./media/characters/tululi/front.svg",
  34904. extra: 1997/1876,
  34905. bottom: 20/2017
  34906. }
  34907. },
  34908. },
  34909. [
  34910. {
  34911. name: "Normal",
  34912. height: math.unit(6, "inches"),
  34913. default: true
  34914. },
  34915. ]
  34916. ))
  34917. characterMakers.push(() => makeCharacter(
  34918. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34919. {
  34920. front: {
  34921. height: math.unit(4 + 1/12, "feet"),
  34922. name: "Front",
  34923. image: {
  34924. source: "./media/characters/star/front.svg",
  34925. extra: 1493/1189,
  34926. bottom: 48/1541
  34927. }
  34928. },
  34929. },
  34930. [
  34931. {
  34932. name: "Normal",
  34933. height: math.unit(4 + 1/12, "feet"),
  34934. default: true
  34935. },
  34936. ]
  34937. ))
  34938. characterMakers.push(() => makeCharacter(
  34939. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34940. {
  34941. front: {
  34942. height: math.unit(6 + 3/12, "feet"),
  34943. name: "Front",
  34944. image: {
  34945. source: "./media/characters/comet/front.svg",
  34946. extra: 1681/1462,
  34947. bottom: 26/1707
  34948. }
  34949. },
  34950. },
  34951. [
  34952. {
  34953. name: "Normal",
  34954. height: math.unit(6 + 3/12, "feet"),
  34955. default: true
  34956. },
  34957. ]
  34958. ))
  34959. characterMakers.push(() => makeCharacter(
  34960. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34961. {
  34962. front: {
  34963. height: math.unit(950, "feet"),
  34964. name: "Front",
  34965. image: {
  34966. source: "./media/characters/vortex/front.svg",
  34967. extra: 1497/1434,
  34968. bottom: 56/1553
  34969. }
  34970. },
  34971. maw: {
  34972. height: math.unit(285, "feet"),
  34973. name: "Maw",
  34974. image: {
  34975. source: "./media/characters/vortex/maw.svg"
  34976. }
  34977. },
  34978. },
  34979. [
  34980. {
  34981. name: "Macro",
  34982. height: math.unit(950, "feet"),
  34983. default: true
  34984. },
  34985. ]
  34986. ))
  34987. characterMakers.push(() => makeCharacter(
  34988. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34989. {
  34990. front: {
  34991. height: math.unit(600, "feet"),
  34992. weight: math.unit(0.02, "grams"),
  34993. name: "Front",
  34994. image: {
  34995. source: "./media/characters/doodle/front.svg",
  34996. extra: 1578/1413,
  34997. bottom: 37/1615
  34998. }
  34999. },
  35000. },
  35001. [
  35002. {
  35003. name: "Macro",
  35004. height: math.unit(600, "feet"),
  35005. default: true
  35006. },
  35007. ]
  35008. ))
  35009. characterMakers.push(() => makeCharacter(
  35010. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35011. {
  35012. front: {
  35013. height: math.unit(6 + 6/12, "feet"),
  35014. name: "Front",
  35015. image: {
  35016. source: "./media/characters/jai/front.svg",
  35017. extra: 1645/1534,
  35018. bottom: 115/1760
  35019. }
  35020. },
  35021. },
  35022. [
  35023. {
  35024. name: "Normal",
  35025. height: math.unit(6 + 6/12, "feet"),
  35026. default: true
  35027. },
  35028. ]
  35029. ))
  35030. characterMakers.push(() => makeCharacter(
  35031. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35032. {
  35033. front: {
  35034. height: math.unit(6 + 8/12, "feet"),
  35035. name: "Front",
  35036. image: {
  35037. source: "./media/characters/pixel/front.svg",
  35038. extra: 1900/1735,
  35039. bottom: 63/1963
  35040. }
  35041. },
  35042. },
  35043. [
  35044. {
  35045. name: "Normal",
  35046. height: math.unit(6 + 8/12, "feet"),
  35047. default: true
  35048. },
  35049. ]
  35050. ))
  35051. characterMakers.push(() => makeCharacter(
  35052. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35053. {
  35054. front: {
  35055. height: math.unit(4 + 11/12, "feet"),
  35056. weight: math.unit(111, "lb"),
  35057. name: "Front",
  35058. image: {
  35059. source: "./media/characters/rhett/front.svg",
  35060. extra: 1682/1586,
  35061. bottom: 92/1774
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Mini",
  35068. height: math.unit(1 + 1/12, "feet")
  35069. },
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(4 + 11/12, "feet"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(3 + 3/12, "feet"),
  35082. name: "Front",
  35083. image: {
  35084. source: "./media/characters/penny/front.svg",
  35085. extra: 1406/1311,
  35086. bottom: 26/1432
  35087. }
  35088. },
  35089. },
  35090. [
  35091. {
  35092. name: "Normal",
  35093. height: math.unit(3 + 3/12, "feet"),
  35094. default: true
  35095. },
  35096. ]
  35097. ))
  35098. characterMakers.push(() => makeCharacter(
  35099. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35100. {
  35101. front: {
  35102. height: math.unit(4 + 11/12, "feet"),
  35103. name: "Front",
  35104. image: {
  35105. source: "./media/characters/monty/front.svg",
  35106. extra: 1479/1209,
  35107. bottom: 0/1479
  35108. }
  35109. },
  35110. },
  35111. [
  35112. {
  35113. name: "Normal",
  35114. height: math.unit(4 + 11/12, "feet"),
  35115. default: true
  35116. },
  35117. ]
  35118. ))
  35119. characterMakers.push(() => makeCharacter(
  35120. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35121. {
  35122. front: {
  35123. height: math.unit(8 + 4/12, "feet"),
  35124. name: "Front",
  35125. image: {
  35126. source: "./media/characters/sterling/front.svg",
  35127. extra: 1420/1236,
  35128. bottom: 27/1447
  35129. }
  35130. },
  35131. },
  35132. [
  35133. {
  35134. name: "Normal",
  35135. height: math.unit(8 + 4/12, "feet"),
  35136. default: true
  35137. },
  35138. ]
  35139. ))
  35140. characterMakers.push(() => makeCharacter(
  35141. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35142. {
  35143. front: {
  35144. height: math.unit(15, "feet"),
  35145. name: "Front",
  35146. image: {
  35147. source: "./media/characters/marble/front.svg",
  35148. extra: 973/937,
  35149. bottom: 32/1005
  35150. }
  35151. },
  35152. },
  35153. [
  35154. {
  35155. name: "Normal",
  35156. height: math.unit(15, "feet"),
  35157. default: true
  35158. },
  35159. ]
  35160. ))
  35161. characterMakers.push(() => makeCharacter(
  35162. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35163. {
  35164. front: {
  35165. height: math.unit(3, "inches"),
  35166. name: "Front",
  35167. image: {
  35168. source: "./media/characters/powder/front.svg",
  35169. extra: 1504/1334,
  35170. bottom: 518/2022
  35171. }
  35172. },
  35173. },
  35174. [
  35175. {
  35176. name: "Normal",
  35177. height: math.unit(3, "inches"),
  35178. default: true
  35179. },
  35180. ]
  35181. ))
  35182. characterMakers.push(() => makeCharacter(
  35183. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35184. {
  35185. front: {
  35186. height: math.unit(4 + 5/12, "feet"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/joey-raccoon/front.svg",
  35190. extra: 1273/1197,
  35191. bottom: 0/1273
  35192. }
  35193. },
  35194. },
  35195. [
  35196. {
  35197. name: "Normal",
  35198. height: math.unit(4 + 5/12, "feet"),
  35199. default: true
  35200. },
  35201. ]
  35202. ))
  35203. characterMakers.push(() => makeCharacter(
  35204. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35205. {
  35206. front: {
  35207. height: math.unit(8 + 4/12, "feet"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/vick/front.svg",
  35211. extra: 2187/2118,
  35212. bottom: 47/2234
  35213. }
  35214. },
  35215. },
  35216. [
  35217. {
  35218. name: "Normal",
  35219. height: math.unit(8 + 4/12, "feet"),
  35220. default: true
  35221. },
  35222. ]
  35223. ))
  35224. characterMakers.push(() => makeCharacter(
  35225. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35226. {
  35227. front: {
  35228. height: math.unit(5 + 5/12, "feet"),
  35229. name: "Front",
  35230. image: {
  35231. source: "./media/characters/mitsy/front.svg",
  35232. extra: 1842/1695,
  35233. bottom: 0/1842
  35234. }
  35235. },
  35236. },
  35237. [
  35238. {
  35239. name: "Normal",
  35240. height: math.unit(5 + 5/12, "feet"),
  35241. default: true
  35242. },
  35243. ]
  35244. ))
  35245. characterMakers.push(() => makeCharacter(
  35246. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35247. {
  35248. front: {
  35249. height: math.unit(6 + 3/12, "feet"),
  35250. name: "Front",
  35251. image: {
  35252. source: "./media/characters/silvy/front.svg",
  35253. extra: 1995/1836,
  35254. bottom: 225/2220
  35255. }
  35256. },
  35257. },
  35258. [
  35259. {
  35260. name: "Normal",
  35261. height: math.unit(6 + 3/12, "feet"),
  35262. default: true
  35263. },
  35264. ]
  35265. ))
  35266. characterMakers.push(() => makeCharacter(
  35267. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35268. {
  35269. front: {
  35270. height: math.unit(3 + 8/12, "feet"),
  35271. name: "Front",
  35272. image: {
  35273. source: "./media/characters/rodney/front.svg",
  35274. extra: 1956/1747,
  35275. bottom: 31/1987
  35276. }
  35277. },
  35278. frontDressed: {
  35279. height: math.unit(2.9, "feet"),
  35280. name: "Front (Dressed)",
  35281. image: {
  35282. source: "./media/characters/rodney/front-dressed.svg",
  35283. extra: 1382/1241,
  35284. bottom: 385/1767
  35285. }
  35286. },
  35287. },
  35288. [
  35289. {
  35290. name: "Normal",
  35291. height: math.unit(3 + 8/12, "feet"),
  35292. default: true
  35293. },
  35294. ]
  35295. ))
  35296. characterMakers.push(() => makeCharacter(
  35297. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35298. {
  35299. front: {
  35300. height: math.unit(5 + 9/12, "feet"),
  35301. weight: math.unit(194, "lbs"),
  35302. name: "Front",
  35303. image: {
  35304. source: "./media/characters/zakail-sudekai/front.svg",
  35305. extra: 2696/2533,
  35306. bottom: 248/2944
  35307. }
  35308. },
  35309. maw: {
  35310. height: math.unit(1.35, "feet"),
  35311. name: "Maw",
  35312. image: {
  35313. source: "./media/characters/zakail-sudekai/maw.svg"
  35314. }
  35315. },
  35316. },
  35317. [
  35318. {
  35319. name: "Normal",
  35320. height: math.unit(5 + 9/12, "feet"),
  35321. default: true
  35322. },
  35323. ]
  35324. ))
  35325. characterMakers.push(() => makeCharacter(
  35326. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35327. {
  35328. front: {
  35329. height: math.unit(8 + 4/12, "feet"),
  35330. weight: math.unit(1200, "lb"),
  35331. name: "Front",
  35332. image: {
  35333. source: "./media/characters/eleanor/front.svg",
  35334. extra: 1226/1192,
  35335. bottom: 52/1278
  35336. }
  35337. },
  35338. back: {
  35339. height: math.unit(8 + 4/12, "feet"),
  35340. weight: math.unit(1200, "lb"),
  35341. name: "Back",
  35342. image: {
  35343. source: "./media/characters/eleanor/back.svg",
  35344. extra: 1242/1184,
  35345. bottom: 60/1302
  35346. }
  35347. },
  35348. head: {
  35349. height: math.unit(2.62, "feet"),
  35350. name: "Head",
  35351. image: {
  35352. source: "./media/characters/eleanor/head.svg"
  35353. }
  35354. },
  35355. },
  35356. [
  35357. {
  35358. name: "Normal",
  35359. height: math.unit(8 + 4/12, "feet"),
  35360. default: true
  35361. },
  35362. ]
  35363. ))
  35364. characterMakers.push(() => makeCharacter(
  35365. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35366. {
  35367. front: {
  35368. height: math.unit(8 + 4/12, "feet"),
  35369. weight: math.unit(750, "lb"),
  35370. name: "Front",
  35371. image: {
  35372. source: "./media/characters/tanya/front.svg",
  35373. extra: 1749/1615,
  35374. bottom: 33/1782
  35375. }
  35376. },
  35377. },
  35378. [
  35379. {
  35380. name: "Normal",
  35381. height: math.unit(8 + 4/12, "feet"),
  35382. default: true
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35388. {
  35389. front: {
  35390. height: math.unit(5, "feet"),
  35391. weight: math.unit(225, "lb"),
  35392. name: "Front",
  35393. image: {
  35394. source: "./media/characters/cindy/front.svg",
  35395. extra: 1320/1250,
  35396. bottom: 42/1362
  35397. }
  35398. },
  35399. frontDressed: {
  35400. height: math.unit(5, "feet"),
  35401. weight: math.unit(225, "lb"),
  35402. name: "Front (Dressed)",
  35403. image: {
  35404. source: "./media/characters/cindy/front-dressed.svg",
  35405. extra: 1320/1250,
  35406. bottom: 42/1362
  35407. }
  35408. },
  35409. back: {
  35410. height: math.unit(5, "feet"),
  35411. weight: math.unit(225, "lb"),
  35412. name: "Back",
  35413. image: {
  35414. source: "./media/characters/cindy/back.svg",
  35415. extra: 1384/1346,
  35416. bottom: 14/1398
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(5, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(6 + 9/12, "feet"),
  35433. weight: math.unit(440, "lb"),
  35434. name: "Front",
  35435. image: {
  35436. source: "./media/characters/wilbur-owen/front.svg",
  35437. extra: 1575/1448,
  35438. bottom: 72/1647
  35439. }
  35440. },
  35441. back: {
  35442. height: math.unit(6 + 9/12, "feet"),
  35443. weight: math.unit(440, "lb"),
  35444. name: "Back",
  35445. image: {
  35446. source: "./media/characters/wilbur-owen/back.svg",
  35447. extra: 1578/1445,
  35448. bottom: 36/1614
  35449. }
  35450. },
  35451. },
  35452. [
  35453. {
  35454. name: "Normal",
  35455. height: math.unit(6 + 9/12, "feet"),
  35456. default: true
  35457. },
  35458. ]
  35459. ))
  35460. characterMakers.push(() => makeCharacter(
  35461. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35462. {
  35463. front: {
  35464. height: math.unit(6 + 5/12, "feet"),
  35465. weight: math.unit(650, "lb"),
  35466. name: "Front",
  35467. image: {
  35468. source: "./media/characters/keegan/front.svg",
  35469. extra: 2387/2198,
  35470. bottom: 33/2420
  35471. }
  35472. },
  35473. side: {
  35474. height: math.unit(6 + 5/12, "feet"),
  35475. weight: math.unit(650, "lb"),
  35476. name: "Side",
  35477. image: {
  35478. source: "./media/characters/keegan/side.svg",
  35479. extra: 2390/2202,
  35480. bottom: 47/2437
  35481. }
  35482. },
  35483. back: {
  35484. height: math.unit(6 + 5/12, "feet"),
  35485. weight: math.unit(650, "lb"),
  35486. name: "Back",
  35487. image: {
  35488. source: "./media/characters/keegan/back.svg",
  35489. extra: 2418/2268,
  35490. bottom: 15/2433
  35491. }
  35492. },
  35493. frontSfw: {
  35494. height: math.unit(6 + 5/12, "feet"),
  35495. weight: math.unit(650, "lb"),
  35496. name: "Front (SFW)",
  35497. image: {
  35498. source: "./media/characters/keegan/front-sfw.svg",
  35499. extra: 2387/2198,
  35500. bottom: 33/2420
  35501. }
  35502. },
  35503. beans: {
  35504. height: math.unit(1.85, "feet"),
  35505. name: "Beans",
  35506. image: {
  35507. source: "./media/characters/keegan/beans.svg"
  35508. }
  35509. },
  35510. },
  35511. [
  35512. {
  35513. name: "Normal",
  35514. height: math.unit(6 + 5/12, "feet"),
  35515. default: true
  35516. },
  35517. ]
  35518. ))
  35519. characterMakers.push(() => makeCharacter(
  35520. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35521. {
  35522. front: {
  35523. height: math.unit(9, "feet"),
  35524. name: "Front",
  35525. image: {
  35526. source: "./media/characters/colton/front.svg",
  35527. extra: 1589/1326,
  35528. bottom: 139/1728
  35529. }
  35530. },
  35531. },
  35532. [
  35533. {
  35534. name: "Normal",
  35535. height: math.unit(9, "feet"),
  35536. default: true
  35537. },
  35538. ]
  35539. ))
  35540. characterMakers.push(() => makeCharacter(
  35541. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35542. {
  35543. front: {
  35544. height: math.unit(2 + 9/12, "feet"),
  35545. name: "Front",
  35546. image: {
  35547. source: "./media/characters/bora/front.svg",
  35548. extra: 1265/1250,
  35549. bottom: 24/1289
  35550. }
  35551. },
  35552. },
  35553. [
  35554. {
  35555. name: "Normal",
  35556. height: math.unit(2 + 9/12, "feet"),
  35557. default: true
  35558. },
  35559. ]
  35560. ))
  35561. characterMakers.push(() => makeCharacter(
  35562. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35563. {
  35564. front: {
  35565. height: math.unit(8, "feet"),
  35566. name: "Front",
  35567. image: {
  35568. source: "./media/characters/myu-myu/front.svg",
  35569. extra: 1949/1857,
  35570. bottom: 90/2039
  35571. }
  35572. },
  35573. },
  35574. [
  35575. {
  35576. name: "Normal",
  35577. height: math.unit(8, "feet"),
  35578. default: true
  35579. },
  35580. {
  35581. name: "Big",
  35582. height: math.unit(15, "feet")
  35583. },
  35584. {
  35585. name: "BIG",
  35586. height: math.unit(25, "feet")
  35587. },
  35588. ]
  35589. ))
  35590. characterMakers.push(() => makeCharacter(
  35591. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35592. {
  35593. side: {
  35594. height: math.unit(7 + 5/12, "feet"),
  35595. weight: math.unit(2800, "lb"),
  35596. name: "Side",
  35597. image: {
  35598. source: "./media/characters/haloren/side.svg",
  35599. extra: 1793/409,
  35600. bottom: 59/1852
  35601. }
  35602. },
  35603. frontPaw: {
  35604. height: math.unit(2.36, "feet"),
  35605. name: "Front paw",
  35606. image: {
  35607. source: "./media/characters/haloren/front-paw.svg"
  35608. }
  35609. },
  35610. hindPaw: {
  35611. height: math.unit(3.18, "feet"),
  35612. name: "Hind paw",
  35613. image: {
  35614. source: "./media/characters/haloren/hind-paw.svg"
  35615. }
  35616. },
  35617. maw: {
  35618. height: math.unit(5.05, "feet"),
  35619. name: "Maw",
  35620. image: {
  35621. source: "./media/characters/haloren/maw.svg"
  35622. }
  35623. },
  35624. dick: {
  35625. height: math.unit(2.90, "feet"),
  35626. name: "Dick",
  35627. image: {
  35628. source: "./media/characters/haloren/dick.svg"
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(7 + 5/12, "feet"),
  35636. default: true
  35637. },
  35638. {
  35639. name: "Enhanced",
  35640. height: math.unit(14 + 3/12, "feet")
  35641. },
  35642. ]
  35643. ))
  35644. characterMakers.push(() => makeCharacter(
  35645. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35646. {
  35647. front: {
  35648. height: math.unit(171, "cm"),
  35649. name: "Front",
  35650. image: {
  35651. source: "./media/characters/kimmy/front.svg",
  35652. extra: 1491/1435,
  35653. bottom: 53/1544
  35654. }
  35655. },
  35656. },
  35657. [
  35658. {
  35659. name: "Small",
  35660. height: math.unit(9, "cm")
  35661. },
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(171, "cm"),
  35665. default: true
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(8, "feet"),
  35674. weight: math.unit(300, "lb"),
  35675. name: "Front",
  35676. image: {
  35677. source: "./media/characters/galeboomer/front.svg",
  35678. extra: 4651/4415,
  35679. bottom: 162/4813
  35680. }
  35681. },
  35682. back: {
  35683. height: math.unit(8, "feet"),
  35684. weight: math.unit(300, "lb"),
  35685. name: "Back",
  35686. image: {
  35687. source: "./media/characters/galeboomer/back.svg",
  35688. extra: 4544/4314,
  35689. bottom: 16/4560
  35690. }
  35691. },
  35692. frontAlt: {
  35693. height: math.unit(8, "feet"),
  35694. weight: math.unit(300, "lb"),
  35695. name: "Front (Alt)",
  35696. image: {
  35697. source: "./media/characters/galeboomer/front-alt.svg",
  35698. extra: 4458/4228,
  35699. bottom: 68/4526
  35700. }
  35701. },
  35702. maw: {
  35703. height: math.unit(1.2, "feet"),
  35704. name: "Maw",
  35705. image: {
  35706. source: "./media/characters/galeboomer/maw.svg"
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(8, "feet"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35720. {
  35721. front: {
  35722. height: math.unit(5 + 9/12, "feet"),
  35723. weight: math.unit(120, "lb"),
  35724. name: "Front",
  35725. image: {
  35726. source: "./media/characters/chyr/front.svg",
  35727. extra: 1323/1254,
  35728. bottom: 63/1386
  35729. }
  35730. },
  35731. back: {
  35732. height: math.unit(5 + 9/12, "feet"),
  35733. weight: math.unit(120, "lb"),
  35734. name: "Back",
  35735. image: {
  35736. source: "./media/characters/chyr/back.svg",
  35737. extra: 1323/1252,
  35738. bottom: 48/1371
  35739. }
  35740. },
  35741. },
  35742. [
  35743. {
  35744. name: "Normal",
  35745. height: math.unit(5 + 9/12, "feet"),
  35746. default: true
  35747. },
  35748. ]
  35749. ))
  35750. characterMakers.push(() => makeCharacter(
  35751. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35752. {
  35753. front: {
  35754. height: math.unit(7, "feet"),
  35755. weight: math.unit(310, "lb"),
  35756. name: "Front",
  35757. image: {
  35758. source: "./media/characters/solarus/front.svg",
  35759. extra: 2415/2021,
  35760. bottom: 103/2518
  35761. }
  35762. },
  35763. back: {
  35764. height: math.unit(7, "feet"),
  35765. weight: math.unit(310, "lb"),
  35766. name: "Back",
  35767. image: {
  35768. source: "./media/characters/solarus/back.svg",
  35769. extra: 2463/2089,
  35770. bottom: 79/2542
  35771. }
  35772. },
  35773. },
  35774. [
  35775. {
  35776. name: "Normal",
  35777. height: math.unit(7, "feet"),
  35778. default: true
  35779. },
  35780. ]
  35781. ))
  35782. characterMakers.push(() => makeCharacter(
  35783. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35784. {
  35785. front: {
  35786. height: math.unit(16, "feet"),
  35787. name: "Front",
  35788. image: {
  35789. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35790. extra: 1844/1780,
  35791. bottom: 58/1902
  35792. }
  35793. },
  35794. winterCoat: {
  35795. height: math.unit(16, "feet"),
  35796. name: "Winter Coat",
  35797. image: {
  35798. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35799. extra: 1807/1775,
  35800. bottom: 69/1876
  35801. }
  35802. },
  35803. },
  35804. [
  35805. {
  35806. name: "Normal",
  35807. height: math.unit(16, "feet"),
  35808. default: true
  35809. },
  35810. {
  35811. name: "Chicago Size",
  35812. height: math.unit(560, "feet")
  35813. },
  35814. ]
  35815. ))
  35816. characterMakers.push(() => makeCharacter(
  35817. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35818. {
  35819. front: {
  35820. height: math.unit(11 + 6/12, "feet"),
  35821. weight: math.unit(1366, "lb"),
  35822. name: "Front",
  35823. image: {
  35824. source: "./media/characters/lexor/front.svg",
  35825. extra: 1560/1481,
  35826. bottom: 211/1771
  35827. }
  35828. },
  35829. back: {
  35830. height: math.unit(11 + 6/12, "feet"),
  35831. weight: math.unit(1366, "lb"),
  35832. name: "Back",
  35833. image: {
  35834. source: "./media/characters/lexor/back.svg",
  35835. extra: 1614/1533,
  35836. bottom: 76/1690
  35837. }
  35838. },
  35839. maw: {
  35840. height: math.unit(3, "feet"),
  35841. name: "Maw",
  35842. image: {
  35843. source: "./media/characters/lexor/maw.svg"
  35844. }
  35845. },
  35846. dick: {
  35847. height: math.unit(2.59, "feet"),
  35848. name: "Dick",
  35849. image: {
  35850. source: "./media/characters/lexor/dick.svg"
  35851. }
  35852. },
  35853. },
  35854. [
  35855. {
  35856. name: "Normal",
  35857. height: math.unit(11 + 6/12, "feet"),
  35858. default: true
  35859. },
  35860. ]
  35861. ))
  35862. characterMakers.push(() => makeCharacter(
  35863. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35864. {
  35865. front: {
  35866. height: math.unit(5 + 8/12, "feet"),
  35867. name: "Front",
  35868. image: {
  35869. source: "./media/characters/magnum/front.svg",
  35870. extra: 942/855,
  35871. bottom: 26/968
  35872. }
  35873. },
  35874. },
  35875. [
  35876. {
  35877. name: "Normal",
  35878. height: math.unit(5 + 8/12, "feet"),
  35879. default: true
  35880. },
  35881. ]
  35882. ))
  35883. characterMakers.push(() => makeCharacter(
  35884. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35885. {
  35886. front: {
  35887. height: math.unit(18 + 4/12, "feet"),
  35888. weight: math.unit(1500, "kg"),
  35889. name: "Front",
  35890. image: {
  35891. source: "./media/characters/solas-sharpsman/front.svg",
  35892. extra: 1698/1589,
  35893. bottom: 0/1698
  35894. }
  35895. },
  35896. },
  35897. [
  35898. {
  35899. name: "Normal",
  35900. height: math.unit(18 + 4/12, "feet"),
  35901. default: true
  35902. },
  35903. ]
  35904. ))
  35905. characterMakers.push(() => makeCharacter(
  35906. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35907. {
  35908. front: {
  35909. height: math.unit(5 + 5/12, "feet"),
  35910. weight: math.unit(180, "lb"),
  35911. name: "Front",
  35912. image: {
  35913. source: "./media/characters/october/front.svg",
  35914. extra: 1800/1650,
  35915. bottom: 0/1800
  35916. }
  35917. },
  35918. frontNsfw: {
  35919. height: math.unit(5 + 5/12, "feet"),
  35920. weight: math.unit(180, "lb"),
  35921. name: "Front (NSFW)",
  35922. image: {
  35923. source: "./media/characters/october/front-nsfw.svg",
  35924. extra: 1392/1307,
  35925. bottom: 42/1434
  35926. }
  35927. },
  35928. },
  35929. [
  35930. {
  35931. name: "Normal",
  35932. height: math.unit(5 + 5/12, "feet"),
  35933. default: true
  35934. },
  35935. ]
  35936. ))
  35937. characterMakers.push(() => makeCharacter(
  35938. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35939. {
  35940. front: {
  35941. height: math.unit(8 + 6/12, "feet"),
  35942. name: "Front",
  35943. image: {
  35944. source: "./media/characters/essynkardi/front.svg",
  35945. extra: 1914/1846,
  35946. bottom: 22/1936
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Normal",
  35953. height: math.unit(8 + 6/12, "feet"),
  35954. default: true
  35955. },
  35956. ]
  35957. ))
  35958. characterMakers.push(() => makeCharacter(
  35959. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35960. {
  35961. front: {
  35962. height: math.unit(6 + 6/12, "feet"),
  35963. weight: math.unit(7, "lb"),
  35964. name: "Front",
  35965. image: {
  35966. source: "./media/characters/icky/front.svg",
  35967. extra: 813/782,
  35968. bottom: 66/879
  35969. }
  35970. },
  35971. back: {
  35972. height: math.unit(6 + 6/12, "feet"),
  35973. weight: math.unit(7, "lb"),
  35974. name: "Back",
  35975. image: {
  35976. source: "./media/characters/icky/back.svg",
  35977. extra: 754/735,
  35978. bottom: 56/810
  35979. }
  35980. },
  35981. },
  35982. [
  35983. {
  35984. name: "Normal",
  35985. height: math.unit(6 + 6/12, "feet"),
  35986. default: true
  35987. },
  35988. ]
  35989. ))
  35990. characterMakers.push(() => makeCharacter(
  35991. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35992. {
  35993. front: {
  35994. height: math.unit(15, "feet"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/rojas/front.svg",
  35998. extra: 1462/1408,
  35999. bottom: 95/1557
  36000. }
  36001. },
  36002. back: {
  36003. height: math.unit(15, "feet"),
  36004. name: "Back",
  36005. image: {
  36006. source: "./media/characters/rojas/back.svg",
  36007. extra: 1023/954,
  36008. bottom: 28/1051
  36009. }
  36010. },
  36011. },
  36012. [
  36013. {
  36014. name: "Normal",
  36015. height: math.unit(15, "feet"),
  36016. default: true
  36017. },
  36018. ]
  36019. ))
  36020. characterMakers.push(() => makeCharacter(
  36021. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36022. {
  36023. frontHuman: {
  36024. height: math.unit(5 + 7/12, "feet"),
  36025. name: "Front (Human)",
  36026. image: {
  36027. source: "./media/characters/alek-dryagan/front-human.svg",
  36028. extra: 1687/1667,
  36029. bottom: 69/1756
  36030. }
  36031. },
  36032. backHuman: {
  36033. height: math.unit(5 + 7/12, "feet"),
  36034. name: "Back (Human)",
  36035. image: {
  36036. source: "./media/characters/alek-dryagan/back-human.svg",
  36037. extra: 1670/1649,
  36038. bottom: 65/1735
  36039. }
  36040. },
  36041. frontDemi: {
  36042. height: math.unit(65, "feet"),
  36043. name: "Front (Demi)",
  36044. image: {
  36045. source: "./media/characters/alek-dryagan/front-demi.svg",
  36046. extra: 1669/1642,
  36047. bottom: 49/1718
  36048. }
  36049. },
  36050. backDemi: {
  36051. height: math.unit(65, "feet"),
  36052. name: "Back (Demi)",
  36053. image: {
  36054. source: "./media/characters/alek-dryagan/back-demi.svg",
  36055. extra: 1658/1637,
  36056. bottom: 40/1698
  36057. }
  36058. },
  36059. mawHuman: {
  36060. height: math.unit(0.3, "feet"),
  36061. name: "Maw (Human)",
  36062. image: {
  36063. source: "./media/characters/alek-dryagan/maw-human.svg"
  36064. }
  36065. },
  36066. mawDemi: {
  36067. height: math.unit(3.8, "feet"),
  36068. name: "Maw (Demi)",
  36069. image: {
  36070. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36071. }
  36072. },
  36073. },
  36074. [
  36075. {
  36076. name: "Normal",
  36077. height: math.unit(5 + 7/12, "feet"),
  36078. default: true
  36079. },
  36080. ]
  36081. ))
  36082. characterMakers.push(() => makeCharacter(
  36083. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36084. {
  36085. frontHuman: {
  36086. height: math.unit(5 + 2/12, "feet"),
  36087. name: "Front (Human)",
  36088. image: {
  36089. source: "./media/characters/gen/front-human.svg",
  36090. extra: 1627/1538,
  36091. bottom: 71/1698
  36092. }
  36093. },
  36094. backHuman: {
  36095. height: math.unit(5 + 2/12, "feet"),
  36096. name: "Back (Human)",
  36097. image: {
  36098. source: "./media/characters/gen/back-human.svg",
  36099. extra: 1638/1548,
  36100. bottom: 69/1707
  36101. }
  36102. },
  36103. frontDemi: {
  36104. height: math.unit(5 + 2/12, "feet"),
  36105. name: "Front (Demi)",
  36106. image: {
  36107. source: "./media/characters/gen/front-demi.svg",
  36108. extra: 1627/1538,
  36109. bottom: 71/1698
  36110. }
  36111. },
  36112. backDemi: {
  36113. height: math.unit(5 + 2/12, "feet"),
  36114. name: "Back (Demi)",
  36115. image: {
  36116. source: "./media/characters/gen/back-demi.svg",
  36117. extra: 1638/1548,
  36118. bottom: 69/1707
  36119. }
  36120. },
  36121. },
  36122. [
  36123. {
  36124. name: "Normal",
  36125. height: math.unit(5 + 2/12, "feet"),
  36126. default: true
  36127. },
  36128. ]
  36129. ))
  36130. characterMakers.push(() => makeCharacter(
  36131. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36132. {
  36133. frontImp: {
  36134. height: math.unit(1 + 11/12, "feet"),
  36135. name: "Front (Imp)",
  36136. image: {
  36137. source: "./media/characters/max-kobold/front-imp.svg",
  36138. extra: 1238/1134,
  36139. bottom: 81/1319
  36140. }
  36141. },
  36142. backImp: {
  36143. height: math.unit(1 + 11/12, "feet"),
  36144. name: "Back (Imp)",
  36145. image: {
  36146. source: "./media/characters/max-kobold/back-imp.svg",
  36147. extra: 1334/1175,
  36148. bottom: 34/1368
  36149. }
  36150. },
  36151. frontDemi: {
  36152. height: math.unit(5 + 9/12, "feet"),
  36153. name: "Front (Demi)",
  36154. image: {
  36155. source: "./media/characters/max-kobold/front-demi.svg",
  36156. extra: 1715/1685,
  36157. bottom: 54/1769
  36158. }
  36159. },
  36160. backDemi: {
  36161. height: math.unit(5 + 9/12, "feet"),
  36162. name: "Back (Demi)",
  36163. image: {
  36164. source: "./media/characters/max-kobold/back-demi.svg",
  36165. extra: 1752/1729,
  36166. bottom: 41/1793
  36167. }
  36168. },
  36169. handImp: {
  36170. height: math.unit(0.45, "feet"),
  36171. name: "Hand (Imp)",
  36172. image: {
  36173. source: "./media/characters/max-kobold/hand.svg"
  36174. }
  36175. },
  36176. pawImp: {
  36177. height: math.unit(0.46, "feet"),
  36178. name: "Paw (Imp)",
  36179. image: {
  36180. source: "./media/characters/max-kobold/paw.svg"
  36181. }
  36182. },
  36183. handDemi: {
  36184. height: math.unit(0.80, "feet"),
  36185. name: "Hand (Demi)",
  36186. image: {
  36187. source: "./media/characters/max-kobold/hand.svg"
  36188. }
  36189. },
  36190. pawDemi: {
  36191. height: math.unit(1.1, "feet"),
  36192. name: "Paw (Demi)",
  36193. image: {
  36194. source: "./media/characters/max-kobold/paw.svg"
  36195. }
  36196. },
  36197. headImp: {
  36198. height: math.unit(1.33, "feet"),
  36199. name: "Head (Imp)",
  36200. image: {
  36201. source: "./media/characters/max-kobold/head-imp.svg"
  36202. }
  36203. },
  36204. mawImp: {
  36205. height: math.unit(0.75, "feet"),
  36206. name: "Maw (Imp)",
  36207. image: {
  36208. source: "./media/characters/max-kobold/maw-imp.svg"
  36209. }
  36210. },
  36211. mawDemi: {
  36212. height: math.unit(0.42, "feet"),
  36213. name: "Maw (Demi)",
  36214. image: {
  36215. source: "./media/characters/max-kobold/maw-demi.svg"
  36216. }
  36217. },
  36218. },
  36219. [
  36220. {
  36221. name: "Normal",
  36222. height: math.unit(1 + 11/12, "feet"),
  36223. default: true
  36224. },
  36225. ]
  36226. ))
  36227. characterMakers.push(() => makeCharacter(
  36228. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36229. {
  36230. front: {
  36231. height: math.unit(7 + 5/12, "feet"),
  36232. name: "Front",
  36233. image: {
  36234. source: "./media/characters/carbon/front.svg",
  36235. extra: 1754/1689,
  36236. bottom: 65/1819
  36237. }
  36238. },
  36239. back: {
  36240. height: math.unit(7 + 5/12, "feet"),
  36241. name: "Back",
  36242. image: {
  36243. source: "./media/characters/carbon/back.svg",
  36244. extra: 1762/1695,
  36245. bottom: 24/1786
  36246. }
  36247. },
  36248. frontGigantamax: {
  36249. height: math.unit(150, "feet"),
  36250. name: "Front (Gigantamax)",
  36251. image: {
  36252. source: "./media/characters/carbon/front-gigantamax.svg",
  36253. extra: 1826/1669,
  36254. bottom: 59/1885
  36255. }
  36256. },
  36257. backGigantamax: {
  36258. height: math.unit(150, "feet"),
  36259. name: "Back (Gigantamax)",
  36260. image: {
  36261. source: "./media/characters/carbon/back-gigantamax.svg",
  36262. extra: 1796/1653,
  36263. bottom: 53/1849
  36264. }
  36265. },
  36266. maw: {
  36267. height: math.unit(0.48, "feet"),
  36268. name: "Maw",
  36269. image: {
  36270. source: "./media/characters/carbon/maw.svg"
  36271. }
  36272. },
  36273. mawGigantamax: {
  36274. height: math.unit(7.5, "feet"),
  36275. name: "Maw (Gigantamax)",
  36276. image: {
  36277. source: "./media/characters/carbon/maw-gigantamax.svg"
  36278. }
  36279. },
  36280. },
  36281. [
  36282. {
  36283. name: "Normal",
  36284. height: math.unit(7 + 5/12, "feet"),
  36285. default: true
  36286. },
  36287. ]
  36288. ))
  36289. characterMakers.push(() => makeCharacter(
  36290. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36291. {
  36292. front: {
  36293. height: math.unit(6, "feet"),
  36294. name: "Front",
  36295. image: {
  36296. source: "./media/characters/maverick/front.svg",
  36297. extra: 1672/1661,
  36298. bottom: 85/1757
  36299. }
  36300. },
  36301. back: {
  36302. height: math.unit(6, "feet"),
  36303. name: "Back",
  36304. image: {
  36305. source: "./media/characters/maverick/back.svg",
  36306. extra: 1642/1631,
  36307. bottom: 38/1680
  36308. }
  36309. },
  36310. },
  36311. [
  36312. {
  36313. name: "Normal",
  36314. height: math.unit(6, "feet"),
  36315. default: true
  36316. },
  36317. ]
  36318. ))
  36319. characterMakers.push(() => makeCharacter(
  36320. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36321. {
  36322. front: {
  36323. height: math.unit(15, "feet"),
  36324. weight: math.unit(615, "lb"),
  36325. name: "Front",
  36326. image: {
  36327. source: "./media/characters/grockle/front.svg",
  36328. extra: 1535/1427,
  36329. bottom: 56/1591
  36330. }
  36331. },
  36332. },
  36333. [
  36334. {
  36335. name: "Normal",
  36336. height: math.unit(15, "feet"),
  36337. default: true
  36338. },
  36339. {
  36340. name: "Large",
  36341. height: math.unit(150, "feet")
  36342. },
  36343. {
  36344. name: "Macro",
  36345. height: math.unit(1876, "feet")
  36346. },
  36347. {
  36348. name: "Mega Macro",
  36349. height: math.unit(121940, "feet")
  36350. },
  36351. {
  36352. name: "Giga Macro",
  36353. height: math.unit(750, "km")
  36354. },
  36355. {
  36356. name: "Tera Macro",
  36357. height: math.unit(750000, "km")
  36358. },
  36359. {
  36360. name: "Galactic",
  36361. height: math.unit(1.4e5, "km")
  36362. },
  36363. {
  36364. name: "Godlike",
  36365. height: math.unit(9.8e280, "galaxies")
  36366. },
  36367. ]
  36368. ))
  36369. characterMakers.push(() => makeCharacter(
  36370. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36371. {
  36372. front: {
  36373. height: math.unit(11, "meters"),
  36374. weight: math.unit(20, "tonnes"),
  36375. name: "Front",
  36376. image: {
  36377. source: "./media/characters/alistair/front.svg",
  36378. extra: 1265/1009,
  36379. bottom: 93/1358
  36380. }
  36381. },
  36382. },
  36383. [
  36384. {
  36385. name: "Normal",
  36386. height: math.unit(11, "meters"),
  36387. default: true
  36388. },
  36389. ]
  36390. ))
  36391. characterMakers.push(() => makeCharacter(
  36392. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36393. {
  36394. front: {
  36395. height: math.unit(5 + 8/12, "feet"),
  36396. name: "Front",
  36397. image: {
  36398. source: "./media/characters/haruka/front.svg",
  36399. extra: 2012/1952,
  36400. bottom: 0/2012
  36401. }
  36402. },
  36403. },
  36404. [
  36405. {
  36406. name: "Normal",
  36407. height: math.unit(5 + 8/12, "feet"),
  36408. default: true
  36409. },
  36410. ]
  36411. ))
  36412. characterMakers.push(() => makeCharacter(
  36413. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36414. {
  36415. back: {
  36416. height: math.unit(9, "feet"),
  36417. name: "Back",
  36418. image: {
  36419. source: "./media/characters/vivian-sylveon/back.svg",
  36420. extra: 1853/1714,
  36421. bottom: 0/1853
  36422. }
  36423. },
  36424. },
  36425. [
  36426. {
  36427. name: "Normal",
  36428. height: math.unit(9, "feet"),
  36429. default: true
  36430. },
  36431. {
  36432. name: "Macro",
  36433. height: math.unit(500, "feet")
  36434. },
  36435. {
  36436. name: "Megamacro",
  36437. height: math.unit(600, "miles")
  36438. },
  36439. {
  36440. name: "Gigamacro",
  36441. height: math.unit(30000, "miles")
  36442. },
  36443. ]
  36444. ))
  36445. characterMakers.push(() => makeCharacter(
  36446. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36447. {
  36448. anthro: {
  36449. height: math.unit(5 + 10/12, "feet"),
  36450. weight: math.unit(100, "lb"),
  36451. name: "Anthro",
  36452. image: {
  36453. source: "./media/characters/daiki/anthro.svg",
  36454. extra: 1115/1027,
  36455. bottom: 69/1184
  36456. }
  36457. },
  36458. feral: {
  36459. height: math.unit(200, "feet"),
  36460. name: "Feral",
  36461. image: {
  36462. source: "./media/characters/daiki/feral.svg",
  36463. extra: 1256/313,
  36464. bottom: 39/1295
  36465. }
  36466. },
  36467. feralHead: {
  36468. height: math.unit(171, "feet"),
  36469. name: "Feral Head",
  36470. image: {
  36471. source: "./media/characters/daiki/feral-head.svg"
  36472. }
  36473. },
  36474. manaDragon: {
  36475. height: math.unit(170, "meters"),
  36476. name: "Mana-dragon",
  36477. image: {
  36478. source: "./media/characters/daiki/mana-dragon.svg",
  36479. extra: 763/420,
  36480. bottom: 97/860
  36481. }
  36482. },
  36483. },
  36484. [
  36485. {
  36486. name: "Normal",
  36487. height: math.unit(5 + 10/12, "feet"),
  36488. default: true
  36489. },
  36490. ]
  36491. ))
  36492. characterMakers.push(() => makeCharacter(
  36493. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36494. {
  36495. fullyEquippedFront: {
  36496. height: math.unit(3 + 1/12, "feet"),
  36497. weight: math.unit(24, "lb"),
  36498. name: "Fully Equipped (Front)",
  36499. image: {
  36500. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36501. extra: 687/605,
  36502. bottom: 18/705
  36503. }
  36504. },
  36505. fullyEquippedBack: {
  36506. height: math.unit(3 + 1/12, "feet"),
  36507. weight: math.unit(24, "lb"),
  36508. name: "Fully Equipped (Back)",
  36509. image: {
  36510. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36511. extra: 689/590,
  36512. bottom: 18/707
  36513. }
  36514. },
  36515. dailyWear: {
  36516. height: math.unit(3 + 1/12, "feet"),
  36517. weight: math.unit(24, "lb"),
  36518. name: "Daily Wear",
  36519. image: {
  36520. source: "./media/characters/tea-spot/daily-wear.svg",
  36521. extra: 701/620,
  36522. bottom: 21/722
  36523. }
  36524. },
  36525. maidWork: {
  36526. height: math.unit(3 + 1/12, "feet"),
  36527. weight: math.unit(24, "lb"),
  36528. name: "Maid Work",
  36529. image: {
  36530. source: "./media/characters/tea-spot/maid-work.svg",
  36531. extra: 693/609,
  36532. bottom: 15/708
  36533. }
  36534. },
  36535. },
  36536. [
  36537. {
  36538. name: "Normal",
  36539. height: math.unit(3 + 1/12, "feet"),
  36540. default: true
  36541. },
  36542. ]
  36543. ))
  36544. characterMakers.push(() => makeCharacter(
  36545. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36546. {
  36547. front: {
  36548. height: math.unit(175, "cm"),
  36549. weight: math.unit(75, "kg"),
  36550. name: "Front",
  36551. image: {
  36552. source: "./media/characters/chee/front.svg",
  36553. extra: 1796/1740,
  36554. bottom: 40/1836
  36555. }
  36556. },
  36557. },
  36558. [
  36559. {
  36560. name: "Micro-Micro",
  36561. height: math.unit(1, "nm")
  36562. },
  36563. {
  36564. name: "Micro-erst",
  36565. height: math.unit(1, "micrometer")
  36566. },
  36567. {
  36568. name: "Micro-er",
  36569. height: math.unit(1, "cm")
  36570. },
  36571. {
  36572. name: "Normal",
  36573. height: math.unit(175, "cm"),
  36574. default: true
  36575. },
  36576. {
  36577. name: "Macro",
  36578. height: math.unit(100, "m")
  36579. },
  36580. {
  36581. name: "Macro-er",
  36582. height: math.unit(1, "km")
  36583. },
  36584. {
  36585. name: "Macro-erst",
  36586. height: math.unit(10, "km")
  36587. },
  36588. {
  36589. name: "Macro-Macro",
  36590. height: math.unit(100, "km")
  36591. },
  36592. ]
  36593. ))
  36594. characterMakers.push(() => makeCharacter(
  36595. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36596. {
  36597. front: {
  36598. height: math.unit(11 + 9/12, "feet"),
  36599. weight: math.unit(935, "lb"),
  36600. name: "Front",
  36601. image: {
  36602. source: "./media/characters/kingsley/front.svg",
  36603. extra: 1803/1674,
  36604. bottom: 127/1930
  36605. }
  36606. },
  36607. frontNude: {
  36608. height: math.unit(11 + 9/12, "feet"),
  36609. weight: math.unit(935, "lb"),
  36610. name: "Front (Nude)",
  36611. image: {
  36612. source: "./media/characters/kingsley/front-nude.svg",
  36613. extra: 1803/1674,
  36614. bottom: 127/1930
  36615. }
  36616. },
  36617. },
  36618. [
  36619. {
  36620. name: "Normal",
  36621. height: math.unit(11 + 9/12, "feet"),
  36622. default: true
  36623. },
  36624. ]
  36625. ))
  36626. characterMakers.push(() => makeCharacter(
  36627. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36628. {
  36629. side: {
  36630. height: math.unit(9, "feet"),
  36631. name: "Side",
  36632. image: {
  36633. source: "./media/characters/rymel/side.svg",
  36634. extra: 792/469,
  36635. bottom: 121/913
  36636. }
  36637. },
  36638. maw: {
  36639. height: math.unit(2.4, "meters"),
  36640. name: "Maw",
  36641. image: {
  36642. source: "./media/characters/rymel/maw.svg"
  36643. }
  36644. },
  36645. },
  36646. [
  36647. {
  36648. name: "House Drake",
  36649. height: math.unit(2, "feet")
  36650. },
  36651. {
  36652. name: "Reduced",
  36653. height: math.unit(4.5, "feet")
  36654. },
  36655. {
  36656. name: "Normal",
  36657. height: math.unit(9, "feet"),
  36658. default: true
  36659. },
  36660. ]
  36661. ))
  36662. characterMakers.push(() => makeCharacter(
  36663. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36664. {
  36665. front: {
  36666. height: math.unit(1.74, "meters"),
  36667. weight: math.unit(55, "kg"),
  36668. name: "Front",
  36669. image: {
  36670. source: "./media/characters/rubus/front.svg",
  36671. extra: 1894/1742,
  36672. bottom: 44/1938
  36673. }
  36674. },
  36675. },
  36676. [
  36677. {
  36678. name: "Normal",
  36679. height: math.unit(1.74, "meters"),
  36680. default: true
  36681. },
  36682. ]
  36683. ))
  36684. characterMakers.push(() => makeCharacter(
  36685. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36686. {
  36687. front: {
  36688. height: math.unit(5 + 2/12, "feet"),
  36689. weight: math.unit(112, "lb"),
  36690. name: "Front",
  36691. image: {
  36692. source: "./media/characters/cassie-kingston/front.svg",
  36693. extra: 1438/1390,
  36694. bottom: 47/1485
  36695. }
  36696. },
  36697. },
  36698. [
  36699. {
  36700. name: "Normal",
  36701. height: math.unit(5 + 2/12, "feet"),
  36702. default: true
  36703. },
  36704. {
  36705. name: "Macro",
  36706. height: math.unit(128, "feet")
  36707. },
  36708. {
  36709. name: "Megamacro",
  36710. height: math.unit(2.56, "miles")
  36711. },
  36712. ]
  36713. ))
  36714. characterMakers.push(() => makeCharacter(
  36715. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36716. {
  36717. front: {
  36718. height: math.unit(7, "feet"),
  36719. name: "Front",
  36720. image: {
  36721. source: "./media/characters/fox/front.svg",
  36722. extra: 1798/1703,
  36723. bottom: 55/1853
  36724. }
  36725. },
  36726. back: {
  36727. height: math.unit(7, "feet"),
  36728. name: "Back",
  36729. image: {
  36730. source: "./media/characters/fox/back.svg",
  36731. extra: 1748/1649,
  36732. bottom: 32/1780
  36733. }
  36734. },
  36735. head: {
  36736. height: math.unit(1.95, "feet"),
  36737. name: "Head",
  36738. image: {
  36739. source: "./media/characters/fox/head.svg"
  36740. }
  36741. },
  36742. dick: {
  36743. height: math.unit(1.33, "feet"),
  36744. name: "Dick",
  36745. image: {
  36746. source: "./media/characters/fox/dick.svg"
  36747. }
  36748. },
  36749. foot: {
  36750. height: math.unit(1, "feet"),
  36751. name: "Foot",
  36752. image: {
  36753. source: "./media/characters/fox/foot.svg"
  36754. }
  36755. },
  36756. paw: {
  36757. height: math.unit(0.92, "feet"),
  36758. name: "Paw",
  36759. image: {
  36760. source: "./media/characters/fox/paw.svg"
  36761. }
  36762. },
  36763. },
  36764. [
  36765. {
  36766. name: "Small",
  36767. height: math.unit(3, "inches")
  36768. },
  36769. {
  36770. name: "\"Realistic\"",
  36771. height: math.unit(7, "feet")
  36772. },
  36773. {
  36774. name: "Normal",
  36775. height: math.unit(150, "feet"),
  36776. default: true
  36777. },
  36778. {
  36779. name: "BIG",
  36780. height: math.unit(1200, "feet")
  36781. },
  36782. {
  36783. name: "👀",
  36784. height: math.unit(5, "miles")
  36785. },
  36786. {
  36787. name: "👀👀👀",
  36788. height: math.unit(64, "miles")
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36794. {
  36795. front: {
  36796. height: math.unit(625, "feet"),
  36797. name: "Front",
  36798. image: {
  36799. source: "./media/characters/asonja-rossa/front.svg",
  36800. extra: 1833/1686,
  36801. bottom: 24/1857
  36802. }
  36803. },
  36804. back: {
  36805. height: math.unit(625, "feet"),
  36806. name: "Back",
  36807. image: {
  36808. source: "./media/characters/asonja-rossa/back.svg",
  36809. extra: 1852/1753,
  36810. bottom: 26/1878
  36811. }
  36812. },
  36813. },
  36814. [
  36815. {
  36816. name: "Macro",
  36817. height: math.unit(625, "feet"),
  36818. default: true
  36819. },
  36820. ]
  36821. ))
  36822. characterMakers.push(() => makeCharacter(
  36823. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36824. {
  36825. side: {
  36826. height: math.unit(8, "feet"),
  36827. name: "Side",
  36828. image: {
  36829. source: "./media/characters/rezukii/side.svg",
  36830. extra: 979/542,
  36831. bottom: 87/1066
  36832. }
  36833. },
  36834. sitting: {
  36835. height: math.unit(14.6, "feet"),
  36836. name: "Sitting",
  36837. image: {
  36838. source: "./media/characters/rezukii/sitting.svg",
  36839. extra: 1023/813,
  36840. bottom: 45/1068
  36841. }
  36842. },
  36843. },
  36844. [
  36845. {
  36846. name: "Tiny",
  36847. height: math.unit(2, "feet")
  36848. },
  36849. {
  36850. name: "Smol",
  36851. height: math.unit(4, "feet")
  36852. },
  36853. {
  36854. name: "Normal",
  36855. height: math.unit(8, "feet"),
  36856. default: true
  36857. },
  36858. {
  36859. name: "Big",
  36860. height: math.unit(12, "feet")
  36861. },
  36862. {
  36863. name: "Macro",
  36864. height: math.unit(30, "feet")
  36865. },
  36866. ]
  36867. ))
  36868. characterMakers.push(() => makeCharacter(
  36869. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36870. {
  36871. front: {
  36872. height: math.unit(14, "feet"),
  36873. weight: math.unit(9.5, "tonnes"),
  36874. name: "Front",
  36875. image: {
  36876. source: "./media/characters/dawnheart/front.svg",
  36877. extra: 2792/2675,
  36878. bottom: 64/2856
  36879. }
  36880. },
  36881. },
  36882. [
  36883. {
  36884. name: "Normal",
  36885. height: math.unit(14, "feet"),
  36886. default: true
  36887. },
  36888. ]
  36889. ))
  36890. characterMakers.push(() => makeCharacter(
  36891. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36892. {
  36893. front: {
  36894. height: math.unit(1.7, "m"),
  36895. name: "Front",
  36896. image: {
  36897. source: "./media/characters/gladi/front.svg",
  36898. extra: 1460/1362,
  36899. bottom: 19/1479
  36900. }
  36901. },
  36902. back: {
  36903. height: math.unit(1.7, "m"),
  36904. name: "Back",
  36905. image: {
  36906. source: "./media/characters/gladi/back.svg",
  36907. extra: 1459/1357,
  36908. bottom: 12/1471
  36909. }
  36910. },
  36911. feral: {
  36912. height: math.unit(2.05, "m"),
  36913. name: "Feral",
  36914. image: {
  36915. source: "./media/characters/gladi/feral.svg",
  36916. extra: 821/557,
  36917. bottom: 91/912
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Shortest",
  36924. height: math.unit(70, "cm")
  36925. },
  36926. {
  36927. name: "Normal",
  36928. height: math.unit(1.7, "m")
  36929. },
  36930. {
  36931. name: "Macro",
  36932. height: math.unit(10, "m"),
  36933. default: true
  36934. },
  36935. {
  36936. name: "Tallest",
  36937. height: math.unit(200, "m")
  36938. },
  36939. ]
  36940. ))
  36941. characterMakers.push(() => makeCharacter(
  36942. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36943. {
  36944. front: {
  36945. height: math.unit(5 + 7/12, "feet"),
  36946. weight: math.unit(2, "tons"),
  36947. name: "Front",
  36948. image: {
  36949. source: "./media/characters/erdno/front.svg",
  36950. extra: 1234/1129,
  36951. bottom: 35/1269
  36952. }
  36953. },
  36954. angled: {
  36955. height: math.unit(5 + 7/12, "feet"),
  36956. weight: math.unit(2, "tons"),
  36957. name: "Angled",
  36958. image: {
  36959. source: "./media/characters/erdno/angled.svg",
  36960. extra: 1185/1139,
  36961. bottom: 36/1221
  36962. }
  36963. },
  36964. side: {
  36965. height: math.unit(5 + 7/12, "feet"),
  36966. weight: math.unit(2, "tons"),
  36967. name: "Side",
  36968. image: {
  36969. source: "./media/characters/erdno/side.svg",
  36970. extra: 1191/1144,
  36971. bottom: 40/1231
  36972. }
  36973. },
  36974. back: {
  36975. height: math.unit(5 + 7/12, "feet"),
  36976. weight: math.unit(2, "tons"),
  36977. name: "Back",
  36978. image: {
  36979. source: "./media/characters/erdno/back.svg",
  36980. extra: 1202/1146,
  36981. bottom: 17/1219
  36982. }
  36983. },
  36984. frontNsfw: {
  36985. height: math.unit(5 + 7/12, "feet"),
  36986. weight: math.unit(2, "tons"),
  36987. name: "Front (NSFW)",
  36988. image: {
  36989. source: "./media/characters/erdno/front-nsfw.svg",
  36990. extra: 1234/1129,
  36991. bottom: 35/1269
  36992. }
  36993. },
  36994. angledNsfw: {
  36995. height: math.unit(5 + 7/12, "feet"),
  36996. weight: math.unit(2, "tons"),
  36997. name: "Angled (NSFW)",
  36998. image: {
  36999. source: "./media/characters/erdno/angled-nsfw.svg",
  37000. extra: 1185/1139,
  37001. bottom: 36/1221
  37002. }
  37003. },
  37004. sideNsfw: {
  37005. height: math.unit(5 + 7/12, "feet"),
  37006. weight: math.unit(2, "tons"),
  37007. name: "Side (NSFW)",
  37008. image: {
  37009. source: "./media/characters/erdno/side-nsfw.svg",
  37010. extra: 1191/1144,
  37011. bottom: 40/1231
  37012. }
  37013. },
  37014. backNsfw: {
  37015. height: math.unit(5 + 7/12, "feet"),
  37016. weight: math.unit(2, "tons"),
  37017. name: "Back (NSFW)",
  37018. image: {
  37019. source: "./media/characters/erdno/back-nsfw.svg",
  37020. extra: 1202/1146,
  37021. bottom: 17/1219
  37022. }
  37023. },
  37024. frontHyper: {
  37025. height: math.unit(5 + 7/12, "feet"),
  37026. weight: math.unit(2, "tons"),
  37027. name: "Front (Hyper)",
  37028. image: {
  37029. source: "./media/characters/erdno/front-hyper.svg",
  37030. extra: 1298/1136,
  37031. bottom: 35/1333
  37032. }
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "Normal",
  37038. height: math.unit(5 + 7/12, "feet"),
  37039. default: true
  37040. },
  37041. {
  37042. name: "Big",
  37043. height: math.unit(5.7, "meters")
  37044. },
  37045. {
  37046. name: "Macro",
  37047. height: math.unit(5.7, "kilometers")
  37048. },
  37049. {
  37050. name: "Megamacro",
  37051. height: math.unit(5.7, "earths")
  37052. },
  37053. ]
  37054. ))
  37055. characterMakers.push(() => makeCharacter(
  37056. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37057. {
  37058. front: {
  37059. height: math.unit(5 + 10/12, "feet"),
  37060. weight: math.unit(150, "lb"),
  37061. name: "Front",
  37062. image: {
  37063. source: "./media/characters/jamie/front.svg",
  37064. extra: 1908/1768,
  37065. bottom: 19/1927
  37066. }
  37067. },
  37068. },
  37069. [
  37070. {
  37071. name: "Minimum",
  37072. height: math.unit(2, "cm")
  37073. },
  37074. {
  37075. name: "Micro",
  37076. height: math.unit(3, "inches")
  37077. },
  37078. {
  37079. name: "Normal",
  37080. height: math.unit(5 + 10/12, "feet"),
  37081. default: true
  37082. },
  37083. {
  37084. name: "Macro",
  37085. height: math.unit(150, "feet")
  37086. },
  37087. {
  37088. name: "Megamacro",
  37089. height: math.unit(10000, "m")
  37090. },
  37091. ]
  37092. ))
  37093. characterMakers.push(() => makeCharacter(
  37094. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37095. {
  37096. front: {
  37097. height: math.unit(2, "meters"),
  37098. weight: math.unit(100, "kg"),
  37099. name: "Front",
  37100. image: {
  37101. source: "./media/characters/shiron/front.svg",
  37102. extra: 2103/1985,
  37103. bottom: 98/2201
  37104. }
  37105. },
  37106. back: {
  37107. height: math.unit(2, "meters"),
  37108. weight: math.unit(100, "kg"),
  37109. name: "Back",
  37110. image: {
  37111. source: "./media/characters/shiron/back.svg",
  37112. extra: 2110/2015,
  37113. bottom: 89/2199
  37114. }
  37115. },
  37116. hand: {
  37117. height: math.unit(0.96, "feet"),
  37118. name: "Hand",
  37119. image: {
  37120. source: "./media/characters/shiron/hand.svg"
  37121. }
  37122. },
  37123. foot: {
  37124. height: math.unit(1.464, "feet"),
  37125. name: "Foot",
  37126. image: {
  37127. source: "./media/characters/shiron/foot.svg"
  37128. }
  37129. },
  37130. },
  37131. [
  37132. {
  37133. name: "Normal",
  37134. height: math.unit(2, "meters")
  37135. },
  37136. {
  37137. name: "Macro",
  37138. height: math.unit(500, "meters"),
  37139. default: true
  37140. },
  37141. {
  37142. name: "Megamacro",
  37143. height: math.unit(20, "km")
  37144. },
  37145. ]
  37146. ))
  37147. characterMakers.push(() => makeCharacter(
  37148. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37149. {
  37150. front: {
  37151. height: math.unit(6, "feet"),
  37152. name: "Front",
  37153. image: {
  37154. source: "./media/characters/sam/front.svg",
  37155. extra: 849/826,
  37156. bottom: 19/868
  37157. }
  37158. },
  37159. },
  37160. [
  37161. {
  37162. name: "Normal",
  37163. height: math.unit(6, "feet"),
  37164. default: true
  37165. },
  37166. ]
  37167. ))
  37168. characterMakers.push(() => makeCharacter(
  37169. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37170. {
  37171. front: {
  37172. height: math.unit(8 + 4/12, "feet"),
  37173. weight: math.unit(122, "kg"),
  37174. name: "Front",
  37175. image: {
  37176. source: "./media/characters/namori-kurogawa/front.svg",
  37177. extra: 1894/1576,
  37178. bottom: 34/1928
  37179. }
  37180. },
  37181. },
  37182. [
  37183. {
  37184. name: "Normal",
  37185. height: math.unit(8 + 4/12, "feet"),
  37186. default: true
  37187. },
  37188. ]
  37189. ))
  37190. characterMakers.push(() => makeCharacter(
  37191. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37192. {
  37193. front: {
  37194. height: math.unit(9, "feet"),
  37195. weight: math.unit(621, "lb"),
  37196. name: "Front",
  37197. image: {
  37198. source: "./media/characters/unmru/front.svg",
  37199. extra: 1853/1747,
  37200. bottom: 73/1926
  37201. }
  37202. },
  37203. side: {
  37204. height: math.unit(9, "feet"),
  37205. weight: math.unit(621, "lb"),
  37206. name: "Side",
  37207. image: {
  37208. source: "./media/characters/unmru/side.svg",
  37209. extra: 1781/1671,
  37210. bottom: 127/1908
  37211. }
  37212. },
  37213. back: {
  37214. height: math.unit(9, "feet"),
  37215. weight: math.unit(621, "lb"),
  37216. name: "Back",
  37217. image: {
  37218. source: "./media/characters/unmru/back.svg",
  37219. extra: 1894/1765,
  37220. bottom: 75/1969
  37221. }
  37222. },
  37223. dick: {
  37224. height: math.unit(3, "feet"),
  37225. weight: math.unit(35, "lb"),
  37226. name: "Dick",
  37227. image: {
  37228. source: "./media/characters/unmru/dick.svg"
  37229. }
  37230. },
  37231. },
  37232. [
  37233. {
  37234. name: "Normal",
  37235. height: math.unit(9, "feet")
  37236. },
  37237. {
  37238. name: "Natural",
  37239. height: math.unit(27, "feet"),
  37240. default: true
  37241. },
  37242. {
  37243. name: "Giant",
  37244. height: math.unit(90, "feet")
  37245. },
  37246. {
  37247. name: "Kaiju",
  37248. height: math.unit(270, "feet")
  37249. },
  37250. {
  37251. name: "Macro",
  37252. height: math.unit(900, "feet")
  37253. },
  37254. {
  37255. name: "Macro+",
  37256. height: math.unit(2700, "feet")
  37257. },
  37258. {
  37259. name: "Megamacro",
  37260. height: math.unit(9000, "feet")
  37261. },
  37262. {
  37263. name: "City-Crushing",
  37264. height: math.unit(27000, "feet")
  37265. },
  37266. {
  37267. name: "Mountain-Mashing",
  37268. height: math.unit(90000, "feet")
  37269. },
  37270. {
  37271. name: "Earth-Eclipsing",
  37272. height: math.unit(2.7e8, "feet")
  37273. },
  37274. {
  37275. name: "Sol-Swallowing",
  37276. height: math.unit(9e10, "feet")
  37277. },
  37278. {
  37279. name: "Majoris-Munching",
  37280. height: math.unit(2.7e13, "feet")
  37281. },
  37282. ]
  37283. ))
  37284. characterMakers.push(() => makeCharacter(
  37285. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37286. {
  37287. front: {
  37288. height: math.unit(1, "inch"),
  37289. name: "Front",
  37290. image: {
  37291. source: "./media/characters/squeaks-mouse/front.svg",
  37292. extra: 352/308,
  37293. bottom: 25/377
  37294. }
  37295. },
  37296. },
  37297. [
  37298. {
  37299. name: "Micro",
  37300. height: math.unit(1, "inch"),
  37301. default: true
  37302. },
  37303. ]
  37304. ))
  37305. characterMakers.push(() => makeCharacter(
  37306. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37307. {
  37308. side: {
  37309. height: math.unit(35, "feet"),
  37310. name: "Side",
  37311. image: {
  37312. source: "./media/characters/sayko/side.svg",
  37313. extra: 1697/1021,
  37314. bottom: 82/1779
  37315. }
  37316. },
  37317. head: {
  37318. height: math.unit(16, "feet"),
  37319. name: "Head",
  37320. image: {
  37321. source: "./media/characters/sayko/head.svg"
  37322. }
  37323. },
  37324. forepaw: {
  37325. height: math.unit(7.85, "feet"),
  37326. name: "Forepaw",
  37327. image: {
  37328. source: "./media/characters/sayko/forepaw.svg"
  37329. }
  37330. },
  37331. hindpaw: {
  37332. height: math.unit(8.8, "feet"),
  37333. name: "Hindpaw",
  37334. image: {
  37335. source: "./media/characters/sayko/hindpaw.svg"
  37336. }
  37337. },
  37338. },
  37339. [
  37340. {
  37341. name: "Normal",
  37342. height: math.unit(35, "feet"),
  37343. default: true
  37344. },
  37345. {
  37346. name: "Colossus",
  37347. height: math.unit(100, "meters")
  37348. },
  37349. {
  37350. name: "\"Small\" Deity",
  37351. height: math.unit(1, "km")
  37352. },
  37353. {
  37354. name: "\"Large\" Deity",
  37355. height: math.unit(15, "km")
  37356. },
  37357. ]
  37358. ))
  37359. characterMakers.push(() => makeCharacter(
  37360. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37361. {
  37362. front: {
  37363. height: math.unit(6, "feet"),
  37364. weight: math.unit(250, "lb"),
  37365. name: "Front",
  37366. image: {
  37367. source: "./media/characters/mukiro/front.svg",
  37368. extra: 1368/1310,
  37369. bottom: 34/1402
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Normal",
  37376. height: math.unit(6, "feet"),
  37377. default: true
  37378. },
  37379. ]
  37380. ))
  37381. characterMakers.push(() => makeCharacter(
  37382. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37383. {
  37384. front: {
  37385. height: math.unit(12 + 4/12, "feet"),
  37386. name: "Front",
  37387. image: {
  37388. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37389. extra: 1346/1311,
  37390. bottom: 65/1411
  37391. }
  37392. },
  37393. },
  37394. [
  37395. {
  37396. name: "Base",
  37397. height: math.unit(12 + 4/12, "feet"),
  37398. default: true
  37399. },
  37400. {
  37401. name: "Macro",
  37402. height: math.unit(150, "feet")
  37403. },
  37404. {
  37405. name: "Mega",
  37406. height: math.unit(2, "miles")
  37407. },
  37408. {
  37409. name: "Demi God",
  37410. height: math.unit(4, "AU")
  37411. },
  37412. {
  37413. name: "God Size",
  37414. height: math.unit(1, "universe")
  37415. },
  37416. ]
  37417. ))
  37418. characterMakers.push(() => makeCharacter(
  37419. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37420. {
  37421. front: {
  37422. height: math.unit(3 + 3/12, "feet"),
  37423. weight: math.unit(88, "lb"),
  37424. name: "Front",
  37425. image: {
  37426. source: "./media/characters/trey/front.svg",
  37427. extra: 1815/1509,
  37428. bottom: 60/1875
  37429. }
  37430. },
  37431. },
  37432. [
  37433. {
  37434. name: "Normal",
  37435. height: math.unit(3 + 3/12, "feet"),
  37436. default: true
  37437. },
  37438. ]
  37439. ))
  37440. characterMakers.push(() => makeCharacter(
  37441. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37442. {
  37443. front: {
  37444. height: math.unit(4, "meters"),
  37445. name: "Front",
  37446. image: {
  37447. source: "./media/characters/adelonda/front.svg",
  37448. extra: 1077/982,
  37449. bottom: 39/1116
  37450. }
  37451. },
  37452. back: {
  37453. height: math.unit(4, "meters"),
  37454. name: "Back",
  37455. image: {
  37456. source: "./media/characters/adelonda/back.svg",
  37457. extra: 1105/1003,
  37458. bottom: 25/1130
  37459. }
  37460. },
  37461. },
  37462. [
  37463. {
  37464. name: "Normal",
  37465. height: math.unit(4, "meters"),
  37466. default: true
  37467. },
  37468. ]
  37469. ))
  37470. characterMakers.push(() => makeCharacter(
  37471. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37472. {
  37473. front: {
  37474. height: math.unit(8 + 4/12, "feet"),
  37475. weight: math.unit(670, "lb"),
  37476. name: "Front",
  37477. image: {
  37478. source: "./media/characters/acadiel/front.svg",
  37479. extra: 1901/1595,
  37480. bottom: 142/2043
  37481. }
  37482. },
  37483. },
  37484. [
  37485. {
  37486. name: "Normal",
  37487. height: math.unit(8 + 4/12, "feet"),
  37488. default: true
  37489. },
  37490. {
  37491. name: "Macro",
  37492. height: math.unit(200, "feet")
  37493. },
  37494. ]
  37495. ))
  37496. characterMakers.push(() => makeCharacter(
  37497. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37498. {
  37499. front: {
  37500. height: math.unit(6 + 2/12, "feet"),
  37501. weight: math.unit(185, "lb"),
  37502. name: "Front",
  37503. image: {
  37504. source: "./media/characters/kayne-ein/front.svg",
  37505. extra: 1780/1560,
  37506. bottom: 81/1861
  37507. }
  37508. },
  37509. },
  37510. [
  37511. {
  37512. name: "Normal",
  37513. height: math.unit(6 + 2/12, "feet"),
  37514. default: true
  37515. },
  37516. {
  37517. name: "Transformation Stage",
  37518. height: math.unit(15, "feet")
  37519. },
  37520. {
  37521. name: "Macro",
  37522. height: math.unit(150, "feet")
  37523. },
  37524. {
  37525. name: "Earth's Shadow",
  37526. height: math.unit(6200, "miles")
  37527. },
  37528. {
  37529. name: "Universal Demon",
  37530. height: math.unit(28e9, "parsecs")
  37531. },
  37532. {
  37533. name: "Multiverse God",
  37534. height: math.unit(3, "multiverses")
  37535. },
  37536. ]
  37537. ))
  37538. characterMakers.push(() => makeCharacter(
  37539. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37540. {
  37541. front: {
  37542. height: math.unit(5 + 5/12, "feet"),
  37543. name: "Front",
  37544. image: {
  37545. source: "./media/characters/fawn/front.svg",
  37546. extra: 1873/1731,
  37547. bottom: 95/1968
  37548. }
  37549. },
  37550. back: {
  37551. height: math.unit(5 + 5/12, "feet"),
  37552. name: "Back",
  37553. image: {
  37554. source: "./media/characters/fawn/back.svg",
  37555. extra: 1813/1700,
  37556. bottom: 14/1827
  37557. }
  37558. },
  37559. hoof: {
  37560. height: math.unit(1.45, "feet"),
  37561. name: "Hoof",
  37562. image: {
  37563. source: "./media/characters/fawn/hoof.svg"
  37564. }
  37565. },
  37566. },
  37567. [
  37568. {
  37569. name: "Normal",
  37570. height: math.unit(5 + 5/12, "feet"),
  37571. default: true
  37572. },
  37573. ]
  37574. ))
  37575. characterMakers.push(() => makeCharacter(
  37576. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37577. {
  37578. front: {
  37579. height: math.unit(2 + 5/12, "feet"),
  37580. name: "Front",
  37581. image: {
  37582. source: "./media/characters/orion/front.svg",
  37583. extra: 1366/1304,
  37584. bottom: 43/1409
  37585. }
  37586. },
  37587. paw: {
  37588. height: math.unit(0.52, "feet"),
  37589. name: "Paw",
  37590. image: {
  37591. source: "./media/characters/orion/paw.svg"
  37592. }
  37593. },
  37594. },
  37595. [
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(2 + 5/12, "feet"),
  37599. default: true
  37600. },
  37601. ]
  37602. ))
  37603. characterMakers.push(() => makeCharacter(
  37604. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37605. {
  37606. front: {
  37607. height: math.unit(5 + 10/12, "feet"),
  37608. name: "Front",
  37609. image: {
  37610. source: "./media/characters/vera/front.svg",
  37611. extra: 1680/1575,
  37612. bottom: 49/1729
  37613. }
  37614. },
  37615. back: {
  37616. height: math.unit(5 + 10/12, "feet"),
  37617. name: "Back",
  37618. image: {
  37619. source: "./media/characters/vera/back.svg",
  37620. extra: 1700/1588,
  37621. bottom: 18/1718
  37622. }
  37623. },
  37624. arcanine: {
  37625. height: math.unit(6 + 8/12, "feet"),
  37626. name: "Arcanine",
  37627. image: {
  37628. source: "./media/characters/vera/arcanine.svg",
  37629. extra: 1590/1511,
  37630. bottom: 71/1661
  37631. }
  37632. },
  37633. maw: {
  37634. height: math.unit(0.82, "feet"),
  37635. name: "Maw",
  37636. image: {
  37637. source: "./media/characters/vera/maw.svg"
  37638. }
  37639. },
  37640. mawArcanine: {
  37641. height: math.unit(0.97, "feet"),
  37642. name: "Maw (Arcanine)",
  37643. image: {
  37644. source: "./media/characters/vera/maw-arcanine.svg"
  37645. }
  37646. },
  37647. paw: {
  37648. height: math.unit(0.75, "feet"),
  37649. name: "Paw",
  37650. image: {
  37651. source: "./media/characters/vera/paw.svg"
  37652. }
  37653. },
  37654. pawprint: {
  37655. height: math.unit(0.52, "feet"),
  37656. name: "Pawprint",
  37657. image: {
  37658. source: "./media/characters/vera/pawprint.svg"
  37659. }
  37660. },
  37661. },
  37662. [
  37663. {
  37664. name: "Normal",
  37665. height: math.unit(5 + 10/12, "feet"),
  37666. default: true
  37667. },
  37668. {
  37669. name: "Macro",
  37670. height: math.unit(75, "feet")
  37671. },
  37672. ]
  37673. ))
  37674. characterMakers.push(() => makeCharacter(
  37675. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37676. {
  37677. front: {
  37678. height: math.unit(4, "feet"),
  37679. weight: math.unit(40, "lb"),
  37680. name: "Front",
  37681. image: {
  37682. source: "./media/characters/orvan-rabbit/front.svg",
  37683. extra: 1896/1642,
  37684. bottom: 29/1925
  37685. }
  37686. },
  37687. },
  37688. [
  37689. {
  37690. name: "Normal",
  37691. height: math.unit(4, "feet"),
  37692. default: true
  37693. },
  37694. ]
  37695. ))
  37696. characterMakers.push(() => makeCharacter(
  37697. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37698. {
  37699. front: {
  37700. height: math.unit(6, "feet"),
  37701. weight: math.unit(168, "lb"),
  37702. name: "Front",
  37703. image: {
  37704. source: "./media/characters/lisa/front.svg",
  37705. extra: 2065/1867,
  37706. bottom: 46/2111
  37707. }
  37708. },
  37709. back: {
  37710. height: math.unit(6, "feet"),
  37711. weight: math.unit(168, "lb"),
  37712. name: "Back",
  37713. image: {
  37714. source: "./media/characters/lisa/back.svg",
  37715. extra: 1982/1838,
  37716. bottom: 29/2011
  37717. }
  37718. },
  37719. maw: {
  37720. height: math.unit(0.81, "feet"),
  37721. name: "Maw",
  37722. image: {
  37723. source: "./media/characters/lisa/maw.svg"
  37724. }
  37725. },
  37726. paw: {
  37727. height: math.unit(0.9, "feet"),
  37728. name: "Paw",
  37729. image: {
  37730. source: "./media/characters/lisa/paw.svg"
  37731. }
  37732. },
  37733. caribousune: {
  37734. height: math.unit(7 + 2/12, "feet"),
  37735. weight: math.unit(268, "lb"),
  37736. name: "Caribousune",
  37737. image: {
  37738. source: "./media/characters/lisa/caribousune.svg",
  37739. extra: 1843/1633,
  37740. bottom: 29/1872
  37741. }
  37742. },
  37743. frontCaribousune: {
  37744. height: math.unit(7 + 2/12, "feet"),
  37745. weight: math.unit(268, "lb"),
  37746. name: "Front (Caribousune)",
  37747. image: {
  37748. source: "./media/characters/lisa/front-caribousune.svg",
  37749. extra: 1818/1638,
  37750. bottom: 52/1870
  37751. }
  37752. },
  37753. sideCaribousune: {
  37754. height: math.unit(7 + 2/12, "feet"),
  37755. weight: math.unit(268, "lb"),
  37756. name: "Side (Caribousune)",
  37757. image: {
  37758. source: "./media/characters/lisa/side-caribousune.svg",
  37759. extra: 1851/1635,
  37760. bottom: 16/1867
  37761. }
  37762. },
  37763. backCaribousune: {
  37764. height: math.unit(7 + 2/12, "feet"),
  37765. weight: math.unit(268, "lb"),
  37766. name: "Back (Caribousune)",
  37767. image: {
  37768. source: "./media/characters/lisa/back-caribousune.svg",
  37769. extra: 1801/1604,
  37770. bottom: 44/1845
  37771. }
  37772. },
  37773. caribou: {
  37774. height: math.unit(7 + 2/12, "feet"),
  37775. weight: math.unit(268, "lb"),
  37776. name: "Caribou",
  37777. image: {
  37778. source: "./media/characters/lisa/caribou.svg",
  37779. extra: 1843/1633,
  37780. bottom: 29/1872
  37781. }
  37782. },
  37783. frontCaribou: {
  37784. height: math.unit(7 + 2/12, "feet"),
  37785. weight: math.unit(268, "lb"),
  37786. name: "Front (Caribou)",
  37787. image: {
  37788. source: "./media/characters/lisa/front-caribou.svg",
  37789. extra: 1818/1638,
  37790. bottom: 52/1870
  37791. }
  37792. },
  37793. sideCaribou: {
  37794. height: math.unit(7 + 2/12, "feet"),
  37795. weight: math.unit(268, "lb"),
  37796. name: "Side (Caribou)",
  37797. image: {
  37798. source: "./media/characters/lisa/side-caribou.svg",
  37799. extra: 1851/1635,
  37800. bottom: 16/1867
  37801. }
  37802. },
  37803. backCaribou: {
  37804. height: math.unit(7 + 2/12, "feet"),
  37805. weight: math.unit(268, "lb"),
  37806. name: "Back (Caribou)",
  37807. image: {
  37808. source: "./media/characters/lisa/back-caribou.svg",
  37809. extra: 1801/1604,
  37810. bottom: 44/1845
  37811. }
  37812. },
  37813. mawCaribou: {
  37814. height: math.unit(1.45, "feet"),
  37815. name: "Maw (Caribou)",
  37816. image: {
  37817. source: "./media/characters/lisa/maw-caribou.svg"
  37818. }
  37819. },
  37820. mawCaribousune: {
  37821. height: math.unit(1.45, "feet"),
  37822. name: "Maw (Caribousune)",
  37823. image: {
  37824. source: "./media/characters/lisa/maw-caribousune.svg"
  37825. }
  37826. },
  37827. pawCaribousune: {
  37828. height: math.unit(1.61, "feet"),
  37829. name: "Paw (Caribou)",
  37830. image: {
  37831. source: "./media/characters/lisa/paw-caribousune.svg"
  37832. }
  37833. },
  37834. },
  37835. [
  37836. {
  37837. name: "Normal",
  37838. height: math.unit(6, "feet")
  37839. },
  37840. {
  37841. name: "God Size",
  37842. height: math.unit(72, "feet"),
  37843. default: true
  37844. },
  37845. {
  37846. name: "Towering",
  37847. height: math.unit(288, "feet")
  37848. },
  37849. {
  37850. name: "City Size",
  37851. height: math.unit(48384, "feet")
  37852. },
  37853. {
  37854. name: "Continental",
  37855. height: math.unit(4200, "miles")
  37856. },
  37857. {
  37858. name: "Planet Eater",
  37859. height: math.unit(42, "earths")
  37860. },
  37861. {
  37862. name: "Star Swallower",
  37863. height: math.unit(42, "solarradii")
  37864. },
  37865. {
  37866. name: "System Swallower",
  37867. height: math.unit(84000, "AU")
  37868. },
  37869. {
  37870. name: "Galaxy Gobbler",
  37871. height: math.unit(42, "galaxies")
  37872. },
  37873. {
  37874. name: "Universe Devourer",
  37875. height: math.unit(42, "universes")
  37876. },
  37877. {
  37878. name: "Multiverse Muncher",
  37879. height: math.unit(42, "multiverses")
  37880. },
  37881. ]
  37882. ))
  37883. characterMakers.push(() => makeCharacter(
  37884. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37885. {
  37886. front: {
  37887. height: math.unit(36, "feet"),
  37888. name: "Front",
  37889. image: {
  37890. source: "./media/characters/shadow-rat/front.svg",
  37891. extra: 1845/1758,
  37892. bottom: 83/1928
  37893. }
  37894. },
  37895. },
  37896. [
  37897. {
  37898. name: "Macro",
  37899. height: math.unit(36, "feet"),
  37900. default: true
  37901. },
  37902. ]
  37903. ))
  37904. characterMakers.push(() => makeCharacter(
  37905. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37906. {
  37907. side: {
  37908. height: math.unit(8, "feet"),
  37909. weight: math.unit(2630, "lb"),
  37910. name: "Side",
  37911. image: {
  37912. source: "./media/characters/torallia/side.svg",
  37913. extra: 2164/2021,
  37914. bottom: 371/2535
  37915. }
  37916. },
  37917. },
  37918. [
  37919. {
  37920. name: "Mortal Interaction",
  37921. height: math.unit(8, "feet")
  37922. },
  37923. {
  37924. name: "Natural",
  37925. height: math.unit(24, "feet"),
  37926. default: true
  37927. },
  37928. {
  37929. name: "Giant",
  37930. height: math.unit(80, "feet")
  37931. },
  37932. {
  37933. name: "Kaiju",
  37934. height: math.unit(240, "feet")
  37935. },
  37936. {
  37937. name: "Macro",
  37938. height: math.unit(800, "feet")
  37939. },
  37940. {
  37941. name: "Macro+",
  37942. height: math.unit(2400, "feet")
  37943. },
  37944. {
  37945. name: "Macro++",
  37946. height: math.unit(8000, "feet")
  37947. },
  37948. {
  37949. name: "City-Crushing",
  37950. height: math.unit(24000, "feet")
  37951. },
  37952. {
  37953. name: "Mountain-Mashing",
  37954. height: math.unit(80000, "feet")
  37955. },
  37956. {
  37957. name: "District Demolisher",
  37958. height: math.unit(240000, "feet")
  37959. },
  37960. {
  37961. name: "Tri-County Terror",
  37962. height: math.unit(800000, "feet")
  37963. },
  37964. {
  37965. name: "State Smasher",
  37966. height: math.unit(2.4e6, "feet")
  37967. },
  37968. {
  37969. name: "Nation Nemesis",
  37970. height: math.unit(8e6, "feet")
  37971. },
  37972. {
  37973. name: "Continent Cracker",
  37974. height: math.unit(2.4e7, "feet")
  37975. },
  37976. {
  37977. name: "Planet-Pillaging",
  37978. height: math.unit(8e7, "feet")
  37979. },
  37980. {
  37981. name: "Earth-Eclipsing",
  37982. height: math.unit(2.4e8, "feet")
  37983. },
  37984. {
  37985. name: "Jovian-Jostling",
  37986. height: math.unit(8e8, "feet")
  37987. },
  37988. {
  37989. name: "Gas Giant Gulper",
  37990. height: math.unit(2.4e9, "feet")
  37991. },
  37992. {
  37993. name: "Astral Annihilator",
  37994. height: math.unit(8e9, "feet")
  37995. },
  37996. {
  37997. name: "Celestial Conqueror",
  37998. height: math.unit(2.4e10, "feet")
  37999. },
  38000. {
  38001. name: "Sol-Swallowing",
  38002. height: math.unit(8e10, "feet")
  38003. },
  38004. {
  38005. name: "Hunter of the Heavens",
  38006. height: math.unit(2.4e13, "feet")
  38007. },
  38008. ]
  38009. ))
  38010. characterMakers.push(() => makeCharacter(
  38011. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38012. {
  38013. front: {
  38014. height: math.unit(6 + 8/12, "feet"),
  38015. name: "Front",
  38016. image: {
  38017. source: "./media/characters/rebecca-pawlson/front.svg",
  38018. extra: 1737/1596,
  38019. bottom: 107/1844
  38020. }
  38021. },
  38022. back: {
  38023. height: math.unit(6 + 8/12, "feet"),
  38024. name: "Back",
  38025. image: {
  38026. source: "./media/characters/rebecca-pawlson/back.svg",
  38027. extra: 1702/1523,
  38028. bottom: 86/1788
  38029. }
  38030. },
  38031. },
  38032. [
  38033. {
  38034. name: "Normal",
  38035. height: math.unit(6 + 8/12, "feet")
  38036. },
  38037. {
  38038. name: "Mini Macro",
  38039. height: math.unit(10, "feet"),
  38040. default: true
  38041. },
  38042. {
  38043. name: "Macro",
  38044. height: math.unit(100, "feet")
  38045. },
  38046. {
  38047. name: "Mega Macro",
  38048. height: math.unit(2500, "feet")
  38049. },
  38050. {
  38051. name: "Giga Macro",
  38052. height: math.unit(50, "miles")
  38053. },
  38054. ]
  38055. ))
  38056. characterMakers.push(() => makeCharacter(
  38057. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38058. {
  38059. front: {
  38060. height: math.unit(7 + 6/12, "feet"),
  38061. weight: math.unit(600, "lb"),
  38062. name: "Front",
  38063. image: {
  38064. source: "./media/characters/moxie-nova/front.svg",
  38065. extra: 1734/1652,
  38066. bottom: 41/1775
  38067. }
  38068. },
  38069. },
  38070. [
  38071. {
  38072. name: "Normal",
  38073. height: math.unit(7 + 6/12, "feet"),
  38074. default: true
  38075. },
  38076. ]
  38077. ))
  38078. characterMakers.push(() => makeCharacter(
  38079. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38080. {
  38081. goat: {
  38082. height: math.unit(4, "feet"),
  38083. weight: math.unit(180, "lb"),
  38084. name: "Goat",
  38085. image: {
  38086. source: "./media/characters/tiffany/goat.svg",
  38087. extra: 1845/1595,
  38088. bottom: 106/1951
  38089. }
  38090. },
  38091. front: {
  38092. height: math.unit(5, "feet"),
  38093. weight: math.unit(150, "lb"),
  38094. name: "Foxcoon",
  38095. image: {
  38096. source: "./media/characters/tiffany/foxcoon.svg",
  38097. extra: 1941/1845,
  38098. bottom: 58/1999
  38099. }
  38100. },
  38101. },
  38102. [
  38103. {
  38104. name: "Normal",
  38105. height: math.unit(5, "feet"),
  38106. default: true
  38107. },
  38108. ]
  38109. ))
  38110. characterMakers.push(() => makeCharacter(
  38111. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38112. {
  38113. front: {
  38114. height: math.unit(8, "feet"),
  38115. weight: math.unit(300, "lb"),
  38116. name: "Front",
  38117. image: {
  38118. source: "./media/characters/raxinath/front.svg",
  38119. extra: 1407/1309,
  38120. bottom: 39/1446
  38121. }
  38122. },
  38123. back: {
  38124. height: math.unit(8, "feet"),
  38125. weight: math.unit(300, "lb"),
  38126. name: "Back",
  38127. image: {
  38128. source: "./media/characters/raxinath/back.svg",
  38129. extra: 1405/1315,
  38130. bottom: 9/1414
  38131. }
  38132. },
  38133. },
  38134. [
  38135. {
  38136. name: "Speck",
  38137. height: math.unit(0.5, "nm")
  38138. },
  38139. {
  38140. name: "Micro",
  38141. height: math.unit(3, "inches")
  38142. },
  38143. {
  38144. name: "Kobold",
  38145. height: math.unit(3, "feet")
  38146. },
  38147. {
  38148. name: "Normal",
  38149. height: math.unit(8, "feet"),
  38150. default: true
  38151. },
  38152. {
  38153. name: "Giant",
  38154. height: math.unit(50, "feet")
  38155. },
  38156. {
  38157. name: "Macro",
  38158. height: math.unit(1000, "feet")
  38159. },
  38160. {
  38161. name: "Megamacro",
  38162. height: math.unit(1, "mile")
  38163. },
  38164. ]
  38165. ))
  38166. characterMakers.push(() => makeCharacter(
  38167. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38168. {
  38169. front: {
  38170. height: math.unit(10, "feet"),
  38171. weight: math.unit(1442, "lb"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/mal-dragon/front.svg",
  38175. extra: 1515/1444,
  38176. bottom: 113/1628
  38177. }
  38178. },
  38179. back: {
  38180. height: math.unit(10, "feet"),
  38181. weight: math.unit(1442, "lb"),
  38182. name: "Back",
  38183. image: {
  38184. source: "./media/characters/mal-dragon/back.svg",
  38185. extra: 1527/1434,
  38186. bottom: 25/1552
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Mortal Interaction",
  38193. height: math.unit(10, "feet"),
  38194. default: true
  38195. },
  38196. {
  38197. name: "Large",
  38198. height: math.unit(30, "feet")
  38199. },
  38200. {
  38201. name: "Kaiju",
  38202. height: math.unit(300, "feet")
  38203. },
  38204. {
  38205. name: "Megamacro",
  38206. height: math.unit(10000, "feet")
  38207. },
  38208. {
  38209. name: "Continent Cracker",
  38210. height: math.unit(30000000, "feet")
  38211. },
  38212. {
  38213. name: "Sol-Swallowing",
  38214. height: math.unit(1e11, "feet")
  38215. },
  38216. {
  38217. name: "Light Universal",
  38218. height: math.unit(5, "universes")
  38219. },
  38220. {
  38221. name: "Universe Atoms",
  38222. height: math.unit(1.829e9, "universes")
  38223. },
  38224. {
  38225. name: "Light Multiversal",
  38226. height: math.unit(5, "multiverses")
  38227. },
  38228. {
  38229. name: "Multiverse Atoms",
  38230. height: math.unit(1.829e9, "multiverses")
  38231. },
  38232. {
  38233. name: "Fabric of Time",
  38234. height: math.unit(1e262, "multiverses")
  38235. },
  38236. ]
  38237. ))
  38238. characterMakers.push(() => makeCharacter(
  38239. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38240. {
  38241. front: {
  38242. height: math.unit(9, "feet"),
  38243. weight: math.unit(1050, "lb"),
  38244. name: "Front",
  38245. image: {
  38246. source: "./media/characters/tabitha/front.svg",
  38247. extra: 2083/1994,
  38248. bottom: 68/2151
  38249. }
  38250. },
  38251. },
  38252. [
  38253. {
  38254. name: "Baseline",
  38255. height: math.unit(9, "feet"),
  38256. default: true
  38257. },
  38258. {
  38259. name: "Giant",
  38260. height: math.unit(90, "feet")
  38261. },
  38262. {
  38263. name: "Macro",
  38264. height: math.unit(900, "feet")
  38265. },
  38266. {
  38267. name: "Megamacro",
  38268. height: math.unit(9000, "feet")
  38269. },
  38270. {
  38271. name: "City-Crushing",
  38272. height: math.unit(27000, "feet")
  38273. },
  38274. {
  38275. name: "Mountain-Mashing",
  38276. height: math.unit(90000, "feet")
  38277. },
  38278. {
  38279. name: "Nation Nemesis",
  38280. height: math.unit(9e6, "feet")
  38281. },
  38282. {
  38283. name: "Continent Cracker",
  38284. height: math.unit(27e6, "feet")
  38285. },
  38286. {
  38287. name: "Earth-Eclipsing",
  38288. height: math.unit(2.7e8, "feet")
  38289. },
  38290. {
  38291. name: "Gas Giant Gulper",
  38292. height: math.unit(2.7e9, "feet")
  38293. },
  38294. {
  38295. name: "Sol-Swallowing",
  38296. height: math.unit(9e10, "feet")
  38297. },
  38298. {
  38299. name: "Galaxy Gulper",
  38300. height: math.unit(9, "galaxies")
  38301. },
  38302. {
  38303. name: "Cosmos Churner",
  38304. height: math.unit(9, "universes")
  38305. },
  38306. ]
  38307. ))
  38308. characterMakers.push(() => makeCharacter(
  38309. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38310. {
  38311. front: {
  38312. height: math.unit(160, "cm"),
  38313. weight: math.unit(55, "kg"),
  38314. name: "Front",
  38315. image: {
  38316. source: "./media/characters/tow/front.svg",
  38317. extra: 1751/1722,
  38318. bottom: 74/1825
  38319. }
  38320. },
  38321. },
  38322. [
  38323. {
  38324. name: "Norm",
  38325. height: math.unit(160, "cm")
  38326. },
  38327. {
  38328. name: "Casual",
  38329. height: math.unit(3200, "m"),
  38330. default: true
  38331. },
  38332. {
  38333. name: "Show-Off",
  38334. height: math.unit(160, "km")
  38335. },
  38336. ]
  38337. ))
  38338. characterMakers.push(() => makeCharacter(
  38339. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38340. {
  38341. front: {
  38342. height: math.unit(7 + 11/12, "feet"),
  38343. weight: math.unit(342.8, "lb"),
  38344. name: "Front",
  38345. image: {
  38346. source: "./media/characters/vivian-orca-dragon/front.svg",
  38347. extra: 1890/1865,
  38348. bottom: 28/1918
  38349. }
  38350. },
  38351. },
  38352. [
  38353. {
  38354. name: "Micro",
  38355. height: math.unit(5, "inches")
  38356. },
  38357. {
  38358. name: "Normal",
  38359. height: math.unit(7 + 11/12, "feet"),
  38360. default: true
  38361. },
  38362. {
  38363. name: "Macro",
  38364. height: math.unit(395 + 7/12, "feet")
  38365. },
  38366. ]
  38367. ))
  38368. characterMakers.push(() => makeCharacter(
  38369. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38370. {
  38371. side: {
  38372. height: math.unit(10, "feet"),
  38373. weight: math.unit(1442, "lb"),
  38374. name: "Side",
  38375. image: {
  38376. source: "./media/characters/lotherakon/side.svg",
  38377. extra: 1604/1497,
  38378. bottom: 89/1693
  38379. }
  38380. },
  38381. },
  38382. [
  38383. {
  38384. name: "Mortal Interaction",
  38385. height: math.unit(10, "feet")
  38386. },
  38387. {
  38388. name: "Large",
  38389. height: math.unit(30, "feet"),
  38390. default: true
  38391. },
  38392. {
  38393. name: "Giant",
  38394. height: math.unit(100, "feet")
  38395. },
  38396. {
  38397. name: "Kaiju",
  38398. height: math.unit(300, "feet")
  38399. },
  38400. {
  38401. name: "Macro",
  38402. height: math.unit(1000, "feet")
  38403. },
  38404. {
  38405. name: "Macro+",
  38406. height: math.unit(3000, "feet")
  38407. },
  38408. {
  38409. name: "Megamacro",
  38410. height: math.unit(10000, "feet")
  38411. },
  38412. {
  38413. name: "City-Crushing",
  38414. height: math.unit(30000, "feet")
  38415. },
  38416. {
  38417. name: "Continent Cracker",
  38418. height: math.unit(30e6, "feet")
  38419. },
  38420. {
  38421. name: "Earth Eclipsing",
  38422. height: math.unit(3e8, "feet")
  38423. },
  38424. {
  38425. name: "Gas Giant Gulper",
  38426. height: math.unit(3e9, "feet")
  38427. },
  38428. {
  38429. name: "Sol-Swallowing",
  38430. height: math.unit(1e11, "feet")
  38431. },
  38432. {
  38433. name: "System Swallower",
  38434. height: math.unit(3e14, "feet")
  38435. },
  38436. {
  38437. name: "Galaxy Gulper",
  38438. height: math.unit(10, "galaxies")
  38439. },
  38440. {
  38441. name: "Light Universal",
  38442. height: math.unit(5, "universes")
  38443. },
  38444. {
  38445. name: "Universe Palm",
  38446. height: math.unit(20, "universes")
  38447. },
  38448. {
  38449. name: "Light Multiversal",
  38450. height: math.unit(5, "multiverses")
  38451. },
  38452. {
  38453. name: "Multiverse Palm",
  38454. height: math.unit(20, "multiverses")
  38455. },
  38456. {
  38457. name: "Inferno Incarnate",
  38458. height: math.unit(1e7, "multiverses")
  38459. },
  38460. ]
  38461. ))
  38462. characterMakers.push(() => makeCharacter(
  38463. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38464. {
  38465. front: {
  38466. height: math.unit(8, "feet"),
  38467. weight: math.unit(1200, "lb"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/malithee/front.svg",
  38471. extra: 1675/1640,
  38472. bottom: 162/1837
  38473. }
  38474. },
  38475. },
  38476. [
  38477. {
  38478. name: "Mortal Interaction",
  38479. height: math.unit(8, "feet"),
  38480. default: true
  38481. },
  38482. {
  38483. name: "Large",
  38484. height: math.unit(24, "feet")
  38485. },
  38486. {
  38487. name: "Kaiju",
  38488. height: math.unit(240, "feet")
  38489. },
  38490. {
  38491. name: "Megamacro",
  38492. height: math.unit(8000, "feet")
  38493. },
  38494. {
  38495. name: "Continent Cracker",
  38496. height: math.unit(24e6, "feet")
  38497. },
  38498. {
  38499. name: "Earth-Eclipsing",
  38500. height: math.unit(2.4e8, "feet")
  38501. },
  38502. {
  38503. name: "Sol-Swallowing",
  38504. height: math.unit(8e10, "feet")
  38505. },
  38506. {
  38507. name: "Galaxy Gulper",
  38508. height: math.unit(8, "galaxies")
  38509. },
  38510. {
  38511. name: "Light Universal",
  38512. height: math.unit(4, "universes")
  38513. },
  38514. {
  38515. name: "Universe Atoms",
  38516. height: math.unit(1.829e9, "universes")
  38517. },
  38518. {
  38519. name: "Light Multiversal",
  38520. height: math.unit(4, "multiverses")
  38521. },
  38522. {
  38523. name: "Multiverse Atoms",
  38524. height: math.unit(1.829e9, "multiverses")
  38525. },
  38526. {
  38527. name: "Nigh-Omnipresence",
  38528. height: math.unit(8e261, "multiverses")
  38529. },
  38530. ]
  38531. ))
  38532. characterMakers.push(() => makeCharacter(
  38533. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38534. {
  38535. front: {
  38536. height: math.unit(10, "feet"),
  38537. weight: math.unit(1500, "lb"),
  38538. name: "Front",
  38539. image: {
  38540. source: "./media/characters/miles-thestia/front.svg",
  38541. extra: 1812/1727,
  38542. bottom: 86/1898
  38543. }
  38544. },
  38545. back: {
  38546. height: math.unit(10, "feet"),
  38547. weight: math.unit(1500, "lb"),
  38548. name: "Back",
  38549. image: {
  38550. source: "./media/characters/miles-thestia/back.svg",
  38551. extra: 1799/1690,
  38552. bottom: 47/1846
  38553. }
  38554. },
  38555. frontNsfw: {
  38556. height: math.unit(10, "feet"),
  38557. weight: math.unit(1500, "lb"),
  38558. name: "Front (NSFW)",
  38559. image: {
  38560. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38561. extra: 1812/1727,
  38562. bottom: 86/1898
  38563. }
  38564. },
  38565. },
  38566. [
  38567. {
  38568. name: "Mini-Macro",
  38569. height: math.unit(10, "feet"),
  38570. default: true
  38571. },
  38572. ]
  38573. ))
  38574. characterMakers.push(() => makeCharacter(
  38575. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38576. {
  38577. front: {
  38578. height: math.unit(25, "feet"),
  38579. name: "Front",
  38580. image: {
  38581. source: "./media/characters/titan-s-wulf/front.svg",
  38582. extra: 1560/1484,
  38583. bottom: 76/1636
  38584. }
  38585. },
  38586. },
  38587. [
  38588. {
  38589. name: "Smallest",
  38590. height: math.unit(25, "feet"),
  38591. default: true
  38592. },
  38593. {
  38594. name: "Normal",
  38595. height: math.unit(200, "feet")
  38596. },
  38597. {
  38598. name: "Macro",
  38599. height: math.unit(200000, "feet")
  38600. },
  38601. {
  38602. name: "Multiversal Original",
  38603. height: math.unit(10000, "multiverses")
  38604. },
  38605. ]
  38606. ))
  38607. characterMakers.push(() => makeCharacter(
  38608. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38609. {
  38610. front: {
  38611. height: math.unit(8, "feet"),
  38612. weight: math.unit(553, "lb"),
  38613. name: "Front",
  38614. image: {
  38615. source: "./media/characters/tawendeh/front.svg",
  38616. extra: 2365/2268,
  38617. bottom: 83/2448
  38618. }
  38619. },
  38620. frontClothed: {
  38621. height: math.unit(8, "feet"),
  38622. weight: math.unit(553, "lb"),
  38623. name: "Front (Clothed)",
  38624. image: {
  38625. source: "./media/characters/tawendeh/front-clothed.svg",
  38626. extra: 2365/2268,
  38627. bottom: 83/2448
  38628. }
  38629. },
  38630. back: {
  38631. height: math.unit(8, "feet"),
  38632. weight: math.unit(553, "lb"),
  38633. name: "Back",
  38634. image: {
  38635. source: "./media/characters/tawendeh/back.svg",
  38636. extra: 2397/2294,
  38637. bottom: 42/2439
  38638. }
  38639. },
  38640. },
  38641. [
  38642. {
  38643. name: "Mortal Interaction",
  38644. height: math.unit(8, "feet"),
  38645. default: true
  38646. },
  38647. {
  38648. name: "Giant",
  38649. height: math.unit(80, "feet")
  38650. },
  38651. {
  38652. name: "Macro",
  38653. height: math.unit(800, "feet")
  38654. },
  38655. {
  38656. name: "Megamacro",
  38657. height: math.unit(8000, "feet")
  38658. },
  38659. {
  38660. name: "City-Crushing",
  38661. height: math.unit(24000, "feet")
  38662. },
  38663. {
  38664. name: "Mountain-Mashing",
  38665. height: math.unit(80000, "feet")
  38666. },
  38667. {
  38668. name: "Nation Nemesis",
  38669. height: math.unit(8e6, "feet")
  38670. },
  38671. {
  38672. name: "Continent Cracker",
  38673. height: math.unit(24e6, "feet")
  38674. },
  38675. {
  38676. name: "Earth-Eclipsing",
  38677. height: math.unit(2.4e8, "feet")
  38678. },
  38679. {
  38680. name: "Gas Giant Gulper",
  38681. height: math.unit(2.4e9, "feet")
  38682. },
  38683. {
  38684. name: "Sol-Swallowing",
  38685. height: math.unit(8e10, "feet")
  38686. },
  38687. {
  38688. name: "Galaxy Gulper",
  38689. height: math.unit(8, "galaxies")
  38690. },
  38691. {
  38692. name: "Cosmos Churner",
  38693. height: math.unit(8, "universes")
  38694. },
  38695. {
  38696. name: "Omnipotent Otter",
  38697. height: math.unit(80, "universes")
  38698. },
  38699. ]
  38700. ))
  38701. characterMakers.push(() => makeCharacter(
  38702. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38703. {
  38704. front: {
  38705. height: math.unit(2.6, "meters"),
  38706. weight: math.unit(900, "kg"),
  38707. name: "Front",
  38708. image: {
  38709. source: "./media/characters/neesha/front.svg",
  38710. extra: 1803/1653,
  38711. bottom: 128/1931
  38712. }
  38713. },
  38714. },
  38715. [
  38716. {
  38717. name: "Normal",
  38718. height: math.unit(2.6, "meters"),
  38719. default: true
  38720. },
  38721. {
  38722. name: "Macro",
  38723. height: math.unit(50, "meters")
  38724. },
  38725. ]
  38726. ))
  38727. characterMakers.push(() => makeCharacter(
  38728. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38729. {
  38730. front: {
  38731. height: math.unit(5, "feet"),
  38732. weight: math.unit(185, "lb"),
  38733. name: "Front",
  38734. image: {
  38735. source: "./media/characters/kyera/front.svg",
  38736. extra: 1875/1790,
  38737. bottom: 96/1971
  38738. }
  38739. },
  38740. },
  38741. [
  38742. {
  38743. name: "Normal",
  38744. height: math.unit(5, "feet"),
  38745. default: true
  38746. },
  38747. ]
  38748. ))
  38749. characterMakers.push(() => makeCharacter(
  38750. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38751. {
  38752. front: {
  38753. height: math.unit(7 + 6/12, "feet"),
  38754. weight: math.unit(540, "lb"),
  38755. name: "Front",
  38756. image: {
  38757. source: "./media/characters/yuko/front.svg",
  38758. extra: 1282/1222,
  38759. bottom: 101/1383
  38760. }
  38761. },
  38762. frontClothed: {
  38763. height: math.unit(7 + 6/12, "feet"),
  38764. weight: math.unit(540, "lb"),
  38765. name: "Front (Clothed)",
  38766. image: {
  38767. source: "./media/characters/yuko/front-clothed.svg",
  38768. extra: 1282/1222,
  38769. bottom: 101/1383
  38770. }
  38771. },
  38772. },
  38773. [
  38774. {
  38775. name: "Normal",
  38776. height: math.unit(7 + 6/12, "feet"),
  38777. default: true
  38778. },
  38779. {
  38780. name: "Macro",
  38781. height: math.unit(26 + 9/12, "feet")
  38782. },
  38783. {
  38784. name: "Megamacro",
  38785. height: math.unit(300, "feet")
  38786. },
  38787. {
  38788. name: "Gigamacro",
  38789. height: math.unit(5000, "feet")
  38790. },
  38791. {
  38792. name: "Planetary",
  38793. height: math.unit(10000, "miles")
  38794. },
  38795. ]
  38796. ))
  38797. characterMakers.push(() => makeCharacter(
  38798. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38799. {
  38800. front: {
  38801. height: math.unit(8 + 2/12, "feet"),
  38802. weight: math.unit(600, "lb"),
  38803. name: "Front",
  38804. image: {
  38805. source: "./media/characters/deam-nitrel/front.svg",
  38806. extra: 1308/1234,
  38807. bottom: 125/1433
  38808. }
  38809. },
  38810. },
  38811. [
  38812. {
  38813. name: "Normal",
  38814. height: math.unit(8 + 2/12, "feet"),
  38815. default: true
  38816. },
  38817. ]
  38818. ))
  38819. characterMakers.push(() => makeCharacter(
  38820. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38821. {
  38822. front: {
  38823. height: math.unit(6.1, "feet"),
  38824. weight: math.unit(180, "lb"),
  38825. name: "Front",
  38826. image: {
  38827. source: "./media/characters/skyress/front.svg",
  38828. extra: 1045/915,
  38829. bottom: 28/1073
  38830. }
  38831. },
  38832. maw: {
  38833. height: math.unit(1, "feet"),
  38834. name: "Maw",
  38835. image: {
  38836. source: "./media/characters/skyress/maw.svg"
  38837. }
  38838. },
  38839. },
  38840. [
  38841. {
  38842. name: "Normal",
  38843. height: math.unit(6.1, "feet"),
  38844. default: true
  38845. },
  38846. {
  38847. name: "Macro",
  38848. height: math.unit(200, "feet")
  38849. },
  38850. ]
  38851. ))
  38852. characterMakers.push(() => makeCharacter(
  38853. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38854. {
  38855. front: {
  38856. height: math.unit(4 + 2/12, "feet"),
  38857. weight: math.unit(40, "kg"),
  38858. name: "Front",
  38859. image: {
  38860. source: "./media/characters/amethyst-jones/front.svg",
  38861. extra: 1220/1150,
  38862. bottom: 101/1321
  38863. }
  38864. },
  38865. },
  38866. [
  38867. {
  38868. name: "Normal",
  38869. height: math.unit(4 + 2/12, "feet"),
  38870. default: true
  38871. },
  38872. ]
  38873. ))
  38874. characterMakers.push(() => makeCharacter(
  38875. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38876. {
  38877. front: {
  38878. height: math.unit(1.7, "m"),
  38879. weight: math.unit(135, "lb"),
  38880. name: "Front",
  38881. image: {
  38882. source: "./media/characters/jade/front.svg",
  38883. extra: 1818/1767,
  38884. bottom: 32/1850
  38885. }
  38886. },
  38887. back: {
  38888. height: math.unit(1.7, "m"),
  38889. weight: math.unit(135, "lb"),
  38890. name: "Back",
  38891. image: {
  38892. source: "./media/characters/jade/back.svg",
  38893. extra: 1869/1809,
  38894. bottom: 35/1904
  38895. }
  38896. },
  38897. hand: {
  38898. height: math.unit(0.24, "m"),
  38899. name: "Hand",
  38900. image: {
  38901. source: "./media/characters/jade/hand.svg"
  38902. }
  38903. },
  38904. foot: {
  38905. height: math.unit(0.263, "m"),
  38906. name: "Foot",
  38907. image: {
  38908. source: "./media/characters/jade/foot.svg"
  38909. }
  38910. },
  38911. dick: {
  38912. height: math.unit(0.47, "m"),
  38913. name: "Dick",
  38914. image: {
  38915. source: "./media/characters/jade/dick.svg"
  38916. }
  38917. },
  38918. },
  38919. [
  38920. {
  38921. name: "Micro",
  38922. height: math.unit(22, "cm")
  38923. },
  38924. {
  38925. name: "Normal",
  38926. height: math.unit(1.7, "m"),
  38927. default: true
  38928. },
  38929. {
  38930. name: "Macro",
  38931. height: math.unit(152, "m")
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38937. {
  38938. front: {
  38939. height: math.unit(100, "miles"),
  38940. weight: math.unit(20000, "tons"),
  38941. name: "Front",
  38942. image: {
  38943. source: "./media/characters/cookie/front.svg",
  38944. extra: 1125/1070,
  38945. bottom: 30/1155
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Big",
  38952. height: math.unit(50, "feet")
  38953. },
  38954. {
  38955. name: "Macro",
  38956. height: math.unit(100, "miles"),
  38957. default: true
  38958. },
  38959. {
  38960. name: "Megamacro",
  38961. height: math.unit(90000, "miles")
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38967. {
  38968. front: {
  38969. height: math.unit(6, "feet"),
  38970. weight: math.unit(145, "lb"),
  38971. name: "Front",
  38972. image: {
  38973. source: "./media/characters/farzian/front.svg",
  38974. extra: 1902/1693,
  38975. bottom: 108/2010
  38976. }
  38977. },
  38978. },
  38979. [
  38980. {
  38981. name: "Macro",
  38982. height: math.unit(500, "feet"),
  38983. default: true
  38984. },
  38985. ]
  38986. ))
  38987. characterMakers.push(() => makeCharacter(
  38988. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38989. {
  38990. front: {
  38991. height: math.unit(3 + 6/12, "feet"),
  38992. weight: math.unit(50, "lb"),
  38993. name: "Front",
  38994. image: {
  38995. source: "./media/characters/kimberly-tilson/front.svg",
  38996. extra: 1400/1322,
  38997. bottom: 36/1436
  38998. }
  38999. },
  39000. back: {
  39001. height: math.unit(3 + 6/12, "feet"),
  39002. weight: math.unit(50, "lb"),
  39003. name: "Back",
  39004. image: {
  39005. source: "./media/characters/kimberly-tilson/back.svg",
  39006. extra: 1370/1307,
  39007. bottom: 20/1390
  39008. }
  39009. },
  39010. },
  39011. [
  39012. {
  39013. name: "Normal",
  39014. height: math.unit(3 + 6/12, "feet"),
  39015. default: true
  39016. },
  39017. ]
  39018. ))
  39019. characterMakers.push(() => makeCharacter(
  39020. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39021. {
  39022. front: {
  39023. height: math.unit(1148, "feet"),
  39024. weight: math.unit(34057, "lb"),
  39025. name: "Front",
  39026. image: {
  39027. source: "./media/characters/harthos/front.svg",
  39028. extra: 1391/1339,
  39029. bottom: 13/1404
  39030. }
  39031. },
  39032. },
  39033. [
  39034. {
  39035. name: "Macro",
  39036. height: math.unit(1148, "feet"),
  39037. default: true
  39038. },
  39039. ]
  39040. ))
  39041. characterMakers.push(() => makeCharacter(
  39042. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39043. {
  39044. front: {
  39045. height: math.unit(15, "feet"),
  39046. name: "Front",
  39047. image: {
  39048. source: "./media/characters/hypatia/front.svg",
  39049. extra: 1653/1591,
  39050. bottom: 79/1732
  39051. }
  39052. },
  39053. },
  39054. [
  39055. {
  39056. name: "Normal",
  39057. height: math.unit(15, "feet")
  39058. },
  39059. {
  39060. name: "Small",
  39061. height: math.unit(300, "feet")
  39062. },
  39063. {
  39064. name: "Macro",
  39065. height: math.unit(2500, "feet"),
  39066. default: true
  39067. },
  39068. {
  39069. name: "Mega Macro",
  39070. height: math.unit(1500, "miles")
  39071. },
  39072. {
  39073. name: "Giga Macro",
  39074. height: math.unit(1.5e6, "miles")
  39075. },
  39076. ]
  39077. ))
  39078. characterMakers.push(() => makeCharacter(
  39079. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39080. {
  39081. front: {
  39082. height: math.unit(6, "feet"),
  39083. weight: math.unit(200, "lb"),
  39084. name: "Front",
  39085. image: {
  39086. source: "./media/characters/wulver/front.svg",
  39087. extra: 1724/1632,
  39088. bottom: 130/1854
  39089. }
  39090. },
  39091. frontNsfw: {
  39092. height: math.unit(6, "feet"),
  39093. weight: math.unit(200, "lb"),
  39094. name: "Front (NSFW)",
  39095. image: {
  39096. source: "./media/characters/wulver/front-nsfw.svg",
  39097. extra: 1724/1632,
  39098. bottom: 130/1854
  39099. }
  39100. },
  39101. },
  39102. [
  39103. {
  39104. name: "Human-Sized",
  39105. height: math.unit(6, "feet")
  39106. },
  39107. {
  39108. name: "Normal",
  39109. height: math.unit(4, "meters"),
  39110. default: true
  39111. },
  39112. {
  39113. name: "Large",
  39114. height: math.unit(6, "m")
  39115. },
  39116. ]
  39117. ))
  39118. characterMakers.push(() => makeCharacter(
  39119. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39120. {
  39121. front: {
  39122. height: math.unit(7, "feet"),
  39123. name: "Front",
  39124. image: {
  39125. source: "./media/characters/maru/front.svg",
  39126. extra: 1595/1570,
  39127. bottom: 0/1595
  39128. }
  39129. },
  39130. },
  39131. [
  39132. {
  39133. name: "Normal",
  39134. height: math.unit(7, "feet"),
  39135. default: true
  39136. },
  39137. {
  39138. name: "Macro",
  39139. height: math.unit(700, "feet")
  39140. },
  39141. {
  39142. name: "Mega Macro",
  39143. height: math.unit(25, "miles")
  39144. },
  39145. ]
  39146. ))
  39147. characterMakers.push(() => makeCharacter(
  39148. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39149. {
  39150. front: {
  39151. height: math.unit(6, "feet"),
  39152. weight: math.unit(170, "lb"),
  39153. name: "Front",
  39154. image: {
  39155. source: "./media/characters/xenon/front.svg",
  39156. extra: 1376/1305,
  39157. bottom: 56/1432
  39158. }
  39159. },
  39160. back: {
  39161. height: math.unit(6, "feet"),
  39162. weight: math.unit(170, "lb"),
  39163. name: "Back",
  39164. image: {
  39165. source: "./media/characters/xenon/back.svg",
  39166. extra: 1328/1259,
  39167. bottom: 95/1423
  39168. }
  39169. },
  39170. maw: {
  39171. height: math.unit(0.52, "feet"),
  39172. name: "Maw",
  39173. image: {
  39174. source: "./media/characters/xenon/maw.svg"
  39175. }
  39176. },
  39177. hand: {
  39178. height: math.unit(0.82, "feet"),
  39179. name: "Hand",
  39180. image: {
  39181. source: "./media/characters/xenon/hand.svg"
  39182. }
  39183. },
  39184. foot: {
  39185. height: math.unit(1.13, "feet"),
  39186. name: "Foot",
  39187. image: {
  39188. source: "./media/characters/xenon/foot.svg"
  39189. }
  39190. },
  39191. },
  39192. [
  39193. {
  39194. name: "Micro",
  39195. height: math.unit(0.8, "inches")
  39196. },
  39197. {
  39198. name: "Normal",
  39199. height: math.unit(6, "feet")
  39200. },
  39201. {
  39202. name: "Macro",
  39203. height: math.unit(50, "feet"),
  39204. default: true
  39205. },
  39206. {
  39207. name: "Macro+",
  39208. height: math.unit(250, "feet")
  39209. },
  39210. {
  39211. name: "Megamacro",
  39212. height: math.unit(1500, "feet")
  39213. },
  39214. ]
  39215. ))
  39216. characterMakers.push(() => makeCharacter(
  39217. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39218. {
  39219. front: {
  39220. height: math.unit(7 + 5/12, "feet"),
  39221. name: "Front",
  39222. image: {
  39223. source: "./media/characters/zane/front.svg",
  39224. extra: 1260/1203,
  39225. bottom: 94/1354
  39226. }
  39227. },
  39228. back: {
  39229. height: math.unit(5.05, "feet"),
  39230. name: "Back",
  39231. image: {
  39232. source: "./media/characters/zane/back.svg",
  39233. extra: 893/829,
  39234. bottom: 30/923
  39235. }
  39236. },
  39237. werewolf: {
  39238. height: math.unit(11, "feet"),
  39239. name: "Werewolf",
  39240. image: {
  39241. source: "./media/characters/zane/werewolf.svg",
  39242. extra: 1383/1323,
  39243. bottom: 89/1472
  39244. }
  39245. },
  39246. foot: {
  39247. height: math.unit(1.46, "feet"),
  39248. name: "Foot",
  39249. image: {
  39250. source: "./media/characters/zane/foot.svg"
  39251. }
  39252. },
  39253. footFront: {
  39254. height: math.unit(0.784, "feet"),
  39255. name: "Foot (Front)",
  39256. image: {
  39257. source: "./media/characters/zane/foot-front.svg"
  39258. }
  39259. },
  39260. dick: {
  39261. height: math.unit(1.95, "feet"),
  39262. name: "Dick",
  39263. image: {
  39264. source: "./media/characters/zane/dick.svg"
  39265. }
  39266. },
  39267. dickWerewolf: {
  39268. height: math.unit(3.77, "feet"),
  39269. name: "Dick (Werewolf)",
  39270. image: {
  39271. source: "./media/characters/zane/dick.svg"
  39272. }
  39273. },
  39274. },
  39275. [
  39276. {
  39277. name: "Normal",
  39278. height: math.unit(7 + 5/12, "feet"),
  39279. default: true
  39280. },
  39281. ]
  39282. ))
  39283. characterMakers.push(() => makeCharacter(
  39284. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39285. {
  39286. front: {
  39287. height: math.unit(6 + 2/12, "feet"),
  39288. weight: math.unit(284, "lb"),
  39289. name: "Front",
  39290. image: {
  39291. source: "./media/characters/benni-desparque/front.svg",
  39292. extra: 1353/1126,
  39293. bottom: 69/1422
  39294. }
  39295. },
  39296. },
  39297. [
  39298. {
  39299. name: "Civilian",
  39300. height: math.unit(6 + 2/12, "feet")
  39301. },
  39302. {
  39303. name: "Normal",
  39304. height: math.unit(98, "feet"),
  39305. default: true
  39306. },
  39307. {
  39308. name: "Kaiju Fighter",
  39309. height: math.unit(268, "feet")
  39310. },
  39311. ]
  39312. ))
  39313. characterMakers.push(() => makeCharacter(
  39314. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39315. {
  39316. front: {
  39317. height: math.unit(5, "feet"),
  39318. weight: math.unit(105, "lb"),
  39319. name: "Front",
  39320. image: {
  39321. source: "./media/characters/maxine/front.svg",
  39322. extra: 1386/1250,
  39323. bottom: 71/1457
  39324. }
  39325. },
  39326. },
  39327. [
  39328. {
  39329. name: "Normal",
  39330. height: math.unit(5, "feet"),
  39331. default: true
  39332. },
  39333. ]
  39334. ))
  39335. characterMakers.push(() => makeCharacter(
  39336. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39337. {
  39338. front: {
  39339. height: math.unit(11 + 7/12, "feet"),
  39340. weight: math.unit(9576, "lb"),
  39341. name: "Front",
  39342. image: {
  39343. source: "./media/characters/scaly/front.svg",
  39344. extra: 888/867,
  39345. bottom: 36/924
  39346. }
  39347. },
  39348. },
  39349. [
  39350. {
  39351. name: "Normal",
  39352. height: math.unit(11 + 7/12, "feet"),
  39353. default: true
  39354. },
  39355. ]
  39356. ))
  39357. characterMakers.push(() => makeCharacter(
  39358. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39359. {
  39360. front: {
  39361. height: math.unit(9, "inches"),
  39362. name: "Front",
  39363. image: {
  39364. source: "./media/characters/saelria/front.svg",
  39365. extra: 662/621,
  39366. bottom: 12/674
  39367. }
  39368. },
  39369. },
  39370. [
  39371. {
  39372. name: "Tiny",
  39373. height: math.unit(9, "inches"),
  39374. default: true
  39375. },
  39376. ]
  39377. ))
  39378. characterMakers.push(() => makeCharacter(
  39379. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39380. {
  39381. front: {
  39382. height: math.unit(80, "meters"),
  39383. weight: math.unit(7000, "tonnes"),
  39384. name: "Front",
  39385. image: {
  39386. source: "./media/characters/tef/front.svg",
  39387. extra: 2036/1991,
  39388. bottom: 54/2090
  39389. }
  39390. },
  39391. back: {
  39392. height: math.unit(80, "meters"),
  39393. weight: math.unit(7000, "tonnes"),
  39394. name: "Back",
  39395. image: {
  39396. source: "./media/characters/tef/back.svg",
  39397. extra: 2036/1991,
  39398. bottom: 54/2090
  39399. }
  39400. },
  39401. },
  39402. [
  39403. {
  39404. name: "Macro",
  39405. height: math.unit(80, "meters"),
  39406. default: true
  39407. },
  39408. ]
  39409. ))
  39410. characterMakers.push(() => makeCharacter(
  39411. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39412. {
  39413. front: {
  39414. height: math.unit(13, "feet"),
  39415. weight: math.unit(6, "tons"),
  39416. name: "Front",
  39417. image: {
  39418. source: "./media/characters/rover/front.svg",
  39419. extra: 1233/1156,
  39420. bottom: 50/1283
  39421. }
  39422. },
  39423. back: {
  39424. height: math.unit(13, "feet"),
  39425. weight: math.unit(6, "tons"),
  39426. name: "Back",
  39427. image: {
  39428. source: "./media/characters/rover/back.svg",
  39429. extra: 1327/1258,
  39430. bottom: 39/1366
  39431. }
  39432. },
  39433. },
  39434. [
  39435. {
  39436. name: "Normal",
  39437. height: math.unit(13, "feet"),
  39438. default: true
  39439. },
  39440. {
  39441. name: "Macro",
  39442. height: math.unit(1300, "feet")
  39443. },
  39444. {
  39445. name: "Megamacro",
  39446. height: math.unit(1300, "miles")
  39447. },
  39448. {
  39449. name: "Gigamacro",
  39450. height: math.unit(1300000, "miles")
  39451. },
  39452. ]
  39453. ))
  39454. characterMakers.push(() => makeCharacter(
  39455. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39456. {
  39457. front: {
  39458. height: math.unit(6, "feet"),
  39459. weight: math.unit(150, "lb"),
  39460. name: "Front",
  39461. image: {
  39462. source: "./media/characters/ariz/front.svg",
  39463. extra: 1401/1346,
  39464. bottom: 5/1406
  39465. }
  39466. },
  39467. },
  39468. [
  39469. {
  39470. name: "Normal",
  39471. height: math.unit(10, "feet"),
  39472. default: true
  39473. },
  39474. ]
  39475. ))
  39476. characterMakers.push(() => makeCharacter(
  39477. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39478. {
  39479. front: {
  39480. height: math.unit(6, "feet"),
  39481. weight: math.unit(140, "lb"),
  39482. name: "Front",
  39483. image: {
  39484. source: "./media/characters/sigrun/front.svg",
  39485. extra: 1418/1359,
  39486. bottom: 27/1445
  39487. }
  39488. },
  39489. },
  39490. [
  39491. {
  39492. name: "Macro",
  39493. height: math.unit(35, "feet"),
  39494. default: true
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(6, "feet"),
  39503. weight: math.unit(150, "lb"),
  39504. name: "Front",
  39505. image: {
  39506. source: "./media/characters/numin/front.svg",
  39507. extra: 1433/1388,
  39508. bottom: 12/1445
  39509. }
  39510. },
  39511. },
  39512. [
  39513. {
  39514. name: "Macro",
  39515. height: math.unit(21.5, "km"),
  39516. default: true
  39517. },
  39518. ]
  39519. ))
  39520. characterMakers.push(() => makeCharacter(
  39521. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39522. {
  39523. front: {
  39524. height: math.unit(6, "feet"),
  39525. weight: math.unit(463, "lb"),
  39526. name: "Front",
  39527. image: {
  39528. source: "./media/characters/melwa/front.svg",
  39529. extra: 1307/1248,
  39530. bottom: 93/1400
  39531. }
  39532. },
  39533. },
  39534. [
  39535. {
  39536. name: "Macro",
  39537. height: math.unit(50, "meters"),
  39538. default: true
  39539. },
  39540. ]
  39541. ))
  39542. characterMakers.push(() => makeCharacter(
  39543. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39544. {
  39545. front: {
  39546. height: math.unit(325, "feet"),
  39547. name: "Front",
  39548. image: {
  39549. source: "./media/characters/zorkaiju/front.svg",
  39550. extra: 1955/1814,
  39551. bottom: 40/1995
  39552. }
  39553. },
  39554. frontExtended: {
  39555. height: math.unit(325, "feet"),
  39556. name: "Front (Extended)",
  39557. image: {
  39558. source: "./media/characters/zorkaiju/front-extended.svg",
  39559. extra: 1955/1814,
  39560. bottom: 40/1995
  39561. }
  39562. },
  39563. side: {
  39564. height: math.unit(325, "feet"),
  39565. name: "Side",
  39566. image: {
  39567. source: "./media/characters/zorkaiju/side.svg",
  39568. extra: 1495/1396,
  39569. bottom: 17/1512
  39570. }
  39571. },
  39572. sideExtended: {
  39573. height: math.unit(325, "feet"),
  39574. name: "Side (Extended)",
  39575. image: {
  39576. source: "./media/characters/zorkaiju/side-extended.svg",
  39577. extra: 1495/1396,
  39578. bottom: 17/1512
  39579. }
  39580. },
  39581. back: {
  39582. height: math.unit(325, "feet"),
  39583. name: "Back",
  39584. image: {
  39585. source: "./media/characters/zorkaiju/back.svg",
  39586. extra: 1959/1821,
  39587. bottom: 31/1990
  39588. }
  39589. },
  39590. backExtended: {
  39591. height: math.unit(325, "feet"),
  39592. name: "Back (Extended)",
  39593. image: {
  39594. source: "./media/characters/zorkaiju/back-extended.svg",
  39595. extra: 1959/1821,
  39596. bottom: 31/1990
  39597. }
  39598. },
  39599. hand: {
  39600. height: math.unit(58.4, "feet"),
  39601. name: "Hand",
  39602. image: {
  39603. source: "./media/characters/zorkaiju/hand.svg"
  39604. }
  39605. },
  39606. handExtended: {
  39607. height: math.unit(61.4, "feet"),
  39608. name: "Hand (Extended)",
  39609. image: {
  39610. source: "./media/characters/zorkaiju/hand-extended.svg"
  39611. }
  39612. },
  39613. foot: {
  39614. height: math.unit(95, "feet"),
  39615. name: "Foot",
  39616. image: {
  39617. source: "./media/characters/zorkaiju/foot.svg"
  39618. }
  39619. },
  39620. leftArm: {
  39621. height: math.unit(59, "feet"),
  39622. name: "Left Arm",
  39623. image: {
  39624. source: "./media/characters/zorkaiju/left-arm.svg"
  39625. }
  39626. },
  39627. rightArm: {
  39628. height: math.unit(59, "feet"),
  39629. name: "Right Arm",
  39630. image: {
  39631. source: "./media/characters/zorkaiju/right-arm.svg"
  39632. }
  39633. },
  39634. tail: {
  39635. height: math.unit(104, "feet"),
  39636. name: "Tail",
  39637. image: {
  39638. source: "./media/characters/zorkaiju/tail.svg"
  39639. }
  39640. },
  39641. tailExtended: {
  39642. height: math.unit(104, "feet"),
  39643. name: "Tail (Extended)",
  39644. image: {
  39645. source: "./media/characters/zorkaiju/tail-extended.svg"
  39646. }
  39647. },
  39648. tailBottom: {
  39649. height: math.unit(104, "feet"),
  39650. name: "Tail Bottom",
  39651. image: {
  39652. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39653. }
  39654. },
  39655. crystal: {
  39656. height: math.unit(27.54, "feet"),
  39657. name: "Crystal",
  39658. image: {
  39659. source: "./media/characters/zorkaiju/crystal.svg"
  39660. }
  39661. },
  39662. },
  39663. [
  39664. {
  39665. name: "Kaiju",
  39666. height: math.unit(325, "feet"),
  39667. default: true
  39668. },
  39669. ]
  39670. ))
  39671. characterMakers.push(() => makeCharacter(
  39672. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39673. {
  39674. front: {
  39675. height: math.unit(6 + 1/12, "feet"),
  39676. weight: math.unit(115, "lb"),
  39677. name: "Front",
  39678. image: {
  39679. source: "./media/characters/bailey-belfry/front.svg",
  39680. extra: 1240/1121,
  39681. bottom: 101/1341
  39682. }
  39683. },
  39684. },
  39685. [
  39686. {
  39687. name: "Normal",
  39688. height: math.unit(6 + 1/12, "feet"),
  39689. default: true
  39690. },
  39691. ]
  39692. ))
  39693. characterMakers.push(() => makeCharacter(
  39694. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39695. {
  39696. side: {
  39697. height: math.unit(4, "meters"),
  39698. weight: math.unit(250, "kg"),
  39699. name: "Side",
  39700. image: {
  39701. source: "./media/characters/blacky/side.svg",
  39702. extra: 1027/919,
  39703. bottom: 43/1070
  39704. }
  39705. },
  39706. maw: {
  39707. height: math.unit(1, "meters"),
  39708. name: "Maw",
  39709. image: {
  39710. source: "./media/characters/blacky/maw.svg"
  39711. }
  39712. },
  39713. paw: {
  39714. height: math.unit(1, "meters"),
  39715. name: "Paw",
  39716. image: {
  39717. source: "./media/characters/blacky/paw.svg"
  39718. }
  39719. },
  39720. },
  39721. [
  39722. {
  39723. name: "Normal",
  39724. height: math.unit(4, "meters"),
  39725. default: true
  39726. },
  39727. ]
  39728. ))
  39729. characterMakers.push(() => makeCharacter(
  39730. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39731. {
  39732. front: {
  39733. height: math.unit(170, "cm"),
  39734. weight: math.unit(66, "kg"),
  39735. name: "Front",
  39736. image: {
  39737. source: "./media/characters/thux-ei/front.svg",
  39738. extra: 1109/1011,
  39739. bottom: 8/1117
  39740. }
  39741. },
  39742. },
  39743. [
  39744. {
  39745. name: "Normal",
  39746. height: math.unit(170, "cm"),
  39747. default: true
  39748. },
  39749. ]
  39750. ))
  39751. characterMakers.push(() => makeCharacter(
  39752. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39753. {
  39754. front: {
  39755. height: math.unit(5, "feet"),
  39756. weight: math.unit(120, "lb"),
  39757. name: "Front",
  39758. image: {
  39759. source: "./media/characters/roxanne-voltaire/front.svg",
  39760. extra: 1901/1779,
  39761. bottom: 53/1954
  39762. }
  39763. },
  39764. },
  39765. [
  39766. {
  39767. name: "Normal",
  39768. height: math.unit(5, "feet"),
  39769. default: true
  39770. },
  39771. {
  39772. name: "Giant",
  39773. height: math.unit(50, "feet")
  39774. },
  39775. {
  39776. name: "Titan",
  39777. height: math.unit(500, "feet")
  39778. },
  39779. {
  39780. name: "Macro",
  39781. height: math.unit(5000, "feet")
  39782. },
  39783. {
  39784. name: "Megamacro",
  39785. height: math.unit(50000, "feet")
  39786. },
  39787. {
  39788. name: "Gigamacro",
  39789. height: math.unit(500000, "feet")
  39790. },
  39791. {
  39792. name: "Teramacro",
  39793. height: math.unit(5e6, "feet")
  39794. },
  39795. ]
  39796. ))
  39797. characterMakers.push(() => makeCharacter(
  39798. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39799. {
  39800. front: {
  39801. height: math.unit(6 + 2/12, "feet"),
  39802. name: "Front",
  39803. image: {
  39804. source: "./media/characters/squeaks/front.svg",
  39805. extra: 1823/1768,
  39806. bottom: 138/1961
  39807. }
  39808. },
  39809. },
  39810. [
  39811. {
  39812. name: "Micro",
  39813. height: math.unit(0.5, "inches")
  39814. },
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(6 + 2/12, "feet"),
  39818. default: true
  39819. },
  39820. {
  39821. name: "Macro",
  39822. height: math.unit(600, "feet")
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39828. {
  39829. front: {
  39830. height: math.unit(1.72, "meters"),
  39831. name: "Front",
  39832. image: {
  39833. source: "./media/characters/archinger/front.svg",
  39834. extra: 1861/1675,
  39835. bottom: 125/1986
  39836. }
  39837. },
  39838. back: {
  39839. height: math.unit(1.72, "meters"),
  39840. name: "Back",
  39841. image: {
  39842. source: "./media/characters/archinger/back.svg",
  39843. extra: 1844/1701,
  39844. bottom: 104/1948
  39845. }
  39846. },
  39847. cock: {
  39848. height: math.unit(0.59, "feet"),
  39849. name: "Cock",
  39850. image: {
  39851. source: "./media/characters/archinger/cock.svg"
  39852. }
  39853. },
  39854. },
  39855. [
  39856. {
  39857. name: "Normal",
  39858. height: math.unit(1.72, "meters"),
  39859. default: true
  39860. },
  39861. {
  39862. name: "Macro",
  39863. height: math.unit(84, "meters")
  39864. },
  39865. {
  39866. name: "Macro+",
  39867. height: math.unit(112, "meters")
  39868. },
  39869. {
  39870. name: "Macro++",
  39871. height: math.unit(960, "meters")
  39872. },
  39873. {
  39874. name: "Macro+++",
  39875. height: math.unit(4, "km")
  39876. },
  39877. {
  39878. name: "Macro++++",
  39879. height: math.unit(48, "km")
  39880. },
  39881. {
  39882. name: "Macro+++++",
  39883. height: math.unit(4500, "km")
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39889. {
  39890. front: {
  39891. height: math.unit(5 + 5/12, "feet"),
  39892. name: "Front",
  39893. image: {
  39894. source: "./media/characters/alsnapz/front.svg",
  39895. extra: 1157/1065,
  39896. bottom: 42/1199
  39897. }
  39898. },
  39899. },
  39900. [
  39901. {
  39902. name: "Normal",
  39903. height: math.unit(5 + 5/12, "feet"),
  39904. default: true
  39905. },
  39906. ]
  39907. ))
  39908. characterMakers.push(() => makeCharacter(
  39909. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39910. {
  39911. side: {
  39912. height: math.unit(3.2, "earths"),
  39913. name: "Side",
  39914. image: {
  39915. source: "./media/characters/mag/side.svg",
  39916. extra: 1331/1008,
  39917. bottom: 52/1383
  39918. }
  39919. },
  39920. wing: {
  39921. height: math.unit(1.94, "earths"),
  39922. name: "Wing",
  39923. image: {
  39924. source: "./media/characters/mag/wing.svg"
  39925. }
  39926. },
  39927. dick: {
  39928. height: math.unit(1.8, "earths"),
  39929. name: "Dick",
  39930. image: {
  39931. source: "./media/characters/mag/dick.svg"
  39932. }
  39933. },
  39934. ass: {
  39935. height: math.unit(1.33, "earths"),
  39936. name: "Ass",
  39937. image: {
  39938. source: "./media/characters/mag/ass.svg"
  39939. }
  39940. },
  39941. head: {
  39942. height: math.unit(1.1, "earths"),
  39943. name: "Head",
  39944. image: {
  39945. source: "./media/characters/mag/head.svg"
  39946. }
  39947. },
  39948. maw: {
  39949. height: math.unit(1.62, "earths"),
  39950. name: "Maw",
  39951. image: {
  39952. source: "./media/characters/mag/maw.svg"
  39953. }
  39954. },
  39955. },
  39956. [
  39957. {
  39958. name: "Small",
  39959. height: math.unit(162, "feet")
  39960. },
  39961. {
  39962. name: "Normal",
  39963. height: math.unit(3.2, "earths"),
  39964. default: true
  39965. },
  39966. ]
  39967. ))
  39968. characterMakers.push(() => makeCharacter(
  39969. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39970. {
  39971. front: {
  39972. height: math.unit(512, "feet"),
  39973. weight: math.unit(63509, "tonnes"),
  39974. name: "Front",
  39975. image: {
  39976. source: "./media/characters/vorrel-harroc/front.svg",
  39977. extra: 1075/1063,
  39978. bottom: 62/1137
  39979. }
  39980. },
  39981. },
  39982. [
  39983. {
  39984. name: "Normal",
  39985. height: math.unit(10, "feet")
  39986. },
  39987. {
  39988. name: "Macro",
  39989. height: math.unit(512, "feet"),
  39990. default: true
  39991. },
  39992. {
  39993. name: "Megamacro",
  39994. height: math.unit(256, "miles")
  39995. },
  39996. {
  39997. name: "Gigamacro",
  39998. height: math.unit(4096, "miles")
  39999. },
  40000. ]
  40001. ))
  40002. characterMakers.push(() => makeCharacter(
  40003. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40004. {
  40005. side: {
  40006. height: math.unit(50, "feet"),
  40007. name: "Side",
  40008. image: {
  40009. source: "./media/characters/froimar/side.svg",
  40010. extra: 855/638,
  40011. bottom: 99/954
  40012. }
  40013. },
  40014. },
  40015. [
  40016. {
  40017. name: "Macro",
  40018. height: math.unit(50, "feet"),
  40019. default: true
  40020. },
  40021. ]
  40022. ))
  40023. characterMakers.push(() => makeCharacter(
  40024. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40025. {
  40026. front: {
  40027. height: math.unit(210, "miles"),
  40028. name: "Front",
  40029. image: {
  40030. source: "./media/characters/timothy/front.svg",
  40031. extra: 1007/943,
  40032. bottom: 62/1069
  40033. }
  40034. },
  40035. frontSkirt: {
  40036. height: math.unit(210, "miles"),
  40037. name: "Front (Skirt)",
  40038. image: {
  40039. source: "./media/characters/timothy/front-skirt.svg",
  40040. extra: 1007/943,
  40041. bottom: 62/1069
  40042. }
  40043. },
  40044. frontCoat: {
  40045. height: math.unit(210, "miles"),
  40046. name: "Front (Coat)",
  40047. image: {
  40048. source: "./media/characters/timothy/front-coat.svg",
  40049. extra: 1007/943,
  40050. bottom: 62/1069
  40051. }
  40052. },
  40053. },
  40054. [
  40055. {
  40056. name: "Macro",
  40057. height: math.unit(210, "miles"),
  40058. default: true
  40059. },
  40060. {
  40061. name: "Megamacro",
  40062. height: math.unit(210000, "miles")
  40063. },
  40064. ]
  40065. ))
  40066. characterMakers.push(() => makeCharacter(
  40067. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40068. {
  40069. front: {
  40070. height: math.unit(188, "feet"),
  40071. name: "Front",
  40072. image: {
  40073. source: "./media/characters/pyotr/front.svg",
  40074. extra: 1912/1826,
  40075. bottom: 18/1930
  40076. }
  40077. },
  40078. },
  40079. [
  40080. {
  40081. name: "Macro",
  40082. height: math.unit(188, "feet"),
  40083. default: true
  40084. },
  40085. {
  40086. name: "Megamacro",
  40087. height: math.unit(8, "miles")
  40088. },
  40089. ]
  40090. ))
  40091. characterMakers.push(() => makeCharacter(
  40092. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40093. {
  40094. side: {
  40095. height: math.unit(10, "feet"),
  40096. weight: math.unit(4500, "lb"),
  40097. name: "Side",
  40098. image: {
  40099. source: "./media/characters/ackart/side.svg",
  40100. extra: 1776/1668,
  40101. bottom: 116/1892
  40102. }
  40103. },
  40104. },
  40105. [
  40106. {
  40107. name: "Normal",
  40108. height: math.unit(10, "feet"),
  40109. default: true
  40110. },
  40111. ]
  40112. ))
  40113. characterMakers.push(() => makeCharacter(
  40114. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40115. {
  40116. side: {
  40117. height: math.unit(21, "feet"),
  40118. name: "Side",
  40119. image: {
  40120. source: "./media/characters/nolow/side.svg",
  40121. extra: 1484/1434,
  40122. bottom: 85/1569
  40123. }
  40124. },
  40125. sideErect: {
  40126. height: math.unit(21, "feet"),
  40127. name: "Side-erect",
  40128. image: {
  40129. source: "./media/characters/nolow/side-erect.svg",
  40130. extra: 1484/1434,
  40131. bottom: 85/1569
  40132. }
  40133. },
  40134. },
  40135. [
  40136. {
  40137. name: "Regular",
  40138. height: math.unit(12, "feet")
  40139. },
  40140. {
  40141. name: "Big Chee",
  40142. height: math.unit(21, "feet"),
  40143. default: true
  40144. },
  40145. ]
  40146. ))
  40147. characterMakers.push(() => makeCharacter(
  40148. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40149. {
  40150. front: {
  40151. height: math.unit(7, "feet"),
  40152. weight: math.unit(250, "lb"),
  40153. name: "Front",
  40154. image: {
  40155. source: "./media/characters/nines/front.svg",
  40156. extra: 1741/1607,
  40157. bottom: 41/1782
  40158. }
  40159. },
  40160. side: {
  40161. height: math.unit(7, "feet"),
  40162. weight: math.unit(250, "lb"),
  40163. name: "Side",
  40164. image: {
  40165. source: "./media/characters/nines/side.svg",
  40166. extra: 1854/1735,
  40167. bottom: 93/1947
  40168. }
  40169. },
  40170. back: {
  40171. height: math.unit(7, "feet"),
  40172. weight: math.unit(250, "lb"),
  40173. name: "Back",
  40174. image: {
  40175. source: "./media/characters/nines/back.svg",
  40176. extra: 1748/1615,
  40177. bottom: 20/1768
  40178. }
  40179. },
  40180. },
  40181. [
  40182. {
  40183. name: "Megamacro",
  40184. height: math.unit(99, "km"),
  40185. default: true
  40186. },
  40187. ]
  40188. ))
  40189. characterMakers.push(() => makeCharacter(
  40190. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40191. {
  40192. front: {
  40193. height: math.unit(5 + 10/12, "feet"),
  40194. weight: math.unit(210, "lb"),
  40195. name: "Front",
  40196. image: {
  40197. source: "./media/characters/zenith/front.svg",
  40198. extra: 1531/1452,
  40199. bottom: 198/1729
  40200. }
  40201. },
  40202. back: {
  40203. height: math.unit(5 + 10/12, "feet"),
  40204. weight: math.unit(210, "lb"),
  40205. name: "Back",
  40206. image: {
  40207. source: "./media/characters/zenith/back.svg",
  40208. extra: 1571/1487,
  40209. bottom: 75/1646
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Normal",
  40216. height: math.unit(5 + 10/12, "feet"),
  40217. default: true
  40218. }
  40219. ]
  40220. ))
  40221. characterMakers.push(() => makeCharacter(
  40222. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40223. {
  40224. front: {
  40225. height: math.unit(4, "feet"),
  40226. weight: math.unit(60, "lb"),
  40227. name: "Front",
  40228. image: {
  40229. source: "./media/characters/jasper/front.svg",
  40230. extra: 1450/1379,
  40231. bottom: 19/1469
  40232. }
  40233. },
  40234. },
  40235. [
  40236. {
  40237. name: "Normal",
  40238. height: math.unit(4, "feet"),
  40239. default: true
  40240. },
  40241. ]
  40242. ))
  40243. characterMakers.push(() => makeCharacter(
  40244. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40245. {
  40246. front: {
  40247. height: math.unit(6 + 5/12, "feet"),
  40248. weight: math.unit(290, "lb"),
  40249. name: "Front",
  40250. image: {
  40251. source: "./media/characters/tiberius-thyben/front.svg",
  40252. extra: 757/739,
  40253. bottom: 39/796
  40254. }
  40255. },
  40256. },
  40257. [
  40258. {
  40259. name: "Micro",
  40260. height: math.unit(1.5, "inches")
  40261. },
  40262. {
  40263. name: "Normal",
  40264. height: math.unit(6 + 5/12, "feet"),
  40265. default: true
  40266. },
  40267. {
  40268. name: "Macro",
  40269. height: math.unit(300, "feet")
  40270. },
  40271. ]
  40272. ))
  40273. characterMakers.push(() => makeCharacter(
  40274. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40275. {
  40276. front: {
  40277. height: math.unit(5 + 6/12, "feet"),
  40278. weight: math.unit(60, "kg"),
  40279. name: "Front",
  40280. image: {
  40281. source: "./media/characters/sabre/front.svg",
  40282. extra: 738/671,
  40283. bottom: 27/765
  40284. }
  40285. },
  40286. },
  40287. [
  40288. {
  40289. name: "Teeny",
  40290. height: math.unit(2, "inches")
  40291. },
  40292. {
  40293. name: "Smol",
  40294. height: math.unit(8, "inches")
  40295. },
  40296. {
  40297. name: "Normal",
  40298. height: math.unit(5 + 6/12, "feet"),
  40299. default: true
  40300. },
  40301. {
  40302. name: "Mini-Macro",
  40303. height: math.unit(15, "feet")
  40304. },
  40305. {
  40306. name: "Macro",
  40307. height: math.unit(50, "feet")
  40308. },
  40309. ]
  40310. ))
  40311. characterMakers.push(() => makeCharacter(
  40312. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40313. {
  40314. front: {
  40315. height: math.unit(6 + 4/12, "feet"),
  40316. weight: math.unit(170, "lb"),
  40317. name: "Front",
  40318. image: {
  40319. source: "./media/characters/charlie/front.svg",
  40320. extra: 1348/1228,
  40321. bottom: 15/1363
  40322. }
  40323. },
  40324. },
  40325. [
  40326. {
  40327. name: "Macro",
  40328. height: math.unit(1700, "meters"),
  40329. default: true
  40330. },
  40331. {
  40332. name: "MegaMacro",
  40333. height: math.unit(20400, "meters")
  40334. },
  40335. ]
  40336. ))
  40337. characterMakers.push(() => makeCharacter(
  40338. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40339. {
  40340. front: {
  40341. height: math.unit(6 + 3/12, "feet"),
  40342. weight: math.unit(185, "lb"),
  40343. name: "Front",
  40344. image: {
  40345. source: "./media/characters/susan-grant/front.svg",
  40346. extra: 1351/1327,
  40347. bottom: 26/1377
  40348. }
  40349. },
  40350. },
  40351. [
  40352. {
  40353. name: "Normal",
  40354. height: math.unit(6 + 3/12, "feet"),
  40355. default: true
  40356. },
  40357. {
  40358. name: "Macro",
  40359. height: math.unit(225, "feet")
  40360. },
  40361. {
  40362. name: "Macro+",
  40363. height: math.unit(900, "feet")
  40364. },
  40365. {
  40366. name: "MegaMacro",
  40367. height: math.unit(14400, "feet")
  40368. },
  40369. ]
  40370. ))
  40371. characterMakers.push(() => makeCharacter(
  40372. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40373. {
  40374. front: {
  40375. height: math.unit(5 + 4/12, "feet"),
  40376. weight: math.unit(110, "lb"),
  40377. name: "Front",
  40378. image: {
  40379. source: "./media/characters/axel-isanov/front.svg",
  40380. extra: 1096/1065,
  40381. bottom: 13/1109
  40382. }
  40383. },
  40384. },
  40385. [
  40386. {
  40387. name: "Normal",
  40388. height: math.unit(5 + 4/12, "feet"),
  40389. default: true
  40390. },
  40391. ]
  40392. ))
  40393. characterMakers.push(() => makeCharacter(
  40394. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40395. {
  40396. front: {
  40397. height: math.unit(9, "feet"),
  40398. weight: math.unit(467, "lb"),
  40399. name: "Front",
  40400. image: {
  40401. source: "./media/characters/necahual/front.svg",
  40402. extra: 920/873,
  40403. bottom: 26/946
  40404. }
  40405. },
  40406. back: {
  40407. height: math.unit(9, "feet"),
  40408. weight: math.unit(467, "lb"),
  40409. name: "Back",
  40410. image: {
  40411. source: "./media/characters/necahual/back.svg",
  40412. extra: 930/884,
  40413. bottom: 16/946
  40414. }
  40415. },
  40416. frontUnderwear: {
  40417. height: math.unit(9, "feet"),
  40418. weight: math.unit(467, "lb"),
  40419. name: "Front (Underwear)",
  40420. image: {
  40421. source: "./media/characters/necahual/front-underwear.svg",
  40422. extra: 920/873,
  40423. bottom: 26/946
  40424. }
  40425. },
  40426. frontDressed: {
  40427. height: math.unit(9, "feet"),
  40428. weight: math.unit(467, "lb"),
  40429. name: "Front (Dressed)",
  40430. image: {
  40431. source: "./media/characters/necahual/front-dressed.svg",
  40432. extra: 920/873,
  40433. bottom: 26/946
  40434. }
  40435. },
  40436. },
  40437. [
  40438. {
  40439. name: "Comprsesed",
  40440. height: math.unit(9, "feet")
  40441. },
  40442. {
  40443. name: "Natural",
  40444. height: math.unit(15, "feet"),
  40445. default: true
  40446. },
  40447. {
  40448. name: "Boosted",
  40449. height: math.unit(50, "feet")
  40450. },
  40451. {
  40452. name: "Boosted+",
  40453. height: math.unit(150, "feet")
  40454. },
  40455. {
  40456. name: "Max",
  40457. height: math.unit(500, "feet")
  40458. },
  40459. ]
  40460. ))
  40461. characterMakers.push(() => makeCharacter(
  40462. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40463. {
  40464. front: {
  40465. height: math.unit(22 + 1/12, "feet"),
  40466. weight: math.unit(3200, "lb"),
  40467. name: "Front",
  40468. image: {
  40469. source: "./media/characters/theo-acacia/front.svg",
  40470. extra: 1796/1741,
  40471. bottom: 83/1879
  40472. }
  40473. },
  40474. frontUnderwear: {
  40475. height: math.unit(22 + 1/12, "feet"),
  40476. weight: math.unit(3200, "lb"),
  40477. name: "Front (Underwear)",
  40478. image: {
  40479. source: "./media/characters/theo-acacia/front-underwear.svg",
  40480. extra: 1796/1741,
  40481. bottom: 83/1879
  40482. }
  40483. },
  40484. frontNude: {
  40485. height: math.unit(22 + 1/12, "feet"),
  40486. weight: math.unit(3200, "lb"),
  40487. name: "Front (Nude)",
  40488. image: {
  40489. source: "./media/characters/theo-acacia/front-nude.svg",
  40490. extra: 1796/1741,
  40491. bottom: 83/1879
  40492. }
  40493. },
  40494. },
  40495. [
  40496. {
  40497. name: "Normal",
  40498. height: math.unit(22 + 1/12, "feet"),
  40499. default: true
  40500. },
  40501. ]
  40502. ))
  40503. characterMakers.push(() => makeCharacter(
  40504. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40505. {
  40506. front: {
  40507. height: math.unit(20, "feet"),
  40508. name: "Front",
  40509. image: {
  40510. source: "./media/characters/astra/front.svg",
  40511. extra: 1850/1714,
  40512. bottom: 106/1956
  40513. }
  40514. },
  40515. frontUndressed: {
  40516. height: math.unit(20, "feet"),
  40517. name: "Front (Undressed)",
  40518. image: {
  40519. source: "./media/characters/astra/front-undressed.svg",
  40520. extra: 1926/1749,
  40521. bottom: 0/1926
  40522. }
  40523. },
  40524. hand: {
  40525. height: math.unit(1.53, "feet"),
  40526. name: "Hand",
  40527. image: {
  40528. source: "./media/characters/astra/hand.svg"
  40529. }
  40530. },
  40531. paw: {
  40532. height: math.unit(1.53, "feet"),
  40533. name: "Paw",
  40534. image: {
  40535. source: "./media/characters/astra/paw.svg"
  40536. }
  40537. },
  40538. },
  40539. [
  40540. {
  40541. name: "Smallest",
  40542. height: math.unit(20, "feet")
  40543. },
  40544. {
  40545. name: "Normal",
  40546. height: math.unit(1e9, "miles"),
  40547. default: true
  40548. },
  40549. {
  40550. name: "Larger",
  40551. height: math.unit(5, "multiverses")
  40552. },
  40553. {
  40554. name: "Largest",
  40555. height: math.unit(1e9, "multiverses")
  40556. },
  40557. ]
  40558. ))
  40559. characterMakers.push(() => makeCharacter(
  40560. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40561. {
  40562. front: {
  40563. height: math.unit(8, "feet"),
  40564. name: "Front",
  40565. image: {
  40566. source: "./media/characters/breanna/front.svg",
  40567. extra: 1912/1632,
  40568. bottom: 33/1945
  40569. }
  40570. },
  40571. },
  40572. [
  40573. {
  40574. name: "Smallest",
  40575. height: math.unit(8, "feet")
  40576. },
  40577. {
  40578. name: "Normal",
  40579. height: math.unit(1, "mile"),
  40580. default: true
  40581. },
  40582. {
  40583. name: "Maximum",
  40584. height: math.unit(1500000000000, "lightyears")
  40585. },
  40586. ]
  40587. ))
  40588. characterMakers.push(() => makeCharacter(
  40589. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40590. {
  40591. front: {
  40592. height: math.unit(5 + 11/12, "feet"),
  40593. weight: math.unit(155, "lb"),
  40594. name: "Front",
  40595. image: {
  40596. source: "./media/characters/cai/front.svg",
  40597. extra: 1823/1702,
  40598. bottom: 32/1855
  40599. }
  40600. },
  40601. back: {
  40602. height: math.unit(5 + 11/12, "feet"),
  40603. weight: math.unit(155, "lb"),
  40604. name: "Back",
  40605. image: {
  40606. source: "./media/characters/cai/back.svg",
  40607. extra: 1809/1708,
  40608. bottom: 31/1840
  40609. }
  40610. },
  40611. },
  40612. [
  40613. {
  40614. name: "Normal",
  40615. height: math.unit(5 + 11/12, "feet"),
  40616. default: true
  40617. },
  40618. {
  40619. name: "Big",
  40620. height: math.unit(15, "feet")
  40621. },
  40622. {
  40623. name: "Macro",
  40624. height: math.unit(200, "feet")
  40625. },
  40626. ]
  40627. ))
  40628. characterMakers.push(() => makeCharacter(
  40629. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40630. {
  40631. front: {
  40632. height: math.unit(5 + 6/12, "feet"),
  40633. weight: math.unit(160, "lb"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40637. extra: 1227/1174,
  40638. bottom: 37/1264
  40639. }
  40640. },
  40641. },
  40642. [
  40643. {
  40644. name: "Macro",
  40645. height: math.unit(444, "meters"),
  40646. default: true
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40652. {
  40653. front: {
  40654. height: math.unit(18 + 7/12, "feet"),
  40655. name: "Front",
  40656. image: {
  40657. source: "./media/characters/rex/front.svg",
  40658. extra: 1941/1807,
  40659. bottom: 66/2007
  40660. }
  40661. },
  40662. back: {
  40663. height: math.unit(18 + 7/12, "feet"),
  40664. name: "Back",
  40665. image: {
  40666. source: "./media/characters/rex/back.svg",
  40667. extra: 1937/1822,
  40668. bottom: 42/1979
  40669. }
  40670. },
  40671. boot: {
  40672. height: math.unit(3.45, "feet"),
  40673. name: "Boot",
  40674. image: {
  40675. source: "./media/characters/rex/boot.svg"
  40676. }
  40677. },
  40678. paw: {
  40679. height: math.unit(4.17, "feet"),
  40680. name: "Paw",
  40681. image: {
  40682. source: "./media/characters/rex/paw.svg"
  40683. }
  40684. },
  40685. head: {
  40686. height: math.unit(6.728, "feet"),
  40687. name: "Head",
  40688. image: {
  40689. source: "./media/characters/rex/head.svg"
  40690. }
  40691. },
  40692. },
  40693. [
  40694. {
  40695. name: "Nano",
  40696. height: math.unit(18 + 7/12, "feet")
  40697. },
  40698. {
  40699. name: "Micro",
  40700. height: math.unit(1.5, "megameters")
  40701. },
  40702. {
  40703. name: "Normal",
  40704. height: math.unit(440, "megameters"),
  40705. default: true
  40706. },
  40707. {
  40708. name: "Macro",
  40709. height: math.unit(2.5, "gigameters")
  40710. },
  40711. {
  40712. name: "Gigamacro",
  40713. height: math.unit(2, "galaxies")
  40714. },
  40715. ]
  40716. ))
  40717. characterMakers.push(() => makeCharacter(
  40718. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40719. {
  40720. side: {
  40721. height: math.unit(32, "feet"),
  40722. weight: math.unit(250000, "lb"),
  40723. name: "Side",
  40724. image: {
  40725. source: "./media/characters/silverwing/side.svg",
  40726. extra: 1100/1019,
  40727. bottom: 204/1304
  40728. }
  40729. },
  40730. },
  40731. [
  40732. {
  40733. name: "Normal",
  40734. height: math.unit(32, "feet"),
  40735. default: true
  40736. },
  40737. ]
  40738. ))
  40739. characterMakers.push(() => makeCharacter(
  40740. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40741. {
  40742. front: {
  40743. height: math.unit(6 + 6/12, "feet"),
  40744. weight: math.unit(350, "lb"),
  40745. name: "Front",
  40746. image: {
  40747. source: "./media/characters/tristan-hawthorne/front.svg",
  40748. extra: 1159/1124,
  40749. bottom: 37/1196
  40750. }
  40751. },
  40752. },
  40753. [
  40754. {
  40755. name: "Normal",
  40756. height: math.unit(6 + 6/12, "feet"),
  40757. default: true
  40758. },
  40759. ]
  40760. ))
  40761. characterMakers.push(() => makeCharacter(
  40762. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40763. {
  40764. front: {
  40765. height: math.unit(5 + 11/12, "feet"),
  40766. weight: math.unit(190, "lb"),
  40767. name: "Front",
  40768. image: {
  40769. source: "./media/characters/mizu/front.svg",
  40770. extra: 1988/1788,
  40771. bottom: 14/2002
  40772. }
  40773. },
  40774. },
  40775. [
  40776. {
  40777. name: "Normal",
  40778. height: math.unit(5 + 11/12, "feet"),
  40779. default: true
  40780. },
  40781. ]
  40782. ))
  40783. characterMakers.push(() => makeCharacter(
  40784. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40785. {
  40786. front: {
  40787. height: math.unit(6, "feet"),
  40788. name: "Front",
  40789. image: {
  40790. source: "./media/characters/moonlight-rose-terra/front.svg",
  40791. extra: 1434/1252,
  40792. bottom: 48/1482
  40793. }
  40794. },
  40795. },
  40796. [
  40797. {
  40798. name: "TRAPPIST-1D",
  40799. height: math.unit(4992*2, "km")
  40800. },
  40801. {
  40802. name: "Earth",
  40803. height: math.unit(6367*2, "km"),
  40804. default: true
  40805. },
  40806. {
  40807. name: "Kepler-22b",
  40808. height: math.unit(15282*2, "km")
  40809. },
  40810. ]
  40811. ))
  40812. characterMakers.push(() => makeCharacter(
  40813. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40814. {
  40815. front: {
  40816. height: math.unit(6, "feet"),
  40817. name: "Front",
  40818. image: {
  40819. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40820. extra: 1851/1712,
  40821. bottom: 0/1851
  40822. }
  40823. },
  40824. },
  40825. [
  40826. {
  40827. name: "Enceladus",
  40828. height: math.unit(513*2, "km")
  40829. },
  40830. {
  40831. name: "Europe",
  40832. height: math.unit(1560*2, "km")
  40833. },
  40834. {
  40835. name: "Neptune",
  40836. height: math.unit(24622*2, "km"),
  40837. default: true
  40838. },
  40839. {
  40840. name: "CoRoT-9b",
  40841. height: math.unit(75067*2, "km")
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40847. {
  40848. front: {
  40849. height: math.unit(6, "feet"),
  40850. name: "Front",
  40851. image: {
  40852. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40853. extra: 1367/1286,
  40854. bottom: 55/1422
  40855. }
  40856. },
  40857. },
  40858. [
  40859. {
  40860. name: "Saturn",
  40861. height: math.unit(58232*2, "km")
  40862. },
  40863. {
  40864. name: "Jupiter",
  40865. height: math.unit(69911*2, "km"),
  40866. default: true
  40867. },
  40868. {
  40869. name: "HD 100546 b",
  40870. height: math.unit(482938, "km")
  40871. },
  40872. ]
  40873. ))
  40874. characterMakers.push(() => makeCharacter(
  40875. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40876. {
  40877. front: {
  40878. height: math.unit(1.7, "feet"),
  40879. weight: math.unit(50, "lb"),
  40880. name: "Front",
  40881. image: {
  40882. source: "./media/characters/dechroma/front.svg",
  40883. extra: 1095/859,
  40884. bottom: 64/1159
  40885. }
  40886. },
  40887. },
  40888. [
  40889. {
  40890. name: "Normal",
  40891. height: math.unit(1.7, "feet"),
  40892. default: true
  40893. },
  40894. ]
  40895. ))
  40896. characterMakers.push(() => makeCharacter(
  40897. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40898. {
  40899. side: {
  40900. height: math.unit(30, "feet"),
  40901. name: "Side",
  40902. image: {
  40903. source: "./media/characters/veluren-thanazel/side.svg",
  40904. extra: 1611/633,
  40905. bottom: 118/1729
  40906. }
  40907. },
  40908. front: {
  40909. height: math.unit(30, "feet"),
  40910. name: "Front",
  40911. image: {
  40912. source: "./media/characters/veluren-thanazel/front.svg",
  40913. extra: 1486/636,
  40914. bottom: 238/1724
  40915. }
  40916. },
  40917. head: {
  40918. height: math.unit(21.4, "feet"),
  40919. name: "Head",
  40920. image: {
  40921. source: "./media/characters/veluren-thanazel/head.svg"
  40922. }
  40923. },
  40924. genitals: {
  40925. height: math.unit(19.4, "feet"),
  40926. name: "Genitals",
  40927. image: {
  40928. source: "./media/characters/veluren-thanazel/genitals.svg"
  40929. }
  40930. },
  40931. },
  40932. [
  40933. {
  40934. name: "Social",
  40935. height: math.unit(6, "feet")
  40936. },
  40937. {
  40938. name: "Play",
  40939. height: math.unit(12, "feet")
  40940. },
  40941. {
  40942. name: "True",
  40943. height: math.unit(30, "feet"),
  40944. default: true
  40945. },
  40946. ]
  40947. ))
  40948. characterMakers.push(() => makeCharacter(
  40949. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40950. {
  40951. front: {
  40952. height: math.unit(7 + 6/12, "feet"),
  40953. weight: math.unit(500, "kg"),
  40954. name: "Front",
  40955. image: {
  40956. source: "./media/characters/arcturas/front.svg",
  40957. extra: 1700/1500,
  40958. bottom: 145/1845
  40959. }
  40960. },
  40961. },
  40962. [
  40963. {
  40964. name: "Normal",
  40965. height: math.unit(7 + 6/12, "feet"),
  40966. default: true
  40967. },
  40968. ]
  40969. ))
  40970. characterMakers.push(() => makeCharacter(
  40971. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40972. {
  40973. side: {
  40974. height: math.unit(6, "feet"),
  40975. weight: math.unit(2, "tons"),
  40976. name: "Side",
  40977. image: {
  40978. source: "./media/characters/vitaen/side.svg",
  40979. extra: 1157/617,
  40980. bottom: 122/1279
  40981. }
  40982. },
  40983. },
  40984. [
  40985. {
  40986. name: "Normal",
  40987. height: math.unit(6, "feet"),
  40988. default: true
  40989. },
  40990. ]
  40991. ))
  40992. characterMakers.push(() => makeCharacter(
  40993. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40994. {
  40995. front: {
  40996. height: math.unit(19, "feet"),
  40997. name: "Front",
  40998. image: {
  40999. source: "./media/characters/fia-dreamweaver/front.svg",
  41000. extra: 1630/1504,
  41001. bottom: 25/1655
  41002. }
  41003. },
  41004. },
  41005. [
  41006. {
  41007. name: "Normal",
  41008. height: math.unit(19, "feet"),
  41009. default: true
  41010. },
  41011. ]
  41012. ))
  41013. characterMakers.push(() => makeCharacter(
  41014. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41015. {
  41016. front: {
  41017. height: math.unit(5 + 4/12, "feet"),
  41018. name: "Front",
  41019. image: {
  41020. source: "./media/characters/artan/front.svg",
  41021. extra: 1618/1535,
  41022. bottom: 46/1664
  41023. }
  41024. },
  41025. back: {
  41026. height: math.unit(5 + 4/12, "feet"),
  41027. name: "Back",
  41028. image: {
  41029. source: "./media/characters/artan/back.svg",
  41030. extra: 1618/1543,
  41031. bottom: 31/1649
  41032. }
  41033. },
  41034. },
  41035. [
  41036. {
  41037. name: "Normal",
  41038. height: math.unit(5 + 4/12, "feet"),
  41039. default: true
  41040. },
  41041. ]
  41042. ))
  41043. characterMakers.push(() => makeCharacter(
  41044. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41045. {
  41046. side: {
  41047. height: math.unit(182, "cm"),
  41048. weight: math.unit(1000, "lb"),
  41049. name: "Side",
  41050. image: {
  41051. source: "./media/characters/silver-dragon/side.svg",
  41052. extra: 710/287,
  41053. bottom: 88/798
  41054. }
  41055. },
  41056. },
  41057. [
  41058. {
  41059. name: "Normal",
  41060. height: math.unit(182, "cm"),
  41061. default: true
  41062. },
  41063. ]
  41064. ))
  41065. characterMakers.push(() => makeCharacter(
  41066. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41067. {
  41068. side: {
  41069. height: math.unit(6 + 6/12, "feet"),
  41070. weight: math.unit(1.5, "tons"),
  41071. name: "Side",
  41072. image: {
  41073. source: "./media/characters/zephyr/side.svg",
  41074. extra: 1433/586,
  41075. bottom: 109/1542
  41076. }
  41077. },
  41078. },
  41079. [
  41080. {
  41081. name: "Normal",
  41082. height: math.unit(6 + 6/12, "feet"),
  41083. default: true
  41084. },
  41085. ]
  41086. ))
  41087. characterMakers.push(() => makeCharacter(
  41088. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41089. {
  41090. side: {
  41091. height: math.unit(1, "feet"),
  41092. name: "Side",
  41093. image: {
  41094. source: "./media/characters/vixye/side.svg",
  41095. extra: 632/541,
  41096. bottom: 0/632
  41097. }
  41098. },
  41099. },
  41100. [
  41101. {
  41102. name: "Normal",
  41103. height: math.unit(1, "feet"),
  41104. default: true
  41105. },
  41106. {
  41107. name: "True",
  41108. height: math.unit(1e15, "multiverses")
  41109. },
  41110. ]
  41111. ))
  41112. characterMakers.push(() => makeCharacter(
  41113. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41114. {
  41115. front: {
  41116. height: math.unit(8 + 2/12, "feet"),
  41117. weight: math.unit(650, "lb"),
  41118. name: "Front",
  41119. image: {
  41120. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41121. extra: 1174/1137,
  41122. bottom: 82/1256
  41123. }
  41124. },
  41125. back: {
  41126. height: math.unit(8 + 2/12, "feet"),
  41127. weight: math.unit(650, "lb"),
  41128. name: "Back",
  41129. image: {
  41130. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41131. extra: 1204/1157,
  41132. bottom: 46/1250
  41133. }
  41134. },
  41135. },
  41136. [
  41137. {
  41138. name: "Wildform",
  41139. height: math.unit(8 + 2/12, "feet"),
  41140. default: true
  41141. },
  41142. ]
  41143. ))
  41144. characterMakers.push(() => makeCharacter(
  41145. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41146. {
  41147. front: {
  41148. height: math.unit(18, "feet"),
  41149. name: "Front",
  41150. image: {
  41151. source: "./media/characters/cyphin/front.svg",
  41152. extra: 970/886,
  41153. bottom: 42/1012
  41154. }
  41155. },
  41156. back: {
  41157. height: math.unit(18, "feet"),
  41158. name: "Back",
  41159. image: {
  41160. source: "./media/characters/cyphin/back.svg",
  41161. extra: 1009/894,
  41162. bottom: 24/1033
  41163. }
  41164. },
  41165. head: {
  41166. height: math.unit(5.05, "feet"),
  41167. name: "Head",
  41168. image: {
  41169. source: "./media/characters/cyphin/head.svg"
  41170. }
  41171. },
  41172. tailbud: {
  41173. height: math.unit(5, "feet"),
  41174. name: "Tailbud",
  41175. image: {
  41176. source: "./media/characters/cyphin/tailbud.svg"
  41177. }
  41178. },
  41179. },
  41180. [
  41181. ]
  41182. ))
  41183. characterMakers.push(() => makeCharacter(
  41184. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41185. {
  41186. side: {
  41187. height: math.unit(10, "feet"),
  41188. weight: math.unit(6, "tons"),
  41189. name: "Side",
  41190. image: {
  41191. source: "./media/characters/raijin/side.svg",
  41192. extra: 1529/613,
  41193. bottom: 337/1866
  41194. }
  41195. },
  41196. },
  41197. [
  41198. {
  41199. name: "Normal",
  41200. height: math.unit(10, "feet"),
  41201. default: true
  41202. },
  41203. ]
  41204. ))
  41205. characterMakers.push(() => makeCharacter(
  41206. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41207. {
  41208. side: {
  41209. height: math.unit(9, "feet"),
  41210. name: "Side",
  41211. image: {
  41212. source: "./media/characters/nilghais/side.svg",
  41213. extra: 1047/744,
  41214. bottom: 91/1138
  41215. }
  41216. },
  41217. head: {
  41218. height: math.unit(3.14, "feet"),
  41219. name: "Head",
  41220. image: {
  41221. source: "./media/characters/nilghais/head.svg"
  41222. }
  41223. },
  41224. mouth: {
  41225. height: math.unit(4.6, "feet"),
  41226. name: "Mouth",
  41227. image: {
  41228. source: "./media/characters/nilghais/mouth.svg"
  41229. }
  41230. },
  41231. wings: {
  41232. height: math.unit(24, "feet"),
  41233. name: "Wings",
  41234. image: {
  41235. source: "./media/characters/nilghais/wings.svg"
  41236. }
  41237. },
  41238. ass: {
  41239. height: math.unit(6.12, "feet"),
  41240. name: "Ass",
  41241. image: {
  41242. source: "./media/characters/nilghais/ass.svg"
  41243. }
  41244. },
  41245. },
  41246. [
  41247. {
  41248. name: "Normal",
  41249. height: math.unit(9, "feet"),
  41250. default: true
  41251. },
  41252. ]
  41253. ))
  41254. characterMakers.push(() => makeCharacter(
  41255. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41256. {
  41257. regular: {
  41258. height: math.unit(16 + 2/12, "feet"),
  41259. weight: math.unit(2300, "lb"),
  41260. name: "Regular",
  41261. image: {
  41262. source: "./media/characters/zolgar/regular.svg",
  41263. extra: 1246/1004,
  41264. bottom: 124/1370
  41265. }
  41266. },
  41267. boxers: {
  41268. height: math.unit(16 + 2/12, "feet"),
  41269. weight: math.unit(2300, "lb"),
  41270. name: "Boxers",
  41271. image: {
  41272. source: "./media/characters/zolgar/boxers.svg",
  41273. extra: 1246/1004,
  41274. bottom: 124/1370
  41275. }
  41276. },
  41277. armored: {
  41278. height: math.unit(16 + 2/12, "feet"),
  41279. weight: math.unit(2300, "lb"),
  41280. name: "Armored",
  41281. image: {
  41282. source: "./media/characters/zolgar/armored.svg",
  41283. extra: 1246/1004,
  41284. bottom: 124/1370
  41285. }
  41286. },
  41287. goth: {
  41288. height: math.unit(16 + 2/12, "feet"),
  41289. weight: math.unit(2300, "lb"),
  41290. name: "Goth",
  41291. image: {
  41292. source: "./media/characters/zolgar/goth.svg",
  41293. extra: 1246/1004,
  41294. bottom: 124/1370
  41295. }
  41296. },
  41297. },
  41298. [
  41299. {
  41300. name: "Shrunken Down",
  41301. height: math.unit(9 + 2/12, "feet")
  41302. },
  41303. {
  41304. name: "Normal",
  41305. height: math.unit(16 + 2/12, "feet"),
  41306. default: true
  41307. },
  41308. ]
  41309. ))
  41310. characterMakers.push(() => makeCharacter(
  41311. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41312. {
  41313. front: {
  41314. height: math.unit(6, "feet"),
  41315. weight: math.unit(168, "lb"),
  41316. name: "Front",
  41317. image: {
  41318. source: "./media/characters/luca/front.svg",
  41319. extra: 841/667,
  41320. bottom: 102/943
  41321. }
  41322. },
  41323. },
  41324. [
  41325. {
  41326. name: "Normal",
  41327. height: math.unit(6, "feet"),
  41328. default: true
  41329. },
  41330. ]
  41331. ))
  41332. characterMakers.push(() => makeCharacter(
  41333. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41334. {
  41335. side: {
  41336. height: math.unit(7 + 3/12, "feet"),
  41337. weight: math.unit(312, "lb"),
  41338. name: "Side",
  41339. image: {
  41340. source: "./media/characters/zezo/side.svg",
  41341. extra: 1192/1067,
  41342. bottom: 63/1255
  41343. }
  41344. },
  41345. },
  41346. [
  41347. {
  41348. name: "Normal",
  41349. height: math.unit(7 + 3/12, "feet"),
  41350. default: true
  41351. },
  41352. ]
  41353. ))
  41354. characterMakers.push(() => makeCharacter(
  41355. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41356. {
  41357. front: {
  41358. height: math.unit(5 + 5/12, "feet"),
  41359. weight: math.unit(170, "lb"),
  41360. name: "Front",
  41361. image: {
  41362. source: "./media/characters/mayso/front.svg",
  41363. extra: 1215/1108,
  41364. bottom: 16/1231
  41365. }
  41366. },
  41367. },
  41368. [
  41369. {
  41370. name: "Normal",
  41371. height: math.unit(5 + 5/12, "feet"),
  41372. default: true
  41373. },
  41374. ]
  41375. ))
  41376. characterMakers.push(() => makeCharacter(
  41377. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41378. {
  41379. front: {
  41380. height: math.unit(4 + 3/12, "feet"),
  41381. weight: math.unit(80, "lb"),
  41382. name: "Front",
  41383. image: {
  41384. source: "./media/characters/hess/front.svg",
  41385. extra: 1200/1123,
  41386. bottom: 16/1216
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Normal",
  41393. height: math.unit(4 + 3/12, "feet"),
  41394. default: true
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41400. {
  41401. front: {
  41402. height: math.unit(1.9, "meters"),
  41403. name: "Front",
  41404. image: {
  41405. source: "./media/characters/ashgar/front.svg",
  41406. extra: 1177/1146,
  41407. bottom: 99/1276
  41408. }
  41409. },
  41410. back: {
  41411. height: math.unit(1.9, "meters"),
  41412. name: "Back",
  41413. image: {
  41414. source: "./media/characters/ashgar/back.svg",
  41415. extra: 1201/1183,
  41416. bottom: 53/1254
  41417. }
  41418. },
  41419. feral: {
  41420. height: math.unit(1.4, "meters"),
  41421. name: "Feral",
  41422. image: {
  41423. source: "./media/characters/ashgar/feral.svg",
  41424. extra: 370/345,
  41425. bottom: 45/415
  41426. }
  41427. },
  41428. },
  41429. [
  41430. {
  41431. name: "Normal",
  41432. height: math.unit(1.9, "meters"),
  41433. default: true
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41439. {
  41440. regular: {
  41441. height: math.unit(6, "feet"),
  41442. weight: math.unit(220, "lb"),
  41443. name: "Regular",
  41444. image: {
  41445. source: "./media/characters/phillip/regular.svg",
  41446. extra: 1373/1277,
  41447. bottom: 75/1448
  41448. }
  41449. },
  41450. dressed: {
  41451. height: math.unit(6, "feet"),
  41452. weight: math.unit(220, "lb"),
  41453. name: "Dressed",
  41454. image: {
  41455. source: "./media/characters/phillip/dressed.svg",
  41456. extra: 1373/1277,
  41457. bottom: 75/1448
  41458. }
  41459. },
  41460. paw: {
  41461. height: math.unit(1.44, "feet"),
  41462. name: "Paw",
  41463. image: {
  41464. source: "./media/characters/phillip/paw.svg"
  41465. }
  41466. },
  41467. },
  41468. [
  41469. {
  41470. name: "Normal",
  41471. height: math.unit(6, "feet"),
  41472. default: true
  41473. },
  41474. ]
  41475. ))
  41476. characterMakers.push(() => makeCharacter(
  41477. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41478. {
  41479. side: {
  41480. height: math.unit(42, "feet"),
  41481. name: "Side",
  41482. image: {
  41483. source: "./media/characters/uvula/side.svg",
  41484. extra: 683/586,
  41485. bottom: 60/743
  41486. }
  41487. },
  41488. front: {
  41489. height: math.unit(42, "feet"),
  41490. name: "Front",
  41491. image: {
  41492. source: "./media/characters/uvula/front.svg",
  41493. extra: 705/613,
  41494. bottom: 54/759
  41495. }
  41496. },
  41497. maw: {
  41498. height: math.unit(23.5, "feet"),
  41499. name: "Maw",
  41500. image: {
  41501. source: "./media/characters/uvula/maw.svg"
  41502. }
  41503. },
  41504. },
  41505. [
  41506. {
  41507. name: "Original Size",
  41508. height: math.unit(14, "inches")
  41509. },
  41510. {
  41511. name: "Human Size",
  41512. height: math.unit(6, "feet")
  41513. },
  41514. {
  41515. name: "Big",
  41516. height: math.unit(42, "feet"),
  41517. default: true
  41518. },
  41519. {
  41520. name: "Bigger",
  41521. height: math.unit(100, "feet")
  41522. },
  41523. ]
  41524. ))
  41525. characterMakers.push(() => makeCharacter(
  41526. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41527. {
  41528. front: {
  41529. height: math.unit(5 + 11/12, "feet"),
  41530. name: "Front",
  41531. image: {
  41532. source: "./media/characters/lannah/front.svg",
  41533. extra: 1208/1113,
  41534. bottom: 97/1305
  41535. }
  41536. },
  41537. },
  41538. [
  41539. {
  41540. name: "Normal",
  41541. height: math.unit(5 + 11/12, "feet"),
  41542. default: true
  41543. },
  41544. ]
  41545. ))
  41546. characterMakers.push(() => makeCharacter(
  41547. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41548. {
  41549. front: {
  41550. height: math.unit(6 + 3/12, "feet"),
  41551. weight: math.unit(3.5, "tons"),
  41552. name: "Front",
  41553. image: {
  41554. source: "./media/characters/emberflame/front.svg",
  41555. extra: 1198/672,
  41556. bottom: 82/1280
  41557. }
  41558. },
  41559. side: {
  41560. height: math.unit(6 + 3/12, "feet"),
  41561. weight: math.unit(3.5, "tons"),
  41562. name: "Side",
  41563. image: {
  41564. source: "./media/characters/emberflame/side.svg",
  41565. extra: 938/527,
  41566. bottom: 56/994
  41567. }
  41568. },
  41569. },
  41570. [
  41571. {
  41572. name: "Normal",
  41573. height: math.unit(6 + 3/12, "feet"),
  41574. default: true
  41575. },
  41576. ]
  41577. ))
  41578. characterMakers.push(() => makeCharacter(
  41579. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41580. {
  41581. side: {
  41582. height: math.unit(17.5, "feet"),
  41583. weight: math.unit(35, "tons"),
  41584. name: "Side",
  41585. image: {
  41586. source: "./media/characters/sophie-ambrose/side.svg",
  41587. extra: 1573/1242,
  41588. bottom: 71/1644
  41589. }
  41590. },
  41591. maw: {
  41592. height: math.unit(7.4, "feet"),
  41593. name: "Maw",
  41594. image: {
  41595. source: "./media/characters/sophie-ambrose/maw.svg"
  41596. }
  41597. },
  41598. },
  41599. [
  41600. {
  41601. name: "Normal",
  41602. height: math.unit(17.5, "feet"),
  41603. default: true
  41604. },
  41605. ]
  41606. ))
  41607. characterMakers.push(() => makeCharacter(
  41608. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41609. {
  41610. front: {
  41611. height: math.unit(280, "feet"),
  41612. weight: math.unit(550, "tons"),
  41613. name: "Front",
  41614. image: {
  41615. source: "./media/characters/king-mugi/front.svg",
  41616. extra: 1102/947,
  41617. bottom: 104/1206
  41618. }
  41619. },
  41620. },
  41621. [
  41622. {
  41623. name: "King Mugi",
  41624. height: math.unit(280, "feet"),
  41625. default: true
  41626. },
  41627. ]
  41628. ))
  41629. characterMakers.push(() => makeCharacter(
  41630. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41631. {
  41632. front: {
  41633. height: math.unit(64, "meters"),
  41634. name: "Front",
  41635. image: {
  41636. source: "./media/characters/nova-fox/front.svg",
  41637. extra: 1310/1246,
  41638. bottom: 65/1375
  41639. }
  41640. },
  41641. },
  41642. [
  41643. {
  41644. name: "Macro",
  41645. height: math.unit(64, "meters"),
  41646. default: true
  41647. },
  41648. ]
  41649. ))
  41650. characterMakers.push(() => makeCharacter(
  41651. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41652. {
  41653. front: {
  41654. height: math.unit(6 + 3/12, "feet"),
  41655. weight: math.unit(170, "lb"),
  41656. name: "Front",
  41657. image: {
  41658. source: "./media/characters/sam-bat/front.svg",
  41659. extra: 1601/1411,
  41660. bottom: 125/1726
  41661. }
  41662. },
  41663. back: {
  41664. height: math.unit(6 + 3/12, "feet"),
  41665. weight: math.unit(170, "lb"),
  41666. name: "Back",
  41667. image: {
  41668. source: "./media/characters/sam-bat/back.svg",
  41669. extra: 1577/1405,
  41670. bottom: 58/1635
  41671. }
  41672. },
  41673. },
  41674. [
  41675. {
  41676. name: "Normal",
  41677. height: math.unit(6 + 3/12, "feet"),
  41678. default: true
  41679. },
  41680. ]
  41681. ))
  41682. characterMakers.push(() => makeCharacter(
  41683. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41684. {
  41685. front: {
  41686. height: math.unit(59, "feet"),
  41687. weight: math.unit(40000, "lb"),
  41688. name: "Front",
  41689. image: {
  41690. source: "./media/characters/inari/front.svg",
  41691. extra: 1884/1350,
  41692. bottom: 95/1979
  41693. }
  41694. },
  41695. },
  41696. [
  41697. {
  41698. name: "Gigantamax",
  41699. height: math.unit(59, "feet"),
  41700. default: true
  41701. },
  41702. ]
  41703. ))
  41704. characterMakers.push(() => makeCharacter(
  41705. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41706. {
  41707. front: {
  41708. height: math.unit(5 + 8/12, "feet"),
  41709. name: "Front",
  41710. image: {
  41711. source: "./media/characters/elizabeth/front.svg",
  41712. extra: 1395/1298,
  41713. bottom: 54/1449
  41714. }
  41715. },
  41716. mouth: {
  41717. height: math.unit(1.97, "feet"),
  41718. name: "Mouth",
  41719. image: {
  41720. source: "./media/characters/elizabeth/mouth.svg"
  41721. }
  41722. },
  41723. foot: {
  41724. height: math.unit(1.17, "feet"),
  41725. name: "Foot",
  41726. image: {
  41727. source: "./media/characters/elizabeth/foot.svg"
  41728. }
  41729. },
  41730. },
  41731. [
  41732. {
  41733. name: "Normal",
  41734. height: math.unit(5 + 8/12, "feet"),
  41735. default: true
  41736. },
  41737. {
  41738. name: "Minimacro",
  41739. height: math.unit(18, "feet")
  41740. },
  41741. {
  41742. name: "Macro",
  41743. height: math.unit(180, "feet")
  41744. },
  41745. ]
  41746. ))
  41747. characterMakers.push(() => makeCharacter(
  41748. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41749. {
  41750. front: {
  41751. height: math.unit(5 + 2/12, "feet"),
  41752. name: "Front",
  41753. image: {
  41754. source: "./media/characters/october-gossamer/front.svg",
  41755. extra: 505/454,
  41756. bottom: 7/512
  41757. }
  41758. },
  41759. back: {
  41760. height: math.unit(5 + 2/12, "feet"),
  41761. name: "Back",
  41762. image: {
  41763. source: "./media/characters/october-gossamer/back.svg",
  41764. extra: 501/454,
  41765. bottom: 11/512
  41766. }
  41767. },
  41768. },
  41769. [
  41770. {
  41771. name: "Normal",
  41772. height: math.unit(5 + 2/12, "feet"),
  41773. default: true
  41774. },
  41775. ]
  41776. ))
  41777. characterMakers.push(() => makeCharacter(
  41778. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41779. {
  41780. front: {
  41781. height: math.unit(5, "feet"),
  41782. name: "Front",
  41783. image: {
  41784. source: "./media/characters/epiglottis/front.svg",
  41785. extra: 923/849,
  41786. bottom: 17/940
  41787. }
  41788. },
  41789. },
  41790. [
  41791. {
  41792. name: "Original Size",
  41793. height: math.unit(10, "inches")
  41794. },
  41795. {
  41796. name: "Human Size",
  41797. height: math.unit(5, "feet"),
  41798. default: true
  41799. },
  41800. {
  41801. name: "Big",
  41802. height: math.unit(25, "feet")
  41803. },
  41804. {
  41805. name: "Bigger",
  41806. height: math.unit(50, "feet")
  41807. },
  41808. {
  41809. name: "oh lawd",
  41810. height: math.unit(75, "feet")
  41811. },
  41812. ]
  41813. ))
  41814. characterMakers.push(() => makeCharacter(
  41815. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41816. {
  41817. front: {
  41818. height: math.unit(2 + 4/12, "feet"),
  41819. weight: math.unit(60, "lb"),
  41820. name: "Front",
  41821. image: {
  41822. source: "./media/characters/lerm/front.svg",
  41823. extra: 796/790,
  41824. bottom: 79/875
  41825. }
  41826. },
  41827. },
  41828. [
  41829. {
  41830. name: "Normal",
  41831. height: math.unit(2 + 4/12, "feet"),
  41832. default: true
  41833. },
  41834. ]
  41835. ))
  41836. characterMakers.push(() => makeCharacter(
  41837. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41838. {
  41839. front: {
  41840. height: math.unit(5.5, "feet"),
  41841. weight: math.unit(130, "lb"),
  41842. name: "Front",
  41843. image: {
  41844. source: "./media/characters/xena-nebadon/front.svg",
  41845. extra: 1828/1730,
  41846. bottom: 79/1907
  41847. }
  41848. },
  41849. },
  41850. [
  41851. {
  41852. name: "Tiny Puppy",
  41853. height: math.unit(3, "inches")
  41854. },
  41855. {
  41856. name: "Normal",
  41857. height: math.unit(5.5, "feet"),
  41858. default: true
  41859. },
  41860. {
  41861. name: "Lotta Lady",
  41862. height: math.unit(12, "feet")
  41863. },
  41864. {
  41865. name: "Pretty Big",
  41866. height: math.unit(100, "feet")
  41867. },
  41868. {
  41869. name: "Big",
  41870. height: math.unit(500, "feet")
  41871. },
  41872. {
  41873. name: "Skyscraper Toys",
  41874. height: math.unit(2500, "feet")
  41875. },
  41876. {
  41877. name: "Plane Catcher",
  41878. height: math.unit(8, "miles")
  41879. },
  41880. {
  41881. name: "Planet Toys",
  41882. height: math.unit(15, "earths")
  41883. },
  41884. {
  41885. name: "Stardust",
  41886. height: math.unit(0.25, "galaxies")
  41887. },
  41888. {
  41889. name: "Snacks",
  41890. height: math.unit(70, "universes")
  41891. },
  41892. ]
  41893. ))
  41894. characterMakers.push(() => makeCharacter(
  41895. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41896. {
  41897. front: {
  41898. height: math.unit(1.6, "meters"),
  41899. weight: math.unit(60, "kg"),
  41900. name: "Front",
  41901. image: {
  41902. source: "./media/characters/bounty/front.svg",
  41903. extra: 1426/1308,
  41904. bottom: 15/1441
  41905. }
  41906. },
  41907. },
  41908. [
  41909. {
  41910. name: "Normal",
  41911. height: math.unit(1.6, "meters"),
  41912. default: true
  41913. },
  41914. {
  41915. name: "Macro",
  41916. height: math.unit(300, "meters")
  41917. },
  41918. ]
  41919. ))
  41920. characterMakers.push(() => makeCharacter(
  41921. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  41922. {
  41923. front: {
  41924. height: math.unit(2 + 8/12, "feet"),
  41925. weight: math.unit(15, "lb"),
  41926. name: "Front",
  41927. image: {
  41928. source: "./media/characters/mochi/front.svg",
  41929. extra: 1022/852,
  41930. bottom: 435/1457
  41931. }
  41932. },
  41933. back: {
  41934. height: math.unit(2 + 8/12, "feet"),
  41935. weight: math.unit(15, "lb"),
  41936. name: "Back",
  41937. image: {
  41938. source: "./media/characters/mochi/back.svg",
  41939. extra: 1335/1119,
  41940. bottom: 39/1374
  41941. }
  41942. },
  41943. bird: {
  41944. height: math.unit(2 + 8/12, "feet"),
  41945. weight: math.unit(15, "lb"),
  41946. name: "Bird",
  41947. image: {
  41948. source: "./media/characters/mochi/bird.svg",
  41949. extra: 1251/1113,
  41950. bottom: 178/1429
  41951. }
  41952. },
  41953. kaiju: {
  41954. height: math.unit(154, "feet"),
  41955. weight: math.unit(1e7, "lb"),
  41956. name: "Kaiju",
  41957. image: {
  41958. source: "./media/characters/mochi/kaiju.svg",
  41959. extra: 460/324,
  41960. bottom: 40/500
  41961. }
  41962. },
  41963. head: {
  41964. height: math.unit(1.21, "feet"),
  41965. name: "Head",
  41966. image: {
  41967. source: "./media/characters/mochi/head.svg"
  41968. }
  41969. },
  41970. alternateTail: {
  41971. height: math.unit(2 + 8/12, "feet"),
  41972. weight: math.unit(45, "lb"),
  41973. name: "Alternate Tail",
  41974. image: {
  41975. source: "./media/characters/mochi/alternate-tail.svg",
  41976. extra: 139/76,
  41977. bottom: 45/184
  41978. }
  41979. },
  41980. },
  41981. [
  41982. {
  41983. name: "Micro",
  41984. height: math.unit(2, "inches")
  41985. },
  41986. {
  41987. name: "Normal",
  41988. height: math.unit(2 + 8/12, "feet"),
  41989. default: true
  41990. },
  41991. {
  41992. name: "Macro",
  41993. height: math.unit(106, "feet")
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  41999. {
  42000. front: {
  42001. height: math.unit(5.67, "feet"),
  42002. weight: math.unit(135, "lb"),
  42003. name: "Front",
  42004. image: {
  42005. source: "./media/characters/sarel/front.svg",
  42006. extra: 865/788,
  42007. bottom: 97/962
  42008. }
  42009. },
  42010. back: {
  42011. height: math.unit(5.67, "feet"),
  42012. weight: math.unit(135, "lb"),
  42013. name: "Back",
  42014. image: {
  42015. source: "./media/characters/sarel/back.svg",
  42016. extra: 857/777,
  42017. bottom: 32/889
  42018. }
  42019. },
  42020. chozoan: {
  42021. height: math.unit(5.67, "feet"),
  42022. weight: math.unit(135, "lb"),
  42023. name: "Chozoan",
  42024. image: {
  42025. source: "./media/characters/sarel/chozoan.svg",
  42026. extra: 865/788,
  42027. bottom: 97/962
  42028. }
  42029. },
  42030. current: {
  42031. height: math.unit(5.67, "feet"),
  42032. weight: math.unit(135, "lb"),
  42033. name: "Current",
  42034. image: {
  42035. source: "./media/characters/sarel/current.svg",
  42036. extra: 865/788,
  42037. bottom: 97/962
  42038. }
  42039. },
  42040. head: {
  42041. height: math.unit(1.77, "feet"),
  42042. name: "Head",
  42043. image: {
  42044. source: "./media/characters/sarel/head.svg"
  42045. }
  42046. },
  42047. claws: {
  42048. height: math.unit(1.8, "feet"),
  42049. name: "Claws",
  42050. image: {
  42051. source: "./media/characters/sarel/claws.svg"
  42052. }
  42053. },
  42054. clawsAlt: {
  42055. height: math.unit(1.8, "feet"),
  42056. name: "Claws-alt",
  42057. image: {
  42058. source: "./media/characters/sarel/claws-alt.svg"
  42059. }
  42060. },
  42061. },
  42062. [
  42063. {
  42064. name: "Normal",
  42065. height: math.unit(5.67, "feet"),
  42066. default: true
  42067. },
  42068. ]
  42069. ))
  42070. characterMakers.push(() => makeCharacter(
  42071. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42072. {
  42073. front: {
  42074. height: math.unit(5500, "feet"),
  42075. name: "Front",
  42076. image: {
  42077. source: "./media/characters/alyonia/front.svg",
  42078. extra: 1200/1135,
  42079. bottom: 29/1229
  42080. }
  42081. },
  42082. back: {
  42083. height: math.unit(5500, "feet"),
  42084. name: "Back",
  42085. image: {
  42086. source: "./media/characters/alyonia/back.svg",
  42087. extra: 1205/1138,
  42088. bottom: 10/1215
  42089. }
  42090. },
  42091. },
  42092. [
  42093. {
  42094. name: "Small",
  42095. height: math.unit(10, "feet")
  42096. },
  42097. {
  42098. name: "Macro",
  42099. height: math.unit(500, "feet")
  42100. },
  42101. {
  42102. name: "Mega Macro",
  42103. height: math.unit(5500, "feet"),
  42104. default: true
  42105. },
  42106. {
  42107. name: "Mega Macro+",
  42108. height: math.unit(500000, "feet")
  42109. },
  42110. {
  42111. name: "Giga Macro",
  42112. height: math.unit(3000, "miles")
  42113. },
  42114. {
  42115. name: "Tera Macro",
  42116. height: math.unit(2.8e6, "miles")
  42117. },
  42118. {
  42119. name: "Galactic",
  42120. height: math.unit(120000, "lightyears")
  42121. },
  42122. ]
  42123. ))
  42124. characterMakers.push(() => makeCharacter(
  42125. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42126. {
  42127. werewolf: {
  42128. height: math.unit(8, "feet"),
  42129. weight: math.unit(425, "lb"),
  42130. name: "Werewolf",
  42131. image: {
  42132. source: "./media/characters/autumn/werewolf.svg",
  42133. extra: 2154/2031,
  42134. bottom: 160/2314
  42135. }
  42136. },
  42137. human: {
  42138. height: math.unit(5 + 8/12, "feet"),
  42139. weight: math.unit(150, "lb"),
  42140. name: "Human",
  42141. image: {
  42142. source: "./media/characters/autumn/human.svg",
  42143. extra: 1200/1149,
  42144. bottom: 30/1230
  42145. }
  42146. },
  42147. },
  42148. [
  42149. {
  42150. name: "Normal",
  42151. height: math.unit(8, "feet"),
  42152. default: true
  42153. },
  42154. ]
  42155. ))
  42156. characterMakers.push(() => makeCharacter(
  42157. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42158. {
  42159. front: {
  42160. height: math.unit(8 + 5/12, "feet"),
  42161. weight: math.unit(825, "lb"),
  42162. name: "Front",
  42163. image: {
  42164. source: "./media/characters/cobalt-charizard/front.svg",
  42165. extra: 1268/1155,
  42166. bottom: 122/1390
  42167. }
  42168. },
  42169. side: {
  42170. height: math.unit(8 + 5/12, "feet"),
  42171. weight: math.unit(825, "lb"),
  42172. name: "Side",
  42173. image: {
  42174. source: "./media/characters/cobalt-charizard/side.svg",
  42175. extra: 1348/1257,
  42176. bottom: 58/1406
  42177. }
  42178. },
  42179. gMax: {
  42180. height: math.unit(134 + 11/12, "feet"),
  42181. name: "G-Max",
  42182. image: {
  42183. source: "./media/characters/cobalt-charizard/g-max.svg",
  42184. extra: 1835/1541,
  42185. bottom: 151/1986
  42186. }
  42187. },
  42188. },
  42189. [
  42190. {
  42191. name: "Normal",
  42192. height: math.unit(8 + 5/12, "feet"),
  42193. default: true
  42194. },
  42195. ]
  42196. ))
  42197. characterMakers.push(() => makeCharacter(
  42198. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42199. {
  42200. front: {
  42201. height: math.unit(6 + 3/12, "feet"),
  42202. weight: math.unit(210, "lb"),
  42203. name: "Front",
  42204. image: {
  42205. source: "./media/characters/stella/front.svg",
  42206. extra: 3549/3335,
  42207. bottom: 51/3600
  42208. }
  42209. },
  42210. },
  42211. [
  42212. {
  42213. name: "Normal",
  42214. height: math.unit(6 + 3/12, "feet"),
  42215. default: true
  42216. },
  42217. ]
  42218. ))
  42219. characterMakers.push(() => makeCharacter(
  42220. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42221. {
  42222. front: {
  42223. height: math.unit(5, "feet"),
  42224. weight: math.unit(90, "lb"),
  42225. name: "Front",
  42226. image: {
  42227. source: "./media/characters/riley-bishop/front.svg",
  42228. extra: 1450/1428,
  42229. bottom: 152/1602
  42230. }
  42231. },
  42232. },
  42233. [
  42234. {
  42235. name: "Normal",
  42236. height: math.unit(5, "feet"),
  42237. default: true
  42238. },
  42239. ]
  42240. ))
  42241. characterMakers.push(() => makeCharacter(
  42242. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42243. {
  42244. side: {
  42245. height: math.unit(8 + 2/12, "feet"),
  42246. weight: math.unit(500, "kg"),
  42247. name: "Side",
  42248. image: {
  42249. source: "./media/characters/theo-arcanine/side.svg",
  42250. extra: 1342/1074,
  42251. bottom: 111/1453
  42252. }
  42253. },
  42254. },
  42255. [
  42256. {
  42257. name: "Normal",
  42258. height: math.unit(8 + 2/12, "feet"),
  42259. default: true
  42260. },
  42261. ]
  42262. ))
  42263. characterMakers.push(() => makeCharacter(
  42264. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42265. {
  42266. front: {
  42267. height: math.unit(4, "feet"),
  42268. name: "Front",
  42269. image: {
  42270. source: "./media/characters/kali/front.svg",
  42271. extra: 1921/1357,
  42272. bottom: 70/1991
  42273. }
  42274. },
  42275. },
  42276. [
  42277. {
  42278. name: "Normal",
  42279. height: math.unit(4, "feet"),
  42280. default: true
  42281. },
  42282. {
  42283. name: "Macro",
  42284. height: math.unit(32, "meters")
  42285. },
  42286. {
  42287. name: "Macro+",
  42288. height: math.unit(150, "meters")
  42289. },
  42290. {
  42291. name: "Megamacro",
  42292. height: math.unit(7500, "meters")
  42293. },
  42294. {
  42295. name: "Megamacro+",
  42296. height: math.unit(80, "kilometers")
  42297. },
  42298. ]
  42299. ))
  42300. //characters
  42301. function makeCharacters() {
  42302. const results = [];
  42303. characterMakers.forEach(character => {
  42304. results.push(character());
  42305. });
  42306. return results;
  42307. }