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.
 
 
 

36923 lines
929 KiB

  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. "mammal"
  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. "mammal"
  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. "canine"
  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. },
  227. "cougar": {
  228. name: "Cougar",
  229. parents: [
  230. "cat"
  231. ]
  232. },
  233. "goat": {
  234. name: "Goat",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "lion": {
  240. name: "Lion",
  241. parents: [
  242. "cat"
  243. ]
  244. },
  245. "harpy-eager": {
  246. name: "Harpy Eagle",
  247. parents: [
  248. "avian"
  249. ]
  250. },
  251. "deer": {
  252. name: "Deer",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "phoenix": {
  258. name: "Phoenix",
  259. parents: [
  260. "avian"
  261. ]
  262. },
  263. "aeromorph": {
  264. name: "Aeromorph",
  265. parents: [
  266. "machine"
  267. ]
  268. },
  269. "machine": {
  270. name: "Machine",
  271. },
  272. "android": {
  273. name: "Android",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "jackal": {
  279. name: "Jackal",
  280. parents: [
  281. "canine"
  282. ]
  283. },
  284. "corvid": {
  285. name: "Corvid",
  286. parents: [
  287. "avian"
  288. ]
  289. },
  290. "pharaoh-hound": {
  291. name: "Pharaoh Hound",
  292. parents: [
  293. "dog"
  294. ]
  295. },
  296. "skunk": {
  297. name: "Skunk",
  298. parents: [
  299. "mammal"
  300. ]
  301. },
  302. "shark": {
  303. name: "Shark",
  304. parents: [
  305. "fish"
  306. ]
  307. },
  308. "black-panther": {
  309. name: "Black Panther",
  310. parents: [
  311. "cat"
  312. ]
  313. },
  314. "umbra": {
  315. name: "Umbra",
  316. parents: [
  317. "animal"
  318. ]
  319. },
  320. "raven": {
  321. name: "Raven",
  322. parents: [
  323. "corvid"
  324. ]
  325. },
  326. "snow-leopard": {
  327. name: "Snow Leopard",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "barbary-lion": {
  333. name: "Barbary Lion",
  334. parents: [
  335. "lion"
  336. ]
  337. },
  338. "dra'gal": {
  339. name: "Dra'Gal",
  340. parents: [
  341. "mammal"
  342. ]
  343. },
  344. "german-shepherd": {
  345. name: "German Shepherd",
  346. parents: [
  347. "dog"
  348. ]
  349. },
  350. "bayleef": {
  351. name: "Bayleef",
  352. parents: [
  353. "pokemon"
  354. ]
  355. },
  356. "mouse": {
  357. name: "Mouse",
  358. parents: [
  359. "rodent"
  360. ]
  361. },
  362. "rat": {
  363. name: "Rat",
  364. parents: [
  365. "mammal"
  366. ]
  367. },
  368. "hoshiko-beast": {
  369. name: "Hoshiko Beast",
  370. parents: ["animal"]
  371. },
  372. "snow-jugani": {
  373. name: "Snow Jugani",
  374. parents: ["cat"]
  375. },
  376. "patamon": {
  377. name: "Patamon",
  378. parents: ["digimon"]
  379. },
  380. "digimon": {
  381. name: "Digimon",
  382. },
  383. "jugani": {
  384. name: "Jugani",
  385. parents: ["cat"]
  386. },
  387. "luxray": {
  388. name: "Luxray",
  389. parents: ["pokemon"]
  390. },
  391. "mech": {
  392. name: "Mech",
  393. parents: ["machine"]
  394. },
  395. "zoid": {
  396. name: "Zoid",
  397. parents: ["mech"]
  398. },
  399. "monster": {
  400. name: "Monster",
  401. parents: ["animal"]
  402. },
  403. "foo-dog": {
  404. name: "Foo Dog",
  405. parents: ["mammal"]
  406. },
  407. "elephant": {
  408. name: "Elephant",
  409. parents: ["mammal"]
  410. },
  411. "eagle": {
  412. name: "Eagle",
  413. parents: ["avian"]
  414. },
  415. "cow": {
  416. name: "Cow",
  417. parents: ["mammal"]
  418. },
  419. "crocodile": {
  420. name: "Crocodile",
  421. parents: ["reptile"]
  422. },
  423. "borzoi": {
  424. name: "Borzoi",
  425. parents: ["dog"]
  426. },
  427. "snake": {
  428. name: "Snake",
  429. parents: ["reptile"]
  430. },
  431. "horned-bush-viper": {
  432. name: "Horned Bush Viper",
  433. parents: ["snake"]
  434. },
  435. "cobra": {
  436. name: "Cobra",
  437. parents: ["snake"]
  438. },
  439. "harpy-eagle": {
  440. name: "Harpy Eagle",
  441. parents: ["eagle"]
  442. },
  443. "raptor": {
  444. name: "Raptor",
  445. parents: ["dinosaur"]
  446. },
  447. "dinosaur": {
  448. name: "Dinosaur",
  449. parents: ["reptile"]
  450. },
  451. "veilhound": {
  452. name: "Veilhound",
  453. parents: ["hellhound", "demon"]
  454. },
  455. "hellhound": {
  456. name: "Hellhound",
  457. parents: ["canine"]
  458. },
  459. "insect": {
  460. name: "Insect",
  461. parents: ["animal"]
  462. },
  463. "beetle": {
  464. name: "Beetle",
  465. parents: ["insect"]
  466. },
  467. "moth": {
  468. name: "Moth",
  469. parents: ["insect"]
  470. },
  471. "eastern-dragon": {
  472. name: "Eastern Dragon",
  473. parents: ["dragon"]
  474. },
  475. "jaguar": {
  476. name: "Jaguar",
  477. parents: ["cat"]
  478. },
  479. "horse": {
  480. name: "Horse",
  481. parents: ["mammal"]
  482. },
  483. "sergal": {
  484. name: "Sergal",
  485. parents: ["mammal"]
  486. },
  487. "gryphon": {
  488. name: "Gryphon",
  489. parents: ["lion", "eagle"]
  490. },
  491. "robot": {
  492. name: "Robot",
  493. parents: ["machine"]
  494. },
  495. "medihound": {
  496. name: "Medihound",
  497. parents: ["robot", "dog"]
  498. },
  499. "sylveon": {
  500. name: "Sylveon",
  501. parents: ["pokemon"]
  502. },
  503. "catgirl": {
  504. name: "Catgirl",
  505. parents: ["mammal"]
  506. },
  507. "cowgirl": {
  508. name: "Cowgirl",
  509. parents: ["mammal"]
  510. },
  511. "pony": {
  512. name: "Pony",
  513. parents: ["horse"]
  514. },
  515. "rabbit": {
  516. name: "Rabbit",
  517. parents: ["mammal"]
  518. },
  519. "fennec-fox": {
  520. name: "Fennec Fox",
  521. parents: ["fox"]
  522. },
  523. "azodian": {
  524. name: "Azodian",
  525. parents: ["mouse"]
  526. },
  527. "shiba-inu": {
  528. name: "Shiba Inu",
  529. parents: ["dog"]
  530. },
  531. "changeling": {
  532. name: "Changeling",
  533. parents: ["insect"]
  534. },
  535. "cheetah": {
  536. name: "Cheetah",
  537. parents: ["cat"]
  538. },
  539. "golden-jackal": {
  540. name: "Golden Jackal",
  541. parents: ["jackal"]
  542. },
  543. "manectric": {
  544. name: "Manectric",
  545. parents: ["pokemon"]
  546. },
  547. "rat": {
  548. name: "Rat",
  549. parents: ["rodent"]
  550. },
  551. "rodent": {
  552. name: "Rodent",
  553. parents: ["mammal"]
  554. },
  555. "octocoon": {
  556. name: "Octocoon",
  557. parents: ["raccoon", "octopus"]
  558. },
  559. "octopus": {
  560. name: "Octopus",
  561. parents: ["fish"]
  562. },
  563. "werewolf": {
  564. name: "Werewolf",
  565. parents: ["wolf"]
  566. },
  567. "meerkat": {
  568. name: "Meerkat",
  569. parents: ["mammal"]
  570. },
  571. "human": {
  572. name: "Human",
  573. parents: ["mammal"]
  574. },
  575. "geth": {
  576. name: "Geth",
  577. parents: ["android"]
  578. },
  579. "husky": {
  580. name: "Husky",
  581. parents: ["dog"]
  582. },
  583. "long-eared-bat": {
  584. name: "Long Eared Bat",
  585. parents: ["bat"]
  586. },
  587. "lizard": {
  588. name: "Lizard",
  589. parents: ["reptile"]
  590. },
  591. "salamander": {
  592. name: "Salamander",
  593. parents: ["lizard"]
  594. },
  595. "chameleon": {
  596. name: "Chameleon",
  597. parents: ["lizard"]
  598. },
  599. "gecko": {
  600. name: "Gecko",
  601. parents: ["lizard"]
  602. },
  603. "kobold": {
  604. name: "Kobold",
  605. parents: ["reptile"]
  606. },
  607. "charizard": {
  608. name: "Charizard",
  609. parents: ["pokemon"]
  610. },
  611. "lugia": {
  612. name: "Lugia",
  613. parents: ["pokemon"]
  614. },
  615. "cerberus": {
  616. name: "Cerberus",
  617. parents: ["dog"]
  618. },
  619. "tyrantrum": {
  620. name: "Tyrantrum",
  621. parents: ["pokemon"]
  622. },
  623. "lemur": {
  624. name: "Lemur",
  625. parents: ["mammal"]
  626. },
  627. "kelpie": {
  628. name: "Kelpie",
  629. parents: ["horse", "monster"]
  630. },
  631. "labrador": {
  632. name: "Labrador",
  633. parents: ["dog"]
  634. },
  635. "sylveon": {
  636. name: "Sylveon",
  637. parents: ["eeveelution"]
  638. },
  639. "eeveelution": {
  640. name: "Eeveelution",
  641. parents: ["pokemon"]
  642. },
  643. "polar-bear": {
  644. name: "Polar Bear",
  645. parents: ["bear"]
  646. },
  647. "bear": {
  648. name: "Bear",
  649. parents: ["mammal"]
  650. },
  651. "absol": {
  652. name: "Absol",
  653. parents: ["pokemon"]
  654. },
  655. "wolver": {
  656. name: "Wolver",
  657. parents: ["mammal"]
  658. },
  659. "rottweiler": {
  660. name: "Rottweiler",
  661. parents: ["dog"]
  662. },
  663. "zebra": {
  664. name: "Zebra",
  665. parents: ["horse"]
  666. },
  667. "yoshi": {
  668. name: "Yoshi",
  669. parents: ["lizard"]
  670. },
  671. "lynx": {
  672. name: "Lynx",
  673. parents: ["cat"]
  674. },
  675. "unknown": {
  676. name: "Unknown",
  677. parents: []
  678. },
  679. "thylacine": {
  680. name: "Thylacine",
  681. parents: ["mammal"]
  682. },
  683. "gabumon": {
  684. name: "Gabumon",
  685. parents: ["digimon"]
  686. },
  687. "border-collie": {
  688. name: "Border Collie",
  689. parents: ["dog"]
  690. },
  691. "imp": {
  692. name: "Imp",
  693. parents: ["demon"]
  694. },
  695. "kangaroo": {
  696. name: "Kangaroo",
  697. parents: ["mammal"]
  698. },
  699. "renamon": {
  700. name: "Renamon",
  701. parents: ["digimon"]
  702. },
  703. "candy-orca-dragon": {
  704. name: "Candy Orca Dragon",
  705. parents: ["fish", "dragon", "candy"]
  706. },
  707. "sabertooth-tiger": {
  708. name: "Sabertooth Tiger",
  709. parents: ["cat"]
  710. },
  711. "espurr": {
  712. name: "Espurr",
  713. parents: ["pokemon"]
  714. },
  715. "otter": {
  716. name: "Otter",
  717. parents: ["mammal"]
  718. },
  719. "elemental": {
  720. name: "Elemental",
  721. parents: ["mammal"]
  722. },
  723. "mew": {
  724. name: "Mew",
  725. parents: ["pokemon"]
  726. },
  727. "goodra": {
  728. name: "Goodra",
  729. parents: ["pokemon"]
  730. },
  731. "fairy": {
  732. name: "Fairy",
  733. parents: ["magical"]
  734. },
  735. "typhlosion": {
  736. name: "Typhlosion",
  737. parents: ["pokemon"]
  738. },
  739. "magical": {
  740. name: "Magical",
  741. parents: []
  742. },
  743. "xenomorph": {
  744. name: "Xenomorph",
  745. parents: ["monster", "alien"]
  746. },
  747. "charr": {
  748. name: "Charr",
  749. parents: ["cat"]
  750. },
  751. "siberian-husky": {
  752. name: "Siberian Husky",
  753. parents: ["husky"]
  754. },
  755. "alligator": {
  756. name: "Alligator",
  757. parents: ["reptile"]
  758. },
  759. "bernese-mountain-dog": {
  760. name: "Bernese Mountain Dog",
  761. parents: ["dog"]
  762. },
  763. "reshiram": {
  764. name: "Reshiram",
  765. parents: ["pokemon"]
  766. },
  767. "grizzly-bear": {
  768. name: "Grizzly Bear",
  769. parents: ["bear"]
  770. },
  771. "water-monitor": {
  772. name: "Water Monitor",
  773. parents: ["lizard"]
  774. },
  775. "banchofossa": {
  776. name: "Banchofossa",
  777. parents: ["mammal"]
  778. },
  779. "kirin": {
  780. name: "Kirin",
  781. parents: ["monster"]
  782. },
  783. "quilava": {
  784. name: "Quilava",
  785. parents: ["pokemon"]
  786. },
  787. "seviper": {
  788. name: "Seviper",
  789. parents: ["pokemon"]
  790. },
  791. "flying-fox": {
  792. name: "Flying Fox",
  793. parents: ["bat"]
  794. },
  795. "keynain": {
  796. name: "Keynain",
  797. parents: ["avian"]
  798. },
  799. "lucario": {
  800. name: "Lucario",
  801. parents: ["pokemon"]
  802. },
  803. "siamese-cat": {
  804. name: "Siamese Cat",
  805. parents: ["cat"]
  806. },
  807. "spider": {
  808. name: "Spider",
  809. parents: ["insect"]
  810. },
  811. "samurott": {
  812. name: "Samurott",
  813. parents: ["pokemon"]
  814. },
  815. "megalodon": {
  816. name: "Megalodon",
  817. parents: ["shark"]
  818. },
  819. "unicorn": {
  820. name: "Unicorn",
  821. parents: ["horse"]
  822. },
  823. "greninja": {
  824. name: "Greninja",
  825. parents: ["pokemon"]
  826. },
  827. "water-dragon": {
  828. name: "Water Dragon",
  829. parents: ["dragon"]
  830. },
  831. "cross-fox": {
  832. name: "Cross Fox",
  833. parents: ["fox"]
  834. },
  835. "synth": {
  836. name: "Synth",
  837. parents: ["machine"]
  838. },
  839. "construct": {
  840. name: "Construct",
  841. parents: []
  842. },
  843. "mexican-wolf": {
  844. name: "Mexican Wolf",
  845. parents: ["wolf"]
  846. },
  847. "leopard": {
  848. name: "Leopard",
  849. parents: ["cat"]
  850. },
  851. "pig": {
  852. name: "Pig",
  853. parents: ["mammal"]
  854. },
  855. "ampharos": {
  856. name: "Ampharos",
  857. parents: ["pokemon"]
  858. },
  859. "orca": {
  860. name: "Orca",
  861. parents: ["fish"]
  862. },
  863. "lycanroc": {
  864. name: "Lycanroc",
  865. parents: ["pokemon"]
  866. },
  867. "surkanu": {
  868. name: "Surkanu",
  869. parents: ["monster"]
  870. },
  871. "seal": {
  872. name: "Seal",
  873. parents: ["mammal"]
  874. },
  875. "keldeo": {
  876. name: "Keldeo",
  877. parents: ["pokemon"]
  878. },
  879. "great-dane": {
  880. name: "Great Dane",
  881. parents: ["dog"]
  882. },
  883. "black-backed-jackal": {
  884. name: "Black Backed Jackal",
  885. parents: ["jackal"]
  886. },
  887. "sheep": {
  888. name: "Sheep",
  889. parents: ["mammal"]
  890. },
  891. "leopard-seal": {
  892. name: "Leopard Seal",
  893. parents: ["seal"]
  894. },
  895. "zoroark": {
  896. name: "Zoroark",
  897. parents: ["pokemon"]
  898. },
  899. "maned-wolf": {
  900. name: "Maned Wolf",
  901. parents: ["canine"]
  902. },
  903. "dracha": {
  904. name: "Dracha",
  905. parents: ["dragon"]
  906. },
  907. "wolxi": {
  908. name: "Wolxi",
  909. parents: ["mammal", "alien"]
  910. },
  911. "dratini": {
  912. name: "Dratini",
  913. parents: ["pokemon", "dragon"]
  914. },
  915. "skaven": {
  916. name: "Skaven",
  917. parents: ["rat"]
  918. },
  919. "mongoose": {
  920. name: "Mongoose",
  921. parents: ["mammal"]
  922. },
  923. "lopunny": {
  924. name: "Lopunny",
  925. parents: ["pokemon", "rabbit"]
  926. },
  927. "feraligatr": {
  928. name: "Feraligatr",
  929. parents: ["pokemon", "alligator"]
  930. },
  931. "houndoom": {
  932. name: "Houndoom",
  933. parents: ["pokemon", "dog"]
  934. },
  935. "protogen": {
  936. name: "Protogen",
  937. parents: ["machine"]
  938. },
  939. "saint-bernard": {
  940. name: "Saint Bernard",
  941. parents: ["dog"]
  942. },
  943. "crow": {
  944. name: "Crow",
  945. parents: ["corvid"]
  946. },
  947. "delphox": {
  948. name: "Delphox",
  949. parents: ["pokemon", "fox"]
  950. },
  951. "moose": {
  952. name: "Moose",
  953. parents: ["mammal"]
  954. },
  955. "joraxian": {
  956. name: "Joraxian",
  957. parents: ["monster", "canine", "demon"]
  958. },
  959. "nimbat": {
  960. name: "Nimbat",
  961. parents: ["mammal"]
  962. },
  963. "aardwolf": {
  964. name: "Aardwolf",
  965. parents: ["canine"]
  966. },
  967. "fluudrani": {
  968. name: "Fluudrani",
  969. parents: ["animal"]
  970. },
  971. "arcanine": {
  972. name: "Arcanine",
  973. parents: ["pokemon", "dog"]
  974. },
  975. "inteleon": {
  976. name: "Inteleon",
  977. parents: ["pokemon", "fish"]
  978. },
  979. "ninetales": {
  980. name: "Ninetales",
  981. parents: ["pokemon", "kitsune"]
  982. },
  983. "tigrex": {
  984. name: "Tigrex",
  985. parents: ["tiger"]
  986. },
  987. "zorua": {
  988. name: "Zorua",
  989. parents: ["pokemon", "fox"]
  990. },
  991. "vulpix": {
  992. name: "Vulpix",
  993. parents: ["pokemon", "fox"]
  994. },
  995. "barghest": {
  996. name: "Barghest",
  997. parents: ["monster"]
  998. },
  999. "gray-wolf": {
  1000. name: "Gray Wolf",
  1001. parents: ["wolf"]
  1002. },
  1003. "ruppells-fox": {
  1004. name: "Rüppell's Fox",
  1005. parents: ["fox"]
  1006. },
  1007. "bull-terrier": {
  1008. name: "Bull Terrier",
  1009. parents: ["dog"]
  1010. },
  1011. "european-honey-buzzard": {
  1012. name: "European Honey Buzzard",
  1013. parents: ["avian"]
  1014. },
  1015. "t-rex": {
  1016. name: "T Rex",
  1017. parents: ["dinosaur"]
  1018. },
  1019. "mactarian": {
  1020. name: "Mactarian",
  1021. parents: ["shark", "monster"]
  1022. },
  1023. "mewtwo-y": {
  1024. name: "Mewtwo Y",
  1025. parents: ["mewtwo"]
  1026. },
  1027. "mewtwo": {
  1028. name: "Mewtwo",
  1029. parents: ["pokemon"]
  1030. },
  1031. "mew": {
  1032. name: "Mew",
  1033. parents: ["pokemon"]
  1034. },
  1035. "eevee": {
  1036. name: "Eevee",
  1037. parents: ["eeveelution"]
  1038. },
  1039. "mienshao": {
  1040. name: "Mienshao",
  1041. parents: ["pokemon"]
  1042. },
  1043. "sugar-glider": {
  1044. name: "Sugar Glider",
  1045. parents: ["opossum"]
  1046. },
  1047. "spectral-bat": {
  1048. name: "Spectral Bat",
  1049. parents: ["bat"]
  1050. },
  1051. "scolipede": {
  1052. name: "Scolipede",
  1053. parents: ["pokemon", "insect"]
  1054. },
  1055. "jackalope": {
  1056. name: "Jackalope",
  1057. parents: ["rabbit", "antelope"]
  1058. },
  1059. "caracal": {
  1060. name: "Caracal",
  1061. parents: ["cat"]
  1062. },
  1063. "stoat": {
  1064. name: "Stoat",
  1065. parents: ["mammal"]
  1066. },
  1067. "african-golden-cat": {
  1068. name: "African Golden Cat",
  1069. parents: ["cat"]
  1070. },
  1071. "gigantosaurus": {
  1072. name: "Gigantosaurus",
  1073. parents: ["dinosaur"]
  1074. },
  1075. "zorgoia": {
  1076. name: "Zorgoia",
  1077. parents: ["mammal"]
  1078. },
  1079. "monitor-lizard": {
  1080. name: "Monitor Lizard",
  1081. parents: ["lizard"]
  1082. },
  1083. "ziralkia": {
  1084. name: "Ziralkia",
  1085. parents: ["mammal"]
  1086. },
  1087. "kiiasi": {
  1088. name: "Kiiasi",
  1089. parents: ["animal"]
  1090. },
  1091. "synx": {
  1092. name: "Synx",
  1093. parents: ["monster"]
  1094. },
  1095. "panther": {
  1096. name: "Panther",
  1097. parents: ["cat"]
  1098. },
  1099. "azumarill": {
  1100. name: "Azumarill",
  1101. parents: ["pokemon"]
  1102. },
  1103. "river-snaptail": {
  1104. name: "River Snaptail",
  1105. parents: ["otter", "crocodile"]
  1106. },
  1107. "great-blue-heron": {
  1108. name: "Great Blue Heron",
  1109. parents: ["avian"]
  1110. },
  1111. "smeargle": {
  1112. name: "Smeargle",
  1113. parents: ["pokemon"]
  1114. },
  1115. "vendeilen": {
  1116. name: "Vendeilen",
  1117. parents: ["monster"]
  1118. },
  1119. "ventura": {
  1120. name: "Ventura",
  1121. parents: ["canine"]
  1122. },
  1123. "clouded-leopard": {
  1124. name: "Clouded Leopard",
  1125. parents: ["leopard"]
  1126. },
  1127. "argonian": {
  1128. name: "Argonian",
  1129. parents: ["lizard"]
  1130. },
  1131. "salazzle": {
  1132. name: "Salazzle",
  1133. parents: ["pokemon", "lizard"]
  1134. },
  1135. "je-stoff-drachen": {
  1136. name: "Je-Stoff Drachen",
  1137. parents: ["dragon"]
  1138. },
  1139. "finnish-spitz-dog": {
  1140. name: "Finnish Spitz Dog",
  1141. parents: ["dog"]
  1142. },
  1143. "gray-fox": {
  1144. name: "Gray Fox",
  1145. parents: ["fox"]
  1146. },
  1147. "opossum": {
  1148. name: "opossum",
  1149. parents: ["mammal"]
  1150. },
  1151. "antelope": {
  1152. name: "Antelope",
  1153. parents: ["mammal"]
  1154. },
  1155. "weavile": {
  1156. name: "Weavile",
  1157. parents: ["pokemon"]
  1158. },
  1159. "pikachu": {
  1160. name: "Pikachu",
  1161. parents: ["pokemon", "mouse"]
  1162. },
  1163. "grovyle": {
  1164. name: "Grovyle",
  1165. parents: ["pokemon", "plant"]
  1166. },
  1167. "sthara": {
  1168. name: "Sthara",
  1169. parents: ["snow-leopard", "reptile"]
  1170. },
  1171. "star-warrior": {
  1172. name: "Star Warrior",
  1173. parents: ["magical"]
  1174. },
  1175. "dragonoid": {
  1176. name: "Dragonoid",
  1177. parents: ["dragon"]
  1178. },
  1179. "suicune": {
  1180. name: "Suicune",
  1181. parents: ["pokemon"]
  1182. },
  1183. "vole": {
  1184. name: "Vole",
  1185. parents: ["mammal"]
  1186. },
  1187. "blaziken": {
  1188. name: "Blaziken",
  1189. parents: ["pokemon", "avian"]
  1190. },
  1191. "buizel": {
  1192. name: "Buizel",
  1193. parents: ["pokemon", "fish"]
  1194. },
  1195. "floatzel": {
  1196. name: "Floatzel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "umok": {
  1200. name: "Umok",
  1201. parents: ["avian"]
  1202. },
  1203. "sea-monster": {
  1204. name: "Sea Monster",
  1205. parents: ["monster", "fish"]
  1206. },
  1207. "egyptian-vulture": {
  1208. name: "Egyptian Vulture",
  1209. parents: ["avian"]
  1210. },
  1211. "doberman": {
  1212. name: "Doberman",
  1213. parents: ["dog"]
  1214. },
  1215. "zangoose": {
  1216. name: "Zangoose",
  1217. parents: ["pokemon", "mongoose"]
  1218. },
  1219. "mongoose": {
  1220. name: "Mongoose",
  1221. parents: ["mammal"]
  1222. },
  1223. "wickerbeast": {
  1224. name: "Wickerbeast",
  1225. parents: ["monster"]
  1226. },
  1227. "zenari": {
  1228. name: "Zenari",
  1229. parents: ["lizard"]
  1230. },
  1231. "plant": {
  1232. name: "Plant",
  1233. parents: []
  1234. },
  1235. "raskatox": {
  1236. name: "Raskatox",
  1237. parents: ["raccoon", "skunk", "cat", "fox"]
  1238. },
  1239. "mikromare": {
  1240. name: "mikromare",
  1241. parents: ["alien"]
  1242. },
  1243. "alien": {
  1244. name: "Alien",
  1245. parents: ["animal"]
  1246. },
  1247. "deity": {
  1248. name: "Deity",
  1249. parents: []
  1250. },
  1251. "skarlan": {
  1252. name: "Skarlan",
  1253. parents: ["slug", "dragon"]
  1254. },
  1255. "slug": {
  1256. name: "Slug",
  1257. parents: ["mollusk"]
  1258. },
  1259. "mollusk": {
  1260. name: "Mollusk",
  1261. parents: ["animal"]
  1262. },
  1263. "chimera": {
  1264. name: "Chimera",
  1265. parents: ["monster"]
  1266. },
  1267. "gestalt": {
  1268. name: "Gestalt",
  1269. parents: ["construct"]
  1270. },
  1271. "mimic": {
  1272. name: "Mimic",
  1273. parents: ["monster"]
  1274. },
  1275. "calico-rat": {
  1276. name: "Calico Rat",
  1277. parents: ["rat"]
  1278. },
  1279. "panda": {
  1280. name: "Panda",
  1281. parents: ["mammal"]
  1282. },
  1283. "oni": {
  1284. name: "Oni",
  1285. parents: ["monster"]
  1286. },
  1287. "pegasus": {
  1288. name: "Pegasus",
  1289. parents: ["horse"]
  1290. },
  1291. "vulpera": {
  1292. name: "Vulpera",
  1293. parents: ["fennec-fox"]
  1294. },
  1295. "ceratosaurus": {
  1296. name: "Ceratosaurus",
  1297. parents: ["dinosaur"]
  1298. },
  1299. "nykur": {
  1300. name: "Nykur",
  1301. parents: ["horse", "monster"]
  1302. },
  1303. "giraffe": {
  1304. name: "Giraffe",
  1305. parents: ["mammal"]
  1306. },
  1307. "tauren": {
  1308. name: "Tauren",
  1309. parents: ["cow"]
  1310. },
  1311. "draconi": {
  1312. name: "Draconi",
  1313. parents: ["alien", "cat", "cyborg"]
  1314. },
  1315. "dire-wolf": {
  1316. name: "Dire Wolf",
  1317. parents: ["wolf"]
  1318. },
  1319. "ferromorph": {
  1320. name: "Ferromorph",
  1321. parents: ["construct"]
  1322. },
  1323. "meowth": {
  1324. name: "Meowth",
  1325. parents: ["cat", "pokemon"]
  1326. },
  1327. "pavodragon": {
  1328. name: "Pavodragon",
  1329. parents: ["dragon"]
  1330. },
  1331. "aaltranae": {
  1332. name: "Aaltranae",
  1333. parents: ["dragon"]
  1334. },
  1335. "cyborg": {
  1336. name: "Cyborg",
  1337. parents: ["machine"]
  1338. },
  1339. "draptor": {
  1340. name: "Draptor",
  1341. parents: ["dragon"]
  1342. },
  1343. "candy": {
  1344. name: "Candy",
  1345. parents: []
  1346. },
  1347. "drenath": {
  1348. name: "Drenath",
  1349. parents: ["dragon", "snake", "rabbit"]
  1350. },
  1351. "coyju": {
  1352. name: "Coyju",
  1353. parents: ["coyote", "kaiju"]
  1354. },
  1355. "kaiju": {
  1356. name: "Kaiju",
  1357. parents: ["monster"]
  1358. },
  1359. "nickit": {
  1360. name: "Nickit",
  1361. parents: ["pokemon", "cat"]
  1362. },
  1363. "lopunny": {
  1364. name: "Lopunny",
  1365. parents: ["pokemon", "rabbit"]
  1366. },
  1367. "korean-jindo-dog": {
  1368. name: "Korean Jindo Dog",
  1369. parents: ["dog"]
  1370. },
  1371. "naga": {
  1372. name: "Naga",
  1373. parents: ["snake", "monster"]
  1374. },
  1375. "undead": {
  1376. name: "Undead",
  1377. parents: ["monster"]
  1378. },
  1379. "whale": {
  1380. name: "Whale",
  1381. parents: ["fish"]
  1382. },
  1383. "gelato-bee": {
  1384. name: "Gelato Bee",
  1385. parents: ["bee"]
  1386. },
  1387. "bee": {
  1388. name: "Bee",
  1389. parents: ["insect"]
  1390. },
  1391. "gardevoir": {
  1392. name: "Gardevoir",
  1393. parents: ["pokemon"]
  1394. },
  1395. "ant": {
  1396. name: "Ant",
  1397. parents: ["insect"]
  1398. },
  1399. "frog": {
  1400. name: "Frog",
  1401. parents: ["amphibian"]
  1402. },
  1403. "amphibian": {
  1404. name: "Amphibian",
  1405. parents: ["animal"]
  1406. },
  1407. "pangolin": {
  1408. name: "Pangolin",
  1409. parents: ["mammal"]
  1410. },
  1411. "uragi'viidorn": {
  1412. name: "Uragi'viidorn",
  1413. parents: ["avian", "bear"]
  1414. },
  1415. "gryphdelphais": {
  1416. name: "Gryphdelphais",
  1417. parents: ["dolphin", "gryphon"]
  1418. },
  1419. "plush": {
  1420. name: "Plush",
  1421. parents: ["construct"]
  1422. },
  1423. "draiger": {
  1424. name: "Draiger",
  1425. parents: ["dragon","tiger"]
  1426. },
  1427. "foxsky": {
  1428. name: "Foxsky",
  1429. parents: ["fox", "husky"]
  1430. },
  1431. "umbreon": {
  1432. name: "Umbreon",
  1433. parents: ["eeveelution"]
  1434. },
  1435. "slime-dragon": {
  1436. name: "Slime Dragon",
  1437. parents: ["dragon"]
  1438. },
  1439. "enderman": {
  1440. name: "Enderman",
  1441. parents: ["monster"]
  1442. },
  1443. "gremlin": {
  1444. name: "Gremlin",
  1445. parents: ["monster"]
  1446. },
  1447. "dragonsune": {
  1448. name: "Dragonsune",
  1449. parents: ["dragon", "kitsune"]
  1450. },
  1451. "ghost": {
  1452. name: "Ghost",
  1453. parents: ["monster"]
  1454. },
  1455. "false-vampire-bat": {
  1456. name: "False Vampire Bat",
  1457. parents: ["bat"]
  1458. },
  1459. "succubus": {
  1460. name: "Succubus",
  1461. parents: ["demon"]
  1462. },
  1463. "mia": {
  1464. name: "Mia",
  1465. parents: ["canine"]
  1466. },
  1467. "rainbow": {
  1468. name: "Rainbow",
  1469. parents: ["monster"]
  1470. },
  1471. "solgaleo": {
  1472. name: "Solgaleo",
  1473. parents: ["pokemon"]
  1474. },
  1475. "lucent-nargacuga": {
  1476. name: "Lucent Nargacuga",
  1477. parents: ["monster-hunter"]
  1478. },
  1479. "monster-hunter": {
  1480. name: "Monster Hunter",
  1481. parents: ["monster"]
  1482. },
  1483. "leviathan": {
  1484. "name": "Leviathan",
  1485. "url": "sea-monster"
  1486. },
  1487. "bull": {
  1488. name: "Bull",
  1489. parents: ["mammal"]
  1490. },
  1491. "tanuki": {
  1492. name: "Tanuki",
  1493. parents: ["monster"]
  1494. },
  1495. "chakat": {
  1496. name: "Chakat",
  1497. parents: ["cat"]
  1498. },
  1499. "hydra": {
  1500. name: "Hydra",
  1501. parents: ["monster"]
  1502. },
  1503. "zigzagoon": {
  1504. name: "Zigzagoon",
  1505. parents: ["raccoon", "pokemon"]
  1506. },
  1507. "vulture": {
  1508. name: "Vulture",
  1509. parents: ["avian"]
  1510. },
  1511. "eastern-dragon": {
  1512. name: "Eastern Dragon",
  1513. parents: ["dragon"]
  1514. },
  1515. "gryffon": {
  1516. name: "Gryffon",
  1517. parents: ["phoenix", "red-panda"]
  1518. },
  1519. "amtsvane": {
  1520. name: "Amtsvane",
  1521. parents: ["reptile"]
  1522. },
  1523. "kigavi": {
  1524. name: "Kigavi",
  1525. parents: ["avian"]
  1526. },
  1527. "turian": {
  1528. name: "Turian",
  1529. parents: ["avian"]
  1530. },
  1531. "zeraora": {
  1532. name: "Zeraora",
  1533. parents: ["pokemon"]
  1534. },
  1535. "sandshrew": {
  1536. name: "Sandshrew",
  1537. parents: ["pokemon", "pangolin"]
  1538. },
  1539. "valais-blacknose-sheep": {
  1540. name: "Valais Blacknose Sheep",
  1541. parents: ["sheep"]
  1542. },
  1543. "novaleit": {
  1544. name: "Novaleit",
  1545. parents: ["mammal"]
  1546. },
  1547. "dunnoh": {
  1548. name: "Dunnoh",
  1549. parents: ["mammal"]
  1550. },
  1551. "lunaral-dragon": {
  1552. name: "Lunaral Dragon",
  1553. parents: ["dragon"]
  1554. },
  1555. "arctic-wolf": {
  1556. name: "Arctic Wolf",
  1557. parents: ["wolf"]
  1558. },
  1559. "donkey": {
  1560. name: "Donkey",
  1561. parents: ["horse"]
  1562. },
  1563. "chinchilla": {
  1564. name: "Chinchilla",
  1565. parents: ["rodent"]
  1566. },
  1567. "felkin": {
  1568. name: "Felkin",
  1569. parents: ["dragon"]
  1570. },
  1571. "tykeriel": {
  1572. name: "Tykeriel",
  1573. parents: ["avian"]
  1574. },
  1575. "folf": {
  1576. name: "Folf",
  1577. parents: ["fox", "wolf"]
  1578. },
  1579. "pooltoy": {
  1580. name: "Pooltoy",
  1581. parents: ["construct"]
  1582. },
  1583. "demi": {
  1584. name: "Demi",
  1585. parents: ["human"]
  1586. },
  1587. }
  1588. //species
  1589. function getSpeciesInfo(speciesList) {
  1590. let result = new Set();
  1591. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1592. result.add(entry)
  1593. });
  1594. return Array.from(result);
  1595. };
  1596. function getSpeciesInfoHelper(species) {
  1597. if (!speciesData[species]) {
  1598. console.warn(species + " doesn't exist");
  1599. return [];
  1600. }
  1601. if (speciesData[species].parents) {
  1602. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1603. } else {
  1604. return [species];
  1605. }
  1606. }
  1607. characterMakers.push(() => makeCharacter(
  1608. {
  1609. name: "Fen",
  1610. species: ["crux"],
  1611. description: {
  1612. title: "Bio",
  1613. text: "Very furry. Sheds on everything."
  1614. },
  1615. tags: [
  1616. "anthro",
  1617. "goo"
  1618. ]
  1619. },
  1620. {
  1621. back: {
  1622. height: math.unit(2.2428, "meter"),
  1623. weight: math.unit(124.738, "kg"),
  1624. name: "Back",
  1625. image: {
  1626. source: "./media/characters/fen/back.svg",
  1627. extra: 2024 / 1867,
  1628. bottom: 13 / 2037
  1629. },
  1630. info: {
  1631. description: {
  1632. mode: "append",
  1633. text: "\n\nHe is not currently looking at you."
  1634. }
  1635. }
  1636. },
  1637. full: {
  1638. height: math.unit(1.34, "meter"),
  1639. weight: math.unit(225, "kg"),
  1640. name: "Full",
  1641. image: {
  1642. source: "./media/characters/fen/full.svg"
  1643. },
  1644. info: {
  1645. description: {
  1646. mode: "append",
  1647. text: "\n\nMunch."
  1648. }
  1649. }
  1650. },
  1651. kneeling: {
  1652. height: math.unit(5.4, "feet"),
  1653. weight: math.unit(124.738, "kg"),
  1654. name: "Kneeling",
  1655. image: {
  1656. source: "./media/characters/fen/kneeling.svg",
  1657. extra: 563 / 507
  1658. }
  1659. },
  1660. goo: {
  1661. height: math.unit(2.8, "feet"),
  1662. weight: math.unit(125, "kg"),
  1663. capacity: math.unit(1, "people"),
  1664. name: "Goo",
  1665. image: {
  1666. source: "./media/characters/fen/goo.svg",
  1667. bottom: 116 / 613
  1668. }
  1669. },
  1670. lounging: {
  1671. height: math.unit(6.5, "feet"),
  1672. weight: math.unit(125, "kg"),
  1673. name: "Lounging",
  1674. image: {
  1675. source: "./media/characters/fen/lounging.svg"
  1676. }
  1677. },
  1678. },
  1679. [
  1680. {
  1681. name: "Normal",
  1682. height: math.unit(2.2428, "meter")
  1683. },
  1684. {
  1685. name: "Big",
  1686. height: math.unit(12, "feet")
  1687. },
  1688. {
  1689. name: "Minimacro",
  1690. height: math.unit(40, "feet"),
  1691. default: true,
  1692. info: {
  1693. description: {
  1694. mode: "append",
  1695. text: "\n\nTOO DAMN BIG"
  1696. }
  1697. }
  1698. },
  1699. {
  1700. name: "Macro",
  1701. height: math.unit(100, "feet"),
  1702. info: {
  1703. description: {
  1704. mode: "append",
  1705. text: "\n\nTOO DAMN BIG"
  1706. }
  1707. }
  1708. },
  1709. {
  1710. name: "Macro+",
  1711. height: math.unit(300, "feet")
  1712. },
  1713. {
  1714. name: "Megamacro",
  1715. height: math.unit(2, "miles")
  1716. }
  1717. ]
  1718. ))
  1719. characterMakers.push(() => makeCharacter(
  1720. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1721. {
  1722. front: {
  1723. height: math.unit(183, "cm"),
  1724. weight: math.unit(80, "kg"),
  1725. name: "Front",
  1726. image: {
  1727. source: "./media/characters/sofia-fluttertail/front.svg",
  1728. bottom: 0.01,
  1729. extra: 2154 / 2081
  1730. }
  1731. },
  1732. frontAlt: {
  1733. height: math.unit(183, "cm"),
  1734. weight: math.unit(80, "kg"),
  1735. name: "Front (alt)",
  1736. image: {
  1737. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1738. }
  1739. },
  1740. back: {
  1741. height: math.unit(183, "cm"),
  1742. weight: math.unit(80, "kg"),
  1743. name: "Back",
  1744. image: {
  1745. source: "./media/characters/sofia-fluttertail/back.svg"
  1746. }
  1747. },
  1748. kneeling: {
  1749. height: math.unit(125, "cm"),
  1750. weight: math.unit(80, "kg"),
  1751. name: "Kneeling",
  1752. image: {
  1753. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1754. extra: 1033 / 977,
  1755. bottom: 23.7 / 1057
  1756. }
  1757. },
  1758. maw: {
  1759. height: math.unit(183 / 5, "cm"),
  1760. name: "Maw",
  1761. image: {
  1762. source: "./media/characters/sofia-fluttertail/maw.svg"
  1763. }
  1764. },
  1765. mawcloseup: {
  1766. height: math.unit(183 / 5 * 0.41, "cm"),
  1767. name: "Maw (Closeup)",
  1768. image: {
  1769. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1770. }
  1771. },
  1772. paws: {
  1773. height: math.unit(1.17, "feet"),
  1774. name: "Paws",
  1775. image: {
  1776. source: "./media/characters/sofia-fluttertail/paws.svg",
  1777. extra: 851 / 851,
  1778. bottom: 17 / 868
  1779. }
  1780. },
  1781. },
  1782. [
  1783. {
  1784. name: "Normal",
  1785. height: math.unit(1.83, "meter")
  1786. },
  1787. {
  1788. name: "Size Thief",
  1789. height: math.unit(18, "feet")
  1790. },
  1791. {
  1792. name: "50 Foot Collie",
  1793. height: math.unit(50, "feet")
  1794. },
  1795. {
  1796. name: "Macro",
  1797. height: math.unit(96, "feet"),
  1798. default: true
  1799. },
  1800. {
  1801. name: "Megamerger",
  1802. height: math.unit(650, "feet")
  1803. },
  1804. ]
  1805. ))
  1806. characterMakers.push(() => makeCharacter(
  1807. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1808. {
  1809. front: {
  1810. height: math.unit(7, "feet"),
  1811. weight: math.unit(100, "kg"),
  1812. name: "Front",
  1813. image: {
  1814. source: "./media/characters/march/front.svg",
  1815. extra: 1,
  1816. bottom: 0.015
  1817. }
  1818. },
  1819. foot: {
  1820. height: math.unit(0.9, "feet"),
  1821. name: "Foot",
  1822. image: {
  1823. source: "./media/characters/march/foot.svg"
  1824. }
  1825. },
  1826. },
  1827. [
  1828. {
  1829. name: "Normal",
  1830. height: math.unit(7.9, "feet")
  1831. },
  1832. {
  1833. name: "Macro",
  1834. height: math.unit(220, "meters")
  1835. },
  1836. {
  1837. name: "Megamacro",
  1838. height: math.unit(2.98, "km"),
  1839. default: true
  1840. },
  1841. {
  1842. name: "Gigamacro",
  1843. height: math.unit(15963, "km")
  1844. },
  1845. {
  1846. name: "Teramacro",
  1847. height: math.unit(2980000000, "km")
  1848. },
  1849. {
  1850. name: "Examacro",
  1851. height: math.unit(250, "parsecs")
  1852. },
  1853. ]
  1854. ))
  1855. characterMakers.push(() => makeCharacter(
  1856. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1857. {
  1858. front: {
  1859. height: math.unit(6, "feet"),
  1860. weight: math.unit(60, "kg"),
  1861. name: "Front",
  1862. image: {
  1863. source: "./media/characters/noir/front.svg",
  1864. extra: 1,
  1865. bottom: 0.032
  1866. }
  1867. },
  1868. },
  1869. [
  1870. {
  1871. name: "Normal",
  1872. height: math.unit(6.6, "feet")
  1873. },
  1874. {
  1875. name: "Macro",
  1876. height: math.unit(500, "feet")
  1877. },
  1878. {
  1879. name: "Megamacro",
  1880. height: math.unit(2.5, "km"),
  1881. default: true
  1882. },
  1883. {
  1884. name: "Gigamacro",
  1885. height: math.unit(22500, "km")
  1886. },
  1887. {
  1888. name: "Teramacro",
  1889. height: math.unit(2500000000, "km")
  1890. },
  1891. {
  1892. name: "Examacro",
  1893. height: math.unit(200, "parsecs")
  1894. },
  1895. ]
  1896. ))
  1897. characterMakers.push(() => makeCharacter(
  1898. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1899. {
  1900. front: {
  1901. height: math.unit(7, "feet"),
  1902. weight: math.unit(100, "kg"),
  1903. name: "Front",
  1904. image: {
  1905. source: "./media/characters/okuri/front.svg",
  1906. extra: 1,
  1907. bottom: 0.037
  1908. }
  1909. },
  1910. back: {
  1911. height: math.unit(7, "feet"),
  1912. weight: math.unit(100, "kg"),
  1913. name: "Back",
  1914. image: {
  1915. source: "./media/characters/okuri/back.svg",
  1916. extra: 1,
  1917. bottom: 0.007
  1918. }
  1919. },
  1920. },
  1921. [
  1922. {
  1923. name: "Megamacro",
  1924. height: math.unit(100, "miles"),
  1925. default: true
  1926. },
  1927. ]
  1928. ))
  1929. characterMakers.push(() => makeCharacter(
  1930. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1931. {
  1932. front: {
  1933. height: math.unit(7, "feet"),
  1934. weight: math.unit(100, "kg"),
  1935. name: "Front",
  1936. image: {
  1937. source: "./media/characters/manny/front.svg",
  1938. extra: 1,
  1939. bottom: 0.06
  1940. }
  1941. },
  1942. back: {
  1943. height: math.unit(7, "feet"),
  1944. weight: math.unit(100, "kg"),
  1945. name: "Back",
  1946. image: {
  1947. source: "./media/characters/manny/back.svg",
  1948. extra: 1,
  1949. bottom: 0.014
  1950. }
  1951. },
  1952. },
  1953. [
  1954. {
  1955. name: "Normal",
  1956. height: math.unit(7, "feet"),
  1957. },
  1958. {
  1959. name: "Macro",
  1960. height: math.unit(78, "feet"),
  1961. default: true
  1962. },
  1963. {
  1964. name: "Macro+",
  1965. height: math.unit(300, "meters")
  1966. },
  1967. {
  1968. name: "Macro++",
  1969. height: math.unit(2400, "meters")
  1970. },
  1971. {
  1972. name: "Megamacro",
  1973. height: math.unit(5167, "meters")
  1974. },
  1975. {
  1976. name: "Gigamacro",
  1977. height: math.unit(41769, "miles")
  1978. },
  1979. ]
  1980. ))
  1981. characterMakers.push(() => makeCharacter(
  1982. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1983. {
  1984. front: {
  1985. height: math.unit(7, "feet"),
  1986. weight: math.unit(100, "kg"),
  1987. name: "Front",
  1988. image: {
  1989. source: "./media/characters/adake/front-1.svg"
  1990. }
  1991. },
  1992. frontAlt: {
  1993. height: math.unit(7, "feet"),
  1994. weight: math.unit(100, "kg"),
  1995. name: "Front (Alt)",
  1996. image: {
  1997. source: "./media/characters/adake/front-2.svg",
  1998. extra: 1,
  1999. bottom: 0.01
  2000. }
  2001. },
  2002. back: {
  2003. height: math.unit(7, "feet"),
  2004. weight: math.unit(100, "kg"),
  2005. name: "Back",
  2006. image: {
  2007. source: "./media/characters/adake/back.svg",
  2008. }
  2009. },
  2010. kneel: {
  2011. height: math.unit(5.385, "feet"),
  2012. weight: math.unit(100, "kg"),
  2013. name: "Kneeling",
  2014. image: {
  2015. source: "./media/characters/adake/kneel.svg",
  2016. bottom: 0.052
  2017. }
  2018. },
  2019. },
  2020. [
  2021. {
  2022. name: "Normal",
  2023. height: math.unit(7, "feet"),
  2024. },
  2025. {
  2026. name: "Macro",
  2027. height: math.unit(78, "feet"),
  2028. default: true
  2029. },
  2030. {
  2031. name: "Macro+",
  2032. height: math.unit(300, "meters")
  2033. },
  2034. {
  2035. name: "Macro++",
  2036. height: math.unit(2400, "meters")
  2037. },
  2038. {
  2039. name: "Megamacro",
  2040. height: math.unit(5167, "meters")
  2041. },
  2042. {
  2043. name: "Gigamacro",
  2044. height: math.unit(41769, "miles")
  2045. },
  2046. ]
  2047. ))
  2048. characterMakers.push(() => makeCharacter(
  2049. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2050. {
  2051. front: {
  2052. height: math.unit(1.65, "meters"),
  2053. weight: math.unit(50, "kg"),
  2054. name: "Front",
  2055. image: {
  2056. source: "./media/characters/elijah/front.svg",
  2057. extra: 858 / 830,
  2058. bottom: 95.5 / 953.8559
  2059. }
  2060. },
  2061. back: {
  2062. height: math.unit(1.65, "meters"),
  2063. weight: math.unit(50, "kg"),
  2064. name: "Back",
  2065. image: {
  2066. source: "./media/characters/elijah/back.svg",
  2067. extra: 895 / 850,
  2068. bottom: 5.3 / 897.956
  2069. }
  2070. },
  2071. frontNsfw: {
  2072. height: math.unit(1.65, "meters"),
  2073. weight: math.unit(50, "kg"),
  2074. name: "Front (NSFW)",
  2075. image: {
  2076. source: "./media/characters/elijah/front-nsfw.svg",
  2077. extra: 858 / 830,
  2078. bottom: 95.5 / 953.8559
  2079. }
  2080. },
  2081. backNsfw: {
  2082. height: math.unit(1.65, "meters"),
  2083. weight: math.unit(50, "kg"),
  2084. name: "Back (NSFW)",
  2085. image: {
  2086. source: "./media/characters/elijah/back-nsfw.svg",
  2087. extra: 895 / 850,
  2088. bottom: 5.3 / 897.956
  2089. }
  2090. },
  2091. dick: {
  2092. height: math.unit(1, "feet"),
  2093. name: "Dick",
  2094. image: {
  2095. source: "./media/characters/elijah/dick.svg"
  2096. }
  2097. },
  2098. beakOpen: {
  2099. height: math.unit(1.25, "feet"),
  2100. name: "Beak (Open)",
  2101. image: {
  2102. source: "./media/characters/elijah/beak-open.svg"
  2103. }
  2104. },
  2105. beakShut: {
  2106. height: math.unit(1.25, "feet"),
  2107. name: "Beak (Shut)",
  2108. image: {
  2109. source: "./media/characters/elijah/beak-shut.svg"
  2110. }
  2111. },
  2112. footFlexing: {
  2113. height: math.unit(1.61, "feet"),
  2114. name: "Foot (Flexing)",
  2115. image: {
  2116. source: "./media/characters/elijah/foot-flexing.svg"
  2117. }
  2118. },
  2119. footStepping: {
  2120. height: math.unit(1.44, "feet"),
  2121. name: "Foot (Stepping)",
  2122. image: {
  2123. source: "./media/characters/elijah/foot-stepping.svg"
  2124. }
  2125. },
  2126. plantigradeLeg: {
  2127. height: math.unit(2.34, "feet"),
  2128. name: "Plantigrade Leg",
  2129. image: {
  2130. source: "./media/characters/elijah/plantigrade-leg.svg"
  2131. }
  2132. },
  2133. plantigradeFootLeft: {
  2134. height: math.unit(0.9, "feet"),
  2135. name: "Plantigrade Foot (Left)",
  2136. image: {
  2137. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2138. }
  2139. },
  2140. plantigradeFootRight: {
  2141. height: math.unit(0.9, "feet"),
  2142. name: "Plantigrade Foot (Right)",
  2143. image: {
  2144. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2145. }
  2146. },
  2147. },
  2148. [
  2149. {
  2150. name: "Normal",
  2151. height: math.unit(1.65, "meters")
  2152. },
  2153. {
  2154. name: "Macro",
  2155. height: math.unit(55, "meters"),
  2156. default: true
  2157. },
  2158. {
  2159. name: "Macro+",
  2160. height: math.unit(105, "meters")
  2161. },
  2162. ]
  2163. ))
  2164. characterMakers.push(() => makeCharacter(
  2165. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2166. {
  2167. front: {
  2168. height: math.unit(11, "feet"),
  2169. weight: math.unit(320, "kg"),
  2170. name: "Front",
  2171. image: {
  2172. source: "./media/characters/rai/front.svg",
  2173. extra: 1802/1696,
  2174. bottom: 68/1870
  2175. }
  2176. },
  2177. frontDressed: {
  2178. height: math.unit(11, "feet"),
  2179. weight: math.unit(320, "kg"),
  2180. name: "Front (Dressed)",
  2181. image: {
  2182. source: "./media/characters/rai/front-dressed.svg",
  2183. extra: 1802/1696,
  2184. bottom: 68/1870
  2185. }
  2186. },
  2187. side: {
  2188. height: math.unit(11, "feet"),
  2189. weight: math.unit(320, "kg"),
  2190. name: "Side",
  2191. image: {
  2192. source: "./media/characters/rai/side.svg",
  2193. extra: 1789/1710,
  2194. bottom: 115/1904
  2195. }
  2196. },
  2197. back: {
  2198. height: math.unit(11, "feet"),
  2199. weight: math.unit(320, "kg"),
  2200. name: "Back",
  2201. image: {
  2202. source: "./media/characters/rai/back.svg",
  2203. extra: 1770/1707,
  2204. bottom: 28/1798
  2205. }
  2206. },
  2207. feral: {
  2208. height: math.unit(11, "feet"),
  2209. weight: math.unit(640, "kg"),
  2210. name: "Feral",
  2211. image: {
  2212. source: "./media/characters/rai/feral.svg",
  2213. extra: 1035/642,
  2214. bottom: 86/1121
  2215. }
  2216. },
  2217. dragon: {
  2218. height: math.unit(23, "feet"),
  2219. weight: math.unit(50000, "lb"),
  2220. name: "Dragon",
  2221. image: {
  2222. source: "./media/characters/rai/dragon.svg",
  2223. extra: 2498 / 2030,
  2224. bottom: 85.2 / 2584
  2225. }
  2226. },
  2227. maw: {
  2228. height: math.unit(6 / 3.81416, "feet"),
  2229. name: "Maw",
  2230. image: {
  2231. source: "./media/characters/rai/maw.svg"
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(11, "feet")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(302, "feet"),
  2243. default: true
  2244. },
  2245. ]
  2246. ))
  2247. characterMakers.push(() => makeCharacter(
  2248. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2249. {
  2250. frontDressed: {
  2251. height: math.unit(216, "feet"),
  2252. weight: math.unit(7000000, "lb"),
  2253. name: "Front (Dressed)",
  2254. image: {
  2255. source: "./media/characters/jazzy/front-dressed.svg",
  2256. extra: 2738 / 2651,
  2257. bottom: 41.8 / 2786
  2258. }
  2259. },
  2260. backDressed: {
  2261. height: math.unit(216, "feet"),
  2262. weight: math.unit(7000000, "lb"),
  2263. name: "Back (Dressed)",
  2264. image: {
  2265. source: "./media/characters/jazzy/back-dressed.svg",
  2266. extra: 2775 / 2673,
  2267. bottom: 36.8 / 2817
  2268. }
  2269. },
  2270. front: {
  2271. height: math.unit(216, "feet"),
  2272. weight: math.unit(7000000, "lb"),
  2273. name: "Front",
  2274. image: {
  2275. source: "./media/characters/jazzy/front.svg",
  2276. extra: 2738 / 2651,
  2277. bottom: 41.8 / 2786
  2278. }
  2279. },
  2280. back: {
  2281. height: math.unit(216, "feet"),
  2282. weight: math.unit(7000000, "lb"),
  2283. name: "Back",
  2284. image: {
  2285. source: "./media/characters/jazzy/back.svg",
  2286. extra: 2775 / 2673,
  2287. bottom: 36.8 / 2817
  2288. }
  2289. },
  2290. maw: {
  2291. height: math.unit(20, "feet"),
  2292. name: "Maw",
  2293. image: {
  2294. source: "./media/characters/jazzy/maw.svg"
  2295. }
  2296. },
  2297. paws: {
  2298. height: math.unit(27.5, "feet"),
  2299. name: "Paws",
  2300. image: {
  2301. source: "./media/characters/jazzy/paws.svg"
  2302. }
  2303. },
  2304. eye: {
  2305. height: math.unit(4.4, "feet"),
  2306. name: "Eye",
  2307. image: {
  2308. source: "./media/characters/jazzy/eye.svg"
  2309. }
  2310. },
  2311. droneOffense: {
  2312. height: math.unit(9.5, "inches"),
  2313. name: "Drone (Offense)",
  2314. image: {
  2315. source: "./media/characters/jazzy/drone-offense.svg"
  2316. }
  2317. },
  2318. droneRecon: {
  2319. height: math.unit(9.5, "inches"),
  2320. name: "Drone (Recon)",
  2321. image: {
  2322. source: "./media/characters/jazzy/drone-recon.svg"
  2323. }
  2324. },
  2325. droneDefense: {
  2326. height: math.unit(9.5, "inches"),
  2327. name: "Drone (Defense)",
  2328. image: {
  2329. source: "./media/characters/jazzy/drone-defense.svg"
  2330. }
  2331. },
  2332. },
  2333. [
  2334. {
  2335. name: "Macro",
  2336. height: math.unit(216, "feet"),
  2337. default: true
  2338. },
  2339. ]
  2340. ))
  2341. characterMakers.push(() => makeCharacter(
  2342. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2343. {
  2344. front: {
  2345. height: math.unit(9 + 6/12, "feet"),
  2346. weight: math.unit(700, "lb"),
  2347. name: "Front",
  2348. image: {
  2349. source: "./media/characters/flamm/front.svg",
  2350. extra: 1751/1632,
  2351. bottom: 46/1797
  2352. }
  2353. },
  2354. buff: {
  2355. height: math.unit(9 + 6/12, "feet"),
  2356. weight: math.unit(950, "lb"),
  2357. name: "Buff",
  2358. image: {
  2359. source: "./media/characters/flamm/buff.svg",
  2360. extra: 3018/2874,
  2361. bottom: 221/3239
  2362. }
  2363. },
  2364. },
  2365. [
  2366. {
  2367. name: "Normal",
  2368. height: math.unit(9.5, "feet")
  2369. },
  2370. {
  2371. name: "Macro",
  2372. height: math.unit(200, "feet"),
  2373. default: true
  2374. },
  2375. ]
  2376. ))
  2377. characterMakers.push(() => makeCharacter(
  2378. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2379. {
  2380. front: {
  2381. height: math.unit(5 + 3/12, "feet"),
  2382. weight: math.unit(60, "kg"),
  2383. name: "Front",
  2384. image: {
  2385. source: "./media/characters/zephiro/front.svg",
  2386. extra: 2309 / 2162,
  2387. bottom: 0.069
  2388. }
  2389. },
  2390. side: {
  2391. height: math.unit(5 + 3/12, "feet"),
  2392. weight: math.unit(60, "kg"),
  2393. name: "Side",
  2394. image: {
  2395. source: "./media/characters/zephiro/side.svg",
  2396. extra: 2403 / 2279,
  2397. bottom: 0.015
  2398. }
  2399. },
  2400. back: {
  2401. height: math.unit(5 + 3/12, "feet"),
  2402. weight: math.unit(60, "kg"),
  2403. name: "Back",
  2404. image: {
  2405. source: "./media/characters/zephiro/back.svg",
  2406. extra: 2373 / 2244,
  2407. bottom: 0.013
  2408. }
  2409. },
  2410. hand: {
  2411. height: math.unit(0.68, "feet"),
  2412. name: "Hand",
  2413. image: {
  2414. source: "./media/characters/zephiro/hand.svg"
  2415. }
  2416. },
  2417. paw: {
  2418. height: math.unit(1, "feet"),
  2419. name: "Paw",
  2420. image: {
  2421. source: "./media/characters/zephiro/paw.svg"
  2422. }
  2423. },
  2424. beans: {
  2425. height: math.unit(0.93, "feet"),
  2426. name: "Beans",
  2427. image: {
  2428. source: "./media/characters/zephiro/beans.svg"
  2429. }
  2430. },
  2431. },
  2432. [
  2433. {
  2434. name: "Micro",
  2435. height: math.unit(3, "inches")
  2436. },
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(5 + 3 / 12, "feet"),
  2440. default: true
  2441. },
  2442. {
  2443. name: "Macro",
  2444. height: math.unit(118, "feet")
  2445. },
  2446. ]
  2447. ))
  2448. characterMakers.push(() => makeCharacter(
  2449. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2450. {
  2451. front: {
  2452. height: math.unit(5, "feet"),
  2453. weight: math.unit(90, "kg"),
  2454. name: "Front",
  2455. image: {
  2456. source: "./media/characters/fory/front.svg",
  2457. extra: 2862 / 2674,
  2458. bottom: 180 / 3043.8
  2459. }
  2460. },
  2461. back: {
  2462. height: math.unit(5, "feet"),
  2463. weight: math.unit(90, "kg"),
  2464. name: "Back",
  2465. image: {
  2466. source: "./media/characters/fory/back.svg",
  2467. extra: 2962 / 2791,
  2468. bottom: 106 / 3071.8
  2469. }
  2470. },
  2471. foot: {
  2472. height: math.unit(2.14, "feet"),
  2473. name: "Foot",
  2474. image: {
  2475. source: "./media/characters/fory/foot.svg"
  2476. }
  2477. },
  2478. },
  2479. [
  2480. {
  2481. name: "Normal",
  2482. height: math.unit(5, "feet")
  2483. },
  2484. {
  2485. name: "Macro",
  2486. height: math.unit(50, "feet"),
  2487. default: true
  2488. },
  2489. {
  2490. name: "Megamacro",
  2491. height: math.unit(10, "miles")
  2492. },
  2493. {
  2494. name: "Gigamacro",
  2495. height: math.unit(5, "earths")
  2496. },
  2497. ]
  2498. ))
  2499. characterMakers.push(() => makeCharacter(
  2500. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2501. {
  2502. front: {
  2503. height: math.unit(7, "feet"),
  2504. weight: math.unit(90, "kg"),
  2505. name: "Front",
  2506. image: {
  2507. source: "./media/characters/kurrikage/front.svg",
  2508. extra: 1,
  2509. bottom: 0.035
  2510. }
  2511. },
  2512. back: {
  2513. height: math.unit(7, "feet"),
  2514. weight: math.unit(90, "lb"),
  2515. name: "Back",
  2516. image: {
  2517. source: "./media/characters/kurrikage/back.svg"
  2518. }
  2519. },
  2520. paw: {
  2521. height: math.unit(1.5, "feet"),
  2522. name: "Paw",
  2523. image: {
  2524. source: "./media/characters/kurrikage/paw.svg"
  2525. }
  2526. },
  2527. staff: {
  2528. height: math.unit(6.7, "feet"),
  2529. name: "Staff",
  2530. image: {
  2531. source: "./media/characters/kurrikage/staff.svg"
  2532. }
  2533. },
  2534. peek: {
  2535. height: math.unit(1.05, "feet"),
  2536. name: "Peeking",
  2537. image: {
  2538. source: "./media/characters/kurrikage/peek.svg",
  2539. bottom: 0.08
  2540. }
  2541. },
  2542. },
  2543. [
  2544. {
  2545. name: "Normal",
  2546. height: math.unit(12, "feet"),
  2547. default: true
  2548. },
  2549. {
  2550. name: "Big",
  2551. height: math.unit(20, "feet")
  2552. },
  2553. {
  2554. name: "Macro",
  2555. height: math.unit(500, "feet")
  2556. },
  2557. {
  2558. name: "Megamacro",
  2559. height: math.unit(20, "miles")
  2560. },
  2561. ]
  2562. ))
  2563. characterMakers.push(() => makeCharacter(
  2564. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2565. {
  2566. front: {
  2567. height: math.unit(6, "feet"),
  2568. weight: math.unit(75, "kg"),
  2569. name: "Front",
  2570. image: {
  2571. source: "./media/characters/shingo/front.svg",
  2572. extra: 706/681,
  2573. bottom: 11/717
  2574. }
  2575. },
  2576. frontAlt: {
  2577. height: math.unit(6, "feet"),
  2578. weight: math.unit(75, "kg"),
  2579. name: "Front (Alt)",
  2580. image: {
  2581. source: "./media/characters/shingo/front-alt.svg",
  2582. extra: 3511 / 3338,
  2583. bottom: 0.005
  2584. }
  2585. },
  2586. paw: {
  2587. height: math.unit(1, "feet"),
  2588. name: "Paw",
  2589. image: {
  2590. source: "./media/characters/shingo/paw.svg"
  2591. }
  2592. },
  2593. },
  2594. [
  2595. {
  2596. name: "Micro",
  2597. height: math.unit(4, "inches")
  2598. },
  2599. {
  2600. name: "Normal",
  2601. height: math.unit(6, "feet"),
  2602. default: true
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(108, "feet")
  2607. },
  2608. {
  2609. name: "Macro+",
  2610. height: math.unit(1500, "feet")
  2611. },
  2612. ]
  2613. ))
  2614. characterMakers.push(() => makeCharacter(
  2615. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2616. {
  2617. side: {
  2618. height: math.unit(6, "feet"),
  2619. weight: math.unit(75, "kg"),
  2620. name: "Side",
  2621. image: {
  2622. source: "./media/characters/aigey/side.svg"
  2623. }
  2624. },
  2625. },
  2626. [
  2627. {
  2628. name: "Macro",
  2629. height: math.unit(200, "feet"),
  2630. default: true
  2631. },
  2632. {
  2633. name: "Megamacro",
  2634. height: math.unit(100, "miles")
  2635. },
  2636. ]
  2637. )
  2638. )
  2639. characterMakers.push(() => makeCharacter(
  2640. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2641. {
  2642. front: {
  2643. height: math.unit(5 + 5 / 12, "feet"),
  2644. weight: math.unit(75, "kg"),
  2645. name: "Front",
  2646. image: {
  2647. source: "./media/characters/natasha/front.svg",
  2648. extra: 859 / 824,
  2649. bottom: 23 / 879.6
  2650. }
  2651. },
  2652. frontNsfw: {
  2653. height: math.unit(5 + 5 / 12, "feet"),
  2654. weight: math.unit(75, "kg"),
  2655. name: "Front (NSFW)",
  2656. image: {
  2657. source: "./media/characters/natasha/front-nsfw.svg",
  2658. extra: 859 / 824,
  2659. bottom: 23 / 879.6
  2660. }
  2661. },
  2662. frontErect: {
  2663. height: math.unit(5 + 5 / 12, "feet"),
  2664. weight: math.unit(75, "kg"),
  2665. name: "Front (Erect)",
  2666. image: {
  2667. source: "./media/characters/natasha/front-erect.svg",
  2668. extra: 859 / 824,
  2669. bottom: 23 / 879.6
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(5 + 5 / 12, "feet"),
  2674. weight: math.unit(75, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/natasha/back.svg",
  2678. extra: 887.9 / 852.6,
  2679. bottom: 9.7 / 896.4
  2680. }
  2681. },
  2682. backAlt: {
  2683. height: math.unit(5 + 5 / 12, "feet"),
  2684. weight: math.unit(75, "kg"),
  2685. name: "Back (Alt)",
  2686. image: {
  2687. source: "./media/characters/natasha/back-alt.svg",
  2688. extra: 1236.7 / 1192,
  2689. bottom: 22.3 / 1258.2
  2690. }
  2691. },
  2692. dick: {
  2693. height: math.unit(1.772, "feet"),
  2694. name: "Dick",
  2695. image: {
  2696. source: "./media/characters/natasha/dick.svg"
  2697. }
  2698. },
  2699. paw: {
  2700. height: math.unit(0.250, "meters"),
  2701. name: "Paw",
  2702. image: {
  2703. source: "./media/characters/natasha/paw.svg"
  2704. }
  2705. },
  2706. },
  2707. [
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(5 + 5 / 12, "feet")
  2711. },
  2712. {
  2713. name: "Large",
  2714. height: math.unit(12, "feet")
  2715. },
  2716. {
  2717. name: "Macro",
  2718. height: math.unit(100, "feet"),
  2719. default: true
  2720. },
  2721. {
  2722. name: "Macro+",
  2723. height: math.unit(260, "feet")
  2724. },
  2725. {
  2726. name: "Macro++",
  2727. height: math.unit(1, "mile")
  2728. },
  2729. ]
  2730. ))
  2731. characterMakers.push(() => makeCharacter(
  2732. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2733. {
  2734. front: {
  2735. height: math.unit(6, "feet"),
  2736. weight: math.unit(75, "kg"),
  2737. name: "Front",
  2738. image: {
  2739. source: "./media/characters/malik/front.svg"
  2740. }
  2741. },
  2742. side: {
  2743. height: math.unit(6, "feet"),
  2744. weight: math.unit(75, "kg"),
  2745. name: "Side",
  2746. image: {
  2747. source: "./media/characters/malik/side.svg",
  2748. extra: 1.1539
  2749. }
  2750. },
  2751. back: {
  2752. height: math.unit(6, "feet"),
  2753. weight: math.unit(75, "kg"),
  2754. name: "Back",
  2755. image: {
  2756. source: "./media/characters/malik/back.svg"
  2757. }
  2758. },
  2759. },
  2760. [
  2761. {
  2762. name: "Macro",
  2763. height: math.unit(156, "feet"),
  2764. default: true
  2765. },
  2766. {
  2767. name: "Macro+",
  2768. height: math.unit(1188, "feet")
  2769. },
  2770. ]
  2771. ))
  2772. characterMakers.push(() => makeCharacter(
  2773. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2774. {
  2775. front: {
  2776. height: math.unit(6, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Front",
  2779. image: {
  2780. source: "./media/characters/sefer/front.svg",
  2781. extra: 848 / 659,
  2782. bottom: 28.3 / 876.442
  2783. }
  2784. },
  2785. back: {
  2786. height: math.unit(6, "feet"),
  2787. weight: math.unit(75, "kg"),
  2788. name: "Back",
  2789. image: {
  2790. source: "./media/characters/sefer/back.svg",
  2791. extra: 864 / 695,
  2792. bottom: 10 / 871
  2793. }
  2794. },
  2795. frontDressed: {
  2796. height: math.unit(6, "feet"),
  2797. weight: math.unit(75, "kg"),
  2798. name: "Front (Dressed)",
  2799. image: {
  2800. source: "./media/characters/sefer/front-dressed.svg",
  2801. extra: 839 / 653,
  2802. bottom: 37.6 / 878
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "Normal",
  2809. height: math.unit(6, "feet"),
  2810. default: true
  2811. },
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2816. {
  2817. body: {
  2818. height: math.unit(2.2428, "meter"),
  2819. weight: math.unit(124.738, "kg"),
  2820. name: "Body",
  2821. image: {
  2822. extra: 1225 / 1050,
  2823. source: "./media/characters/north/front.svg"
  2824. }
  2825. }
  2826. },
  2827. [
  2828. {
  2829. name: "Micro",
  2830. height: math.unit(4, "inches")
  2831. },
  2832. {
  2833. name: "Macro",
  2834. height: math.unit(63, "meters")
  2835. },
  2836. {
  2837. name: "Megamacro",
  2838. height: math.unit(101, "miles"),
  2839. default: true
  2840. }
  2841. ]
  2842. ))
  2843. characterMakers.push(() => makeCharacter(
  2844. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2845. {
  2846. angled: {
  2847. height: math.unit(4, "meter"),
  2848. weight: math.unit(150, "kg"),
  2849. name: "Angled",
  2850. image: {
  2851. source: "./media/characters/talan/angled-sfw.svg",
  2852. bottom: 29 / 3734
  2853. }
  2854. },
  2855. angledNsfw: {
  2856. height: math.unit(4, "meter"),
  2857. weight: math.unit(150, "kg"),
  2858. name: "Angled (NSFW)",
  2859. image: {
  2860. source: "./media/characters/talan/angled-nsfw.svg",
  2861. bottom: 29 / 3734
  2862. }
  2863. },
  2864. frontNsfw: {
  2865. height: math.unit(4, "meter"),
  2866. weight: math.unit(150, "kg"),
  2867. name: "Front (NSFW)",
  2868. image: {
  2869. source: "./media/characters/talan/front-nsfw.svg",
  2870. bottom: 29 / 3734
  2871. }
  2872. },
  2873. sideNsfw: {
  2874. height: math.unit(4, "meter"),
  2875. weight: math.unit(150, "kg"),
  2876. name: "Side (NSFW)",
  2877. image: {
  2878. source: "./media/characters/talan/side-nsfw.svg",
  2879. bottom: 29 / 3734
  2880. }
  2881. },
  2882. back: {
  2883. height: math.unit(4, "meter"),
  2884. weight: math.unit(150, "kg"),
  2885. name: "Back",
  2886. image: {
  2887. source: "./media/characters/talan/back.svg"
  2888. }
  2889. },
  2890. dickBottom: {
  2891. height: math.unit(0.621, "meter"),
  2892. name: "Dick (Bottom)",
  2893. image: {
  2894. source: "./media/characters/talan/dick-bottom.svg"
  2895. }
  2896. },
  2897. dickTop: {
  2898. height: math.unit(0.621, "meter"),
  2899. name: "Dick (Top)",
  2900. image: {
  2901. source: "./media/characters/talan/dick-top.svg"
  2902. }
  2903. },
  2904. dickSide: {
  2905. height: math.unit(0.305, "meter"),
  2906. name: "Dick (Side)",
  2907. image: {
  2908. source: "./media/characters/talan/dick-side.svg"
  2909. }
  2910. },
  2911. dickFront: {
  2912. height: math.unit(0.305, "meter"),
  2913. name: "Dick (Front)",
  2914. image: {
  2915. source: "./media/characters/talan/dick-front.svg"
  2916. }
  2917. },
  2918. },
  2919. [
  2920. {
  2921. name: "Normal",
  2922. height: math.unit(4, "meters")
  2923. },
  2924. {
  2925. name: "Macro",
  2926. height: math.unit(100, "meters")
  2927. },
  2928. {
  2929. name: "Megamacro",
  2930. height: math.unit(2, "miles"),
  2931. default: true
  2932. },
  2933. {
  2934. name: "Gigamacro",
  2935. height: math.unit(5000, "miles")
  2936. },
  2937. {
  2938. name: "Teramacro",
  2939. height: math.unit(100, "parsecs")
  2940. }
  2941. ]
  2942. ))
  2943. characterMakers.push(() => makeCharacter(
  2944. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2945. {
  2946. front: {
  2947. height: math.unit(2, "meter"),
  2948. weight: math.unit(90, "kg"),
  2949. name: "Front",
  2950. image: {
  2951. source: "./media/characters/gael'rathus/front.svg"
  2952. }
  2953. },
  2954. frontAlt: {
  2955. height: math.unit(2, "meter"),
  2956. weight: math.unit(90, "kg"),
  2957. name: "Front (alt)",
  2958. image: {
  2959. source: "./media/characters/gael'rathus/front-alt.svg"
  2960. }
  2961. },
  2962. frontAlt2: {
  2963. height: math.unit(2, "meter"),
  2964. weight: math.unit(90, "kg"),
  2965. name: "Front (alt 2)",
  2966. image: {
  2967. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2968. }
  2969. }
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(9, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Large",
  2979. height: math.unit(25, "feet")
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(0.25, "miles")
  2984. },
  2985. {
  2986. name: "Megamacro",
  2987. height: math.unit(10, "miles")
  2988. }
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2993. {
  2994. side: {
  2995. height: math.unit(2, "meter"),
  2996. weight: math.unit(140, "kg"),
  2997. name: "Side",
  2998. image: {
  2999. source: "./media/characters/sosha/side.svg",
  3000. bottom: 0.042
  3001. }
  3002. },
  3003. },
  3004. [
  3005. {
  3006. name: "Normal",
  3007. height: math.unit(12, "feet"),
  3008. default: true
  3009. }
  3010. ]
  3011. ))
  3012. characterMakers.push(() => makeCharacter(
  3013. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3014. {
  3015. side: {
  3016. height: math.unit(5 + 5 / 12, "feet"),
  3017. weight: math.unit(170, "kg"),
  3018. name: "Side",
  3019. image: {
  3020. source: "./media/characters/runnola/side.svg",
  3021. extra: 741 / 448,
  3022. bottom: 0.05
  3023. }
  3024. },
  3025. },
  3026. [
  3027. {
  3028. name: "Small",
  3029. height: math.unit(3, "feet")
  3030. },
  3031. {
  3032. name: "Normal",
  3033. height: math.unit(5 + 5 / 12, "feet"),
  3034. default: true
  3035. },
  3036. {
  3037. name: "Big",
  3038. height: math.unit(10, "feet")
  3039. },
  3040. ]
  3041. ))
  3042. characterMakers.push(() => makeCharacter(
  3043. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3044. {
  3045. front: {
  3046. height: math.unit(2, "meter"),
  3047. weight: math.unit(50, "kg"),
  3048. name: "Front",
  3049. image: {
  3050. source: "./media/characters/kurribird/front.svg",
  3051. bottom: 0.015
  3052. }
  3053. },
  3054. frontAlt: {
  3055. height: math.unit(1.5, "meter"),
  3056. weight: math.unit(50, "kg"),
  3057. name: "Front (Alt)",
  3058. image: {
  3059. source: "./media/characters/kurribird/front-alt.svg",
  3060. extra: 1.45
  3061. }
  3062. },
  3063. },
  3064. [
  3065. {
  3066. name: "Normal",
  3067. height: math.unit(7, "feet")
  3068. },
  3069. {
  3070. name: "Big",
  3071. height: math.unit(12, "feet"),
  3072. default: true
  3073. },
  3074. {
  3075. name: "Macro",
  3076. height: math.unit(1500, "feet")
  3077. },
  3078. {
  3079. name: "Megamacro",
  3080. height: math.unit(2, "miles")
  3081. }
  3082. ]
  3083. ))
  3084. characterMakers.push(() => makeCharacter(
  3085. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3086. {
  3087. front: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(80, "kg"),
  3090. name: "Front",
  3091. image: {
  3092. source: "./media/characters/elbial/front.svg",
  3093. extra: 1643 / 1556,
  3094. bottom: 60.2 / 1696
  3095. }
  3096. },
  3097. side: {
  3098. height: math.unit(2, "meter"),
  3099. weight: math.unit(80, "kg"),
  3100. name: "Side",
  3101. image: {
  3102. source: "./media/characters/elbial/side.svg",
  3103. extra: 1630 / 1565,
  3104. bottom: 71.5 / 1697
  3105. }
  3106. },
  3107. back: {
  3108. height: math.unit(2, "meter"),
  3109. weight: math.unit(80, "kg"),
  3110. name: "Back",
  3111. image: {
  3112. source: "./media/characters/elbial/back.svg",
  3113. extra: 1668 / 1595,
  3114. bottom: 5.6 / 1672
  3115. }
  3116. },
  3117. frontDressed: {
  3118. height: math.unit(2, "meter"),
  3119. weight: math.unit(80, "kg"),
  3120. name: "Front (Dressed)",
  3121. image: {
  3122. source: "./media/characters/elbial/front-dressed.svg",
  3123. extra: 1653 / 1584,
  3124. bottom: 57 / 1708
  3125. }
  3126. },
  3127. genitals: {
  3128. height: math.unit(2 / 3.367, "meter"),
  3129. name: "Genitals",
  3130. image: {
  3131. source: "./media/characters/elbial/genitals.svg"
  3132. }
  3133. },
  3134. },
  3135. [
  3136. {
  3137. name: "Large",
  3138. height: math.unit(100, "feet")
  3139. },
  3140. {
  3141. name: "Macro",
  3142. height: math.unit(500, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Megamacro",
  3147. height: math.unit(10, "miles")
  3148. },
  3149. {
  3150. name: "Gigamacro",
  3151. height: math.unit(25000, "miles")
  3152. },
  3153. {
  3154. name: "Full-Size",
  3155. height: math.unit(8000000, "gigaparsecs")
  3156. }
  3157. ]
  3158. ))
  3159. characterMakers.push(() => makeCharacter(
  3160. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3161. {
  3162. front: {
  3163. height: math.unit(2, "meter"),
  3164. weight: math.unit(60, "kg"),
  3165. name: "Front",
  3166. image: {
  3167. source: "./media/characters/noah/front.svg"
  3168. }
  3169. },
  3170. talons: {
  3171. height: math.unit(0.315, "meter"),
  3172. name: "Talons",
  3173. image: {
  3174. source: "./media/characters/noah/talons.svg"
  3175. }
  3176. }
  3177. },
  3178. [
  3179. {
  3180. name: "Large",
  3181. height: math.unit(50, "feet")
  3182. },
  3183. {
  3184. name: "Macro",
  3185. height: math.unit(750, "feet"),
  3186. default: true
  3187. },
  3188. {
  3189. name: "Megamacro",
  3190. height: math.unit(50, "miles")
  3191. },
  3192. {
  3193. name: "Gigamacro",
  3194. height: math.unit(100000, "miles")
  3195. },
  3196. {
  3197. name: "Full-Size",
  3198. height: math.unit(3000000000, "miles")
  3199. }
  3200. ]
  3201. ))
  3202. characterMakers.push(() => makeCharacter(
  3203. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3204. {
  3205. front: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(80, "kg"),
  3208. name: "Front",
  3209. image: {
  3210. source: "./media/characters/natalya/front.svg"
  3211. }
  3212. },
  3213. back: {
  3214. height: math.unit(2, "meter"),
  3215. weight: math.unit(80, "kg"),
  3216. name: "Back",
  3217. image: {
  3218. source: "./media/characters/natalya/back.svg"
  3219. }
  3220. }
  3221. },
  3222. [
  3223. {
  3224. name: "Normal",
  3225. height: math.unit(150, "feet"),
  3226. default: true
  3227. },
  3228. {
  3229. name: "Megamacro",
  3230. height: math.unit(5, "miles")
  3231. },
  3232. {
  3233. name: "Full-Size",
  3234. height: math.unit(600, "kiloparsecs")
  3235. }
  3236. ]
  3237. ))
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3240. {
  3241. front: {
  3242. height: math.unit(2, "meter"),
  3243. weight: math.unit(50, "kg"),
  3244. name: "Front",
  3245. image: {
  3246. source: "./media/characters/erestrebah/front.svg",
  3247. extra: 208 / 193,
  3248. bottom: 0.055
  3249. }
  3250. },
  3251. back: {
  3252. height: math.unit(2, "meter"),
  3253. weight: math.unit(50, "kg"),
  3254. name: "Back",
  3255. image: {
  3256. source: "./media/characters/erestrebah/back.svg",
  3257. extra: 1.3
  3258. }
  3259. }
  3260. },
  3261. [
  3262. {
  3263. name: "Normal",
  3264. height: math.unit(10, "feet")
  3265. },
  3266. {
  3267. name: "Large",
  3268. height: math.unit(50, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Macro",
  3273. height: math.unit(300, "feet")
  3274. },
  3275. {
  3276. name: "Macro+",
  3277. height: math.unit(750, "feet")
  3278. },
  3279. {
  3280. name: "Megamacro",
  3281. height: math.unit(3, "miles")
  3282. }
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(2, "meter"),
  3290. weight: math.unit(80, "kg"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/jennifer/front.svg",
  3294. bottom: 0.11,
  3295. extra: 1.16
  3296. }
  3297. },
  3298. frontAlt: {
  3299. height: math.unit(2, "meter"),
  3300. weight: math.unit(80, "kg"),
  3301. name: "Front (Alt)",
  3302. image: {
  3303. source: "./media/characters/jennifer/front-alt.svg"
  3304. }
  3305. }
  3306. },
  3307. [
  3308. {
  3309. name: "Canon Height",
  3310. height: math.unit(120, "feet"),
  3311. default: true
  3312. },
  3313. {
  3314. name: "Macro+",
  3315. height: math.unit(300, "feet")
  3316. },
  3317. {
  3318. name: "Megamacro",
  3319. height: math.unit(20000, "feet")
  3320. }
  3321. ]
  3322. ))
  3323. characterMakers.push(() => makeCharacter(
  3324. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3325. {
  3326. front: {
  3327. height: math.unit(2, "meter"),
  3328. weight: math.unit(50, "kg"),
  3329. name: "Front",
  3330. image: {
  3331. source: "./media/characters/kalista/front.svg",
  3332. extra: 1947 / 1700,
  3333. bottom: 76.6 / 1412.98
  3334. }
  3335. },
  3336. back: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(50, "kg"),
  3339. name: "Back",
  3340. image: {
  3341. source: "./media/characters/kalista/back.svg",
  3342. extra: 1366 / 1156,
  3343. bottom: 33.9 / 1362.78
  3344. }
  3345. }
  3346. },
  3347. [
  3348. {
  3349. name: "Uncomfortably Small",
  3350. height: math.unit(10, "feet")
  3351. },
  3352. {
  3353. name: "Small",
  3354. height: math.unit(30, "feet")
  3355. },
  3356. {
  3357. name: "Macro",
  3358. height: math.unit(100, "feet"),
  3359. default: true
  3360. },
  3361. {
  3362. name: "Macro+",
  3363. height: math.unit(2000, "feet")
  3364. },
  3365. {
  3366. name: "True Form",
  3367. height: math.unit(8924, "miles")
  3368. }
  3369. ]
  3370. ))
  3371. characterMakers.push(() => makeCharacter(
  3372. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3373. {
  3374. front: {
  3375. height: math.unit(2, "meter"),
  3376. weight: math.unit(120, "kg"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/ggv/front.svg"
  3380. }
  3381. },
  3382. side: {
  3383. height: math.unit(2, "meter"),
  3384. weight: math.unit(120, "kg"),
  3385. name: "Side",
  3386. image: {
  3387. source: "./media/characters/ggv/side.svg"
  3388. }
  3389. }
  3390. },
  3391. [
  3392. {
  3393. name: "Extremely Puny",
  3394. height: math.unit(9 + 5 / 12, "feet")
  3395. },
  3396. {
  3397. name: "Horribly Small",
  3398. height: math.unit(47.7, "miles"),
  3399. default: true
  3400. },
  3401. {
  3402. name: "Reasonably Sized",
  3403. height: math.unit(25000, "parsecs")
  3404. },
  3405. {
  3406. name: "Slightly Uncompressed",
  3407. height: math.unit(7.77e31, "parsecs")
  3408. },
  3409. {
  3410. name: "Omniversal",
  3411. height: math.unit(1e300, "meters")
  3412. },
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3417. {
  3418. front: {
  3419. height: math.unit(2, "meter"),
  3420. weight: math.unit(75, "lb"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/napalm/front.svg"
  3424. }
  3425. },
  3426. back: {
  3427. height: math.unit(2, "meter"),
  3428. weight: math.unit(75, "lb"),
  3429. name: "Back",
  3430. image: {
  3431. source: "./media/characters/napalm/back.svg"
  3432. }
  3433. }
  3434. },
  3435. [
  3436. {
  3437. name: "Standard",
  3438. height: math.unit(55, "feet"),
  3439. default: true
  3440. }
  3441. ]
  3442. ))
  3443. characterMakers.push(() => makeCharacter(
  3444. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3445. {
  3446. front: {
  3447. height: math.unit(7 + 5 / 6, "feet"),
  3448. weight: math.unit(325, "lb"),
  3449. name: "Front",
  3450. image: {
  3451. source: "./media/characters/asana/front.svg",
  3452. extra: 1133 / 1060,
  3453. bottom: 15.2 / 1148.6
  3454. }
  3455. },
  3456. back: {
  3457. height: math.unit(7 + 5 / 6, "feet"),
  3458. weight: math.unit(325, "lb"),
  3459. name: "Back",
  3460. image: {
  3461. source: "./media/characters/asana/back.svg",
  3462. extra: 1114 / 1043,
  3463. bottom: 5 / 1120
  3464. }
  3465. },
  3466. dressedDark: {
  3467. height: math.unit(7 + 5 / 6, "feet"),
  3468. weight: math.unit(325, "lb"),
  3469. name: "Dressed (Dark)",
  3470. image: {
  3471. source: "./media/characters/asana/dressed-dark.svg",
  3472. extra: 1133 / 1060,
  3473. bottom: 15.2 / 1148.6
  3474. }
  3475. },
  3476. dressedLight: {
  3477. height: math.unit(7 + 5 / 6, "feet"),
  3478. weight: math.unit(325, "lb"),
  3479. name: "Dressed (Light)",
  3480. image: {
  3481. source: "./media/characters/asana/dressed-light.svg",
  3482. extra: 1133 / 1060,
  3483. bottom: 15.2 / 1148.6
  3484. }
  3485. },
  3486. },
  3487. [
  3488. {
  3489. name: "Standard",
  3490. height: math.unit(7 + 5 / 6, "feet"),
  3491. default: true
  3492. },
  3493. {
  3494. name: "Large",
  3495. height: math.unit(10, "meters")
  3496. },
  3497. {
  3498. name: "Macro",
  3499. height: math.unit(2500, "meters")
  3500. },
  3501. {
  3502. name: "Megamacro",
  3503. height: math.unit(5e6, "meters")
  3504. },
  3505. {
  3506. name: "Examacro",
  3507. height: math.unit(5e12, "lightyears")
  3508. },
  3509. {
  3510. name: "Max Size",
  3511. height: math.unit(1e31, "lightyears")
  3512. }
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3517. {
  3518. front: {
  3519. height: math.unit(2, "meter"),
  3520. weight: math.unit(60, "kg"),
  3521. name: "Front",
  3522. image: {
  3523. source: "./media/characters/ebony/front.svg",
  3524. bottom: 0.03,
  3525. extra: 1045 / 810 + 0.03
  3526. }
  3527. },
  3528. side: {
  3529. height: math.unit(2, "meter"),
  3530. weight: math.unit(60, "kg"),
  3531. name: "Side",
  3532. image: {
  3533. source: "./media/characters/ebony/side.svg",
  3534. bottom: 0.03,
  3535. extra: 1045 / 810 + 0.03
  3536. }
  3537. },
  3538. back: {
  3539. height: math.unit(2, "meter"),
  3540. weight: math.unit(60, "kg"),
  3541. name: "Back",
  3542. image: {
  3543. source: "./media/characters/ebony/back.svg",
  3544. bottom: 0.01,
  3545. extra: 1045 / 810 + 0.01
  3546. }
  3547. },
  3548. },
  3549. [
  3550. // TODO check why I did this lol
  3551. {
  3552. name: "Standard",
  3553. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3554. default: true
  3555. },
  3556. {
  3557. name: "Macro",
  3558. height: math.unit(200, "feet")
  3559. },
  3560. {
  3561. name: "Gigamacro",
  3562. height: math.unit(13000, "km")
  3563. }
  3564. ]
  3565. ))
  3566. characterMakers.push(() => makeCharacter(
  3567. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3568. {
  3569. front: {
  3570. height: math.unit(6, "feet"),
  3571. weight: math.unit(175, "lb"),
  3572. name: "Front",
  3573. image: {
  3574. source: "./media/characters/mountain/front.svg",
  3575. extra: 972 / 955,
  3576. bottom: 64 / 1036.6
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(6, "feet"),
  3581. weight: math.unit(175, "lb"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/mountain/back.svg",
  3585. extra: 970 / 950,
  3586. bottom: 28.25 / 999
  3587. }
  3588. },
  3589. },
  3590. [
  3591. {
  3592. name: "Large",
  3593. height: math.unit(20, "meters")
  3594. },
  3595. {
  3596. name: "Macro",
  3597. height: math.unit(300, "meters")
  3598. },
  3599. {
  3600. name: "Gigamacro",
  3601. height: math.unit(10000, "km"),
  3602. default: true
  3603. },
  3604. {
  3605. name: "Examacro",
  3606. height: math.unit(10e9, "lightyears")
  3607. }
  3608. ]
  3609. ))
  3610. characterMakers.push(() => makeCharacter(
  3611. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3612. {
  3613. front: {
  3614. height: math.unit(8, "feet"),
  3615. weight: math.unit(500, "lb"),
  3616. name: "Front",
  3617. image: {
  3618. source: "./media/characters/rick/front.svg"
  3619. }
  3620. }
  3621. },
  3622. [
  3623. {
  3624. name: "Normal",
  3625. height: math.unit(8, "feet"),
  3626. default: true
  3627. },
  3628. {
  3629. name: "Macro",
  3630. height: math.unit(5, "km")
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(8, "feet"),
  3639. weight: math.unit(120, "lb"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/ona/front.svg"
  3643. }
  3644. },
  3645. frontAlt: {
  3646. height: math.unit(8, "feet"),
  3647. weight: math.unit(120, "lb"),
  3648. name: "Front (Alt)",
  3649. image: {
  3650. source: "./media/characters/ona/front-alt.svg"
  3651. }
  3652. },
  3653. back: {
  3654. height: math.unit(8, "feet"),
  3655. weight: math.unit(120, "lb"),
  3656. name: "Back",
  3657. image: {
  3658. source: "./media/characters/ona/back.svg"
  3659. }
  3660. },
  3661. foot: {
  3662. height: math.unit(1.1, "feet"),
  3663. name: "Foot",
  3664. image: {
  3665. source: "./media/characters/ona/foot.svg"
  3666. }
  3667. }
  3668. },
  3669. [
  3670. {
  3671. name: "Megamacro",
  3672. height: math.unit(70, "km"),
  3673. default: true
  3674. },
  3675. {
  3676. name: "Gigamacro",
  3677. height: math.unit(681818, "miles")
  3678. },
  3679. {
  3680. name: "Examacro",
  3681. height: math.unit(3800000, "lightyears")
  3682. },
  3683. ]
  3684. ))
  3685. characterMakers.push(() => makeCharacter(
  3686. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3687. {
  3688. front: {
  3689. height: math.unit(12, "feet"),
  3690. weight: math.unit(3000, "lb"),
  3691. name: "Front",
  3692. image: {
  3693. source: "./media/characters/mech/front.svg",
  3694. extra: 2900 / 2770,
  3695. bottom: 110 / 3010
  3696. }
  3697. },
  3698. back: {
  3699. height: math.unit(12, "feet"),
  3700. weight: math.unit(3000, "lb"),
  3701. name: "Back",
  3702. image: {
  3703. source: "./media/characters/mech/back.svg",
  3704. extra: 3011 / 2890,
  3705. bottom: 94 / 3105
  3706. }
  3707. },
  3708. maw: {
  3709. height: math.unit(3.07, "feet"),
  3710. name: "Maw",
  3711. image: {
  3712. source: "./media/characters/mech/maw.svg"
  3713. }
  3714. },
  3715. head: {
  3716. height: math.unit(2.82, "feet"),
  3717. name: "Head",
  3718. image: {
  3719. source: "./media/characters/mech/head.svg"
  3720. }
  3721. },
  3722. dick: {
  3723. height: math.unit(1.43, "feet"),
  3724. name: "Dick",
  3725. image: {
  3726. source: "./media/characters/mech/dick.svg"
  3727. }
  3728. },
  3729. },
  3730. [
  3731. {
  3732. name: "Normal",
  3733. height: math.unit(12, "feet")
  3734. },
  3735. {
  3736. name: "Macro",
  3737. height: math.unit(300, "feet"),
  3738. default: true
  3739. },
  3740. {
  3741. name: "Macro+",
  3742. height: math.unit(1500, "feet")
  3743. },
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(1.3, "meter"),
  3751. weight: math.unit(30, "kg"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/gregory/front.svg",
  3755. }
  3756. }
  3757. },
  3758. [
  3759. {
  3760. name: "Normal",
  3761. height: math.unit(1.3, "meter"),
  3762. default: true
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(20, "meter")
  3767. }
  3768. ]
  3769. ))
  3770. characterMakers.push(() => makeCharacter(
  3771. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3772. {
  3773. front: {
  3774. height: math.unit(2.8, "meter"),
  3775. weight: math.unit(200, "kg"),
  3776. name: "Front",
  3777. image: {
  3778. source: "./media/characters/elory/front.svg",
  3779. }
  3780. }
  3781. },
  3782. [
  3783. {
  3784. name: "Normal",
  3785. height: math.unit(2.8, "meter"),
  3786. default: true
  3787. },
  3788. {
  3789. name: "Macro",
  3790. height: math.unit(38, "meter")
  3791. }
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3796. {
  3797. front: {
  3798. height: math.unit(470, "feet"),
  3799. weight: math.unit(924, "tons"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/angelpatamon/front.svg",
  3803. }
  3804. }
  3805. },
  3806. [
  3807. {
  3808. name: "Normal",
  3809. height: math.unit(470, "feet"),
  3810. default: true
  3811. },
  3812. {
  3813. name: "Deity Size I",
  3814. height: math.unit(28651.2, "km")
  3815. },
  3816. {
  3817. name: "Deity Size II",
  3818. height: math.unit(171907.2, "km")
  3819. }
  3820. ]
  3821. ))
  3822. characterMakers.push(() => makeCharacter(
  3823. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3824. {
  3825. side: {
  3826. height: math.unit(7.2, "meter"),
  3827. weight: math.unit(8.2, "tons"),
  3828. name: "Side",
  3829. image: {
  3830. source: "./media/characters/cryae/side.svg",
  3831. extra: 3500 / 1500
  3832. }
  3833. }
  3834. },
  3835. [
  3836. {
  3837. name: "Normal",
  3838. height: math.unit(7.2, "meter"),
  3839. default: true
  3840. }
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3845. {
  3846. front: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(175, "lb"),
  3849. name: "Front",
  3850. image: {
  3851. source: "./media/characters/xera/front.svg",
  3852. extra: 2377 / 1972,
  3853. bottom: 75.5 / 2452
  3854. }
  3855. },
  3856. side: {
  3857. height: math.unit(6, "feet"),
  3858. weight: math.unit(175, "lb"),
  3859. name: "Side",
  3860. image: {
  3861. source: "./media/characters/xera/side.svg",
  3862. extra: 2345 / 2019,
  3863. bottom: 39.7 / 2384
  3864. }
  3865. },
  3866. back: {
  3867. height: math.unit(6, "feet"),
  3868. weight: math.unit(175, "lb"),
  3869. name: "Back",
  3870. image: {
  3871. source: "./media/characters/xera/back.svg",
  3872. extra: 2095 / 1984,
  3873. bottom: 67 / 2166
  3874. }
  3875. },
  3876. },
  3877. [
  3878. {
  3879. name: "Small",
  3880. height: math.unit(10, "feet")
  3881. },
  3882. {
  3883. name: "Macro",
  3884. height: math.unit(500, "meters"),
  3885. default: true
  3886. },
  3887. {
  3888. name: "Macro+",
  3889. height: math.unit(10, "km")
  3890. },
  3891. {
  3892. name: "Gigamacro",
  3893. height: math.unit(25000, "km")
  3894. },
  3895. {
  3896. name: "Teramacro",
  3897. height: math.unit(3e6, "km")
  3898. }
  3899. ]
  3900. ))
  3901. characterMakers.push(() => makeCharacter(
  3902. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3903. {
  3904. front: {
  3905. height: math.unit(6, "feet"),
  3906. weight: math.unit(175, "lb"),
  3907. name: "Front",
  3908. image: {
  3909. source: "./media/characters/nebula/front.svg",
  3910. extra: 2566 / 2362,
  3911. bottom: 81 / 2644
  3912. }
  3913. }
  3914. },
  3915. [
  3916. {
  3917. name: "Small",
  3918. height: math.unit(4.5, "meters")
  3919. },
  3920. {
  3921. name: "Macro",
  3922. height: math.unit(1500, "meters"),
  3923. default: true
  3924. },
  3925. {
  3926. name: "Megamacro",
  3927. height: math.unit(150, "km")
  3928. },
  3929. {
  3930. name: "Gigamacro",
  3931. height: math.unit(27000, "km")
  3932. }
  3933. ]
  3934. ))
  3935. characterMakers.push(() => makeCharacter(
  3936. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3937. {
  3938. front: {
  3939. height: math.unit(6, "feet"),
  3940. weight: math.unit(225, "lb"),
  3941. name: "Front",
  3942. image: {
  3943. source: "./media/characters/abysgar/front.svg"
  3944. }
  3945. }
  3946. },
  3947. [
  3948. {
  3949. name: "Small",
  3950. height: math.unit(4.5, "meters")
  3951. },
  3952. {
  3953. name: "Macro",
  3954. height: math.unit(1250, "meters"),
  3955. default: true
  3956. },
  3957. {
  3958. name: "Megamacro",
  3959. height: math.unit(125, "km")
  3960. },
  3961. {
  3962. name: "Gigamacro",
  3963. height: math.unit(26000, "km")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3969. {
  3970. front: {
  3971. height: math.unit(6, "feet"),
  3972. weight: math.unit(180, "lb"),
  3973. name: "Front",
  3974. image: {
  3975. source: "./media/characters/yakuz/front.svg"
  3976. }
  3977. }
  3978. },
  3979. [
  3980. {
  3981. name: "Small",
  3982. height: math.unit(5, "meters")
  3983. },
  3984. {
  3985. name: "Macro",
  3986. height: math.unit(1500, "meters"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Megamacro",
  3991. height: math.unit(200, "km")
  3992. },
  3993. {
  3994. name: "Gigamacro",
  3995. height: math.unit(100000, "km")
  3996. }
  3997. ]
  3998. ))
  3999. characterMakers.push(() => makeCharacter(
  4000. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4001. {
  4002. front: {
  4003. height: math.unit(6, "feet"),
  4004. weight: math.unit(175, "lb"),
  4005. name: "Front",
  4006. image: {
  4007. source: "./media/characters/mirova/front.svg",
  4008. extra: 3334 / 3071,
  4009. bottom: 42 / 3375.6
  4010. }
  4011. }
  4012. },
  4013. [
  4014. {
  4015. name: "Small",
  4016. height: math.unit(5, "meters")
  4017. },
  4018. {
  4019. name: "Macro",
  4020. height: math.unit(900, "meters"),
  4021. default: true
  4022. },
  4023. {
  4024. name: "Megamacro",
  4025. height: math.unit(135, "km")
  4026. },
  4027. {
  4028. name: "Gigamacro",
  4029. height: math.unit(20000, "km")
  4030. }
  4031. ]
  4032. ))
  4033. characterMakers.push(() => makeCharacter(
  4034. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4035. {
  4036. side: {
  4037. height: math.unit(28.35, "feet"),
  4038. weight: math.unit(99.75, "tons"),
  4039. name: "Side",
  4040. image: {
  4041. source: "./media/characters/asana-mech/side.svg",
  4042. extra: 923 / 699,
  4043. bottom: 50 / 975
  4044. }
  4045. },
  4046. chaingun: {
  4047. height: math.unit(7, "feet"),
  4048. weight: math.unit(2400, "lb"),
  4049. name: "Chaingun",
  4050. image: {
  4051. source: "./media/characters/asana-mech/chaingun.svg"
  4052. }
  4053. },
  4054. laser: {
  4055. height: math.unit(7.12, "feet"),
  4056. weight: math.unit(2000, "lb"),
  4057. name: "Laser",
  4058. image: {
  4059. source: "./media/characters/asana-mech/laser.svg"
  4060. }
  4061. },
  4062. },
  4063. [
  4064. {
  4065. name: "Normal",
  4066. height: math.unit(28.35, "feet"),
  4067. default: true
  4068. },
  4069. {
  4070. name: "Macro",
  4071. height: math.unit(2500, "feet")
  4072. },
  4073. {
  4074. name: "Megamacro",
  4075. height: math.unit(25, "miles")
  4076. },
  4077. {
  4078. name: "Examacro",
  4079. height: math.unit(6e8, "lightyears")
  4080. },
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4085. {
  4086. front: {
  4087. height: math.unit(5, "meters"),
  4088. weight: math.unit(1000, "kg"),
  4089. name: "Front",
  4090. image: {
  4091. source: "./media/characters/asche/front.svg",
  4092. extra: 1258 / 1190,
  4093. bottom: 47 / 1305
  4094. }
  4095. },
  4096. frontUnderwear: {
  4097. height: math.unit(5, "meters"),
  4098. weight: math.unit(1000, "kg"),
  4099. name: "Front (Underwear)",
  4100. image: {
  4101. source: "./media/characters/asche/front-underwear.svg",
  4102. extra: 1258 / 1190,
  4103. bottom: 47 / 1305
  4104. }
  4105. },
  4106. frontDressed: {
  4107. height: math.unit(5, "meters"),
  4108. weight: math.unit(1000, "kg"),
  4109. name: "Front (Dressed)",
  4110. image: {
  4111. source: "./media/characters/asche/front-dressed.svg",
  4112. extra: 1258 / 1190,
  4113. bottom: 47 / 1305
  4114. }
  4115. },
  4116. frontArmor: {
  4117. height: math.unit(5, "meters"),
  4118. weight: math.unit(1000, "kg"),
  4119. name: "Front (Armored)",
  4120. image: {
  4121. source: "./media/characters/asche/front-armored.svg",
  4122. extra: 1374 / 1308,
  4123. bottom: 23 / 1397
  4124. }
  4125. },
  4126. mp724: {
  4127. height: math.unit(0.96, "meters"),
  4128. weight: math.unit(38, "kg"),
  4129. name: "H&K MP724",
  4130. image: {
  4131. source: "./media/characters/asche/h&k-mp724.svg"
  4132. }
  4133. },
  4134. side: {
  4135. height: math.unit(5, "meters"),
  4136. weight: math.unit(1000, "kg"),
  4137. name: "Side",
  4138. image: {
  4139. source: "./media/characters/asche/side.svg",
  4140. extra: 1717 / 1609,
  4141. bottom: 0.005
  4142. }
  4143. },
  4144. back: {
  4145. height: math.unit(5, "meters"),
  4146. weight: math.unit(1000, "kg"),
  4147. name: "Back",
  4148. image: {
  4149. source: "./media/characters/asche/back.svg",
  4150. extra: 1570 / 1501
  4151. }
  4152. },
  4153. },
  4154. [
  4155. {
  4156. name: "DEFCON 5",
  4157. height: math.unit(5, "meters")
  4158. },
  4159. {
  4160. name: "DEFCON 4",
  4161. height: math.unit(500, "meters"),
  4162. default: true
  4163. },
  4164. {
  4165. name: "DEFCON 3",
  4166. height: math.unit(5, "km")
  4167. },
  4168. {
  4169. name: "DEFCON 2",
  4170. height: math.unit(500, "km")
  4171. },
  4172. {
  4173. name: "DEFCON 1",
  4174. height: math.unit(500000, "km")
  4175. },
  4176. {
  4177. name: "DEFCON 0",
  4178. height: math.unit(3, "gigaparsecs")
  4179. },
  4180. ]
  4181. ))
  4182. characterMakers.push(() => makeCharacter(
  4183. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4184. {
  4185. front: {
  4186. height: math.unit(2, "meters"),
  4187. weight: math.unit(76, "kg"),
  4188. name: "Front",
  4189. image: {
  4190. source: "./media/characters/gale/front.svg"
  4191. }
  4192. },
  4193. frontAlt1: {
  4194. height: math.unit(2, "meters"),
  4195. weight: math.unit(76, "kg"),
  4196. name: "Front (Alt 1)",
  4197. image: {
  4198. source: "./media/characters/gale/front-alt-1.svg"
  4199. }
  4200. },
  4201. frontAlt2: {
  4202. height: math.unit(2, "meters"),
  4203. weight: math.unit(76, "kg"),
  4204. name: "Front (Alt 2)",
  4205. image: {
  4206. source: "./media/characters/gale/front-alt-2.svg"
  4207. }
  4208. },
  4209. },
  4210. [
  4211. {
  4212. name: "Normal",
  4213. height: math.unit(7, "feet")
  4214. },
  4215. {
  4216. name: "Macro",
  4217. height: math.unit(150, "feet"),
  4218. default: true
  4219. },
  4220. {
  4221. name: "Macro+",
  4222. height: math.unit(300, "feet")
  4223. },
  4224. ]
  4225. ))
  4226. characterMakers.push(() => makeCharacter(
  4227. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4228. {
  4229. front: {
  4230. height: math.unit(2, "meters"),
  4231. weight: math.unit(76, "kg"),
  4232. name: "Front",
  4233. image: {
  4234. source: "./media/characters/draylen/front.svg"
  4235. }
  4236. }
  4237. },
  4238. [
  4239. {
  4240. name: "Macro",
  4241. height: math.unit(150, "feet"),
  4242. default: true
  4243. }
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4248. {
  4249. front: {
  4250. height: math.unit(7 + 9 / 12, "feet"),
  4251. weight: math.unit(379, "lbs"),
  4252. name: "Front",
  4253. image: {
  4254. source: "./media/characters/chez/front.svg"
  4255. }
  4256. },
  4257. side: {
  4258. height: math.unit(7 + 9 / 12, "feet"),
  4259. weight: math.unit(379, "lbs"),
  4260. name: "Side",
  4261. image: {
  4262. source: "./media/characters/chez/side.svg"
  4263. }
  4264. }
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(7 + 9 / 12, "feet"),
  4270. default: true
  4271. },
  4272. {
  4273. name: "God King",
  4274. height: math.unit(9750000, "meters")
  4275. }
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4280. {
  4281. front: {
  4282. height: math.unit(6, "feet"),
  4283. weight: math.unit(275, "lbs"),
  4284. name: "Front",
  4285. image: {
  4286. source: "./media/characters/kaylum/front.svg",
  4287. bottom: 0.01,
  4288. extra: 1166 / 1031
  4289. }
  4290. },
  4291. frontWingless: {
  4292. height: math.unit(6, "feet"),
  4293. weight: math.unit(275, "lbs"),
  4294. name: "Front (Wingless)",
  4295. image: {
  4296. source: "./media/characters/kaylum/front-wingless.svg",
  4297. bottom: 0.01,
  4298. extra: 1117 / 1031
  4299. }
  4300. }
  4301. },
  4302. [
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(3.05, "meters")
  4306. },
  4307. {
  4308. name: "Master",
  4309. height: math.unit(5.5, "meters")
  4310. },
  4311. {
  4312. name: "Rampage",
  4313. height: math.unit(19, "meters")
  4314. },
  4315. {
  4316. name: "Macro Lite",
  4317. height: math.unit(37, "meters")
  4318. },
  4319. {
  4320. name: "Hyper Predator",
  4321. height: math.unit(61, "meters")
  4322. },
  4323. {
  4324. name: "Macro",
  4325. height: math.unit(138, "meters"),
  4326. default: true
  4327. }
  4328. ]
  4329. ))
  4330. characterMakers.push(() => makeCharacter(
  4331. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4332. {
  4333. front: {
  4334. height: math.unit(6, "feet"),
  4335. weight: math.unit(150, "lbs"),
  4336. name: "Front",
  4337. image: {
  4338. source: "./media/characters/geta/front.svg"
  4339. }
  4340. }
  4341. },
  4342. [
  4343. {
  4344. name: "Micro",
  4345. height: math.unit(3, "inches"),
  4346. default: true
  4347. },
  4348. {
  4349. name: "Normal",
  4350. height: math.unit(5 + 5 / 12, "feet")
  4351. }
  4352. ]
  4353. ))
  4354. characterMakers.push(() => makeCharacter(
  4355. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4356. {
  4357. front: {
  4358. height: math.unit(6, "feet"),
  4359. weight: math.unit(300, "lbs"),
  4360. name: "Front",
  4361. image: {
  4362. source: "./media/characters/tyrnn/front.svg"
  4363. }
  4364. }
  4365. },
  4366. [
  4367. {
  4368. name: "Main Height",
  4369. height: math.unit(355, "feet"),
  4370. default: true
  4371. },
  4372. {
  4373. name: "Fave. Height",
  4374. height: math.unit(2400, "feet")
  4375. }
  4376. ]
  4377. ))
  4378. characterMakers.push(() => makeCharacter(
  4379. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4380. {
  4381. front: {
  4382. height: math.unit(6, "feet"),
  4383. weight: math.unit(300, "lbs"),
  4384. name: "Front",
  4385. image: {
  4386. source: "./media/characters/appledectomy/front.svg"
  4387. }
  4388. }
  4389. },
  4390. [
  4391. {
  4392. name: "Macro",
  4393. height: math.unit(2500, "feet")
  4394. },
  4395. {
  4396. name: "Megamacro",
  4397. height: math.unit(50, "miles"),
  4398. default: true
  4399. },
  4400. {
  4401. name: "Gigamacro",
  4402. height: math.unit(5000, "miles")
  4403. },
  4404. {
  4405. name: "Teramacro",
  4406. height: math.unit(250000, "miles")
  4407. },
  4408. ]
  4409. ))
  4410. characterMakers.push(() => makeCharacter(
  4411. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4412. {
  4413. front: {
  4414. height: math.unit(6, "feet"),
  4415. weight: math.unit(200, "lbs"),
  4416. name: "Front",
  4417. image: {
  4418. source: "./media/characters/vulpes/front.svg",
  4419. extra: 573 / 543,
  4420. bottom: 0.033
  4421. }
  4422. },
  4423. side: {
  4424. height: math.unit(6, "feet"),
  4425. weight: math.unit(200, "lbs"),
  4426. name: "Side",
  4427. image: {
  4428. source: "./media/characters/vulpes/side.svg",
  4429. extra: 577 / 549,
  4430. bottom: 11 / 588
  4431. }
  4432. },
  4433. back: {
  4434. height: math.unit(6, "feet"),
  4435. weight: math.unit(200, "lbs"),
  4436. name: "Back",
  4437. image: {
  4438. source: "./media/characters/vulpes/back.svg",
  4439. extra: 573 / 549,
  4440. bottom: 20 / 593
  4441. }
  4442. },
  4443. feet: {
  4444. height: math.unit(1.276, "feet"),
  4445. name: "Feet",
  4446. image: {
  4447. source: "./media/characters/vulpes/feet.svg"
  4448. }
  4449. },
  4450. maw: {
  4451. height: math.unit(1.18, "feet"),
  4452. name: "Maw",
  4453. image: {
  4454. source: "./media/characters/vulpes/maw.svg"
  4455. }
  4456. },
  4457. },
  4458. [
  4459. {
  4460. name: "Micro",
  4461. height: math.unit(2, "inches")
  4462. },
  4463. {
  4464. name: "Normal",
  4465. height: math.unit(6.3, "feet")
  4466. },
  4467. {
  4468. name: "Macro",
  4469. height: math.unit(850, "feet")
  4470. },
  4471. {
  4472. name: "Megamacro",
  4473. height: math.unit(7500, "feet"),
  4474. default: true
  4475. },
  4476. {
  4477. name: "Gigamacro",
  4478. height: math.unit(570000, "miles")
  4479. }
  4480. ]
  4481. ))
  4482. characterMakers.push(() => makeCharacter(
  4483. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4484. {
  4485. front: {
  4486. height: math.unit(6, "feet"),
  4487. weight: math.unit(210, "lbs"),
  4488. name: "Front",
  4489. image: {
  4490. source: "./media/characters/rain-fallen/front.svg"
  4491. }
  4492. },
  4493. side: {
  4494. height: math.unit(6, "feet"),
  4495. weight: math.unit(210, "lbs"),
  4496. name: "Side",
  4497. image: {
  4498. source: "./media/characters/rain-fallen/side.svg"
  4499. }
  4500. },
  4501. back: {
  4502. height: math.unit(6, "feet"),
  4503. weight: math.unit(210, "lbs"),
  4504. name: "Back",
  4505. image: {
  4506. source: "./media/characters/rain-fallen/back.svg"
  4507. }
  4508. },
  4509. feral: {
  4510. height: math.unit(9, "feet"),
  4511. weight: math.unit(700, "lbs"),
  4512. name: "Feral",
  4513. image: {
  4514. source: "./media/characters/rain-fallen/feral.svg"
  4515. }
  4516. },
  4517. },
  4518. [
  4519. {
  4520. name: "Meddling with Mortals",
  4521. height: math.unit(8 + 8/12, "feet")
  4522. },
  4523. {
  4524. name: "Normal",
  4525. height: math.unit(5, "meter")
  4526. },
  4527. {
  4528. name: "Macro",
  4529. height: math.unit(150, "meter"),
  4530. default: true
  4531. },
  4532. {
  4533. name: "Megamacro",
  4534. height: math.unit(278e6, "meter")
  4535. },
  4536. {
  4537. name: "Gigamacro",
  4538. height: math.unit(2e9, "meter")
  4539. },
  4540. {
  4541. name: "Teramacro",
  4542. height: math.unit(8e12, "meter")
  4543. },
  4544. {
  4545. name: "Devourer",
  4546. height: math.unit(14, "zettameters")
  4547. },
  4548. {
  4549. name: "Scarlet King",
  4550. height: math.unit(18, "yottameters")
  4551. },
  4552. {
  4553. name: "Void",
  4554. height: math.unit(1e88, "yottameters")
  4555. }
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4560. {
  4561. standing: {
  4562. height: math.unit(6, "feet"),
  4563. weight: math.unit(180, "lbs"),
  4564. name: "Standing",
  4565. image: {
  4566. source: "./media/characters/zaakira/standing.svg",
  4567. extra: 1599/1504,
  4568. bottom: 39/1638
  4569. }
  4570. },
  4571. laying: {
  4572. height: math.unit(3, "feet"),
  4573. weight: math.unit(180, "lbs"),
  4574. name: "Laying",
  4575. image: {
  4576. source: "./media/characters/zaakira/laying.svg"
  4577. }
  4578. },
  4579. },
  4580. [
  4581. {
  4582. name: "Normal",
  4583. height: math.unit(12, "feet")
  4584. },
  4585. {
  4586. name: "Macro",
  4587. height: math.unit(279, "feet"),
  4588. default: true
  4589. }
  4590. ]
  4591. ))
  4592. characterMakers.push(() => makeCharacter(
  4593. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4594. {
  4595. femSfw: {
  4596. height: math.unit(8, "feet"),
  4597. weight: math.unit(350, "lb"),
  4598. name: "Fem",
  4599. image: {
  4600. source: "./media/characters/sigvald/fem-sfw.svg",
  4601. extra: 182 / 164,
  4602. bottom: 8.7 / 190.5
  4603. }
  4604. },
  4605. femNsfw: {
  4606. height: math.unit(8, "feet"),
  4607. weight: math.unit(350, "lb"),
  4608. name: "Fem (NSFW)",
  4609. image: {
  4610. source: "./media/characters/sigvald/fem-nsfw.svg",
  4611. extra: 182 / 164,
  4612. bottom: 8.7 / 190.5
  4613. }
  4614. },
  4615. maleNsfw: {
  4616. height: math.unit(8, "feet"),
  4617. weight: math.unit(350, "lb"),
  4618. name: "Male (NSFW)",
  4619. image: {
  4620. source: "./media/characters/sigvald/male-nsfw.svg",
  4621. extra: 182 / 164,
  4622. bottom: 8.7 / 190.5
  4623. }
  4624. },
  4625. hermNsfw: {
  4626. height: math.unit(8, "feet"),
  4627. weight: math.unit(350, "lb"),
  4628. name: "Herm (NSFW)",
  4629. image: {
  4630. source: "./media/characters/sigvald/herm-nsfw.svg",
  4631. extra: 182 / 164,
  4632. bottom: 8.7 / 190.5
  4633. }
  4634. },
  4635. dick: {
  4636. height: math.unit(2.36, "feet"),
  4637. name: "Dick",
  4638. image: {
  4639. source: "./media/characters/sigvald/dick.svg"
  4640. }
  4641. },
  4642. eye: {
  4643. height: math.unit(0.31, "feet"),
  4644. name: "Eye",
  4645. image: {
  4646. source: "./media/characters/sigvald/eye.svg"
  4647. }
  4648. },
  4649. mouth: {
  4650. height: math.unit(0.92, "feet"),
  4651. name: "Mouth",
  4652. image: {
  4653. source: "./media/characters/sigvald/mouth.svg"
  4654. }
  4655. },
  4656. paws: {
  4657. height: math.unit(2.2, "feet"),
  4658. name: "Paws",
  4659. image: {
  4660. source: "./media/characters/sigvald/paws.svg"
  4661. }
  4662. }
  4663. },
  4664. [
  4665. {
  4666. name: "Normal",
  4667. height: math.unit(8, "feet")
  4668. },
  4669. {
  4670. name: "Large",
  4671. height: math.unit(12, "feet")
  4672. },
  4673. {
  4674. name: "Larger",
  4675. height: math.unit(20, "feet")
  4676. },
  4677. {
  4678. name: "Macro",
  4679. height: math.unit(150, "feet")
  4680. },
  4681. {
  4682. name: "Macro+",
  4683. height: math.unit(200, "feet"),
  4684. default: true
  4685. },
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4690. {
  4691. side: {
  4692. height: math.unit(12, "feet"),
  4693. weight: math.unit(2000, "kg"),
  4694. name: "Side",
  4695. image: {
  4696. source: "./media/characters/scott/side.svg",
  4697. extra: 754 / 724,
  4698. bottom: 0.069
  4699. }
  4700. },
  4701. upright: {
  4702. height: math.unit(12, "feet"),
  4703. weight: math.unit(2000, "kg"),
  4704. name: "Upright",
  4705. image: {
  4706. source: "./media/characters/scott/upright.svg",
  4707. extra: 3881 / 3722,
  4708. bottom: 0.05
  4709. }
  4710. },
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(12, "feet"),
  4716. default: true
  4717. },
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4722. {
  4723. side: {
  4724. height: math.unit(8, "meters"),
  4725. weight: math.unit(84755, "lbs"),
  4726. name: "Side",
  4727. image: {
  4728. source: "./media/characters/tobias/side.svg",
  4729. extra: 1474 / 1096,
  4730. bottom: 38.9 / 1513.1235
  4731. }
  4732. },
  4733. },
  4734. [
  4735. {
  4736. name: "Normal",
  4737. height: math.unit(8, "meters"),
  4738. default: true
  4739. },
  4740. ]
  4741. ))
  4742. characterMakers.push(() => makeCharacter(
  4743. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4744. {
  4745. front: {
  4746. height: math.unit(5.5, "feet"),
  4747. weight: math.unit(400, "lbs"),
  4748. name: "Front",
  4749. image: {
  4750. source: "./media/characters/kieran/front.svg",
  4751. extra: 2694 / 2364,
  4752. bottom: 217 / 2908
  4753. }
  4754. },
  4755. side: {
  4756. height: math.unit(5.5, "feet"),
  4757. weight: math.unit(400, "lbs"),
  4758. name: "Side",
  4759. image: {
  4760. source: "./media/characters/kieran/side.svg",
  4761. extra: 875 / 777,
  4762. bottom: 84.6 / 959
  4763. }
  4764. },
  4765. },
  4766. [
  4767. {
  4768. name: "Normal",
  4769. height: math.unit(5.5, "feet"),
  4770. default: true
  4771. },
  4772. ]
  4773. ))
  4774. characterMakers.push(() => makeCharacter(
  4775. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4776. {
  4777. side: {
  4778. height: math.unit(2, "meters"),
  4779. weight: math.unit(70, "kg"),
  4780. name: "Side",
  4781. image: {
  4782. source: "./media/characters/sanya/side.svg",
  4783. bottom: 0.02,
  4784. extra: 1.02
  4785. }
  4786. },
  4787. },
  4788. [
  4789. {
  4790. name: "Small",
  4791. height: math.unit(2, "meters")
  4792. },
  4793. {
  4794. name: "Normal",
  4795. height: math.unit(3, "meters")
  4796. },
  4797. {
  4798. name: "Macro",
  4799. height: math.unit(16, "meters"),
  4800. default: true
  4801. },
  4802. ]
  4803. ))
  4804. characterMakers.push(() => makeCharacter(
  4805. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4806. {
  4807. front: {
  4808. height: math.unit(2, "meters"),
  4809. weight: math.unit(120, "kg"),
  4810. name: "Front",
  4811. image: {
  4812. source: "./media/characters/miranda/front.svg",
  4813. extra: 195 / 185,
  4814. bottom: 10.9 / 206.5
  4815. }
  4816. },
  4817. back: {
  4818. height: math.unit(2, "meters"),
  4819. weight: math.unit(120, "kg"),
  4820. name: "Back",
  4821. image: {
  4822. source: "./media/characters/miranda/back.svg",
  4823. extra: 201 / 193,
  4824. bottom: 2.3 / 203.7
  4825. }
  4826. },
  4827. },
  4828. [
  4829. {
  4830. name: "Normal",
  4831. height: math.unit(10, "feet"),
  4832. default: true
  4833. }
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "James", species: ["deer"], tags: ["anthro"] },
  4838. {
  4839. side: {
  4840. height: math.unit(2, "meters"),
  4841. weight: math.unit(100, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/james/front.svg",
  4845. extra: 10 / 8.5
  4846. }
  4847. },
  4848. },
  4849. [
  4850. {
  4851. name: "Normal",
  4852. height: math.unit(8.5, "feet"),
  4853. default: true
  4854. }
  4855. ]
  4856. ))
  4857. characterMakers.push(() => makeCharacter(
  4858. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4859. {
  4860. side: {
  4861. height: math.unit(9.5, "feet"),
  4862. weight: math.unit(2500, "lbs"),
  4863. name: "Side",
  4864. image: {
  4865. source: "./media/characters/heather/side.svg"
  4866. }
  4867. },
  4868. },
  4869. [
  4870. {
  4871. name: "Normal",
  4872. height: math.unit(9.5, "feet"),
  4873. default: true
  4874. }
  4875. ]
  4876. ))
  4877. characterMakers.push(() => makeCharacter(
  4878. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4879. {
  4880. side: {
  4881. height: math.unit(6.5, "feet"),
  4882. weight: math.unit(400, "lbs"),
  4883. name: "Side",
  4884. image: {
  4885. source: "./media/characters/lukas/side.svg",
  4886. extra: 7.25 / 6.5
  4887. }
  4888. },
  4889. },
  4890. [
  4891. {
  4892. name: "Normal",
  4893. height: math.unit(6.5, "feet"),
  4894. default: true
  4895. }
  4896. ]
  4897. ))
  4898. characterMakers.push(() => makeCharacter(
  4899. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4900. {
  4901. side: {
  4902. height: math.unit(5, "feet"),
  4903. weight: math.unit(3000, "lbs"),
  4904. name: "Side",
  4905. image: {
  4906. source: "./media/characters/louise/side.svg"
  4907. }
  4908. },
  4909. },
  4910. [
  4911. {
  4912. name: "Normal",
  4913. height: math.unit(5, "feet"),
  4914. default: true
  4915. }
  4916. ]
  4917. ))
  4918. characterMakers.push(() => makeCharacter(
  4919. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4920. {
  4921. side: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(150, "lbs"),
  4924. name: "Side",
  4925. image: {
  4926. source: "./media/characters/ramona/side.svg"
  4927. }
  4928. },
  4929. },
  4930. [
  4931. {
  4932. name: "Normal",
  4933. height: math.unit(5.3, "meters"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Macro",
  4938. height: math.unit(20, "stories")
  4939. },
  4940. {
  4941. name: "Macro+",
  4942. height: math.unit(50, "stories")
  4943. },
  4944. ]
  4945. ))
  4946. characterMakers.push(() => makeCharacter(
  4947. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4948. {
  4949. standing: {
  4950. height: math.unit(5.75, "feet"),
  4951. weight: math.unit(160, "lbs"),
  4952. name: "Standing",
  4953. image: {
  4954. source: "./media/characters/deerpuff/standing.svg",
  4955. extra: 682 / 624
  4956. }
  4957. },
  4958. sitting: {
  4959. height: math.unit(5.75 / 1.79, "feet"),
  4960. weight: math.unit(160, "lbs"),
  4961. name: "Sitting",
  4962. image: {
  4963. source: "./media/characters/deerpuff/sitting.svg",
  4964. bottom: 44 / 400,
  4965. extra: 1
  4966. }
  4967. },
  4968. taurLaying: {
  4969. height: math.unit(6, "feet"),
  4970. weight: math.unit(400, "lbs"),
  4971. name: "Taur (Laying)",
  4972. image: {
  4973. source: "./media/characters/deerpuff/taur-laying.svg"
  4974. }
  4975. },
  4976. },
  4977. [
  4978. {
  4979. name: "Puffball",
  4980. height: math.unit(6, "inches")
  4981. },
  4982. {
  4983. name: "Normalpuff",
  4984. height: math.unit(5.75, "feet")
  4985. },
  4986. {
  4987. name: "Macropuff",
  4988. height: math.unit(1500, "feet"),
  4989. default: true
  4990. },
  4991. {
  4992. name: "Megapuff",
  4993. height: math.unit(500, "miles")
  4994. },
  4995. {
  4996. name: "Gigapuff",
  4997. height: math.unit(250000, "miles")
  4998. },
  4999. {
  5000. name: "Omegapuff",
  5001. height: math.unit(1000, "lightyears")
  5002. },
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5007. {
  5008. stomping: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(170, "lbs"),
  5011. name: "Stomping",
  5012. image: {
  5013. source: "./media/characters/vivian/stomping.svg"
  5014. }
  5015. },
  5016. sitting: {
  5017. height: math.unit(6 / 1.75, "feet"),
  5018. weight: math.unit(170, "lbs"),
  5019. name: "Sitting",
  5020. image: {
  5021. source: "./media/characters/vivian/sitting.svg",
  5022. bottom: 1 / 6.4,
  5023. extra: 1,
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(7, "feet"),
  5031. default: true
  5032. },
  5033. {
  5034. name: "Macro",
  5035. height: math.unit(10, "stories")
  5036. },
  5037. {
  5038. name: "Macro+",
  5039. height: math.unit(30, "stories")
  5040. },
  5041. {
  5042. name: "Megamacro",
  5043. height: math.unit(10, "miles")
  5044. },
  5045. {
  5046. name: "Megamacro+",
  5047. height: math.unit(2750000, "meters")
  5048. },
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5053. {
  5054. front: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(160, "lbs"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/prince/front.svg",
  5060. extra: 3400 / 3000
  5061. }
  5062. },
  5063. jumping: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(160, "lbs"),
  5066. name: "Jumping",
  5067. image: {
  5068. source: "./media/characters/prince/jump.svg",
  5069. extra: 2555 / 2134
  5070. }
  5071. },
  5072. },
  5073. [
  5074. {
  5075. name: "Normal",
  5076. height: math.unit(7.75, "feet"),
  5077. default: true
  5078. },
  5079. {
  5080. name: "Not cute",
  5081. height: math.unit(17, "feet")
  5082. },
  5083. {
  5084. name: "I said NOT",
  5085. height: math.unit(91, "feet")
  5086. },
  5087. {
  5088. name: "Please stop",
  5089. height: math.unit(560, "feet")
  5090. },
  5091. {
  5092. name: "What have you done",
  5093. height: math.unit(2200, "feet")
  5094. },
  5095. {
  5096. name: "Deer God",
  5097. height: math.unit(3.6, "miles")
  5098. },
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5103. {
  5104. standing: {
  5105. height: math.unit(6, "feet"),
  5106. weight: math.unit(300, "lbs"),
  5107. name: "Standing",
  5108. image: {
  5109. source: "./media/characters/psymon/standing.svg",
  5110. extra: 1888 / 1810,
  5111. bottom: 0.05
  5112. }
  5113. },
  5114. slithering: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(300, "lbs"),
  5117. name: "Slithering",
  5118. image: {
  5119. source: "./media/characters/psymon/slithering.svg",
  5120. extra: 1330 / 1224
  5121. }
  5122. },
  5123. slitheringAlt: {
  5124. height: math.unit(6, "feet"),
  5125. weight: math.unit(300, "lbs"),
  5126. name: "Slithering (Alt)",
  5127. image: {
  5128. source: "./media/characters/psymon/slithering-alt.svg",
  5129. extra: 1330 / 1224
  5130. }
  5131. },
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(11.25, "feet"),
  5137. default: true
  5138. },
  5139. {
  5140. name: "Large",
  5141. height: math.unit(27, "feet")
  5142. },
  5143. {
  5144. name: "Giant",
  5145. height: math.unit(87, "feet")
  5146. },
  5147. {
  5148. name: "Macro",
  5149. height: math.unit(365, "feet")
  5150. },
  5151. {
  5152. name: "Megamacro",
  5153. height: math.unit(3, "miles")
  5154. },
  5155. {
  5156. name: "World Serpent",
  5157. height: math.unit(8000, "miles")
  5158. },
  5159. ]
  5160. ))
  5161. characterMakers.push(() => makeCharacter(
  5162. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5163. {
  5164. front: {
  5165. height: math.unit(6, "feet"),
  5166. weight: math.unit(180, "lbs"),
  5167. name: "Front",
  5168. image: {
  5169. source: "./media/characters/daimos/front.svg",
  5170. extra: 4160 / 3897,
  5171. bottom: 0.021
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(8, "feet"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Big Dog",
  5183. height: math.unit(22, "feet")
  5184. },
  5185. {
  5186. name: "Macro",
  5187. height: math.unit(127, "feet")
  5188. },
  5189. {
  5190. name: "Megamacro",
  5191. height: math.unit(3600, "feet")
  5192. },
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5197. {
  5198. side: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(180, "lbs"),
  5201. name: "Side",
  5202. image: {
  5203. source: "./media/characters/blake/side.svg",
  5204. extra: 1212 / 1120,
  5205. bottom: 0.05
  5206. }
  5207. },
  5208. crouched: {
  5209. height: math.unit(6 * 0.57, "feet"),
  5210. weight: math.unit(180, "lbs"),
  5211. name: "Crouched",
  5212. image: {
  5213. source: "./media/characters/blake/crouched.svg",
  5214. extra: 840 / 587,
  5215. bottom: 0.04
  5216. }
  5217. },
  5218. bent: {
  5219. height: math.unit(6 * 0.75, "feet"),
  5220. weight: math.unit(180, "lbs"),
  5221. name: "Bent",
  5222. image: {
  5223. source: "./media/characters/blake/bent.svg",
  5224. extra: 592 / 544,
  5225. bottom: 0.035
  5226. }
  5227. },
  5228. },
  5229. [
  5230. {
  5231. name: "Normal",
  5232. height: math.unit(8 + 1 / 6, "feet"),
  5233. default: true
  5234. },
  5235. {
  5236. name: "Big Backside",
  5237. height: math.unit(37, "feet")
  5238. },
  5239. {
  5240. name: "Subway Shredder",
  5241. height: math.unit(72, "feet")
  5242. },
  5243. {
  5244. name: "City Carver",
  5245. height: math.unit(1675, "feet")
  5246. },
  5247. {
  5248. name: "Tectonic Tweaker",
  5249. height: math.unit(2300, "miles")
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5255. {
  5256. front: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(180, "lbs"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/guisetto/front.svg",
  5262. extra: 856 / 817,
  5263. bottom: 0.06
  5264. }
  5265. },
  5266. airborne: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(180, "lbs"),
  5269. name: "Airborne",
  5270. image: {
  5271. source: "./media/characters/guisetto/airborne.svg",
  5272. extra: 584 / 525
  5273. }
  5274. },
  5275. },
  5276. [
  5277. {
  5278. name: "Normal",
  5279. height: math.unit(10 + 11 / 12, "feet"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Large",
  5284. height: math.unit(35, "feet")
  5285. },
  5286. {
  5287. name: "Macro",
  5288. height: math.unit(475, "feet")
  5289. },
  5290. ]
  5291. ))
  5292. characterMakers.push(() => makeCharacter(
  5293. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5294. {
  5295. front: {
  5296. height: math.unit(6, "feet"),
  5297. weight: math.unit(180, "lbs"),
  5298. name: "Front",
  5299. image: {
  5300. source: "./media/characters/luxor/front.svg",
  5301. extra: 2940 / 2152
  5302. }
  5303. },
  5304. back: {
  5305. height: math.unit(6, "feet"),
  5306. weight: math.unit(180, "lbs"),
  5307. name: "Back",
  5308. image: {
  5309. source: "./media/characters/luxor/back.svg",
  5310. extra: 1083 / 960
  5311. }
  5312. },
  5313. },
  5314. [
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(5 + 5 / 6, "feet"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "Lamp",
  5322. height: math.unit(50, "feet")
  5323. },
  5324. {
  5325. name: "Lämp",
  5326. height: math.unit(300, "feet")
  5327. },
  5328. {
  5329. name: "The sun is a lamp",
  5330. height: math.unit(250000, "miles")
  5331. },
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5336. {
  5337. front: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(50, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/huoyan/front.svg"
  5343. }
  5344. },
  5345. side: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(180, "lbs"),
  5348. name: "Side",
  5349. image: {
  5350. source: "./media/characters/huoyan/side.svg"
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Chef",
  5357. height: math.unit(9, "feet")
  5358. },
  5359. {
  5360. name: "Normal",
  5361. height: math.unit(65, "feet"),
  5362. default: true
  5363. },
  5364. {
  5365. name: "Macro",
  5366. height: math.unit(780, "feet")
  5367. },
  5368. {
  5369. name: "Flaming Mountain",
  5370. height: math.unit(4.8, "miles")
  5371. },
  5372. {
  5373. name: "Celestial",
  5374. height: math.unit(765000, "miles")
  5375. },
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(5 + 3 / 4, "feet"),
  5383. weight: math.unit(120, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/tails/front.svg"
  5387. }
  5388. }
  5389. },
  5390. [
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(5 + 3 / 4, "feet"),
  5394. default: true
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5400. {
  5401. front: {
  5402. height: math.unit(4, "feet"),
  5403. weight: math.unit(50, "lbs"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/rainy/front.svg"
  5407. }
  5408. }
  5409. },
  5410. [
  5411. {
  5412. name: "Macro",
  5413. height: math.unit(800, "feet"),
  5414. default: true
  5415. }
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5420. {
  5421. front: {
  5422. height: math.unit(6, "feet"),
  5423. weight: math.unit(150, "lbs"),
  5424. name: "Front",
  5425. image: {
  5426. source: "./media/characters/rainier/front.svg"
  5427. }
  5428. }
  5429. },
  5430. [
  5431. {
  5432. name: "Micro",
  5433. height: math.unit(2, "mm"),
  5434. default: true
  5435. }
  5436. ]
  5437. ))
  5438. characterMakers.push(() => makeCharacter(
  5439. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5440. {
  5441. front: {
  5442. height: math.unit(6, "feet"),
  5443. weight: math.unit(180, "lbs"),
  5444. name: "Front",
  5445. image: {
  5446. source: "./media/characters/andy/front.svg"
  5447. }
  5448. }
  5449. },
  5450. [
  5451. {
  5452. name: "Normal",
  5453. height: math.unit(8, "feet"),
  5454. default: true
  5455. },
  5456. {
  5457. name: "Macro",
  5458. height: math.unit(1000, "feet")
  5459. },
  5460. {
  5461. name: "Megamacro",
  5462. height: math.unit(5, "miles")
  5463. },
  5464. {
  5465. name: "Gigamacro",
  5466. height: math.unit(5000, "miles")
  5467. },
  5468. ]
  5469. ))
  5470. characterMakers.push(() => makeCharacter(
  5471. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5472. {
  5473. front: {
  5474. height: math.unit(6, "feet"),
  5475. weight: math.unit(210, "lbs"),
  5476. name: "Front",
  5477. image: {
  5478. source: "./media/characters/cimmaron/front-sfw.svg",
  5479. extra: 701 / 676,
  5480. bottom: 0.046
  5481. }
  5482. },
  5483. back: {
  5484. height: math.unit(6, "feet"),
  5485. weight: math.unit(210, "lbs"),
  5486. name: "Back",
  5487. image: {
  5488. source: "./media/characters/cimmaron/back-sfw.svg",
  5489. extra: 701 / 676,
  5490. bottom: 0.046
  5491. }
  5492. },
  5493. frontNsfw: {
  5494. height: math.unit(6, "feet"),
  5495. weight: math.unit(210, "lbs"),
  5496. name: "Front (NSFW)",
  5497. image: {
  5498. source: "./media/characters/cimmaron/front-nsfw.svg",
  5499. extra: 701 / 676,
  5500. bottom: 0.046
  5501. }
  5502. },
  5503. backNsfw: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(210, "lbs"),
  5506. name: "Back (NSFW)",
  5507. image: {
  5508. source: "./media/characters/cimmaron/back-nsfw.svg",
  5509. extra: 701 / 676,
  5510. bottom: 0.046
  5511. }
  5512. },
  5513. dick: {
  5514. height: math.unit(1.714, "feet"),
  5515. name: "Dick",
  5516. image: {
  5517. source: "./media/characters/cimmaron/dick.svg"
  5518. }
  5519. },
  5520. },
  5521. [
  5522. {
  5523. name: "Normal",
  5524. height: math.unit(6, "feet"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Macro Mayor",
  5529. height: math.unit(350, "meters")
  5530. },
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5535. {
  5536. front: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(200, "lbs"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/akari/front.svg",
  5542. extra: 962 / 901,
  5543. bottom: 0.04
  5544. }
  5545. }
  5546. },
  5547. [
  5548. {
  5549. name: "Micro",
  5550. height: math.unit(5, "inches"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Normal",
  5555. height: math.unit(7, "feet")
  5556. },
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5561. {
  5562. front: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(140, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/cynosura/front.svg",
  5568. extra: 896 / 847
  5569. }
  5570. },
  5571. back: {
  5572. height: math.unit(6, "feet"),
  5573. weight: math.unit(140, "lbs"),
  5574. name: "Back",
  5575. image: {
  5576. source: "./media/characters/cynosura/back.svg",
  5577. extra: 1365 / 1250
  5578. }
  5579. },
  5580. },
  5581. [
  5582. {
  5583. name: "Micro",
  5584. height: math.unit(4, "inches")
  5585. },
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(5.75, "feet"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Tall",
  5593. height: math.unit(10, "feet")
  5594. },
  5595. {
  5596. name: "Big",
  5597. height: math.unit(20, "feet")
  5598. },
  5599. {
  5600. name: "Macro",
  5601. height: math.unit(50, "feet")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(13 + 2/12, "feet"),
  5610. weight: math.unit(800, "kg"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/gin/front.svg",
  5614. extra: 1312/1191,
  5615. bottom: 45/1357
  5616. }
  5617. },
  5618. mouth: {
  5619. height: math.unit(2.39 * 1.8, "feet"),
  5620. name: "Mouth",
  5621. image: {
  5622. source: "./media/characters/gin/mouth.svg"
  5623. }
  5624. },
  5625. hand: {
  5626. height: math.unit(1.57 * 2.19, "feet"),
  5627. name: "Hand",
  5628. image: {
  5629. source: "./media/characters/gin/hand.svg"
  5630. }
  5631. },
  5632. foot: {
  5633. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5634. name: "Foot",
  5635. image: {
  5636. source: "./media/characters/gin/foot.svg"
  5637. }
  5638. },
  5639. sole: {
  5640. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5641. name: "Sole",
  5642. image: {
  5643. source: "./media/characters/gin/sole.svg"
  5644. }
  5645. },
  5646. },
  5647. [
  5648. {
  5649. name: "Very Small",
  5650. height: math.unit(13 + 2 / 12, "feet")
  5651. },
  5652. {
  5653. name: "Micro",
  5654. height: math.unit(600, "miles")
  5655. },
  5656. {
  5657. name: "Regular",
  5658. height: math.unit(20, "earths"),
  5659. default: true
  5660. },
  5661. {
  5662. name: "Macro",
  5663. height: math.unit(2.2, "solarradii")
  5664. },
  5665. {
  5666. name: "Teramacro",
  5667. height: math.unit(1.2, "galaxies")
  5668. },
  5669. {
  5670. name: "Omegamacro",
  5671. height: math.unit(200, "universes")
  5672. },
  5673. ]
  5674. ))
  5675. characterMakers.push(() => makeCharacter(
  5676. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5677. {
  5678. front: {
  5679. height: math.unit(6 + 1 / 6, "feet"),
  5680. weight: math.unit(178, "lbs"),
  5681. name: "Front",
  5682. image: {
  5683. source: "./media/characters/guy/front.svg"
  5684. }
  5685. }
  5686. },
  5687. [
  5688. {
  5689. name: "Normal",
  5690. height: math.unit(6 + 1 / 6, "feet"),
  5691. default: true
  5692. },
  5693. {
  5694. name: "Large",
  5695. height: math.unit(25 + 7 / 12, "feet")
  5696. },
  5697. {
  5698. name: "Macro",
  5699. height: math.unit(60 + 9 / 12, "feet")
  5700. },
  5701. {
  5702. name: "Macro+",
  5703. height: math.unit(246, "feet")
  5704. },
  5705. {
  5706. name: "Macro++",
  5707. height: math.unit(878, "feet")
  5708. }
  5709. ]
  5710. ))
  5711. characterMakers.push(() => makeCharacter(
  5712. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5713. {
  5714. front: {
  5715. height: math.unit(9, "feet"),
  5716. weight: math.unit(800, "lbs"),
  5717. name: "Front",
  5718. image: {
  5719. source: "./media/characters/tiberius/front.svg",
  5720. extra: 2295 / 2071
  5721. }
  5722. },
  5723. back: {
  5724. height: math.unit(9, "feet"),
  5725. weight: math.unit(800, "lbs"),
  5726. name: "Back",
  5727. image: {
  5728. source: "./media/characters/tiberius/back.svg",
  5729. extra: 2373 / 2160
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(9, "feet"),
  5737. default: true
  5738. }
  5739. ]
  5740. ))
  5741. characterMakers.push(() => makeCharacter(
  5742. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5743. {
  5744. front: {
  5745. height: math.unit(6, "feet"),
  5746. weight: math.unit(600, "lbs"),
  5747. name: "Front",
  5748. image: {
  5749. source: "./media/characters/surgo/front.svg",
  5750. extra: 3591 / 2227
  5751. }
  5752. },
  5753. back: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(600, "lbs"),
  5756. name: "Back",
  5757. image: {
  5758. source: "./media/characters/surgo/back.svg",
  5759. extra: 3557 / 2228
  5760. }
  5761. },
  5762. laying: {
  5763. height: math.unit(6 * 0.85, "feet"),
  5764. weight: math.unit(600, "lbs"),
  5765. name: "Laying",
  5766. image: {
  5767. source: "./media/characters/surgo/laying.svg"
  5768. }
  5769. },
  5770. },
  5771. [
  5772. {
  5773. name: "Normal",
  5774. height: math.unit(6, "feet"),
  5775. default: true
  5776. }
  5777. ]
  5778. ))
  5779. characterMakers.push(() => makeCharacter(
  5780. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5781. {
  5782. side: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(150, "lbs"),
  5785. name: "Side",
  5786. image: {
  5787. source: "./media/characters/cibus/side.svg",
  5788. extra: 800 / 400
  5789. }
  5790. },
  5791. },
  5792. [
  5793. {
  5794. name: "Normal",
  5795. height: math.unit(6, "feet"),
  5796. default: true
  5797. }
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5802. {
  5803. front: {
  5804. height: math.unit(6, "feet"),
  5805. weight: math.unit(240, "lbs"),
  5806. name: "Front",
  5807. image: {
  5808. source: "./media/characters/nibbles/front.svg"
  5809. }
  5810. },
  5811. side: {
  5812. height: math.unit(6, "feet"),
  5813. weight: math.unit(240, "lbs"),
  5814. name: "Side",
  5815. image: {
  5816. source: "./media/characters/nibbles/side.svg"
  5817. }
  5818. },
  5819. },
  5820. [
  5821. {
  5822. name: "Normal",
  5823. height: math.unit(9, "feet"),
  5824. default: true
  5825. }
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5830. {
  5831. side: {
  5832. height: math.unit(5 + 1 / 6, "feet"),
  5833. weight: math.unit(130, "lbs"),
  5834. name: "Side",
  5835. image: {
  5836. source: "./media/characters/rikky/side.svg",
  5837. extra: 851 / 801
  5838. }
  5839. },
  5840. },
  5841. [
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(5 + 1 / 6, "feet")
  5845. },
  5846. {
  5847. name: "Macro",
  5848. height: math.unit(152, "feet"),
  5849. default: true
  5850. },
  5851. {
  5852. name: "Megamacro",
  5853. height: math.unit(7, "miles")
  5854. }
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5859. {
  5860. side: {
  5861. height: math.unit(370, "cm"),
  5862. weight: math.unit(350, "lbs"),
  5863. name: "Side",
  5864. image: {
  5865. source: "./media/characters/malfressa/side.svg"
  5866. }
  5867. },
  5868. walking: {
  5869. height: math.unit(370, "cm"),
  5870. weight: math.unit(350, "lbs"),
  5871. name: "Walking",
  5872. image: {
  5873. source: "./media/characters/malfressa/walking.svg"
  5874. }
  5875. },
  5876. feral: {
  5877. height: math.unit(2500, "cm"),
  5878. weight: math.unit(100000, "lbs"),
  5879. name: "Feral",
  5880. image: {
  5881. source: "./media/characters/malfressa/feral.svg",
  5882. extra: 2108 / 837,
  5883. bottom: 0.02
  5884. }
  5885. },
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(370, "cm")
  5891. },
  5892. {
  5893. name: "Macro",
  5894. height: math.unit(300, "meters"),
  5895. default: true
  5896. }
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(6, "feet"),
  5904. weight: math.unit(60, "kg"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/jaro/front.svg"
  5908. }
  5909. },
  5910. back: {
  5911. height: math.unit(6, "feet"),
  5912. weight: math.unit(60, "kg"),
  5913. name: "Back",
  5914. image: {
  5915. source: "./media/characters/jaro/back.svg"
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Micro",
  5922. height: math.unit(7, "inches")
  5923. },
  5924. {
  5925. name: "Normal",
  5926. height: math.unit(5.5, "feet"),
  5927. default: true
  5928. },
  5929. {
  5930. name: "Minimacro",
  5931. height: math.unit(20, "feet")
  5932. },
  5933. {
  5934. name: "Macro",
  5935. height: math.unit(200, "meters")
  5936. }
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(195, "lb"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/rogue/front.svg"
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Macro",
  5954. height: math.unit(90, "feet"),
  5955. default: true
  5956. },
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5961. {
  5962. front: {
  5963. height: math.unit(5 + 8 / 12, "feet"),
  5964. weight: math.unit(140, "lb"),
  5965. name: "Front",
  5966. image: {
  5967. source: "./media/characters/piper/front.svg",
  5968. extra: 3948/3655,
  5969. bottom: 0/3948
  5970. }
  5971. },
  5972. },
  5973. [
  5974. {
  5975. name: "Micro",
  5976. height: math.unit(2, "inches")
  5977. },
  5978. {
  5979. name: "Normal",
  5980. height: math.unit(5 + 8 / 12, "feet")
  5981. },
  5982. {
  5983. name: "Macro",
  5984. height: math.unit(250, "feet"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Megamacro",
  5989. height: math.unit(7, "miles")
  5990. },
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5995. {
  5996. front: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(220, "lb"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/gemini/front.svg"
  6002. }
  6003. },
  6004. back: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(220, "lb"),
  6007. name: "Back",
  6008. image: {
  6009. source: "./media/characters/gemini/back.svg"
  6010. }
  6011. },
  6012. kneeling: {
  6013. height: math.unit(6 / 1.5, "feet"),
  6014. weight: math.unit(220, "lb"),
  6015. name: "Kneeling",
  6016. image: {
  6017. source: "./media/characters/gemini/kneeling.svg",
  6018. bottom: 0.02
  6019. }
  6020. },
  6021. },
  6022. [
  6023. {
  6024. name: "Macro",
  6025. height: math.unit(300, "meters"),
  6026. default: true
  6027. },
  6028. {
  6029. name: "Megamacro",
  6030. height: math.unit(6900, "meters")
  6031. },
  6032. ]
  6033. ))
  6034. characterMakers.push(() => makeCharacter(
  6035. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6036. {
  6037. anthro: {
  6038. height: math.unit(2.35, "meters"),
  6039. weight: math.unit(73, "kg"),
  6040. name: "Anthro",
  6041. image: {
  6042. source: "./media/characters/alicia/anthro.svg",
  6043. extra: 2571 / 2385,
  6044. bottom: 75 / 2648
  6045. }
  6046. },
  6047. paw: {
  6048. height: math.unit(1.32, "feet"),
  6049. name: "Paw",
  6050. image: {
  6051. source: "./media/characters/alicia/paw.svg"
  6052. }
  6053. },
  6054. feral: {
  6055. height: math.unit(1.69, "meters"),
  6056. weight: math.unit(73, "kg"),
  6057. name: "Feral",
  6058. image: {
  6059. source: "./media/characters/alicia/feral.svg",
  6060. extra: 2123 / 1715,
  6061. bottom: 222 / 2349
  6062. }
  6063. },
  6064. },
  6065. [
  6066. {
  6067. name: "Normal",
  6068. height: math.unit(2.35, "meters")
  6069. },
  6070. {
  6071. name: "Macro",
  6072. height: math.unit(60, "meters"),
  6073. default: true
  6074. },
  6075. {
  6076. name: "Megamacro",
  6077. height: math.unit(10000, "kilometers")
  6078. },
  6079. ]
  6080. ))
  6081. characterMakers.push(() => makeCharacter(
  6082. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6083. {
  6084. front: {
  6085. height: math.unit(7, "feet"),
  6086. weight: math.unit(250, "lbs"),
  6087. name: "Front",
  6088. image: {
  6089. source: "./media/characters/archy/front.svg"
  6090. }
  6091. }
  6092. },
  6093. [
  6094. {
  6095. name: "Micro",
  6096. height: math.unit(1, "inch")
  6097. },
  6098. {
  6099. name: "Shorty",
  6100. height: math.unit(5, "feet")
  6101. },
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(7, "feet")
  6105. },
  6106. {
  6107. name: "Macro",
  6108. height: math.unit(600, "meters"),
  6109. default: true
  6110. },
  6111. {
  6112. name: "Megamacro",
  6113. height: math.unit(1, "mile")
  6114. },
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6119. {
  6120. front: {
  6121. height: math.unit(1.65, "meters"),
  6122. weight: math.unit(74, "kg"),
  6123. name: "Front",
  6124. image: {
  6125. source: "./media/characters/berri/front.svg",
  6126. extra: 857 / 837,
  6127. bottom: 18 / 877
  6128. }
  6129. },
  6130. bum: {
  6131. height: math.unit(1.46, "feet"),
  6132. name: "Bum",
  6133. image: {
  6134. source: "./media/characters/berri/bum.svg"
  6135. }
  6136. },
  6137. mouth: {
  6138. height: math.unit(0.44, "feet"),
  6139. name: "Mouth",
  6140. image: {
  6141. source: "./media/characters/berri/mouth.svg"
  6142. }
  6143. },
  6144. paw: {
  6145. height: math.unit(0.826, "feet"),
  6146. name: "Paw",
  6147. image: {
  6148. source: "./media/characters/berri/paw.svg"
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(1.65, "meters")
  6156. },
  6157. {
  6158. name: "Macro",
  6159. height: math.unit(60, "m"),
  6160. default: true
  6161. },
  6162. {
  6163. name: "Megamacro",
  6164. height: math.unit(9.213, "km")
  6165. },
  6166. {
  6167. name: "Planet Eater",
  6168. height: math.unit(489, "megameters")
  6169. },
  6170. {
  6171. name: "Teramacro",
  6172. height: math.unit(2471635000000, "meters")
  6173. },
  6174. {
  6175. name: "Examacro",
  6176. height: math.unit(8.0624e+26, "meters")
  6177. }
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(1.72, "meters"),
  6185. weight: math.unit(68, "kg"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/lexi/front.svg"
  6189. }
  6190. }
  6191. },
  6192. [
  6193. {
  6194. name: "Very Smol",
  6195. height: math.unit(10, "mm")
  6196. },
  6197. {
  6198. name: "Micro",
  6199. height: math.unit(6.8, "cm"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(1.72, "m")
  6205. }
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(1.69, "meters"),
  6213. weight: math.unit(68, "kg"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/martin/front.svg",
  6217. extra: 596 / 581
  6218. }
  6219. }
  6220. },
  6221. [
  6222. {
  6223. name: "Micro",
  6224. height: math.unit(6.85, "cm"),
  6225. default: true
  6226. },
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(1.69, "m")
  6230. }
  6231. ]
  6232. ))
  6233. characterMakers.push(() => makeCharacter(
  6234. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6235. {
  6236. front: {
  6237. height: math.unit(1.69, "meters"),
  6238. weight: math.unit(68, "kg"),
  6239. name: "Front",
  6240. image: {
  6241. source: "./media/characters/juno/front.svg"
  6242. }
  6243. }
  6244. },
  6245. [
  6246. {
  6247. name: "Micro",
  6248. height: math.unit(7, "cm")
  6249. },
  6250. {
  6251. name: "Normal",
  6252. height: math.unit(1.89, "m")
  6253. },
  6254. {
  6255. name: "Macro",
  6256. height: math.unit(353, "meters"),
  6257. default: true
  6258. }
  6259. ]
  6260. ))
  6261. characterMakers.push(() => makeCharacter(
  6262. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6263. {
  6264. front: {
  6265. height: math.unit(1.93, "meters"),
  6266. weight: math.unit(83, "kg"),
  6267. name: "Front",
  6268. image: {
  6269. source: "./media/characters/samantha/front.svg"
  6270. }
  6271. },
  6272. frontClothed: {
  6273. height: math.unit(1.93, "meters"),
  6274. weight: math.unit(83, "kg"),
  6275. name: "Front (Clothed)",
  6276. image: {
  6277. source: "./media/characters/samantha/front-clothed.svg"
  6278. }
  6279. },
  6280. back: {
  6281. height: math.unit(1.93, "meters"),
  6282. weight: math.unit(83, "kg"),
  6283. name: "Back",
  6284. image: {
  6285. source: "./media/characters/samantha/back.svg"
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(1.93, "m")
  6293. },
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(74, "meters"),
  6297. default: true
  6298. },
  6299. {
  6300. name: "Macro+",
  6301. height: math.unit(223, "meters"),
  6302. },
  6303. {
  6304. name: "Megamacro",
  6305. height: math.unit(8381, "meters"),
  6306. },
  6307. {
  6308. name: "Megamacro+",
  6309. height: math.unit(12000, "kilometers")
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(1.92, "meters"),
  6318. weight: math.unit(80, "kg"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/dr-clay/front.svg"
  6322. }
  6323. },
  6324. frontClothed: {
  6325. height: math.unit(1.92, "meters"),
  6326. weight: math.unit(80, "kg"),
  6327. name: "Front (Clothed)",
  6328. image: {
  6329. source: "./media/characters/dr-clay/front-clothed.svg"
  6330. }
  6331. }
  6332. },
  6333. [
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(1.92, "m")
  6337. },
  6338. {
  6339. name: "Macro",
  6340. height: math.unit(214, "meters"),
  6341. default: true
  6342. },
  6343. {
  6344. name: "Macro+",
  6345. height: math.unit(12.237, "meters"),
  6346. },
  6347. {
  6348. name: "Megamacro",
  6349. height: math.unit(557, "megameters"),
  6350. },
  6351. {
  6352. name: "Unimaginable",
  6353. height: math.unit(120e9, "lightyears")
  6354. },
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(2, "meters"),
  6362. weight: math.unit(80, "kg"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6366. }
  6367. }
  6368. },
  6369. [
  6370. {
  6371. name: "Teramacro",
  6372. height: math.unit(500000, "lightyears"),
  6373. default: true
  6374. },
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6379. {
  6380. front: {
  6381. height: math.unit(2, "meters"),
  6382. weight: math.unit(150, "kg"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/vemus/front.svg",
  6386. extra: 1074/936,
  6387. bottom: 23/1097
  6388. }
  6389. }
  6390. },
  6391. [
  6392. {
  6393. name: "Normal",
  6394. height: math.unit(3.75, "meters"),
  6395. default: true
  6396. },
  6397. {
  6398. name: "Big",
  6399. height: math.unit(8, "meters")
  6400. },
  6401. {
  6402. name: "Macro",
  6403. height: math.unit(100, "meters")
  6404. },
  6405. {
  6406. name: "Macro+",
  6407. height: math.unit(1500, "meters")
  6408. },
  6409. {
  6410. name: "Stellar",
  6411. height: math.unit(14e8, "meters")
  6412. },
  6413. ]
  6414. ))
  6415. characterMakers.push(() => makeCharacter(
  6416. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6417. {
  6418. front: {
  6419. height: math.unit(2, "meters"),
  6420. weight: math.unit(70, "kg"),
  6421. name: "Front",
  6422. image: {
  6423. source: "./media/characters/beherit/front.svg",
  6424. extra: 1408 / 1242
  6425. }
  6426. }
  6427. },
  6428. [
  6429. {
  6430. name: "Normal",
  6431. height: math.unit(6, "feet")
  6432. },
  6433. {
  6434. name: "Lorg",
  6435. height: math.unit(25, "feet"),
  6436. default: true
  6437. },
  6438. {
  6439. name: "Lorger",
  6440. height: math.unit(75, "feet")
  6441. },
  6442. {
  6443. name: "Macro",
  6444. height: math.unit(200, "meters")
  6445. },
  6446. ]
  6447. ))
  6448. characterMakers.push(() => makeCharacter(
  6449. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6450. {
  6451. front: {
  6452. height: math.unit(2, "meters"),
  6453. weight: math.unit(150, "kg"),
  6454. name: "Front",
  6455. image: {
  6456. source: "./media/characters/everett/front.svg",
  6457. extra: 2038 / 1737,
  6458. bottom: 0.03
  6459. }
  6460. },
  6461. paw: {
  6462. height: math.unit(2 / 3.6, "meters"),
  6463. name: "Paw",
  6464. image: {
  6465. source: "./media/characters/everett/paw.svg"
  6466. }
  6467. },
  6468. },
  6469. [
  6470. {
  6471. name: "Normal",
  6472. height: math.unit(15, "feet"),
  6473. default: true
  6474. },
  6475. {
  6476. name: "Lorg",
  6477. height: math.unit(70, "feet"),
  6478. default: true
  6479. },
  6480. {
  6481. name: "Lorger",
  6482. height: math.unit(250, "feet")
  6483. },
  6484. {
  6485. name: "Macro",
  6486. height: math.unit(500, "meters")
  6487. },
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6492. {
  6493. front: {
  6494. height: math.unit(2, "meters"),
  6495. weight: math.unit(86, "kg"),
  6496. name: "Front",
  6497. image: {
  6498. source: "./media/characters/rose/front.svg",
  6499. extra: 350/335,
  6500. bottom: 10/360
  6501. }
  6502. },
  6503. frontAlt: {
  6504. height: math.unit(1.6, "meters"),
  6505. weight: math.unit(86, "kg"),
  6506. name: "Front (Alt)",
  6507. image: {
  6508. source: "./media/characters/rose/front-alt.svg",
  6509. extra: 299/283,
  6510. bottom: 3/302
  6511. }
  6512. },
  6513. plush: {
  6514. height: math.unit(2, "meters"),
  6515. weight: math.unit(86/3, "kg"),
  6516. name: "Plush",
  6517. image: {
  6518. source: "./media/characters/rose/plush.svg",
  6519. extra: 361/337,
  6520. bottom: 11/372
  6521. }
  6522. },
  6523. },
  6524. [
  6525. {
  6526. name: "Mini-Micro",
  6527. height: math.unit(1, "cm")
  6528. },
  6529. {
  6530. name: "Micro",
  6531. height: math.unit(3.5, "inches"),
  6532. default: true
  6533. },
  6534. {
  6535. name: "Normal",
  6536. height: math.unit(6 + 1 / 6, "feet")
  6537. },
  6538. {
  6539. name: "Mini-Macro",
  6540. height: math.unit(9 + 10 / 12, "feet")
  6541. },
  6542. ]
  6543. ))
  6544. characterMakers.push(() => makeCharacter(
  6545. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6546. {
  6547. front: {
  6548. height: math.unit(2, "meters"),
  6549. weight: math.unit(350, "lbs"),
  6550. name: "Front",
  6551. image: {
  6552. source: "./media/characters/regal/front.svg"
  6553. }
  6554. },
  6555. back: {
  6556. height: math.unit(2, "meters"),
  6557. weight: math.unit(350, "lbs"),
  6558. name: "Back",
  6559. image: {
  6560. source: "./media/characters/regal/back.svg"
  6561. }
  6562. },
  6563. },
  6564. [
  6565. {
  6566. name: "Macro",
  6567. height: math.unit(350, "feet"),
  6568. default: true
  6569. }
  6570. ]
  6571. ))
  6572. characterMakers.push(() => makeCharacter(
  6573. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6574. {
  6575. front: {
  6576. height: math.unit(4 + 11 / 12, "feet"),
  6577. weight: math.unit(100, "lbs"),
  6578. name: "Front",
  6579. image: {
  6580. source: "./media/characters/opal/front.svg"
  6581. }
  6582. },
  6583. frontAlt: {
  6584. height: math.unit(4 + 11 / 12, "feet"),
  6585. weight: math.unit(100, "lbs"),
  6586. name: "Front (Alt)",
  6587. image: {
  6588. source: "./media/characters/opal/front-alt.svg"
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Small",
  6595. height: math.unit(4 + 11 / 12, "feet")
  6596. },
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(20, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Macro",
  6604. height: math.unit(120, "feet")
  6605. },
  6606. {
  6607. name: "Megamacro",
  6608. height: math.unit(80, "miles")
  6609. },
  6610. {
  6611. name: "True Size",
  6612. height: math.unit(100000, "lightyears")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(200, "lbs"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/vector-wuff/front.svg"
  6625. }
  6626. }
  6627. },
  6628. [
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(2.8, "meters")
  6632. },
  6633. {
  6634. name: "Macro",
  6635. height: math.unit(450, "meters"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Megamacro",
  6640. height: math.unit(15, "kilometers")
  6641. }
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6646. {
  6647. front: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(256, "lbs"),
  6650. name: "Front",
  6651. image: {
  6652. source: "./media/characters/dannik/front.svg"
  6653. }
  6654. }
  6655. },
  6656. [
  6657. {
  6658. name: "Macro",
  6659. height: math.unit(69.57, "meters"),
  6660. default: true
  6661. },
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6666. {
  6667. front: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(120, "lbs"),
  6670. name: "Front",
  6671. image: {
  6672. source: "./media/characters/azura-saharah/front.svg"
  6673. }
  6674. },
  6675. back: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(120, "lbs"),
  6678. name: "Back",
  6679. image: {
  6680. source: "./media/characters/azura-saharah/back.svg"
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Macro",
  6687. height: math.unit(100, "feet"),
  6688. default: true
  6689. },
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6694. {
  6695. side: {
  6696. height: math.unit(5 + 4 / 12, "feet"),
  6697. weight: math.unit(163, "lbs"),
  6698. name: "Side",
  6699. image: {
  6700. source: "./media/characters/kennedy/side.svg"
  6701. }
  6702. }
  6703. },
  6704. [
  6705. {
  6706. name: "Standard Doggo",
  6707. height: math.unit(5 + 4 / 12, "feet")
  6708. },
  6709. {
  6710. name: "Big Doggo",
  6711. height: math.unit(25 + 3 / 12, "feet"),
  6712. default: true
  6713. },
  6714. ]
  6715. ))
  6716. characterMakers.push(() => makeCharacter(
  6717. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6718. {
  6719. front: {
  6720. height: math.unit(6, "feet"),
  6721. weight: math.unit(90, "lbs"),
  6722. name: "Front",
  6723. image: {
  6724. source: "./media/characters/odi-lunar/front.svg"
  6725. }
  6726. }
  6727. },
  6728. [
  6729. {
  6730. name: "Micro",
  6731. height: math.unit(3, "inches"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(5.5, "feet")
  6737. }
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6742. {
  6743. back: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(220, "lbs"),
  6746. name: "Back",
  6747. image: {
  6748. source: "./media/characters/mandake/back.svg"
  6749. }
  6750. }
  6751. },
  6752. [
  6753. {
  6754. name: "Normal",
  6755. height: math.unit(7, "feet"),
  6756. default: true
  6757. },
  6758. {
  6759. name: "Macro",
  6760. height: math.unit(78, "feet")
  6761. },
  6762. {
  6763. name: "Macro+",
  6764. height: math.unit(300, "meters")
  6765. },
  6766. {
  6767. name: "Macro++",
  6768. height: math.unit(2400, "feet")
  6769. },
  6770. {
  6771. name: "Megamacro",
  6772. height: math.unit(5167, "meters")
  6773. },
  6774. {
  6775. name: "Gigamacro",
  6776. height: math.unit(41769, "miles")
  6777. },
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(120, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/yozey/front.svg"
  6789. }
  6790. },
  6791. frontAlt: {
  6792. height: math.unit(6, "feet"),
  6793. weight: math.unit(120, "lbs"),
  6794. name: "Front (Alt)",
  6795. image: {
  6796. source: "./media/characters/yozey/front-alt.svg"
  6797. }
  6798. },
  6799. side: {
  6800. height: math.unit(6, "feet"),
  6801. weight: math.unit(120, "lbs"),
  6802. name: "Side",
  6803. image: {
  6804. source: "./media/characters/yozey/side.svg"
  6805. }
  6806. },
  6807. },
  6808. [
  6809. {
  6810. name: "Micro",
  6811. height: math.unit(3, "inches"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Normal",
  6816. height: math.unit(6, "feet")
  6817. }
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(6, "feet"),
  6825. weight: math.unit(103, "lbs"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/valeska-voss/front.svg"
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Mini-Sized Sub",
  6835. height: math.unit(3.1, "inches")
  6836. },
  6837. {
  6838. name: "Mid-Sized Sub",
  6839. height: math.unit(6.2, "inches")
  6840. },
  6841. {
  6842. name: "Full-Sized Sub",
  6843. height: math.unit(9.3, "inches")
  6844. },
  6845. {
  6846. name: "Normal",
  6847. height: math.unit(5 + 2 / 12, "foot"),
  6848. default: true
  6849. },
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(6, "feet"),
  6857. weight: math.unit(160, "lbs"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/gene-zeta/front.svg",
  6861. extra: 3006 / 2826,
  6862. bottom: 182 / 3188
  6863. }
  6864. }
  6865. },
  6866. [
  6867. {
  6868. name: "Micro",
  6869. height: math.unit(6, "inches")
  6870. },
  6871. {
  6872. name: "Normal",
  6873. height: math.unit(5 + 11 / 12, "foot"),
  6874. default: true
  6875. },
  6876. {
  6877. name: "Macro",
  6878. height: math.unit(140, "feet")
  6879. },
  6880. {
  6881. name: "Supercharged",
  6882. height: math.unit(2500, "feet")
  6883. },
  6884. ]
  6885. ))
  6886. characterMakers.push(() => makeCharacter(
  6887. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6888. {
  6889. front: {
  6890. height: math.unit(6, "feet"),
  6891. weight: math.unit(350, "lbs"),
  6892. name: "Front",
  6893. image: {
  6894. source: "./media/characters/razinox/front.svg",
  6895. extra: 1686 / 1548,
  6896. bottom: 28.2 / 1868
  6897. }
  6898. },
  6899. back: {
  6900. height: math.unit(6, "feet"),
  6901. weight: math.unit(350, "lbs"),
  6902. name: "Back",
  6903. image: {
  6904. source: "./media/characters/razinox/back.svg",
  6905. extra: 1660 / 1590,
  6906. bottom: 15 / 1665
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "Normal",
  6913. height: math.unit(10 + 8 / 12, "foot")
  6914. },
  6915. {
  6916. name: "Minimacro",
  6917. height: math.unit(15, "foot")
  6918. },
  6919. {
  6920. name: "Macro",
  6921. height: math.unit(60, "foot"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Megamacro",
  6926. height: math.unit(5, "miles")
  6927. },
  6928. {
  6929. name: "Gigamacro",
  6930. height: math.unit(6000, "miles")
  6931. },
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(6, "feet"),
  6939. weight: math.unit(150, "lbs"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/cobalt/front.svg"
  6943. }
  6944. }
  6945. },
  6946. [
  6947. {
  6948. name: "Normal",
  6949. height: math.unit(8 + 1 / 12, "foot")
  6950. },
  6951. {
  6952. name: "Macro",
  6953. height: math.unit(111, "foot"),
  6954. default: true
  6955. },
  6956. {
  6957. name: "Supracosmic",
  6958. height: math.unit(1e42, "feet")
  6959. },
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(6, "feet"),
  6967. weight: math.unit(140, "lbs"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/amanda/front.svg"
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Micro",
  6977. height: math.unit(5, "inches"),
  6978. default: true
  6979. },
  6980. ]
  6981. ))
  6982. characterMakers.push(() => makeCharacter(
  6983. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6984. {
  6985. front: {
  6986. height: math.unit(2.75, "meters"),
  6987. weight: math.unit(1200, "lb"),
  6988. name: "Front",
  6989. image: {
  6990. source: "./media/characters/teal/front.svg",
  6991. extra: 2463 / 2320,
  6992. bottom: 166 / 2629
  6993. }
  6994. },
  6995. back: {
  6996. height: math.unit(2.75, "meters"),
  6997. weight: math.unit(1200, "lb"),
  6998. name: "Back",
  6999. image: {
  7000. source: "./media/characters/teal/back.svg",
  7001. extra: 2580 / 2489,
  7002. bottom: 151 / 2731
  7003. }
  7004. },
  7005. sitting: {
  7006. height: math.unit(1.9, "meters"),
  7007. weight: math.unit(1200, "lb"),
  7008. name: "Sitting",
  7009. image: {
  7010. source: "./media/characters/teal/sitting.svg",
  7011. extra: 623 / 590,
  7012. bottom: 121 / 744
  7013. }
  7014. },
  7015. standing: {
  7016. height: math.unit(2.75, "meters"),
  7017. weight: math.unit(1200, "lb"),
  7018. name: "Standing",
  7019. image: {
  7020. source: "./media/characters/teal/standing.svg",
  7021. extra: 923 / 893,
  7022. bottom: 60 / 983
  7023. }
  7024. },
  7025. stretching: {
  7026. height: math.unit(3.65, "meters"),
  7027. weight: math.unit(1200, "lb"),
  7028. name: "Stretching",
  7029. image: {
  7030. source: "./media/characters/teal/stretching.svg",
  7031. extra: 1276 / 1244,
  7032. bottom: 0 / 1276
  7033. }
  7034. },
  7035. legged: {
  7036. height: math.unit(1.3, "meters"),
  7037. weight: math.unit(100, "lb"),
  7038. name: "Legged",
  7039. image: {
  7040. source: "./media/characters/teal/legged.svg",
  7041. extra: 462 / 437,
  7042. bottom: 24 / 486
  7043. }
  7044. },
  7045. naga: {
  7046. height: math.unit(5.4, "meters"),
  7047. weight: math.unit(4000, "lb"),
  7048. name: "Naga",
  7049. image: {
  7050. source: "./media/characters/teal/naga.svg",
  7051. extra: 1902 / 1858,
  7052. bottom: 0 / 1902
  7053. }
  7054. },
  7055. hand: {
  7056. height: math.unit(0.52, "meters"),
  7057. name: "Hand",
  7058. image: {
  7059. source: "./media/characters/teal/hand.svg"
  7060. }
  7061. },
  7062. maw: {
  7063. height: math.unit(0.43, "meters"),
  7064. name: "Maw",
  7065. image: {
  7066. source: "./media/characters/teal/maw.svg"
  7067. }
  7068. },
  7069. slit: {
  7070. height: math.unit(0.25, "meters"),
  7071. name: "Slit",
  7072. image: {
  7073. source: "./media/characters/teal/slit.svg"
  7074. }
  7075. },
  7076. },
  7077. [
  7078. {
  7079. name: "Normal",
  7080. height: math.unit(2.75, "meters"),
  7081. default: true
  7082. },
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(300, "feet")
  7086. },
  7087. {
  7088. name: "Macro+",
  7089. height: math.unit(2000, "feet")
  7090. },
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7095. {
  7096. frontCat: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(180, "lbs"),
  7099. name: "Front (Cat)",
  7100. image: {
  7101. source: "./media/characters/ravin-amulet/front-cat.svg"
  7102. }
  7103. },
  7104. frontCatAlt: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(180, "lbs"),
  7107. name: "Front (Alt, Cat)",
  7108. image: {
  7109. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7110. }
  7111. },
  7112. frontWerewolf: {
  7113. height: math.unit(6 * 1.2, "feet"),
  7114. weight: math.unit(225, "lbs"),
  7115. name: "Front (Werewolf)",
  7116. image: {
  7117. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7118. }
  7119. },
  7120. backWerewolf: {
  7121. height: math.unit(6 * 1.2, "feet"),
  7122. weight: math.unit(225, "lbs"),
  7123. name: "Back (Werewolf)",
  7124. image: {
  7125. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Nano",
  7132. height: math.unit(1, "micrometer")
  7133. },
  7134. {
  7135. name: "Micro",
  7136. height: math.unit(1, "inch")
  7137. },
  7138. {
  7139. name: "Normal",
  7140. height: math.unit(6, "feet"),
  7141. default: true
  7142. },
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(60, "feet")
  7146. }
  7147. ]
  7148. ))
  7149. characterMakers.push(() => makeCharacter(
  7150. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7151. {
  7152. front: {
  7153. height: math.unit(6, "feet"),
  7154. weight: math.unit(165, "lbs"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/fluoresce/front.svg"
  7158. }
  7159. }
  7160. },
  7161. [
  7162. {
  7163. name: "Micro",
  7164. height: math.unit(6, "cm")
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(5 + 7 / 12, "feet"),
  7169. default: true
  7170. },
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(56, "feet")
  7174. },
  7175. {
  7176. name: "Megamacro",
  7177. height: math.unit(1.9, "miles")
  7178. },
  7179. ]
  7180. ))
  7181. characterMakers.push(() => makeCharacter(
  7182. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7183. {
  7184. front: {
  7185. height: math.unit(9 + 6 / 12, "feet"),
  7186. weight: math.unit(523, "lbs"),
  7187. name: "Side",
  7188. image: {
  7189. source: "./media/characters/aurora/side.svg"
  7190. }
  7191. }
  7192. },
  7193. [
  7194. {
  7195. name: "Normal",
  7196. height: math.unit(9 + 6 / 12, "feet")
  7197. },
  7198. {
  7199. name: "Macro",
  7200. height: math.unit(96, "feet"),
  7201. default: true
  7202. },
  7203. {
  7204. name: "Macro+",
  7205. height: math.unit(243, "feet")
  7206. },
  7207. ]
  7208. ))
  7209. characterMakers.push(() => makeCharacter(
  7210. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7211. {
  7212. front: {
  7213. height: math.unit(194, "cm"),
  7214. weight: math.unit(90, "kg"),
  7215. name: "Front",
  7216. image: {
  7217. source: "./media/characters/ranek/front.svg"
  7218. }
  7219. },
  7220. side: {
  7221. height: math.unit(194, "cm"),
  7222. weight: math.unit(90, "kg"),
  7223. name: "Side",
  7224. image: {
  7225. source: "./media/characters/ranek/side.svg"
  7226. }
  7227. },
  7228. back: {
  7229. height: math.unit(194, "cm"),
  7230. weight: math.unit(90, "kg"),
  7231. name: "Back",
  7232. image: {
  7233. source: "./media/characters/ranek/back.svg"
  7234. }
  7235. },
  7236. feral: {
  7237. height: math.unit(30, "cm"),
  7238. weight: math.unit(1.6, "lbs"),
  7239. name: "Feral",
  7240. image: {
  7241. source: "./media/characters/ranek/feral.svg"
  7242. }
  7243. },
  7244. },
  7245. [
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(194, "cm"),
  7249. default: true
  7250. },
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(100, "meters")
  7254. },
  7255. ]
  7256. ))
  7257. characterMakers.push(() => makeCharacter(
  7258. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7259. {
  7260. front: {
  7261. height: math.unit(5 + 6 / 12, "feet"),
  7262. weight: math.unit(153, "lbs"),
  7263. name: "Front",
  7264. image: {
  7265. source: "./media/characters/andrew-cooper/front.svg"
  7266. }
  7267. },
  7268. },
  7269. [
  7270. {
  7271. name: "Nano",
  7272. height: math.unit(1, "mm")
  7273. },
  7274. {
  7275. name: "Micro",
  7276. height: math.unit(2, "inches")
  7277. },
  7278. {
  7279. name: "Normal",
  7280. height: math.unit(5 + 6 / 12, "feet"),
  7281. default: true
  7282. }
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(180, "lbs"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/akane-sato/front.svg",
  7294. extra: 1219 / 1140
  7295. }
  7296. },
  7297. back: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(180, "lbs"),
  7300. name: "Back",
  7301. image: {
  7302. source: "./media/characters/akane-sato/back.svg",
  7303. extra: 1219 / 1170
  7304. }
  7305. },
  7306. },
  7307. [
  7308. {
  7309. name: "Normal",
  7310. height: math.unit(2.5, "meters")
  7311. },
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(250, "meters"),
  7315. default: true
  7316. },
  7317. {
  7318. name: "Megamacro",
  7319. height: math.unit(25, "km")
  7320. },
  7321. ]
  7322. ))
  7323. characterMakers.push(() => makeCharacter(
  7324. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7325. {
  7326. front: {
  7327. height: math.unit(6, "feet"),
  7328. weight: math.unit(65, "kg"),
  7329. name: "Front",
  7330. image: {
  7331. source: "./media/characters/rook/front.svg",
  7332. extra: 960 / 950
  7333. }
  7334. }
  7335. },
  7336. [
  7337. {
  7338. name: "Normal",
  7339. height: math.unit(8.8, "feet")
  7340. },
  7341. {
  7342. name: "Macro",
  7343. height: math.unit(88, "feet"),
  7344. default: true
  7345. },
  7346. {
  7347. name: "Megamacro",
  7348. height: math.unit(8, "miles")
  7349. },
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7354. {
  7355. front: {
  7356. height: math.unit(12 + 2 / 12, "feet"),
  7357. weight: math.unit(808, "lbs"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/prodigy/front.svg"
  7361. }
  7362. }
  7363. },
  7364. [
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(12 + 2 / 12, "feet"),
  7368. default: true
  7369. },
  7370. {
  7371. name: "Macro",
  7372. height: math.unit(143, "feet")
  7373. },
  7374. {
  7375. name: "Macro+",
  7376. height: math.unit(400, "feet")
  7377. },
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(225, "lbs"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/daniel/front.svg"
  7389. }
  7390. },
  7391. leaning: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(225, "lbs"),
  7394. name: "Leaning",
  7395. image: {
  7396. source: "./media/characters/daniel/leaning.svg"
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Macro",
  7403. height: math.unit(1000, "feet"),
  7404. default: true
  7405. },
  7406. ]
  7407. ))
  7408. characterMakers.push(() => makeCharacter(
  7409. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7410. {
  7411. front: {
  7412. height: math.unit(6, "feet"),
  7413. weight: math.unit(88, "lbs"),
  7414. name: "Front",
  7415. image: {
  7416. source: "./media/characters/chiros/front.svg",
  7417. extra: 306 / 226
  7418. }
  7419. },
  7420. side: {
  7421. height: math.unit(6, "feet"),
  7422. weight: math.unit(88, "lbs"),
  7423. name: "Side",
  7424. image: {
  7425. source: "./media/characters/chiros/side.svg",
  7426. extra: 306 / 226
  7427. }
  7428. },
  7429. },
  7430. [
  7431. {
  7432. name: "Normal",
  7433. height: math.unit(6, "cm"),
  7434. default: true
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7440. {
  7441. front: {
  7442. height: math.unit(6, "feet"),
  7443. weight: math.unit(100, "lbs"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/selka/front.svg",
  7447. extra: 947 / 887
  7448. }
  7449. }
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(5, "cm"),
  7455. default: true
  7456. },
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7461. {
  7462. front: {
  7463. height: math.unit(8 + 3 / 12, "feet"),
  7464. weight: math.unit(424, "lbs"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/verin/front.svg",
  7468. extra: 1845 / 1550
  7469. }
  7470. },
  7471. frontArmored: {
  7472. height: math.unit(8 + 3 / 12, "feet"),
  7473. weight: math.unit(424, "lbs"),
  7474. name: "Front (Armored)",
  7475. image: {
  7476. source: "./media/characters/verin/front-armor.svg",
  7477. extra: 1845 / 1550,
  7478. bottom: 0.01
  7479. }
  7480. },
  7481. back: {
  7482. height: math.unit(8 + 3 / 12, "feet"),
  7483. weight: math.unit(424, "lbs"),
  7484. name: "Back",
  7485. image: {
  7486. source: "./media/characters/verin/back.svg",
  7487. bottom: 0.1,
  7488. extra: 1
  7489. }
  7490. },
  7491. foot: {
  7492. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7493. name: "Foot",
  7494. image: {
  7495. source: "./media/characters/verin/foot.svg"
  7496. }
  7497. },
  7498. },
  7499. [
  7500. {
  7501. name: "Normal",
  7502. height: math.unit(8 + 3 / 12, "feet")
  7503. },
  7504. {
  7505. name: "Minimacro",
  7506. height: math.unit(21, "feet"),
  7507. default: true
  7508. },
  7509. {
  7510. name: "Macro",
  7511. height: math.unit(626, "feet")
  7512. },
  7513. ]
  7514. ))
  7515. characterMakers.push(() => makeCharacter(
  7516. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7517. {
  7518. front: {
  7519. height: math.unit(2.718, "meters"),
  7520. weight: math.unit(150, "lbs"),
  7521. name: "Front",
  7522. image: {
  7523. source: "./media/characters/sovrim-terraquian/front.svg"
  7524. }
  7525. },
  7526. back: {
  7527. height: math.unit(2.718, "meters"),
  7528. weight: math.unit(150, "lbs"),
  7529. name: "Back",
  7530. image: {
  7531. source: "./media/characters/sovrim-terraquian/back.svg"
  7532. }
  7533. }
  7534. },
  7535. [
  7536. {
  7537. name: "Micro",
  7538. height: math.unit(2, "inches")
  7539. },
  7540. {
  7541. name: "Small",
  7542. height: math.unit(1, "meter")
  7543. },
  7544. {
  7545. name: "Normal",
  7546. height: math.unit(Math.E, "meters"),
  7547. default: true
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(20, "meters")
  7552. },
  7553. {
  7554. name: "Macro+",
  7555. height: math.unit(400, "meters")
  7556. },
  7557. ]
  7558. ))
  7559. characterMakers.push(() => makeCharacter(
  7560. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7561. {
  7562. front: {
  7563. height: math.unit(7, "feet"),
  7564. weight: math.unit(489, "lbs"),
  7565. name: "Front",
  7566. image: {
  7567. source: "./media/characters/reece-silvermane/front.svg",
  7568. bottom: 0.02,
  7569. extra: 1
  7570. }
  7571. },
  7572. },
  7573. [
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(1.5, "miles"),
  7577. default: true
  7578. },
  7579. ]
  7580. ))
  7581. characterMakers.push(() => makeCharacter(
  7582. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7583. {
  7584. front: {
  7585. height: math.unit(6, "feet"),
  7586. weight: math.unit(78, "kg"),
  7587. name: "Front",
  7588. image: {
  7589. source: "./media/characters/kane/front.svg",
  7590. extra: 978 / 899
  7591. }
  7592. },
  7593. },
  7594. [
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(2.1, "m"),
  7598. },
  7599. {
  7600. name: "Macro",
  7601. height: math.unit(1, "km"),
  7602. default: true
  7603. },
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7608. {
  7609. front: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(200, "kg"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/tegon/front.svg",
  7615. bottom: 0.01,
  7616. extra: 1
  7617. }
  7618. },
  7619. },
  7620. [
  7621. {
  7622. name: "Micro",
  7623. height: math.unit(1, "inch")
  7624. },
  7625. {
  7626. name: "Normal",
  7627. height: math.unit(6 + 3 / 12, "feet"),
  7628. default: true
  7629. },
  7630. {
  7631. name: "Macro",
  7632. height: math.unit(300, "feet")
  7633. },
  7634. {
  7635. name: "Megamacro",
  7636. height: math.unit(69, "miles")
  7637. },
  7638. ]
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7642. {
  7643. side: {
  7644. height: math.unit(6, "feet"),
  7645. weight: math.unit(2304, "lbs"),
  7646. name: "Side",
  7647. image: {
  7648. source: "./media/characters/arcturax/side.svg",
  7649. extra: 790 / 376,
  7650. bottom: 0.01
  7651. }
  7652. },
  7653. },
  7654. [
  7655. {
  7656. name: "Micro",
  7657. height: math.unit(2, "inch")
  7658. },
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(6, "feet")
  7662. },
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(39, "feet"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Megamacro",
  7670. height: math.unit(7, "miles")
  7671. },
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(50, "lbs"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/sentri/front.svg",
  7683. extra: 1750 / 1570,
  7684. bottom: 0.025
  7685. }
  7686. },
  7687. frontAlt: {
  7688. height: math.unit(6, "feet"),
  7689. weight: math.unit(50, "lbs"),
  7690. name: "Front (Alt)",
  7691. image: {
  7692. source: "./media/characters/sentri/front-alt.svg",
  7693. extra: 1750 / 1570,
  7694. bottom: 0.025
  7695. }
  7696. },
  7697. },
  7698. [
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(15, "feet"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(2500, "feet")
  7707. }
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(5 + 8 / 12, "feet"),
  7715. weight: math.unit(130, "lbs"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/corvin/front.svg",
  7719. extra: 1803 / 1629
  7720. }
  7721. },
  7722. frontShirt: {
  7723. height: math.unit(5 + 8 / 12, "feet"),
  7724. weight: math.unit(130, "lbs"),
  7725. name: "Front (Shirt)",
  7726. image: {
  7727. source: "./media/characters/corvin/front-shirt.svg",
  7728. extra: 1803 / 1629
  7729. }
  7730. },
  7731. frontPoncho: {
  7732. height: math.unit(5 + 8 / 12, "feet"),
  7733. weight: math.unit(130, "lbs"),
  7734. name: "Front (Poncho)",
  7735. image: {
  7736. source: "./media/characters/corvin/front-poncho.svg",
  7737. extra: 1803 / 1629
  7738. }
  7739. },
  7740. side: {
  7741. height: math.unit(5 + 8 / 12, "feet"),
  7742. weight: math.unit(130, "lbs"),
  7743. name: "Side",
  7744. image: {
  7745. source: "./media/characters/corvin/side.svg",
  7746. extra: 1012 / 945
  7747. }
  7748. },
  7749. back: {
  7750. height: math.unit(5 + 8 / 12, "feet"),
  7751. weight: math.unit(130, "lbs"),
  7752. name: "Back",
  7753. image: {
  7754. source: "./media/characters/corvin/back.svg",
  7755. extra: 1803 / 1629
  7756. }
  7757. },
  7758. },
  7759. [
  7760. {
  7761. name: "Micro",
  7762. height: math.unit(3, "inches")
  7763. },
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(5 + 8 / 12, "feet")
  7767. },
  7768. {
  7769. name: "Macro",
  7770. height: math.unit(300, "feet"),
  7771. default: true
  7772. },
  7773. {
  7774. name: "Megamacro",
  7775. height: math.unit(500, "miles")
  7776. }
  7777. ]
  7778. ))
  7779. characterMakers.push(() => makeCharacter(
  7780. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7781. {
  7782. front: {
  7783. height: math.unit(6, "feet"),
  7784. weight: math.unit(135, "lbs"),
  7785. name: "Front",
  7786. image: {
  7787. source: "./media/characters/q/front.svg",
  7788. extra: 854 / 752,
  7789. bottom: 0.005
  7790. }
  7791. },
  7792. back: {
  7793. height: math.unit(6, "feet"),
  7794. weight: math.unit(130, "lbs"),
  7795. name: "Back",
  7796. image: {
  7797. source: "./media/characters/q/back.svg",
  7798. extra: 854 / 752
  7799. }
  7800. },
  7801. },
  7802. [
  7803. {
  7804. name: "Macro",
  7805. height: math.unit(90, "feet"),
  7806. default: true
  7807. },
  7808. {
  7809. name: "Extra Macro",
  7810. height: math.unit(300, "feet"),
  7811. },
  7812. {
  7813. name: "BIG WALF",
  7814. height: math.unit(750, "feet"),
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(6, "feet"),
  7823. weight: math.unit(150, "lbs"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/carley/front.svg",
  7827. extra: 3927 / 3540,
  7828. bottom: 29.2 / 735
  7829. }
  7830. }
  7831. },
  7832. [
  7833. {
  7834. name: "Normal",
  7835. height: math.unit(6 + 3 / 12, "feet")
  7836. },
  7837. {
  7838. name: "Macro",
  7839. height: math.unit(185, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Megamacro",
  7844. height: math.unit(8, "miles"),
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(3, "feet"),
  7853. weight: math.unit(28, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/citrine/front.svg"
  7857. }
  7858. }
  7859. },
  7860. [
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(3, "feet"),
  7864. default: true
  7865. }
  7866. ]
  7867. ))
  7868. characterMakers.push(() => makeCharacter(
  7869. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7870. {
  7871. front: {
  7872. height: math.unit(14, "feet"),
  7873. weight: math.unit(1450, "kg"),
  7874. capacity: math.unit(15, "people"),
  7875. name: "Front",
  7876. image: {
  7877. source: "./media/characters/aura-starwind/front.svg",
  7878. extra: 1455 / 1335
  7879. }
  7880. },
  7881. side: {
  7882. height: math.unit(14, "feet"),
  7883. weight: math.unit(1450, "kg"),
  7884. capacity: math.unit(15, "people"),
  7885. name: "Side",
  7886. image: {
  7887. source: "./media/characters/aura-starwind/side.svg",
  7888. extra: 1654 / 1497
  7889. }
  7890. },
  7891. taur: {
  7892. height: math.unit(18, "feet"),
  7893. weight: math.unit(5500, "kg"),
  7894. capacity: math.unit(50, "people"),
  7895. name: "Taur",
  7896. image: {
  7897. source: "./media/characters/aura-starwind/taur.svg",
  7898. extra: 1760 / 1650
  7899. }
  7900. },
  7901. feral: {
  7902. height: math.unit(46, "feet"),
  7903. weight: math.unit(25000, "kg"),
  7904. capacity: math.unit(120, "people"),
  7905. name: "Feral",
  7906. image: {
  7907. source: "./media/characters/aura-starwind/feral.svg"
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Normal",
  7914. height: math.unit(14, "feet"),
  7915. default: true
  7916. },
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(50, "meters")
  7920. },
  7921. {
  7922. name: "Megamacro",
  7923. height: math.unit(5000, "meters")
  7924. },
  7925. {
  7926. name: "Gigamacro",
  7927. height: math.unit(100000, "kilometers")
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7933. {
  7934. front: {
  7935. height: math.unit(2 + 7 / 12, "feet"),
  7936. weight: math.unit(32, "lbs"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/rivet/front.svg",
  7940. extra: 1716 / 1658,
  7941. bottom: 0.03
  7942. }
  7943. },
  7944. foot: {
  7945. height: math.unit(0.551, "feet"),
  7946. name: "Rivet's Foot",
  7947. image: {
  7948. source: "./media/characters/rivet/foot.svg"
  7949. },
  7950. rename: true
  7951. }
  7952. },
  7953. [
  7954. {
  7955. name: "Micro",
  7956. height: math.unit(1.5, "inches"),
  7957. },
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(2 + 7 / 12, "feet"),
  7961. default: true
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(85, "feet")
  7966. },
  7967. {
  7968. name: "Megamacro",
  7969. height: math.unit(2.2, "km")
  7970. }
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(5 + 9 / 12, "feet"),
  7978. weight: math.unit(150, "lbs"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/coffee/front.svg",
  7982. extra: 3666 / 3032,
  7983. bottom: 0.04
  7984. }
  7985. },
  7986. foot: {
  7987. height: math.unit(1.29, "feet"),
  7988. name: "Foot",
  7989. image: {
  7990. source: "./media/characters/coffee/foot.svg"
  7991. }
  7992. },
  7993. },
  7994. [
  7995. {
  7996. name: "Micro",
  7997. height: math.unit(2, "inches"),
  7998. },
  7999. {
  8000. name: "Normal",
  8001. height: math.unit(5 + 9 / 12, "feet"),
  8002. default: true
  8003. },
  8004. {
  8005. name: "Macro",
  8006. height: math.unit(800, "feet")
  8007. },
  8008. {
  8009. name: "Megamacro",
  8010. height: math.unit(25, "miles")
  8011. }
  8012. ]
  8013. ))
  8014. characterMakers.push(() => makeCharacter(
  8015. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8016. {
  8017. front: {
  8018. height: math.unit(6, "feet"),
  8019. weight: math.unit(200, "lbs"),
  8020. name: "Front",
  8021. image: {
  8022. source: "./media/characters/chari-gal/front.svg",
  8023. extra: 1568 / 1385,
  8024. bottom: 0.047
  8025. }
  8026. },
  8027. gigantamax: {
  8028. height: math.unit(6 * 16, "feet"),
  8029. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8030. name: "Gigantamax",
  8031. image: {
  8032. source: "./media/characters/chari-gal/gigantamax.svg",
  8033. extra: 1124 / 888,
  8034. bottom: 0.03
  8035. }
  8036. },
  8037. },
  8038. [
  8039. {
  8040. name: "Normal",
  8041. height: math.unit(5 + 7 / 12, "feet")
  8042. },
  8043. {
  8044. name: "Macro",
  8045. height: math.unit(200, "feet"),
  8046. default: true
  8047. }
  8048. ]
  8049. ))
  8050. characterMakers.push(() => makeCharacter(
  8051. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8052. {
  8053. front: {
  8054. height: math.unit(6, "feet"),
  8055. weight: math.unit(150, "lbs"),
  8056. name: "Front",
  8057. image: {
  8058. source: "./media/characters/nova/front.svg",
  8059. extra: 5000 / 4722,
  8060. bottom: 0.02
  8061. }
  8062. }
  8063. },
  8064. [
  8065. {
  8066. name: "Micro-",
  8067. height: math.unit(0.8, "inches")
  8068. },
  8069. {
  8070. name: "Micro",
  8071. height: math.unit(2, "inches"),
  8072. default: true
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(3 + 1 / 12, "feet"),
  8081. weight: math.unit(21.7, "lbs"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/argent/front.svg",
  8085. extra: 1471 / 1331,
  8086. bottom: 100.8 / 1575.5
  8087. }
  8088. }
  8089. },
  8090. [
  8091. {
  8092. name: "Micro",
  8093. height: math.unit(2, "inches")
  8094. },
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(3 + 1 / 12, "feet"),
  8098. default: true
  8099. },
  8100. {
  8101. name: "Macro",
  8102. height: math.unit(120, "feet")
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8108. {
  8109. lamp: {
  8110. height: math.unit(7 * 1559 / 989, "feet"),
  8111. name: "Magic Lamp",
  8112. image: {
  8113. source: "./media/characters/mira-al-cul/lamp.svg",
  8114. extra: 1617 / 1559
  8115. }
  8116. },
  8117. front: {
  8118. height: math.unit(7, "feet"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/mira-al-cul/front.svg",
  8122. extra: 1044 / 990
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Heavily Restricted",
  8129. height: math.unit(7 * 1559 / 989, "feet")
  8130. },
  8131. {
  8132. name: "Freshly Freed",
  8133. height: math.unit(50 * 1559 / 989, "feet")
  8134. },
  8135. {
  8136. name: "World Encompassing",
  8137. height: math.unit(10000 * 1559 / 989, "miles")
  8138. },
  8139. {
  8140. name: "Galactic",
  8141. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8142. },
  8143. {
  8144. name: "Palmed Universe",
  8145. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8146. default: true
  8147. },
  8148. {
  8149. name: "Multiversal Matriarch",
  8150. height: math.unit(8.87e10, "yottameters")
  8151. },
  8152. {
  8153. name: "Void Mother",
  8154. height: math.unit(3.14e110, "yottaparsecs")
  8155. },
  8156. {
  8157. name: "Toying with Transcendence",
  8158. height: math.unit(1e307, "meters")
  8159. },
  8160. ]
  8161. ))
  8162. characterMakers.push(() => makeCharacter(
  8163. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8164. {
  8165. front: {
  8166. height: math.unit(17 + 1 / 12, "feet"),
  8167. weight: math.unit(476.2 * 5, "lbs"),
  8168. name: "Front",
  8169. image: {
  8170. source: "./media/characters/kuro-shi-uchū/front.svg",
  8171. extra: 2329 / 1835,
  8172. bottom: 0.02
  8173. }
  8174. },
  8175. },
  8176. [
  8177. {
  8178. name: "Micro",
  8179. height: math.unit(2, "inches")
  8180. },
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(12, "meters")
  8184. },
  8185. {
  8186. name: "Planetary",
  8187. height: math.unit(0.00929, "AU"),
  8188. default: true
  8189. },
  8190. {
  8191. name: "Universal",
  8192. height: math.unit(20, "gigaparsecs")
  8193. },
  8194. ]
  8195. ))
  8196. characterMakers.push(() => makeCharacter(
  8197. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8198. {
  8199. front: {
  8200. height: math.unit(5 + 2 / 12, "feet"),
  8201. weight: math.unit(120, "lbs"),
  8202. name: "Front",
  8203. image: {
  8204. source: "./media/characters/katherine/front.svg",
  8205. extra: 2075 / 1969
  8206. }
  8207. },
  8208. dress: {
  8209. height: math.unit(5 + 2 / 12, "feet"),
  8210. weight: math.unit(120, "lbs"),
  8211. name: "Dress",
  8212. image: {
  8213. source: "./media/characters/katherine/dress.svg",
  8214. extra: 2258 / 2064
  8215. }
  8216. },
  8217. },
  8218. [
  8219. {
  8220. name: "Micro",
  8221. height: math.unit(1, "inches"),
  8222. default: true
  8223. },
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(5 + 2 / 12, "feet")
  8227. },
  8228. {
  8229. name: "Macro",
  8230. height: math.unit(100, "meters")
  8231. },
  8232. {
  8233. name: "Megamacro",
  8234. height: math.unit(80, "miles")
  8235. },
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(7 + 8 / 12, "feet"),
  8243. weight: math.unit(250, "lbs"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/yevis/front.svg",
  8247. extra: 1938 / 1755
  8248. }
  8249. }
  8250. },
  8251. [
  8252. {
  8253. name: "Mortal",
  8254. height: math.unit(7 + 8 / 12, "feet")
  8255. },
  8256. {
  8257. name: "Battle",
  8258. height: math.unit(25 + 11 / 12, "feet")
  8259. },
  8260. {
  8261. name: "Wrath",
  8262. height: math.unit(1654 + 11 / 12, "feet")
  8263. },
  8264. {
  8265. name: "Planet Destroyer",
  8266. height: math.unit(12000, "miles")
  8267. },
  8268. {
  8269. name: "Galaxy Conqueror",
  8270. height: math.unit(1.45, "zettameters"),
  8271. default: true
  8272. },
  8273. {
  8274. name: "Universal War",
  8275. height: math.unit(184, "gigaparsecs")
  8276. },
  8277. {
  8278. name: "Eternity War",
  8279. height: math.unit(1.98e55, "yottaparsecs")
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8285. {
  8286. front: {
  8287. height: math.unit(5 + 8 / 12, "feet"),
  8288. weight: math.unit(63, "kg"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/xavier/front.svg",
  8292. extra: 944 / 883
  8293. }
  8294. },
  8295. frontStretch: {
  8296. height: math.unit(5 + 8 / 12, "feet"),
  8297. weight: math.unit(63, "kg"),
  8298. name: "Stretching",
  8299. image: {
  8300. source: "./media/characters/xavier/front-stretch.svg",
  8301. extra: 962 / 820
  8302. }
  8303. },
  8304. },
  8305. [
  8306. {
  8307. name: "Normal",
  8308. height: math.unit(5 + 8 / 12, "feet")
  8309. },
  8310. {
  8311. name: "Macro",
  8312. height: math.unit(100, "meters"),
  8313. default: true
  8314. },
  8315. {
  8316. name: "McLargeHuge",
  8317. height: math.unit(10, "miles")
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(5 + 5 / 12, "feet"),
  8326. weight: math.unit(150, "lb"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/joshii/front.svg",
  8330. extra: 765 / 653,
  8331. bottom: 51 / 816
  8332. }
  8333. },
  8334. foot: {
  8335. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8336. name: "Foot",
  8337. image: {
  8338. source: "./media/characters/joshii/foot.svg"
  8339. }
  8340. },
  8341. },
  8342. [
  8343. {
  8344. name: "Micro",
  8345. height: math.unit(2, "inches"),
  8346. default: true
  8347. },
  8348. {
  8349. name: "Normal",
  8350. height: math.unit(5 + 5 / 12, "feet")
  8351. },
  8352. {
  8353. name: "Macro",
  8354. height: math.unit(785, "feet")
  8355. },
  8356. {
  8357. name: "Megamacro",
  8358. height: math.unit(24.5, "miles")
  8359. },
  8360. ]
  8361. ))
  8362. characterMakers.push(() => makeCharacter(
  8363. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8364. {
  8365. front: {
  8366. height: math.unit(6, "feet"),
  8367. weight: math.unit(150, "lb"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/goddess-elizabeth/front.svg",
  8371. extra: 1800 / 1525,
  8372. bottom: 0.005
  8373. }
  8374. },
  8375. foot: {
  8376. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8377. name: "Foot",
  8378. image: {
  8379. source: "./media/characters/goddess-elizabeth/foot.svg"
  8380. }
  8381. },
  8382. mouth: {
  8383. height: math.unit(6, "feet"),
  8384. name: "Mouth",
  8385. image: {
  8386. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(12, "feet")
  8394. },
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(80, "miles"),
  8398. default: true
  8399. },
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(15000, "parsecs")
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8408. {
  8409. front: {
  8410. height: math.unit(5 + 9 / 12, "feet"),
  8411. weight: math.unit(144, "lb"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/kara/front.svg"
  8415. }
  8416. },
  8417. feet: {
  8418. height: math.unit(6 / 6.765, "feet"),
  8419. name: "Kara's Feet",
  8420. rename: true,
  8421. image: {
  8422. source: "./media/characters/kara/feet.svg"
  8423. }
  8424. },
  8425. },
  8426. [
  8427. {
  8428. name: "Normal",
  8429. height: math.unit(5 + 9 / 12, "feet")
  8430. },
  8431. {
  8432. name: "Macro",
  8433. height: math.unit(174, "feet"),
  8434. default: true
  8435. },
  8436. ]
  8437. ))
  8438. characterMakers.push(() => makeCharacter(
  8439. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8440. {
  8441. front: {
  8442. height: math.unit(18, "feet"),
  8443. weight: math.unit(4050, "lb"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/tyrone/front.svg",
  8447. extra: 2405 / 2270,
  8448. bottom: 182 / 2587
  8449. }
  8450. },
  8451. },
  8452. [
  8453. {
  8454. name: "Normal",
  8455. height: math.unit(18, "feet"),
  8456. default: true
  8457. },
  8458. {
  8459. name: "Macro",
  8460. height: math.unit(300, "feet")
  8461. },
  8462. {
  8463. name: "Megamacro",
  8464. height: math.unit(15, "km")
  8465. },
  8466. {
  8467. name: "Gigamacro",
  8468. height: math.unit(500, "km")
  8469. },
  8470. {
  8471. name: "Teramacro",
  8472. height: math.unit(0.5, "gigameters")
  8473. },
  8474. {
  8475. name: "Omnimacro",
  8476. height: math.unit(1e252, "yottauniverse")
  8477. },
  8478. ]
  8479. ))
  8480. characterMakers.push(() => makeCharacter(
  8481. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8482. {
  8483. front: {
  8484. height: math.unit(7 + 8 / 12, "feet"),
  8485. weight: math.unit(120, "lb"),
  8486. name: "Front",
  8487. image: {
  8488. source: "./media/characters/danny/front.svg",
  8489. extra: 1490 / 1350
  8490. }
  8491. },
  8492. back: {
  8493. height: math.unit(7 + 8 / 12, "feet"),
  8494. weight: math.unit(120, "lb"),
  8495. name: "Back",
  8496. image: {
  8497. source: "./media/characters/danny/back.svg",
  8498. extra: 1490 / 1350
  8499. }
  8500. },
  8501. },
  8502. [
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(7 + 8 / 12, "feet"),
  8506. default: true
  8507. },
  8508. ]
  8509. ))
  8510. characterMakers.push(() => makeCharacter(
  8511. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8512. {
  8513. front: {
  8514. height: math.unit(3.5, "inches"),
  8515. weight: math.unit(19, "grams"),
  8516. name: "Front",
  8517. image: {
  8518. source: "./media/characters/mallow/front.svg",
  8519. extra: 471 / 431
  8520. }
  8521. },
  8522. back: {
  8523. height: math.unit(3.5, "inches"),
  8524. weight: math.unit(19, "grams"),
  8525. name: "Back",
  8526. image: {
  8527. source: "./media/characters/mallow/back.svg",
  8528. extra: 471 / 431
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Normal",
  8535. height: math.unit(3.5, "inches"),
  8536. default: true
  8537. },
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8542. {
  8543. front: {
  8544. height: math.unit(9, "feet"),
  8545. weight: math.unit(230, "kg"),
  8546. name: "Front",
  8547. image: {
  8548. source: "./media/characters/starry-aqua/front.svg"
  8549. }
  8550. },
  8551. back: {
  8552. height: math.unit(9, "feet"),
  8553. weight: math.unit(230, "kg"),
  8554. name: "Back",
  8555. image: {
  8556. source: "./media/characters/starry-aqua/back.svg"
  8557. }
  8558. },
  8559. hand: {
  8560. height: math.unit(9 * 0.1168, "feet"),
  8561. name: "Hand",
  8562. image: {
  8563. source: "./media/characters/starry-aqua/hand.svg"
  8564. }
  8565. },
  8566. foot: {
  8567. height: math.unit(9 * 0.18, "feet"),
  8568. name: "Foot",
  8569. image: {
  8570. source: "./media/characters/starry-aqua/foot.svg"
  8571. }
  8572. }
  8573. },
  8574. [
  8575. {
  8576. name: "Micro",
  8577. height: math.unit(3, "inches")
  8578. },
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(9, "feet")
  8582. },
  8583. {
  8584. name: "Macro",
  8585. height: math.unit(300, "feet"),
  8586. default: true
  8587. },
  8588. {
  8589. name: "Megamacro",
  8590. height: math.unit(3200, "feet")
  8591. }
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(6, "feet"),
  8599. weight: math.unit(230, "lb"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/luka/front.svg",
  8603. extra: 1,
  8604. bottom: 0.025
  8605. }
  8606. },
  8607. },
  8608. [
  8609. {
  8610. name: "Normal",
  8611. height: math.unit(12 + 8 / 12, "feet"),
  8612. default: true
  8613. },
  8614. {
  8615. name: "Minimacro",
  8616. height: math.unit(20, "feet")
  8617. },
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(250, "feet")
  8621. },
  8622. {
  8623. name: "Megamacro",
  8624. height: math.unit(5, "miles")
  8625. },
  8626. {
  8627. name: "Gigamacro",
  8628. height: math.unit(8000, "miles")
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8634. {
  8635. front: {
  8636. height: math.unit(6, "feet"),
  8637. weight: math.unit(150, "lb"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/natalie-nightring/front.svg",
  8641. extra: 1,
  8642. bottom: 0.06
  8643. }
  8644. },
  8645. },
  8646. [
  8647. {
  8648. name: "Uh Oh",
  8649. height: math.unit(0.1, "mm")
  8650. },
  8651. {
  8652. name: "Small",
  8653. height: math.unit(3, "inches")
  8654. },
  8655. {
  8656. name: "Human Scale",
  8657. height: math.unit(6, "feet")
  8658. },
  8659. {
  8660. name: "Librarian",
  8661. height: math.unit(50, "feet"),
  8662. default: true
  8663. },
  8664. {
  8665. name: "Immense",
  8666. height: math.unit(200, "miles")
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(6, "feet"),
  8675. weight: math.unit(180, "lbs"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/danni-rosie/front.svg",
  8679. extra: 1260 / 1128,
  8680. bottom: 0.022
  8681. }
  8682. },
  8683. },
  8684. [
  8685. {
  8686. name: "Micro",
  8687. height: math.unit(2, "inches"),
  8688. default: true
  8689. },
  8690. ]
  8691. ))
  8692. characterMakers.push(() => makeCharacter(
  8693. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8694. {
  8695. front: {
  8696. height: math.unit(5 + 9 / 12, "feet"),
  8697. weight: math.unit(220, "lb"),
  8698. name: "Front",
  8699. image: {
  8700. source: "./media/characters/samantha-kruse/front.svg",
  8701. extra: (985 / 935),
  8702. bottom: 0.03
  8703. }
  8704. },
  8705. frontUndressed: {
  8706. height: math.unit(5 + 9 / 12, "feet"),
  8707. weight: math.unit(220, "lb"),
  8708. name: "Front (Undressed)",
  8709. image: {
  8710. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8711. extra: (973 / 923),
  8712. bottom: 0.025
  8713. }
  8714. },
  8715. fat: {
  8716. height: math.unit(5 + 9 / 12, "feet"),
  8717. weight: math.unit(900, "lb"),
  8718. name: "Front (Fat)",
  8719. image: {
  8720. source: "./media/characters/samantha-kruse/fat.svg",
  8721. extra: 2688 / 2561
  8722. }
  8723. },
  8724. },
  8725. [
  8726. {
  8727. name: "Normal",
  8728. height: math.unit(5 + 9 / 12, "feet"),
  8729. default: true
  8730. }
  8731. ]
  8732. ))
  8733. characterMakers.push(() => makeCharacter(
  8734. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8735. {
  8736. back: {
  8737. height: math.unit(5 + 4 / 12, "feet"),
  8738. weight: math.unit(4963, "lb"),
  8739. name: "Back",
  8740. image: {
  8741. source: "./media/characters/amelia-rosie/back.svg",
  8742. extra: 1113 / 963,
  8743. bottom: 0.01
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Level 0",
  8750. height: math.unit(5 + 4 / 12, "feet")
  8751. },
  8752. {
  8753. name: "Level 1",
  8754. height: math.unit(164597, "feet"),
  8755. default: true
  8756. },
  8757. {
  8758. name: "Level 2",
  8759. height: math.unit(956243, "miles")
  8760. },
  8761. {
  8762. name: "Level 3",
  8763. height: math.unit(29421709423, "miles")
  8764. },
  8765. {
  8766. name: "Level 4",
  8767. height: math.unit(154, "lightyears")
  8768. },
  8769. {
  8770. name: "Level 5",
  8771. height: math.unit(4738272, "lightyears")
  8772. },
  8773. {
  8774. name: "Level 6",
  8775. height: math.unit(145787152896, "lightyears")
  8776. },
  8777. ]
  8778. ))
  8779. characterMakers.push(() => makeCharacter(
  8780. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8781. {
  8782. front: {
  8783. height: math.unit(5 + 11 / 12, "feet"),
  8784. weight: math.unit(65, "kg"),
  8785. name: "Front",
  8786. image: {
  8787. source: "./media/characters/rook-kitara/front.svg",
  8788. extra: 1347 / 1274,
  8789. bottom: 0.005
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Totally Unfair",
  8796. height: math.unit(1.8, "mm")
  8797. },
  8798. {
  8799. name: "Lap Rookie",
  8800. height: math.unit(1.4, "feet")
  8801. },
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(5 + 11 / 12, "feet"),
  8805. default: true
  8806. },
  8807. {
  8808. name: "How Did This Happen",
  8809. height: math.unit(80, "miles")
  8810. }
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(7, "feet"),
  8818. weight: math.unit(300, "lb"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/pisces/front.svg",
  8822. extra: 2255 / 2115,
  8823. bottom: 0.03
  8824. }
  8825. },
  8826. back: {
  8827. height: math.unit(7, "feet"),
  8828. weight: math.unit(300, "lb"),
  8829. name: "Back",
  8830. image: {
  8831. source: "./media/characters/pisces/back.svg",
  8832. extra: 2146 / 2055,
  8833. bottom: 0.04
  8834. }
  8835. },
  8836. },
  8837. [
  8838. {
  8839. name: "Normal",
  8840. height: math.unit(7, "feet"),
  8841. default: true
  8842. },
  8843. {
  8844. name: "Swimming Pool",
  8845. height: math.unit(12.2, "meters")
  8846. },
  8847. {
  8848. name: "Olympic Swimming Pool",
  8849. height: math.unit(56.3, "meters")
  8850. },
  8851. {
  8852. name: "Lake Superior",
  8853. height: math.unit(93900, "meters")
  8854. },
  8855. {
  8856. name: "Mediterranean Sea",
  8857. height: math.unit(644457, "meters")
  8858. },
  8859. {
  8860. name: "World's Oceans",
  8861. height: math.unit(4567491, "meters")
  8862. },
  8863. ]
  8864. ))
  8865. characterMakers.push(() => makeCharacter(
  8866. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8867. {
  8868. front: {
  8869. height: math.unit(2.3, "meters"),
  8870. weight: math.unit(120, "kg"),
  8871. name: "Front",
  8872. image: {
  8873. source: "./media/characters/zelas/front.svg"
  8874. }
  8875. },
  8876. side: {
  8877. height: math.unit(2.3, "meters"),
  8878. weight: math.unit(120, "kg"),
  8879. name: "Side",
  8880. image: {
  8881. source: "./media/characters/zelas/side.svg"
  8882. }
  8883. },
  8884. back: {
  8885. height: math.unit(2.3, "meters"),
  8886. weight: math.unit(120, "kg"),
  8887. name: "Back",
  8888. image: {
  8889. source: "./media/characters/zelas/back.svg"
  8890. }
  8891. },
  8892. foot: {
  8893. height: math.unit(1.116, "feet"),
  8894. name: "Foot",
  8895. image: {
  8896. source: "./media/characters/zelas/foot.svg"
  8897. }
  8898. },
  8899. },
  8900. [
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(2.3, "meters")
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(30, "meters"),
  8908. default: true
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(1, "inch"),
  8917. weight: math.unit(0.21, "grams"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/talbot/front.svg",
  8921. extra: 594 / 544
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Micro",
  8928. height: math.unit(1, "inch"),
  8929. default: true
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8935. {
  8936. front: {
  8937. height: math.unit(3 + 3 / 12, "feet"),
  8938. weight: math.unit(51.8, "lb"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/fliss/front.svg",
  8942. extra: 840 / 640
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Teeny Tiny",
  8949. height: math.unit(1, "mm")
  8950. },
  8951. {
  8952. name: "Small",
  8953. height: math.unit(1, "inch"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "Standard Sylveon",
  8958. height: math.unit(3 + 3 / 12, "feet")
  8959. },
  8960. {
  8961. name: "Large Nuisance",
  8962. height: math.unit(33, "feet")
  8963. },
  8964. {
  8965. name: "City Filler",
  8966. height: math.unit(3000, "feet")
  8967. },
  8968. {
  8969. name: "New Horizon",
  8970. height: math.unit(6000, "miles")
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8976. {
  8977. front: {
  8978. height: math.unit(5, "cm"),
  8979. weight: math.unit(1.94, "g"),
  8980. name: "Front",
  8981. image: {
  8982. source: "./media/characters/fleta/front.svg",
  8983. extra: 835 / 803
  8984. }
  8985. },
  8986. back: {
  8987. height: math.unit(5, "cm"),
  8988. weight: math.unit(1.94, "g"),
  8989. name: "Back",
  8990. image: {
  8991. source: "./media/characters/fleta/back.svg",
  8992. extra: 835 / 803
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Micro",
  8999. height: math.unit(5, "cm"),
  9000. default: true
  9001. },
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9006. {
  9007. front: {
  9008. height: math.unit(6, "feet"),
  9009. weight: math.unit(225, "lb"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/dominic/front.svg",
  9013. extra: 1770 / 1620,
  9014. bottom: 0.025
  9015. }
  9016. },
  9017. back: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(225, "lb"),
  9020. name: "Back",
  9021. image: {
  9022. source: "./media/characters/dominic/back.svg",
  9023. extra: 1745 / 1620,
  9024. bottom: 0.065
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Nano",
  9031. height: math.unit(0.1, "mm")
  9032. },
  9033. {
  9034. name: "Micro-",
  9035. height: math.unit(1, "mm")
  9036. },
  9037. {
  9038. name: "Micro",
  9039. height: math.unit(4, "inches")
  9040. },
  9041. {
  9042. name: "Normal",
  9043. height: math.unit(6 + 4 / 12, "feet"),
  9044. default: true
  9045. },
  9046. {
  9047. name: "Macro",
  9048. height: math.unit(115, "feet")
  9049. },
  9050. {
  9051. name: "Macro+",
  9052. height: math.unit(955, "feet")
  9053. },
  9054. {
  9055. name: "Megamacro",
  9056. height: math.unit(8990, "feet")
  9057. },
  9058. {
  9059. name: "Gigmacro",
  9060. height: math.unit(9310, "miles")
  9061. },
  9062. {
  9063. name: "Teramacro",
  9064. height: math.unit(1567005010, "miles")
  9065. },
  9066. {
  9067. name: "Examacro",
  9068. height: math.unit(1425, "parsecs")
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(400, "feet"),
  9077. weight: math.unit(44444444, "lb"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/major-colonel/front.svg"
  9081. }
  9082. },
  9083. back: {
  9084. height: math.unit(400, "feet"),
  9085. weight: math.unit(44444444, "lb"),
  9086. name: "Back",
  9087. image: {
  9088. source: "./media/characters/major-colonel/back.svg"
  9089. }
  9090. },
  9091. },
  9092. [
  9093. {
  9094. name: "Macro",
  9095. height: math.unit(400, "feet"),
  9096. default: true
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9102. {
  9103. catFront: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(120, "lb"),
  9106. name: "Front (Cat Side)",
  9107. image: {
  9108. source: "./media/characters/axel-lycan/cat-front.svg",
  9109. extra: 430 / 402,
  9110. bottom: 43 / 472.35
  9111. }
  9112. },
  9113. catBack: {
  9114. height: math.unit(6, "feet"),
  9115. weight: math.unit(120, "lb"),
  9116. name: "Back (Cat Side)",
  9117. image: {
  9118. source: "./media/characters/axel-lycan/cat-back.svg",
  9119. extra: 447 / 419,
  9120. bottom: 23.3 / 469
  9121. }
  9122. },
  9123. wolfFront: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(120, "lb"),
  9126. name: "Front (Wolf Side)",
  9127. image: {
  9128. source: "./media/characters/axel-lycan/wolf-front.svg",
  9129. extra: 485 / 456,
  9130. bottom: 19 / 504
  9131. }
  9132. },
  9133. wolfBack: {
  9134. height: math.unit(6, "feet"),
  9135. weight: math.unit(120, "lb"),
  9136. name: "Back (Wolf Side)",
  9137. image: {
  9138. source: "./media/characters/axel-lycan/wolf-back.svg",
  9139. extra: 475 / 438,
  9140. bottom: 39.2 / 514
  9141. }
  9142. },
  9143. },
  9144. [
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(1, "km"),
  9148. default: true
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(5 + 9 / 12, "feet"),
  9157. weight: math.unit(175, "lb"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/vanrel-hyena/front.svg",
  9161. extra: 1086 / 1010,
  9162. bottom: 0.04
  9163. }
  9164. },
  9165. },
  9166. [
  9167. {
  9168. name: "Normal",
  9169. height: math.unit(5 + 9 / 12, "feet"),
  9170. default: true
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9176. {
  9177. front: {
  9178. height: math.unit(6, "feet"),
  9179. weight: math.unit(103, "lb"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/abbott-absol/front.svg",
  9183. extra: 2010 / 1842
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Megamicro",
  9190. height: math.unit(0.1, "mm")
  9191. },
  9192. {
  9193. name: "Micro",
  9194. height: math.unit(1, "inch")
  9195. },
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(6, "feet"),
  9199. default: true
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9205. {
  9206. front: {
  9207. height: math.unit(6, "feet"),
  9208. weight: math.unit(264, "lb"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/hector/front.svg",
  9212. extra: 2280 / 2130,
  9213. bottom: 0.07
  9214. }
  9215. },
  9216. },
  9217. [
  9218. {
  9219. name: "Normal",
  9220. height: math.unit(12.25, "foot"),
  9221. default: true
  9222. },
  9223. {
  9224. name: "Macro",
  9225. height: math.unit(160, "feet")
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9231. {
  9232. front: {
  9233. height: math.unit(6, "feet"),
  9234. weight: math.unit(150, "lb"),
  9235. name: "Front",
  9236. image: {
  9237. source: "./media/characters/sal/front.svg",
  9238. extra: 1846 / 1699,
  9239. bottom: 0.04
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Megamacro",
  9246. height: math.unit(10, "miles"),
  9247. default: true
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9253. {
  9254. front: {
  9255. height: math.unit(3, "meters"),
  9256. weight: math.unit(450, "kg"),
  9257. name: "front",
  9258. image: {
  9259. source: "./media/characters/ranger/front.svg",
  9260. extra: 2401 / 2243,
  9261. bottom: 0.05
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(3, "meters"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(14, "feet"),
  9278. weight: math.unit(800, "kg"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/theresa/front.svg",
  9282. extra: 3575 / 3346,
  9283. bottom: 0.03
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Normal",
  9290. height: math.unit(14, "feet"),
  9291. default: true
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9297. {
  9298. front: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(3, "kg"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/ine/front.svg",
  9304. extra: 678 / 539,
  9305. bottom: 0.023
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(2.265, "feet"),
  9313. default: true
  9314. },
  9315. ]
  9316. ))
  9317. characterMakers.push(() => makeCharacter(
  9318. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9319. {
  9320. front: {
  9321. height: math.unit(5, "feet"),
  9322. weight: math.unit(30, "kg"),
  9323. name: "Front",
  9324. image: {
  9325. source: "./media/characters/vial/front.svg",
  9326. extra: 1365 / 1277,
  9327. bottom: 0.04
  9328. }
  9329. },
  9330. },
  9331. [
  9332. {
  9333. name: "Normal",
  9334. height: math.unit(5, "feet"),
  9335. default: true
  9336. },
  9337. ]
  9338. ))
  9339. characterMakers.push(() => makeCharacter(
  9340. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9341. {
  9342. side: {
  9343. height: math.unit(3.4, "meters"),
  9344. weight: math.unit(1000, "lb"),
  9345. name: "Side",
  9346. image: {
  9347. source: "./media/characters/rovoska/side.svg",
  9348. extra: 4403 / 1515
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(3.4, "meters"),
  9356. default: true
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(8, "feet"),
  9365. weight: math.unit(315, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/gunner-rotthbauer/front.svg"
  9369. }
  9370. },
  9371. back: {
  9372. height: math.unit(8, "feet"),
  9373. weight: math.unit(315, "lb"),
  9374. name: "Back",
  9375. image: {
  9376. source: "./media/characters/gunner-rotthbauer/back.svg"
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Micro",
  9383. height: math.unit(3.5, "inches")
  9384. },
  9385. {
  9386. name: "Normal",
  9387. height: math.unit(8, "feet"),
  9388. default: true
  9389. },
  9390. {
  9391. name: "Macro",
  9392. height: math.unit(250, "feet")
  9393. },
  9394. {
  9395. name: "Megamacro",
  9396. height: math.unit(1, "AU")
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9402. {
  9403. front: {
  9404. height: math.unit(5 + 5 / 12, "feet"),
  9405. weight: math.unit(140, "lb"),
  9406. name: "Front",
  9407. image: {
  9408. source: "./media/characters/allatia/front.svg",
  9409. extra: 1227 / 1180,
  9410. bottom: 0.027
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(5 + 5 / 12, "feet")
  9418. },
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(250, "feet"),
  9422. default: true
  9423. },
  9424. {
  9425. name: "Megamacro",
  9426. height: math.unit(8, "miles")
  9427. }
  9428. ]
  9429. ))
  9430. characterMakers.push(() => makeCharacter(
  9431. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9432. {
  9433. front: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(120, "lb"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/tene/front.svg",
  9439. extra: 1728 / 1578,
  9440. bottom: 0.022
  9441. }
  9442. },
  9443. stomping: {
  9444. height: math.unit(2.025, "meters"),
  9445. weight: math.unit(120, "lb"),
  9446. name: "Stomping",
  9447. image: {
  9448. source: "./media/characters/tene/stomping.svg",
  9449. extra: 938 / 873,
  9450. bottom: 0.01
  9451. }
  9452. },
  9453. sitting: {
  9454. height: math.unit(1, "meter"),
  9455. weight: math.unit(120, "lb"),
  9456. name: "Sitting",
  9457. image: {
  9458. source: "./media/characters/tene/sitting.svg",
  9459. extra: 437 / 415,
  9460. bottom: 0.1
  9461. }
  9462. },
  9463. feral: {
  9464. height: math.unit(3.9, "feet"),
  9465. weight: math.unit(250, "lb"),
  9466. name: "Feral",
  9467. image: {
  9468. source: "./media/characters/tene/feral.svg",
  9469. extra: 717 / 458,
  9470. bottom: 0.179
  9471. }
  9472. },
  9473. },
  9474. [
  9475. {
  9476. name: "Normal",
  9477. height: math.unit(6, "feet")
  9478. },
  9479. {
  9480. name: "Macro",
  9481. height: math.unit(300, "feet"),
  9482. default: true
  9483. },
  9484. {
  9485. name: "Megamacro",
  9486. height: math.unit(5, "miles")
  9487. },
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9492. {
  9493. side: {
  9494. height: math.unit(6, "feet"),
  9495. name: "Side",
  9496. image: {
  9497. source: "./media/characters/evander/side.svg",
  9498. extra: 877 / 477
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Normal",
  9505. height: math.unit(0.83, "meters"),
  9506. default: true
  9507. },
  9508. ]
  9509. ))
  9510. characterMakers.push(() => makeCharacter(
  9511. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9512. {
  9513. front: {
  9514. height: math.unit(12, "feet"),
  9515. weight: math.unit(1000, "lb"),
  9516. name: "Front",
  9517. image: {
  9518. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9519. extra: 1762 / 1611
  9520. }
  9521. },
  9522. back: {
  9523. height: math.unit(12, "feet"),
  9524. weight: math.unit(1000, "lb"),
  9525. name: "Back",
  9526. image: {
  9527. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9528. extra: 1762 / 1611
  9529. }
  9530. },
  9531. },
  9532. [
  9533. {
  9534. name: "Normal",
  9535. height: math.unit(12, "feet"),
  9536. default: true
  9537. },
  9538. {
  9539. name: "Kaiju",
  9540. height: math.unit(150, "feet")
  9541. },
  9542. ]
  9543. ))
  9544. characterMakers.push(() => makeCharacter(
  9545. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9546. {
  9547. front: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(150, "lb"),
  9550. name: "Front",
  9551. image: {
  9552. source: "./media/characters/zero-alurus/front.svg"
  9553. }
  9554. },
  9555. back: {
  9556. height: math.unit(6, "feet"),
  9557. weight: math.unit(150, "lb"),
  9558. name: "Back",
  9559. image: {
  9560. source: "./media/characters/zero-alurus/back.svg"
  9561. }
  9562. },
  9563. },
  9564. [
  9565. {
  9566. name: "Normal",
  9567. height: math.unit(5 + 10 / 12, "feet")
  9568. },
  9569. {
  9570. name: "Macro",
  9571. height: math.unit(60, "feet"),
  9572. default: true
  9573. },
  9574. {
  9575. name: "Macro+",
  9576. height: math.unit(450, "feet")
  9577. },
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9582. {
  9583. front: {
  9584. height: math.unit(6, "feet"),
  9585. weight: math.unit(200, "lb"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/mega-shi/front.svg",
  9589. extra: 1279 / 1250,
  9590. bottom: 0.02
  9591. }
  9592. },
  9593. back: {
  9594. height: math.unit(6, "feet"),
  9595. weight: math.unit(200, "lb"),
  9596. name: "Back",
  9597. image: {
  9598. source: "./media/characters/mega-shi/back.svg",
  9599. extra: 1279 / 1250,
  9600. bottom: 0.02
  9601. }
  9602. },
  9603. },
  9604. [
  9605. {
  9606. name: "Micro",
  9607. height: math.unit(16 + 6 / 12, "feet")
  9608. },
  9609. {
  9610. name: "Third Dimension",
  9611. height: math.unit(40, "meters")
  9612. },
  9613. {
  9614. name: "Normal",
  9615. height: math.unit(660, "feet"),
  9616. default: true
  9617. },
  9618. {
  9619. name: "Megamacro",
  9620. height: math.unit(10, "miles")
  9621. },
  9622. {
  9623. name: "Planetary Launch",
  9624. height: math.unit(500, "miles")
  9625. },
  9626. {
  9627. name: "Interstellar",
  9628. height: math.unit(1e9, "miles")
  9629. },
  9630. {
  9631. name: "Leaving the Universe",
  9632. height: math.unit(1, "gigaparsec")
  9633. },
  9634. {
  9635. name: "Travelling Universes",
  9636. height: math.unit(30e15, "parsecs")
  9637. },
  9638. ]
  9639. ))
  9640. characterMakers.push(() => makeCharacter(
  9641. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9642. {
  9643. front: {
  9644. height: math.unit(6, "feet"),
  9645. weight: math.unit(150, "lb"),
  9646. name: "Front",
  9647. image: {
  9648. source: "./media/characters/odyssey/front.svg",
  9649. extra: 1782 / 1582,
  9650. bottom: 0.01
  9651. }
  9652. },
  9653. side: {
  9654. height: math.unit(5.7, "feet"),
  9655. weight: math.unit(140, "lb"),
  9656. name: "Side",
  9657. image: {
  9658. source: "./media/characters/odyssey/side.svg",
  9659. extra: 6462 / 5700
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(5 + 4 / 12, "feet")
  9667. },
  9668. {
  9669. name: "Macro",
  9670. height: math.unit(1, "km")
  9671. },
  9672. {
  9673. name: "Megamacro",
  9674. height: math.unit(3000, "km")
  9675. },
  9676. {
  9677. name: "Gigamacro",
  9678. height: math.unit(1, "AU"),
  9679. default: true
  9680. },
  9681. {
  9682. name: "Omniversal",
  9683. height: math.unit(100e14, "lightyears")
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9689. {
  9690. front: {
  9691. height: math.unit(6, "feet"),
  9692. weight: math.unit(300, "lb"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/mekuto/front.svg",
  9696. extra: 921 / 832,
  9697. bottom: 0.03
  9698. }
  9699. },
  9700. hand: {
  9701. height: math.unit(6 / 10.24, "feet"),
  9702. name: "Hand",
  9703. image: {
  9704. source: "./media/characters/mekuto/hand.svg"
  9705. }
  9706. },
  9707. foot: {
  9708. height: math.unit(6 / 5.05, "feet"),
  9709. name: "Foot",
  9710. image: {
  9711. source: "./media/characters/mekuto/foot.svg"
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Minimicro",
  9718. height: math.unit(0.2, "inches")
  9719. },
  9720. {
  9721. name: "Micro",
  9722. height: math.unit(1.5, "inches")
  9723. },
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(5 + 11 / 12, "feet"),
  9727. default: true
  9728. },
  9729. {
  9730. name: "Minimacro",
  9731. height: math.unit(17 + 9 / 12, "feet")
  9732. },
  9733. {
  9734. name: "Macro",
  9735. height: math.unit(177.5, "feet")
  9736. },
  9737. {
  9738. name: "Megamacro",
  9739. height: math.unit(152, "miles")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(6.5, "inches"),
  9748. weight: math.unit(13, "oz"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/dafydd-tomos/front.svg",
  9752. extra: 2990 / 2603,
  9753. bottom: 0.03
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Micro",
  9760. height: math.unit(6.5, "inches"),
  9761. default: true
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(150, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/splinter/front.svg",
  9774. extra: 2990 / 2882,
  9775. bottom: 0.04
  9776. }
  9777. },
  9778. back: {
  9779. height: math.unit(6, "feet"),
  9780. weight: math.unit(150, "lb"),
  9781. name: "Back",
  9782. image: {
  9783. source: "./media/characters/splinter/back.svg",
  9784. extra: 2990 / 2882,
  9785. bottom: 0.04
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Normal",
  9792. height: math.unit(6, "feet")
  9793. },
  9794. {
  9795. name: "Macro",
  9796. height: math.unit(230, "meters"),
  9797. default: true
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(4 + 10 / 12, "feet"),
  9806. weight: math.unit(480, "lb"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/snow-gabumon/front.svg",
  9810. extra: 1140 / 963,
  9811. bottom: 0.058
  9812. }
  9813. },
  9814. back: {
  9815. height: math.unit(4 + 10 / 12, "feet"),
  9816. weight: math.unit(480, "lb"),
  9817. name: "Back",
  9818. image: {
  9819. source: "./media/characters/snow-gabumon/back.svg",
  9820. extra: 1115 / 962,
  9821. bottom: 0.041
  9822. }
  9823. },
  9824. frontUndresed: {
  9825. height: math.unit(4 + 10 / 12, "feet"),
  9826. weight: math.unit(480, "lb"),
  9827. name: "Front (Undressed)",
  9828. image: {
  9829. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9830. extra: 1061 / 960,
  9831. bottom: 0.045
  9832. }
  9833. },
  9834. },
  9835. [
  9836. {
  9837. name: "Micro",
  9838. height: math.unit(1, "inch")
  9839. },
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(4 + 10 / 12, "feet"),
  9843. default: true
  9844. },
  9845. {
  9846. name: "Macro",
  9847. height: math.unit(200, "feet")
  9848. },
  9849. {
  9850. name: "Megamacro",
  9851. height: math.unit(120, "miles")
  9852. },
  9853. {
  9854. name: "Gigamacro",
  9855. height: math.unit(9800, "miles")
  9856. },
  9857. ]
  9858. ))
  9859. characterMakers.push(() => makeCharacter(
  9860. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9861. {
  9862. front: {
  9863. height: math.unit(1.7, "meters"),
  9864. weight: math.unit(140, "lb"),
  9865. name: "Front",
  9866. image: {
  9867. source: "./media/characters/moody/front.svg",
  9868. extra: 3226 / 3007,
  9869. bottom: 0.087
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Micro",
  9876. height: math.unit(1, "mm")
  9877. },
  9878. {
  9879. name: "Normal",
  9880. height: math.unit(1.7, "meters"),
  9881. default: true
  9882. },
  9883. {
  9884. name: "Macro",
  9885. height: math.unit(80, "meters")
  9886. },
  9887. {
  9888. name: "Macro+",
  9889. height: math.unit(500, "meters")
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9895. {
  9896. front: {
  9897. height: math.unit(6, "feet"),
  9898. weight: math.unit(150, "lb"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/zyas/front.svg",
  9902. extra: 1180 / 1120,
  9903. bottom: 0.045
  9904. }
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Normal",
  9910. height: math.unit(10, "feet"),
  9911. default: true
  9912. },
  9913. {
  9914. name: "Macro",
  9915. height: math.unit(500, "feet")
  9916. },
  9917. {
  9918. name: "Megamacro",
  9919. height: math.unit(5, "miles")
  9920. },
  9921. {
  9922. name: "Teramacro",
  9923. height: math.unit(150000, "miles")
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9929. {
  9930. front: {
  9931. height: math.unit(6, "feet"),
  9932. weight: math.unit(150, "lb"),
  9933. name: "Front",
  9934. image: {
  9935. source: "./media/characters/cuon/front.svg",
  9936. extra: 1390 / 1320,
  9937. bottom: 0.008
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Micro",
  9944. height: math.unit(3, "inches")
  9945. },
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(18 + 9 / 12, "feet"),
  9949. default: true
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(360, "feet")
  9954. },
  9955. {
  9956. name: "Megamacro",
  9957. height: math.unit(360, "miles")
  9958. },
  9959. ]
  9960. ))
  9961. characterMakers.push(() => makeCharacter(
  9962. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9963. {
  9964. front: {
  9965. height: math.unit(2.4, "meters"),
  9966. weight: math.unit(70, "kg"),
  9967. name: "Front",
  9968. image: {
  9969. source: "./media/characters/nyanuxk/front.svg",
  9970. extra: 1172 / 1084,
  9971. bottom: 0.065
  9972. }
  9973. },
  9974. side: {
  9975. height: math.unit(2.4, "meters"),
  9976. weight: math.unit(70, "kg"),
  9977. name: "Side",
  9978. image: {
  9979. source: "./media/characters/nyanuxk/side.svg",
  9980. extra: 1190 / 1132,
  9981. bottom: 0.007
  9982. }
  9983. },
  9984. back: {
  9985. height: math.unit(2.4, "meters"),
  9986. weight: math.unit(70, "kg"),
  9987. name: "Back",
  9988. image: {
  9989. source: "./media/characters/nyanuxk/back.svg",
  9990. extra: 1200 / 1141,
  9991. bottom: 0.015
  9992. }
  9993. },
  9994. foot: {
  9995. height: math.unit(0.52, "meters"),
  9996. name: "Foot",
  9997. image: {
  9998. source: "./media/characters/nyanuxk/foot.svg"
  9999. }
  10000. },
  10001. },
  10002. [
  10003. {
  10004. name: "Micro",
  10005. height: math.unit(2, "cm")
  10006. },
  10007. {
  10008. name: "Normal",
  10009. height: math.unit(2.4, "meters"),
  10010. default: true
  10011. },
  10012. {
  10013. name: "Smaller Macro",
  10014. height: math.unit(120, "meters")
  10015. },
  10016. {
  10017. name: "Bigger Macro",
  10018. height: math.unit(1.2, "km")
  10019. },
  10020. {
  10021. name: "Megamacro",
  10022. height: math.unit(15, "kilometers")
  10023. },
  10024. {
  10025. name: "Gigamacro",
  10026. height: math.unit(2000, "km")
  10027. },
  10028. {
  10029. name: "Teramacro",
  10030. height: math.unit(500000, "km")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10036. {
  10037. side: {
  10038. height: math.unit(6, "feet"),
  10039. name: "Side",
  10040. image: {
  10041. source: "./media/characters/ailbhe/side.svg",
  10042. extra: 757 / 464,
  10043. bottom: 0.041
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Normal",
  10050. height: math.unit(1.07, "meters"),
  10051. default: true
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(6, "feet"),
  10060. weight: math.unit(120, "kg"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/zevulfius/front.svg",
  10064. extra: 965 / 903
  10065. }
  10066. },
  10067. side: {
  10068. height: math.unit(6, "feet"),
  10069. weight: math.unit(120, "kg"),
  10070. name: "Side",
  10071. image: {
  10072. source: "./media/characters/zevulfius/side.svg",
  10073. extra: 939 / 900
  10074. }
  10075. },
  10076. back: {
  10077. height: math.unit(6, "feet"),
  10078. weight: math.unit(120, "kg"),
  10079. name: "Back",
  10080. image: {
  10081. source: "./media/characters/zevulfius/back.svg",
  10082. extra: 918 / 854,
  10083. bottom: 0.005
  10084. }
  10085. },
  10086. foot: {
  10087. height: math.unit(6 / 3.72, "feet"),
  10088. name: "Foot",
  10089. image: {
  10090. source: "./media/characters/zevulfius/foot.svg"
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Macro",
  10097. height: math.unit(750, "meters")
  10098. },
  10099. {
  10100. name: "Megamacro",
  10101. height: math.unit(20, "km"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Gigamacro",
  10106. height: math.unit(2000, "km")
  10107. },
  10108. {
  10109. name: "Teramacro",
  10110. height: math.unit(250000, "km")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(100, "feet"),
  10119. weight: math.unit(350, "kg"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/rikes/front.svg",
  10123. extra: 1565 / 1483,
  10124. bottom: 0.017
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(100, "feet"),
  10132. default: true
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10138. {
  10139. anthro: {
  10140. height: math.unit(8, "feet"),
  10141. weight: math.unit(120, "kg"),
  10142. name: "Anthro",
  10143. image: {
  10144. source: "./media/characters/adam-silver-mane/anthro.svg",
  10145. extra: 5743 / 5339,
  10146. bottom: 0.07
  10147. }
  10148. },
  10149. taur: {
  10150. height: math.unit(16, "feet"),
  10151. weight: math.unit(1500, "kg"),
  10152. name: "Taur",
  10153. image: {
  10154. source: "./media/characters/adam-silver-mane/taur.svg",
  10155. extra: 1713 / 1571,
  10156. bottom: 0.01
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(8, "feet")
  10164. },
  10165. {
  10166. name: "Minimacro",
  10167. height: math.unit(80, "feet")
  10168. },
  10169. {
  10170. name: "Macro",
  10171. height: math.unit(800, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Megamacro",
  10176. height: math.unit(8000, "feet")
  10177. },
  10178. {
  10179. name: "Gigamacro",
  10180. height: math.unit(800, "miles")
  10181. },
  10182. {
  10183. name: "Teramacro",
  10184. height: math.unit(80000, "miles")
  10185. },
  10186. {
  10187. name: "Celestial",
  10188. height: math.unit(8e6, "miles")
  10189. },
  10190. {
  10191. name: "Star Dragon",
  10192. height: math.unit(800000, "parsecs")
  10193. },
  10194. {
  10195. name: "Godly",
  10196. height: math.unit(800, "teraparsecs")
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Ky'owin", species: ["dragon", "cat"], 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/ky'owin/front.svg",
  10209. extra: 3888 / 3068,
  10210. bottom: 0.015
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Normal",
  10217. height: math.unit(6 + 8 / 12, "feet")
  10218. },
  10219. {
  10220. name: "Large",
  10221. height: math.unit(68, "feet")
  10222. },
  10223. {
  10224. name: "Macro",
  10225. height: math.unit(132, "feet")
  10226. },
  10227. {
  10228. name: "Macro+",
  10229. height: math.unit(340, "feet")
  10230. },
  10231. {
  10232. name: "Macro++",
  10233. height: math.unit(680, "feet"),
  10234. default: true
  10235. },
  10236. {
  10237. name: "Megamacro",
  10238. height: math.unit(1, "mile")
  10239. },
  10240. {
  10241. name: "Megamacro+",
  10242. height: math.unit(10, "miles")
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10248. {
  10249. front: {
  10250. height: math.unit(4, "feet"),
  10251. weight: math.unit(50, "lb"),
  10252. name: "Front",
  10253. image: {
  10254. source: "./media/characters/mal/front.svg",
  10255. extra: 785 / 724,
  10256. bottom: 0.07
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Micro",
  10263. height: math.unit(4, "inches")
  10264. },
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(4, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Macro",
  10272. height: math.unit(200, "feet")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(150, "lb"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/jordan-deware/front.svg",
  10285. extra: 1191 / 1012
  10286. }
  10287. },
  10288. },
  10289. [
  10290. {
  10291. name: "Nano",
  10292. height: math.unit(0.01, "mm")
  10293. },
  10294. {
  10295. name: "Minimicro",
  10296. height: math.unit(1, "mm")
  10297. },
  10298. {
  10299. name: "Micro",
  10300. height: math.unit(0.5, "inches")
  10301. },
  10302. {
  10303. name: "Normal",
  10304. height: math.unit(4, "feet"),
  10305. default: true
  10306. },
  10307. {
  10308. name: "Minimacro",
  10309. height: math.unit(40, "meters")
  10310. },
  10311. {
  10312. name: "Small Macro",
  10313. height: math.unit(400, "meters")
  10314. },
  10315. {
  10316. name: "Macro",
  10317. height: math.unit(4, "miles")
  10318. },
  10319. {
  10320. name: "Megamacro",
  10321. height: math.unit(40, "miles")
  10322. },
  10323. {
  10324. name: "Megamacro+",
  10325. height: math.unit(400, "miles")
  10326. },
  10327. {
  10328. name: "Gigamacro",
  10329. height: math.unit(400000, "miles")
  10330. },
  10331. ]
  10332. ))
  10333. characterMakers.push(() => makeCharacter(
  10334. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10335. {
  10336. side: {
  10337. height: math.unit(6, "feet"),
  10338. weight: math.unit(150, "lb"),
  10339. name: "Side",
  10340. image: {
  10341. source: "./media/characters/kimiko/side.svg",
  10342. extra: 600 / 358
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Normal",
  10349. height: math.unit(15, "feet"),
  10350. default: true
  10351. },
  10352. {
  10353. name: "Macro",
  10354. height: math.unit(220, "feet")
  10355. },
  10356. {
  10357. name: "Macro+",
  10358. height: math.unit(1450, "feet")
  10359. },
  10360. {
  10361. name: "Megamacro",
  10362. height: math.unit(11500, "feet")
  10363. },
  10364. {
  10365. name: "Gigamacro",
  10366. height: math.unit(9500, "miles")
  10367. },
  10368. {
  10369. name: "Teramacro",
  10370. height: math.unit(2208005005, "miles")
  10371. },
  10372. {
  10373. name: "Examacro",
  10374. height: math.unit(2750, "parsecs")
  10375. },
  10376. {
  10377. name: "Zettamacro",
  10378. height: math.unit(101500, "parsecs")
  10379. },
  10380. ]
  10381. ))
  10382. characterMakers.push(() => makeCharacter(
  10383. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10384. {
  10385. front: {
  10386. height: math.unit(6, "feet"),
  10387. weight: math.unit(70, "kg"),
  10388. name: "Front",
  10389. image: {
  10390. source: "./media/characters/andrew-sleepy/front.svg"
  10391. }
  10392. },
  10393. side: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(70, "kg"),
  10396. name: "Side",
  10397. image: {
  10398. source: "./media/characters/andrew-sleepy/side.svg"
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Micro",
  10405. height: math.unit(1, "mm"),
  10406. default: true
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10412. {
  10413. front: {
  10414. height: math.unit(6, "feet"),
  10415. weight: math.unit(150, "lb"),
  10416. name: "Front",
  10417. image: {
  10418. source: "./media/characters/judio/front.svg",
  10419. extra: 1258 / 1110
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Normal",
  10426. height: math.unit(5 + 6 / 12, "feet")
  10427. },
  10428. {
  10429. name: "Macro",
  10430. height: math.unit(1000, "feet"),
  10431. default: true
  10432. },
  10433. {
  10434. name: "Megamacro",
  10435. height: math.unit(10, "miles")
  10436. },
  10437. ]
  10438. ))
  10439. characterMakers.push(() => makeCharacter(
  10440. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10441. {
  10442. front: {
  10443. height: math.unit(6, "feet"),
  10444. weight: math.unit(68, "kg"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/nomaxice/front.svg",
  10448. extra: 1498 / 1073,
  10449. bottom: 0.075
  10450. }
  10451. },
  10452. foot: {
  10453. height: math.unit(1.1, "feet"),
  10454. name: "Foot",
  10455. image: {
  10456. source: "./media/characters/nomaxice/foot.svg"
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Micro",
  10463. height: math.unit(8, "cm")
  10464. },
  10465. {
  10466. name: "Norm",
  10467. height: math.unit(1.82, "m")
  10468. },
  10469. {
  10470. name: "Norm+",
  10471. height: math.unit(8.8, "feet")
  10472. },
  10473. {
  10474. name: "Big",
  10475. height: math.unit(8, "meters"),
  10476. default: true
  10477. },
  10478. {
  10479. name: "Macro",
  10480. height: math.unit(18, "meters")
  10481. },
  10482. {
  10483. name: "Macro+",
  10484. height: math.unit(88, "meters")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(12, "feet"),
  10493. weight: math.unit(1.5, "tons"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/dydros/front.svg",
  10497. extra: 863 / 800,
  10498. bottom: 0.015
  10499. }
  10500. },
  10501. back: {
  10502. height: math.unit(12, "feet"),
  10503. weight: math.unit(1.5, "tons"),
  10504. name: "Back",
  10505. image: {
  10506. source: "./media/characters/dydros/back.svg",
  10507. extra: 900 / 843,
  10508. bottom: 0.005
  10509. }
  10510. },
  10511. },
  10512. [
  10513. {
  10514. name: "Normal",
  10515. height: math.unit(12, "feet"),
  10516. default: true
  10517. },
  10518. ]
  10519. ))
  10520. characterMakers.push(() => makeCharacter(
  10521. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10522. {
  10523. front: {
  10524. height: math.unit(6, "feet"),
  10525. weight: math.unit(100, "kg"),
  10526. name: "Front",
  10527. image: {
  10528. source: "./media/characters/riggi/front.svg",
  10529. extra: 5787 / 5303
  10530. }
  10531. },
  10532. hyper: {
  10533. height: math.unit(6 * 5 / 3, "feet"),
  10534. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10535. name: "Hyper",
  10536. image: {
  10537. source: "./media/characters/riggi/hyper.svg",
  10538. extra: 3595 / 3485
  10539. }
  10540. },
  10541. },
  10542. [
  10543. {
  10544. name: "Small Macro",
  10545. height: math.unit(50, "feet")
  10546. },
  10547. {
  10548. name: "Default",
  10549. height: math.unit(200, "feet"),
  10550. default: true
  10551. },
  10552. {
  10553. name: "Loom",
  10554. height: math.unit(10000, "feet")
  10555. },
  10556. {
  10557. name: "Cruising Altitude",
  10558. height: math.unit(30000, "feet")
  10559. },
  10560. {
  10561. name: "Megamacro",
  10562. height: math.unit(100, "miles")
  10563. },
  10564. {
  10565. name: "Continent Sized",
  10566. height: math.unit(2800, "miles")
  10567. },
  10568. {
  10569. name: "Earth Sized",
  10570. height: math.unit(8000, "miles")
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10576. {
  10577. front: {
  10578. height: math.unit(6, "feet"),
  10579. weight: math.unit(250, "lb"),
  10580. name: "Front",
  10581. image: {
  10582. source: "./media/characters/alexi/front.svg",
  10583. extra: 3483 / 3291,
  10584. bottom: 0.04
  10585. }
  10586. },
  10587. back: {
  10588. height: math.unit(6, "feet"),
  10589. weight: math.unit(250, "lb"),
  10590. name: "Back",
  10591. image: {
  10592. source: "./media/characters/alexi/back.svg",
  10593. extra: 3533 / 3356,
  10594. bottom: 0.021
  10595. }
  10596. },
  10597. frontTransforming: {
  10598. height: math.unit(8.58, "feet"),
  10599. weight: math.unit(1300, "lb"),
  10600. name: "Transforming",
  10601. image: {
  10602. source: "./media/characters/alexi/front-transforming.svg",
  10603. extra: 437 / 409,
  10604. bottom: 19 / 458.66
  10605. }
  10606. },
  10607. frontTransformed: {
  10608. height: math.unit(12.5, "feet"),
  10609. weight: math.unit(4000, "lb"),
  10610. name: "Transformed",
  10611. image: {
  10612. source: "./media/characters/alexi/front-transformed.svg",
  10613. extra: 639 / 614,
  10614. bottom: 30.55 / 671
  10615. }
  10616. },
  10617. },
  10618. [
  10619. {
  10620. name: "Normal",
  10621. height: math.unit(14, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Minimacro",
  10626. height: math.unit(30, "meters")
  10627. },
  10628. {
  10629. name: "Macro",
  10630. height: math.unit(500, "meters")
  10631. },
  10632. {
  10633. name: "Megamacro",
  10634. height: math.unit(9000, "km")
  10635. },
  10636. {
  10637. name: "Teramacro",
  10638. height: math.unit(384000, "km")
  10639. },
  10640. ]
  10641. ))
  10642. characterMakers.push(() => makeCharacter(
  10643. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10644. {
  10645. front: {
  10646. height: math.unit(6, "feet"),
  10647. weight: math.unit(150, "lb"),
  10648. name: "Front",
  10649. image: {
  10650. source: "./media/characters/kayroo/front.svg",
  10651. extra: 1153 / 1038,
  10652. bottom: 0.06
  10653. }
  10654. },
  10655. foot: {
  10656. height: math.unit(6, "feet"),
  10657. weight: math.unit(150, "lb"),
  10658. name: "Foot",
  10659. image: {
  10660. source: "./media/characters/kayroo/foot.svg"
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(8, "feet"),
  10668. default: true
  10669. },
  10670. {
  10671. name: "Minimacro",
  10672. height: math.unit(250, "feet")
  10673. },
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(2800, "feet")
  10677. },
  10678. {
  10679. name: "Megamacro",
  10680. height: math.unit(5200, "feet")
  10681. },
  10682. {
  10683. name: "Gigamacro",
  10684. height: math.unit(27000, "feet")
  10685. },
  10686. {
  10687. name: "Omega",
  10688. height: math.unit(45000, "feet")
  10689. },
  10690. ]
  10691. ))
  10692. characterMakers.push(() => makeCharacter(
  10693. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10694. {
  10695. front: {
  10696. height: math.unit(18, "feet"),
  10697. weight: math.unit(5800, "lb"),
  10698. name: "Front",
  10699. image: {
  10700. source: "./media/characters/rhys/front.svg",
  10701. extra: 3386 / 3090,
  10702. bottom: 0.07
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(18, "feet"),
  10710. default: true
  10711. },
  10712. {
  10713. name: "Working Size",
  10714. height: math.unit(200, "feet")
  10715. },
  10716. {
  10717. name: "Demolition Size",
  10718. height: math.unit(2000, "feet")
  10719. },
  10720. {
  10721. name: "Maximum Licensed Size",
  10722. height: math.unit(5, "miles")
  10723. },
  10724. {
  10725. name: "Maximum Observed Size",
  10726. height: math.unit(10, "yottameters")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10732. {
  10733. front: {
  10734. height: math.unit(6, "feet"),
  10735. weight: math.unit(250, "lb"),
  10736. name: "Front",
  10737. image: {
  10738. source: "./media/characters/toto/front.svg",
  10739. extra: 527 / 479,
  10740. bottom: 0.05
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Micro",
  10747. height: math.unit(3, "feet")
  10748. },
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(10, "feet")
  10752. },
  10753. {
  10754. name: "Macro",
  10755. height: math.unit(150, "feet"),
  10756. default: true
  10757. },
  10758. {
  10759. name: "Megamacro",
  10760. height: math.unit(1200, "feet")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "King", species: ["lion"], tags: ["anthro"] },
  10766. {
  10767. back: {
  10768. height: math.unit(6, "feet"),
  10769. weight: math.unit(150, "lb"),
  10770. name: "Back",
  10771. image: {
  10772. source: "./media/characters/king/back.svg"
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Micro",
  10779. height: math.unit(2, "inches")
  10780. },
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(8, "feet")
  10784. },
  10785. {
  10786. name: "Macro",
  10787. height: math.unit(200, "feet"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Megamacro",
  10792. height: math.unit(50, "miles")
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10798. {
  10799. anthro: {
  10800. height: math.unit(6 + 5 / 12, "feet"),
  10801. weight: math.unit(280, "lb"),
  10802. name: "Anthro",
  10803. image: {
  10804. source: "./media/characters/cordite/anthro.svg",
  10805. extra: 1986 / 1905,
  10806. bottom: 0.025
  10807. }
  10808. },
  10809. feral: {
  10810. height: math.unit(2, "feet"),
  10811. weight: math.unit(90, "lb"),
  10812. name: "Feral",
  10813. image: {
  10814. source: "./media/characters/cordite/feral.svg",
  10815. extra: 1260 / 755,
  10816. bottom: 0.05
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Normal",
  10823. height: math.unit(6 + 5 / 12, "feet"),
  10824. default: true
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10830. {
  10831. front: {
  10832. height: math.unit(6, "feet"),
  10833. weight: math.unit(150, "lb"),
  10834. name: "Front",
  10835. image: {
  10836. source: "./media/characters/pianostrong/front.svg",
  10837. extra: 6577 / 6254,
  10838. bottom: 0.02
  10839. }
  10840. },
  10841. side: {
  10842. height: math.unit(6, "feet"),
  10843. weight: math.unit(150, "lb"),
  10844. name: "Side",
  10845. image: {
  10846. source: "./media/characters/pianostrong/side.svg",
  10847. extra: 6106 / 5730
  10848. }
  10849. },
  10850. back: {
  10851. height: math.unit(6, "feet"),
  10852. weight: math.unit(150, "lb"),
  10853. name: "Back",
  10854. image: {
  10855. source: "./media/characters/pianostrong/back.svg",
  10856. extra: 6085 / 5733,
  10857. bottom: 0.01
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Macro",
  10864. height: math.unit(100, "feet")
  10865. },
  10866. {
  10867. name: "Macro+",
  10868. height: math.unit(300, "feet"),
  10869. default: true
  10870. },
  10871. {
  10872. name: "Macro++",
  10873. height: math.unit(1000, "feet")
  10874. },
  10875. ]
  10876. ))
  10877. characterMakers.push(() => makeCharacter(
  10878. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10879. {
  10880. front: {
  10881. height: math.unit(6, "feet"),
  10882. weight: math.unit(150, "lb"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/kona/front.svg",
  10886. extra: 2960 / 2629,
  10887. bottom: 0.005
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(11 + 8 / 12, "feet")
  10895. },
  10896. {
  10897. name: "Macro",
  10898. height: math.unit(850, "feet"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Macro+",
  10903. height: math.unit(1.5, "km"),
  10904. default: true
  10905. },
  10906. {
  10907. name: "Megamacro",
  10908. height: math.unit(80, "miles")
  10909. },
  10910. {
  10911. name: "Gigamacro",
  10912. height: math.unit(3500, "miles")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10918. {
  10919. side: {
  10920. height: math.unit(1.9, "meters"),
  10921. weight: math.unit(326, "kg"),
  10922. name: "Side",
  10923. image: {
  10924. source: "./media/characters/levi/side.svg",
  10925. extra: 1704 / 1334,
  10926. bottom: 0.02
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Normal",
  10933. height: math.unit(1.9, "meters"),
  10934. default: true
  10935. },
  10936. {
  10937. name: "Macro",
  10938. height: math.unit(20, "meters")
  10939. },
  10940. {
  10941. name: "Macro+",
  10942. height: math.unit(200, "meters")
  10943. },
  10944. {
  10945. name: "Megamacro",
  10946. height: math.unit(2, "km")
  10947. },
  10948. {
  10949. name: "Megamacro+",
  10950. height: math.unit(20, "km")
  10951. },
  10952. {
  10953. name: "Gigamacro",
  10954. height: math.unit(2500, "km")
  10955. },
  10956. {
  10957. name: "Gigamacro+",
  10958. height: math.unit(120000, "km")
  10959. },
  10960. {
  10961. name: "Teramacro",
  10962. height: math.unit(7.77e6, "km")
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(6 + 4 / 12, "feet"),
  10971. weight: math.unit(188, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/bmc/front.svg",
  10975. extra: 1067 / 1022,
  10976. bottom: 0.047
  10977. }
  10978. },
  10979. },
  10980. [
  10981. {
  10982. name: "Human-sized",
  10983. height: math.unit(6 + 4 / 12, "feet")
  10984. },
  10985. {
  10986. name: "Small",
  10987. height: math.unit(250, "feet")
  10988. },
  10989. {
  10990. name: "Normal",
  10991. height: math.unit(1250, "feet"),
  10992. default: true
  10993. },
  10994. {
  10995. name: "Good Day",
  10996. height: math.unit(88, "miles")
  10997. },
  10998. {
  10999. name: "Largest Measured Size",
  11000. height: math.unit(11.2e6, "lightyears")
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(20, "feet"),
  11009. weight: math.unit(2016, "kg"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/sven-the-kaiju/front.svg",
  11013. extra: 1479 / 1449,
  11014. bottom: 0.05
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Fairy",
  11021. height: math.unit(6, "inches")
  11022. },
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(20, "feet"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Rampage",
  11030. height: math.unit(200, "feet")
  11031. },
  11032. {
  11033. name: "Archfey Forest Guardian",
  11034. height: math.unit(1, "mile")
  11035. },
  11036. ]
  11037. ))
  11038. characterMakers.push(() => makeCharacter(
  11039. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11040. {
  11041. front: {
  11042. height: math.unit(4, "meters"),
  11043. weight: math.unit(2, "tons"),
  11044. name: "Front",
  11045. image: {
  11046. source: "./media/characters/marik/front.svg",
  11047. extra: 1057 / 1003,
  11048. bottom: 0.08
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(4, "meters"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(20, "meters")
  11061. },
  11062. {
  11063. name: "Megamacro",
  11064. height: math.unit(50, "km")
  11065. },
  11066. {
  11067. name: "Gigamacro",
  11068. height: math.unit(100, "km")
  11069. },
  11070. {
  11071. name: "Alpha Macro",
  11072. height: math.unit(7.88e7, "yottameters")
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(110, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/mel/front.svg",
  11085. extra: 736 / 617,
  11086. bottom: 0.017
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Pico",
  11093. height: math.unit(3, "pm")
  11094. },
  11095. {
  11096. name: "Nano",
  11097. height: math.unit(3, "nm")
  11098. },
  11099. {
  11100. name: "Micro",
  11101. height: math.unit(0.3, "mm"),
  11102. default: true
  11103. },
  11104. {
  11105. name: "Micro+",
  11106. height: math.unit(3, "mm")
  11107. },
  11108. {
  11109. name: "Normal",
  11110. height: math.unit(5 + 10.5 / 12, "feet")
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11116. {
  11117. kaiju: {
  11118. height: math.unit(1.75, "meters"),
  11119. weight: math.unit(55, "kg"),
  11120. name: "Kaiju",
  11121. image: {
  11122. source: "./media/characters/lykonous/kaiju.svg",
  11123. extra: 1055 / 946,
  11124. bottom: 0.135
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(2.5, "meters"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Kaiju Dragon",
  11136. height: math.unit(60, "meters")
  11137. },
  11138. {
  11139. name: "Mega Kaiju",
  11140. height: math.unit(120, "km")
  11141. },
  11142. {
  11143. name: "Giga Kaiju",
  11144. height: math.unit(200, "megameters")
  11145. },
  11146. {
  11147. name: "Terra Kaiju",
  11148. height: math.unit(400, "gigameters")
  11149. },
  11150. {
  11151. name: "Kaiju Dragon God",
  11152. height: math.unit(13000, "exaparsecs")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(6, "feet"),
  11161. weight: math.unit(150, "lb"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/blü/front.svg",
  11165. extra: 1883 / 1564,
  11166. bottom: 0.031
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(13, "feet"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Big Boi",
  11178. height: math.unit(150, "meters")
  11179. },
  11180. {
  11181. name: "Mini Stomper",
  11182. height: math.unit(300, "meters")
  11183. },
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(1000, "meters")
  11187. },
  11188. {
  11189. name: "Megamacro",
  11190. height: math.unit(11000, "meters")
  11191. },
  11192. {
  11193. name: "Gigamacro",
  11194. height: math.unit(11000, "km")
  11195. },
  11196. {
  11197. name: "Teramacro",
  11198. height: math.unit(420000, "km")
  11199. },
  11200. {
  11201. name: "Examacro",
  11202. height: math.unit(120, "parsecs")
  11203. },
  11204. {
  11205. name: "God Tho",
  11206. height: math.unit(98000000000, "parsecs")
  11207. },
  11208. ]
  11209. ))
  11210. characterMakers.push(() => makeCharacter(
  11211. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11212. {
  11213. taurFront: {
  11214. height: math.unit(6, "feet"),
  11215. weight: math.unit(200, "lb"),
  11216. name: "Taur (Front)",
  11217. image: {
  11218. source: "./media/characters/scales/taur-front.svg",
  11219. extra: 1,
  11220. bottom: 0.05
  11221. }
  11222. },
  11223. taurBack: {
  11224. height: math.unit(6, "feet"),
  11225. weight: math.unit(200, "lb"),
  11226. name: "Taur (Back)",
  11227. image: {
  11228. source: "./media/characters/scales/taur-back.svg",
  11229. extra: 1,
  11230. bottom: 0.08
  11231. }
  11232. },
  11233. anthro: {
  11234. height: math.unit(6 * 7 / 12, "feet"),
  11235. weight: math.unit(100, "lb"),
  11236. name: "Anthro",
  11237. image: {
  11238. source: "./media/characters/scales/anthro.svg",
  11239. extra: 1,
  11240. bottom: 0.06
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Normal",
  11247. height: math.unit(12, "feet"),
  11248. default: true
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(150, "lb"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/koragos/front.svg",
  11261. extra: 841 / 794,
  11262. bottom: 0.035
  11263. }
  11264. },
  11265. back: {
  11266. height: math.unit(6, "feet"),
  11267. weight: math.unit(150, "lb"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/koragos/back.svg",
  11271. extra: 841 / 810,
  11272. bottom: 0.022
  11273. }
  11274. },
  11275. },
  11276. [
  11277. {
  11278. name: "Normal",
  11279. height: math.unit(6 + 11 / 12, "feet"),
  11280. default: true
  11281. },
  11282. {
  11283. name: "Macro",
  11284. height: math.unit(490, "feet")
  11285. },
  11286. {
  11287. name: "Megamacro",
  11288. height: math.unit(10, "miles")
  11289. },
  11290. {
  11291. name: "Gigamacro",
  11292. height: math.unit(50, "miles")
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11298. {
  11299. front: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(250, "lb"),
  11302. name: "Front",
  11303. image: {
  11304. source: "./media/characters/xylrem/front.svg",
  11305. extra: 3323 / 3050,
  11306. bottom: 0.065
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Micro",
  11313. height: math.unit(4, "feet")
  11314. },
  11315. {
  11316. name: "Normal",
  11317. height: math.unit(16, "feet"),
  11318. default: true
  11319. },
  11320. {
  11321. name: "Macro",
  11322. height: math.unit(2720, "feet")
  11323. },
  11324. {
  11325. name: "Megamacro",
  11326. height: math.unit(25000, "miles")
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(8, "feet"),
  11335. weight: math.unit(250, "kg"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/ikideru/front.svg",
  11339. extra: 930 / 870,
  11340. bottom: 0.087
  11341. }
  11342. },
  11343. back: {
  11344. height: math.unit(8, "feet"),
  11345. weight: math.unit(250, "kg"),
  11346. name: "Back",
  11347. image: {
  11348. source: "./media/characters/ikideru/back.svg",
  11349. extra: 919 / 852,
  11350. bottom: 0.055
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Rare",
  11357. height: math.unit(8, "feet"),
  11358. default: true
  11359. },
  11360. {
  11361. name: "Playful Loom",
  11362. height: math.unit(80, "feet")
  11363. },
  11364. {
  11365. name: "City Leaner",
  11366. height: math.unit(230, "feet")
  11367. },
  11368. {
  11369. name: "Megamacro",
  11370. height: math.unit(2500, "feet")
  11371. },
  11372. {
  11373. name: "Gigamacro",
  11374. height: math.unit(26400, "feet")
  11375. },
  11376. {
  11377. name: "Tectonic Shifter",
  11378. height: math.unit(1.7, "megameters")
  11379. },
  11380. {
  11381. name: "Planet Carer",
  11382. height: math.unit(21, "megameters")
  11383. },
  11384. {
  11385. name: "God",
  11386. height: math.unit(11157.22, "parsecs")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(6, "feet"),
  11395. weight: math.unit(120, "lb"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/neo/front.svg"
  11399. }
  11400. },
  11401. },
  11402. [
  11403. {
  11404. name: "Micro",
  11405. height: math.unit(2, "inches"),
  11406. default: true
  11407. },
  11408. {
  11409. name: "Human Size",
  11410. height: math.unit(5 + 8 / 12, "feet")
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11416. {
  11417. front: {
  11418. height: math.unit(13 + 10 / 12, "feet"),
  11419. weight: math.unit(5320, "lb"),
  11420. name: "Front",
  11421. image: {
  11422. source: "./media/characters/chauncey-chantz/front.svg",
  11423. extra: 1587 / 1435,
  11424. bottom: 0.02
  11425. }
  11426. },
  11427. },
  11428. [
  11429. {
  11430. name: "Normal",
  11431. height: math.unit(13 + 10 / 12, "feet"),
  11432. default: true
  11433. },
  11434. {
  11435. name: "Macro",
  11436. height: math.unit(45, "feet")
  11437. },
  11438. {
  11439. name: "Megamacro",
  11440. height: math.unit(250, "miles")
  11441. },
  11442. {
  11443. name: "Planetary",
  11444. height: math.unit(10000, "miles")
  11445. },
  11446. {
  11447. name: "Galactic",
  11448. height: math.unit(40000, "parsecs")
  11449. },
  11450. {
  11451. name: "Universal",
  11452. height: math.unit(1, "yottameter")
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11458. {
  11459. front: {
  11460. height: math.unit(6, "feet"),
  11461. weight: math.unit(150, "lb"),
  11462. name: "Front",
  11463. image: {
  11464. source: "./media/characters/epifox/front.svg",
  11465. extra: 1,
  11466. bottom: 0.075
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Micro",
  11473. height: math.unit(6, "inches")
  11474. },
  11475. {
  11476. name: "Normal",
  11477. height: math.unit(12, "feet"),
  11478. default: true
  11479. },
  11480. {
  11481. name: "Macro",
  11482. height: math.unit(3810, "feet")
  11483. },
  11484. {
  11485. name: "Megamacro",
  11486. height: math.unit(500, "miles")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(1.8796, "m"),
  11495. weight: math.unit(230, "lb"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/colin-t/front.svg",
  11499. extra: 1272 / 1193,
  11500. bottom: 0.07
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Micro",
  11507. height: math.unit(0.571, "meters")
  11508. },
  11509. {
  11510. name: "Normal",
  11511. height: math.unit(1.8796, "meters"),
  11512. default: true
  11513. },
  11514. {
  11515. name: "Tall",
  11516. height: math.unit(4, "meters")
  11517. },
  11518. {
  11519. name: "Macro",
  11520. height: math.unit(67.241, "meters")
  11521. },
  11522. {
  11523. name: "Megamacro",
  11524. height: math.unit(371.856, "meters")
  11525. },
  11526. {
  11527. name: "Planetary",
  11528. height: math.unit(12631.5689, "km")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(1.85, "meters"),
  11537. weight: math.unit(80, "kg"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/matvei/front.svg",
  11541. extra: 614 / 594,
  11542. bottom: 0.01
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Normal",
  11549. height: math.unit(1.85, "meters"),
  11550. default: true
  11551. },
  11552. ]
  11553. ))
  11554. characterMakers.push(() => makeCharacter(
  11555. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11556. {
  11557. front: {
  11558. height: math.unit(5 + 9 / 12, "feet"),
  11559. weight: math.unit(70, "lb"),
  11560. name: "Front",
  11561. image: {
  11562. source: "./media/characters/quincy/front.svg",
  11563. extra: 3041 / 2751
  11564. }
  11565. },
  11566. back: {
  11567. height: math.unit(5 + 9 / 12, "feet"),
  11568. weight: math.unit(70, "lb"),
  11569. name: "Back",
  11570. image: {
  11571. source: "./media/characters/quincy/back.svg",
  11572. extra: 3041 / 2751
  11573. }
  11574. },
  11575. flying: {
  11576. height: math.unit(5 + 4 / 12, "feet"),
  11577. weight: math.unit(70, "lb"),
  11578. name: "Flying",
  11579. image: {
  11580. source: "./media/characters/quincy/flying.svg",
  11581. extra: 1044 / 930
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Micro",
  11588. height: math.unit(3, "cm")
  11589. },
  11590. {
  11591. name: "Normal",
  11592. height: math.unit(5 + 9 / 12, "feet")
  11593. },
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(200, "meters"),
  11597. default: true
  11598. },
  11599. {
  11600. name: "Megamacro",
  11601. height: math.unit(1000, "meters")
  11602. },
  11603. ]
  11604. ))
  11605. characterMakers.push(() => makeCharacter(
  11606. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11607. {
  11608. front: {
  11609. height: math.unit(4 + 7 / 12, "feet"),
  11610. weight: math.unit(50, "lb"),
  11611. name: "Front",
  11612. image: {
  11613. source: "./media/characters/vanrel/front.svg",
  11614. extra: 1,
  11615. bottom: 0.02
  11616. }
  11617. },
  11618. frontAlt: {
  11619. height: math.unit(4 + 7 / 12, "feet"),
  11620. weight: math.unit(50, "lb"),
  11621. name: "Front-alt",
  11622. image: {
  11623. source: "./media/characters/vanrel/front-alt.svg",
  11624. extra: 1,
  11625. bottom: 15 / 1511
  11626. }
  11627. },
  11628. elemental: {
  11629. height: math.unit(3, "feet"),
  11630. weight: math.unit(50, "lb"),
  11631. name: "Elemental",
  11632. image: {
  11633. source: "./media/characters/vanrel/elemental.svg",
  11634. extra: 192.3 / 162.8,
  11635. bottom: 1.79 / 194.17
  11636. }
  11637. },
  11638. side: {
  11639. height: math.unit(4 + 7 / 12, "feet"),
  11640. weight: math.unit(50, "lb"),
  11641. name: "Side",
  11642. image: {
  11643. source: "./media/characters/vanrel/side.svg",
  11644. extra: 1,
  11645. bottom: 0.025
  11646. }
  11647. },
  11648. tome: {
  11649. height: math.unit(1.35, "feet"),
  11650. weight: math.unit(10, "lb"),
  11651. name: "Vanrel's Tome",
  11652. rename: true,
  11653. image: {
  11654. source: "./media/characters/vanrel/tome.svg"
  11655. }
  11656. },
  11657. beans: {
  11658. height: math.unit(0.89, "feet"),
  11659. name: "Beans",
  11660. image: {
  11661. source: "./media/characters/vanrel/beans.svg"
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(4 + 7 / 12, "feet"),
  11669. default: true
  11670. },
  11671. ]
  11672. ))
  11673. characterMakers.push(() => makeCharacter(
  11674. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11675. {
  11676. front: {
  11677. height: math.unit(7 + 5 / 12, "feet"),
  11678. weight: math.unit(150, "lb"),
  11679. name: "Front",
  11680. image: {
  11681. source: "./media/characters/kuiper-vanrel/front.svg",
  11682. extra: 1118 / 1068,
  11683. bottom: 0.09
  11684. }
  11685. },
  11686. foot: {
  11687. height: math.unit(0.55, "meters"),
  11688. name: "Foot",
  11689. image: {
  11690. source: "./media/characters/kuiper-vanrel/foot.svg",
  11691. }
  11692. },
  11693. battle: {
  11694. height: math.unit(6.824, "feet"),
  11695. weight: math.unit(150, "lb"),
  11696. name: "Battle",
  11697. image: {
  11698. source: "./media/characters/kuiper-vanrel/battle.svg",
  11699. extra: 1466 / 1327,
  11700. bottom: 29 / 1492.5
  11701. }
  11702. },
  11703. battleAlt: {
  11704. height: math.unit(6.824, "feet"),
  11705. weight: math.unit(150, "lb"),
  11706. name: "Battle (Alt)",
  11707. image: {
  11708. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11709. extra: 2081 / 1965,
  11710. bottom: 40 / 2121
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Normal",
  11717. height: math.unit(7 + 5 / 12, "feet"),
  11718. default: true
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11724. {
  11725. front: {
  11726. height: math.unit(8 + 5 / 12, "feet"),
  11727. weight: math.unit(150, "lb"),
  11728. name: "Front",
  11729. image: {
  11730. source: "./media/characters/keset-vanrel/front.svg",
  11731. extra: 1150 / 1084,
  11732. bottom: 0.05
  11733. }
  11734. },
  11735. hand: {
  11736. height: math.unit(0.6, "meters"),
  11737. name: "Hand",
  11738. image: {
  11739. source: "./media/characters/keset-vanrel/hand.svg"
  11740. }
  11741. },
  11742. foot: {
  11743. height: math.unit(0.94978, "meters"),
  11744. name: "Foot",
  11745. image: {
  11746. source: "./media/characters/keset-vanrel/foot.svg"
  11747. }
  11748. },
  11749. battle: {
  11750. height: math.unit(7.408, "feet"),
  11751. weight: math.unit(150, "lb"),
  11752. name: "Battle",
  11753. image: {
  11754. source: "./media/characters/keset-vanrel/battle.svg",
  11755. extra: 1890 / 1386,
  11756. bottom: 73.28 / 1970
  11757. }
  11758. },
  11759. },
  11760. [
  11761. {
  11762. name: "Normal",
  11763. height: math.unit(8 + 5 / 12, "feet"),
  11764. default: true
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11770. {
  11771. front: {
  11772. height: math.unit(6, "feet"),
  11773. weight: math.unit(150, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/neos/front.svg",
  11777. extra: 1696 / 992,
  11778. bottom: 0.14
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Normal",
  11785. height: math.unit(54, "cm"),
  11786. default: true
  11787. },
  11788. {
  11789. name: "Macro",
  11790. height: math.unit(100, "m")
  11791. },
  11792. {
  11793. name: "Megamacro",
  11794. height: math.unit(10, "km")
  11795. },
  11796. {
  11797. name: "Megamacro+",
  11798. height: math.unit(100, "km")
  11799. },
  11800. {
  11801. name: "Gigamacro",
  11802. height: math.unit(100, "Mm")
  11803. },
  11804. {
  11805. name: "Teramacro",
  11806. height: math.unit(100, "Gm")
  11807. },
  11808. {
  11809. name: "Examacro",
  11810. height: math.unit(100, "Em")
  11811. },
  11812. {
  11813. name: "Godly",
  11814. height: math.unit(10000, "Ym")
  11815. },
  11816. {
  11817. name: "Beyond Godly",
  11818. height: math.unit(25, "multiverses")
  11819. },
  11820. ]
  11821. ))
  11822. characterMakers.push(() => makeCharacter(
  11823. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11824. {
  11825. feminine: {
  11826. height: math.unit(5, "feet"),
  11827. weight: math.unit(100, "lb"),
  11828. name: "Feminine",
  11829. image: {
  11830. source: "./media/characters/sammy-mouse/feminine.svg",
  11831. extra: 2526 / 2425,
  11832. bottom: 0.123
  11833. }
  11834. },
  11835. masculine: {
  11836. height: math.unit(5, "feet"),
  11837. weight: math.unit(100, "lb"),
  11838. name: "Masculine",
  11839. image: {
  11840. source: "./media/characters/sammy-mouse/masculine.svg",
  11841. extra: 2526 / 2425,
  11842. bottom: 0.123
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Micro",
  11849. height: math.unit(5, "inches")
  11850. },
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(5, "feet"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Macro",
  11858. height: math.unit(60, "feet")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11864. {
  11865. front: {
  11866. height: math.unit(4, "feet"),
  11867. weight: math.unit(50, "lb"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/kole/front.svg",
  11871. extra: 1423 / 1303,
  11872. bottom: 0.025
  11873. }
  11874. },
  11875. back: {
  11876. height: math.unit(4, "feet"),
  11877. weight: math.unit(50, "lb"),
  11878. name: "Back",
  11879. image: {
  11880. source: "./media/characters/kole/back.svg",
  11881. extra: 1426 / 1280,
  11882. bottom: 0.02
  11883. }
  11884. },
  11885. },
  11886. [
  11887. {
  11888. name: "Normal",
  11889. height: math.unit(4, "feet"),
  11890. default: true
  11891. },
  11892. ]
  11893. ))
  11894. characterMakers.push(() => makeCharacter(
  11895. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11896. {
  11897. front: {
  11898. height: math.unit(2 + 6 / 12, "feet"),
  11899. weight: math.unit(20, "lb"),
  11900. name: "Front",
  11901. image: {
  11902. source: "./media/characters/rufran/front.svg",
  11903. extra: 2041 / 1839,
  11904. bottom: 0.055
  11905. }
  11906. },
  11907. back: {
  11908. height: math.unit(2 + 6 / 12, "feet"),
  11909. weight: math.unit(20, "lb"),
  11910. name: "Back",
  11911. image: {
  11912. source: "./media/characters/rufran/back.svg",
  11913. extra: 2054 / 1839,
  11914. bottom: 0.01
  11915. }
  11916. },
  11917. hand: {
  11918. height: math.unit(0.2166, "meters"),
  11919. name: "Hand",
  11920. image: {
  11921. source: "./media/characters/rufran/hand.svg"
  11922. }
  11923. },
  11924. foot: {
  11925. height: math.unit(0.185, "meters"),
  11926. name: "Foot",
  11927. image: {
  11928. source: "./media/characters/rufran/foot.svg"
  11929. }
  11930. },
  11931. },
  11932. [
  11933. {
  11934. name: "Micro",
  11935. height: math.unit(1, "inch")
  11936. },
  11937. {
  11938. name: "Normal",
  11939. height: math.unit(2 + 6 / 12, "feet"),
  11940. default: true
  11941. },
  11942. {
  11943. name: "Big",
  11944. height: math.unit(60, "feet")
  11945. },
  11946. {
  11947. name: "Macro",
  11948. height: math.unit(325, "feet")
  11949. },
  11950. ]
  11951. ))
  11952. characterMakers.push(() => makeCharacter(
  11953. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11954. {
  11955. front: {
  11956. height: math.unit(0.3, "meters"),
  11957. weight: math.unit(3.5, "kg"),
  11958. name: "Front",
  11959. image: {
  11960. source: "./media/characters/chip/front.svg",
  11961. extra: 748 / 674
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Micro",
  11968. height: math.unit(1, "inch"),
  11969. default: true
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11975. {
  11976. side: {
  11977. height: math.unit(2.3, "meters"),
  11978. weight: math.unit(3500, "lb"),
  11979. name: "Side",
  11980. image: {
  11981. source: "./media/characters/torvid/side.svg",
  11982. extra: 1972 / 722,
  11983. bottom: 0.035
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(2.3, "meters"),
  11991. default: true
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(2, "meters"),
  12000. weight: math.unit(150.5, "kg"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/susan/front.svg",
  12004. extra: 693 / 635,
  12005. bottom: 0.05
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Megamacro",
  12012. height: math.unit(505, "miles"),
  12013. default: true
  12014. },
  12015. ]
  12016. ))
  12017. characterMakers.push(() => makeCharacter(
  12018. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12019. {
  12020. front: {
  12021. height: math.unit(6, "feet"),
  12022. weight: math.unit(150, "lb"),
  12023. name: "Front",
  12024. image: {
  12025. source: "./media/characters/raindrops/front.svg",
  12026. extra: 2655 / 2461,
  12027. bottom: 49 / 2705
  12028. }
  12029. },
  12030. back: {
  12031. height: math.unit(6, "feet"),
  12032. weight: math.unit(150, "lb"),
  12033. name: "Back",
  12034. image: {
  12035. source: "./media/characters/raindrops/back.svg",
  12036. extra: 2574 / 2400,
  12037. bottom: 65 / 2634
  12038. }
  12039. },
  12040. },
  12041. [
  12042. {
  12043. name: "Micro",
  12044. height: math.unit(6, "inches")
  12045. },
  12046. {
  12047. name: "Normal",
  12048. height: math.unit(6 + 2 / 12, "feet")
  12049. },
  12050. {
  12051. name: "Macro",
  12052. height: math.unit(131, "feet"),
  12053. default: true
  12054. },
  12055. {
  12056. name: "Megamacro",
  12057. height: math.unit(15, "miles")
  12058. },
  12059. {
  12060. name: "Gigamacro",
  12061. height: math.unit(4000, "miles")
  12062. },
  12063. {
  12064. name: "Teramacro",
  12065. height: math.unit(315000, "miles")
  12066. },
  12067. ]
  12068. ))
  12069. characterMakers.push(() => makeCharacter(
  12070. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12071. {
  12072. front: {
  12073. height: math.unit(2.794, "meters"),
  12074. weight: math.unit(325, "kg"),
  12075. name: "Front",
  12076. image: {
  12077. source: "./media/characters/tezwa/front.svg",
  12078. extra: 2083 / 1906,
  12079. bottom: 0.031
  12080. }
  12081. },
  12082. foot: {
  12083. height: math.unit(0.687, "meters"),
  12084. name: "Foot",
  12085. image: {
  12086. source: "./media/characters/tezwa/foot.svg"
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(9 + 2 / 12, "feet"),
  12094. default: true
  12095. },
  12096. ]
  12097. ))
  12098. characterMakers.push(() => makeCharacter(
  12099. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12100. {
  12101. front: {
  12102. height: math.unit(58, "feet"),
  12103. weight: math.unit(89000, "lb"),
  12104. name: "Front",
  12105. image: {
  12106. source: "./media/characters/typhus/front.svg",
  12107. extra: 816 / 800,
  12108. bottom: 0.065
  12109. }
  12110. },
  12111. },
  12112. [
  12113. {
  12114. name: "Macro",
  12115. height: math.unit(58, "feet"),
  12116. default: true
  12117. },
  12118. ]
  12119. ))
  12120. characterMakers.push(() => makeCharacter(
  12121. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12122. {
  12123. front: {
  12124. height: math.unit(12, "feet"),
  12125. weight: math.unit(6, "tonnes"),
  12126. name: "Front",
  12127. image: {
  12128. source: "./media/characters/lyra-von-wulf/front.svg",
  12129. extra: 1,
  12130. bottom: 0.10
  12131. }
  12132. },
  12133. frontMecha: {
  12134. height: math.unit(12, "feet"),
  12135. weight: math.unit(12, "tonnes"),
  12136. name: "Front (Mecha)",
  12137. image: {
  12138. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12139. extra: 1,
  12140. bottom: 0.042
  12141. }
  12142. },
  12143. maw: {
  12144. height: math.unit(2.2, "feet"),
  12145. name: "Maw",
  12146. image: {
  12147. source: "./media/characters/lyra-von-wulf/maw.svg"
  12148. }
  12149. },
  12150. },
  12151. [
  12152. {
  12153. name: "Normal",
  12154. height: math.unit(12, "feet"),
  12155. default: true
  12156. },
  12157. {
  12158. name: "Classic",
  12159. height: math.unit(50, "feet")
  12160. },
  12161. {
  12162. name: "Macro",
  12163. height: math.unit(500, "feet")
  12164. },
  12165. {
  12166. name: "Megamacro",
  12167. height: math.unit(1, "mile")
  12168. },
  12169. {
  12170. name: "Gigamacro",
  12171. height: math.unit(400, "miles")
  12172. },
  12173. {
  12174. name: "Teramacro",
  12175. height: math.unit(22000, "miles")
  12176. },
  12177. {
  12178. name: "Solarmacro",
  12179. height: math.unit(8600000, "miles")
  12180. },
  12181. {
  12182. name: "Galactic",
  12183. height: math.unit(1057000, "lightyears")
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(6 + 10 / 12, "feet"),
  12192. weight: math.unit(150, "lb"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/dixon/front.svg",
  12196. extra: 3361 / 3209,
  12197. bottom: 0.01
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(6 + 10 / 12, "feet"),
  12205. default: true
  12206. },
  12207. {
  12208. name: "Big",
  12209. height: math.unit(12, "meters")
  12210. },
  12211. {
  12212. name: "Macro",
  12213. height: math.unit(500, "meters")
  12214. },
  12215. {
  12216. name: "Megamacro",
  12217. height: math.unit(2, "km")
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12223. {
  12224. front: {
  12225. height: math.unit(185, "cm"),
  12226. weight: math.unit(68, "kg"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/kauko/front.svg",
  12230. extra: 1455 / 1421,
  12231. bottom: 0.03
  12232. }
  12233. },
  12234. back: {
  12235. height: math.unit(185, "cm"),
  12236. weight: math.unit(68, "kg"),
  12237. name: "Back",
  12238. image: {
  12239. source: "./media/characters/kauko/back.svg",
  12240. extra: 1455 / 1421,
  12241. bottom: 0.004
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Normal",
  12248. height: math.unit(185, "cm"),
  12249. default: true
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(150, "kg"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/varg/front.svg",
  12262. extra: 1108 / 1018,
  12263. bottom: 0.0375
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(5, "meters")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(200, "meters")
  12275. },
  12276. {
  12277. name: "Megamacro",
  12278. height: math.unit(20, "kilometers")
  12279. },
  12280. {
  12281. name: "True Size",
  12282. height: math.unit(211, "km"),
  12283. default: true
  12284. },
  12285. {
  12286. name: "Gigamacro",
  12287. height: math.unit(1000, "km")
  12288. },
  12289. {
  12290. name: "Gigamacro+",
  12291. height: math.unit(8000, "km")
  12292. },
  12293. {
  12294. name: "Teramacro",
  12295. height: math.unit(1000000, "km")
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(7 + 7 / 12, "feet"),
  12304. weight: math.unit(267, "lb"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/dayza/front.svg",
  12308. extra: 1262 / 1200,
  12309. bottom: 0.035
  12310. }
  12311. },
  12312. side: {
  12313. height: math.unit(7 + 7 / 12, "feet"),
  12314. weight: math.unit(267, "lb"),
  12315. name: "Side",
  12316. image: {
  12317. source: "./media/characters/dayza/side.svg",
  12318. extra: 1295 / 1245,
  12319. bottom: 0.05
  12320. }
  12321. },
  12322. back: {
  12323. height: math.unit(7 + 7 / 12, "feet"),
  12324. weight: math.unit(267, "lb"),
  12325. name: "Back",
  12326. image: {
  12327. source: "./media/characters/dayza/back.svg",
  12328. extra: 1241 / 1170
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Normal",
  12335. height: math.unit(7 + 7 / 12, "feet"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Macro",
  12340. height: math.unit(155, "feet")
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12346. {
  12347. front: {
  12348. height: math.unit(6 + 5 / 12, "feet"),
  12349. weight: math.unit(160, "lb"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/xanthos/front.svg",
  12353. extra: 1,
  12354. bottom: 0.04
  12355. }
  12356. },
  12357. back: {
  12358. height: math.unit(6 + 5 / 12, "feet"),
  12359. weight: math.unit(160, "lb"),
  12360. name: "Back",
  12361. image: {
  12362. source: "./media/characters/xanthos/back.svg",
  12363. extra: 1,
  12364. bottom: 0.03
  12365. }
  12366. },
  12367. hand: {
  12368. height: math.unit(0.928, "feet"),
  12369. name: "Hand",
  12370. image: {
  12371. source: "./media/characters/xanthos/hand.svg"
  12372. }
  12373. },
  12374. foot: {
  12375. height: math.unit(1.286, "feet"),
  12376. name: "Foot",
  12377. image: {
  12378. source: "./media/characters/xanthos/foot.svg"
  12379. }
  12380. },
  12381. },
  12382. [
  12383. {
  12384. name: "Normal",
  12385. height: math.unit(6 + 5 / 12, "feet"),
  12386. default: true
  12387. },
  12388. {
  12389. name: "Normal+",
  12390. height: math.unit(6, "meters")
  12391. },
  12392. {
  12393. name: "Macro",
  12394. height: math.unit(40, "feet")
  12395. },
  12396. {
  12397. name: "Macro+",
  12398. height: math.unit(200, "meters")
  12399. },
  12400. {
  12401. name: "Megamacro",
  12402. height: math.unit(20, "km")
  12403. },
  12404. {
  12405. name: "Megamacro+",
  12406. height: math.unit(100, "km")
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12412. {
  12413. front: {
  12414. height: math.unit(6 + 3 / 12, "feet"),
  12415. weight: math.unit(215, "lb"),
  12416. name: "Front",
  12417. image: {
  12418. source: "./media/characters/grynn/front.svg",
  12419. extra: 4627 / 4209,
  12420. bottom: 0.047
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Micro",
  12427. height: math.unit(6, "inches")
  12428. },
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(6 + 3 / 12, "feet"),
  12432. default: true
  12433. },
  12434. {
  12435. name: "Big",
  12436. height: math.unit(104, "feet")
  12437. },
  12438. {
  12439. name: "Macro",
  12440. height: math.unit(944, "feet")
  12441. },
  12442. {
  12443. name: "Macro+",
  12444. height: math.unit(9480, "feet")
  12445. },
  12446. {
  12447. name: "Megamacro",
  12448. height: math.unit(78752, "feet")
  12449. },
  12450. {
  12451. name: "Megamacro+",
  12452. height: math.unit(630128, "feet")
  12453. },
  12454. {
  12455. name: "Megamacro++",
  12456. height: math.unit(3150695, "feet")
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12462. {
  12463. front: {
  12464. height: math.unit(7 + 5 / 12, "feet"),
  12465. weight: math.unit(450, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/mocha-aura/front.svg",
  12469. extra: 1907 / 1817,
  12470. bottom: 0.04
  12471. }
  12472. },
  12473. back: {
  12474. height: math.unit(7 + 5 / 12, "feet"),
  12475. weight: math.unit(450, "lb"),
  12476. name: "Back",
  12477. image: {
  12478. source: "./media/characters/mocha-aura/back.svg",
  12479. extra: 1900 / 1825,
  12480. bottom: 0.045
  12481. }
  12482. },
  12483. },
  12484. [
  12485. {
  12486. name: "Nano",
  12487. height: math.unit(1, "nm")
  12488. },
  12489. {
  12490. name: "Megamicro",
  12491. height: math.unit(1, "mm")
  12492. },
  12493. {
  12494. name: "Micro",
  12495. height: math.unit(3, "inches")
  12496. },
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(7 + 5 / 12, "feet"),
  12500. default: true
  12501. },
  12502. {
  12503. name: "Macro",
  12504. height: math.unit(30, "feet")
  12505. },
  12506. {
  12507. name: "Megamacro",
  12508. height: math.unit(3500, "feet")
  12509. },
  12510. {
  12511. name: "Teramacro",
  12512. height: math.unit(500000, "miles")
  12513. },
  12514. {
  12515. name: "Petamacro",
  12516. height: math.unit(50000000000000000, "parsecs")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(150, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/ilisha-devya/front.svg",
  12529. extra: 1,
  12530. bottom: 0.175
  12531. }
  12532. },
  12533. back: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(150, "lb"),
  12536. name: "Back",
  12537. image: {
  12538. source: "./media/characters/ilisha-devya/back.svg",
  12539. extra: 1,
  12540. bottom: 0.015
  12541. }
  12542. },
  12543. },
  12544. [
  12545. {
  12546. name: "Macro",
  12547. height: math.unit(500, "feet"),
  12548. default: true
  12549. },
  12550. {
  12551. name: "Megamacro",
  12552. height: math.unit(10, "miles")
  12553. },
  12554. {
  12555. name: "Gigamacro",
  12556. height: math.unit(100000, "miles")
  12557. },
  12558. {
  12559. name: "Examacro",
  12560. height: math.unit(1e9, "lightyears")
  12561. },
  12562. {
  12563. name: "Omniversal",
  12564. height: math.unit(1e33, "lightyears")
  12565. },
  12566. {
  12567. name: "Beyond Infinite",
  12568. height: math.unit(1e100, "lightyears")
  12569. },
  12570. ]
  12571. ))
  12572. characterMakers.push(() => makeCharacter(
  12573. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12574. {
  12575. Side: {
  12576. height: math.unit(6, "feet"),
  12577. weight: math.unit(150, "lb"),
  12578. name: "Side",
  12579. image: {
  12580. source: "./media/characters/mira/side.svg",
  12581. extra: 900 / 799,
  12582. bottom: 0.02
  12583. }
  12584. },
  12585. },
  12586. [
  12587. {
  12588. name: "Human Size",
  12589. height: math.unit(6, "feet")
  12590. },
  12591. {
  12592. name: "Macro",
  12593. height: math.unit(100, "feet"),
  12594. default: true
  12595. },
  12596. {
  12597. name: "Megamacro",
  12598. height: math.unit(10, "miles")
  12599. },
  12600. {
  12601. name: "Gigamacro",
  12602. height: math.unit(25000, "miles")
  12603. },
  12604. {
  12605. name: "Teramacro",
  12606. height: math.unit(300, "AU")
  12607. },
  12608. {
  12609. name: "Full Size",
  12610. height: math.unit(4.5e10, "lightyears")
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(150, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/holly/front.svg",
  12623. extra: 639 / 606
  12624. }
  12625. },
  12626. back: {
  12627. height: math.unit(6, "feet"),
  12628. weight: math.unit(150, "lb"),
  12629. name: "Back",
  12630. image: {
  12631. source: "./media/characters/holly/back.svg",
  12632. extra: 623 / 598
  12633. }
  12634. },
  12635. frontWorking: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(150, "lb"),
  12638. name: "Front (Working)",
  12639. image: {
  12640. source: "./media/characters/holly/front-working.svg",
  12641. extra: 607 / 577,
  12642. bottom: 0.048
  12643. }
  12644. },
  12645. },
  12646. [
  12647. {
  12648. name: "Normal",
  12649. height: math.unit(12 + 3 / 12, "feet"),
  12650. default: true
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12656. {
  12657. front: {
  12658. height: math.unit(6, "feet"),
  12659. weight: math.unit(150, "lb"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/porter/front.svg",
  12663. extra: 1,
  12664. bottom: 0.01
  12665. }
  12666. },
  12667. frontRobes: {
  12668. height: math.unit(6, "feet"),
  12669. weight: math.unit(150, "lb"),
  12670. name: "Front (Robes)",
  12671. image: {
  12672. source: "./media/characters/porter/front-robes.svg",
  12673. extra: 1.01,
  12674. bottom: 0.01
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Normal",
  12681. height: math.unit(11 + 9 / 12, "feet"),
  12682. default: true
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12688. {
  12689. legendary: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(150, "lb"),
  12692. name: "Legendary",
  12693. image: {
  12694. source: "./media/characters/lucy/legendary.svg",
  12695. extra: 1355 / 1100,
  12696. bottom: 0.045
  12697. }
  12698. },
  12699. },
  12700. [
  12701. {
  12702. name: "Legendary",
  12703. height: math.unit(86882 * 2, "miles"),
  12704. default: true
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12710. {
  12711. front: {
  12712. height: math.unit(6, "feet"),
  12713. weight: math.unit(150, "lb"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/drusilla/front.svg",
  12717. extra: 678 / 635,
  12718. bottom: 0.03
  12719. }
  12720. },
  12721. back: {
  12722. height: math.unit(6, "feet"),
  12723. weight: math.unit(150, "lb"),
  12724. name: "Back",
  12725. image: {
  12726. source: "./media/characters/drusilla/back.svg",
  12727. extra: 678 / 635,
  12728. bottom: 0.005
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Macro",
  12735. height: math.unit(100, "feet")
  12736. },
  12737. {
  12738. name: "Canon Height",
  12739. height: math.unit(2000, "feet"),
  12740. default: true
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12746. {
  12747. front: {
  12748. height: math.unit(6, "feet"),
  12749. weight: math.unit(180, "lb"),
  12750. name: "Front",
  12751. image: {
  12752. source: "./media/characters/renard-thatch/front.svg",
  12753. extra: 2411 / 2275,
  12754. bottom: 0.01
  12755. }
  12756. },
  12757. frontPosing: {
  12758. height: math.unit(6, "feet"),
  12759. weight: math.unit(180, "lb"),
  12760. name: "Front (Posing)",
  12761. image: {
  12762. source: "./media/characters/renard-thatch/front-posing.svg",
  12763. extra: 2381 / 2261,
  12764. bottom: 0.01
  12765. }
  12766. },
  12767. back: {
  12768. height: math.unit(6, "feet"),
  12769. weight: math.unit(180, "lb"),
  12770. name: "Back",
  12771. image: {
  12772. source: "./media/characters/renard-thatch/back.svg",
  12773. extra: 2428 / 2288
  12774. }
  12775. },
  12776. },
  12777. [
  12778. {
  12779. name: "Micro",
  12780. height: math.unit(3, "inches")
  12781. },
  12782. {
  12783. name: "Default",
  12784. height: math.unit(6, "feet"),
  12785. default: true
  12786. },
  12787. {
  12788. name: "Macro",
  12789. height: math.unit(75, "feet")
  12790. },
  12791. ]
  12792. ))
  12793. characterMakers.push(() => makeCharacter(
  12794. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12795. {
  12796. front: {
  12797. height: math.unit(1450, "feet"),
  12798. weight: math.unit(1.21e6, "tons"),
  12799. name: "Front",
  12800. image: {
  12801. source: "./media/characters/sekvra/front.svg",
  12802. extra: 1,
  12803. bottom: 0.03
  12804. }
  12805. },
  12806. frontClothed: {
  12807. height: math.unit(1450, "feet"),
  12808. weight: math.unit(1.21e6, "tons"),
  12809. name: "Front (Clothed)",
  12810. image: {
  12811. source: "./media/characters/sekvra/front-clothed.svg",
  12812. extra: 1,
  12813. bottom: 0.03
  12814. }
  12815. },
  12816. side: {
  12817. height: math.unit(1450, "feet"),
  12818. weight: math.unit(1.21e6, "tons"),
  12819. name: "Side",
  12820. image: {
  12821. source: "./media/characters/sekvra/side.svg",
  12822. extra: 1,
  12823. bottom: 0.025
  12824. }
  12825. },
  12826. back: {
  12827. height: math.unit(1450, "feet"),
  12828. weight: math.unit(1.21e6, "tons"),
  12829. name: "Back",
  12830. image: {
  12831. source: "./media/characters/sekvra/back.svg",
  12832. extra: 1,
  12833. bottom: 0.005
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Macro",
  12840. height: math.unit(1450, "feet"),
  12841. default: true
  12842. },
  12843. {
  12844. name: "Megamacro",
  12845. height: math.unit(15000, "feet")
  12846. },
  12847. ]
  12848. ))
  12849. characterMakers.push(() => makeCharacter(
  12850. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12851. {
  12852. front: {
  12853. height: math.unit(6, "feet"),
  12854. weight: math.unit(150, "lb"),
  12855. name: "Front",
  12856. image: {
  12857. source: "./media/characters/carmine/front.svg",
  12858. extra: 1,
  12859. bottom: 0.035
  12860. }
  12861. },
  12862. frontArmor: {
  12863. height: math.unit(6, "feet"),
  12864. weight: math.unit(150, "lb"),
  12865. name: "Front (Armor)",
  12866. image: {
  12867. source: "./media/characters/carmine/front-armor.svg",
  12868. extra: 1,
  12869. bottom: 0.035
  12870. }
  12871. },
  12872. },
  12873. [
  12874. {
  12875. name: "Large",
  12876. height: math.unit(1, "mile")
  12877. },
  12878. {
  12879. name: "Huge",
  12880. height: math.unit(40, "miles"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Colossal",
  12885. height: math.unit(2500, "miles")
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12891. {
  12892. front: {
  12893. height: math.unit(6, "feet"),
  12894. weight: math.unit(150, "lb"),
  12895. name: "Front",
  12896. image: {
  12897. source: "./media/characters/elyssia/front.svg",
  12898. extra: 2201 / 2035,
  12899. bottom: 0.05
  12900. }
  12901. },
  12902. frontClothed: {
  12903. height: math.unit(6, "feet"),
  12904. weight: math.unit(150, "lb"),
  12905. name: "Front (Clothed)",
  12906. image: {
  12907. source: "./media/characters/elyssia/front-clothed.svg",
  12908. extra: 2201 / 2035,
  12909. bottom: 0.05
  12910. }
  12911. },
  12912. back: {
  12913. height: math.unit(6, "feet"),
  12914. weight: math.unit(150, "lb"),
  12915. name: "Back",
  12916. image: {
  12917. source: "./media/characters/elyssia/back.svg",
  12918. extra: 2201 / 2035,
  12919. bottom: 0.013
  12920. }
  12921. },
  12922. },
  12923. [
  12924. {
  12925. name: "Smaller",
  12926. height: math.unit(150, "feet")
  12927. },
  12928. {
  12929. name: "Standard",
  12930. height: math.unit(1400, "feet"),
  12931. default: true
  12932. },
  12933. {
  12934. name: "Distracted",
  12935. height: math.unit(15000, "feet")
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12941. {
  12942. front: {
  12943. height: math.unit(7 + 4 / 12, "feet"),
  12944. weight: math.unit(500, "lb"),
  12945. name: "Front",
  12946. image: {
  12947. source: "./media/characters/geno-maxwell/front.svg",
  12948. extra: 2207 / 2040,
  12949. bottom: 0.015
  12950. }
  12951. },
  12952. },
  12953. [
  12954. {
  12955. name: "Micro",
  12956. height: math.unit(3, "inches")
  12957. },
  12958. {
  12959. name: "Normal",
  12960. height: math.unit(7 + 4 / 12, "feet"),
  12961. default: true
  12962. },
  12963. {
  12964. name: "Macro",
  12965. height: math.unit(220, "feet")
  12966. },
  12967. {
  12968. name: "Megamacro",
  12969. height: math.unit(11, "miles")
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12975. {
  12976. front: {
  12977. height: math.unit(7 + 4 / 12, "feet"),
  12978. weight: math.unit(500, "lb"),
  12979. name: "Front",
  12980. image: {
  12981. source: "./media/characters/regena-maxwell/front.svg",
  12982. extra: 3115 / 2770,
  12983. bottom: 0.02
  12984. }
  12985. },
  12986. },
  12987. [
  12988. {
  12989. name: "Normal",
  12990. height: math.unit(7 + 4 / 12, "feet"),
  12991. default: true
  12992. },
  12993. {
  12994. name: "Macro",
  12995. height: math.unit(220, "feet")
  12996. },
  12997. {
  12998. name: "Megamacro",
  12999. height: math.unit(11, "miles")
  13000. },
  13001. ]
  13002. ))
  13003. characterMakers.push(() => makeCharacter(
  13004. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13005. {
  13006. front: {
  13007. height: math.unit(6, "feet"),
  13008. weight: math.unit(150, "lb"),
  13009. name: "Front",
  13010. image: {
  13011. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13012. extra: 860 / 690,
  13013. bottom: 0.03
  13014. }
  13015. },
  13016. },
  13017. [
  13018. {
  13019. name: "Normal",
  13020. height: math.unit(1.7, "meters"),
  13021. default: true
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(6, "feet"),
  13030. weight: math.unit(150, "lb"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/quilly/front.svg",
  13034. extra: 890 / 776
  13035. }
  13036. },
  13037. },
  13038. [
  13039. {
  13040. name: "Gigamacro",
  13041. height: math.unit(404090, "miles"),
  13042. default: true
  13043. },
  13044. ]
  13045. ))
  13046. characterMakers.push(() => makeCharacter(
  13047. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13048. {
  13049. front: {
  13050. height: math.unit(7 + 8 / 12, "feet"),
  13051. weight: math.unit(350, "lb"),
  13052. name: "Front",
  13053. image: {
  13054. source: "./media/characters/tempest/front.svg",
  13055. extra: 1175 / 1086,
  13056. bottom: 0.02
  13057. }
  13058. },
  13059. },
  13060. [
  13061. {
  13062. name: "Normal",
  13063. height: math.unit(7 + 8 / 12, "feet"),
  13064. default: true
  13065. },
  13066. ]
  13067. ))
  13068. characterMakers.push(() => makeCharacter(
  13069. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13070. {
  13071. side: {
  13072. height: math.unit(4 + 5 / 12, "feet"),
  13073. weight: math.unit(80, "lb"),
  13074. name: "Side",
  13075. image: {
  13076. source: "./media/characters/rodger/side.svg",
  13077. extra: 1235 / 1118
  13078. }
  13079. },
  13080. },
  13081. [
  13082. {
  13083. name: "Micro",
  13084. height: math.unit(1, "inch")
  13085. },
  13086. {
  13087. name: "Normal",
  13088. height: math.unit(4 + 5 / 12, "feet"),
  13089. default: true
  13090. },
  13091. {
  13092. name: "Macro",
  13093. height: math.unit(120, "feet")
  13094. },
  13095. ]
  13096. ))
  13097. characterMakers.push(() => makeCharacter(
  13098. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13099. {
  13100. front: {
  13101. height: math.unit(6, "feet"),
  13102. weight: math.unit(150, "lb"),
  13103. name: "Front",
  13104. image: {
  13105. source: "./media/characters/danyel/front.svg",
  13106. extra: 1185 / 1123,
  13107. bottom: 0.05
  13108. }
  13109. },
  13110. },
  13111. [
  13112. {
  13113. name: "Shrunken",
  13114. height: math.unit(0.5, "mm")
  13115. },
  13116. {
  13117. name: "Micro",
  13118. height: math.unit(1, "mm"),
  13119. default: true
  13120. },
  13121. {
  13122. name: "Upsized",
  13123. height: math.unit(5 + 5 / 12, "feet")
  13124. },
  13125. ]
  13126. ))
  13127. characterMakers.push(() => makeCharacter(
  13128. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13129. {
  13130. front: {
  13131. height: math.unit(5 + 6 / 12, "feet"),
  13132. weight: math.unit(200, "lb"),
  13133. name: "Front",
  13134. image: {
  13135. source: "./media/characters/vivian-bijoux/front.svg",
  13136. extra: 1,
  13137. bottom: 0.072
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "Normal",
  13144. height: math.unit(5 + 6 / 12, "feet"),
  13145. default: true
  13146. },
  13147. {
  13148. name: "Bad Dream",
  13149. height: math.unit(500, "feet")
  13150. },
  13151. {
  13152. name: "Nightmare",
  13153. height: math.unit(500, "miles")
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(6 + 1 / 12, "feet"),
  13162. weight: math.unit(260, "lb"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/zeta/front.svg",
  13166. extra: 1968 / 1889,
  13167. bottom: 0.06
  13168. }
  13169. },
  13170. back: {
  13171. height: math.unit(6 + 1 / 12, "feet"),
  13172. weight: math.unit(260, "lb"),
  13173. name: "Back",
  13174. image: {
  13175. source: "./media/characters/zeta/back.svg",
  13176. extra: 1944 / 1858,
  13177. bottom: 0.03
  13178. }
  13179. },
  13180. hand: {
  13181. height: math.unit(1.112, "feet"),
  13182. name: "Hand",
  13183. image: {
  13184. source: "./media/characters/zeta/hand.svg"
  13185. }
  13186. },
  13187. foot: {
  13188. height: math.unit(1.48, "feet"),
  13189. name: "Foot",
  13190. image: {
  13191. source: "./media/characters/zeta/foot.svg"
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Micro",
  13198. height: math.unit(6, "inches")
  13199. },
  13200. {
  13201. name: "Normal",
  13202. height: math.unit(6 + 1 / 12, "feet"),
  13203. default: true
  13204. },
  13205. {
  13206. name: "Macro",
  13207. height: math.unit(20, "feet")
  13208. },
  13209. ]
  13210. ))
  13211. characterMakers.push(() => makeCharacter(
  13212. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13213. {
  13214. front: {
  13215. height: math.unit(6, "feet"),
  13216. weight: math.unit(150, "lb"),
  13217. name: "Front",
  13218. image: {
  13219. source: "./media/characters/jamie-larsen/front.svg",
  13220. extra: 962 / 933,
  13221. bottom: 0.02
  13222. }
  13223. },
  13224. back: {
  13225. height: math.unit(6, "feet"),
  13226. weight: math.unit(150, "lb"),
  13227. name: "Back",
  13228. image: {
  13229. source: "./media/characters/jamie-larsen/back.svg",
  13230. extra: 997 / 946
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Macro",
  13237. height: math.unit(28 + 7 / 12, "feet"),
  13238. default: true
  13239. },
  13240. {
  13241. name: "Macro+",
  13242. height: math.unit(180, "feet")
  13243. },
  13244. {
  13245. name: "Megamacro",
  13246. height: math.unit(10, "miles")
  13247. },
  13248. {
  13249. name: "Gigamacro",
  13250. height: math.unit(200000, "miles")
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13256. {
  13257. front: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(120, "lb"),
  13260. name: "Front",
  13261. image: {
  13262. source: "./media/characters/vance/front.svg",
  13263. extra: 1980 / 1890,
  13264. bottom: 0.09
  13265. }
  13266. },
  13267. back: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(120, "lb"),
  13270. name: "Back",
  13271. image: {
  13272. source: "./media/characters/vance/back.svg",
  13273. extra: 2081 / 1994,
  13274. bottom: 0.014
  13275. }
  13276. },
  13277. hand: {
  13278. height: math.unit(0.88, "feet"),
  13279. name: "Hand",
  13280. image: {
  13281. source: "./media/characters/vance/hand.svg"
  13282. }
  13283. },
  13284. foot: {
  13285. height: math.unit(0.64, "feet"),
  13286. name: "Foot",
  13287. image: {
  13288. source: "./media/characters/vance/foot.svg"
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Small",
  13295. height: math.unit(90, "feet"),
  13296. default: true
  13297. },
  13298. {
  13299. name: "Macro",
  13300. height: math.unit(100, "meters")
  13301. },
  13302. {
  13303. name: "Megamacro",
  13304. height: math.unit(15, "miles")
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(180, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/xochitl/front.svg",
  13317. extra: 2297 / 2261,
  13318. bottom: 0.065
  13319. }
  13320. },
  13321. back: {
  13322. height: math.unit(6, "feet"),
  13323. weight: math.unit(180, "lb"),
  13324. name: "Back",
  13325. image: {
  13326. source: "./media/characters/xochitl/back.svg",
  13327. extra: 2386 / 2354,
  13328. bottom: 0.01
  13329. }
  13330. },
  13331. foot: {
  13332. height: math.unit(6 / 5 * 1.15, "feet"),
  13333. weight: math.unit(150, "lb"),
  13334. name: "Foot",
  13335. image: {
  13336. source: "./media/characters/xochitl/foot.svg"
  13337. }
  13338. },
  13339. },
  13340. [
  13341. {
  13342. name: "Macro",
  13343. height: math.unit(80, "feet")
  13344. },
  13345. {
  13346. name: "Macro+",
  13347. height: math.unit(400, "feet"),
  13348. default: true
  13349. },
  13350. {
  13351. name: "Gigamacro",
  13352. height: math.unit(80000, "miles")
  13353. },
  13354. {
  13355. name: "Gigamacro+",
  13356. height: math.unit(400000, "miles")
  13357. },
  13358. {
  13359. name: "Teramacro",
  13360. height: math.unit(300, "AU")
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13366. {
  13367. front: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(150, "lb"),
  13370. name: "Front",
  13371. image: {
  13372. source: "./media/characters/vincent/front.svg",
  13373. extra: 1130 / 1080,
  13374. bottom: 0.055
  13375. }
  13376. },
  13377. beak: {
  13378. height: math.unit(6 * 0.1, "feet"),
  13379. name: "Beak",
  13380. image: {
  13381. source: "./media/characters/vincent/beak.svg"
  13382. }
  13383. },
  13384. hand: {
  13385. height: math.unit(6 * 0.85, "feet"),
  13386. weight: math.unit(150, "lb"),
  13387. name: "Hand",
  13388. image: {
  13389. source: "./media/characters/vincent/hand.svg"
  13390. }
  13391. },
  13392. foot: {
  13393. height: math.unit(6 * 0.19, "feet"),
  13394. weight: math.unit(150, "lb"),
  13395. name: "Foot",
  13396. image: {
  13397. source: "./media/characters/vincent/foot.svg"
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Base",
  13404. height: math.unit(6 + 5 / 12, "feet"),
  13405. default: true
  13406. },
  13407. {
  13408. name: "Macro",
  13409. height: math.unit(300, "feet")
  13410. },
  13411. {
  13412. name: "Megamacro",
  13413. height: math.unit(2, "miles")
  13414. },
  13415. {
  13416. name: "Gigamacro",
  13417. height: math.unit(1000, "miles")
  13418. },
  13419. ]
  13420. ))
  13421. characterMakers.push(() => makeCharacter(
  13422. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13423. {
  13424. front: {
  13425. height: math.unit(6 + 2 / 12, "feet"),
  13426. weight: math.unit(265, "lb"),
  13427. name: "Front",
  13428. image: {
  13429. source: "./media/characters/jay/front.svg",
  13430. extra: 1510 / 1430,
  13431. bottom: 0.042
  13432. }
  13433. },
  13434. back: {
  13435. height: math.unit(6 + 2 / 12, "feet"),
  13436. weight: math.unit(265, "lb"),
  13437. name: "Back",
  13438. image: {
  13439. source: "./media/characters/jay/back.svg",
  13440. extra: 1510 / 1430,
  13441. bottom: 0.025
  13442. }
  13443. },
  13444. clothed: {
  13445. height: math.unit(6 + 2 / 12, "feet"),
  13446. weight: math.unit(265, "lb"),
  13447. name: "Front (Clothed)",
  13448. image: {
  13449. source: "./media/characters/jay/clothed.svg",
  13450. extra: 744 / 699,
  13451. bottom: 0.043
  13452. }
  13453. },
  13454. head: {
  13455. height: math.unit(1.772, "feet"),
  13456. name: "Head",
  13457. image: {
  13458. source: "./media/characters/jay/head.svg"
  13459. }
  13460. },
  13461. sizeRay: {
  13462. height: math.unit(1.331, "feet"),
  13463. name: "Size Ray",
  13464. image: {
  13465. source: "./media/characters/jay/size-ray.svg"
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Micro",
  13472. height: math.unit(1, "inch")
  13473. },
  13474. {
  13475. name: "Normal",
  13476. height: math.unit(6 + 2 / 12, "feet"),
  13477. default: true
  13478. },
  13479. {
  13480. name: "Macro",
  13481. height: math.unit(1, "mile")
  13482. },
  13483. {
  13484. name: "Megamacro",
  13485. height: math.unit(100, "miles")
  13486. },
  13487. ]
  13488. ))
  13489. characterMakers.push(() => makeCharacter(
  13490. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13491. {
  13492. front: {
  13493. height: math.unit(2, "meters"),
  13494. weight: math.unit(500, "kg"),
  13495. name: "Front",
  13496. image: {
  13497. source: "./media/characters/coatl/front.svg",
  13498. extra: 3948 / 3500,
  13499. bottom: 0.082
  13500. }
  13501. },
  13502. },
  13503. [
  13504. {
  13505. name: "Normal",
  13506. height: math.unit(4, "meters")
  13507. },
  13508. {
  13509. name: "Macro",
  13510. height: math.unit(100, "meters"),
  13511. default: true
  13512. },
  13513. {
  13514. name: "Macro+",
  13515. height: math.unit(300, "meters")
  13516. },
  13517. {
  13518. name: "Megamacro",
  13519. height: math.unit(3, "gigameters")
  13520. },
  13521. {
  13522. name: "Megamacro+",
  13523. height: math.unit(300, "terameters")
  13524. },
  13525. {
  13526. name: "Megamacro++",
  13527. height: math.unit(3, "lightyears")
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13533. {
  13534. front: {
  13535. height: math.unit(6, "feet"),
  13536. weight: math.unit(50, "kg"),
  13537. name: "front",
  13538. image: {
  13539. source: "./media/characters/shiroryu/front.svg",
  13540. extra: 1990 / 1935
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Mortal Mingling",
  13547. height: math.unit(3, "meters")
  13548. },
  13549. {
  13550. name: "Kaiju-ish",
  13551. height: math.unit(250, "meters")
  13552. },
  13553. {
  13554. name: "Somewhat Godly",
  13555. height: math.unit(400, "km"),
  13556. default: true
  13557. },
  13558. {
  13559. name: "Planetary",
  13560. height: math.unit(300, "megameters")
  13561. },
  13562. {
  13563. name: "Galaxy-dwarfing",
  13564. height: math.unit(450, "kiloparsecs")
  13565. },
  13566. {
  13567. name: "Universe Eater",
  13568. height: math.unit(150, "gigaparsecs")
  13569. },
  13570. {
  13571. name: "Almost Immeasurable",
  13572. height: math.unit(1.3e266, "yottaparsecs")
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13578. {
  13579. front: {
  13580. height: math.unit(6, "feet"),
  13581. weight: math.unit(150, "lb"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/umeko/front.svg",
  13585. extra: 1,
  13586. bottom: 0.019
  13587. }
  13588. },
  13589. frontArmored: {
  13590. height: math.unit(6, "feet"),
  13591. weight: math.unit(150, "lb"),
  13592. name: "Front (Armored)",
  13593. image: {
  13594. source: "./media/characters/umeko/front-armored.svg",
  13595. extra: 1,
  13596. bottom: 0.021
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Macro",
  13603. height: math.unit(220, "feet"),
  13604. default: true
  13605. },
  13606. {
  13607. name: "Guardian Dragon",
  13608. height: math.unit(50, "miles")
  13609. },
  13610. {
  13611. name: "Cosmic",
  13612. height: math.unit(800000, "miles")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(150, "lb"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/cassidy/front.svg",
  13625. extra: 1,
  13626. bottom: 0.043
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Canon Height",
  13633. height: math.unit(120, "feet"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Macro+",
  13638. height: math.unit(400, "feet")
  13639. },
  13640. {
  13641. name: "Macro++",
  13642. height: math.unit(4000, "feet")
  13643. },
  13644. {
  13645. name: "Megamacro",
  13646. height: math.unit(3, "miles")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(6, "feet"),
  13655. weight: math.unit(150, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/isaac/front.svg",
  13659. extra: 896 / 815,
  13660. bottom: 0.11
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Human Size",
  13667. height: math.unit(8, "feet"),
  13668. default: true
  13669. },
  13670. {
  13671. name: "Macro",
  13672. height: math.unit(400, "feet")
  13673. },
  13674. {
  13675. name: "Megamacro",
  13676. height: math.unit(50, "miles")
  13677. },
  13678. {
  13679. name: "Canon Height",
  13680. height: math.unit(200, "AU")
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(72, "kg"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/sleekit/front.svg",
  13693. extra: 4693 / 4487,
  13694. bottom: 0.012
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Minimum Height",
  13701. height: math.unit(10, "meters")
  13702. },
  13703. {
  13704. name: "Smaller",
  13705. height: math.unit(25, "meters")
  13706. },
  13707. {
  13708. name: "Larger",
  13709. height: math.unit(38, "meters"),
  13710. default: true
  13711. },
  13712. {
  13713. name: "Maximum height",
  13714. height: math.unit(100, "meters")
  13715. },
  13716. ]
  13717. ))
  13718. characterMakers.push(() => makeCharacter(
  13719. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13720. {
  13721. front: {
  13722. height: math.unit(6, "feet"),
  13723. weight: math.unit(150, "lb"),
  13724. name: "Front",
  13725. image: {
  13726. source: "./media/characters/nillia/front.svg",
  13727. extra: 2195 / 2037,
  13728. bottom: 0.005
  13729. }
  13730. },
  13731. back: {
  13732. height: math.unit(6, "feet"),
  13733. weight: math.unit(150, "lb"),
  13734. name: "Back",
  13735. image: {
  13736. source: "./media/characters/nillia/back.svg",
  13737. extra: 2195 / 2037,
  13738. bottom: 0.005
  13739. }
  13740. },
  13741. },
  13742. [
  13743. {
  13744. name: "Canon Height",
  13745. height: math.unit(489, "feet"),
  13746. default: true
  13747. }
  13748. ]
  13749. ))
  13750. characterMakers.push(() => makeCharacter(
  13751. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13752. {
  13753. front: {
  13754. height: math.unit(6, "feet"),
  13755. weight: math.unit(150, "lb"),
  13756. name: "Front",
  13757. image: {
  13758. source: "./media/characters/mesmyriza/front.svg",
  13759. extra: 2067 / 1784,
  13760. bottom: 0.035
  13761. }
  13762. },
  13763. foot: {
  13764. height: math.unit(6 / (250 / 35), "feet"),
  13765. name: "Foot",
  13766. image: {
  13767. source: "./media/characters/mesmyriza/foot.svg"
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Macro",
  13774. height: math.unit(457, "meters"),
  13775. default: true
  13776. },
  13777. {
  13778. name: "Megamacro",
  13779. height: math.unit(8, "megameters")
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(6, "feet"),
  13788. weight: math.unit(250, "lb"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/saudade/front.svg",
  13792. extra: 1172 / 1139,
  13793. bottom: 0.035
  13794. }
  13795. },
  13796. },
  13797. [
  13798. {
  13799. name: "Micro",
  13800. height: math.unit(3, "inches")
  13801. },
  13802. {
  13803. name: "Normal",
  13804. height: math.unit(6, "feet"),
  13805. default: true
  13806. },
  13807. {
  13808. name: "Macro",
  13809. height: math.unit(50, "feet")
  13810. },
  13811. {
  13812. name: "Megamacro",
  13813. height: math.unit(2800, "feet")
  13814. },
  13815. ]
  13816. ))
  13817. characterMakers.push(() => makeCharacter(
  13818. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13819. {
  13820. front: {
  13821. height: math.unit(5 + 4 / 12, "feet"),
  13822. weight: math.unit(100, "lb"),
  13823. name: "Front",
  13824. image: {
  13825. source: "./media/characters/keireer/front.svg",
  13826. extra: 716 / 666,
  13827. bottom: 0.05
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Normal",
  13834. height: math.unit(5 + 4 / 12, "feet"),
  13835. default: true
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(90, "kg"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/mirja/front.svg",
  13848. extra: 1789 / 1683,
  13849. bottom: 0.05
  13850. }
  13851. },
  13852. frontDressed: {
  13853. height: math.unit(6, "feet"),
  13854. weight: math.unit(90, "lb"),
  13855. name: "Front (Dressed)",
  13856. image: {
  13857. source: "./media/characters/mirja/front-dressed.svg",
  13858. extra: 1789 / 1683,
  13859. bottom: 0.05
  13860. }
  13861. },
  13862. back: {
  13863. height: math.unit(6, "feet"),
  13864. weight: math.unit(90, "lb"),
  13865. name: "Back",
  13866. image: {
  13867. source: "./media/characters/mirja/back.svg",
  13868. extra: 953 / 917,
  13869. bottom: 0.017
  13870. }
  13871. },
  13872. },
  13873. [
  13874. {
  13875. name: "\"Incognito\"",
  13876. height: math.unit(3, "meters")
  13877. },
  13878. {
  13879. name: "Strolling Size",
  13880. height: math.unit(15, "km")
  13881. },
  13882. {
  13883. name: "Larger Strolling Size",
  13884. height: math.unit(400, "km")
  13885. },
  13886. {
  13887. name: "Preferred Size",
  13888. height: math.unit(5000, "km")
  13889. },
  13890. {
  13891. name: "True Size",
  13892. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13893. default: true
  13894. },
  13895. ]
  13896. ))
  13897. characterMakers.push(() => makeCharacter(
  13898. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13899. {
  13900. front: {
  13901. height: math.unit(15, "feet"),
  13902. weight: math.unit(880, "kg"),
  13903. name: "Front",
  13904. image: {
  13905. source: "./media/characters/nightraver/front.svg",
  13906. extra: 2444 / 2160,
  13907. bottom: 0.027
  13908. }
  13909. },
  13910. back: {
  13911. height: math.unit(15, "feet"),
  13912. weight: math.unit(880, "kg"),
  13913. name: "Back",
  13914. image: {
  13915. source: "./media/characters/nightraver/back.svg",
  13916. extra: 2309 / 2180,
  13917. bottom: 0.005
  13918. }
  13919. },
  13920. sole: {
  13921. height: math.unit(2.878, "feet"),
  13922. name: "Sole",
  13923. image: {
  13924. source: "./media/characters/nightraver/sole.svg"
  13925. }
  13926. },
  13927. foot: {
  13928. height: math.unit(2.285, "feet"),
  13929. name: "Foot",
  13930. image: {
  13931. source: "./media/characters/nightraver/foot.svg"
  13932. }
  13933. },
  13934. maw: {
  13935. height: math.unit(2.67, "feet"),
  13936. name: "Maw",
  13937. image: {
  13938. source: "./media/characters/nightraver/maw.svg"
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Micro",
  13945. height: math.unit(1, "cm")
  13946. },
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(15, "feet"),
  13950. default: true
  13951. },
  13952. {
  13953. name: "Macro",
  13954. height: math.unit(300, "feet")
  13955. },
  13956. {
  13957. name: "Megamacro",
  13958. height: math.unit(300, "miles")
  13959. },
  13960. {
  13961. name: "Gigamacro",
  13962. height: math.unit(10000, "miles")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13968. {
  13969. side: {
  13970. height: math.unit(2, "inches"),
  13971. weight: math.unit(5, "grams"),
  13972. name: "Side",
  13973. image: {
  13974. source: "./media/characters/arc/side.svg"
  13975. }
  13976. },
  13977. },
  13978. [
  13979. {
  13980. name: "Micro",
  13981. height: math.unit(2, "inches"),
  13982. default: true
  13983. },
  13984. ]
  13985. ))
  13986. characterMakers.push(() => makeCharacter(
  13987. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13988. {
  13989. front: {
  13990. height: math.unit(1.1938, "meters"),
  13991. weight: math.unit(54, "kg"),
  13992. name: "Front",
  13993. image: {
  13994. source: "./media/characters/nebula-shahar/front.svg",
  13995. extra: 1642 / 1436,
  13996. bottom: 0.06
  13997. }
  13998. },
  13999. },
  14000. [
  14001. {
  14002. name: "Megamicro",
  14003. height: math.unit(0.3, "mm")
  14004. },
  14005. {
  14006. name: "Micro",
  14007. height: math.unit(3, "cm")
  14008. },
  14009. {
  14010. name: "Normal",
  14011. height: math.unit(138, "cm"),
  14012. default: true
  14013. },
  14014. {
  14015. name: "Macro",
  14016. height: math.unit(30, "m")
  14017. },
  14018. ]
  14019. ))
  14020. characterMakers.push(() => makeCharacter(
  14021. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14022. {
  14023. front: {
  14024. height: math.unit(5.24, "feet"),
  14025. weight: math.unit(150, "lb"),
  14026. name: "Front",
  14027. image: {
  14028. source: "./media/characters/shayla/front.svg",
  14029. extra: 1512 / 1414,
  14030. bottom: 0.01
  14031. }
  14032. },
  14033. back: {
  14034. height: math.unit(5.24, "feet"),
  14035. weight: math.unit(150, "lb"),
  14036. name: "Back",
  14037. image: {
  14038. source: "./media/characters/shayla/back.svg",
  14039. extra: 1512 / 1414
  14040. }
  14041. },
  14042. hand: {
  14043. height: math.unit(0.7781496062992126, "feet"),
  14044. name: "Hand",
  14045. image: {
  14046. source: "./media/characters/shayla/hand.svg"
  14047. }
  14048. },
  14049. foot: {
  14050. height: math.unit(1.4206036745406823, "feet"),
  14051. name: "Foot",
  14052. image: {
  14053. source: "./media/characters/shayla/foot.svg"
  14054. }
  14055. },
  14056. },
  14057. [
  14058. {
  14059. name: "Micro",
  14060. height: math.unit(0.32, "feet")
  14061. },
  14062. {
  14063. name: "Normal",
  14064. height: math.unit(5.24, "feet"),
  14065. default: true
  14066. },
  14067. {
  14068. name: "Macro",
  14069. height: math.unit(492.12, "feet")
  14070. },
  14071. {
  14072. name: "Megamacro",
  14073. height: math.unit(186.41, "miles")
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14079. {
  14080. front: {
  14081. height: math.unit(2.2, "m"),
  14082. weight: math.unit(120, "kg"),
  14083. name: "Front",
  14084. image: {
  14085. source: "./media/characters/pia-jr/front.svg",
  14086. extra: 1000 / 970,
  14087. bottom: 0.035
  14088. }
  14089. },
  14090. hand: {
  14091. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14092. name: "Hand",
  14093. image: {
  14094. source: "./media/characters/pia-jr/hand.svg"
  14095. }
  14096. },
  14097. paw: {
  14098. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14099. name: "Paw",
  14100. image: {
  14101. source: "./media/characters/pia-jr/paw.svg"
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Micro",
  14108. height: math.unit(1.2, "cm")
  14109. },
  14110. {
  14111. name: "Normal",
  14112. height: math.unit(2.2, "m"),
  14113. default: true
  14114. },
  14115. {
  14116. name: "Macro",
  14117. height: math.unit(180, "m")
  14118. },
  14119. {
  14120. name: "Megamacro",
  14121. height: math.unit(420, "km")
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(2, "m"),
  14130. weight: math.unit(115, "kg"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/pia-sr/front.svg",
  14134. extra: 760 / 730,
  14135. bottom: 0.015
  14136. }
  14137. },
  14138. back: {
  14139. height: math.unit(2, "m"),
  14140. weight: math.unit(115, "kg"),
  14141. name: "Back",
  14142. image: {
  14143. source: "./media/characters/pia-sr/back.svg",
  14144. extra: 760 / 730,
  14145. bottom: 0.01
  14146. }
  14147. },
  14148. hand: {
  14149. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14150. name: "Hand",
  14151. image: {
  14152. source: "./media/characters/pia-sr/hand.svg"
  14153. }
  14154. },
  14155. foot: {
  14156. height: math.unit(1.83, "feet"),
  14157. name: "Foot",
  14158. image: {
  14159. source: "./media/characters/pia-sr/foot.svg"
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Micro",
  14166. height: math.unit(88, "mm")
  14167. },
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(2, "m"),
  14171. default: true
  14172. },
  14173. {
  14174. name: "Macro",
  14175. height: math.unit(200, "m")
  14176. },
  14177. {
  14178. name: "Megamacro",
  14179. height: math.unit(420, "km")
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14185. {
  14186. front: {
  14187. height: math.unit(8 + 2 / 12, "feet"),
  14188. weight: math.unit(300, "lb"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/kibibyte/front.svg",
  14192. extra: 2221 / 2098,
  14193. bottom: 0.04
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(8 + 2 / 12, "feet"),
  14201. default: true
  14202. },
  14203. {
  14204. name: "Socialable Macro",
  14205. height: math.unit(50, "feet")
  14206. },
  14207. {
  14208. name: "Macro",
  14209. height: math.unit(300, "feet")
  14210. },
  14211. {
  14212. name: "Megamacro",
  14213. height: math.unit(500, "miles")
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14219. {
  14220. front: {
  14221. height: math.unit(6, "feet"),
  14222. weight: math.unit(150, "lb"),
  14223. name: "Front",
  14224. image: {
  14225. source: "./media/characters/felix/front.svg",
  14226. extra: 762 / 722,
  14227. bottom: 0.02
  14228. }
  14229. },
  14230. frontClothed: {
  14231. height: math.unit(6, "feet"),
  14232. weight: math.unit(150, "lb"),
  14233. name: "Front (Clothed)",
  14234. image: {
  14235. source: "./media/characters/felix/front-clothed.svg",
  14236. extra: 762 / 722,
  14237. bottom: 0.02
  14238. }
  14239. },
  14240. },
  14241. [
  14242. {
  14243. name: "Normal",
  14244. height: math.unit(6 + 8 / 12, "feet"),
  14245. default: true
  14246. },
  14247. {
  14248. name: "Macro",
  14249. height: math.unit(2600, "feet")
  14250. },
  14251. {
  14252. name: "Megamacro",
  14253. height: math.unit(450, "miles")
  14254. },
  14255. ]
  14256. ))
  14257. characterMakers.push(() => makeCharacter(
  14258. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14259. {
  14260. front: {
  14261. height: math.unit(6 + 1 / 12, "feet"),
  14262. weight: math.unit(250, "lb"),
  14263. name: "Front",
  14264. image: {
  14265. source: "./media/characters/tobo/front.svg",
  14266. extra: 608 / 586,
  14267. bottom: 0.023
  14268. }
  14269. },
  14270. back: {
  14271. height: math.unit(6 + 1 / 12, "feet"),
  14272. weight: math.unit(250, "lb"),
  14273. name: "Back",
  14274. image: {
  14275. source: "./media/characters/tobo/back.svg",
  14276. extra: 608 / 586
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Nano",
  14283. height: math.unit(2, "nm")
  14284. },
  14285. {
  14286. name: "Megamicro",
  14287. height: math.unit(0.1, "mm")
  14288. },
  14289. {
  14290. name: "Micro",
  14291. height: math.unit(1, "inch"),
  14292. default: true
  14293. },
  14294. {
  14295. name: "Human-sized",
  14296. height: math.unit(6 + 1 / 12, "feet")
  14297. },
  14298. {
  14299. name: "Macro",
  14300. height: math.unit(250, "feet")
  14301. },
  14302. {
  14303. name: "Megamacro",
  14304. height: math.unit(75, "miles")
  14305. },
  14306. {
  14307. name: "Texas-sized",
  14308. height: math.unit(750, "miles")
  14309. },
  14310. {
  14311. name: "Teramacro",
  14312. height: math.unit(50000, "miles")
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14318. {
  14319. front: {
  14320. height: math.unit(6, "feet"),
  14321. weight: math.unit(269, "lb"),
  14322. name: "Front",
  14323. image: {
  14324. source: "./media/characters/danny-kapowsky/front.svg",
  14325. extra: 766 / 736,
  14326. bottom: 0.044
  14327. }
  14328. },
  14329. back: {
  14330. height: math.unit(6, "feet"),
  14331. weight: math.unit(269, "lb"),
  14332. name: "Back",
  14333. image: {
  14334. source: "./media/characters/danny-kapowsky/back.svg",
  14335. extra: 797 / 760,
  14336. bottom: 0.025
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Macro",
  14343. height: math.unit(150, "feet"),
  14344. default: true
  14345. },
  14346. {
  14347. name: "Macro+",
  14348. height: math.unit(200, "feet")
  14349. },
  14350. {
  14351. name: "Macro++",
  14352. height: math.unit(300, "feet")
  14353. },
  14354. {
  14355. name: "Macro+++",
  14356. height: math.unit(400, "feet")
  14357. },
  14358. ]
  14359. ))
  14360. characterMakers.push(() => makeCharacter(
  14361. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14362. {
  14363. side: {
  14364. height: math.unit(6, "feet"),
  14365. weight: math.unit(170, "lb"),
  14366. name: "Side",
  14367. image: {
  14368. source: "./media/characters/finn/side.svg",
  14369. extra: 1953 / 1807,
  14370. bottom: 0.057
  14371. }
  14372. },
  14373. },
  14374. [
  14375. {
  14376. name: "Megamacro",
  14377. height: math.unit(14445, "feet"),
  14378. default: true
  14379. },
  14380. ]
  14381. ))
  14382. characterMakers.push(() => makeCharacter(
  14383. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14384. {
  14385. front: {
  14386. height: math.unit(5 + 6 / 12, "feet"),
  14387. weight: math.unit(125, "lb"),
  14388. name: "Front",
  14389. image: {
  14390. source: "./media/characters/roy/front.svg",
  14391. extra: 1,
  14392. bottom: 0.11
  14393. }
  14394. },
  14395. },
  14396. [
  14397. {
  14398. name: "Micro",
  14399. height: math.unit(3, "inches"),
  14400. default: true
  14401. },
  14402. {
  14403. name: "Normal",
  14404. height: math.unit(5 + 6 / 12, "feet")
  14405. },
  14406. {
  14407. name: "Lesser Macro",
  14408. height: math.unit(60, "feet")
  14409. },
  14410. {
  14411. name: "Greater Macro",
  14412. height: math.unit(120, "feet")
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14418. {
  14419. front: {
  14420. height: math.unit(6, "feet"),
  14421. weight: math.unit(100, "lb"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/aevsivs/front.svg",
  14425. extra: 1,
  14426. bottom: 0.03
  14427. }
  14428. },
  14429. back: {
  14430. height: math.unit(6, "feet"),
  14431. weight: math.unit(100, "lb"),
  14432. name: "Back",
  14433. image: {
  14434. source: "./media/characters/aevsivs/back.svg"
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Micro",
  14441. height: math.unit(2, "inches"),
  14442. default: true
  14443. },
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(5, "feet")
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14452. {
  14453. front: {
  14454. height: math.unit(5 + 7 / 12, "feet"),
  14455. weight: math.unit(159, "lb"),
  14456. name: "Front",
  14457. image: {
  14458. source: "./media/characters/hildegard/front.svg",
  14459. extra: 289 / 269,
  14460. bottom: 7.63 / 297.8
  14461. }
  14462. },
  14463. back: {
  14464. height: math.unit(5 + 7 / 12, "feet"),
  14465. weight: math.unit(159, "lb"),
  14466. name: "Back",
  14467. image: {
  14468. source: "./media/characters/hildegard/back.svg",
  14469. extra: 280 / 260,
  14470. bottom: 2.3 / 282
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Normal",
  14477. height: math.unit(5 + 7 / 12, "feet"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14484. {
  14485. bernard: {
  14486. height: math.unit(2 + 7 / 12, "feet"),
  14487. weight: math.unit(66, "lb"),
  14488. name: "Bernard",
  14489. rename: true,
  14490. image: {
  14491. source: "./media/characters/bernard-wilder/bernard.svg",
  14492. extra: 192 / 128,
  14493. bottom: 0.05
  14494. }
  14495. },
  14496. wilder: {
  14497. height: math.unit(5 + 8 / 12, "feet"),
  14498. weight: math.unit(143, "lb"),
  14499. name: "Wilder",
  14500. rename: true,
  14501. image: {
  14502. source: "./media/characters/bernard-wilder/wilder.svg",
  14503. extra: 361 / 312,
  14504. bottom: 0.02
  14505. }
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Normal",
  14511. height: math.unit(2 + 7 / 12, "feet"),
  14512. default: true
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14518. {
  14519. anthro: {
  14520. height: math.unit(6 + 1 / 12, "feet"),
  14521. weight: math.unit(155, "lb"),
  14522. name: "Anthro",
  14523. image: {
  14524. source: "./media/characters/hearth/anthro.svg",
  14525. extra: 260 / 250,
  14526. bottom: 0.02
  14527. }
  14528. },
  14529. feral: {
  14530. height: math.unit(3.78, "feet"),
  14531. weight: math.unit(35, "kg"),
  14532. name: "Feral",
  14533. image: {
  14534. source: "./media/characters/hearth/feral.svg",
  14535. extra: 153 / 135,
  14536. bottom: 0.03
  14537. }
  14538. },
  14539. },
  14540. [
  14541. {
  14542. name: "Normal",
  14543. height: math.unit(6 + 1 / 12, "feet"),
  14544. default: true
  14545. },
  14546. ]
  14547. ))
  14548. characterMakers.push(() => makeCharacter(
  14549. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14550. {
  14551. front: {
  14552. height: math.unit(6, "feet"),
  14553. weight: math.unit(182, "lb"),
  14554. name: "Front",
  14555. image: {
  14556. source: "./media/characters/ingrid/front.svg",
  14557. extra: 294 / 268,
  14558. bottom: 0.027
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Normal",
  14565. height: math.unit(6, "feet"),
  14566. default: true
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14572. {
  14573. eevee: {
  14574. height: math.unit(2 + 10 / 12, "feet"),
  14575. weight: math.unit(86, "lb"),
  14576. name: "Malgam",
  14577. image: {
  14578. source: "./media/characters/malgam/eevee.svg",
  14579. extra: 218 / 180,
  14580. bottom: 0.2
  14581. }
  14582. },
  14583. sylveon: {
  14584. height: math.unit(4, "feet"),
  14585. weight: math.unit(101, "lb"),
  14586. name: "Future Malgam",
  14587. rename: true,
  14588. image: {
  14589. source: "./media/characters/malgam/sylveon.svg",
  14590. extra: 371 / 325,
  14591. bottom: 0.015
  14592. }
  14593. },
  14594. gigantamax: {
  14595. height: math.unit(50, "feet"),
  14596. name: "Gigantamax Malgam",
  14597. rename: true,
  14598. image: {
  14599. source: "./media/characters/malgam/gigantamax.svg"
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(2 + 10 / 12, "feet"),
  14607. default: true
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14613. {
  14614. front: {
  14615. height: math.unit(5 + 11 / 12, "feet"),
  14616. weight: math.unit(188, "lb"),
  14617. name: "Front",
  14618. image: {
  14619. source: "./media/characters/fleur/front.svg",
  14620. extra: 309 / 283,
  14621. bottom: 0.007
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Normal",
  14628. height: math.unit(5 + 11 / 12, "feet"),
  14629. default: true
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14635. {
  14636. front: {
  14637. height: math.unit(5 + 4 / 12, "feet"),
  14638. weight: math.unit(122, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/jude/front.svg",
  14642. extra: 288 / 273,
  14643. bottom: 0.03
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Normal",
  14650. height: math.unit(5 + 4 / 12, "feet"),
  14651. default: true
  14652. },
  14653. ]
  14654. ))
  14655. characterMakers.push(() => makeCharacter(
  14656. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14657. {
  14658. front: {
  14659. height: math.unit(5 + 11 / 12, "feet"),
  14660. weight: math.unit(190, "lb"),
  14661. name: "Front",
  14662. image: {
  14663. source: "./media/characters/seara/front.svg",
  14664. extra: 1,
  14665. bottom: 0.05
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(5 + 11 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(16 + 5 / 12, "feet"),
  14682. weight: math.unit(524, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/caspian/front.svg",
  14686. extra: 1,
  14687. bottom: 0.04
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(16 + 5 / 12, "feet"),
  14695. default: true
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(5 + 7 / 12, "feet"),
  14704. weight: math.unit(170, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/mika/front.svg",
  14708. extra: 1,
  14709. bottom: 0.016
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(5 + 7 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(6 + 2 / 12, "feet"),
  14726. weight: math.unit(268, "lb"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/sol/front.svg",
  14730. extra: 247 / 231,
  14731. bottom: 0.05
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(6 + 2 / 12, "feet"),
  14739. default: true
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14745. {
  14746. buizel: {
  14747. height: math.unit(2 + 5 / 12, "feet"),
  14748. weight: math.unit(87, "lb"),
  14749. name: "Buizel",
  14750. image: {
  14751. source: "./media/characters/umiko/buizel.svg",
  14752. extra: 172 / 157,
  14753. bottom: 0.01
  14754. }
  14755. },
  14756. floatzel: {
  14757. height: math.unit(5 + 9 / 12, "feet"),
  14758. weight: math.unit(250, "lb"),
  14759. name: "Floatzel",
  14760. image: {
  14761. source: "./media/characters/umiko/floatzel.svg",
  14762. extra: 262 / 248
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Normal",
  14769. height: math.unit(2 + 5 / 12, "feet"),
  14770. default: true
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(6 + 2 / 12, "feet"),
  14779. weight: math.unit(146, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/iliac/front.svg",
  14783. extra: 389 / 365,
  14784. bottom: 0.035
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(6 + 2 / 12, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(6, "feet"),
  14801. weight: math.unit(170, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/topaz/front.svg",
  14805. extra: 317 / 303,
  14806. bottom: 0.055
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(6, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(5 + 11 / 12, "feet"),
  14823. weight: math.unit(144, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/gabriel/front.svg",
  14827. extra: 285 / 262,
  14828. bottom: 0.004
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(5 + 11 / 12, "feet"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14842. {
  14843. side: {
  14844. height: math.unit(6 + 5 / 12, "feet"),
  14845. weight: math.unit(300, "lb"),
  14846. name: "Side",
  14847. image: {
  14848. source: "./media/characters/tempest-suicune/side.svg",
  14849. extra: 195 / 154,
  14850. bottom: 0.04
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(6 + 5 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(7 + 2 / 12, "feet"),
  14867. weight: math.unit(322, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/vulcan/front.svg",
  14871. extra: 154 / 147,
  14872. bottom: 0.04
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(7 + 2 / 12, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(5 + 10 / 12, "feet"),
  14889. weight: math.unit(264, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/gault/front.svg",
  14893. extra: 161 / 140,
  14894. bottom: 0.028
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(5 + 10 / 12, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(6, "feet"),
  14911. weight: math.unit(150, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/shard/front.svg",
  14915. extra: 273 / 238,
  14916. bottom: 0.02
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(3 + 6 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(5 + 11 / 12, "feet"),
  14933. weight: math.unit(146, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/ashe/front.svg",
  14937. extra: 400 / 373,
  14938. bottom: 0.01
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(5 + 11 / 12, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(5 + 5 / 12, "feet"),
  14955. weight: math.unit(135, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/beatrix/front.svg",
  14959. extra: 392 / 379,
  14960. bottom: 0.01
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(6, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(150, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/ignatius/front.svg",
  14981. extra: 245 / 222,
  14982. bottom: 0.01
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(5 + 5 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(6 + 2 / 12, "feet"),
  14999. weight: math.unit(138, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/mei-li/front.svg",
  15003. extra: 237 / 229,
  15004. bottom: 0.03
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(6 + 2 / 12, "feet"),
  15012. default: true
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(2 + 4 / 12, "feet"),
  15021. weight: math.unit(62, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/puru/front.svg",
  15025. extra: 206 / 149,
  15026. bottom: 0.06
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(2 + 4 / 12, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15040. {
  15041. anthro: {
  15042. height: math.unit(5 + 8/12, "feet"),
  15043. weight: math.unit(200, "lb"),
  15044. energyNeed: math.unit(2000, "kcal"),
  15045. name: "Anthro",
  15046. image: {
  15047. source: "./media/characters/kee/anthro.svg",
  15048. extra: 3251/3184,
  15049. bottom: 250/3501
  15050. }
  15051. },
  15052. taur: {
  15053. height: math.unit(11, "feet"),
  15054. weight: math.unit(500, "lb"),
  15055. energyNeed: math.unit(5000, "kcal"),
  15056. name: "Taur",
  15057. image: {
  15058. source: "./media/characters/kee/taur.svg",
  15059. extra: 1362/1320,
  15060. bottom: 83/1445
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(5 + 8/12, "feet"),
  15068. default: true
  15069. },
  15070. {
  15071. name: "Macro",
  15072. height: math.unit(35, "feet")
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15078. {
  15079. anthro: {
  15080. height: math.unit(7, "feet"),
  15081. weight: math.unit(190, "lb"),
  15082. name: "Anthro",
  15083. image: {
  15084. source: "./media/characters/cobalt-dracha/anthro.svg",
  15085. extra: 231 / 225,
  15086. bottom: 0.04
  15087. }
  15088. },
  15089. feral: {
  15090. height: math.unit(9 + 7 / 12, "feet"),
  15091. weight: math.unit(294, "lb"),
  15092. name: "Feral",
  15093. image: {
  15094. source: "./media/characters/cobalt-dracha/feral.svg",
  15095. extra: 692 / 633,
  15096. bottom: 0.05
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Normal",
  15103. height: math.unit(7, "feet"),
  15104. default: true
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15110. {
  15111. fallen: {
  15112. height: math.unit(11 + 8 / 12, "feet"),
  15113. weight: math.unit(485, "lb"),
  15114. name: "Java (Fallen)",
  15115. rename: true,
  15116. image: {
  15117. source: "./media/characters/java/fallen.svg",
  15118. extra: 226 / 208,
  15119. bottom: 0.005
  15120. }
  15121. },
  15122. godkin: {
  15123. height: math.unit(10 + 6 / 12, "feet"),
  15124. weight: math.unit(328, "lb"),
  15125. name: "Java (Godkin)",
  15126. rename: true,
  15127. image: {
  15128. source: "./media/characters/java/godkin.svg",
  15129. extra: 270 / 262,
  15130. bottom: 0.02
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(11 + 8 / 12, "feet"),
  15138. default: true
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(7 + 8 / 12, "feet"),
  15147. weight: math.unit(320, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/skoll/front.svg",
  15151. extra: 232 / 220,
  15152. bottom: 0.02
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(7 + 8 / 12, "feet"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15166. {
  15167. front: {
  15168. height: math.unit(5 + 9 / 12, "feet"),
  15169. weight: math.unit(170, "lb"),
  15170. name: "Front",
  15171. image: {
  15172. source: "./media/characters/purna/front.svg",
  15173. extra: 239 / 229,
  15174. bottom: 0.01
  15175. }
  15176. },
  15177. },
  15178. [
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(5 + 9 / 12, "feet"),
  15182. default: true
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15188. {
  15189. front: {
  15190. height: math.unit(5 + 9 / 12, "feet"),
  15191. weight: math.unit(142, "lb"),
  15192. name: "Front",
  15193. image: {
  15194. source: "./media/characters/kuva/front.svg",
  15195. extra: 281 / 271,
  15196. bottom: 0.006
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(5 + 9 / 12, "feet"),
  15204. default: true
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15210. {
  15211. anthro: {
  15212. height: math.unit(9 + 2 / 12, "feet"),
  15213. weight: math.unit(270, "lb"),
  15214. name: "Anthro",
  15215. image: {
  15216. source: "./media/characters/embra/anthro.svg",
  15217. extra: 200 / 187,
  15218. bottom: 0.02
  15219. }
  15220. },
  15221. feral: {
  15222. height: math.unit(18 + 8 / 12, "feet"),
  15223. weight: math.unit(576, "lb"),
  15224. name: "Feral",
  15225. image: {
  15226. source: "./media/characters/embra/feral.svg",
  15227. extra: 152 / 137,
  15228. bottom: 0.037
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Normal",
  15235. height: math.unit(9 + 2 / 12, "feet"),
  15236. default: true
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15242. {
  15243. anthro: {
  15244. height: math.unit(10 + 9 / 12, "feet"),
  15245. weight: math.unit(224, "lb"),
  15246. name: "Anthro",
  15247. image: {
  15248. source: "./media/characters/grottos/anthro.svg",
  15249. extra: 350 / 332,
  15250. bottom: 0.045
  15251. }
  15252. },
  15253. feral: {
  15254. height: math.unit(20 + 7 / 12, "feet"),
  15255. weight: math.unit(629, "lb"),
  15256. name: "Feral",
  15257. image: {
  15258. source: "./media/characters/grottos/feral.svg",
  15259. extra: 207 / 190,
  15260. bottom: 0.05
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "Normal",
  15267. height: math.unit(10 + 9 / 12, "feet"),
  15268. default: true
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15274. {
  15275. anthro: {
  15276. height: math.unit(9 + 6 / 12, "feet"),
  15277. weight: math.unit(298, "lb"),
  15278. name: "Anthro",
  15279. image: {
  15280. source: "./media/characters/frifna/anthro.svg",
  15281. extra: 282 / 269,
  15282. bottom: 0.015
  15283. }
  15284. },
  15285. feral: {
  15286. height: math.unit(16 + 2 / 12, "feet"),
  15287. weight: math.unit(624, "lb"),
  15288. name: "Feral",
  15289. image: {
  15290. source: "./media/characters/frifna/feral.svg"
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Normal",
  15297. height: math.unit(9 + 6 / 12, "feet"),
  15298. default: true
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15304. {
  15305. front: {
  15306. height: math.unit(6 + 2 / 12, "feet"),
  15307. weight: math.unit(168, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/elise/front.svg",
  15311. extra: 276 / 271
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(6 + 2 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(5 + 10 / 12, "feet"),
  15328. weight: math.unit(210, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/glade/front.svg",
  15332. extra: 258 / 247,
  15333. bottom: 0.008
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(5 + 10 / 12, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(5 + 10 / 12, "feet"),
  15350. weight: math.unit(129, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/rina/front.svg",
  15354. extra: 266 / 255,
  15355. bottom: 0.005
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(5 + 10 / 12, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(6 + 1 / 12, "feet"),
  15372. weight: math.unit(192, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/veronica/front.svg",
  15376. extra: 319 / 309,
  15377. bottom: 0.005
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(6 + 1 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(9 + 3 / 12, "feet"),
  15394. weight: math.unit(1100, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/braxton/front.svg",
  15398. extra: 1057 / 984,
  15399. bottom: 0.05
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(9 + 3 / 12, "feet")
  15407. },
  15408. {
  15409. name: "Giant",
  15410. height: math.unit(300, "feet"),
  15411. default: true
  15412. },
  15413. {
  15414. name: "Macro",
  15415. height: math.unit(700, "feet")
  15416. },
  15417. {
  15418. name: "Megamacro",
  15419. height: math.unit(6000, "feet")
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15425. {
  15426. front: {
  15427. height: math.unit(6 + 7 / 12, "feet"),
  15428. weight: math.unit(150, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/blue-feyonics/front.svg",
  15432. extra: 1403 / 1306,
  15433. bottom: 0.047
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Normal",
  15440. height: math.unit(6 + 7 / 12, "feet"),
  15441. default: true
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15447. {
  15448. front: {
  15449. height: math.unit(1.8, "meters"),
  15450. weight: math.unit(60, "kg"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/maxwell/front.svg",
  15454. extra: 2060 / 1873
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Micro",
  15461. height: math.unit(1, "mm")
  15462. },
  15463. {
  15464. name: "Normal",
  15465. height: math.unit(1.8, "meter"),
  15466. default: true
  15467. },
  15468. {
  15469. name: "Macro",
  15470. height: math.unit(30, "meters")
  15471. },
  15472. {
  15473. name: "Megamacro",
  15474. height: math.unit(10, "km")
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15480. {
  15481. front: {
  15482. height: math.unit(6, "feet"),
  15483. weight: math.unit(150, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/jack/front.svg",
  15487. extra: 1754 / 1640,
  15488. bottom: 0.01
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(80000, "feet"),
  15496. default: true
  15497. },
  15498. {
  15499. name: "Max size",
  15500. height: math.unit(10, "lightyears")
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15506. {
  15507. upright: {
  15508. height: math.unit(7, "feet"),
  15509. weight: math.unit(170, "lb"),
  15510. name: "Upright",
  15511. image: {
  15512. source: "./media/characters/cafat/upright.svg",
  15513. bottom: 0.01
  15514. }
  15515. },
  15516. uprightFull: {
  15517. height: math.unit(7, "feet"),
  15518. weight: math.unit(170, "lb"),
  15519. name: "Upright (Full)",
  15520. image: {
  15521. source: "./media/characters/cafat/upright-full.svg",
  15522. bottom: 0.01
  15523. }
  15524. },
  15525. side: {
  15526. height: math.unit(5, "feet"),
  15527. weight: math.unit(150, "lb"),
  15528. name: "Side",
  15529. image: {
  15530. source: "./media/characters/cafat/side.svg"
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Small",
  15537. height: math.unit(7, "feet"),
  15538. default: true
  15539. },
  15540. {
  15541. name: "Large",
  15542. height: math.unit(15.5, "feet")
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(6, "feet"),
  15551. weight: math.unit(150, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/verin-raharra/front.svg",
  15555. extra: 5019 / 4835,
  15556. bottom: 0.023
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Normal",
  15563. height: math.unit(7 + 5 / 12, "feet"),
  15564. default: true
  15565. },
  15566. {
  15567. name: "Upsized",
  15568. height: math.unit(20, "feet")
  15569. },
  15570. ]
  15571. ))
  15572. characterMakers.push(() => makeCharacter(
  15573. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15574. {
  15575. front: {
  15576. height: math.unit(7, "feet"),
  15577. weight: math.unit(230, "lb"),
  15578. name: "Front",
  15579. image: {
  15580. source: "./media/characters/nakata/front.svg",
  15581. extra: 1.005,
  15582. bottom: 0.01
  15583. }
  15584. },
  15585. },
  15586. [
  15587. {
  15588. name: "Normal",
  15589. height: math.unit(7, "feet"),
  15590. default: true
  15591. },
  15592. {
  15593. name: "Big",
  15594. height: math.unit(14, "feet")
  15595. },
  15596. {
  15597. name: "Macro",
  15598. height: math.unit(400, "feet")
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15604. {
  15605. front: {
  15606. height: math.unit(4.91, "feet"),
  15607. weight: math.unit(100, "lb"),
  15608. name: "Front",
  15609. image: {
  15610. source: "./media/characters/lily/front.svg",
  15611. extra: 1585 / 1415,
  15612. bottom: 0.02
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Normal",
  15619. height: math.unit(4.91, "feet"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15626. {
  15627. laying: {
  15628. height: math.unit(4 + 4 / 12, "feet"),
  15629. weight: math.unit(600, "lb"),
  15630. name: "Laying",
  15631. image: {
  15632. source: "./media/characters/sheila/laying.svg",
  15633. extra: 1333 / 1265,
  15634. bottom: 0.16
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Normal",
  15641. height: math.unit(4 + 4 / 12, "feet"),
  15642. default: true
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(6, "feet"),
  15651. weight: math.unit(190, "lb"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/sax/front.svg",
  15655. extra: 1187 / 973,
  15656. bottom: 0.042
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Micro",
  15663. height: math.unit(4, "inches"),
  15664. default: true
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(6, "feet"),
  15673. weight: math.unit(150, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/pandora/front.svg",
  15677. extra: 2720 / 2556,
  15678. bottom: 0.015
  15679. }
  15680. },
  15681. back: {
  15682. height: math.unit(6, "feet"),
  15683. weight: math.unit(150, "lb"),
  15684. name: "Back",
  15685. image: {
  15686. source: "./media/characters/pandora/back.svg",
  15687. extra: 2720 / 2556,
  15688. bottom: 0.01
  15689. }
  15690. },
  15691. beans: {
  15692. height: math.unit(6 / 8, "feet"),
  15693. name: "Beans",
  15694. image: {
  15695. source: "./media/characters/pandora/beans.svg"
  15696. }
  15697. },
  15698. skirt: {
  15699. height: math.unit(6, "feet"),
  15700. weight: math.unit(150, "lb"),
  15701. name: "Skirt",
  15702. image: {
  15703. source: "./media/characters/pandora/skirt.svg",
  15704. extra: 1622 / 1525,
  15705. bottom: 0.015
  15706. }
  15707. },
  15708. hoodie: {
  15709. height: math.unit(6, "feet"),
  15710. weight: math.unit(150, "lb"),
  15711. name: "Hoodie",
  15712. image: {
  15713. source: "./media/characters/pandora/hoodie.svg",
  15714. extra: 1622 / 1525,
  15715. bottom: 0.015
  15716. }
  15717. },
  15718. casual: {
  15719. height: math.unit(6, "feet"),
  15720. weight: math.unit(150, "lb"),
  15721. name: "Casual",
  15722. image: {
  15723. source: "./media/characters/pandora/casual.svg",
  15724. extra: 1622 / 1525,
  15725. bottom: 0.015
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Normal",
  15732. height: math.unit(6, "feet")
  15733. },
  15734. {
  15735. name: "Big Steppy",
  15736. height: math.unit(1, "km"),
  15737. default: true
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15743. {
  15744. side: {
  15745. height: math.unit(10, "feet"),
  15746. weight: math.unit(800, "kg"),
  15747. name: "Side",
  15748. image: {
  15749. source: "./media/characters/venio-darcony/side.svg",
  15750. extra: 1373 / 1003,
  15751. bottom: 0.037
  15752. }
  15753. },
  15754. front: {
  15755. height: math.unit(19, "feet"),
  15756. weight: math.unit(800, "kg"),
  15757. name: "Front",
  15758. image: {
  15759. source: "./media/characters/venio-darcony/front.svg"
  15760. }
  15761. },
  15762. back: {
  15763. height: math.unit(19, "feet"),
  15764. weight: math.unit(800, "kg"),
  15765. name: "Back",
  15766. image: {
  15767. source: "./media/characters/venio-darcony/back.svg"
  15768. }
  15769. },
  15770. sideNsfw: {
  15771. height: math.unit(10, "feet"),
  15772. weight: math.unit(800, "kg"),
  15773. name: "Side (NSFW)",
  15774. image: {
  15775. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15776. extra: 1373 / 1003,
  15777. bottom: 0.037
  15778. }
  15779. },
  15780. frontNsfw: {
  15781. height: math.unit(19, "feet"),
  15782. weight: math.unit(800, "kg"),
  15783. name: "Front (NSFW)",
  15784. image: {
  15785. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15786. }
  15787. },
  15788. backNsfw: {
  15789. height: math.unit(19, "feet"),
  15790. weight: math.unit(800, "kg"),
  15791. name: "Back (NSFW)",
  15792. image: {
  15793. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15794. }
  15795. },
  15796. sideArmored: {
  15797. height: math.unit(10, "feet"),
  15798. weight: math.unit(800, "kg"),
  15799. name: "Side (Armored)",
  15800. image: {
  15801. source: "./media/characters/venio-darcony/side-armored.svg",
  15802. extra: 1373 / 1003,
  15803. bottom: 0.037
  15804. }
  15805. },
  15806. frontArmored: {
  15807. height: math.unit(19, "feet"),
  15808. weight: math.unit(900, "kg"),
  15809. name: "Front (Armored)",
  15810. image: {
  15811. source: "./media/characters/venio-darcony/front-armored.svg"
  15812. }
  15813. },
  15814. backArmored: {
  15815. height: math.unit(19, "feet"),
  15816. weight: math.unit(900, "kg"),
  15817. name: "Back (Armored)",
  15818. image: {
  15819. source: "./media/characters/venio-darcony/back-armored.svg"
  15820. }
  15821. },
  15822. sword: {
  15823. height: math.unit(10, "feet"),
  15824. weight: math.unit(50, "lb"),
  15825. name: "Sword",
  15826. image: {
  15827. source: "./media/characters/venio-darcony/sword.svg"
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(10, "feet")
  15835. },
  15836. {
  15837. name: "Macro",
  15838. height: math.unit(130, "feet"),
  15839. default: true
  15840. },
  15841. {
  15842. name: "Macro+",
  15843. height: math.unit(240, "feet")
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15849. {
  15850. front: {
  15851. height: math.unit(6, "feet"),
  15852. weight: math.unit(150, "lb"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/veski/front.svg",
  15856. extra: 1299 / 1225,
  15857. bottom: 0.04
  15858. }
  15859. },
  15860. back: {
  15861. height: math.unit(6, "feet"),
  15862. weight: math.unit(150, "lb"),
  15863. name: "Back",
  15864. image: {
  15865. source: "./media/characters/veski/back.svg",
  15866. extra: 1299 / 1225,
  15867. bottom: 0.008
  15868. }
  15869. },
  15870. maw: {
  15871. height: math.unit(1.5 * 1.21, "feet"),
  15872. name: "Maw",
  15873. image: {
  15874. source: "./media/characters/veski/maw.svg"
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Macro",
  15881. height: math.unit(2, "km"),
  15882. default: true
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(5 + 7 / 12, "feet"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/isabelle/front.svg",
  15894. extra: 2130 / 1976,
  15895. bottom: 0.05
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Supermicro",
  15902. height: math.unit(10, "micrometers")
  15903. },
  15904. {
  15905. name: "Micro",
  15906. height: math.unit(1, "inch")
  15907. },
  15908. {
  15909. name: "Tiny",
  15910. height: math.unit(5, "inches")
  15911. },
  15912. {
  15913. name: "Standard",
  15914. height: math.unit(5 + 7 / 12, "inches")
  15915. },
  15916. {
  15917. name: "Macro",
  15918. height: math.unit(80, "meters"),
  15919. default: true
  15920. },
  15921. {
  15922. name: "Megamacro",
  15923. height: math.unit(250, "meters")
  15924. },
  15925. {
  15926. name: "Gigamacro",
  15927. height: math.unit(5, "km")
  15928. },
  15929. {
  15930. name: "Cosmic",
  15931. height: math.unit(2.5e6, "miles")
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(6, "feet"),
  15940. weight: math.unit(150, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/hanzo/front.svg",
  15944. extra: 374 / 344,
  15945. bottom: 0.02
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(8, "feet"),
  15953. default: true
  15954. },
  15955. ]
  15956. ))
  15957. characterMakers.push(() => makeCharacter(
  15958. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15959. {
  15960. front: {
  15961. height: math.unit(7, "feet"),
  15962. weight: math.unit(130, "lb"),
  15963. name: "Front",
  15964. image: {
  15965. source: "./media/characters/anna/front.svg",
  15966. extra: 169 / 145,
  15967. bottom: 0.06
  15968. }
  15969. },
  15970. full: {
  15971. height: math.unit(4.96, "feet"),
  15972. weight: math.unit(220, "lb"),
  15973. name: "Full",
  15974. image: {
  15975. source: "./media/characters/anna/full.svg",
  15976. extra: 138 / 114,
  15977. bottom: 0.15
  15978. }
  15979. },
  15980. tongue: {
  15981. height: math.unit(2.53, "feet"),
  15982. name: "Tongue",
  15983. image: {
  15984. source: "./media/characters/anna/tongue.svg"
  15985. }
  15986. },
  15987. },
  15988. [
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(7, "feet"),
  15992. default: true
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(7, "feet"),
  16001. weight: math.unit(150, "lb"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/ian-corvid/front.svg",
  16005. extra: 150 / 142,
  16006. bottom: 0.02
  16007. }
  16008. },
  16009. back: {
  16010. height: math.unit(7, "feet"),
  16011. weight: math.unit(150, "lb"),
  16012. name: "Back",
  16013. image: {
  16014. source: "./media/characters/ian-corvid/back.svg",
  16015. extra: 150 / 143,
  16016. bottom: 0.01
  16017. }
  16018. },
  16019. stomping: {
  16020. height: math.unit(7, "feet"),
  16021. weight: math.unit(150, "lb"),
  16022. name: "Stomping",
  16023. image: {
  16024. source: "./media/characters/ian-corvid/stomping.svg",
  16025. extra: 76 / 72
  16026. }
  16027. },
  16028. sitting: {
  16029. height: math.unit(7 / 1.8, "feet"),
  16030. weight: math.unit(150, "lb"),
  16031. name: "Sitting",
  16032. image: {
  16033. source: "./media/characters/ian-corvid/sitting.svg",
  16034. extra: 1400 / 1269,
  16035. bottom: 0.15
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Tiny Microw",
  16042. height: math.unit(1, "inch")
  16043. },
  16044. {
  16045. name: "Microw",
  16046. height: math.unit(6, "inches")
  16047. },
  16048. {
  16049. name: "Crow",
  16050. height: math.unit(7 + 1 / 12, "feet"),
  16051. default: true
  16052. },
  16053. {
  16054. name: "Macrow",
  16055. height: math.unit(176, "feet")
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16061. {
  16062. front: {
  16063. height: math.unit(5 + 7 / 12, "feet"),
  16064. weight: math.unit(147, "lb"),
  16065. name: "Front",
  16066. image: {
  16067. source: "./media/characters/natalie-kellon/front.svg",
  16068. extra: 1214 / 1141,
  16069. bottom: 0.02
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Micro",
  16076. height: math.unit(1 / 16, "inch")
  16077. },
  16078. {
  16079. name: "Tiny",
  16080. height: math.unit(4, "inches")
  16081. },
  16082. {
  16083. name: "Normal",
  16084. height: math.unit(5 + 7 / 12, "feet"),
  16085. default: true
  16086. },
  16087. {
  16088. name: "Amazon",
  16089. height: math.unit(12, "feet")
  16090. },
  16091. {
  16092. name: "Giantess",
  16093. height: math.unit(160, "meters")
  16094. },
  16095. {
  16096. name: "Titaness",
  16097. height: math.unit(800, "meters")
  16098. },
  16099. ]
  16100. ))
  16101. characterMakers.push(() => makeCharacter(
  16102. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16103. {
  16104. front: {
  16105. height: math.unit(6, "feet"),
  16106. weight: math.unit(150, "lb"),
  16107. name: "Front",
  16108. image: {
  16109. source: "./media/characters/alluria/front.svg",
  16110. extra: 806 / 738,
  16111. bottom: 0.01
  16112. }
  16113. },
  16114. side: {
  16115. height: math.unit(6, "feet"),
  16116. weight: math.unit(150, "lb"),
  16117. name: "Side",
  16118. image: {
  16119. source: "./media/characters/alluria/side.svg",
  16120. extra: 800 / 750,
  16121. }
  16122. },
  16123. back: {
  16124. height: math.unit(6, "feet"),
  16125. weight: math.unit(150, "lb"),
  16126. name: "Back",
  16127. image: {
  16128. source: "./media/characters/alluria/back.svg",
  16129. extra: 806 / 738,
  16130. }
  16131. },
  16132. frontMaid: {
  16133. height: math.unit(6, "feet"),
  16134. weight: math.unit(150, "lb"),
  16135. name: "Front (Maid)",
  16136. image: {
  16137. source: "./media/characters/alluria/front-maid.svg",
  16138. extra: 806 / 738,
  16139. bottom: 0.01
  16140. }
  16141. },
  16142. sideMaid: {
  16143. height: math.unit(6, "feet"),
  16144. weight: math.unit(150, "lb"),
  16145. name: "Side (Maid)",
  16146. image: {
  16147. source: "./media/characters/alluria/side-maid.svg",
  16148. extra: 800 / 750,
  16149. bottom: 0.005
  16150. }
  16151. },
  16152. backMaid: {
  16153. height: math.unit(6, "feet"),
  16154. weight: math.unit(150, "lb"),
  16155. name: "Back (Maid)",
  16156. image: {
  16157. source: "./media/characters/alluria/back-maid.svg",
  16158. extra: 806 / 738,
  16159. }
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Micro",
  16165. height: math.unit(6, "inches"),
  16166. default: true
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(6, "feet"),
  16175. weight: math.unit(150, "lb"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/kyle/front.svg",
  16179. extra: 1069 / 962,
  16180. bottom: 77.228 / 1727.45
  16181. }
  16182. },
  16183. },
  16184. [
  16185. {
  16186. name: "Macro",
  16187. height: math.unit(150, "feet"),
  16188. default: true
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(6, "feet"),
  16197. weight: math.unit(300, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/duncan/front.svg",
  16201. extra: 1650 / 1482,
  16202. bottom: 0.05
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Macro",
  16209. height: math.unit(100, "feet"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(5 + 4 / 12, "feet"),
  16219. weight: math.unit(220, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/memory/front.svg",
  16223. extra: 3641 / 3545,
  16224. bottom: 0.03
  16225. }
  16226. },
  16227. back: {
  16228. height: math.unit(5 + 4 / 12, "feet"),
  16229. weight: math.unit(220, "lb"),
  16230. name: "Back",
  16231. image: {
  16232. source: "./media/characters/memory/back.svg",
  16233. extra: 3641 / 3545,
  16234. bottom: 0.025
  16235. }
  16236. },
  16237. frontSkirt: {
  16238. height: math.unit(5 + 4 / 12, "feet"),
  16239. weight: math.unit(220, "lb"),
  16240. name: "Front (Skirt)",
  16241. image: {
  16242. source: "./media/characters/memory/front-skirt.svg",
  16243. extra: 3641 / 3545,
  16244. bottom: 0.03
  16245. }
  16246. },
  16247. frontDress: {
  16248. height: math.unit(5 + 4 / 12, "feet"),
  16249. weight: math.unit(220, "lb"),
  16250. name: "Front (Dress)",
  16251. image: {
  16252. source: "./media/characters/memory/front-dress.svg",
  16253. extra: 3641 / 3545,
  16254. bottom: 0.03
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Micro",
  16261. height: math.unit(6, "inches"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Normal",
  16266. height: math.unit(5 + 4 / 12, "feet")
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(4 + 11 / 12, "feet"),
  16275. weight: math.unit(100, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/luno/front.svg",
  16279. extra: 1535 / 1487,
  16280. bottom: 0.03
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Micro",
  16287. height: math.unit(3, "inches")
  16288. },
  16289. {
  16290. name: "Normal",
  16291. height: math.unit(4 + 11 / 12, "feet"),
  16292. default: true
  16293. },
  16294. {
  16295. name: "Macro",
  16296. height: math.unit(300, "feet")
  16297. },
  16298. {
  16299. name: "Megamacro",
  16300. height: math.unit(700, "miles")
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(6 + 2 / 12, "feet"),
  16309. weight: math.unit(170, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/jamesy/front.svg",
  16313. extra: 440 / 382,
  16314. bottom: 0.005
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Micro",
  16321. height: math.unit(3, "inches")
  16322. },
  16323. {
  16324. name: "Normal",
  16325. height: math.unit(6 + 2 / 12, "feet"),
  16326. default: true
  16327. },
  16328. {
  16329. name: "Macro",
  16330. height: math.unit(300, "feet")
  16331. },
  16332. {
  16333. name: "Megamacro",
  16334. height: math.unit(700, "miles")
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(6, "feet"),
  16343. weight: math.unit(160, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/mark/front.svg",
  16347. extra: 3300 / 3100,
  16348. bottom: 136.42 / 3440.47
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Macro",
  16355. height: math.unit(120, "meters")
  16356. },
  16357. {
  16358. name: "Bigger Macro",
  16359. height: math.unit(350, "meters")
  16360. },
  16361. {
  16362. name: "Megamacro",
  16363. height: math.unit(8, "km"),
  16364. default: true
  16365. },
  16366. {
  16367. name: "Continental",
  16368. height: math.unit(4550, "km")
  16369. },
  16370. {
  16371. name: "Planetary",
  16372. height: math.unit(65000, "km")
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16378. {
  16379. front: {
  16380. height: math.unit(6, "feet"),
  16381. weight: math.unit(400, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/mac/front.svg",
  16385. extra: 1048 / 987.7,
  16386. bottom: 60 / 1107.6,
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Macro",
  16393. height: math.unit(500, "feet"),
  16394. default: true
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16400. {
  16401. front: {
  16402. height: math.unit(5 + 2 / 12, "feet"),
  16403. weight: math.unit(190, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/bari/front.svg",
  16407. extra: 3156 / 2880,
  16408. bottom: 0.03
  16409. }
  16410. },
  16411. back: {
  16412. height: math.unit(5 + 2 / 12, "feet"),
  16413. weight: math.unit(190, "lb"),
  16414. name: "Back",
  16415. image: {
  16416. source: "./media/characters/bari/back.svg",
  16417. extra: 3260 / 2834,
  16418. bottom: 0.025
  16419. }
  16420. },
  16421. frontPlush: {
  16422. height: math.unit(5 + 2 / 12, "feet"),
  16423. weight: math.unit(190, "lb"),
  16424. name: "Front (Plush)",
  16425. image: {
  16426. source: "./media/characters/bari/front-plush.svg",
  16427. extra: 1112 / 1061,
  16428. bottom: 0.002
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Micro",
  16435. height: math.unit(3, "inches")
  16436. },
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(5 + 2 / 12, "feet"),
  16440. default: true
  16441. },
  16442. {
  16443. name: "Macro",
  16444. height: math.unit(20, "feet")
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(6 + 1 / 12, "feet"),
  16453. weight: math.unit(275, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/hunter-misha-raven/front.svg"
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Mortal",
  16463. height: math.unit(6 + 1 / 12, "feet")
  16464. },
  16465. {
  16466. name: "Divine",
  16467. height: math.unit(1.12134e34, "parsecs"),
  16468. default: true
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16474. {
  16475. front: {
  16476. height: math.unit(6 + 3 / 12, "feet"),
  16477. weight: math.unit(220, "lb"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/max-calore/front.svg",
  16481. extra: 1700 / 1648,
  16482. bottom: 0.01
  16483. }
  16484. },
  16485. back: {
  16486. height: math.unit(6 + 3 / 12, "feet"),
  16487. weight: math.unit(220, "lb"),
  16488. name: "Back",
  16489. image: {
  16490. source: "./media/characters/max-calore/back.svg",
  16491. extra: 1700 / 1648,
  16492. bottom: 0.01
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(6 + 3 / 12, "feet"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16506. {
  16507. side: {
  16508. height: math.unit(2 + 8 / 12, "feet"),
  16509. weight: math.unit(99, "lb"),
  16510. name: "Side",
  16511. image: {
  16512. source: "./media/characters/aspen/side.svg",
  16513. extra: 152 / 138,
  16514. bottom: 0.032
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(2 + 8 / 12, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16528. {
  16529. side: {
  16530. height: math.unit(3 + 2 / 12, "feet"),
  16531. weight: math.unit(224, "lb"),
  16532. name: "Side",
  16533. image: {
  16534. source: "./media/characters/sheila-feral-wolf/side.svg",
  16535. extra: 179 / 166,
  16536. bottom: 0.03
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(3 + 2 / 12, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16550. {
  16551. side: {
  16552. height: math.unit(1 + 9 / 12, "feet"),
  16553. weight: math.unit(38, "lb"),
  16554. name: "Side",
  16555. image: {
  16556. source: "./media/characters/michelle/side.svg",
  16557. extra: 147 / 136.7,
  16558. bottom: 0.03
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Normal",
  16565. height: math.unit(1 + 9 / 12, "feet"),
  16566. default: true
  16567. },
  16568. ]
  16569. ))
  16570. characterMakers.push(() => makeCharacter(
  16571. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16572. {
  16573. front: {
  16574. height: math.unit(1 + 1 / 12, "feet"),
  16575. weight: math.unit(18, "lb"),
  16576. name: "Front",
  16577. image: {
  16578. source: "./media/characters/nino/front.svg"
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(1 + 1 / 12, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16592. {
  16593. front: {
  16594. height: math.unit(1, "feet"),
  16595. weight: math.unit(16, "lb"),
  16596. name: "Front",
  16597. image: {
  16598. source: "./media/characters/viola/front.svg"
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(1, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(6 + 5 / 12, "feet"),
  16615. weight: math.unit(580, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/atlas/front.svg",
  16619. extra: 298.5 / 290,
  16620. bottom: 0.015
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(6 + 5 / 12, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16634. {
  16635. side: {
  16636. height: math.unit(1 + 10 / 12, "feet"),
  16637. weight: math.unit(25, "lb"),
  16638. name: "Side",
  16639. image: {
  16640. source: "./media/characters/davy/side.svg",
  16641. extra: 200 / 170,
  16642. bottom: 0.01
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(1 + 10 / 12, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16656. {
  16657. side: {
  16658. height: math.unit(4 + 8 / 12, "feet"),
  16659. weight: math.unit(166, "lb"),
  16660. name: "Side",
  16661. image: {
  16662. source: "./media/characters/fiona/side.svg",
  16663. extra: 232 / 220,
  16664. bottom: 0.03
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(4 + 8 / 12, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16678. {
  16679. front: {
  16680. height: math.unit(2, "feet"),
  16681. weight: math.unit(62, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/lyla/front.svg",
  16685. bottom: 0.1
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(2, "feet"),
  16693. default: true
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16699. {
  16700. side: {
  16701. height: math.unit(1.8, "feet"),
  16702. weight: math.unit(44, "lb"),
  16703. name: "Side",
  16704. image: {
  16705. source: "./media/characters/perseus/side.svg",
  16706. bottom: 0.21
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(1.8, "feet"),
  16714. default: true
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16720. {
  16721. side: {
  16722. height: math.unit(4 + 2 / 12, "feet"),
  16723. weight: math.unit(20, "lb"),
  16724. name: "Side",
  16725. image: {
  16726. source: "./media/characters/remus/side.svg"
  16727. }
  16728. },
  16729. },
  16730. [
  16731. {
  16732. name: "Normal",
  16733. height: math.unit(4 + 2 / 12, "feet"),
  16734. default: true
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16740. {
  16741. front: {
  16742. height: math.unit(4 + 11 / 12, "feet"),
  16743. weight: math.unit(114, "lb"),
  16744. name: "Front",
  16745. image: {
  16746. source: "./media/characters/raf/front.svg",
  16747. bottom: 20.5 / 1863
  16748. }
  16749. },
  16750. side: {
  16751. height: math.unit(4 + 11 / 12, "feet"),
  16752. weight: math.unit(114, "lb"),
  16753. name: "Side",
  16754. image: {
  16755. source: "./media/characters/raf/side.svg",
  16756. bottom: 22 / 1822
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Micro",
  16763. height: math.unit(2, "inches")
  16764. },
  16765. {
  16766. name: "Normal",
  16767. height: math.unit(4 + 11 / 12, "feet"),
  16768. default: true
  16769. },
  16770. {
  16771. name: "Macro",
  16772. height: math.unit(70, "feet")
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16778. {
  16779. front: {
  16780. height: math.unit(1.5, "meters"),
  16781. weight: math.unit(68, "kg"),
  16782. name: "Front",
  16783. image: {
  16784. source: "./media/characters/liam-einarr/front.svg",
  16785. extra: 2822 / 2666
  16786. }
  16787. },
  16788. back: {
  16789. height: math.unit(1.5, "meters"),
  16790. weight: math.unit(68, "kg"),
  16791. name: "Back",
  16792. image: {
  16793. source: "./media/characters/liam-einarr/back.svg",
  16794. extra: 2822 / 2666,
  16795. bottom: 0.015
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(1.5, "meters"),
  16803. default: true
  16804. },
  16805. {
  16806. name: "Macro",
  16807. height: math.unit(150, "meters")
  16808. },
  16809. {
  16810. name: "Megamacro",
  16811. height: math.unit(35, "km")
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(6, "feet"),
  16820. weight: math.unit(75, "kg"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/linda/front.svg",
  16824. extra: 930 / 874,
  16825. bottom: 0.004
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Normal",
  16832. height: math.unit(6, "feet"),
  16833. default: true
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(6 + 8 / 12, "feet"),
  16842. weight: math.unit(220, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/caylex/front.svg",
  16846. extra: 821 / 772,
  16847. bottom: 0.07
  16848. }
  16849. },
  16850. back: {
  16851. height: math.unit(6 + 8 / 12, "feet"),
  16852. weight: math.unit(220, "lb"),
  16853. name: "Back",
  16854. image: {
  16855. source: "./media/characters/caylex/back.svg",
  16856. extra: 821 / 772,
  16857. bottom: 0.022
  16858. }
  16859. },
  16860. hand: {
  16861. height: math.unit(1.25, "feet"),
  16862. name: "Hand",
  16863. image: {
  16864. source: "./media/characters/caylex/hand.svg"
  16865. }
  16866. },
  16867. foot: {
  16868. height: math.unit(1.6, "feet"),
  16869. name: "Foot",
  16870. image: {
  16871. source: "./media/characters/caylex/foot.svg"
  16872. }
  16873. },
  16874. armored: {
  16875. height: math.unit(6 + 8 / 12, "feet"),
  16876. weight: math.unit(250, "lb"),
  16877. name: "Armored",
  16878. image: {
  16879. source: "./media/characters/caylex/armored.svg",
  16880. extra: 1420 / 1310,
  16881. bottom: 0.045
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(6 + 8 / 12, "feet"),
  16889. default: true
  16890. },
  16891. {
  16892. name: "Normal+",
  16893. height: math.unit(12, "feet")
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16899. {
  16900. front: {
  16901. height: math.unit(7 + 6 / 12, "feet"),
  16902. weight: math.unit(288, "lb"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/alana/front.svg",
  16906. extra: 679 / 653,
  16907. bottom: 22.5 / 701
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(7 + 6 / 12, "feet")
  16915. },
  16916. {
  16917. name: "Large",
  16918. height: math.unit(50, "feet")
  16919. },
  16920. {
  16921. name: "Macro",
  16922. height: math.unit(100, "feet"),
  16923. default: true
  16924. },
  16925. {
  16926. name: "Macro+",
  16927. height: math.unit(200, "feet")
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16933. {
  16934. front: {
  16935. height: math.unit(6 + 1 / 12, "feet"),
  16936. weight: math.unit(210, "lb"),
  16937. name: "Front",
  16938. image: {
  16939. source: "./media/characters/hasani/front.svg",
  16940. extra: 244 / 232,
  16941. bottom: 0.01
  16942. }
  16943. },
  16944. back: {
  16945. height: math.unit(6 + 1 / 12, "feet"),
  16946. weight: math.unit(210, "lb"),
  16947. name: "Back",
  16948. image: {
  16949. source: "./media/characters/hasani/back.svg",
  16950. extra: 244 / 232,
  16951. bottom: 0.01
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(6 + 1 / 12, "feet")
  16959. },
  16960. {
  16961. name: "Macro",
  16962. height: math.unit(175, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16969. {
  16970. front: {
  16971. height: math.unit(1.82, "meters"),
  16972. weight: math.unit(140, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/nita/front.svg",
  16976. extra: 2473 / 2363,
  16977. bottom: 0.01
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(1.82, "m")
  16985. },
  16986. {
  16987. name: "Macro",
  16988. height: math.unit(300, "m")
  16989. },
  16990. {
  16991. name: "Mistake Canon",
  16992. height: math.unit(0.5, "miles"),
  16993. default: true
  16994. },
  16995. {
  16996. name: "Big Mistake",
  16997. height: math.unit(13, "miles")
  16998. },
  16999. {
  17000. name: "Playing God",
  17001. height: math.unit(2450, "miles")
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17007. {
  17008. front: {
  17009. height: math.unit(4, "feet"),
  17010. weight: math.unit(120, "lb"),
  17011. name: "Front",
  17012. image: {
  17013. source: "./media/characters/shiriko/front.svg",
  17014. extra: 195 / 188
  17015. }
  17016. },
  17017. },
  17018. [
  17019. {
  17020. name: "Normal",
  17021. height: math.unit(4, "feet"),
  17022. default: true
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17028. {
  17029. front: {
  17030. height: math.unit(6, "feet"),
  17031. name: "front",
  17032. image: {
  17033. source: "./media/characters/deja/front.svg",
  17034. extra: 926 / 840,
  17035. bottom: 0.07
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Planck Length",
  17042. height: math.unit(1.6e-35, "meters")
  17043. },
  17044. {
  17045. name: "Normal",
  17046. height: math.unit(30.48, "meters"),
  17047. default: true
  17048. },
  17049. {
  17050. name: "Universal",
  17051. height: math.unit(8.8e26, "meters")
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17057. {
  17058. side: {
  17059. height: math.unit(8, "feet"),
  17060. weight: math.unit(6300, "lb"),
  17061. name: "Side",
  17062. image: {
  17063. source: "./media/characters/anima/side.svg",
  17064. bottom: 0.035
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Normal",
  17071. height: math.unit(8, "feet"),
  17072. default: true
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17078. {
  17079. front: {
  17080. height: math.unit(8, "feet"),
  17081. weight: math.unit(350, "lb"),
  17082. name: "Front",
  17083. image: {
  17084. source: "./media/characters/bianca/front.svg",
  17085. extra: 234 / 225,
  17086. bottom: 0.03
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(8, "feet"),
  17094. default: true
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(6, "feet"),
  17103. weight: math.unit(150, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/adinia/front.svg",
  17107. extra: 1845 / 1672,
  17108. bottom: 0.02
  17109. }
  17110. },
  17111. back: {
  17112. height: math.unit(6, "feet"),
  17113. weight: math.unit(150, "lb"),
  17114. name: "Back",
  17115. image: {
  17116. source: "./media/characters/adinia/back.svg",
  17117. extra: 1845 / 1672,
  17118. bottom: 0.002
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(11 + 5 / 12, "feet"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(3, "meters"),
  17135. weight: math.unit(200, "kg"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/lykasa/front.svg",
  17139. extra: 1076 / 976,
  17140. bottom: 0.06
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(3, "meters")
  17148. },
  17149. {
  17150. name: "Kaiju",
  17151. height: math.unit(120, "meters"),
  17152. default: true
  17153. },
  17154. {
  17155. name: "Mega Kaiju",
  17156. height: math.unit(240, "km")
  17157. },
  17158. {
  17159. name: "Giga Kaiju",
  17160. height: math.unit(400, "megameters")
  17161. },
  17162. {
  17163. name: "Tera Kaiju",
  17164. height: math.unit(800, "gigameters")
  17165. },
  17166. {
  17167. name: "Kaiju Dragon Goddess",
  17168. height: math.unit(26, "zettaparsecs")
  17169. },
  17170. ]
  17171. ))
  17172. characterMakers.push(() => makeCharacter(
  17173. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17174. {
  17175. side: {
  17176. height: math.unit(283 / 124 * 6, "feet"),
  17177. weight: math.unit(35000, "lb"),
  17178. name: "Side",
  17179. image: {
  17180. source: "./media/characters/malfaren/side.svg",
  17181. extra: 2500 / 1010,
  17182. bottom: 0.01
  17183. }
  17184. },
  17185. front: {
  17186. height: math.unit(22.36, "feet"),
  17187. weight: math.unit(35000, "lb"),
  17188. name: "Front",
  17189. image: {
  17190. source: "./media/characters/malfaren/front.svg",
  17191. extra: 1631 / 1476,
  17192. bottom: 0.01
  17193. }
  17194. },
  17195. maw: {
  17196. height: math.unit(6.9, "feet"),
  17197. name: "Maw",
  17198. image: {
  17199. source: "./media/characters/malfaren/maw.svg"
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Big",
  17206. height: math.unit(283 / 162 * 6, "feet"),
  17207. },
  17208. {
  17209. name: "Bigger",
  17210. height: math.unit(283 / 124 * 6, "feet")
  17211. },
  17212. {
  17213. name: "Massive",
  17214. height: math.unit(283 / 92 * 6, "feet"),
  17215. default: true
  17216. },
  17217. {
  17218. name: "👀💦",
  17219. height: math.unit(283 / 73 * 6, "feet"),
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(1.7, "m"),
  17228. weight: math.unit(70, "kg"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/kernel/front.svg",
  17232. extra: 222 / 210,
  17233. bottom: 0.007
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Nano",
  17240. height: math.unit(17, "micrometers")
  17241. },
  17242. {
  17243. name: "Micro",
  17244. height: math.unit(1.7, "mm")
  17245. },
  17246. {
  17247. name: "Small",
  17248. height: math.unit(1.7, "cm")
  17249. },
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(1.7, "m"),
  17253. default: true
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(1.75, "meters"),
  17262. weight: math.unit(65, "kg"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/jayne-folest/front.svg",
  17266. extra: 2115 / 2007,
  17267. bottom: 0.02
  17268. }
  17269. },
  17270. back: {
  17271. height: math.unit(1.75, "meters"),
  17272. weight: math.unit(65, "kg"),
  17273. name: "Back",
  17274. image: {
  17275. source: "./media/characters/jayne-folest/back.svg",
  17276. extra: 2115 / 2007,
  17277. bottom: 0.005
  17278. }
  17279. },
  17280. frontClothed: {
  17281. height: math.unit(1.75, "meters"),
  17282. weight: math.unit(65, "kg"),
  17283. name: "Front (Clothed)",
  17284. image: {
  17285. source: "./media/characters/jayne-folest/front-clothed.svg",
  17286. extra: 2115 / 2007,
  17287. bottom: 0.035
  17288. }
  17289. },
  17290. hand: {
  17291. height: math.unit(1 / 1.260, "feet"),
  17292. name: "Hand",
  17293. image: {
  17294. source: "./media/characters/jayne-folest/hand.svg"
  17295. }
  17296. },
  17297. foot: {
  17298. height: math.unit(1 / 0.918, "feet"),
  17299. name: "Foot",
  17300. image: {
  17301. source: "./media/characters/jayne-folest/foot.svg"
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Micro",
  17308. height: math.unit(4, "cm")
  17309. },
  17310. {
  17311. name: "Normal",
  17312. height: math.unit(1.75, "meters")
  17313. },
  17314. {
  17315. name: "Macro",
  17316. height: math.unit(47.5, "meters"),
  17317. default: true
  17318. },
  17319. ]
  17320. ))
  17321. characterMakers.push(() => makeCharacter(
  17322. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17323. {
  17324. front: {
  17325. height: math.unit(180, "cm"),
  17326. weight: math.unit(70, "kg"),
  17327. name: "Front",
  17328. image: {
  17329. source: "./media/characters/algier/front.svg",
  17330. extra: 596 / 572,
  17331. bottom: 0.04
  17332. }
  17333. },
  17334. back: {
  17335. height: math.unit(180, "cm"),
  17336. weight: math.unit(70, "kg"),
  17337. name: "Back",
  17338. image: {
  17339. source: "./media/characters/algier/back.svg",
  17340. extra: 596 / 572,
  17341. bottom: 0.025
  17342. }
  17343. },
  17344. frontdressed: {
  17345. height: math.unit(180, "cm"),
  17346. weight: math.unit(150, "kg"),
  17347. name: "Front-dressed",
  17348. image: {
  17349. source: "./media/characters/algier/front-dressed.svg",
  17350. extra: 596 / 572,
  17351. bottom: 0.038
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Micro",
  17358. height: math.unit(5, "cm")
  17359. },
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(180, "cm"),
  17363. default: true
  17364. },
  17365. {
  17366. name: "Macro",
  17367. height: math.unit(64, "m")
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17373. {
  17374. upright: {
  17375. height: math.unit(7, "feet"),
  17376. weight: math.unit(300, "lb"),
  17377. name: "Upright",
  17378. image: {
  17379. source: "./media/characters/pretzel/upright.svg",
  17380. extra: 534 / 522,
  17381. bottom: 0.065
  17382. }
  17383. },
  17384. sprawling: {
  17385. height: math.unit(3.75, "feet"),
  17386. weight: math.unit(300, "lb"),
  17387. name: "Sprawling",
  17388. image: {
  17389. source: "./media/characters/pretzel/sprawling.svg",
  17390. extra: 314 / 281,
  17391. bottom: 0.1
  17392. }
  17393. },
  17394. tongue: {
  17395. height: math.unit(2, "feet"),
  17396. name: "Tongue",
  17397. image: {
  17398. source: "./media/characters/pretzel/tongue.svg"
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(7, "feet"),
  17406. default: true
  17407. },
  17408. {
  17409. name: "Oversized",
  17410. height: math.unit(15, "feet")
  17411. },
  17412. {
  17413. name: "Huge",
  17414. height: math.unit(30, "feet")
  17415. },
  17416. {
  17417. name: "Macro",
  17418. height: math.unit(250, "feet")
  17419. },
  17420. ]
  17421. ))
  17422. characterMakers.push(() => makeCharacter(
  17423. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17424. {
  17425. sideFront: {
  17426. height: math.unit(5 + 2 / 12, "feet"),
  17427. weight: math.unit(120, "lb"),
  17428. name: "Front Side",
  17429. image: {
  17430. source: "./media/characters/roxi/side-front.svg",
  17431. extra: 2924 / 2717,
  17432. bottom: 0.08
  17433. }
  17434. },
  17435. sideBack: {
  17436. height: math.unit(5 + 2 / 12, "feet"),
  17437. weight: math.unit(120, "lb"),
  17438. name: "Back Side",
  17439. image: {
  17440. source: "./media/characters/roxi/side-back.svg",
  17441. extra: 2904 / 2693,
  17442. bottom: 0.06
  17443. }
  17444. },
  17445. front: {
  17446. height: math.unit(5 + 2 / 12, "feet"),
  17447. weight: math.unit(120, "lb"),
  17448. name: "Front",
  17449. image: {
  17450. source: "./media/characters/roxi/front.svg",
  17451. extra: 2028 / 1907,
  17452. bottom: 0.01
  17453. }
  17454. },
  17455. frontAlt: {
  17456. height: math.unit(5 + 2 / 12, "feet"),
  17457. weight: math.unit(120, "lb"),
  17458. name: "Front (Alt)",
  17459. image: {
  17460. source: "./media/characters/roxi/front-alt.svg",
  17461. extra: 1828 / 1798,
  17462. bottom: 0.01
  17463. }
  17464. },
  17465. sitting: {
  17466. height: math.unit(2.8, "feet"),
  17467. weight: math.unit(120, "lb"),
  17468. name: "Sitting",
  17469. image: {
  17470. source: "./media/characters/roxi/sitting.svg",
  17471. extra: 2660 / 2462,
  17472. bottom: 0.1
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Normal",
  17479. height: math.unit(5 + 2 / 12, "feet"),
  17480. default: true
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17486. {
  17487. side: {
  17488. height: math.unit(55, "feet"),
  17489. weight: math.unit(153, "tons"),
  17490. name: "Side",
  17491. image: {
  17492. source: "./media/characters/shadow/side.svg",
  17493. extra: 701 / 628,
  17494. bottom: 0.02
  17495. }
  17496. },
  17497. flying: {
  17498. height: math.unit(145, "feet"),
  17499. weight: math.unit(153, "tons"),
  17500. name: "Flying",
  17501. image: {
  17502. source: "./media/characters/shadow/flying.svg"
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(55, "feet"),
  17510. default: true
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(6, "feet"),
  17519. weight: math.unit(200, "lb"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/marcie/front.svg",
  17523. extra: 960 / 876,
  17524. bottom: 58 / 1017.87
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Macro",
  17531. height: math.unit(1, "mile"),
  17532. default: true
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(7, "feet"),
  17541. weight: math.unit(200, "lb"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/kachina/front.svg",
  17545. extra: 1290.68 / 1119,
  17546. bottom: 36.5 / 1327.18
  17547. }
  17548. },
  17549. },
  17550. [
  17551. {
  17552. name: "Normal",
  17553. height: math.unit(7, "feet"),
  17554. default: true
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17560. {
  17561. looking: {
  17562. height: math.unit(2, "meters"),
  17563. weight: math.unit(300, "kg"),
  17564. name: "Looking",
  17565. image: {
  17566. source: "./media/characters/kash/looking.svg",
  17567. extra: 474 / 344,
  17568. bottom: 0.03
  17569. }
  17570. },
  17571. side: {
  17572. height: math.unit(2, "meters"),
  17573. weight: math.unit(300, "kg"),
  17574. name: "Side",
  17575. image: {
  17576. source: "./media/characters/kash/side.svg",
  17577. extra: 302 / 251,
  17578. bottom: 0.03
  17579. }
  17580. },
  17581. front: {
  17582. height: math.unit(2, "meters"),
  17583. weight: math.unit(300, "kg"),
  17584. name: "Front",
  17585. image: {
  17586. source: "./media/characters/kash/front.svg",
  17587. extra: 495 / 360,
  17588. bottom: 0.015
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Normal",
  17595. height: math.unit(2, "meters"),
  17596. default: true
  17597. },
  17598. {
  17599. name: "Big",
  17600. height: math.unit(3, "meters")
  17601. },
  17602. {
  17603. name: "Large",
  17604. height: math.unit(5, "meters")
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17610. {
  17611. feeding: {
  17612. height: math.unit(6.7, "feet"),
  17613. weight: math.unit(350, "lb"),
  17614. name: "Feeding",
  17615. image: {
  17616. source: "./media/characters/lalim/feeding.svg",
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Normal",
  17623. height: math.unit(6.7, "feet"),
  17624. default: true
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17630. {
  17631. front: {
  17632. height: math.unit(9.5, "feet"),
  17633. weight: math.unit(600, "lb"),
  17634. name: "Front",
  17635. image: {
  17636. source: "./media/characters/de'vout/front.svg",
  17637. extra: 1443 / 1328,
  17638. bottom: 0.025
  17639. }
  17640. },
  17641. back: {
  17642. height: math.unit(9.5, "feet"),
  17643. weight: math.unit(600, "lb"),
  17644. name: "Back",
  17645. image: {
  17646. source: "./media/characters/de'vout/back.svg",
  17647. extra: 1443 / 1328
  17648. }
  17649. },
  17650. frontDressed: {
  17651. height: math.unit(9.5, "feet"),
  17652. weight: math.unit(600, "lb"),
  17653. name: "Front (Dressed",
  17654. image: {
  17655. source: "./media/characters/de'vout/front-dressed.svg",
  17656. extra: 1443 / 1328,
  17657. bottom: 0.025
  17658. }
  17659. },
  17660. backDressed: {
  17661. height: math.unit(9.5, "feet"),
  17662. weight: math.unit(600, "lb"),
  17663. name: "Back (Dressed",
  17664. image: {
  17665. source: "./media/characters/de'vout/back-dressed.svg",
  17666. extra: 1443 / 1328
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Normal",
  17673. height: math.unit(9.5, "feet"),
  17674. default: true
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17680. {
  17681. front: {
  17682. height: math.unit(8, "feet"),
  17683. weight: math.unit(225, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/talana/front.svg",
  17687. extra: 1410 / 1300,
  17688. bottom: 0.015
  17689. }
  17690. },
  17691. frontDressed: {
  17692. height: math.unit(8, "feet"),
  17693. weight: math.unit(225, "lb"),
  17694. name: "Front (Dressed",
  17695. image: {
  17696. source: "./media/characters/talana/front-dressed.svg",
  17697. extra: 1410 / 1300,
  17698. bottom: 0.015
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(8, "feet"),
  17706. default: true
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17712. {
  17713. side: {
  17714. height: math.unit(7.2, "feet"),
  17715. weight: math.unit(150, "lb"),
  17716. name: "Side",
  17717. image: {
  17718. source: "./media/characters/xeauvok/side.svg",
  17719. extra: 1975 / 1523,
  17720. bottom: 0.07
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Normal",
  17727. height: math.unit(7.2, "feet"),
  17728. default: true
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17734. {
  17735. side: {
  17736. height: math.unit(10, "feet"),
  17737. weight: math.unit(900, "kg"),
  17738. name: "Side",
  17739. image: {
  17740. source: "./media/characters/zara/side.svg",
  17741. extra: 504 / 498
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(10, "feet"),
  17749. default: true
  17750. },
  17751. ]
  17752. ))
  17753. characterMakers.push(() => makeCharacter(
  17754. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17755. {
  17756. side: {
  17757. height: math.unit(6, "feet"),
  17758. weight: math.unit(150, "lb"),
  17759. name: "Side",
  17760. image: {
  17761. source: "./media/characters/richard-dragon/side.svg",
  17762. extra: 845 / 340,
  17763. bottom: 0.017
  17764. }
  17765. },
  17766. maw: {
  17767. height: math.unit(2.97, "feet"),
  17768. name: "Maw",
  17769. image: {
  17770. source: "./media/characters/richard-dragon/maw.svg"
  17771. }
  17772. },
  17773. },
  17774. [
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(4, "feet"),
  17782. weight: math.unit(100, "lb"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/richard-smeargle/front.svg",
  17786. extra: 2952 / 2820,
  17787. bottom: 0.028
  17788. }
  17789. },
  17790. },
  17791. [
  17792. {
  17793. name: "Normal",
  17794. height: math.unit(4, "feet"),
  17795. default: true
  17796. },
  17797. {
  17798. name: "Dynamax",
  17799. height: math.unit(20, "meters")
  17800. },
  17801. ]
  17802. ))
  17803. characterMakers.push(() => makeCharacter(
  17804. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17805. {
  17806. front: {
  17807. height: math.unit(6, "feet"),
  17808. weight: math.unit(110, "lb"),
  17809. name: "Front",
  17810. image: {
  17811. source: "./media/characters/klay/front.svg",
  17812. extra: 962 / 883,
  17813. bottom: 0.04
  17814. }
  17815. },
  17816. back: {
  17817. height: math.unit(6, "feet"),
  17818. weight: math.unit(110, "lb"),
  17819. name: "Back",
  17820. image: {
  17821. source: "./media/characters/klay/back.svg",
  17822. extra: 962 / 883
  17823. }
  17824. },
  17825. beans: {
  17826. height: math.unit(1.15, "feet"),
  17827. name: "Beans",
  17828. image: {
  17829. source: "./media/characters/klay/beans.svg"
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Micro",
  17836. height: math.unit(6, "inches")
  17837. },
  17838. {
  17839. name: "Mini",
  17840. height: math.unit(3, "feet")
  17841. },
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(6, "feet"),
  17845. default: true
  17846. },
  17847. {
  17848. name: "Big",
  17849. height: math.unit(25, "feet")
  17850. },
  17851. {
  17852. name: "Macro",
  17853. height: math.unit(100, "feet")
  17854. },
  17855. {
  17856. name: "Megamacro",
  17857. height: math.unit(400, "feet")
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(6, "feet"),
  17866. weight: math.unit(160, "lb"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/marcus/front.svg",
  17870. extra: 734 / 676,
  17871. bottom: 0.03
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Little",
  17878. height: math.unit(6, "feet")
  17879. },
  17880. {
  17881. name: "Normal",
  17882. height: math.unit(110, "feet"),
  17883. default: true
  17884. },
  17885. {
  17886. name: "Macro",
  17887. height: math.unit(250, "feet")
  17888. },
  17889. {
  17890. name: "Megamacro",
  17891. height: math.unit(1000, "feet")
  17892. },
  17893. ]
  17894. ))
  17895. characterMakers.push(() => makeCharacter(
  17896. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17897. {
  17898. front: {
  17899. height: math.unit(7, "feet"),
  17900. weight: math.unit(275, "lb"),
  17901. name: "Front",
  17902. image: {
  17903. source: "./media/characters/claude-delroute/front.svg",
  17904. extra: 230 / 214,
  17905. bottom: 0.007
  17906. }
  17907. },
  17908. side: {
  17909. height: math.unit(7, "feet"),
  17910. weight: math.unit(275, "lb"),
  17911. name: "Side",
  17912. image: {
  17913. source: "./media/characters/claude-delroute/side.svg",
  17914. extra: 222 / 214,
  17915. bottom: 0.01
  17916. }
  17917. },
  17918. back: {
  17919. height: math.unit(7, "feet"),
  17920. weight: math.unit(275, "lb"),
  17921. name: "Back",
  17922. image: {
  17923. source: "./media/characters/claude-delroute/back.svg",
  17924. extra: 230 / 214,
  17925. bottom: 0.015
  17926. }
  17927. },
  17928. maw: {
  17929. height: math.unit(0.6407, "meters"),
  17930. name: "Maw",
  17931. image: {
  17932. source: "./media/characters/claude-delroute/maw.svg"
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Normal",
  17939. height: math.unit(7, "feet"),
  17940. default: true
  17941. },
  17942. {
  17943. name: "Lorge",
  17944. height: math.unit(20, "feet")
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17950. {
  17951. front: {
  17952. height: math.unit(8 + 4 / 12, "feet"),
  17953. weight: math.unit(600, "lb"),
  17954. name: "Front",
  17955. image: {
  17956. source: "./media/characters/dragonien/front.svg",
  17957. extra: 100 / 94,
  17958. bottom: 3.3 / 103.3445
  17959. }
  17960. },
  17961. back: {
  17962. height: math.unit(8 + 4 / 12, "feet"),
  17963. weight: math.unit(600, "lb"),
  17964. name: "Back",
  17965. image: {
  17966. source: "./media/characters/dragonien/back.svg",
  17967. extra: 776 / 746,
  17968. bottom: 6.4 / 782.0616
  17969. }
  17970. },
  17971. foot: {
  17972. height: math.unit(1.54, "feet"),
  17973. name: "Foot",
  17974. image: {
  17975. source: "./media/characters/dragonien/foot.svg",
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(8 + 4 / 12, "feet"),
  17983. default: true
  17984. },
  17985. {
  17986. name: "Macro",
  17987. height: math.unit(200, "feet")
  17988. },
  17989. {
  17990. name: "Megamacro",
  17991. height: math.unit(1, "mile")
  17992. },
  17993. {
  17994. name: "Gigamacro",
  17995. height: math.unit(1000, "miles")
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18001. {
  18002. front: {
  18003. height: math.unit(5 + 2 / 12, "feet"),
  18004. weight: math.unit(110, "lb"),
  18005. name: "Front",
  18006. image: {
  18007. source: "./media/characters/desta/front.svg",
  18008. extra: 767 / 726,
  18009. bottom: 11.7 / 779
  18010. }
  18011. },
  18012. back: {
  18013. height: math.unit(5 + 2 / 12, "feet"),
  18014. weight: math.unit(110, "lb"),
  18015. name: "Back",
  18016. image: {
  18017. source: "./media/characters/desta/back.svg",
  18018. extra: 777 / 728,
  18019. bottom: 6 / 784
  18020. }
  18021. },
  18022. frontAlt: {
  18023. height: math.unit(5 + 2 / 12, "feet"),
  18024. weight: math.unit(110, "lb"),
  18025. name: "Front",
  18026. image: {
  18027. source: "./media/characters/desta/front-alt.svg",
  18028. extra: 1482 / 1417
  18029. }
  18030. },
  18031. side: {
  18032. height: math.unit(5 + 2 / 12, "feet"),
  18033. weight: math.unit(110, "lb"),
  18034. name: "Side",
  18035. image: {
  18036. source: "./media/characters/desta/side.svg",
  18037. extra: 2579 / 2491,
  18038. bottom: 0.053
  18039. }
  18040. },
  18041. },
  18042. [
  18043. {
  18044. name: "Micro",
  18045. height: math.unit(6, "inches")
  18046. },
  18047. {
  18048. name: "Normal",
  18049. height: math.unit(5 + 2 / 12, "feet"),
  18050. default: true
  18051. },
  18052. {
  18053. name: "Macro",
  18054. height: math.unit(62, "feet")
  18055. },
  18056. {
  18057. name: "Megamacro",
  18058. height: math.unit(1800, "feet")
  18059. },
  18060. ]
  18061. ))
  18062. characterMakers.push(() => makeCharacter(
  18063. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18064. {
  18065. front: {
  18066. height: math.unit(10, "feet"),
  18067. weight: math.unit(700, "lb"),
  18068. name: "Front",
  18069. image: {
  18070. source: "./media/characters/storm-alystar/front.svg",
  18071. extra: 2112 / 1898,
  18072. bottom: 0.034
  18073. }
  18074. },
  18075. },
  18076. [
  18077. {
  18078. name: "Micro",
  18079. height: math.unit(3.5, "inches")
  18080. },
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(10, "feet"),
  18084. default: true
  18085. },
  18086. {
  18087. name: "Macro",
  18088. height: math.unit(400, "feet")
  18089. },
  18090. {
  18091. name: "Deific",
  18092. height: math.unit(60, "miles")
  18093. },
  18094. ]
  18095. ))
  18096. characterMakers.push(() => makeCharacter(
  18097. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18098. {
  18099. front: {
  18100. height: math.unit(2.35, "meters"),
  18101. weight: math.unit(119, "kg"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/ilia/front.svg",
  18105. extra: 1285 / 1255,
  18106. bottom: 0.06
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(2.35, "meters")
  18114. },
  18115. {
  18116. name: "Macro",
  18117. height: math.unit(140, "meters"),
  18118. default: true
  18119. },
  18120. {
  18121. name: "Megamacro",
  18122. height: math.unit(100, "miles")
  18123. },
  18124. ]
  18125. ))
  18126. characterMakers.push(() => makeCharacter(
  18127. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18128. {
  18129. front: {
  18130. height: math.unit(6 + 5 / 12, "feet"),
  18131. weight: math.unit(190, "lb"),
  18132. name: "Front",
  18133. image: {
  18134. source: "./media/characters/kingdead/front.svg",
  18135. extra: 1228 / 1177
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Micro",
  18142. height: math.unit(7, "inches")
  18143. },
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(6 + 5 / 12, "feet")
  18147. },
  18148. {
  18149. name: "Macro",
  18150. height: math.unit(150, "feet"),
  18151. default: true
  18152. },
  18153. {
  18154. name: "Megamacro",
  18155. height: math.unit(200, "miles")
  18156. },
  18157. ]
  18158. ))
  18159. characterMakers.push(() => makeCharacter(
  18160. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18161. {
  18162. front: {
  18163. height: math.unit(8, "feet"),
  18164. weight: math.unit(600, "lb"),
  18165. name: "Front",
  18166. image: {
  18167. source: "./media/characters/kyrehx/front.svg",
  18168. extra: 1195 / 1095,
  18169. bottom: 0.034
  18170. }
  18171. },
  18172. },
  18173. [
  18174. {
  18175. name: "Micro",
  18176. height: math.unit(2, "inches")
  18177. },
  18178. {
  18179. name: "Normal",
  18180. height: math.unit(8, "feet"),
  18181. default: true
  18182. },
  18183. {
  18184. name: "Macro",
  18185. height: math.unit(255, "feet")
  18186. },
  18187. ]
  18188. ))
  18189. characterMakers.push(() => makeCharacter(
  18190. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18191. {
  18192. front: {
  18193. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18194. weight: math.unit(184, "lb"),
  18195. name: "Front",
  18196. image: {
  18197. source: "./media/characters/xang/front.svg",
  18198. extra: 845 / 755
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Normal",
  18205. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18206. default: true
  18207. },
  18208. {
  18209. name: "Macro",
  18210. height: math.unit(0.935 * 146, "feet")
  18211. },
  18212. {
  18213. name: "Megamacro",
  18214. height: math.unit(0.935 * 3, "miles")
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18220. {
  18221. frontDressed: {
  18222. height: math.unit(5 + 7 / 12, "feet"),
  18223. weight: math.unit(140, "lb"),
  18224. name: "Front (Dressed)",
  18225. image: {
  18226. source: "./media/characters/doc-weardno/front-dressed.svg",
  18227. extra: 263 / 234
  18228. }
  18229. },
  18230. backDressed: {
  18231. height: math.unit(5 + 7 / 12, "feet"),
  18232. weight: math.unit(140, "lb"),
  18233. name: "Back (Dressed)",
  18234. image: {
  18235. source: "./media/characters/doc-weardno/back-dressed.svg",
  18236. extra: 266 / 238
  18237. }
  18238. },
  18239. front: {
  18240. height: math.unit(5 + 7 / 12, "feet"),
  18241. weight: math.unit(140, "lb"),
  18242. name: "Front",
  18243. image: {
  18244. source: "./media/characters/doc-weardno/front.svg",
  18245. extra: 254 / 233
  18246. }
  18247. },
  18248. },
  18249. [
  18250. {
  18251. name: "Micro",
  18252. height: math.unit(3, "inches")
  18253. },
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(5 + 7 / 12, "feet"),
  18257. default: true
  18258. },
  18259. {
  18260. name: "Macro",
  18261. height: math.unit(25, "feet")
  18262. },
  18263. {
  18264. name: "Megamacro",
  18265. height: math.unit(2, "miles")
  18266. },
  18267. ]
  18268. ))
  18269. characterMakers.push(() => makeCharacter(
  18270. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18271. {
  18272. front: {
  18273. height: math.unit(6 + 2 / 12, "feet"),
  18274. weight: math.unit(153, "lb"),
  18275. name: "Front",
  18276. image: {
  18277. source: "./media/characters/seth-whilst/front.svg",
  18278. bottom: 0.07
  18279. }
  18280. },
  18281. },
  18282. [
  18283. {
  18284. name: "Micro",
  18285. height: math.unit(5, "inches")
  18286. },
  18287. {
  18288. name: "Normal",
  18289. height: math.unit(6 + 2 / 12, "feet"),
  18290. default: true
  18291. },
  18292. ]
  18293. ))
  18294. characterMakers.push(() => makeCharacter(
  18295. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18296. {
  18297. front: {
  18298. height: math.unit(3, "inches"),
  18299. weight: math.unit(8, "grams"),
  18300. name: "Front",
  18301. image: {
  18302. source: "./media/characters/pocket-jabari/front.svg",
  18303. extra: 1024 / 974,
  18304. bottom: 0.039
  18305. }
  18306. },
  18307. },
  18308. [
  18309. {
  18310. name: "Minimicro",
  18311. height: math.unit(8, "mm")
  18312. },
  18313. {
  18314. name: "Micro",
  18315. height: math.unit(3, "inches"),
  18316. default: true
  18317. },
  18318. {
  18319. name: "Normal",
  18320. height: math.unit(3, "feet")
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18326. {
  18327. front: {
  18328. height: math.unit(15, "feet"),
  18329. weight: math.unit(3280, "lb"),
  18330. name: "Front",
  18331. image: {
  18332. source: "./media/characters/sapphy/front.svg",
  18333. extra: 671 / 577,
  18334. bottom: 0.085
  18335. }
  18336. },
  18337. back: {
  18338. height: math.unit(15, "feet"),
  18339. weight: math.unit(3280, "lb"),
  18340. name: "Back",
  18341. image: {
  18342. source: "./media/characters/sapphy/back.svg",
  18343. extra: 631 / 607,
  18344. bottom: 0.045
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(15, "feet")
  18352. },
  18353. {
  18354. name: "Casual Macro",
  18355. height: math.unit(120, "feet")
  18356. },
  18357. {
  18358. name: "Macro",
  18359. height: math.unit(2150, "feet"),
  18360. default: true
  18361. },
  18362. {
  18363. name: "Megamacro",
  18364. height: math.unit(8, "miles")
  18365. },
  18366. {
  18367. name: "Galaxy Mom",
  18368. height: math.unit(6, "megalightyears")
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(6, "feet"),
  18377. weight: math.unit(170, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/kiro/front.svg",
  18381. extra: 1064 / 1012,
  18382. bottom: 0.052
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Micro",
  18389. height: math.unit(6, "inches")
  18390. },
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(6, "feet"),
  18394. default: true
  18395. },
  18396. {
  18397. name: "Macro",
  18398. height: math.unit(72, "feet")
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18404. {
  18405. front: {
  18406. height: math.unit(5 + 9 / 12, "feet"),
  18407. weight: math.unit(175, "lb"),
  18408. name: "Front",
  18409. image: {
  18410. source: "./media/characters/irishfox/front.svg",
  18411. extra: 1912 / 1680,
  18412. bottom: 0.02
  18413. }
  18414. },
  18415. },
  18416. [
  18417. {
  18418. name: "Nano",
  18419. height: math.unit(1, "mm")
  18420. },
  18421. {
  18422. name: "Micro",
  18423. height: math.unit(2, "inches")
  18424. },
  18425. {
  18426. name: "Normal",
  18427. height: math.unit(5 + 9 / 12, "feet"),
  18428. default: true
  18429. },
  18430. {
  18431. name: "Macro",
  18432. height: math.unit(45, "feet")
  18433. },
  18434. ]
  18435. ))
  18436. characterMakers.push(() => makeCharacter(
  18437. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18438. {
  18439. front: {
  18440. height: math.unit(6 + 1 / 12, "feet"),
  18441. weight: math.unit(75, "lb"),
  18442. name: "Front",
  18443. image: {
  18444. source: "./media/characters/aronai-sieyes/front.svg",
  18445. extra: 1556 / 1480,
  18446. bottom: 0.015
  18447. }
  18448. },
  18449. side: {
  18450. height: math.unit(6 + 1 / 12, "feet"),
  18451. weight: math.unit(75, "lb"),
  18452. name: "Side",
  18453. image: {
  18454. source: "./media/characters/aronai-sieyes/side.svg",
  18455. extra: 1433 / 1390,
  18456. bottom: 0.0393
  18457. }
  18458. },
  18459. back: {
  18460. height: math.unit(6 + 1 / 12, "feet"),
  18461. weight: math.unit(75, "lb"),
  18462. name: "Back",
  18463. image: {
  18464. source: "./media/characters/aronai-sieyes/back.svg",
  18465. extra: 1544 / 1494,
  18466. bottom: 0.02
  18467. }
  18468. },
  18469. frontClothed: {
  18470. height: math.unit(6 + 1 / 12, "feet"),
  18471. weight: math.unit(75, "lb"),
  18472. name: "Front (Clothed)",
  18473. image: {
  18474. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18475. extra: 1582 / 1527
  18476. }
  18477. },
  18478. feral: {
  18479. height: math.unit(18, "feet"),
  18480. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18481. name: "Feral",
  18482. image: {
  18483. source: "./media/characters/aronai-sieyes/feral.svg",
  18484. extra: 1530 / 1240,
  18485. bottom: 0.035
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Micro",
  18492. height: math.unit(2, "inches")
  18493. },
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(6 + 1 / 12, "feet"),
  18497. default: true
  18498. }
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18503. {
  18504. front: {
  18505. height: math.unit(12, "feet"),
  18506. weight: math.unit(410, "kg"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/xuna/front.svg",
  18510. extra: 2184 / 1980
  18511. }
  18512. },
  18513. side: {
  18514. height: math.unit(12, "feet"),
  18515. weight: math.unit(410, "kg"),
  18516. name: "Side",
  18517. image: {
  18518. source: "./media/characters/xuna/side.svg",
  18519. extra: 2184 / 1980
  18520. }
  18521. },
  18522. back: {
  18523. height: math.unit(12, "feet"),
  18524. weight: math.unit(410, "kg"),
  18525. name: "Back",
  18526. image: {
  18527. source: "./media/characters/xuna/back.svg",
  18528. extra: 2184 / 1980
  18529. }
  18530. },
  18531. },
  18532. [
  18533. {
  18534. name: "Nano glow",
  18535. height: math.unit(10, "nm")
  18536. },
  18537. {
  18538. name: "Micro floof",
  18539. height: math.unit(0.3, "m")
  18540. },
  18541. {
  18542. name: "Huggable softy boi",
  18543. height: math.unit(3.6576, "m"),
  18544. default: true
  18545. },
  18546. {
  18547. name: "Admirable floof",
  18548. height: math.unit(80, "meters")
  18549. },
  18550. {
  18551. name: "Gentle macro",
  18552. height: math.unit(300, "meters")
  18553. },
  18554. {
  18555. name: "Very careful floof",
  18556. height: math.unit(3200, "meters")
  18557. },
  18558. {
  18559. name: "The mega floof",
  18560. height: math.unit(36000, "meters")
  18561. },
  18562. {
  18563. name: "Giga-fur-Wicker",
  18564. height: math.unit(4800000, "meters")
  18565. },
  18566. {
  18567. name: "Licky world",
  18568. height: math.unit(20000000, "meters")
  18569. },
  18570. {
  18571. name: "Floofy cyan sun",
  18572. height: math.unit(1500000000, "meters")
  18573. },
  18574. {
  18575. name: "Milky Wicker",
  18576. height: math.unit(1000000000000000000000, "meters")
  18577. },
  18578. {
  18579. name: "The observing Wicker",
  18580. height: math.unit(999999999999999999999999999, "meters")
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18586. {
  18587. front: {
  18588. height: math.unit(5 + 9 / 12, "feet"),
  18589. weight: math.unit(150, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/arokha-sieyes/front.svg",
  18593. extra: 1425 / 1284,
  18594. bottom: 0.05
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Normal",
  18601. height: math.unit(5 + 9 / 12, "feet")
  18602. },
  18603. {
  18604. name: "Macro",
  18605. height: math.unit(30, "meters"),
  18606. default: true
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18612. {
  18613. front: {
  18614. height: math.unit(6, "feet"),
  18615. weight: math.unit(180, "lb"),
  18616. name: "Front",
  18617. image: {
  18618. source: "./media/characters/arokh-sieyes/front.svg",
  18619. extra: 1830 / 1769,
  18620. bottom: 0.01
  18621. }
  18622. },
  18623. },
  18624. [
  18625. {
  18626. name: "Normal",
  18627. height: math.unit(6, "feet")
  18628. },
  18629. {
  18630. name: "Macro",
  18631. height: math.unit(30, "meters"),
  18632. default: true
  18633. },
  18634. ]
  18635. ))
  18636. characterMakers.push(() => makeCharacter(
  18637. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18638. {
  18639. side: {
  18640. height: math.unit(13 + 1 / 12, "feet"),
  18641. weight: math.unit(8.5, "tonnes"),
  18642. name: "Side",
  18643. image: {
  18644. source: "./media/characters/goldeneye/side.svg",
  18645. extra: 1182 / 778,
  18646. bottom: 0.067
  18647. }
  18648. },
  18649. paw: {
  18650. height: math.unit(3.4, "feet"),
  18651. name: "Paw",
  18652. image: {
  18653. source: "./media/characters/goldeneye/paw.svg"
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Normal",
  18660. height: math.unit(13 + 1 / 12, "feet"),
  18661. default: true
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18667. {
  18668. front: {
  18669. height: math.unit(6 + 1 / 12, "feet"),
  18670. weight: math.unit(210, "lb"),
  18671. name: "Front",
  18672. image: {
  18673. source: "./media/characters/leonardo-lycheborne/front.svg",
  18674. extra: 390 / 365,
  18675. bottom: 0.032
  18676. }
  18677. },
  18678. side: {
  18679. height: math.unit(6 + 1 / 12, "feet"),
  18680. weight: math.unit(210, "lb"),
  18681. name: "Side",
  18682. image: {
  18683. source: "./media/characters/leonardo-lycheborne/side.svg",
  18684. extra: 390 / 365,
  18685. bottom: 0.005
  18686. }
  18687. },
  18688. back: {
  18689. height: math.unit(6 + 1 / 12, "feet"),
  18690. weight: math.unit(210, "lb"),
  18691. name: "Back",
  18692. image: {
  18693. source: "./media/characters/leonardo-lycheborne/back.svg",
  18694. extra: 392 / 366,
  18695. bottom: 0.01
  18696. }
  18697. },
  18698. hand: {
  18699. height: math.unit(1.08, "feet"),
  18700. name: "Hand",
  18701. image: {
  18702. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18703. }
  18704. },
  18705. foot: {
  18706. height: math.unit(1.32, "feet"),
  18707. name: "Foot",
  18708. image: {
  18709. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18710. }
  18711. },
  18712. were: {
  18713. height: math.unit(20, "feet"),
  18714. weight: math.unit(7800, "lb"),
  18715. name: "Were",
  18716. image: {
  18717. source: "./media/characters/leonardo-lycheborne/were.svg",
  18718. extra: 308 / 294,
  18719. bottom: 0.048
  18720. }
  18721. },
  18722. feral: {
  18723. height: math.unit(7.5, "feet"),
  18724. weight: math.unit(600, "lb"),
  18725. name: "Feral",
  18726. image: {
  18727. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18728. extra: 210 / 186,
  18729. bottom: 0.108
  18730. }
  18731. },
  18732. taur: {
  18733. height: math.unit(11, "feet"),
  18734. weight: math.unit(3300, "lb"),
  18735. name: "Taur",
  18736. image: {
  18737. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18738. extra: 320 / 303,
  18739. bottom: 0.025
  18740. }
  18741. },
  18742. barghest: {
  18743. height: math.unit(11, "feet"),
  18744. weight: math.unit(1300, "lb"),
  18745. name: "Barghest",
  18746. image: {
  18747. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18748. extra: 323 / 302,
  18749. bottom: 0.027
  18750. }
  18751. },
  18752. dick: {
  18753. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18754. name: "Dick",
  18755. image: {
  18756. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18757. }
  18758. },
  18759. dickWere: {
  18760. height: math.unit((20) / 3.8, "feet"),
  18761. name: "Dick (Were)",
  18762. image: {
  18763. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Normal",
  18770. height: math.unit(6 + 1 / 12, "feet"),
  18771. default: true
  18772. },
  18773. ]
  18774. ))
  18775. characterMakers.push(() => makeCharacter(
  18776. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18777. {
  18778. front: {
  18779. height: math.unit(10, "feet"),
  18780. weight: math.unit(350, "lb"),
  18781. name: "Front",
  18782. image: {
  18783. source: "./media/characters/jet/front.svg",
  18784. extra: 2050 / 1980,
  18785. bottom: 0.013
  18786. }
  18787. },
  18788. back: {
  18789. height: math.unit(10, "feet"),
  18790. weight: math.unit(350, "lb"),
  18791. name: "Back",
  18792. image: {
  18793. source: "./media/characters/jet/back.svg",
  18794. extra: 2050 / 1980,
  18795. bottom: 0.013
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Micro",
  18802. height: math.unit(6, "inches")
  18803. },
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(10, "feet"),
  18807. default: true
  18808. },
  18809. {
  18810. name: "Macro",
  18811. height: math.unit(100, "feet")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(15, "feet"),
  18820. weight: math.unit(2800, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/tanarath/front.svg",
  18824. extra: 2392 / 2220,
  18825. bottom: 0.03
  18826. }
  18827. },
  18828. back: {
  18829. height: math.unit(15, "feet"),
  18830. weight: math.unit(2800, "lb"),
  18831. name: "Back",
  18832. image: {
  18833. source: "./media/characters/tanarath/back.svg",
  18834. extra: 2392 / 2220,
  18835. bottom: 0.03
  18836. }
  18837. },
  18838. },
  18839. [
  18840. {
  18841. name: "Normal",
  18842. height: math.unit(15, "feet"),
  18843. default: true
  18844. },
  18845. ]
  18846. ))
  18847. characterMakers.push(() => makeCharacter(
  18848. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18849. {
  18850. front: {
  18851. height: math.unit(7 + 1 / 12, "feet"),
  18852. weight: math.unit(175, "lb"),
  18853. name: "Front",
  18854. image: {
  18855. source: "./media/characters/patty-cattybatty/front.svg",
  18856. extra: 908 / 874,
  18857. bottom: 0.025
  18858. }
  18859. },
  18860. },
  18861. [
  18862. {
  18863. name: "Micro",
  18864. height: math.unit(1, "inch")
  18865. },
  18866. {
  18867. name: "Normal",
  18868. height: math.unit(7 + 1 / 12, "feet")
  18869. },
  18870. {
  18871. name: "Mini Macro",
  18872. height: math.unit(155, "feet")
  18873. },
  18874. {
  18875. name: "Macro",
  18876. height: math.unit(1077, "feet")
  18877. },
  18878. {
  18879. name: "Mega Macro",
  18880. height: math.unit(47650, "feet"),
  18881. default: true
  18882. },
  18883. {
  18884. name: "Giga Macro",
  18885. height: math.unit(440, "miles")
  18886. },
  18887. {
  18888. name: "Tera Macro",
  18889. height: math.unit(8700, "miles")
  18890. },
  18891. {
  18892. name: "Planetary Macro",
  18893. height: math.unit(32700, "miles")
  18894. },
  18895. {
  18896. name: "Solar Macro",
  18897. height: math.unit(550000, "miles")
  18898. },
  18899. {
  18900. name: "Celestial Macro",
  18901. height: math.unit(2.5, "AU")
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(4 + 5 / 12, "feet"),
  18910. weight: math.unit(90, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/cappu/front.svg",
  18914. extra: 1247 / 1152,
  18915. bottom: 0.012
  18916. }
  18917. },
  18918. },
  18919. [
  18920. {
  18921. name: "Normal",
  18922. height: math.unit(4 + 5 / 12, "feet"),
  18923. default: true
  18924. },
  18925. ]
  18926. ))
  18927. characterMakers.push(() => makeCharacter(
  18928. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18929. {
  18930. frontDressed: {
  18931. height: math.unit(70, "cm"),
  18932. weight: math.unit(6, "kg"),
  18933. name: "Front (Dressed)",
  18934. image: {
  18935. source: "./media/characters/sebi/front-dressed.svg",
  18936. extra: 713.5 / 686.5,
  18937. bottom: 0.003
  18938. }
  18939. },
  18940. front: {
  18941. height: math.unit(70, "cm"),
  18942. weight: math.unit(5, "kg"),
  18943. name: "Front",
  18944. image: {
  18945. source: "./media/characters/sebi/front.svg",
  18946. extra: 713.5 / 686.5,
  18947. bottom: 0.003
  18948. }
  18949. }
  18950. },
  18951. [
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(70, "cm"),
  18955. default: true
  18956. },
  18957. {
  18958. name: "Macro",
  18959. height: math.unit(8, "meters")
  18960. },
  18961. ]
  18962. ))
  18963. characterMakers.push(() => makeCharacter(
  18964. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18965. {
  18966. front: {
  18967. height: math.unit(6, "feet"),
  18968. weight: math.unit(150, "lb"),
  18969. name: "Front",
  18970. image: {
  18971. source: "./media/characters/typhek/front.svg",
  18972. extra: 1948 / 1929,
  18973. bottom: 0.025
  18974. }
  18975. },
  18976. side: {
  18977. height: math.unit(6, "feet"),
  18978. weight: math.unit(150, "lb"),
  18979. name: "Side",
  18980. image: {
  18981. source: "./media/characters/typhek/side.svg",
  18982. extra: 2034 / 2010,
  18983. bottom: 0.003
  18984. }
  18985. },
  18986. back: {
  18987. height: math.unit(6, "feet"),
  18988. weight: math.unit(150, "lb"),
  18989. name: "Back",
  18990. image: {
  18991. source: "./media/characters/typhek/back.svg",
  18992. extra: 2005 / 1978,
  18993. bottom: 0.004
  18994. }
  18995. },
  18996. palm: {
  18997. height: math.unit(1.2, "feet"),
  18998. name: "Palm",
  18999. image: {
  19000. source: "./media/characters/typhek/palm.svg"
  19001. }
  19002. },
  19003. fist: {
  19004. height: math.unit(1.1, "feet"),
  19005. name: "Fist",
  19006. image: {
  19007. source: "./media/characters/typhek/fist.svg"
  19008. }
  19009. },
  19010. foot: {
  19011. height: math.unit(1.57, "feet"),
  19012. name: "Foot",
  19013. image: {
  19014. source: "./media/characters/typhek/foot.svg"
  19015. }
  19016. },
  19017. sole: {
  19018. height: math.unit(2.05, "feet"),
  19019. name: "Sole",
  19020. image: {
  19021. source: "./media/characters/typhek/sole.svg"
  19022. }
  19023. },
  19024. },
  19025. [
  19026. {
  19027. name: "Macro",
  19028. height: math.unit(40, "stories"),
  19029. default: true
  19030. },
  19031. {
  19032. name: "Megamacro",
  19033. height: math.unit(1, "mile")
  19034. },
  19035. {
  19036. name: "Gigamacro",
  19037. height: math.unit(4000, "solarradii")
  19038. },
  19039. {
  19040. name: "Universal",
  19041. height: math.unit(1.1, "universes")
  19042. }
  19043. ]
  19044. ))
  19045. characterMakers.push(() => makeCharacter(
  19046. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19047. {
  19048. side: {
  19049. height: math.unit(5 + 7 / 12, "feet"),
  19050. weight: math.unit(150, "lb"),
  19051. name: "Side",
  19052. image: {
  19053. source: "./media/characters/kassy/side.svg",
  19054. extra: 1280 / 1225,
  19055. bottom: 0.002
  19056. }
  19057. },
  19058. front: {
  19059. height: math.unit(5 + 7 / 12, "feet"),
  19060. weight: math.unit(150, "lb"),
  19061. name: "Front",
  19062. image: {
  19063. source: "./media/characters/kassy/front.svg",
  19064. extra: 1280 / 1225,
  19065. bottom: 0.025
  19066. }
  19067. },
  19068. back: {
  19069. height: math.unit(5 + 7 / 12, "feet"),
  19070. weight: math.unit(150, "lb"),
  19071. name: "Back",
  19072. image: {
  19073. source: "./media/characters/kassy/back.svg",
  19074. extra: 1280 / 1225,
  19075. bottom: 0.002
  19076. }
  19077. },
  19078. foot: {
  19079. height: math.unit(1.266, "feet"),
  19080. name: "Foot",
  19081. image: {
  19082. source: "./media/characters/kassy/foot.svg"
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(5 + 7 / 12, "feet")
  19090. },
  19091. {
  19092. name: "Macro",
  19093. height: math.unit(137, "feet"),
  19094. default: true
  19095. },
  19096. {
  19097. name: "Megamacro",
  19098. height: math.unit(1, "mile")
  19099. },
  19100. ]
  19101. ))
  19102. characterMakers.push(() => makeCharacter(
  19103. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19104. {
  19105. front: {
  19106. height: math.unit(6 + 1 / 12, "feet"),
  19107. weight: math.unit(200, "lb"),
  19108. name: "Front",
  19109. image: {
  19110. source: "./media/characters/neil/front.svg",
  19111. extra: 1326 / 1250,
  19112. bottom: 0.023
  19113. }
  19114. },
  19115. },
  19116. [
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(6 + 1 / 12, "feet"),
  19120. default: true
  19121. },
  19122. {
  19123. name: "Macro",
  19124. height: math.unit(200, "feet")
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19130. {
  19131. front: {
  19132. height: math.unit(5 + 9 / 12, "feet"),
  19133. weight: math.unit(190, "lb"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/atticus/front.svg",
  19137. extra: 2934 / 2785,
  19138. bottom: 0.025
  19139. }
  19140. },
  19141. },
  19142. [
  19143. {
  19144. name: "Normal",
  19145. height: math.unit(5 + 9 / 12, "feet"),
  19146. default: true
  19147. },
  19148. {
  19149. name: "Macro",
  19150. height: math.unit(180, "feet")
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19156. {
  19157. side: {
  19158. height: math.unit(9, "feet"),
  19159. weight: math.unit(650, "lb"),
  19160. name: "Side",
  19161. image: {
  19162. source: "./media/characters/milo/side.svg",
  19163. extra: 2644 / 2310,
  19164. bottom: 0.032
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(9, "feet"),
  19172. default: true
  19173. },
  19174. {
  19175. name: "Macro",
  19176. height: math.unit(300, "feet")
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19182. {
  19183. side: {
  19184. height: math.unit(8, "meters"),
  19185. weight: math.unit(90000, "kg"),
  19186. name: "Side",
  19187. image: {
  19188. source: "./media/characters/ijzer/side.svg",
  19189. extra: 2756 / 1600,
  19190. bottom: 0.01
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Small",
  19197. height: math.unit(3, "meters")
  19198. },
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(8, "meters"),
  19202. default: true
  19203. },
  19204. {
  19205. name: "Normal+",
  19206. height: math.unit(10, "meters")
  19207. },
  19208. {
  19209. name: "Bigger",
  19210. height: math.unit(24, "meters")
  19211. },
  19212. {
  19213. name: "Huge",
  19214. height: math.unit(80, "meters")
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(6 + 2 / 12, "feet"),
  19223. weight: math.unit(153, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/luca-cervicum/front.svg",
  19227. extra: 370 / 327,
  19228. bottom: 0.015
  19229. }
  19230. },
  19231. back: {
  19232. height: math.unit(6 + 2 / 12, "feet"),
  19233. weight: math.unit(153, "lb"),
  19234. name: "Back",
  19235. image: {
  19236. source: "./media/characters/luca-cervicum/back.svg",
  19237. extra: 367 / 333,
  19238. bottom: 0.005
  19239. }
  19240. },
  19241. frontGear: {
  19242. height: math.unit(6 + 2 / 12, "feet"),
  19243. weight: math.unit(173, "lb"),
  19244. name: "Front (Gear)",
  19245. image: {
  19246. source: "./media/characters/luca-cervicum/front-gear.svg",
  19247. extra: 377 / 333,
  19248. bottom: 0.006
  19249. }
  19250. },
  19251. },
  19252. [
  19253. {
  19254. name: "Normal",
  19255. height: math.unit(6 + 2 / 12, "feet"),
  19256. default: true
  19257. },
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19262. {
  19263. front: {
  19264. height: math.unit(6 + 1 / 12, "feet"),
  19265. weight: math.unit(304, "lb"),
  19266. name: "Front",
  19267. image: {
  19268. source: "./media/characters/oliver/front.svg",
  19269. extra: 157 / 143,
  19270. bottom: 0.08
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(6 + 1 / 12, "feet"),
  19278. default: true
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19284. {
  19285. front: {
  19286. height: math.unit(5 + 7 / 12, "feet"),
  19287. weight: math.unit(140, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/shane/front.svg",
  19291. extra: 304 / 289,
  19292. bottom: 0.005
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(5 + 7 / 12, "feet"),
  19300. default: true
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(5 + 9 / 12, "feet"),
  19309. weight: math.unit(178, "lb"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/shin/front.svg",
  19313. extra: 159 / 151,
  19314. bottom: 0.015
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(5 + 9 / 12, "feet"),
  19322. default: true
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19328. {
  19329. front: {
  19330. height: math.unit(5 + 10 / 12, "feet"),
  19331. weight: math.unit(168, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/xerxes/front.svg",
  19335. extra: 282 / 260,
  19336. bottom: 0.045
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(5 + 10 / 12, "feet"),
  19344. default: true
  19345. },
  19346. ]
  19347. ))
  19348. characterMakers.push(() => makeCharacter(
  19349. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19350. {
  19351. front: {
  19352. height: math.unit(6 + 7 / 12, "feet"),
  19353. weight: math.unit(208, "lb"),
  19354. name: "Front",
  19355. image: {
  19356. source: "./media/characters/chaska/front.svg",
  19357. extra: 332 / 319,
  19358. bottom: 0.015
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(6 + 7 / 12, "feet"),
  19366. default: true
  19367. },
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19372. {
  19373. front: {
  19374. height: math.unit(5 + 8 / 12, "feet"),
  19375. weight: math.unit(208, "lb"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/enuk/front.svg",
  19379. extra: 437 / 406,
  19380. bottom: 0.02
  19381. }
  19382. },
  19383. },
  19384. [
  19385. {
  19386. name: "Normal",
  19387. height: math.unit(5 + 8 / 12, "feet"),
  19388. default: true
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(5 + 10 / 12, "feet"),
  19397. weight: math.unit(252, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/bruun/front.svg",
  19401. extra: 197 / 187,
  19402. bottom: 0.012
  19403. }
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Normal",
  19409. height: math.unit(5 + 10 / 12, "feet"),
  19410. default: true
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19416. {
  19417. front: {
  19418. height: math.unit(6 + 10 / 12, "feet"),
  19419. weight: math.unit(255, "lb"),
  19420. name: "Front",
  19421. image: {
  19422. source: "./media/characters/alexeev/front.svg",
  19423. extra: 213 / 200,
  19424. bottom: 0.05
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(6 + 10 / 12, "feet"),
  19432. default: true
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19438. {
  19439. front: {
  19440. height: math.unit(2 + 8 / 12, "feet"),
  19441. weight: math.unit(22, "lb"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/evelyn/front.svg",
  19445. extra: 208 / 180
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Normal",
  19452. height: math.unit(2 + 8 / 12, "feet"),
  19453. default: true
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19459. {
  19460. front: {
  19461. height: math.unit(5 + 9 / 12, "feet"),
  19462. weight: math.unit(139, "lb"),
  19463. name: "Front",
  19464. image: {
  19465. source: "./media/characters/inca/front.svg",
  19466. extra: 294 / 291,
  19467. bottom: 0.03
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Normal",
  19474. height: math.unit(5 + 9 / 12, "feet"),
  19475. default: true
  19476. },
  19477. ]
  19478. ))
  19479. characterMakers.push(() => makeCharacter(
  19480. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19481. {
  19482. front: {
  19483. height: math.unit(5 + 1 / 12, "feet"),
  19484. weight: math.unit(84, "lb"),
  19485. name: "Front",
  19486. image: {
  19487. source: "./media/characters/magdalene/front.svg",
  19488. extra: 293 / 273
  19489. }
  19490. },
  19491. },
  19492. [
  19493. {
  19494. name: "Normal",
  19495. height: math.unit(5 + 1 / 12, "feet"),
  19496. default: true
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(6 + 3 / 12, "feet"),
  19505. weight: math.unit(185, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/mera/front.svg",
  19509. extra: 291 / 277,
  19510. bottom: 0.03
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(6 + 3 / 12, "feet"),
  19518. default: true
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19524. {
  19525. front: {
  19526. height: math.unit(6 + 7 / 12, "feet"),
  19527. weight: math.unit(160, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/ceres/front.svg",
  19531. extra: 1023 / 950,
  19532. bottom: 0.027
  19533. }
  19534. },
  19535. back: {
  19536. height: math.unit(6 + 7 / 12, "feet"),
  19537. weight: math.unit(160, "lb"),
  19538. name: "Back",
  19539. image: {
  19540. source: "./media/characters/ceres/back.svg",
  19541. extra: 1023 / 950
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(6 + 7 / 12, "feet"),
  19549. default: true
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19555. {
  19556. front: {
  19557. height: math.unit(5 + 10 / 12, "feet"),
  19558. weight: math.unit(150, "lb"),
  19559. name: "Front",
  19560. image: {
  19561. source: "./media/characters/kris/front.svg",
  19562. extra: 885 / 803,
  19563. bottom: 0.03
  19564. }
  19565. },
  19566. },
  19567. [
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(5 + 10 / 12, "feet"),
  19571. default: true
  19572. },
  19573. ]
  19574. ))
  19575. characterMakers.push(() => makeCharacter(
  19576. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19577. {
  19578. front: {
  19579. height: math.unit(7, "feet"),
  19580. weight: math.unit(120, "kg"),
  19581. name: "Front",
  19582. image: {
  19583. source: "./media/characters/taluthus/front.svg",
  19584. extra: 903 / 833,
  19585. bottom: 0.015
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(7, "feet"),
  19593. default: true
  19594. },
  19595. {
  19596. name: "Macro",
  19597. height: math.unit(300, "feet")
  19598. },
  19599. ]
  19600. ))
  19601. characterMakers.push(() => makeCharacter(
  19602. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19603. {
  19604. front: {
  19605. height: math.unit(5 + 9 / 12, "feet"),
  19606. weight: math.unit(145, "lb"),
  19607. name: "Front",
  19608. image: {
  19609. source: "./media/characters/dawn/front.svg",
  19610. extra: 2094 / 2016,
  19611. bottom: 0.025
  19612. }
  19613. },
  19614. back: {
  19615. height: math.unit(5 + 9 / 12, "feet"),
  19616. weight: math.unit(160, "lb"),
  19617. name: "Back",
  19618. image: {
  19619. source: "./media/characters/dawn/back.svg",
  19620. extra: 2112 / 2080,
  19621. bottom: 0.005
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Normal",
  19628. height: math.unit(6 + 7 / 12, "feet"),
  19629. default: true
  19630. },
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19635. {
  19636. anthro: {
  19637. height: math.unit(8 + 3 / 12, "feet"),
  19638. weight: math.unit(450, "lb"),
  19639. name: "Anthro",
  19640. image: {
  19641. source: "./media/characters/arador/anthro.svg",
  19642. extra: 1835 / 1718,
  19643. bottom: 0.025
  19644. }
  19645. },
  19646. feral: {
  19647. height: math.unit(4, "feet"),
  19648. weight: math.unit(200, "lb"),
  19649. name: "Feral",
  19650. image: {
  19651. source: "./media/characters/arador/feral.svg",
  19652. extra: 1683 / 1514,
  19653. bottom: 0.07
  19654. }
  19655. },
  19656. },
  19657. [
  19658. {
  19659. name: "Normal",
  19660. height: math.unit(8 + 3 / 12, "feet")
  19661. },
  19662. {
  19663. name: "Macro",
  19664. height: math.unit(82.5, "feet"),
  19665. default: true
  19666. },
  19667. ]
  19668. ))
  19669. characterMakers.push(() => makeCharacter(
  19670. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19671. {
  19672. front: {
  19673. height: math.unit(5 + 10 / 12, "feet"),
  19674. weight: math.unit(125, "lb"),
  19675. name: "Front",
  19676. image: {
  19677. source: "./media/characters/dharsi/front.svg",
  19678. extra: 716 / 630,
  19679. bottom: 0.035
  19680. }
  19681. },
  19682. },
  19683. [
  19684. {
  19685. name: "Nano",
  19686. height: math.unit(100, "nm")
  19687. },
  19688. {
  19689. name: "Micro",
  19690. height: math.unit(2, "inches")
  19691. },
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(5 + 10 / 12, "feet"),
  19695. default: true
  19696. },
  19697. {
  19698. name: "Macro",
  19699. height: math.unit(1000, "feet")
  19700. },
  19701. {
  19702. name: "Megamacro",
  19703. height: math.unit(10, "miles")
  19704. },
  19705. {
  19706. name: "Gigamacro",
  19707. height: math.unit(3000, "miles")
  19708. },
  19709. {
  19710. name: "Teramacro",
  19711. height: math.unit(500000, "miles")
  19712. },
  19713. {
  19714. name: "Teramacro+",
  19715. height: math.unit(30, "galaxies")
  19716. },
  19717. ]
  19718. ))
  19719. characterMakers.push(() => makeCharacter(
  19720. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19721. {
  19722. front: {
  19723. height: math.unit(6, "feet"),
  19724. weight: math.unit(150, "lb"),
  19725. name: "Front",
  19726. image: {
  19727. source: "./media/characters/deathy/front.svg",
  19728. extra: 1552 / 1463,
  19729. bottom: 0.025
  19730. }
  19731. },
  19732. side: {
  19733. height: math.unit(6, "feet"),
  19734. weight: math.unit(150, "lb"),
  19735. name: "Side",
  19736. image: {
  19737. source: "./media/characters/deathy/side.svg",
  19738. extra: 1604 / 1455,
  19739. bottom: 0.025
  19740. }
  19741. },
  19742. back: {
  19743. height: math.unit(6, "feet"),
  19744. weight: math.unit(150, "lb"),
  19745. name: "Back",
  19746. image: {
  19747. source: "./media/characters/deathy/back.svg",
  19748. extra: 1580 / 1463,
  19749. bottom: 0.005
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Micro",
  19756. height: math.unit(5, "millimeters")
  19757. },
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(6 + 5 / 12, "feet"),
  19761. default: true
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19767. {
  19768. front: {
  19769. height: math.unit(16, "feet"),
  19770. weight: math.unit(4000, "lb"),
  19771. name: "Front",
  19772. image: {
  19773. source: "./media/characters/juniper/front.svg",
  19774. bottom: 0.04
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(16, "feet"),
  19782. default: true
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19788. {
  19789. front: {
  19790. height: math.unit(6, "feet"),
  19791. weight: math.unit(150, "lb"),
  19792. name: "Front",
  19793. image: {
  19794. source: "./media/characters/hipster/front.svg",
  19795. extra: 1312 / 1209,
  19796. bottom: 0.025
  19797. }
  19798. },
  19799. back: {
  19800. height: math.unit(6, "feet"),
  19801. weight: math.unit(150, "lb"),
  19802. name: "Back",
  19803. image: {
  19804. source: "./media/characters/hipster/back.svg",
  19805. extra: 1281 / 1196,
  19806. bottom: 0.01
  19807. }
  19808. },
  19809. },
  19810. [
  19811. {
  19812. name: "Micro",
  19813. height: math.unit(1, "mm")
  19814. },
  19815. {
  19816. name: "Normal",
  19817. height: math.unit(4, "inches"),
  19818. default: true
  19819. },
  19820. {
  19821. name: "Macro",
  19822. height: math.unit(500, "feet")
  19823. },
  19824. {
  19825. name: "Megamacro",
  19826. height: math.unit(1000, "miles")
  19827. },
  19828. ]
  19829. ))
  19830. characterMakers.push(() => makeCharacter(
  19831. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19832. {
  19833. front: {
  19834. height: math.unit(6, "feet"),
  19835. weight: math.unit(150, "lb"),
  19836. name: "Front",
  19837. image: {
  19838. source: "./media/characters/tendirmuldr/front.svg",
  19839. extra: 1878 / 1772,
  19840. bottom: 0.015
  19841. }
  19842. },
  19843. },
  19844. [
  19845. {
  19846. name: "Megamacro",
  19847. height: math.unit(1500, "miles"),
  19848. default: true
  19849. },
  19850. ]
  19851. ))
  19852. characterMakers.push(() => makeCharacter(
  19853. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19854. {
  19855. front: {
  19856. height: math.unit(14, "feet"),
  19857. weight: math.unit(12000, "lb"),
  19858. name: "Front",
  19859. image: {
  19860. source: "./media/characters/mort/front.svg",
  19861. extra: 365 / 318,
  19862. bottom: 0.01
  19863. }
  19864. },
  19865. side: {
  19866. height: math.unit(14, "feet"),
  19867. weight: math.unit(12000, "lb"),
  19868. name: "Side",
  19869. image: {
  19870. source: "./media/characters/mort/side.svg",
  19871. extra: 365 / 318,
  19872. bottom: 0.052
  19873. },
  19874. default: true
  19875. },
  19876. back: {
  19877. height: math.unit(14, "feet"),
  19878. weight: math.unit(12000, "lb"),
  19879. name: "Back",
  19880. image: {
  19881. source: "./media/characters/mort/back.svg",
  19882. extra: 371 / 332,
  19883. bottom: 0.18
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(14, "feet"),
  19891. default: true
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19897. {
  19898. front: {
  19899. height: math.unit(8, "feet"),
  19900. weight: math.unit(1, "ton"),
  19901. name: "Front",
  19902. image: {
  19903. source: "./media/characters/lycoa/front.svg",
  19904. extra: 1875 / 1789,
  19905. bottom: 0.022
  19906. }
  19907. },
  19908. back: {
  19909. height: math.unit(8, "feet"),
  19910. weight: math.unit(1, "ton"),
  19911. name: "Back",
  19912. image: {
  19913. source: "./media/characters/lycoa/back.svg",
  19914. extra: 1835 / 1781,
  19915. bottom: 0.03
  19916. }
  19917. },
  19918. head: {
  19919. height: math.unit(2.1, "feet"),
  19920. name: "Head",
  19921. image: {
  19922. source: "./media/characters/lycoa/head.svg"
  19923. }
  19924. },
  19925. tailmaw: {
  19926. height: math.unit(1.9, "feet"),
  19927. name: "Tailmaw",
  19928. image: {
  19929. source: "./media/characters/lycoa/tailmaw.svg"
  19930. }
  19931. },
  19932. tentacles: {
  19933. height: math.unit(2.1, "feet"),
  19934. name: "Tentacles",
  19935. image: {
  19936. source: "./media/characters/lycoa/tentacles.svg"
  19937. }
  19938. },
  19939. dick: {
  19940. height: math.unit(1.73, "feet"),
  19941. name: "Dick",
  19942. image: {
  19943. source: "./media/characters/lycoa/dick.svg"
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Normal",
  19950. height: math.unit(8, "feet"),
  19951. default: true
  19952. },
  19953. {
  19954. name: "Macro",
  19955. height: math.unit(30, "feet")
  19956. },
  19957. ]
  19958. ))
  19959. characterMakers.push(() => makeCharacter(
  19960. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19961. {
  19962. front: {
  19963. height: math.unit(4 + 2 / 12, "feet"),
  19964. weight: math.unit(70, "lb"),
  19965. name: "Front",
  19966. image: {
  19967. source: "./media/characters/naldara/front.svg",
  19968. extra: 841 / 720,
  19969. bottom: 0.04
  19970. }
  19971. },
  19972. naga: {
  19973. height: math.unit(23, "feet"),
  19974. weight: math.unit(15000, "kg"),
  19975. name: "Naga",
  19976. image: {
  19977. source: "./media/characters/naldara/naga.svg",
  19978. extra: 3290 / 2959,
  19979. bottom: 124 / 3432
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(4 + 2 / 12, "feet"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(13 + 7 / 12, "feet"),
  19996. weight: math.unit(1500, "lb"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/briar/front.svg",
  20000. extra: 626 / 596,
  20001. bottom: 0.08
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(13 + 7 / 12, "feet"),
  20009. default: true
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20015. {
  20016. side: {
  20017. height: math.unit(10, "feet"),
  20018. weight: math.unit(500, "lb"),
  20019. name: "Side",
  20020. image: {
  20021. source: "./media/characters/vanguard/side.svg",
  20022. extra: 502 / 425,
  20023. bottom: 0.087
  20024. }
  20025. },
  20026. },
  20027. [
  20028. {
  20029. name: "Normal",
  20030. height: math.unit(10, "feet"),
  20031. default: true
  20032. },
  20033. ]
  20034. ))
  20035. characterMakers.push(() => makeCharacter(
  20036. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20037. {
  20038. front: {
  20039. height: math.unit(7.5, "feet"),
  20040. weight: math.unit(2, "lb"),
  20041. name: "Front",
  20042. image: {
  20043. source: "./media/characters/artemis/front.svg",
  20044. extra: 1192 / 1075,
  20045. bottom: 0.07
  20046. }
  20047. },
  20048. frontNsfw: {
  20049. height: math.unit(7.5, "feet"),
  20050. weight: math.unit(2, "lb"),
  20051. name: "Front (NSFW)",
  20052. image: {
  20053. source: "./media/characters/artemis/front-nsfw.svg",
  20054. extra: 1192 / 1075,
  20055. bottom: 0.07
  20056. }
  20057. },
  20058. frontNsfwer: {
  20059. height: math.unit(7.5, "feet"),
  20060. weight: math.unit(2, "lb"),
  20061. name: "Front (NSFW-er)",
  20062. image: {
  20063. source: "./media/characters/artemis/front-nsfwer.svg",
  20064. extra: 1192 / 1075,
  20065. bottom: 0.07
  20066. }
  20067. },
  20068. side: {
  20069. height: math.unit(7.5, "feet"),
  20070. weight: math.unit(2, "lb"),
  20071. name: "Side",
  20072. image: {
  20073. source: "./media/characters/artemis/side.svg",
  20074. extra: 1192 / 1075,
  20075. bottom: 0.07
  20076. }
  20077. },
  20078. sideNsfw: {
  20079. height: math.unit(7.5, "feet"),
  20080. weight: math.unit(2, "lb"),
  20081. name: "Side (NSFW)",
  20082. image: {
  20083. source: "./media/characters/artemis/side-nsfw.svg",
  20084. extra: 1192 / 1075,
  20085. bottom: 0.07
  20086. }
  20087. },
  20088. sideNsfwer: {
  20089. height: math.unit(7.5, "feet"),
  20090. weight: math.unit(2, "lb"),
  20091. name: "Side (NSFW-er)",
  20092. image: {
  20093. source: "./media/characters/artemis/side-nsfwer.svg",
  20094. extra: 1192 / 1075,
  20095. bottom: 0.07
  20096. }
  20097. },
  20098. maw: {
  20099. height: math.unit(1.1, "feet"),
  20100. name: "Maw",
  20101. image: {
  20102. source: "./media/characters/artemis/maw.svg"
  20103. }
  20104. },
  20105. stomach: {
  20106. height: math.unit(0.95, "feet"),
  20107. name: "Stomach",
  20108. image: {
  20109. source: "./media/characters/artemis/stomach.svg"
  20110. }
  20111. },
  20112. dickCanine: {
  20113. height: math.unit(1, "feet"),
  20114. name: "Dick (Canine)",
  20115. image: {
  20116. source: "./media/characters/artemis/dick-canine.svg"
  20117. }
  20118. },
  20119. dickEquine: {
  20120. height: math.unit(0.85, "feet"),
  20121. name: "Dick (Equine)",
  20122. image: {
  20123. source: "./media/characters/artemis/dick-equine.svg"
  20124. }
  20125. },
  20126. dickExotic: {
  20127. height: math.unit(0.85, "feet"),
  20128. name: "Dick (Exotic)",
  20129. image: {
  20130. source: "./media/characters/artemis/dick-exotic.svg"
  20131. }
  20132. },
  20133. },
  20134. [
  20135. {
  20136. name: "Normal",
  20137. height: math.unit(7.5, "feet"),
  20138. default: true
  20139. },
  20140. {
  20141. name: "Enlarged",
  20142. height: math.unit(12, "feet")
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20148. {
  20149. front: {
  20150. height: math.unit(5 + 3 / 12, "feet"),
  20151. weight: math.unit(160, "lb"),
  20152. name: "Front",
  20153. image: {
  20154. source: "./media/characters/kira/front.svg",
  20155. extra: 906 / 786,
  20156. bottom: 0.01
  20157. }
  20158. },
  20159. back: {
  20160. height: math.unit(5 + 3 / 12, "feet"),
  20161. weight: math.unit(160, "lb"),
  20162. name: "Back",
  20163. image: {
  20164. source: "./media/characters/kira/back.svg",
  20165. extra: 882 / 757,
  20166. bottom: 0.005
  20167. }
  20168. },
  20169. frontDressed: {
  20170. height: math.unit(5 + 3 / 12, "feet"),
  20171. weight: math.unit(160, "lb"),
  20172. name: "Front (Dressed)",
  20173. image: {
  20174. source: "./media/characters/kira/front-dressed.svg",
  20175. extra: 906 / 786,
  20176. bottom: 0.01
  20177. }
  20178. },
  20179. beans: {
  20180. height: math.unit(0.92, "feet"),
  20181. name: "Beans",
  20182. image: {
  20183. source: "./media/characters/kira/beans.svg"
  20184. }
  20185. },
  20186. },
  20187. [
  20188. {
  20189. name: "Normal",
  20190. height: math.unit(5 + 3 / 12, "feet"),
  20191. default: true
  20192. },
  20193. ]
  20194. ))
  20195. characterMakers.push(() => makeCharacter(
  20196. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20197. {
  20198. front: {
  20199. height: math.unit(5 + 4 / 12, "feet"),
  20200. weight: math.unit(145, "lb"),
  20201. name: "Front",
  20202. image: {
  20203. source: "./media/characters/scramble/front.svg",
  20204. extra: 763 / 727,
  20205. bottom: 0.05
  20206. }
  20207. },
  20208. back: {
  20209. height: math.unit(5 + 4 / 12, "feet"),
  20210. weight: math.unit(145, "lb"),
  20211. name: "Back",
  20212. image: {
  20213. source: "./media/characters/scramble/back.svg",
  20214. extra: 826 / 737,
  20215. bottom: 0.002
  20216. }
  20217. },
  20218. },
  20219. [
  20220. {
  20221. name: "Normal",
  20222. height: math.unit(5 + 4 / 12, "feet"),
  20223. default: true
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20229. {
  20230. side: {
  20231. height: math.unit(6 + 2 / 12, "feet"),
  20232. weight: math.unit(190, "lb"),
  20233. name: "Side",
  20234. image: {
  20235. source: "./media/characters/biscuit/side.svg",
  20236. extra: 858 / 791,
  20237. bottom: 0.044
  20238. }
  20239. },
  20240. },
  20241. [
  20242. {
  20243. name: "Normal",
  20244. height: math.unit(6 + 2 / 12, "feet"),
  20245. default: true
  20246. },
  20247. ]
  20248. ))
  20249. characterMakers.push(() => makeCharacter(
  20250. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20251. {
  20252. front: {
  20253. height: math.unit(5 + 2 / 12, "feet"),
  20254. weight: math.unit(120, "lb"),
  20255. name: "Front",
  20256. image: {
  20257. source: "./media/characters/poffin/front.svg",
  20258. extra: 786 / 680,
  20259. bottom: 0.005
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(5 + 2 / 12, "feet"),
  20267. default: true
  20268. },
  20269. ]
  20270. ))
  20271. characterMakers.push(() => makeCharacter(
  20272. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20273. {
  20274. front: {
  20275. height: math.unit(6 + 3 / 12, "feet"),
  20276. weight: math.unit(519, "lb"),
  20277. name: "Front",
  20278. image: {
  20279. source: "./media/characters/dhari/front.svg",
  20280. extra: 1048 / 946,
  20281. bottom: 0.015
  20282. }
  20283. },
  20284. back: {
  20285. height: math.unit(6 + 3 / 12, "feet"),
  20286. weight: math.unit(519, "lb"),
  20287. name: "Back",
  20288. image: {
  20289. source: "./media/characters/dhari/back.svg",
  20290. extra: 1048 / 931,
  20291. bottom: 0.005
  20292. }
  20293. },
  20294. frontDressed: {
  20295. height: math.unit(6 + 3 / 12, "feet"),
  20296. weight: math.unit(519, "lb"),
  20297. name: "Front (Dressed)",
  20298. image: {
  20299. source: "./media/characters/dhari/front-dressed.svg",
  20300. extra: 1713 / 1546,
  20301. bottom: 0.02
  20302. }
  20303. },
  20304. backDressed: {
  20305. height: math.unit(6 + 3 / 12, "feet"),
  20306. weight: math.unit(519, "lb"),
  20307. name: "Back (Dressed)",
  20308. image: {
  20309. source: "./media/characters/dhari/back-dressed.svg",
  20310. extra: 1699 / 1537,
  20311. bottom: 0.01
  20312. }
  20313. },
  20314. maw: {
  20315. height: math.unit(0.95, "feet"),
  20316. name: "Maw",
  20317. image: {
  20318. source: "./media/characters/dhari/maw.svg"
  20319. }
  20320. },
  20321. wereFront: {
  20322. height: math.unit(12 + 8 / 12, "feet"),
  20323. weight: math.unit(4000, "lb"),
  20324. name: "Front (Were)",
  20325. image: {
  20326. source: "./media/characters/dhari/were-front.svg",
  20327. extra: 1065 / 969,
  20328. bottom: 0.015
  20329. }
  20330. },
  20331. wereBack: {
  20332. height: math.unit(12 + 8 / 12, "feet"),
  20333. weight: math.unit(4000, "lb"),
  20334. name: "Back (Were)",
  20335. image: {
  20336. source: "./media/characters/dhari/were-back.svg",
  20337. extra: 1065 / 969,
  20338. bottom: 0.012
  20339. }
  20340. },
  20341. wereMaw: {
  20342. height: math.unit(0.625, "meters"),
  20343. name: "Maw (Were)",
  20344. image: {
  20345. source: "./media/characters/dhari/were-maw.svg"
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(6 + 3 / 12, "feet"),
  20353. default: true
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20359. {
  20360. anthro: {
  20361. height: math.unit(5 + 7 / 12, "feet"),
  20362. weight: math.unit(175, "lb"),
  20363. name: "Anthro",
  20364. image: {
  20365. source: "./media/characters/rena-dyne/anthro.svg",
  20366. extra: 1849 / 1785,
  20367. bottom: 0.005
  20368. }
  20369. },
  20370. taur: {
  20371. height: math.unit(15 + 6 / 12, "feet"),
  20372. weight: math.unit(8000, "lb"),
  20373. name: "Taur",
  20374. image: {
  20375. source: "./media/characters/rena-dyne/taur.svg",
  20376. extra: 2315 / 2234,
  20377. bottom: 0.033
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(5 + 7 / 12, "feet"),
  20385. default: true
  20386. },
  20387. ]
  20388. ))
  20389. characterMakers.push(() => makeCharacter(
  20390. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20391. {
  20392. front: {
  20393. height: math.unit(8, "feet"),
  20394. weight: math.unit(600, "lb"),
  20395. name: "Front",
  20396. image: {
  20397. source: "./media/characters/weremeep/front.svg",
  20398. extra: 967 / 862,
  20399. bottom: 0.01
  20400. }
  20401. },
  20402. },
  20403. [
  20404. {
  20405. name: "Normal",
  20406. height: math.unit(8, "feet"),
  20407. default: true
  20408. },
  20409. {
  20410. name: "Lorg",
  20411. height: math.unit(12, "feet")
  20412. },
  20413. {
  20414. name: "Oh Lawd She Comin'",
  20415. height: math.unit(20, "feet")
  20416. },
  20417. ]
  20418. ))
  20419. characterMakers.push(() => makeCharacter(
  20420. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20421. {
  20422. front: {
  20423. height: math.unit(4, "feet"),
  20424. weight: math.unit(90, "lb"),
  20425. name: "Front",
  20426. image: {
  20427. source: "./media/characters/reza/front.svg",
  20428. extra: 1183 / 1111,
  20429. bottom: 0.017
  20430. }
  20431. },
  20432. back: {
  20433. height: math.unit(4, "feet"),
  20434. weight: math.unit(90, "lb"),
  20435. name: "Back",
  20436. image: {
  20437. source: "./media/characters/reza/back.svg",
  20438. extra: 1183 / 1111,
  20439. bottom: 0.01
  20440. }
  20441. },
  20442. drake: {
  20443. height: math.unit(30, "feet"),
  20444. weight: math.unit(246960, "lb"),
  20445. name: "Drake",
  20446. image: {
  20447. source: "./media/characters/reza/drake.svg",
  20448. extra: 2350 / 2024,
  20449. bottom: 60.7 / 2403
  20450. }
  20451. },
  20452. },
  20453. [
  20454. {
  20455. name: "Normal",
  20456. height: math.unit(4, "feet"),
  20457. default: true
  20458. },
  20459. ]
  20460. ))
  20461. characterMakers.push(() => makeCharacter(
  20462. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20463. {
  20464. side: {
  20465. height: math.unit(15, "feet"),
  20466. weight: math.unit(14, "tons"),
  20467. name: "Side",
  20468. image: {
  20469. source: "./media/characters/athea/side.svg",
  20470. extra: 960 / 540,
  20471. bottom: 0.003
  20472. }
  20473. },
  20474. sitting: {
  20475. height: math.unit(6 * 2.85, "feet"),
  20476. weight: math.unit(14, "tons"),
  20477. name: "Sitting",
  20478. image: {
  20479. source: "./media/characters/athea/sitting.svg",
  20480. extra: 621 / 581,
  20481. bottom: 0.075
  20482. }
  20483. },
  20484. maw: {
  20485. height: math.unit(7.59498031496063, "feet"),
  20486. name: "Maw",
  20487. image: {
  20488. source: "./media/characters/athea/maw.svg"
  20489. }
  20490. },
  20491. },
  20492. [
  20493. {
  20494. name: "Lap Cat",
  20495. height: math.unit(2.5, "feet")
  20496. },
  20497. {
  20498. name: "Minimacro",
  20499. height: math.unit(15, "feet"),
  20500. default: true
  20501. },
  20502. {
  20503. name: "Macro",
  20504. height: math.unit(120, "feet")
  20505. },
  20506. {
  20507. name: "Macro+",
  20508. height: math.unit(640, "feet")
  20509. },
  20510. {
  20511. name: "Colossus",
  20512. height: math.unit(2.2, "miles")
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20518. {
  20519. front: {
  20520. height: math.unit(8 + 8 / 12, "feet"),
  20521. weight: math.unit(130, "kg"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/seroko/front.svg",
  20525. extra: 1385 / 1280,
  20526. bottom: 0.025
  20527. }
  20528. },
  20529. back: {
  20530. height: math.unit(8 + 8 / 12, "feet"),
  20531. weight: math.unit(130, "kg"),
  20532. name: "Back",
  20533. image: {
  20534. source: "./media/characters/seroko/back.svg",
  20535. extra: 1369 / 1238,
  20536. bottom: 0.018
  20537. }
  20538. },
  20539. frontDressed: {
  20540. height: math.unit(8 + 8 / 12, "feet"),
  20541. weight: math.unit(130, "kg"),
  20542. name: "Front (Dressed)",
  20543. image: {
  20544. source: "./media/characters/seroko/front-dressed.svg",
  20545. extra: 1366 / 1275,
  20546. bottom: 0.03
  20547. }
  20548. },
  20549. },
  20550. [
  20551. {
  20552. name: "Normal",
  20553. height: math.unit(8 + 8 / 12, "feet"),
  20554. default: true
  20555. },
  20556. ]
  20557. ))
  20558. characterMakers.push(() => makeCharacter(
  20559. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20560. {
  20561. front: {
  20562. height: math.unit(5.5, "feet"),
  20563. weight: math.unit(160, "lb"),
  20564. name: "Front",
  20565. image: {
  20566. source: "./media/characters/quatzi/front.svg",
  20567. extra: 2346 / 2242,
  20568. bottom: 0.015
  20569. }
  20570. },
  20571. },
  20572. [
  20573. {
  20574. name: "Normal",
  20575. height: math.unit(5.5, "feet"),
  20576. default: true
  20577. },
  20578. {
  20579. name: "Big",
  20580. height: math.unit(7.7, "feet")
  20581. },
  20582. ]
  20583. ))
  20584. characterMakers.push(() => makeCharacter(
  20585. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20586. {
  20587. front: {
  20588. height: math.unit(5 + 11 / 12, "feet"),
  20589. weight: math.unit(180, "lb"),
  20590. name: "Front",
  20591. image: {
  20592. source: "./media/characters/sen/front.svg",
  20593. extra: 1321 / 1254,
  20594. bottom: 0.015
  20595. }
  20596. },
  20597. side: {
  20598. height: math.unit(5 + 11 / 12, "feet"),
  20599. weight: math.unit(180, "lb"),
  20600. name: "Side",
  20601. image: {
  20602. source: "./media/characters/sen/side.svg",
  20603. extra: 1321 / 1254,
  20604. bottom: 0.007
  20605. }
  20606. },
  20607. back: {
  20608. height: math.unit(5 + 11 / 12, "feet"),
  20609. weight: math.unit(180, "lb"),
  20610. name: "Back",
  20611. image: {
  20612. source: "./media/characters/sen/back.svg",
  20613. extra: 1321 / 1254
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(5 + 11 / 12, "feet"),
  20621. default: true
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20627. {
  20628. front: {
  20629. height: math.unit(166.6, "cm"),
  20630. weight: math.unit(66.6, "kg"),
  20631. name: "Front",
  20632. image: {
  20633. source: "./media/characters/fruity/front.svg",
  20634. extra: 1510 / 1386,
  20635. bottom: 0.04
  20636. }
  20637. },
  20638. back: {
  20639. height: math.unit(166.6, "cm"),
  20640. weight: math.unit(66.6, "lb"),
  20641. name: "Back",
  20642. image: {
  20643. source: "./media/characters/fruity/back.svg",
  20644. extra: 1563 / 1435,
  20645. bottom: 0.005
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(166.6, "cm"),
  20653. default: true
  20654. },
  20655. {
  20656. name: "Demonic",
  20657. height: math.unit(166.6, "feet")
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20663. {
  20664. side: {
  20665. height: math.unit(10, "feet"),
  20666. weight: math.unit(500, "lb"),
  20667. name: "Side",
  20668. image: {
  20669. source: "./media/characters/zost/side.svg",
  20670. extra: 966 / 880,
  20671. bottom: 0.075
  20672. }
  20673. },
  20674. mawFront: {
  20675. height: math.unit(1.08, "meters"),
  20676. name: "Maw (Front)",
  20677. image: {
  20678. source: "./media/characters/zost/maw-front.svg"
  20679. }
  20680. },
  20681. mawSide: {
  20682. height: math.unit(2.66, "feet"),
  20683. name: "Maw (Side)",
  20684. image: {
  20685. source: "./media/characters/zost/maw-side.svg"
  20686. }
  20687. },
  20688. },
  20689. [
  20690. {
  20691. name: "Normal",
  20692. height: math.unit(10, "feet"),
  20693. default: true
  20694. },
  20695. ]
  20696. ))
  20697. characterMakers.push(() => makeCharacter(
  20698. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20699. {
  20700. front: {
  20701. height: math.unit(5 + 4 / 12, "feet"),
  20702. weight: math.unit(120, "lb"),
  20703. name: "Front",
  20704. image: {
  20705. source: "./media/characters/luci/front.svg",
  20706. extra: 1985 / 1884,
  20707. bottom: 0.04
  20708. }
  20709. },
  20710. back: {
  20711. height: math.unit(5 + 4 / 12, "feet"),
  20712. weight: math.unit(120, "lb"),
  20713. name: "Back",
  20714. image: {
  20715. source: "./media/characters/luci/back.svg",
  20716. extra: 1892 / 1791,
  20717. bottom: 0.002
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(5 + 4 / 12, "feet"),
  20725. default: true
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20731. {
  20732. front: {
  20733. height: math.unit(1500, "feet"),
  20734. weight: math.unit(3.8e6, "tons"),
  20735. name: "Front",
  20736. image: {
  20737. source: "./media/characters/2th/front.svg",
  20738. extra: 3489 / 3350,
  20739. bottom: 0.1
  20740. }
  20741. },
  20742. foot: {
  20743. height: math.unit(461, "feet"),
  20744. name: "Foot",
  20745. image: {
  20746. source: "./media/characters/2th/foot.svg"
  20747. }
  20748. },
  20749. },
  20750. [
  20751. {
  20752. name: "\"Micro\"",
  20753. height: math.unit(15 + 7 / 12, "feet")
  20754. },
  20755. {
  20756. name: "Normal",
  20757. height: math.unit(1500, "feet"),
  20758. default: true
  20759. },
  20760. {
  20761. name: "Macro",
  20762. height: math.unit(5000, "feet")
  20763. },
  20764. {
  20765. name: "Megamacro",
  20766. height: math.unit(15, "miles")
  20767. },
  20768. {
  20769. name: "Gigamacro",
  20770. height: math.unit(4000, "miles")
  20771. },
  20772. {
  20773. name: "Galactic",
  20774. height: math.unit(50, "AU")
  20775. },
  20776. ]
  20777. ))
  20778. characterMakers.push(() => makeCharacter(
  20779. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20780. {
  20781. front: {
  20782. height: math.unit(5 + 6 / 12, "feet"),
  20783. weight: math.unit(220, "lb"),
  20784. name: "Front",
  20785. image: {
  20786. source: "./media/characters/amethyst/front.svg",
  20787. extra: 2078 / 2040,
  20788. bottom: 0.045
  20789. }
  20790. },
  20791. back: {
  20792. height: math.unit(5 + 6 / 12, "feet"),
  20793. weight: math.unit(220, "lb"),
  20794. name: "Back",
  20795. image: {
  20796. source: "./media/characters/amethyst/back.svg",
  20797. extra: 2021 / 1989,
  20798. bottom: 0.02
  20799. }
  20800. },
  20801. },
  20802. [
  20803. {
  20804. name: "Normal",
  20805. height: math.unit(5 + 6 / 12, "feet"),
  20806. default: true
  20807. },
  20808. ]
  20809. ))
  20810. characterMakers.push(() => makeCharacter(
  20811. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20812. {
  20813. front: {
  20814. height: math.unit(4 + 11 / 12, "feet"),
  20815. weight: math.unit(120, "lb"),
  20816. name: "Front",
  20817. image: {
  20818. source: "./media/characters/yumi-akiyama/front.svg",
  20819. extra: 1327 / 1235,
  20820. bottom: 0.02
  20821. }
  20822. },
  20823. back: {
  20824. height: math.unit(4 + 11 / 12, "feet"),
  20825. weight: math.unit(120, "lb"),
  20826. name: "Back",
  20827. image: {
  20828. source: "./media/characters/yumi-akiyama/back.svg",
  20829. extra: 1287 / 1245,
  20830. bottom: 0.002
  20831. }
  20832. },
  20833. },
  20834. [
  20835. {
  20836. name: "Galactic",
  20837. height: math.unit(50, "galaxies"),
  20838. default: true
  20839. },
  20840. {
  20841. name: "Universal",
  20842. height: math.unit(100, "universes")
  20843. },
  20844. ]
  20845. ))
  20846. characterMakers.push(() => makeCharacter(
  20847. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20848. {
  20849. front: {
  20850. height: math.unit(8, "feet"),
  20851. weight: math.unit(500, "lb"),
  20852. name: "Front",
  20853. image: {
  20854. source: "./media/characters/rifter-yrmori/front.svg",
  20855. extra: 1180 / 1125,
  20856. bottom: 0.02
  20857. }
  20858. },
  20859. back: {
  20860. height: math.unit(8, "feet"),
  20861. weight: math.unit(500, "lb"),
  20862. name: "Back",
  20863. image: {
  20864. source: "./media/characters/rifter-yrmori/back.svg",
  20865. extra: 1190 / 1145,
  20866. bottom: 0.001
  20867. }
  20868. },
  20869. wings: {
  20870. height: math.unit(7.75, "feet"),
  20871. weight: math.unit(500, "lb"),
  20872. name: "Wings",
  20873. image: {
  20874. source: "./media/characters/rifter-yrmori/wings.svg",
  20875. extra: 1357 / 1285
  20876. }
  20877. },
  20878. maw: {
  20879. height: math.unit(0.8, "feet"),
  20880. name: "Maw",
  20881. image: {
  20882. source: "./media/characters/rifter-yrmori/maw.svg"
  20883. }
  20884. },
  20885. mawfront: {
  20886. height: math.unit(1.45, "feet"),
  20887. name: "Maw (Front)",
  20888. image: {
  20889. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20890. }
  20891. },
  20892. },
  20893. [
  20894. {
  20895. name: "Normal",
  20896. height: math.unit(8, "feet"),
  20897. default: true
  20898. },
  20899. {
  20900. name: "Macro",
  20901. height: math.unit(42, "meters")
  20902. },
  20903. ]
  20904. ))
  20905. characterMakers.push(() => makeCharacter(
  20906. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20907. {
  20908. were: {
  20909. height: math.unit(25 + 6 / 12, "feet"),
  20910. weight: math.unit(10000, "lb"),
  20911. name: "Were",
  20912. image: {
  20913. source: "./media/characters/tahajin/were.svg",
  20914. extra: 801 / 770,
  20915. bottom: 0.042
  20916. }
  20917. },
  20918. aquatic: {
  20919. height: math.unit(6 + 4 / 12, "feet"),
  20920. weight: math.unit(160, "lb"),
  20921. name: "Aquatic",
  20922. image: {
  20923. source: "./media/characters/tahajin/aquatic.svg",
  20924. extra: 572 / 542,
  20925. bottom: 0.04
  20926. }
  20927. },
  20928. chow: {
  20929. height: math.unit(8 + 11 / 12, "feet"),
  20930. weight: math.unit(450, "lb"),
  20931. name: "Chow",
  20932. image: {
  20933. source: "./media/characters/tahajin/chow.svg",
  20934. extra: 660 / 640,
  20935. bottom: 0.015
  20936. }
  20937. },
  20938. demiNaga: {
  20939. height: math.unit(6 + 8 / 12, "feet"),
  20940. weight: math.unit(300, "lb"),
  20941. name: "Demi Naga",
  20942. image: {
  20943. source: "./media/characters/tahajin/demi-naga.svg",
  20944. extra: 643 / 615,
  20945. bottom: 0.1
  20946. }
  20947. },
  20948. data: {
  20949. height: math.unit(5, "inches"),
  20950. weight: math.unit(0.1, "lb"),
  20951. name: "Data",
  20952. image: {
  20953. source: "./media/characters/tahajin/data.svg"
  20954. }
  20955. },
  20956. fluu: {
  20957. height: math.unit(5 + 7 / 12, "feet"),
  20958. weight: math.unit(140, "lb"),
  20959. name: "Fluu",
  20960. image: {
  20961. source: "./media/characters/tahajin/fluu.svg",
  20962. extra: 628 / 592,
  20963. bottom: 0.02
  20964. }
  20965. },
  20966. starWarrior: {
  20967. height: math.unit(4 + 5 / 12, "feet"),
  20968. weight: math.unit(50, "lb"),
  20969. name: "Star Warrior",
  20970. image: {
  20971. source: "./media/characters/tahajin/star-warrior.svg"
  20972. }
  20973. },
  20974. },
  20975. [
  20976. {
  20977. name: "Normal",
  20978. height: math.unit(25 + 6 / 12, "feet"),
  20979. default: true
  20980. },
  20981. ]
  20982. ))
  20983. characterMakers.push(() => makeCharacter(
  20984. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20985. {
  20986. front: {
  20987. height: math.unit(8, "feet"),
  20988. weight: math.unit(350, "lb"),
  20989. name: "Front",
  20990. image: {
  20991. source: "./media/characters/gabira/front.svg",
  20992. extra: 608 / 580,
  20993. bottom: 0.03
  20994. }
  20995. },
  20996. back: {
  20997. height: math.unit(8, "feet"),
  20998. weight: math.unit(350, "lb"),
  20999. name: "Back",
  21000. image: {
  21001. source: "./media/characters/gabira/back.svg",
  21002. extra: 608 / 580,
  21003. bottom: 0.03
  21004. }
  21005. },
  21006. },
  21007. [
  21008. {
  21009. name: "Normal",
  21010. height: math.unit(8, "feet"),
  21011. default: true
  21012. },
  21013. ]
  21014. ))
  21015. characterMakers.push(() => makeCharacter(
  21016. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21017. {
  21018. front: {
  21019. height: math.unit(5 + 3 / 12, "feet"),
  21020. weight: math.unit(137, "lb"),
  21021. name: "Front",
  21022. image: {
  21023. source: "./media/characters/sasha-katraine/front.svg",
  21024. bottom: 0.045
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Micro",
  21031. height: math.unit(5, "inches")
  21032. },
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(5 + 3 / 12, "feet"),
  21036. default: true
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21042. {
  21043. side: {
  21044. height: math.unit(4, "inches"),
  21045. weight: math.unit(200, "grams"),
  21046. name: "Side",
  21047. image: {
  21048. source: "./media/characters/der/side.svg",
  21049. extra: 719 / 400,
  21050. bottom: 30.6 / 749.9187
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Micro",
  21057. height: math.unit(4, "inches"),
  21058. default: true
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21064. {
  21065. side: {
  21066. height: math.unit(30, "meters"),
  21067. weight: math.unit(700, "tonnes"),
  21068. name: "Side",
  21069. image: {
  21070. source: "./media/characters/fixerdragon/side.svg",
  21071. extra: (1293.0514 - 116.03) / 1106.86,
  21072. bottom: 116.03 / 1293.0514
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Planck",
  21079. height: math.unit(1.6e-35, "meters")
  21080. },
  21081. {
  21082. name: "Micro",
  21083. height: math.unit(0.4, "meters")
  21084. },
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(30, "meters"),
  21088. default: true
  21089. },
  21090. {
  21091. name: "Megamacro",
  21092. height: math.unit(1.2, "megameters")
  21093. },
  21094. {
  21095. name: "Teramacro",
  21096. height: math.unit(130, "terameters")
  21097. },
  21098. {
  21099. name: "Yottamacro",
  21100. height: math.unit(6200, "yottameters")
  21101. },
  21102. ]
  21103. ));
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21106. {
  21107. front: {
  21108. height: math.unit(8, "feet"),
  21109. weight: math.unit(250, "lb"),
  21110. name: "Front",
  21111. image: {
  21112. source: "./media/characters/kite/front.svg",
  21113. extra: 2796 / 2659,
  21114. bottom: 0.002
  21115. }
  21116. },
  21117. },
  21118. [
  21119. {
  21120. name: "Normal",
  21121. height: math.unit(8, "feet"),
  21122. default: true
  21123. },
  21124. {
  21125. name: "Macro",
  21126. height: math.unit(360, "feet")
  21127. },
  21128. {
  21129. name: "Megamacro",
  21130. height: math.unit(1500, "feet")
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21136. {
  21137. front: {
  21138. height: math.unit(5 + 10 / 12, "feet"),
  21139. weight: math.unit(150, "lb"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/poojawa-vynar/front.svg",
  21143. extra: (1506.1547 - 55) / 1356.6,
  21144. bottom: 55 / 1506.1547
  21145. }
  21146. },
  21147. frontTailless: {
  21148. height: math.unit(5 + 10 / 12, "feet"),
  21149. weight: math.unit(150, "lb"),
  21150. name: "Front (Tailless)",
  21151. image: {
  21152. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21153. extra: (1506.1547 - 55) / 1356.6,
  21154. bottom: 55 / 1506.1547
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Normal",
  21161. height: math.unit(5 + 10 / 12, "feet"),
  21162. default: true
  21163. },
  21164. ]
  21165. ))
  21166. characterMakers.push(() => makeCharacter(
  21167. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21168. {
  21169. front: {
  21170. height: math.unit(293, "meters"),
  21171. weight: math.unit(70400, "tons"),
  21172. name: "Front",
  21173. image: {
  21174. source: "./media/characters/violette/front.svg",
  21175. extra: 1227 / 1180,
  21176. bottom: 0.005
  21177. }
  21178. },
  21179. back: {
  21180. height: math.unit(293, "meters"),
  21181. weight: math.unit(70400, "tons"),
  21182. name: "Back",
  21183. image: {
  21184. source: "./media/characters/violette/back.svg",
  21185. extra: 1227 / 1180,
  21186. bottom: 0.005
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Macro",
  21193. height: math.unit(293, "meters"),
  21194. default: true
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21200. {
  21201. front: {
  21202. height: math.unit(1050, "feet"),
  21203. weight: math.unit(200000, "tons"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/alessandra/front.svg",
  21207. extra: 960 / 912,
  21208. bottom: 0.06
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Macro",
  21215. height: math.unit(1050, "feet")
  21216. },
  21217. {
  21218. name: "Macro+",
  21219. height: math.unit(900, "meters"),
  21220. default: true
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(5, "feet"),
  21229. weight: math.unit(187, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/person/front.svg",
  21233. extra: 3087 / 2945,
  21234. bottom: 91 / 3181
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Micro",
  21241. height: math.unit(3, "inches")
  21242. },
  21243. {
  21244. name: "Normal",
  21245. height: math.unit(5, "feet"),
  21246. default: true
  21247. },
  21248. {
  21249. name: "Macro",
  21250. height: math.unit(90, "feet")
  21251. },
  21252. {
  21253. name: "Max Size",
  21254. height: math.unit(280, "feet")
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21260. {
  21261. front: {
  21262. height: math.unit(4.5, "meters"),
  21263. weight: math.unit(3200, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/ty/front.svg",
  21267. extra: 1038 / 960,
  21268. bottom: 31.156 / 1068
  21269. }
  21270. },
  21271. back: {
  21272. height: math.unit(4.5, "meters"),
  21273. weight: math.unit(3200, "lb"),
  21274. name: "Back",
  21275. image: {
  21276. source: "./media/characters/ty/back.svg",
  21277. extra: 1044 / 966,
  21278. bottom: 7.48 / 1049
  21279. }
  21280. },
  21281. },
  21282. [
  21283. {
  21284. name: "Normal",
  21285. height: math.unit(4.5, "meters"),
  21286. default: true
  21287. },
  21288. ]
  21289. ))
  21290. characterMakers.push(() => makeCharacter(
  21291. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21292. {
  21293. front: {
  21294. height: math.unit(5 + 4 / 12, "feet"),
  21295. weight: math.unit(115, "lb"),
  21296. name: "Front",
  21297. image: {
  21298. source: "./media/characters/rocky/front.svg",
  21299. extra: 1012 / 975,
  21300. bottom: 54 / 1066
  21301. }
  21302. },
  21303. },
  21304. [
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(5 + 4 / 12, "feet"),
  21308. default: true
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21314. {
  21315. upright: {
  21316. height: math.unit(6, "meters"),
  21317. weight: math.unit(4000, "kg"),
  21318. name: "Upright",
  21319. image: {
  21320. source: "./media/characters/ruin/upright.svg",
  21321. extra: 668 / 661,
  21322. bottom: 42 / 799.8396
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Normal",
  21329. height: math.unit(6, "meters"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21336. {
  21337. front: {
  21338. height: math.unit(5, "feet"),
  21339. weight: math.unit(106, "lb"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/robin/front.svg",
  21343. extra: 862 / 799,
  21344. bottom: 42.4 / 914.8856
  21345. }
  21346. },
  21347. },
  21348. [
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(5, "feet"),
  21352. default: true
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21358. {
  21359. side: {
  21360. height: math.unit(3, "feet"),
  21361. weight: math.unit(225, "lb"),
  21362. name: "Side",
  21363. image: {
  21364. source: "./media/characters/saian/side.svg",
  21365. extra: 566 / 356,
  21366. bottom: 79.7 / 643
  21367. }
  21368. },
  21369. maw: {
  21370. height: math.unit(2.85, "feet"),
  21371. name: "Maw",
  21372. image: {
  21373. source: "./media/characters/saian/maw.svg"
  21374. }
  21375. },
  21376. },
  21377. [
  21378. {
  21379. name: "Normal",
  21380. height: math.unit(3, "feet"),
  21381. default: true
  21382. },
  21383. ]
  21384. ))
  21385. characterMakers.push(() => makeCharacter(
  21386. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21387. {
  21388. side: {
  21389. height: math.unit(8, "feet"),
  21390. weight: math.unit(300, "lb"),
  21391. name: "Side",
  21392. image: {
  21393. source: "./media/characters/equus-silvermane/side.svg",
  21394. extra: 2176 / 2050,
  21395. bottom: 65.7 / 2245
  21396. }
  21397. },
  21398. front: {
  21399. height: math.unit(8, "feet"),
  21400. weight: math.unit(300, "lb"),
  21401. name: "Front",
  21402. image: {
  21403. source: "./media/characters/equus-silvermane/front.svg",
  21404. extra: 4633 / 4400,
  21405. bottom: 71.3 / 4706.915
  21406. }
  21407. },
  21408. sideStepping: {
  21409. height: math.unit(8, "feet"),
  21410. weight: math.unit(300, "lb"),
  21411. name: "Side (Stepping)",
  21412. image: {
  21413. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21414. extra: 1968 / 1860,
  21415. bottom: 16.4 / 1989
  21416. }
  21417. },
  21418. },
  21419. [
  21420. {
  21421. name: "Normal",
  21422. height: math.unit(8, "feet")
  21423. },
  21424. {
  21425. name: "Minimacro",
  21426. height: math.unit(75, "feet"),
  21427. default: true
  21428. },
  21429. {
  21430. name: "Macro",
  21431. height: math.unit(150, "feet")
  21432. },
  21433. {
  21434. name: "Macro+",
  21435. height: math.unit(1000, "feet")
  21436. },
  21437. {
  21438. name: "Megamacro",
  21439. height: math.unit(1, "mile")
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21445. {
  21446. side: {
  21447. height: math.unit(20, "feet"),
  21448. weight: math.unit(30000, "kg"),
  21449. name: "Side",
  21450. image: {
  21451. source: "./media/characters/windar/side.svg",
  21452. extra: 1491 / 1248,
  21453. bottom: 82.56 / 1568
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(20, "feet"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21467. {
  21468. side: {
  21469. height: math.unit(15.66, "feet"),
  21470. weight: math.unit(150, "lb"),
  21471. name: "Side",
  21472. image: {
  21473. source: "./media/characters/melody/side.svg",
  21474. extra: 1097 / 944,
  21475. bottom: 11.8 / 1109
  21476. }
  21477. },
  21478. sideOutfit: {
  21479. height: math.unit(15.66, "feet"),
  21480. weight: math.unit(150, "lb"),
  21481. name: "Side (Outfit)",
  21482. image: {
  21483. source: "./media/characters/melody/side-outfit.svg",
  21484. extra: 1097 / 944,
  21485. bottom: 11.8 / 1109
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(15.66, "feet"),
  21493. default: true
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21499. {
  21500. front: {
  21501. height: math.unit(8, "feet"),
  21502. weight: math.unit(325, "lb"),
  21503. name: "Front",
  21504. image: {
  21505. source: "./media/characters/windera/front.svg",
  21506. extra: 3180 / 2845,
  21507. bottom: 178 / 3365
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Normal",
  21514. height: math.unit(8, "feet"),
  21515. default: true
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21521. {
  21522. front: {
  21523. height: math.unit(28.75, "feet"),
  21524. weight: math.unit(2000, "kg"),
  21525. name: "Front",
  21526. image: {
  21527. source: "./media/characters/sonear/front.svg",
  21528. extra: 1041.1 / 964.9,
  21529. bottom: 53.7 / 1096.6
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(28.75, "feet"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21543. {
  21544. side: {
  21545. height: math.unit(25.5, "feet"),
  21546. weight: math.unit(23000, "kg"),
  21547. name: "Side",
  21548. image: {
  21549. source: "./media/characters/kanara/side.svg"
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(25.5, "feet"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21563. {
  21564. side: {
  21565. height: math.unit(10, "feet"),
  21566. weight: math.unit(1000, "kg"),
  21567. name: "Side",
  21568. image: {
  21569. source: "./media/characters/ereus/side.svg",
  21570. extra: 1157 / 959,
  21571. bottom: 153 / 1312.5
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(10, "feet"),
  21579. default: true
  21580. },
  21581. ]
  21582. ))
  21583. characterMakers.push(() => makeCharacter(
  21584. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21585. {
  21586. side: {
  21587. height: math.unit(4.5, "feet"),
  21588. weight: math.unit(500, "lb"),
  21589. name: "Side",
  21590. image: {
  21591. source: "./media/characters/e-ter/side.svg",
  21592. extra: 1550 / 1248,
  21593. bottom: 146 / 1694
  21594. }
  21595. },
  21596. },
  21597. [
  21598. {
  21599. name: "Normal",
  21600. height: math.unit(4.5, "feet"),
  21601. default: true
  21602. },
  21603. ]
  21604. ))
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21607. {
  21608. side: {
  21609. height: math.unit(9.7, "feet"),
  21610. weight: math.unit(4000, "kg"),
  21611. name: "Side",
  21612. image: {
  21613. source: "./media/characters/yamie/side.svg"
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(9.7, "feet"),
  21621. default: true
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(50, "feet"),
  21630. weight: math.unit(50000, "kg"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/anders/front.svg",
  21634. extra: 570 / 539,
  21635. bottom: 14.7 / 586.7
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Large",
  21642. height: math.unit(50, "feet")
  21643. },
  21644. {
  21645. name: "Macro",
  21646. height: math.unit(2000, "feet"),
  21647. default: true
  21648. },
  21649. {
  21650. name: "Megamacro",
  21651. height: math.unit(12, "miles")
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21657. {
  21658. front: {
  21659. height: math.unit(7 + 2 / 12, "feet"),
  21660. weight: math.unit(300, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/reban/front.svg",
  21664. extra: 516 / 487,
  21665. bottom: 42.82 / 558.356
  21666. }
  21667. },
  21668. dick: {
  21669. height: math.unit(7 / 5, "feet"),
  21670. name: "Dick",
  21671. image: {
  21672. source: "./media/characters/reban/dick.svg"
  21673. }
  21674. },
  21675. },
  21676. [
  21677. {
  21678. name: "Natural Height",
  21679. height: math.unit(7 + 2 / 12, "feet")
  21680. },
  21681. {
  21682. name: "Macro",
  21683. height: math.unit(500, "feet"),
  21684. default: true
  21685. },
  21686. {
  21687. name: "Canon Height",
  21688. height: math.unit(50, "AU")
  21689. },
  21690. ]
  21691. ))
  21692. characterMakers.push(() => makeCharacter(
  21693. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21694. {
  21695. front: {
  21696. height: math.unit(6, "feet"),
  21697. weight: math.unit(150, "lb"),
  21698. name: "Front",
  21699. image: {
  21700. source: "./media/characters/terrance-keayes/front.svg",
  21701. extra: 1.005,
  21702. bottom: 151 / 1615
  21703. }
  21704. },
  21705. side: {
  21706. height: math.unit(6, "feet"),
  21707. weight: math.unit(150, "lb"),
  21708. name: "Side",
  21709. image: {
  21710. source: "./media/characters/terrance-keayes/side.svg",
  21711. extra: 1.005,
  21712. bottom: 129.4 / 1544
  21713. }
  21714. },
  21715. back: {
  21716. height: math.unit(6, "feet"),
  21717. weight: math.unit(150, "lb"),
  21718. name: "Back",
  21719. image: {
  21720. source: "./media/characters/terrance-keayes/back.svg",
  21721. extra: 1.005,
  21722. bottom: 58.4 / 1557.3
  21723. }
  21724. },
  21725. dick: {
  21726. height: math.unit(6 * 0.208, "feet"),
  21727. name: "Dick",
  21728. image: {
  21729. source: "./media/characters/terrance-keayes/dick.svg"
  21730. }
  21731. },
  21732. },
  21733. [
  21734. {
  21735. name: "Canon Height",
  21736. height: math.unit(35, "miles"),
  21737. default: true
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21743. {
  21744. front: {
  21745. height: math.unit(6, "feet"),
  21746. weight: math.unit(150, "lb"),
  21747. name: "Front",
  21748. image: {
  21749. source: "./media/characters/ofelia/front.svg",
  21750. extra: 546 / 541,
  21751. bottom: 39 / 583
  21752. }
  21753. },
  21754. back: {
  21755. height: math.unit(6, "feet"),
  21756. weight: math.unit(150, "lb"),
  21757. name: "Back",
  21758. image: {
  21759. source: "./media/characters/ofelia/back.svg",
  21760. extra: 564 / 559.5,
  21761. bottom: 8.69 / 573.02
  21762. }
  21763. },
  21764. maw: {
  21765. height: math.unit(1, "feet"),
  21766. name: "Maw",
  21767. image: {
  21768. source: "./media/characters/ofelia/maw.svg"
  21769. }
  21770. },
  21771. foot: {
  21772. height: math.unit(1.949, "feet"),
  21773. name: "Foot",
  21774. image: {
  21775. source: "./media/characters/ofelia/foot.svg"
  21776. }
  21777. },
  21778. },
  21779. [
  21780. {
  21781. name: "Canon Height",
  21782. height: math.unit(2000, "miles"),
  21783. default: true
  21784. },
  21785. ]
  21786. ))
  21787. characterMakers.push(() => makeCharacter(
  21788. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21789. {
  21790. front: {
  21791. height: math.unit(6, "feet"),
  21792. weight: math.unit(150, "lb"),
  21793. name: "Front",
  21794. image: {
  21795. source: "./media/characters/samuel/front.svg",
  21796. extra: 265 / 258,
  21797. bottom: 2 / 266.1566
  21798. }
  21799. },
  21800. },
  21801. [
  21802. {
  21803. name: "Macro",
  21804. height: math.unit(100, "feet"),
  21805. default: true
  21806. },
  21807. {
  21808. name: "Full Size",
  21809. height: math.unit(1000, "miles")
  21810. },
  21811. ]
  21812. ))
  21813. characterMakers.push(() => makeCharacter(
  21814. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21815. {
  21816. front: {
  21817. height: math.unit(6, "feet"),
  21818. weight: math.unit(300, "lb"),
  21819. name: "Front",
  21820. image: {
  21821. source: "./media/characters/beishir-kiel/front.svg",
  21822. extra: 569 / 547,
  21823. bottom: 41.9 / 609
  21824. }
  21825. },
  21826. maw: {
  21827. height: math.unit(6 * 0.202, "feet"),
  21828. name: "Maw",
  21829. image: {
  21830. source: "./media/characters/beishir-kiel/maw.svg"
  21831. }
  21832. },
  21833. },
  21834. [
  21835. {
  21836. name: "Macro",
  21837. height: math.unit(300, "feet"),
  21838. default: true
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(5 + 8 / 12, "feet"),
  21847. weight: math.unit(120, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/logan-grey/front.svg",
  21851. extra: 2539 / 2393,
  21852. bottom: 97.6 / 2636.37
  21853. }
  21854. },
  21855. frontAlt: {
  21856. height: math.unit(5 + 8 / 12, "feet"),
  21857. weight: math.unit(120, "lb"),
  21858. name: "Front (Alt)",
  21859. image: {
  21860. source: "./media/characters/logan-grey/front-alt.svg",
  21861. extra: 958 / 893,
  21862. bottom: 15 / 970.768
  21863. }
  21864. },
  21865. back: {
  21866. height: math.unit(5 + 8 / 12, "feet"),
  21867. weight: math.unit(120, "lb"),
  21868. name: "Back",
  21869. image: {
  21870. source: "./media/characters/logan-grey/back.svg",
  21871. extra: 958 / 893,
  21872. bottom: 2.1881 / 970.9788
  21873. }
  21874. },
  21875. dick: {
  21876. height: math.unit(1.437, "feet"),
  21877. name: "Dick",
  21878. image: {
  21879. source: "./media/characters/logan-grey/dick.svg"
  21880. }
  21881. },
  21882. },
  21883. [
  21884. {
  21885. name: "Normal",
  21886. height: math.unit(5 + 8 / 12, "feet")
  21887. },
  21888. {
  21889. name: "The 500 Foot Femboy",
  21890. height: math.unit(500, "feet"),
  21891. default: true
  21892. },
  21893. {
  21894. name: "Megmacro",
  21895. height: math.unit(20, "miles")
  21896. },
  21897. ]
  21898. ))
  21899. characterMakers.push(() => makeCharacter(
  21900. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21901. {
  21902. front: {
  21903. height: math.unit(8 + 2 / 12, "feet"),
  21904. weight: math.unit(275, "lb"),
  21905. name: "Front",
  21906. image: {
  21907. source: "./media/characters/draganta/front.svg",
  21908. extra: 1177 / 1135,
  21909. bottom: 33.46 / 1212.1
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(8 + 6 / 12, "feet"),
  21917. default: true
  21918. },
  21919. {
  21920. name: "Macro",
  21921. height: math.unit(150, "feet")
  21922. },
  21923. {
  21924. name: "Megamacro",
  21925. height: math.unit(1000, "miles")
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21931. {
  21932. front: {
  21933. height: math.unit(1.72, "m"),
  21934. weight: math.unit(80, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/voski/front.svg",
  21938. extra: 2076.22 / 2022.4,
  21939. bottom: 102.7 / 2177.3866
  21940. }
  21941. },
  21942. frontNsfw: {
  21943. height: math.unit(1.72, "m"),
  21944. weight: math.unit(80, "lb"),
  21945. name: "Front (NSFW)",
  21946. image: {
  21947. source: "./media/characters/voski/front-nsfw.svg",
  21948. extra: 2076.22 / 2022.4,
  21949. bottom: 102.7 / 2177.3866
  21950. }
  21951. },
  21952. back: {
  21953. height: math.unit(1.72, "m"),
  21954. weight: math.unit(80, "lb"),
  21955. name: "Back",
  21956. image: {
  21957. source: "./media/characters/voski/back.svg",
  21958. extra: 2104 / 2051,
  21959. bottom: 10.45 / 2113.63
  21960. }
  21961. },
  21962. },
  21963. [
  21964. {
  21965. name: "Normal",
  21966. height: math.unit(1.72, "m")
  21967. },
  21968. {
  21969. name: "Macro",
  21970. height: math.unit(55, "m"),
  21971. default: true
  21972. },
  21973. {
  21974. name: "Macro+",
  21975. height: math.unit(300, "m")
  21976. },
  21977. {
  21978. name: "Macro++",
  21979. height: math.unit(700, "m")
  21980. },
  21981. {
  21982. name: "Macro+++",
  21983. height: math.unit(4500, "m")
  21984. },
  21985. {
  21986. name: "Macro++++",
  21987. height: math.unit(45, "km")
  21988. },
  21989. {
  21990. name: "Macro+++++",
  21991. height: math.unit(1220, "km")
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21997. {
  21998. front: {
  21999. height: math.unit(2.3, "m"),
  22000. weight: math.unit(304, "kg"),
  22001. name: "Front",
  22002. image: {
  22003. source: "./media/characters/icowom-lee/front.svg",
  22004. extra: 985 / 955,
  22005. bottom: 25.4 / 1012
  22006. }
  22007. },
  22008. fronttentacles: {
  22009. height: math.unit(2.3, "m"),
  22010. weight: math.unit(304, "kg"),
  22011. name: "Front-tentacles",
  22012. image: {
  22013. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22014. extra: 985 / 955,
  22015. bottom: 25.4 / 1012
  22016. }
  22017. },
  22018. back: {
  22019. height: math.unit(2.3, "m"),
  22020. weight: math.unit(304, "kg"),
  22021. name: "Back",
  22022. image: {
  22023. source: "./media/characters/icowom-lee/back.svg",
  22024. extra: 975 / 954,
  22025. bottom: 9.5 / 985
  22026. }
  22027. },
  22028. backtentacles: {
  22029. height: math.unit(2.3, "m"),
  22030. weight: math.unit(304, "kg"),
  22031. name: "Back-tentacles",
  22032. image: {
  22033. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22034. extra: 975 / 954,
  22035. bottom: 9.5 / 985
  22036. }
  22037. },
  22038. frontDressed: {
  22039. height: math.unit(2.3, "m"),
  22040. weight: math.unit(304, "kg"),
  22041. name: "Front (Dressed)",
  22042. image: {
  22043. source: "./media/characters/icowom-lee/front-dressed.svg",
  22044. extra: 3076 / 2933,
  22045. bottom: 51.4 / 3125.1889
  22046. }
  22047. },
  22048. rump: {
  22049. height: math.unit(0.776, "meters"),
  22050. name: "Rump",
  22051. image: {
  22052. source: "./media/characters/icowom-lee/rump.svg"
  22053. }
  22054. },
  22055. genitals: {
  22056. height: math.unit(0.78, "meters"),
  22057. name: "Genitals",
  22058. image: {
  22059. source: "./media/characters/icowom-lee/genitals.svg"
  22060. }
  22061. },
  22062. },
  22063. [
  22064. {
  22065. name: "Normal",
  22066. height: math.unit(2.3, "meters"),
  22067. default: true
  22068. },
  22069. {
  22070. name: "Macro",
  22071. height: math.unit(94, "meters"),
  22072. default: true
  22073. },
  22074. ]
  22075. ))
  22076. characterMakers.push(() => makeCharacter(
  22077. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22078. {
  22079. front: {
  22080. height: math.unit(22, "meters"),
  22081. weight: math.unit(21000, "kg"),
  22082. name: "Front",
  22083. image: {
  22084. source: "./media/characters/shock-diamond/front.svg",
  22085. extra: 2204 / 2053,
  22086. bottom: 65 / 2239.47
  22087. }
  22088. },
  22089. frontNude: {
  22090. height: math.unit(22, "meters"),
  22091. weight: math.unit(21000, "kg"),
  22092. name: "Front (Nude)",
  22093. image: {
  22094. source: "./media/characters/shock-diamond/front-nude.svg",
  22095. extra: 2514 / 2285,
  22096. bottom: 13 / 2527.56
  22097. }
  22098. },
  22099. },
  22100. [
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(3, "meters")
  22104. },
  22105. {
  22106. name: "Macro",
  22107. height: math.unit(22, "meters"),
  22108. default: true
  22109. },
  22110. ]
  22111. ))
  22112. characterMakers.push(() => makeCharacter(
  22113. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22114. {
  22115. front: {
  22116. height: math.unit(5 + 4 / 12, "feet"),
  22117. weight: math.unit(120, "lb"),
  22118. name: "Front",
  22119. image: {
  22120. source: "./media/characters/rory/front.svg",
  22121. extra: 589 / 556,
  22122. bottom: 45.7 / 635.76
  22123. }
  22124. },
  22125. frontNude: {
  22126. height: math.unit(5 + 4 / 12, "feet"),
  22127. weight: math.unit(120, "lb"),
  22128. name: "Front (Nude)",
  22129. image: {
  22130. source: "./media/characters/rory/front-nude.svg",
  22131. extra: 589 / 556,
  22132. bottom: 45.7 / 635.76
  22133. }
  22134. },
  22135. side: {
  22136. height: math.unit(5 + 4 / 12, "feet"),
  22137. weight: math.unit(120, "lb"),
  22138. name: "Side",
  22139. image: {
  22140. source: "./media/characters/rory/side.svg",
  22141. extra: 597 / 564,
  22142. bottom: 55 / 653
  22143. }
  22144. },
  22145. back: {
  22146. height: math.unit(5 + 4 / 12, "feet"),
  22147. weight: math.unit(120, "lb"),
  22148. name: "Back",
  22149. image: {
  22150. source: "./media/characters/rory/back.svg",
  22151. extra: 620 / 585,
  22152. bottom: 8.86 / 630.43
  22153. }
  22154. },
  22155. dick: {
  22156. height: math.unit(0.86, "feet"),
  22157. name: "Dick",
  22158. image: {
  22159. source: "./media/characters/rory/dick.svg"
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(5 + 4 / 12, "feet"),
  22167. default: true
  22168. },
  22169. {
  22170. name: "Macro",
  22171. height: math.unit(100, "feet")
  22172. },
  22173. {
  22174. name: "Macro+",
  22175. height: math.unit(140, "feet")
  22176. },
  22177. {
  22178. name: "Macro++",
  22179. height: math.unit(300, "feet")
  22180. },
  22181. ]
  22182. ))
  22183. characterMakers.push(() => makeCharacter(
  22184. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22185. {
  22186. front: {
  22187. height: math.unit(5 + 9 / 12, "feet"),
  22188. weight: math.unit(190, "lb"),
  22189. name: "Front",
  22190. image: {
  22191. source: "./media/characters/sprisk/front.svg",
  22192. extra: 1225 / 1180,
  22193. bottom: 42.7 / 1266.4
  22194. }
  22195. },
  22196. frontNsfw: {
  22197. height: math.unit(5 + 9 / 12, "feet"),
  22198. weight: math.unit(190, "lb"),
  22199. name: "Front (NSFW)",
  22200. image: {
  22201. source: "./media/characters/sprisk/front-nsfw.svg",
  22202. extra: 1225 / 1180,
  22203. bottom: 42.7 / 1266.4
  22204. }
  22205. },
  22206. back: {
  22207. height: math.unit(5 + 9 / 12, "feet"),
  22208. weight: math.unit(190, "lb"),
  22209. name: "Back",
  22210. image: {
  22211. source: "./media/characters/sprisk/back.svg",
  22212. extra: 1247 / 1200,
  22213. bottom: 5.6 / 1253.04
  22214. }
  22215. },
  22216. },
  22217. [
  22218. {
  22219. name: "Tiny",
  22220. height: math.unit(2, "inches")
  22221. },
  22222. {
  22223. name: "Normal",
  22224. height: math.unit(5 + 9 / 12, "feet"),
  22225. default: true
  22226. },
  22227. {
  22228. name: "Mini Macro",
  22229. height: math.unit(18, "feet")
  22230. },
  22231. {
  22232. name: "Macro",
  22233. height: math.unit(100, "feet")
  22234. },
  22235. {
  22236. name: "MACRO",
  22237. height: math.unit(50, "miles")
  22238. },
  22239. {
  22240. name: "M A C R O",
  22241. height: math.unit(300, "miles")
  22242. },
  22243. ]
  22244. ))
  22245. characterMakers.push(() => makeCharacter(
  22246. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22247. {
  22248. side: {
  22249. height: math.unit(15.6, "meters"),
  22250. weight: math.unit(700000, "kg"),
  22251. name: "Side",
  22252. image: {
  22253. source: "./media/characters/bunsen/side.svg",
  22254. extra: 1644 / 358
  22255. }
  22256. },
  22257. foot: {
  22258. height: math.unit(1.611 * 1644 / 358, "meter"),
  22259. name: "Foot",
  22260. image: {
  22261. source: "./media/characters/bunsen/foot.svg"
  22262. }
  22263. },
  22264. },
  22265. [
  22266. {
  22267. name: "Small",
  22268. height: math.unit(10, "feet")
  22269. },
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(15.6, "meters"),
  22273. default: true
  22274. },
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22279. {
  22280. front: {
  22281. height: math.unit(4 + 11 / 12, "feet"),
  22282. weight: math.unit(140, "lb"),
  22283. name: "Front",
  22284. image: {
  22285. source: "./media/characters/sesh/front.svg",
  22286. extra: 3420 / 3231,
  22287. bottom: 72 / 3949.5
  22288. }
  22289. },
  22290. },
  22291. [
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(4 + 11 / 12, "feet")
  22295. },
  22296. {
  22297. name: "Grown",
  22298. height: math.unit(15, "feet"),
  22299. default: true
  22300. },
  22301. {
  22302. name: "Macro",
  22303. height: math.unit(1500, "feet")
  22304. },
  22305. {
  22306. name: "Megamacro",
  22307. height: math.unit(30, "miles")
  22308. },
  22309. {
  22310. name: "Continental",
  22311. height: math.unit(3000, "miles")
  22312. },
  22313. {
  22314. name: "Gravity Mass",
  22315. height: math.unit(300000, "miles")
  22316. },
  22317. {
  22318. name: "Planet Buster",
  22319. height: math.unit(30000000, "miles")
  22320. },
  22321. {
  22322. name: "Big",
  22323. height: math.unit(3000000000, "miles")
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22329. {
  22330. front: {
  22331. height: math.unit(9, "feet"),
  22332. weight: math.unit(350, "lb"),
  22333. name: "Front",
  22334. image: {
  22335. source: "./media/characters/pepper/front.svg",
  22336. extra: 1448 / 1312,
  22337. bottom: 9.4 / 1457.88
  22338. }
  22339. },
  22340. back: {
  22341. height: math.unit(9, "feet"),
  22342. weight: math.unit(350, "lb"),
  22343. name: "Back",
  22344. image: {
  22345. source: "./media/characters/pepper/back.svg",
  22346. extra: 1423 / 1300,
  22347. bottom: 4.6 / 1429
  22348. }
  22349. },
  22350. maw: {
  22351. height: math.unit(0.932, "feet"),
  22352. name: "Maw",
  22353. image: {
  22354. source: "./media/characters/pepper/maw.svg"
  22355. }
  22356. },
  22357. },
  22358. [
  22359. {
  22360. name: "Normal",
  22361. height: math.unit(9, "feet"),
  22362. default: true
  22363. },
  22364. ]
  22365. ))
  22366. characterMakers.push(() => makeCharacter(
  22367. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22368. {
  22369. front: {
  22370. height: math.unit(6, "feet"),
  22371. weight: math.unit(150, "lb"),
  22372. name: "Front",
  22373. image: {
  22374. source: "./media/characters/maelstrom/front.svg",
  22375. extra: 2100 / 1883,
  22376. bottom: 94 / 2196.7
  22377. }
  22378. },
  22379. },
  22380. [
  22381. {
  22382. name: "Less Kaiju",
  22383. height: math.unit(200, "feet")
  22384. },
  22385. {
  22386. name: "Kaiju",
  22387. height: math.unit(400, "feet"),
  22388. default: true
  22389. },
  22390. {
  22391. name: "Kaiju-er",
  22392. height: math.unit(600, "feet")
  22393. },
  22394. ]
  22395. ))
  22396. characterMakers.push(() => makeCharacter(
  22397. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22398. {
  22399. front: {
  22400. height: math.unit(6 + 5 / 12, "feet"),
  22401. weight: math.unit(180, "lb"),
  22402. name: "Front",
  22403. image: {
  22404. source: "./media/characters/lexir/front.svg",
  22405. extra: 180 / 172,
  22406. bottom: 12 / 192
  22407. }
  22408. },
  22409. back: {
  22410. height: math.unit(6 + 5 / 12, "feet"),
  22411. weight: math.unit(180, "lb"),
  22412. name: "Back",
  22413. image: {
  22414. source: "./media/characters/lexir/back.svg",
  22415. extra: 183.84 / 175.5,
  22416. bottom: 3.1 / 187
  22417. }
  22418. },
  22419. },
  22420. [
  22421. {
  22422. name: "Very Smal",
  22423. height: math.unit(1, "nm")
  22424. },
  22425. {
  22426. name: "Normal",
  22427. height: math.unit(6 + 5 / 12, "feet"),
  22428. default: true
  22429. },
  22430. {
  22431. name: "Macro",
  22432. height: math.unit(1, "mile")
  22433. },
  22434. {
  22435. name: "Megamacro",
  22436. height: math.unit(50, "miles")
  22437. },
  22438. ]
  22439. ))
  22440. characterMakers.push(() => makeCharacter(
  22441. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22442. {
  22443. front: {
  22444. height: math.unit(1.5, "meters"),
  22445. weight: math.unit(100, "lb"),
  22446. name: "Front",
  22447. image: {
  22448. source: "./media/characters/maksio/front.svg",
  22449. extra: 1549 / 1531,
  22450. bottom: 123.7 / 1674.5429
  22451. }
  22452. },
  22453. back: {
  22454. height: math.unit(1.5, "meters"),
  22455. weight: math.unit(100, "lb"),
  22456. name: "Back",
  22457. image: {
  22458. source: "./media/characters/maksio/back.svg",
  22459. extra: 1541 / 1509,
  22460. bottom: 97 / 1639
  22461. }
  22462. },
  22463. hand: {
  22464. height: math.unit(0.621, "feet"),
  22465. name: "Hand",
  22466. image: {
  22467. source: "./media/characters/maksio/hand.svg"
  22468. }
  22469. },
  22470. foot: {
  22471. height: math.unit(1.611, "feet"),
  22472. name: "Foot",
  22473. image: {
  22474. source: "./media/characters/maksio/foot.svg"
  22475. }
  22476. },
  22477. },
  22478. [
  22479. {
  22480. name: "Shrunken",
  22481. height: math.unit(10, "cm")
  22482. },
  22483. {
  22484. name: "Normal",
  22485. height: math.unit(150, "cm"),
  22486. default: true
  22487. },
  22488. ]
  22489. ))
  22490. characterMakers.push(() => makeCharacter(
  22491. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22492. {
  22493. front: {
  22494. height: math.unit(100, "feet"),
  22495. name: "Front",
  22496. image: {
  22497. source: "./media/characters/erza-bear/front.svg",
  22498. extra: 2449 / 2390,
  22499. bottom: 46 / 2494
  22500. }
  22501. },
  22502. back: {
  22503. height: math.unit(100, "feet"),
  22504. name: "Back",
  22505. image: {
  22506. source: "./media/characters/erza-bear/back.svg",
  22507. extra: 2489 / 2430,
  22508. bottom: 85.4 / 2480
  22509. }
  22510. },
  22511. tail: {
  22512. height: math.unit(42, "feet"),
  22513. name: "Tail",
  22514. image: {
  22515. source: "./media/characters/erza-bear/tail.svg"
  22516. }
  22517. },
  22518. tongue: {
  22519. height: math.unit(8, "feet"),
  22520. name: "Tongue",
  22521. image: {
  22522. source: "./media/characters/erza-bear/tongue.svg"
  22523. }
  22524. },
  22525. dick: {
  22526. height: math.unit(10.5, "feet"),
  22527. name: "Dick",
  22528. image: {
  22529. source: "./media/characters/erza-bear/dick.svg"
  22530. }
  22531. },
  22532. dickVertical: {
  22533. height: math.unit(16.9, "feet"),
  22534. name: "Dick (Vertical)",
  22535. image: {
  22536. source: "./media/characters/erza-bear/dick-vertical.svg"
  22537. }
  22538. },
  22539. },
  22540. [
  22541. {
  22542. name: "Macro",
  22543. height: math.unit(100, "feet"),
  22544. default: true
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(172, "cm"),
  22553. weight: math.unit(73, "kg"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/violet-flor/front.svg",
  22557. extra: 1530 / 1442,
  22558. bottom: 61.9 / 1588.8
  22559. }
  22560. },
  22561. back: {
  22562. height: math.unit(180, "cm"),
  22563. weight: math.unit(73, "kg"),
  22564. name: "Back",
  22565. image: {
  22566. source: "./media/characters/violet-flor/back.svg",
  22567. extra: 1692 / 1630,
  22568. bottom: 20 / 1712
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Normal",
  22575. height: math.unit(172, "cm"),
  22576. default: true
  22577. },
  22578. ]
  22579. ))
  22580. characterMakers.push(() => makeCharacter(
  22581. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22582. {
  22583. front: {
  22584. height: math.unit(6, "feet"),
  22585. weight: math.unit(220, "lb"),
  22586. name: "Front",
  22587. image: {
  22588. source: "./media/characters/lynn-rhea/front.svg",
  22589. extra: 310 / 273
  22590. }
  22591. },
  22592. back: {
  22593. height: math.unit(6, "feet"),
  22594. weight: math.unit(220, "lb"),
  22595. name: "Back",
  22596. image: {
  22597. source: "./media/characters/lynn-rhea/back.svg",
  22598. extra: 310 / 273
  22599. }
  22600. },
  22601. dicks: {
  22602. height: math.unit(0.9, "feet"),
  22603. name: "Dicks",
  22604. image: {
  22605. source: "./media/characters/lynn-rhea/dicks.svg"
  22606. }
  22607. },
  22608. slit: {
  22609. height: math.unit(0.4, "feet"),
  22610. name: "Slit",
  22611. image: {
  22612. source: "./media/characters/lynn-rhea/slit.svg"
  22613. }
  22614. },
  22615. },
  22616. [
  22617. {
  22618. name: "Micro",
  22619. height: math.unit(1, "inch")
  22620. },
  22621. {
  22622. name: "Macro",
  22623. height: math.unit(60, "feet"),
  22624. default: true
  22625. },
  22626. {
  22627. name: "Megamacro",
  22628. height: math.unit(2, "miles")
  22629. },
  22630. {
  22631. name: "Gigamacro",
  22632. height: math.unit(3, "earths")
  22633. },
  22634. {
  22635. name: "Galactic",
  22636. height: math.unit(0.8, "galaxies")
  22637. },
  22638. ]
  22639. ))
  22640. characterMakers.push(() => makeCharacter(
  22641. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22642. {
  22643. front: {
  22644. height: math.unit(1600, "feet"),
  22645. weight: math.unit(85758785169, "kg"),
  22646. name: "Front",
  22647. image: {
  22648. source: "./media/characters/valathos/front.svg",
  22649. extra: 1451 / 1339
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Macro",
  22656. height: math.unit(1600, "feet"),
  22657. default: true
  22658. },
  22659. ]
  22660. ))
  22661. characterMakers.push(() => makeCharacter(
  22662. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22663. {
  22664. front: {
  22665. height: math.unit(7 + 5 / 12, "feet"),
  22666. weight: math.unit(300, "lb"),
  22667. name: "Front",
  22668. image: {
  22669. source: "./media/characters/azula/front.svg",
  22670. extra: 3208 / 2880,
  22671. bottom: 80.2 / 3277
  22672. }
  22673. },
  22674. back: {
  22675. height: math.unit(7 + 5 / 12, "feet"),
  22676. weight: math.unit(300, "lb"),
  22677. name: "Back",
  22678. image: {
  22679. source: "./media/characters/azula/back.svg",
  22680. extra: 3169 / 2822,
  22681. bottom: 150.6 / 3321
  22682. }
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(7 + 5 / 12, "feet"),
  22689. default: true
  22690. },
  22691. {
  22692. name: "Big",
  22693. height: math.unit(20, "feet")
  22694. },
  22695. ]
  22696. ))
  22697. characterMakers.push(() => makeCharacter(
  22698. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22699. {
  22700. front: {
  22701. height: math.unit(5 + 1 / 12, "feet"),
  22702. weight: math.unit(110, "lb"),
  22703. name: "Front",
  22704. image: {
  22705. source: "./media/characters/rupert/front.svg",
  22706. extra: 1549 / 1495,
  22707. bottom: 54.2 / 1604.4
  22708. }
  22709. },
  22710. },
  22711. [
  22712. {
  22713. name: "Normal",
  22714. height: math.unit(5 + 1 / 12, "feet"),
  22715. default: true
  22716. },
  22717. ]
  22718. ))
  22719. characterMakers.push(() => makeCharacter(
  22720. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22721. {
  22722. front: {
  22723. height: math.unit(8 + 4 / 12, "feet"),
  22724. weight: math.unit(350, "lb"),
  22725. name: "Front",
  22726. image: {
  22727. source: "./media/characters/sheera-castellar/front.svg",
  22728. extra: 1957 / 1894,
  22729. bottom: 26.97 / 1975.017
  22730. }
  22731. },
  22732. side: {
  22733. height: math.unit(8 + 4 / 12, "feet"),
  22734. weight: math.unit(350, "lb"),
  22735. name: "Side",
  22736. image: {
  22737. source: "./media/characters/sheera-castellar/side.svg",
  22738. extra: 1957 / 1894
  22739. }
  22740. },
  22741. back: {
  22742. height: math.unit(8 + 4 / 12, "feet"),
  22743. weight: math.unit(350, "lb"),
  22744. name: "Back",
  22745. image: {
  22746. source: "./media/characters/sheera-castellar/back.svg",
  22747. extra: 1957 / 1894
  22748. }
  22749. },
  22750. angled: {
  22751. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22752. weight: math.unit(350, "lb"),
  22753. name: "Angled",
  22754. image: {
  22755. source: "./media/characters/sheera-castellar/angled.svg",
  22756. extra: 1807 / 1707,
  22757. bottom: 68 / 1875
  22758. }
  22759. },
  22760. genitals: {
  22761. height: math.unit(2.2, "feet"),
  22762. name: "Genitals",
  22763. image: {
  22764. source: "./media/characters/sheera-castellar/genitals.svg"
  22765. }
  22766. },
  22767. taur: {
  22768. height: math.unit(10 + 6/12, "feet"),
  22769. name: "Taur",
  22770. image: {
  22771. source: "./media/characters/sheera-castellar/taur.svg",
  22772. extra: 2017/1909,
  22773. bottom: 185/2202
  22774. }
  22775. },
  22776. },
  22777. [
  22778. {
  22779. name: "Normal",
  22780. height: math.unit(8 + 4 / 12, "feet")
  22781. },
  22782. {
  22783. name: "Macro",
  22784. height: math.unit(150, "feet"),
  22785. default: true
  22786. },
  22787. {
  22788. name: "Macro+",
  22789. height: math.unit(800, "feet")
  22790. },
  22791. ]
  22792. ))
  22793. characterMakers.push(() => makeCharacter(
  22794. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22795. {
  22796. front: {
  22797. height: math.unit(6, "feet"),
  22798. weight: math.unit(150, "lb"),
  22799. name: "Front",
  22800. image: {
  22801. source: "./media/characters/jaipur/front.svg",
  22802. extra: 3860 / 3731,
  22803. bottom: 287 / 4140
  22804. }
  22805. },
  22806. back: {
  22807. height: math.unit(6, "feet"),
  22808. weight: math.unit(150, "lb"),
  22809. name: "Back",
  22810. image: {
  22811. source: "./media/characters/jaipur/back.svg",
  22812. extra: 4060 / 3930,
  22813. bottom: 151 / 4200
  22814. }
  22815. },
  22816. },
  22817. [
  22818. {
  22819. name: "Normal",
  22820. height: math.unit(1.85, "meters"),
  22821. default: true
  22822. },
  22823. {
  22824. name: "Macro",
  22825. height: math.unit(150, "meters")
  22826. },
  22827. {
  22828. name: "Macro+",
  22829. height: math.unit(0.5, "miles")
  22830. },
  22831. {
  22832. name: "Macro++",
  22833. height: math.unit(2.5, "miles")
  22834. },
  22835. {
  22836. name: "Macro+++",
  22837. height: math.unit(12, "miles")
  22838. },
  22839. {
  22840. name: "Macro++++",
  22841. height: math.unit(120, "miles")
  22842. },
  22843. {
  22844. name: "Macro+++++",
  22845. height: math.unit(1200, "miles")
  22846. },
  22847. ]
  22848. ))
  22849. characterMakers.push(() => makeCharacter(
  22850. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22851. {
  22852. front: {
  22853. height: math.unit(6, "feet"),
  22854. weight: math.unit(150, "lb"),
  22855. name: "Front",
  22856. image: {
  22857. source: "./media/characters/sheila-wolf/front.svg",
  22858. extra: 1931 / 1808,
  22859. bottom: 29.5 / 1960
  22860. }
  22861. },
  22862. dick: {
  22863. height: math.unit(1.464, "feet"),
  22864. name: "Dick",
  22865. image: {
  22866. source: "./media/characters/sheila-wolf/dick.svg"
  22867. }
  22868. },
  22869. muzzle: {
  22870. height: math.unit(0.513, "feet"),
  22871. name: "Muzzle",
  22872. image: {
  22873. source: "./media/characters/sheila-wolf/muzzle.svg"
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Macro",
  22880. height: math.unit(70, "feet"),
  22881. default: true
  22882. },
  22883. ]
  22884. ))
  22885. characterMakers.push(() => makeCharacter(
  22886. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22887. {
  22888. front: {
  22889. height: math.unit(32, "meters"),
  22890. weight: math.unit(300000, "kg"),
  22891. name: "Front",
  22892. image: {
  22893. source: "./media/characters/almor/front.svg",
  22894. extra: 1408 / 1322,
  22895. bottom: 94.6 / 1506.5
  22896. }
  22897. },
  22898. },
  22899. [
  22900. {
  22901. name: "Macro",
  22902. height: math.unit(32, "meters"),
  22903. default: true
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22909. {
  22910. front: {
  22911. height: math.unit(7, "feet"),
  22912. weight: math.unit(200, "lb"),
  22913. name: "Front",
  22914. image: {
  22915. source: "./media/characters/silver/front.svg",
  22916. extra: 472.1 / 450.5,
  22917. bottom: 26.5 / 499.424
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(7, "feet"),
  22925. default: true
  22926. },
  22927. {
  22928. name: "Macro",
  22929. height: math.unit(800, "feet")
  22930. },
  22931. {
  22932. name: "Megamacro",
  22933. height: math.unit(250, "miles")
  22934. },
  22935. ]
  22936. ))
  22937. characterMakers.push(() => makeCharacter(
  22938. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22939. {
  22940. front: {
  22941. height: math.unit(6, "feet"),
  22942. weight: math.unit(150, "lb"),
  22943. name: "Front",
  22944. image: {
  22945. source: "./media/characters/pliskin/front.svg",
  22946. extra: 1469 / 1359,
  22947. bottom: 70 / 1540
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Micro",
  22954. height: math.unit(3, "inches")
  22955. },
  22956. {
  22957. name: "Normal",
  22958. height: math.unit(5 + 11 / 12, "feet"),
  22959. default: true
  22960. },
  22961. {
  22962. name: "Macro",
  22963. height: math.unit(120, "feet")
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(6, "feet"),
  22972. weight: math.unit(150, "lb"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/sammy/front.svg",
  22976. extra: 1193 / 1089,
  22977. bottom: 30.5 / 1226
  22978. }
  22979. },
  22980. },
  22981. [
  22982. {
  22983. name: "Macro",
  22984. height: math.unit(1700, "feet"),
  22985. default: true
  22986. },
  22987. {
  22988. name: "Examacro",
  22989. height: math.unit(2.5e9, "lightyears")
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(21, "meters"),
  22998. weight: math.unit(12, "tonnes"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/kuru/front.svg",
  23002. extra: 4301 / 3785,
  23003. bottom: 371.3 / 4691
  23004. }
  23005. },
  23006. },
  23007. [
  23008. {
  23009. name: "Macro",
  23010. height: math.unit(21, "meters"),
  23011. default: true
  23012. },
  23013. ]
  23014. ))
  23015. characterMakers.push(() => makeCharacter(
  23016. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23017. {
  23018. front: {
  23019. height: math.unit(23, "meters"),
  23020. weight: math.unit(12.2, "tonnes"),
  23021. name: "Front",
  23022. image: {
  23023. source: "./media/characters/rakka/front.svg",
  23024. extra: 4670 / 4169,
  23025. bottom: 301 / 4968.7
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Macro",
  23032. height: math.unit(23, "meters"),
  23033. default: true
  23034. },
  23035. ]
  23036. ))
  23037. characterMakers.push(() => makeCharacter(
  23038. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23039. {
  23040. front: {
  23041. height: math.unit(6, "feet"),
  23042. weight: math.unit(150, "lb"),
  23043. name: "Front",
  23044. image: {
  23045. source: "./media/characters/rhys-feline/front.svg",
  23046. extra: 2488 / 2308,
  23047. bottom: 35.67 / 2519.19
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Really Small",
  23054. height: math.unit(1, "nm")
  23055. },
  23056. {
  23057. name: "Micro",
  23058. height: math.unit(4, "inches")
  23059. },
  23060. {
  23061. name: "Normal",
  23062. height: math.unit(4 + 10 / 12, "feet"),
  23063. default: true
  23064. },
  23065. {
  23066. name: "Macro",
  23067. height: math.unit(100, "feet")
  23068. },
  23069. {
  23070. name: "Megamacto",
  23071. height: math.unit(50, "miles")
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23077. {
  23078. side: {
  23079. height: math.unit(30, "feet"),
  23080. weight: math.unit(35000, "kg"),
  23081. name: "Side",
  23082. image: {
  23083. source: "./media/characters/alydar/side.svg",
  23084. extra: 234 / 222,
  23085. bottom: 6.5 / 241
  23086. }
  23087. },
  23088. front: {
  23089. height: math.unit(30, "feet"),
  23090. weight: math.unit(35000, "kg"),
  23091. name: "Front",
  23092. image: {
  23093. source: "./media/characters/alydar/front.svg",
  23094. extra: 223.37 / 210.2,
  23095. bottom: 22.3 / 246.76
  23096. }
  23097. },
  23098. top: {
  23099. height: math.unit(64.54, "feet"),
  23100. weight: math.unit(35000, "kg"),
  23101. name: "Top",
  23102. image: {
  23103. source: "./media/characters/alydar/top.svg"
  23104. }
  23105. },
  23106. anthro: {
  23107. height: math.unit(30, "feet"),
  23108. weight: math.unit(9000, "kg"),
  23109. name: "Anthro",
  23110. image: {
  23111. source: "./media/characters/alydar/anthro.svg",
  23112. extra: 432 / 421,
  23113. bottom: 7.18 / 440
  23114. }
  23115. },
  23116. maw: {
  23117. height: math.unit(11.693, "feet"),
  23118. name: "Maw",
  23119. image: {
  23120. source: "./media/characters/alydar/maw.svg"
  23121. }
  23122. },
  23123. head: {
  23124. height: math.unit(11.693, "feet"),
  23125. name: "Head",
  23126. image: {
  23127. source: "./media/characters/alydar/head.svg"
  23128. }
  23129. },
  23130. headAlt: {
  23131. height: math.unit(12.861, "feet"),
  23132. name: "Head (Alt)",
  23133. image: {
  23134. source: "./media/characters/alydar/head-alt.svg"
  23135. }
  23136. },
  23137. wing: {
  23138. height: math.unit(20.712, "feet"),
  23139. name: "Wing",
  23140. image: {
  23141. source: "./media/characters/alydar/wing.svg"
  23142. }
  23143. },
  23144. wingFeather: {
  23145. height: math.unit(9.662, "feet"),
  23146. name: "Wing Feather",
  23147. image: {
  23148. source: "./media/characters/alydar/wing-feather.svg"
  23149. }
  23150. },
  23151. countourFeather: {
  23152. height: math.unit(4.154, "feet"),
  23153. name: "Contour Feather",
  23154. image: {
  23155. source: "./media/characters/alydar/contour-feather.svg"
  23156. }
  23157. },
  23158. },
  23159. [
  23160. {
  23161. name: "Diplomatic",
  23162. height: math.unit(13, "feet"),
  23163. default: true
  23164. },
  23165. {
  23166. name: "Small",
  23167. height: math.unit(30, "feet")
  23168. },
  23169. {
  23170. name: "Normal",
  23171. height: math.unit(95, "feet"),
  23172. default: true
  23173. },
  23174. {
  23175. name: "Large",
  23176. height: math.unit(285, "feet")
  23177. },
  23178. {
  23179. name: "Incomprehensible",
  23180. height: math.unit(450, "megameters")
  23181. },
  23182. ]
  23183. ))
  23184. characterMakers.push(() => makeCharacter(
  23185. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23186. {
  23187. side: {
  23188. height: math.unit(11, "feet"),
  23189. weight: math.unit(1750, "kg"),
  23190. name: "Side",
  23191. image: {
  23192. source: "./media/characters/selicia/side.svg",
  23193. extra: 440 / 396,
  23194. bottom: 24.8 / 465.979
  23195. }
  23196. },
  23197. maw: {
  23198. height: math.unit(4.665, "feet"),
  23199. name: "Maw",
  23200. image: {
  23201. source: "./media/characters/selicia/maw.svg"
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(11, "feet"),
  23209. default: true
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23215. {
  23216. side: {
  23217. height: math.unit(2 + 6 / 12, "feet"),
  23218. weight: math.unit(30, "lb"),
  23219. name: "Side",
  23220. image: {
  23221. source: "./media/characters/layla/side.svg",
  23222. extra: 244 / 188,
  23223. bottom: 18.2 / 262.1
  23224. }
  23225. },
  23226. back: {
  23227. height: math.unit(2 + 6 / 12, "feet"),
  23228. weight: math.unit(30, "lb"),
  23229. name: "Back",
  23230. image: {
  23231. source: "./media/characters/layla/back.svg",
  23232. extra: 308 / 241.5,
  23233. bottom: 8.9 / 316.8
  23234. }
  23235. },
  23236. cumming: {
  23237. height: math.unit(2 + 6 / 12, "feet"),
  23238. weight: math.unit(30, "lb"),
  23239. name: "Cumming",
  23240. image: {
  23241. source: "./media/characters/layla/cumming.svg",
  23242. extra: 342 / 279,
  23243. bottom: 595 / 938
  23244. }
  23245. },
  23246. dickFlaccid: {
  23247. height: math.unit(2.595, "feet"),
  23248. name: "Flaccid Genitals",
  23249. image: {
  23250. source: "./media/characters/layla/dick-flaccid.svg"
  23251. }
  23252. },
  23253. dickErect: {
  23254. height: math.unit(2.359, "feet"),
  23255. name: "Erect Genitals",
  23256. image: {
  23257. source: "./media/characters/layla/dick-erect.svg"
  23258. }
  23259. },
  23260. dragon: {
  23261. height: math.unit(40, "feet"),
  23262. name: "Dragon",
  23263. image: {
  23264. source: "./media/characters/layla/dragon.svg",
  23265. extra: 610/535,
  23266. bottom: 367/977
  23267. }
  23268. },
  23269. taur: {
  23270. height: math.unit(30, "feet"),
  23271. name: "Taur",
  23272. image: {
  23273. source: "./media/characters/layla/taur.svg",
  23274. extra: 1268/1199,
  23275. bottom: 112/1380
  23276. }
  23277. },
  23278. },
  23279. [
  23280. {
  23281. name: "Micro",
  23282. height: math.unit(1, "inch")
  23283. },
  23284. {
  23285. name: "Small",
  23286. height: math.unit(1, "foot")
  23287. },
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(2 + 6 / 12, "feet"),
  23291. default: true
  23292. },
  23293. {
  23294. name: "Macro",
  23295. height: math.unit(200, "feet")
  23296. },
  23297. {
  23298. name: "Megamacro",
  23299. height: math.unit(1000, "miles")
  23300. },
  23301. {
  23302. name: "Planetary",
  23303. height: math.unit(8000, "miles")
  23304. },
  23305. {
  23306. name: "True Layla",
  23307. height: math.unit(200000 * 7, "multiverses")
  23308. },
  23309. ]
  23310. ))
  23311. characterMakers.push(() => makeCharacter(
  23312. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23313. {
  23314. back: {
  23315. height: math.unit(10.5, "feet"),
  23316. weight: math.unit(800, "lb"),
  23317. name: "Back",
  23318. image: {
  23319. source: "./media/characters/knox/back.svg",
  23320. extra: 1486 / 1089,
  23321. bottom: 107 / 1601.4
  23322. }
  23323. },
  23324. side: {
  23325. height: math.unit(10.5, "feet"),
  23326. weight: math.unit(800, "lb"),
  23327. name: "Side",
  23328. image: {
  23329. source: "./media/characters/knox/side.svg",
  23330. extra: 244 / 218,
  23331. bottom: 14 / 260
  23332. }
  23333. },
  23334. },
  23335. [
  23336. {
  23337. name: "Compact",
  23338. height: math.unit(10.5, "feet"),
  23339. default: true
  23340. },
  23341. {
  23342. name: "Dynamax",
  23343. height: math.unit(210, "feet")
  23344. },
  23345. {
  23346. name: "Full Macro",
  23347. height: math.unit(850, "feet")
  23348. },
  23349. ]
  23350. ))
  23351. characterMakers.push(() => makeCharacter(
  23352. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23353. {
  23354. front: {
  23355. height: math.unit(6, "feet"),
  23356. weight: math.unit(152, "lb"),
  23357. name: "Front",
  23358. image: {
  23359. source: "./media/characters/shin-pikachu/front.svg",
  23360. extra: 1574 / 1480,
  23361. bottom: 53.3 / 1626
  23362. }
  23363. },
  23364. hand: {
  23365. height: math.unit(1.055, "feet"),
  23366. name: "Hand",
  23367. image: {
  23368. source: "./media/characters/shin-pikachu/hand.svg"
  23369. }
  23370. },
  23371. foot: {
  23372. height: math.unit(1.1, "feet"),
  23373. name: "Foot",
  23374. image: {
  23375. source: "./media/characters/shin-pikachu/foot.svg"
  23376. }
  23377. },
  23378. collar: {
  23379. height: math.unit(0.386, "feet"),
  23380. name: "Collar",
  23381. image: {
  23382. source: "./media/characters/shin-pikachu/collar.svg"
  23383. }
  23384. },
  23385. },
  23386. [
  23387. {
  23388. name: "Smallest",
  23389. height: math.unit(0.5, "inches")
  23390. },
  23391. {
  23392. name: "Micro",
  23393. height: math.unit(6, "inches")
  23394. },
  23395. {
  23396. name: "Normal",
  23397. height: math.unit(6, "feet"),
  23398. default: true
  23399. },
  23400. {
  23401. name: "Macro",
  23402. height: math.unit(150, "feet")
  23403. },
  23404. ]
  23405. ))
  23406. characterMakers.push(() => makeCharacter(
  23407. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23408. {
  23409. front: {
  23410. height: math.unit(28, "feet"),
  23411. weight: math.unit(10500, "lb"),
  23412. name: "Front",
  23413. image: {
  23414. source: "./media/characters/kayda/front.svg",
  23415. extra: 1536 / 1428,
  23416. bottom: 68.7 / 1603
  23417. }
  23418. },
  23419. back: {
  23420. height: math.unit(28, "feet"),
  23421. weight: math.unit(10500, "lb"),
  23422. name: "Back",
  23423. image: {
  23424. source: "./media/characters/kayda/back.svg",
  23425. extra: 1557 / 1464,
  23426. bottom: 39.5 / 1597.49
  23427. }
  23428. },
  23429. dick: {
  23430. height: math.unit(3.858, "feet"),
  23431. name: "Dick",
  23432. image: {
  23433. source: "./media/characters/kayda/dick.svg"
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Macro",
  23440. height: math.unit(28, "feet"),
  23441. default: true
  23442. },
  23443. ]
  23444. ))
  23445. characterMakers.push(() => makeCharacter(
  23446. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23447. {
  23448. front: {
  23449. height: math.unit(10 + 11 / 12, "feet"),
  23450. weight: math.unit(1400, "lb"),
  23451. name: "Front",
  23452. image: {
  23453. source: "./media/characters/brian/front.svg",
  23454. extra: 737 / 692,
  23455. bottom: 55.4 / 785
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Normal",
  23462. height: math.unit(10 + 11 / 12, "feet"),
  23463. default: true
  23464. },
  23465. ]
  23466. ))
  23467. characterMakers.push(() => makeCharacter(
  23468. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23469. {
  23470. front: {
  23471. height: math.unit(5 + 8 / 12, "feet"),
  23472. weight: math.unit(140, "lb"),
  23473. name: "Front",
  23474. image: {
  23475. source: "./media/characters/khemri/front.svg",
  23476. extra: 4780 / 4059,
  23477. bottom: 80.1 / 4859.25
  23478. }
  23479. },
  23480. },
  23481. [
  23482. {
  23483. name: "Micro",
  23484. height: math.unit(6, "inches")
  23485. },
  23486. {
  23487. name: "Normal",
  23488. height: math.unit(5 + 8 / 12, "feet"),
  23489. default: true
  23490. },
  23491. ]
  23492. ))
  23493. characterMakers.push(() => makeCharacter(
  23494. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23495. {
  23496. front: {
  23497. height: math.unit(13, "feet"),
  23498. weight: math.unit(1700, "lb"),
  23499. name: "Front",
  23500. image: {
  23501. source: "./media/characters/felix-braveheart/front.svg",
  23502. extra: 1222 / 1157,
  23503. bottom: 53.2 / 1280
  23504. }
  23505. },
  23506. back: {
  23507. height: math.unit(13, "feet"),
  23508. weight: math.unit(1700, "lb"),
  23509. name: "Back",
  23510. image: {
  23511. source: "./media/characters/felix-braveheart/back.svg",
  23512. extra: 1277 / 1203,
  23513. bottom: 50.2 / 1327
  23514. }
  23515. },
  23516. feral: {
  23517. height: math.unit(6, "feet"),
  23518. weight: math.unit(400, "lb"),
  23519. name: "Feral",
  23520. image: {
  23521. source: "./media/characters/felix-braveheart/feral.svg",
  23522. extra: 682 / 625,
  23523. bottom: 6.9 / 688
  23524. }
  23525. },
  23526. },
  23527. [
  23528. {
  23529. name: "Normal",
  23530. height: math.unit(13, "feet"),
  23531. default: true
  23532. },
  23533. ]
  23534. ))
  23535. characterMakers.push(() => makeCharacter(
  23536. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23537. {
  23538. side: {
  23539. height: math.unit(5 + 11 / 12, "feet"),
  23540. weight: math.unit(1400, "lb"),
  23541. name: "Side",
  23542. image: {
  23543. source: "./media/characters/shadow-blade/side.svg",
  23544. extra: 1726 / 1267,
  23545. bottom: 58.4 / 1785
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Normal",
  23552. height: math.unit(5 + 11 / 12, "feet"),
  23553. default: true
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23559. {
  23560. front: {
  23561. height: math.unit(1 + 6 / 12, "feet"),
  23562. weight: math.unit(25, "lb"),
  23563. name: "Front",
  23564. image: {
  23565. source: "./media/characters/karla-halldor/front.svg",
  23566. extra: 1459 / 1383,
  23567. bottom: 12 / 1472
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Normal",
  23574. height: math.unit(1 + 6 / 12, "feet"),
  23575. default: true
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(6 + 2 / 12, "feet"),
  23584. weight: math.unit(160, "lb"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/ariam/front.svg",
  23588. extra: 714 / 617,
  23589. bottom: 23.4 / 737,
  23590. }
  23591. },
  23592. squatting: {
  23593. height: math.unit(4.1, "feet"),
  23594. weight: math.unit(160, "lb"),
  23595. name: "Squatting",
  23596. image: {
  23597. source: "./media/characters/ariam/squatting.svg",
  23598. extra: 2617 / 2112,
  23599. bottom: 61.2 / 2681,
  23600. }
  23601. },
  23602. },
  23603. [
  23604. {
  23605. name: "Normal",
  23606. height: math.unit(6 + 2 / 12, "feet"),
  23607. default: true
  23608. },
  23609. {
  23610. name: "Normal+",
  23611. height: math.unit(4, "meters")
  23612. },
  23613. {
  23614. name: "Macro",
  23615. height: math.unit(50, "meters")
  23616. },
  23617. {
  23618. name: "Macro+",
  23619. height: math.unit(100, "meters")
  23620. },
  23621. {
  23622. name: "Megamacro",
  23623. height: math.unit(20, "km")
  23624. },
  23625. ]
  23626. ))
  23627. characterMakers.push(() => makeCharacter(
  23628. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23629. {
  23630. front: {
  23631. height: math.unit(1.67, "meters"),
  23632. weight: math.unit(140, "lb"),
  23633. name: "Front",
  23634. image: {
  23635. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23636. extra: 438 / 410,
  23637. bottom: 0.75 / 439
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Shrunken",
  23644. height: math.unit(7.6, "cm")
  23645. },
  23646. {
  23647. name: "Human Scale",
  23648. height: math.unit(1.67, "meters")
  23649. },
  23650. {
  23651. name: "Wolxi Scale",
  23652. height: math.unit(36.7, "meters"),
  23653. default: true
  23654. },
  23655. ]
  23656. ))
  23657. characterMakers.push(() => makeCharacter(
  23658. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23659. {
  23660. front: {
  23661. height: math.unit(1.73, "meters"),
  23662. weight: math.unit(240, "lb"),
  23663. name: "Front",
  23664. image: {
  23665. source: "./media/characters/izue-two-mothers/front.svg",
  23666. extra: 469 / 437,
  23667. bottom: 1.24 / 470.6
  23668. }
  23669. },
  23670. },
  23671. [
  23672. {
  23673. name: "Shrunken",
  23674. height: math.unit(7.86, "cm")
  23675. },
  23676. {
  23677. name: "Human Scale",
  23678. height: math.unit(1.73, "meters")
  23679. },
  23680. {
  23681. name: "Wolxi Scale",
  23682. height: math.unit(38, "meters"),
  23683. default: true
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23689. {
  23690. front: {
  23691. height: math.unit(1.55, "meters"),
  23692. weight: math.unit(120, "lb"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/teeku-love-shack/front.svg",
  23696. extra: 387 / 362,
  23697. bottom: 1.51 / 388
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Shrunken",
  23704. height: math.unit(7, "cm")
  23705. },
  23706. {
  23707. name: "Human Scale",
  23708. height: math.unit(1.55, "meters")
  23709. },
  23710. {
  23711. name: "Wolxi Scale",
  23712. height: math.unit(34.1, "meters"),
  23713. default: true
  23714. },
  23715. ]
  23716. ))
  23717. characterMakers.push(() => makeCharacter(
  23718. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23719. {
  23720. front: {
  23721. height: math.unit(1.83, "meters"),
  23722. weight: math.unit(135, "lb"),
  23723. name: "Front",
  23724. image: {
  23725. source: "./media/characters/dejma-the-red/front.svg",
  23726. extra: 480 / 458,
  23727. bottom: 1.8 / 482
  23728. }
  23729. },
  23730. },
  23731. [
  23732. {
  23733. name: "Shrunken",
  23734. height: math.unit(8.3, "cm")
  23735. },
  23736. {
  23737. name: "Human Scale",
  23738. height: math.unit(1.83, "meters")
  23739. },
  23740. {
  23741. name: "Wolxi Scale",
  23742. height: math.unit(40, "meters"),
  23743. default: true
  23744. },
  23745. ]
  23746. ))
  23747. characterMakers.push(() => makeCharacter(
  23748. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23749. {
  23750. front: {
  23751. height: math.unit(1.78, "meters"),
  23752. weight: math.unit(65, "kg"),
  23753. name: "Front",
  23754. image: {
  23755. source: "./media/characters/aki/front.svg",
  23756. extra: 452 / 415
  23757. }
  23758. },
  23759. frontNsfw: {
  23760. height: math.unit(1.78, "meters"),
  23761. weight: math.unit(65, "kg"),
  23762. name: "Front (NSFW)",
  23763. image: {
  23764. source: "./media/characters/aki/front-nsfw.svg",
  23765. extra: 452 / 415
  23766. }
  23767. },
  23768. back: {
  23769. height: math.unit(1.78, "meters"),
  23770. weight: math.unit(65, "kg"),
  23771. name: "Back",
  23772. image: {
  23773. source: "./media/characters/aki/back.svg",
  23774. extra: 452 / 415
  23775. }
  23776. },
  23777. rump: {
  23778. height: math.unit(2.05, "feet"),
  23779. name: "Rump",
  23780. image: {
  23781. source: "./media/characters/aki/rump.svg"
  23782. }
  23783. },
  23784. dick: {
  23785. height: math.unit(0.95, "feet"),
  23786. name: "Dick",
  23787. image: {
  23788. source: "./media/characters/aki/dick.svg"
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Micro",
  23795. height: math.unit(15, "cm")
  23796. },
  23797. {
  23798. name: "Normal",
  23799. height: math.unit(178, "cm"),
  23800. default: true
  23801. },
  23802. {
  23803. name: "Macro",
  23804. height: math.unit(214, "m")
  23805. },
  23806. {
  23807. name: "Macro+",
  23808. height: math.unit(534, "m")
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23814. {
  23815. front: {
  23816. height: math.unit(5 + 5 / 12, "feet"),
  23817. weight: math.unit(120, "lb"),
  23818. name: "Front",
  23819. image: {
  23820. source: "./media/characters/ari/front.svg",
  23821. extra: 714.5 / 682,
  23822. bottom: 8 / 722.5
  23823. }
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Normal",
  23829. height: math.unit(5 + 5 / 12, "feet")
  23830. },
  23831. {
  23832. name: "Macro",
  23833. height: math.unit(100, "feet"),
  23834. default: true
  23835. },
  23836. {
  23837. name: "Megamacro",
  23838. height: math.unit(100, "miles")
  23839. },
  23840. {
  23841. name: "Gigamacro",
  23842. height: math.unit(80000, "miles")
  23843. },
  23844. ]
  23845. ))
  23846. characterMakers.push(() => makeCharacter(
  23847. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23848. {
  23849. side: {
  23850. height: math.unit(9, "feet"),
  23851. weight: math.unit(400, "kg"),
  23852. name: "Side",
  23853. image: {
  23854. source: "./media/characters/bolt/side.svg",
  23855. extra: 1126 / 896,
  23856. bottom: 60 / 1187.3,
  23857. }
  23858. },
  23859. },
  23860. [
  23861. {
  23862. name: "Micro",
  23863. height: math.unit(5, "inches")
  23864. },
  23865. {
  23866. name: "Normal",
  23867. height: math.unit(9, "feet"),
  23868. default: true
  23869. },
  23870. {
  23871. name: "Macro",
  23872. height: math.unit(700, "feet")
  23873. },
  23874. {
  23875. name: "Max Size",
  23876. height: math.unit(1.52e22, "yottameters")
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23882. {
  23883. front: {
  23884. height: math.unit(4.53, "meters"),
  23885. weight: math.unit(3, "tons"),
  23886. name: "Front",
  23887. image: {
  23888. source: "./media/characters/draekon-sylviar/front.svg",
  23889. extra: 1228 / 1068,
  23890. bottom: 41 / 1270
  23891. }
  23892. },
  23893. tail: {
  23894. height: math.unit(1.772, "meter"),
  23895. name: "Tail",
  23896. image: {
  23897. source: "./media/characters/draekon-sylviar/tail.svg"
  23898. }
  23899. },
  23900. head: {
  23901. height: math.unit(1.331, "meter"),
  23902. name: "Head",
  23903. image: {
  23904. source: "./media/characters/draekon-sylviar/head.svg"
  23905. }
  23906. },
  23907. hand: {
  23908. height: math.unit(0.564, "meter"),
  23909. name: "Hand",
  23910. image: {
  23911. source: "./media/characters/draekon-sylviar/hand.svg"
  23912. }
  23913. },
  23914. foot: {
  23915. height: math.unit(0.621, "meter"),
  23916. name: "Foot",
  23917. image: {
  23918. source: "./media/characters/draekon-sylviar/foot.svg",
  23919. bottom: 32 / 324
  23920. }
  23921. },
  23922. dick: {
  23923. height: math.unit(61, "cm"),
  23924. name: "Dick",
  23925. image: {
  23926. source: "./media/characters/draekon-sylviar/dick.svg"
  23927. }
  23928. },
  23929. dickseparated: {
  23930. height: math.unit(61, "cm"),
  23931. name: "Dick-separated",
  23932. image: {
  23933. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23934. }
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Small",
  23940. height: math.unit(4.53 / 2, "meters"),
  23941. default: true
  23942. },
  23943. {
  23944. name: "Normal",
  23945. height: math.unit(4.53, "meters"),
  23946. default: true
  23947. },
  23948. {
  23949. name: "Large",
  23950. height: math.unit(4.53 * 2, "meters"),
  23951. },
  23952. ]
  23953. ))
  23954. characterMakers.push(() => makeCharacter(
  23955. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23956. {
  23957. front: {
  23958. height: math.unit(6 + 2 / 12, "feet"),
  23959. weight: math.unit(180, "lb"),
  23960. name: "Front",
  23961. image: {
  23962. source: "./media/characters/brawler/front.svg",
  23963. extra: 3301 / 3027,
  23964. bottom: 138 / 3439
  23965. }
  23966. },
  23967. },
  23968. [
  23969. {
  23970. name: "Normal",
  23971. height: math.unit(6 + 2 / 12, "feet"),
  23972. default: true
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23978. {
  23979. front: {
  23980. height: math.unit(11, "feet"),
  23981. weight: math.unit(1000, "lb"),
  23982. name: "Front",
  23983. image: {
  23984. source: "./media/characters/alex/front.svg",
  23985. bottom: 44.5 / 620
  23986. }
  23987. },
  23988. },
  23989. [
  23990. {
  23991. name: "Micro",
  23992. height: math.unit(5, "inches")
  23993. },
  23994. {
  23995. name: "Normal",
  23996. height: math.unit(11, "feet"),
  23997. default: true
  23998. },
  23999. {
  24000. name: "Macro",
  24001. height: math.unit(9.5e9, "feet")
  24002. },
  24003. {
  24004. name: "Max Size",
  24005. height: math.unit(1.4e283, "yottameters")
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24011. {
  24012. female: {
  24013. height: math.unit(29.9, "m"),
  24014. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24015. name: "Female",
  24016. image: {
  24017. source: "./media/characters/zenari/female.svg",
  24018. extra: 3281.6 / 3217,
  24019. bottom: 72.2 / 3353
  24020. }
  24021. },
  24022. male: {
  24023. height: math.unit(27.7, "m"),
  24024. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24025. name: "Male",
  24026. image: {
  24027. source: "./media/characters/zenari/male.svg",
  24028. extra: 3008 / 2991,
  24029. bottom: 54.6 / 3069
  24030. }
  24031. },
  24032. },
  24033. [
  24034. {
  24035. name: "Macro",
  24036. height: math.unit(29.7, "meters"),
  24037. default: true
  24038. },
  24039. ]
  24040. ))
  24041. characterMakers.push(() => makeCharacter(
  24042. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24043. {
  24044. female: {
  24045. height: math.unit(23.8, "m"),
  24046. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24047. name: "Female",
  24048. image: {
  24049. source: "./media/characters/mactarian/female.svg",
  24050. extra: 2662 / 2569,
  24051. bottom: 73 / 2736
  24052. }
  24053. },
  24054. male: {
  24055. height: math.unit(23.8, "m"),
  24056. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24057. name: "Male",
  24058. image: {
  24059. source: "./media/characters/mactarian/male.svg",
  24060. extra: 2673 / 2600,
  24061. bottom: 76 / 2750
  24062. }
  24063. },
  24064. },
  24065. [
  24066. {
  24067. name: "Macro",
  24068. height: math.unit(23.8, "meters"),
  24069. default: true
  24070. },
  24071. ]
  24072. ))
  24073. characterMakers.push(() => makeCharacter(
  24074. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24075. {
  24076. female: {
  24077. height: math.unit(19.3, "m"),
  24078. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24079. name: "Female",
  24080. image: {
  24081. source: "./media/characters/umok/female.svg",
  24082. extra: 2186 / 2078,
  24083. bottom: 87 / 2277
  24084. }
  24085. },
  24086. male: {
  24087. height: math.unit(19.5, "m"),
  24088. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24089. name: "Male",
  24090. image: {
  24091. source: "./media/characters/umok/male.svg",
  24092. extra: 2233 / 2140,
  24093. bottom: 24.4 / 2258
  24094. }
  24095. },
  24096. },
  24097. [
  24098. {
  24099. name: "Macro",
  24100. height: math.unit(19.3, "meters"),
  24101. default: true
  24102. },
  24103. ]
  24104. ))
  24105. characterMakers.push(() => makeCharacter(
  24106. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24107. {
  24108. female: {
  24109. height: math.unit(26.15, "m"),
  24110. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24111. name: "Female",
  24112. image: {
  24113. source: "./media/characters/joraxian/female.svg",
  24114. extra: 2912 / 2824,
  24115. bottom: 36 / 2956
  24116. }
  24117. },
  24118. male: {
  24119. height: math.unit(25.4, "m"),
  24120. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24121. name: "Male",
  24122. image: {
  24123. source: "./media/characters/joraxian/male.svg",
  24124. extra: 2877 / 2721,
  24125. bottom: 82 / 2967
  24126. }
  24127. },
  24128. },
  24129. [
  24130. {
  24131. name: "Macro",
  24132. height: math.unit(26.15, "meters"),
  24133. default: true
  24134. },
  24135. ]
  24136. ))
  24137. characterMakers.push(() => makeCharacter(
  24138. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24139. {
  24140. female: {
  24141. height: math.unit(21.6, "m"),
  24142. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24143. name: "Female",
  24144. image: {
  24145. source: "./media/characters/sthara/female.svg",
  24146. extra: 2516 / 2347,
  24147. bottom: 21.5 / 2537
  24148. }
  24149. },
  24150. male: {
  24151. height: math.unit(24, "m"),
  24152. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24153. name: "Male",
  24154. image: {
  24155. source: "./media/characters/sthara/male.svg",
  24156. extra: 2732 / 2607,
  24157. bottom: 23 / 2732
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Macro",
  24164. height: math.unit(21.6, "meters"),
  24165. default: true
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24171. {
  24172. front: {
  24173. height: math.unit(6 + 4 / 12, "feet"),
  24174. weight: math.unit(175, "lb"),
  24175. name: "Front",
  24176. image: {
  24177. source: "./media/characters/luka-bryzant/front.svg",
  24178. extra: 311 / 289,
  24179. bottom: 4 / 315
  24180. }
  24181. },
  24182. back: {
  24183. height: math.unit(6 + 4 / 12, "feet"),
  24184. weight: math.unit(175, "lb"),
  24185. name: "Back",
  24186. image: {
  24187. source: "./media/characters/luka-bryzant/back.svg",
  24188. extra: 311 / 289,
  24189. bottom: 3.8 / 313.7
  24190. }
  24191. },
  24192. },
  24193. [
  24194. {
  24195. name: "Micro",
  24196. height: math.unit(10, "inches")
  24197. },
  24198. {
  24199. name: "Normal",
  24200. height: math.unit(6 + 4 / 12, "feet"),
  24201. default: true
  24202. },
  24203. {
  24204. name: "Large",
  24205. height: math.unit(12, "feet")
  24206. },
  24207. ]
  24208. ))
  24209. characterMakers.push(() => makeCharacter(
  24210. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24211. {
  24212. front: {
  24213. height: math.unit(5 + 7 / 12, "feet"),
  24214. weight: math.unit(185, "lb"),
  24215. name: "Front",
  24216. image: {
  24217. source: "./media/characters/aman-aquila/front.svg",
  24218. extra: 1013 / 976,
  24219. bottom: 45.6 / 1057
  24220. }
  24221. },
  24222. side: {
  24223. height: math.unit(5 + 7 / 12, "feet"),
  24224. weight: math.unit(185, "lb"),
  24225. name: "Side",
  24226. image: {
  24227. source: "./media/characters/aman-aquila/side.svg",
  24228. extra: 1054 / 1011,
  24229. bottom: 15 / 1070
  24230. }
  24231. },
  24232. back: {
  24233. height: math.unit(5 + 7 / 12, "feet"),
  24234. weight: math.unit(185, "lb"),
  24235. name: "Back",
  24236. image: {
  24237. source: "./media/characters/aman-aquila/back.svg",
  24238. extra: 1026 / 970,
  24239. bottom: 12 / 1039
  24240. }
  24241. },
  24242. head: {
  24243. height: math.unit(1.211, "feet"),
  24244. name: "Head",
  24245. image: {
  24246. source: "./media/characters/aman-aquila/head.svg",
  24247. }
  24248. },
  24249. },
  24250. [
  24251. {
  24252. name: "Minimicro",
  24253. height: math.unit(0.057, "inches")
  24254. },
  24255. {
  24256. name: "Micro",
  24257. height: math.unit(7, "inches")
  24258. },
  24259. {
  24260. name: "Mini",
  24261. height: math.unit(3 + 7 / 12, "feet")
  24262. },
  24263. {
  24264. name: "Normal",
  24265. height: math.unit(5 + 7 / 12, "feet"),
  24266. default: true
  24267. },
  24268. {
  24269. name: "Macro",
  24270. height: math.unit(157 + 7 / 12, "feet")
  24271. },
  24272. {
  24273. name: "Megamacro",
  24274. height: math.unit(1557 + 7 / 12, "feet")
  24275. },
  24276. {
  24277. name: "Gigamacro",
  24278. height: math.unit(15557 + 7 / 12, "feet")
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24284. {
  24285. front: {
  24286. height: math.unit(3 + 2 / 12, "inches"),
  24287. weight: math.unit(0.3, "ounces"),
  24288. name: "Front",
  24289. image: {
  24290. source: "./media/characters/hiphae/front.svg",
  24291. extra: 1931 / 1683,
  24292. bottom: 24 / 1955
  24293. }
  24294. },
  24295. },
  24296. [
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(3 + 1 / 2, "inches"),
  24300. default: true
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(5 + 10 / 12, "feet"),
  24309. weight: math.unit(165, "lb"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/nicky/front.svg",
  24313. extra: 3144 / 2886,
  24314. bottom: 45.6 / 3192
  24315. }
  24316. },
  24317. back: {
  24318. height: math.unit(5 + 10 / 12, "feet"),
  24319. weight: math.unit(165, "lb"),
  24320. name: "Back",
  24321. image: {
  24322. source: "./media/characters/nicky/back.svg",
  24323. extra: 3055 / 2804,
  24324. bottom: 28.4 / 3087
  24325. }
  24326. },
  24327. frontclothed: {
  24328. height: math.unit(5 + 10 / 12, "feet"),
  24329. weight: math.unit(165, "lb"),
  24330. name: "Front-clothed",
  24331. image: {
  24332. source: "./media/characters/nicky/front-clothed.svg",
  24333. extra: 3184.9 / 2926.9,
  24334. bottom: 86.5 / 3239.9
  24335. }
  24336. },
  24337. foot: {
  24338. height: math.unit(1.16, "feet"),
  24339. name: "Foot",
  24340. image: {
  24341. source: "./media/characters/nicky/foot.svg"
  24342. }
  24343. },
  24344. feet: {
  24345. height: math.unit(1.34, "feet"),
  24346. name: "Feet",
  24347. image: {
  24348. source: "./media/characters/nicky/feet.svg"
  24349. }
  24350. },
  24351. maw: {
  24352. height: math.unit(0.9, "feet"),
  24353. name: "Maw",
  24354. image: {
  24355. source: "./media/characters/nicky/maw.svg"
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Normal",
  24362. height: math.unit(5 + 10 / 12, "feet"),
  24363. default: true
  24364. },
  24365. {
  24366. name: "Macro",
  24367. height: math.unit(60, "feet")
  24368. },
  24369. {
  24370. name: "Megamacro",
  24371. height: math.unit(1, "mile")
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24377. {
  24378. side: {
  24379. height: math.unit(10, "feet"),
  24380. weight: math.unit(600, "lb"),
  24381. name: "Side",
  24382. image: {
  24383. source: "./media/characters/blair/side.svg",
  24384. bottom: 16.6 / 475,
  24385. extra: 458 / 431
  24386. }
  24387. },
  24388. },
  24389. [
  24390. {
  24391. name: "Micro",
  24392. height: math.unit(8, "inches")
  24393. },
  24394. {
  24395. name: "Normal",
  24396. height: math.unit(10, "feet"),
  24397. default: true
  24398. },
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(180, "feet")
  24402. },
  24403. ]
  24404. ))
  24405. characterMakers.push(() => makeCharacter(
  24406. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24407. {
  24408. front: {
  24409. height: math.unit(5 + 4 / 12, "feet"),
  24410. weight: math.unit(125, "lb"),
  24411. name: "Front",
  24412. image: {
  24413. source: "./media/characters/fisher/front.svg",
  24414. extra: 444 / 390,
  24415. bottom: 2 / 444.8
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Micro",
  24422. height: math.unit(4, "inches")
  24423. },
  24424. {
  24425. name: "Normal",
  24426. height: math.unit(5 + 4 / 12, "feet"),
  24427. default: true
  24428. },
  24429. {
  24430. name: "Macro",
  24431. height: math.unit(100, "feet")
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(6.71, "feet"),
  24440. weight: math.unit(200, "lb"),
  24441. capacity: math.unit(1000000, "people"),
  24442. name: "Front",
  24443. image: {
  24444. source: "./media/characters/gliss/front.svg",
  24445. extra: 2347 / 2231,
  24446. bottom: 113 / 2462
  24447. }
  24448. },
  24449. hammerspaceSize: {
  24450. height: math.unit(6.71 * 717, "feet"),
  24451. weight: math.unit(200, "lb"),
  24452. capacity: math.unit(1000000, "people"),
  24453. name: "Hammerspace Size",
  24454. image: {
  24455. source: "./media/characters/gliss/front.svg",
  24456. extra: 2347 / 2231,
  24457. bottom: 113 / 2462
  24458. }
  24459. },
  24460. },
  24461. [
  24462. {
  24463. name: "Normal",
  24464. height: math.unit(6.71, "feet"),
  24465. default: true
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24471. {
  24472. side: {
  24473. height: math.unit(1.44, "m"),
  24474. weight: math.unit(80, "kg"),
  24475. name: "Side",
  24476. image: {
  24477. source: "./media/characters/dune-anderson/side.svg",
  24478. bottom: 49 / 1426
  24479. }
  24480. },
  24481. },
  24482. [
  24483. {
  24484. name: "Wolf-sized",
  24485. height: math.unit(1.44, "meters")
  24486. },
  24487. {
  24488. name: "Normal",
  24489. height: math.unit(5.05, "meters"),
  24490. default: true
  24491. },
  24492. {
  24493. name: "Big",
  24494. height: math.unit(14.4, "meters")
  24495. },
  24496. {
  24497. name: "Huge",
  24498. height: math.unit(144, "meters")
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24504. {
  24505. front: {
  24506. height: math.unit(7, "feet"),
  24507. weight: math.unit(425, "lb"),
  24508. name: "Front",
  24509. image: {
  24510. source: "./media/characters/hind/front.svg",
  24511. extra: 2091 / 1860,
  24512. bottom: 129 / 2220
  24513. }
  24514. },
  24515. back: {
  24516. height: math.unit(7, "feet"),
  24517. weight: math.unit(425, "lb"),
  24518. name: "Back",
  24519. image: {
  24520. source: "./media/characters/hind/back.svg",
  24521. extra: 2091 / 1860,
  24522. bottom: 24.6 / 2309
  24523. }
  24524. },
  24525. tail: {
  24526. height: math.unit(2.8, "feet"),
  24527. name: "Tail",
  24528. image: {
  24529. source: "./media/characters/hind/tail.svg"
  24530. }
  24531. },
  24532. head: {
  24533. height: math.unit(2.55, "feet"),
  24534. name: "Head",
  24535. image: {
  24536. source: "./media/characters/hind/head.svg"
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "XS",
  24543. height: math.unit(0.7, "feet")
  24544. },
  24545. {
  24546. name: "Normal",
  24547. height: math.unit(7, "feet"),
  24548. default: true
  24549. },
  24550. {
  24551. name: "XL",
  24552. height: math.unit(70, "feet")
  24553. },
  24554. ]
  24555. ))
  24556. characterMakers.push(() => makeCharacter(
  24557. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24558. {
  24559. front: {
  24560. height: math.unit(6, "feet"),
  24561. weight: math.unit(150, "lb"),
  24562. name: "Front",
  24563. image: {
  24564. source: "./media/characters/dylan-skaven/front.svg",
  24565. extra: 2318 / 2063,
  24566. bottom: 93.4 / 2410
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Nano",
  24573. height: math.unit(1, "mm")
  24574. },
  24575. {
  24576. name: "Micro",
  24577. height: math.unit(1, "cm")
  24578. },
  24579. {
  24580. name: "Normal",
  24581. height: math.unit(2.1, "meters"),
  24582. default: true
  24583. },
  24584. ]
  24585. ))
  24586. characterMakers.push(() => makeCharacter(
  24587. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24588. {
  24589. front: {
  24590. height: math.unit(7 + 5 / 12, "feet"),
  24591. weight: math.unit(357, "lb"),
  24592. name: "Front",
  24593. image: {
  24594. source: "./media/characters/solex-draconov/front.svg",
  24595. extra: 1993 / 1865,
  24596. bottom: 117 / 2111
  24597. }
  24598. },
  24599. },
  24600. [
  24601. {
  24602. name: "Natural Height",
  24603. height: math.unit(7 + 5 / 12, "feet"),
  24604. default: true
  24605. },
  24606. {
  24607. name: "Macro",
  24608. height: math.unit(350, "feet")
  24609. },
  24610. {
  24611. name: "Macro+",
  24612. height: math.unit(1000, "feet")
  24613. },
  24614. {
  24615. name: "Megamacro",
  24616. height: math.unit(20, "km")
  24617. },
  24618. {
  24619. name: "Megamacro+",
  24620. height: math.unit(1000, "km")
  24621. },
  24622. {
  24623. name: "Gigamacro",
  24624. height: math.unit(2.5, "Gm")
  24625. },
  24626. {
  24627. name: "Teramacro",
  24628. height: math.unit(15, "Tm")
  24629. },
  24630. {
  24631. name: "Galactic",
  24632. height: math.unit(30, "Zm")
  24633. },
  24634. {
  24635. name: "Universal",
  24636. height: math.unit(21000, "Ym")
  24637. },
  24638. {
  24639. name: "Omniversal",
  24640. height: math.unit(9.861e50, "Ym")
  24641. },
  24642. {
  24643. name: "Existential",
  24644. height: math.unit(1e300, "meters")
  24645. },
  24646. ]
  24647. ))
  24648. characterMakers.push(() => makeCharacter(
  24649. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24650. {
  24651. side: {
  24652. height: math.unit(25, "feet"),
  24653. weight: math.unit(90000, "lb"),
  24654. name: "Side",
  24655. image: {
  24656. source: "./media/characters/mandarax/side.svg",
  24657. extra: 614 / 332,
  24658. bottom: 55 / 630
  24659. }
  24660. },
  24661. head: {
  24662. height: math.unit(11.4, "feet"),
  24663. name: "Head",
  24664. image: {
  24665. source: "./media/characters/mandarax/head.svg"
  24666. }
  24667. },
  24668. belly: {
  24669. height: math.unit(33, "feet"),
  24670. name: "Belly",
  24671. capacity: math.unit(500, "people"),
  24672. image: {
  24673. source: "./media/characters/mandarax/belly.svg"
  24674. }
  24675. },
  24676. dick: {
  24677. height: math.unit(8.46, "feet"),
  24678. name: "Dick",
  24679. image: {
  24680. source: "./media/characters/mandarax/dick.svg"
  24681. }
  24682. },
  24683. top: {
  24684. height: math.unit(28, "meters"),
  24685. name: "Top",
  24686. image: {
  24687. source: "./media/characters/mandarax/top.svg"
  24688. }
  24689. },
  24690. },
  24691. [
  24692. {
  24693. name: "Normal",
  24694. height: math.unit(25, "feet"),
  24695. default: true
  24696. },
  24697. ]
  24698. ))
  24699. characterMakers.push(() => makeCharacter(
  24700. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24701. {
  24702. front: {
  24703. height: math.unit(5, "feet"),
  24704. weight: math.unit(90, "lb"),
  24705. name: "Front",
  24706. image: {
  24707. source: "./media/characters/pixil/front.svg",
  24708. extra: 2000 / 1618,
  24709. bottom: 12.3 / 2011
  24710. }
  24711. },
  24712. },
  24713. [
  24714. {
  24715. name: "Normal",
  24716. height: math.unit(5, "feet"),
  24717. default: true
  24718. },
  24719. {
  24720. name: "Megamacro",
  24721. height: math.unit(10, "miles"),
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24727. {
  24728. front: {
  24729. height: math.unit(7 + 2 / 12, "feet"),
  24730. weight: math.unit(200, "lb"),
  24731. name: "Front",
  24732. image: {
  24733. source: "./media/characters/angel/front.svg",
  24734. extra: 1830 / 1737,
  24735. bottom: 22.6 / 1854,
  24736. }
  24737. },
  24738. },
  24739. [
  24740. {
  24741. name: "Normal",
  24742. height: math.unit(7 + 2 / 12, "feet"),
  24743. default: true
  24744. },
  24745. {
  24746. name: "Macro",
  24747. height: math.unit(1000, "feet")
  24748. },
  24749. {
  24750. name: "Megamacro",
  24751. height: math.unit(2, "miles")
  24752. },
  24753. {
  24754. name: "Gigamacro",
  24755. height: math.unit(20, "earths")
  24756. },
  24757. ]
  24758. ))
  24759. characterMakers.push(() => makeCharacter(
  24760. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24761. {
  24762. front: {
  24763. height: math.unit(5, "feet"),
  24764. weight: math.unit(180, "lb"),
  24765. name: "Front",
  24766. image: {
  24767. source: "./media/characters/mekana/front.svg",
  24768. extra: 1671 / 1605,
  24769. bottom: 3.5 / 1691
  24770. }
  24771. },
  24772. side: {
  24773. height: math.unit(5, "feet"),
  24774. weight: math.unit(180, "lb"),
  24775. name: "Side",
  24776. image: {
  24777. source: "./media/characters/mekana/side.svg",
  24778. extra: 1671 / 1605,
  24779. bottom: 3.5 / 1691
  24780. }
  24781. },
  24782. back: {
  24783. height: math.unit(5, "feet"),
  24784. weight: math.unit(180, "lb"),
  24785. name: "Back",
  24786. image: {
  24787. source: "./media/characters/mekana/back.svg",
  24788. extra: 1671 / 1605,
  24789. bottom: 3.5 / 1691
  24790. }
  24791. },
  24792. },
  24793. [
  24794. {
  24795. name: "Normal",
  24796. height: math.unit(5, "feet"),
  24797. default: true
  24798. },
  24799. ]
  24800. ))
  24801. characterMakers.push(() => makeCharacter(
  24802. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24803. {
  24804. front: {
  24805. height: math.unit(4 + 6 / 12, "feet"),
  24806. weight: math.unit(80, "lb"),
  24807. name: "Front",
  24808. image: {
  24809. source: "./media/characters/pixie/front.svg",
  24810. extra: 1924 / 1825,
  24811. bottom: 22.4 / 1946
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Normal",
  24818. height: math.unit(4 + 6 / 12, "feet"),
  24819. default: true
  24820. },
  24821. {
  24822. name: "Macro",
  24823. height: math.unit(40, "feet")
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24829. {
  24830. front: {
  24831. height: math.unit(2.1, "meters"),
  24832. weight: math.unit(200, "lb"),
  24833. name: "Front",
  24834. image: {
  24835. source: "./media/characters/the-lascivious/front.svg",
  24836. extra: 1 / 0.893,
  24837. bottom: 3.5 / 573.7
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Human Scale",
  24844. height: math.unit(2.1, "meters")
  24845. },
  24846. {
  24847. name: "Wolxi Scale",
  24848. height: math.unit(46.2, "m"),
  24849. default: true
  24850. },
  24851. {
  24852. name: "Boinker of Buildings",
  24853. height: math.unit(10, "km")
  24854. },
  24855. {
  24856. name: "Shagger of Skyscrapers",
  24857. height: math.unit(40, "km")
  24858. },
  24859. {
  24860. name: "Banger of Boroughs",
  24861. height: math.unit(4000, "km")
  24862. },
  24863. {
  24864. name: "Screwer of States",
  24865. height: math.unit(100000, "km")
  24866. },
  24867. {
  24868. name: "Pounder of Planets",
  24869. height: math.unit(2000000, "km")
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24875. {
  24876. front: {
  24877. height: math.unit(6, "feet"),
  24878. weight: math.unit(150, "lb"),
  24879. name: "Front",
  24880. image: {
  24881. source: "./media/characters/aj/front.svg",
  24882. extra: 2039 / 1562,
  24883. bottom: 40 / 2079
  24884. }
  24885. },
  24886. },
  24887. [
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(11 + 6 / 12, "feet"),
  24891. default: true
  24892. },
  24893. {
  24894. name: "Megamacro",
  24895. height: math.unit(60, "megameters")
  24896. },
  24897. ]
  24898. ))
  24899. characterMakers.push(() => makeCharacter(
  24900. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24901. {
  24902. side: {
  24903. height: math.unit(31 + 8 / 12, "feet"),
  24904. weight: math.unit(75000, "kg"),
  24905. name: "Side",
  24906. image: {
  24907. source: "./media/characters/koros/side.svg",
  24908. extra: 1442 / 1297,
  24909. bottom: 122.7 / 1562
  24910. }
  24911. },
  24912. dicksKingsCrown: {
  24913. height: math.unit(6, "feet"),
  24914. name: "Dicks (King's Crown)",
  24915. image: {
  24916. source: "./media/characters/koros/dicks-kings-crown.svg"
  24917. }
  24918. },
  24919. dicksTailSet: {
  24920. height: math.unit(3, "feet"),
  24921. name: "Dicks (Tail Set)",
  24922. image: {
  24923. source: "./media/characters/koros/dicks-tail-set.svg"
  24924. }
  24925. },
  24926. dickCumming: {
  24927. height: math.unit(7.98, "feet"),
  24928. name: "Dick (Cumming)",
  24929. image: {
  24930. source: "./media/characters/koros/dick-cumming.svg"
  24931. }
  24932. },
  24933. dicksBack: {
  24934. height: math.unit(5.9, "feet"),
  24935. name: "Dicks (Back)",
  24936. image: {
  24937. source: "./media/characters/koros/dicks-back.svg"
  24938. }
  24939. },
  24940. dicksFront: {
  24941. height: math.unit(3.72, "feet"),
  24942. name: "Dicks (Front)",
  24943. image: {
  24944. source: "./media/characters/koros/dicks-front.svg"
  24945. }
  24946. },
  24947. dicksPeeking: {
  24948. height: math.unit(3.0, "feet"),
  24949. name: "Dicks (Peeking)",
  24950. image: {
  24951. source: "./media/characters/koros/dicks-peeking.svg"
  24952. }
  24953. },
  24954. eye: {
  24955. height: math.unit(1.7, "feet"),
  24956. name: "Eye",
  24957. image: {
  24958. source: "./media/characters/koros/eye.svg"
  24959. }
  24960. },
  24961. headFront: {
  24962. height: math.unit(11.69, "feet"),
  24963. name: "Head (Front)",
  24964. image: {
  24965. source: "./media/characters/koros/head-front.svg"
  24966. }
  24967. },
  24968. headSide: {
  24969. height: math.unit(14, "feet"),
  24970. name: "Head (Side)",
  24971. image: {
  24972. source: "./media/characters/koros/head-side.svg"
  24973. }
  24974. },
  24975. leg: {
  24976. height: math.unit(17, "feet"),
  24977. name: "Leg",
  24978. image: {
  24979. source: "./media/characters/koros/leg.svg"
  24980. }
  24981. },
  24982. mawSide: {
  24983. height: math.unit(12.8, "feet"),
  24984. name: "Maw (Side)",
  24985. image: {
  24986. source: "./media/characters/koros/maw-side.svg"
  24987. }
  24988. },
  24989. mawSpitting: {
  24990. height: math.unit(17, "feet"),
  24991. name: "Maw (Spitting)",
  24992. image: {
  24993. source: "./media/characters/koros/maw-spitting.svg"
  24994. }
  24995. },
  24996. slit: {
  24997. height: math.unit(2.8, "feet"),
  24998. name: "Slit",
  24999. image: {
  25000. source: "./media/characters/koros/slit.svg"
  25001. }
  25002. },
  25003. stomach: {
  25004. height: math.unit(6.8, "feet"),
  25005. capacity: math.unit(20, "people"),
  25006. name: "Stomach",
  25007. image: {
  25008. source: "./media/characters/koros/stomach.svg"
  25009. }
  25010. },
  25011. wingspanBottom: {
  25012. height: math.unit(114, "feet"),
  25013. name: "Wingspan (Bottom)",
  25014. image: {
  25015. source: "./media/characters/koros/wingspan-bottom.svg"
  25016. }
  25017. },
  25018. wingspanTop: {
  25019. height: math.unit(104, "feet"),
  25020. name: "Wingspan (Top)",
  25021. image: {
  25022. source: "./media/characters/koros/wingspan-top.svg"
  25023. }
  25024. },
  25025. },
  25026. [
  25027. {
  25028. name: "Normal",
  25029. height: math.unit(31 + 8 / 12, "feet"),
  25030. default: true
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25036. {
  25037. front: {
  25038. height: math.unit(18 + 5 / 12, "feet"),
  25039. weight: math.unit(3750, "kg"),
  25040. name: "Front",
  25041. image: {
  25042. source: "./media/characters/vexx/front.svg",
  25043. extra: 426 / 396,
  25044. bottom: 31.5 / 458
  25045. }
  25046. },
  25047. maw: {
  25048. height: math.unit(6, "feet"),
  25049. name: "Maw",
  25050. image: {
  25051. source: "./media/characters/vexx/maw.svg"
  25052. }
  25053. },
  25054. },
  25055. [
  25056. {
  25057. name: "Normal",
  25058. height: math.unit(18 + 5 / 12, "feet"),
  25059. default: true
  25060. },
  25061. ]
  25062. ))
  25063. characterMakers.push(() => makeCharacter(
  25064. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25065. {
  25066. front: {
  25067. height: math.unit(17 + 6 / 12, "feet"),
  25068. weight: math.unit(150, "lb"),
  25069. name: "Front",
  25070. image: {
  25071. source: "./media/characters/baadra/front.svg",
  25072. extra: 3137 / 2890,
  25073. bottom: 168.4 / 3305
  25074. }
  25075. },
  25076. back: {
  25077. height: math.unit(17 + 6 / 12, "feet"),
  25078. weight: math.unit(150, "lb"),
  25079. name: "Back",
  25080. image: {
  25081. source: "./media/characters/baadra/back.svg",
  25082. extra: 3142 / 2890,
  25083. bottom: 220 / 3371
  25084. }
  25085. },
  25086. head: {
  25087. height: math.unit(5.45, "feet"),
  25088. name: "Head",
  25089. image: {
  25090. source: "./media/characters/baadra/head.svg"
  25091. }
  25092. },
  25093. headAngry: {
  25094. height: math.unit(4.95, "feet"),
  25095. name: "Head (Angry)",
  25096. image: {
  25097. source: "./media/characters/baadra/head-angry.svg"
  25098. }
  25099. },
  25100. headOpen: {
  25101. height: math.unit(6, "feet"),
  25102. name: "Head (Open)",
  25103. image: {
  25104. source: "./media/characters/baadra/head-open.svg"
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Normal",
  25111. height: math.unit(17 + 6 / 12, "feet"),
  25112. default: true
  25113. },
  25114. ]
  25115. ))
  25116. characterMakers.push(() => makeCharacter(
  25117. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25118. {
  25119. front: {
  25120. height: math.unit(7 + 3 / 12, "feet"),
  25121. weight: math.unit(180, "lb"),
  25122. name: "Front",
  25123. image: {
  25124. source: "./media/characters/juri/front.svg",
  25125. extra: 1401 / 1237,
  25126. bottom: 18.5 / 1418
  25127. }
  25128. },
  25129. side: {
  25130. height: math.unit(7 + 3 / 12, "feet"),
  25131. weight: math.unit(180, "lb"),
  25132. name: "Side",
  25133. image: {
  25134. source: "./media/characters/juri/side.svg",
  25135. extra: 1424 / 1242,
  25136. bottom: 18.5 / 1447
  25137. }
  25138. },
  25139. sitting: {
  25140. height: math.unit(6, "feet"),
  25141. weight: math.unit(180, "lb"),
  25142. name: "Sitting",
  25143. image: {
  25144. source: "./media/characters/juri/sitting.svg",
  25145. extra: 1270 / 1143,
  25146. bottom: 100 / 1343
  25147. }
  25148. },
  25149. back: {
  25150. height: math.unit(7 + 3 / 12, "feet"),
  25151. weight: math.unit(180, "lb"),
  25152. name: "Back",
  25153. image: {
  25154. source: "./media/characters/juri/back.svg",
  25155. extra: 1377 / 1240,
  25156. bottom: 23.7 / 1405
  25157. }
  25158. },
  25159. maw: {
  25160. height: math.unit(2.8, "feet"),
  25161. name: "Maw",
  25162. image: {
  25163. source: "./media/characters/juri/maw.svg"
  25164. }
  25165. },
  25166. stomach: {
  25167. height: math.unit(0.89, "feet"),
  25168. capacity: math.unit(4, "liters"),
  25169. name: "Stomach",
  25170. image: {
  25171. source: "./media/characters/juri/stomach.svg"
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Normal",
  25178. height: math.unit(7 + 3 / 12, "feet"),
  25179. default: true
  25180. },
  25181. ]
  25182. ))
  25183. characterMakers.push(() => makeCharacter(
  25184. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25185. {
  25186. fox: {
  25187. height: math.unit(5 + 6 / 12, "feet"),
  25188. weight: math.unit(140, "lb"),
  25189. name: "Fox",
  25190. image: {
  25191. source: "./media/characters/maxene-sita/fox.svg",
  25192. extra: 146 / 138,
  25193. bottom: 2.1 / 148.19
  25194. }
  25195. },
  25196. foxLaying: {
  25197. height: math.unit(1.70, "feet"),
  25198. weight: math.unit(140, "lb"),
  25199. name: "Fox (Laying)",
  25200. image: {
  25201. source: "./media/characters/maxene-sita/fox-laying.svg",
  25202. extra: 910 / 572,
  25203. bottom: 71 / 981
  25204. }
  25205. },
  25206. kitsune: {
  25207. height: math.unit(10, "feet"),
  25208. weight: math.unit(800, "lb"),
  25209. name: "Kitsune",
  25210. image: {
  25211. source: "./media/characters/maxene-sita/kitsune.svg",
  25212. extra: 185 / 176,
  25213. bottom: 4.7 / 189.9
  25214. }
  25215. },
  25216. hellhound: {
  25217. height: math.unit(10, "feet"),
  25218. weight: math.unit(700, "lb"),
  25219. name: "Hellhound",
  25220. image: {
  25221. source: "./media/characters/maxene-sita/hellhound.svg",
  25222. extra: 1600 / 1545,
  25223. bottom: 81 / 1681
  25224. }
  25225. },
  25226. },
  25227. [
  25228. {
  25229. name: "Normal",
  25230. height: math.unit(5 + 6 / 12, "feet"),
  25231. default: true
  25232. },
  25233. ]
  25234. ))
  25235. characterMakers.push(() => makeCharacter(
  25236. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25237. {
  25238. front: {
  25239. height: math.unit(3 + 4 / 12, "feet"),
  25240. weight: math.unit(70, "lb"),
  25241. name: "Front",
  25242. image: {
  25243. source: "./media/characters/maia/front.svg",
  25244. extra: 227 / 219.5,
  25245. bottom: 40 / 267
  25246. }
  25247. },
  25248. back: {
  25249. height: math.unit(3 + 4 / 12, "feet"),
  25250. weight: math.unit(70, "lb"),
  25251. name: "Back",
  25252. image: {
  25253. source: "./media/characters/maia/back.svg",
  25254. extra: 237 / 225
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Normal",
  25261. height: math.unit(3 + 4 / 12, "feet"),
  25262. default: true
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25268. {
  25269. front: {
  25270. height: math.unit(5 + 10 / 12, "feet"),
  25271. weight: math.unit(197, "lb"),
  25272. name: "Front",
  25273. image: {
  25274. source: "./media/characters/jabaro/front.svg",
  25275. extra: 225 / 216,
  25276. bottom: 5.06 / 230
  25277. }
  25278. },
  25279. back: {
  25280. height: math.unit(5 + 10 / 12, "feet"),
  25281. weight: math.unit(197, "lb"),
  25282. name: "Back",
  25283. image: {
  25284. source: "./media/characters/jabaro/back.svg",
  25285. extra: 225 / 219,
  25286. bottom: 1.9 / 227
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Normal",
  25293. height: math.unit(5 + 10 / 12, "feet"),
  25294. default: true
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(5 + 8 / 12, "feet"),
  25303. weight: math.unit(139, "lb"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/risa/front.svg",
  25307. extra: 270 / 260,
  25308. bottom: 11.2 / 282
  25309. }
  25310. },
  25311. back: {
  25312. height: math.unit(5 + 8 / 12, "feet"),
  25313. weight: math.unit(139, "lb"),
  25314. name: "Back",
  25315. image: {
  25316. source: "./media/characters/risa/back.svg",
  25317. extra: 264 / 255,
  25318. bottom: 4 / 268
  25319. }
  25320. },
  25321. },
  25322. [
  25323. {
  25324. name: "Normal",
  25325. height: math.unit(5 + 8 / 12, "feet"),
  25326. default: true
  25327. },
  25328. ]
  25329. ))
  25330. characterMakers.push(() => makeCharacter(
  25331. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25332. {
  25333. front: {
  25334. height: math.unit(2 + 11 / 12, "feet"),
  25335. weight: math.unit(30, "lb"),
  25336. name: "Front",
  25337. image: {
  25338. source: "./media/characters/weatley/front.svg",
  25339. bottom: 10.7 / 414,
  25340. extra: 403.5 / 362
  25341. }
  25342. },
  25343. back: {
  25344. height: math.unit(2 + 11 / 12, "feet"),
  25345. weight: math.unit(30, "lb"),
  25346. name: "Back",
  25347. image: {
  25348. source: "./media/characters/weatley/back.svg",
  25349. bottom: 10.7 / 414,
  25350. extra: 403.5 / 362
  25351. }
  25352. },
  25353. },
  25354. [
  25355. {
  25356. name: "Normal",
  25357. height: math.unit(2 + 11 / 12, "feet"),
  25358. default: true
  25359. },
  25360. ]
  25361. ))
  25362. characterMakers.push(() => makeCharacter(
  25363. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25364. {
  25365. front: {
  25366. height: math.unit(5 + 2 / 12, "feet"),
  25367. weight: math.unit(50, "kg"),
  25368. name: "Front",
  25369. image: {
  25370. source: "./media/characters/mercury-crescent/front.svg",
  25371. extra: 1088 / 1033,
  25372. bottom: 18.9 / 1109
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Normal",
  25379. height: math.unit(5 + 2 / 12, "feet"),
  25380. default: true
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(2, "feet"),
  25389. weight: math.unit(15, "kg"),
  25390. name: "Front",
  25391. image: {
  25392. source: "./media/characters/diamond-jones/front.svg",
  25393. bottom: 16 / 568
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Normal",
  25400. height: math.unit(2, "feet"),
  25401. default: true
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25407. {
  25408. front: {
  25409. height: math.unit(3, "feet"),
  25410. weight: math.unit(30, "kg"),
  25411. name: "Front",
  25412. image: {
  25413. source: "./media/characters/sweet-bit/front.svg",
  25414. extra: 675 / 567,
  25415. bottom: 27.7 / 703
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Normal",
  25422. height: math.unit(3, "feet"),
  25423. default: true
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25429. {
  25430. side: {
  25431. height: math.unit(9.178, "feet"),
  25432. weight: math.unit(500, "lb"),
  25433. name: "Side",
  25434. image: {
  25435. source: "./media/characters/umbrazen/side.svg",
  25436. extra: 1730 / 1473,
  25437. bottom: 34.6 / 1765
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Normal",
  25444. height: math.unit(9.178, "feet"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(10, "feet"),
  25454. weight: math.unit(750, "lb"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/arlist/front.svg",
  25458. extra: 961 / 778,
  25459. bottom: 6.2 / 986
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Normal",
  25466. height: math.unit(10, "feet"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(5 + 1 / 12, "feet"),
  25476. weight: math.unit(110, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/aradel/front.svg",
  25480. extra: 324 / 303,
  25481. bottom: 3.6 / 329.4
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Normal",
  25488. height: math.unit(5 + 1 / 12, "feet"),
  25489. default: true
  25490. },
  25491. ]
  25492. ))
  25493. characterMakers.push(() => makeCharacter(
  25494. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25495. {
  25496. front: {
  25497. height: math.unit(3 + 8 / 12, "feet"),
  25498. weight: math.unit(50, "lb"),
  25499. name: "Front",
  25500. image: {
  25501. source: "./media/characters/serryn/front.svg",
  25502. extra: 1792 / 1656,
  25503. bottom: 43.5 / 1840
  25504. }
  25505. },
  25506. },
  25507. [
  25508. {
  25509. name: "Normal",
  25510. height: math.unit(3 + 8 / 12, "feet"),
  25511. default: true
  25512. },
  25513. ]
  25514. ))
  25515. characterMakers.push(() => makeCharacter(
  25516. { name: "Xavier Thyme" },
  25517. {
  25518. front: {
  25519. height: math.unit(7 + 10 / 12, "feet"),
  25520. weight: math.unit(255, "lb"),
  25521. name: "Front",
  25522. image: {
  25523. source: "./media/characters/xavier-thyme/front.svg",
  25524. extra: 3733 / 3642,
  25525. bottom: 131 / 3869
  25526. }
  25527. },
  25528. frontRaven: {
  25529. height: math.unit(7 + 10 / 12, "feet"),
  25530. weight: math.unit(255, "lb"),
  25531. name: "Front (Raven)",
  25532. image: {
  25533. source: "./media/characters/xavier-thyme/front-raven.svg",
  25534. extra: 4385 / 3642,
  25535. bottom: 131 / 4517
  25536. }
  25537. },
  25538. },
  25539. [
  25540. {
  25541. name: "Normal",
  25542. height: math.unit(7 + 10 / 12, "feet"),
  25543. default: true
  25544. },
  25545. ]
  25546. ))
  25547. characterMakers.push(() => makeCharacter(
  25548. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25549. {
  25550. front: {
  25551. height: math.unit(1.6, "m"),
  25552. weight: math.unit(50, "kg"),
  25553. name: "Front",
  25554. image: {
  25555. source: "./media/characters/kiki/front.svg",
  25556. extra: 4682 / 3610,
  25557. bottom: 115 / 4777
  25558. }
  25559. },
  25560. },
  25561. [
  25562. {
  25563. name: "Normal",
  25564. height: math.unit(1.6, "meters"),
  25565. default: true
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25571. {
  25572. front: {
  25573. height: math.unit(50, "m"),
  25574. weight: math.unit(500, "tonnes"),
  25575. name: "Front",
  25576. image: {
  25577. source: "./media/characters/ryoko/front.svg",
  25578. extra: 4632 / 3926,
  25579. bottom: 193 / 4823
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(50, "meters"),
  25587. default: true
  25588. },
  25589. ]
  25590. ))
  25591. characterMakers.push(() => makeCharacter(
  25592. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25593. {
  25594. front: {
  25595. height: math.unit(30, "m"),
  25596. weight: math.unit(22, "tonnes"),
  25597. name: "Front",
  25598. image: {
  25599. source: "./media/characters/elio/front.svg",
  25600. extra: 4582 / 3720,
  25601. bottom: 236 / 4828
  25602. }
  25603. },
  25604. },
  25605. [
  25606. {
  25607. name: "Normal",
  25608. height: math.unit(30, "meters"),
  25609. default: true
  25610. },
  25611. ]
  25612. ))
  25613. characterMakers.push(() => makeCharacter(
  25614. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25615. {
  25616. front: {
  25617. height: math.unit(6 + 3 / 12, "feet"),
  25618. weight: math.unit(120, "lb"),
  25619. name: "Front",
  25620. image: {
  25621. source: "./media/characters/azura/front.svg",
  25622. extra: 1149 / 1135,
  25623. bottom: 45 / 1194
  25624. }
  25625. },
  25626. frontClothed: {
  25627. height: math.unit(6 + 3 / 12, "feet"),
  25628. weight: math.unit(120, "lb"),
  25629. name: "Front (Clothed)",
  25630. image: {
  25631. source: "./media/characters/azura/front-clothed.svg",
  25632. extra: 1149 / 1135,
  25633. bottom: 45 / 1194
  25634. }
  25635. },
  25636. },
  25637. [
  25638. {
  25639. name: "Normal",
  25640. height: math.unit(6 + 3 / 12, "feet"),
  25641. default: true
  25642. },
  25643. {
  25644. name: "Macro",
  25645. height: math.unit(20 + 6 / 12, "feet")
  25646. },
  25647. {
  25648. name: "Megamacro",
  25649. height: math.unit(12, "miles")
  25650. },
  25651. {
  25652. name: "Gigamacro",
  25653. height: math.unit(10000, "miles")
  25654. },
  25655. {
  25656. name: "Teramacro",
  25657. height: math.unit(900000, "miles")
  25658. },
  25659. ]
  25660. ))
  25661. characterMakers.push(() => makeCharacter(
  25662. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25663. {
  25664. front: {
  25665. height: math.unit(12, "feet"),
  25666. weight: math.unit(1, "ton"),
  25667. capacity: math.unit(660000, "gallons"),
  25668. name: "Front",
  25669. image: {
  25670. source: "./media/characters/zeus/front.svg",
  25671. extra: 5005 / 4717,
  25672. bottom: 363 / 5388
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Normal",
  25679. height: math.unit(12, "feet")
  25680. },
  25681. {
  25682. name: "Preferred Size",
  25683. height: math.unit(0.5, "miles"),
  25684. default: true
  25685. },
  25686. {
  25687. name: "Giga Horse",
  25688. height: math.unit(300, "miles")
  25689. },
  25690. {
  25691. name: "Riding Planets",
  25692. height: math.unit(30, "megameters")
  25693. },
  25694. {
  25695. name: "Cosmic Giant",
  25696. height: math.unit(3, "zettameters")
  25697. },
  25698. {
  25699. name: "Breeding God",
  25700. height: math.unit(9.92e22, "yottameters")
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25706. {
  25707. side: {
  25708. height: math.unit(9, "feet"),
  25709. weight: math.unit(1500, "kg"),
  25710. name: "Side",
  25711. image: {
  25712. source: "./media/characters/fang/side.svg",
  25713. extra: 924 / 866,
  25714. bottom: 47.5 / 972.3
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(9, "feet"),
  25722. default: true
  25723. },
  25724. {
  25725. name: "Macro",
  25726. height: math.unit(75 + 6 / 12, "feet")
  25727. },
  25728. {
  25729. name: "Teramacro",
  25730. height: math.unit(50000, "miles")
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25736. {
  25737. front: {
  25738. height: math.unit(10, "feet"),
  25739. weight: math.unit(2, "tons"),
  25740. name: "Front",
  25741. image: {
  25742. source: "./media/characters/rekhit/front.svg",
  25743. extra: 2796 / 2590,
  25744. bottom: 225 / 3022
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(10, "feet"),
  25752. default: true
  25753. },
  25754. {
  25755. name: "Macro",
  25756. height: math.unit(500, "feet")
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Dahlia Verrick" },
  25762. {
  25763. front: {
  25764. height: math.unit(7 + 6.451 / 12, "feet"),
  25765. weight: math.unit(310, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/dahlia-verrick/front.svg",
  25769. extra: 1488 / 1365,
  25770. bottom: 6.2 / 1495
  25771. }
  25772. },
  25773. back: {
  25774. height: math.unit(7 + 6.451 / 12, "feet"),
  25775. weight: math.unit(310, "lb"),
  25776. name: "Back",
  25777. image: {
  25778. source: "./media/characters/dahlia-verrick/back.svg",
  25779. extra: 1472 / 1351,
  25780. bottom: 5.28 / 1477
  25781. }
  25782. },
  25783. frontBusiness: {
  25784. height: math.unit(7 + 6.451 / 12, "feet"),
  25785. weight: math.unit(200, "lb"),
  25786. name: "Front (Business)",
  25787. image: {
  25788. source: "./media/characters/dahlia-verrick/front-business.svg",
  25789. extra: 1478 / 1381,
  25790. bottom: 5.5 / 1484
  25791. }
  25792. },
  25793. frontCasual: {
  25794. height: math.unit(7 + 6.451 / 12, "feet"),
  25795. weight: math.unit(200, "lb"),
  25796. name: "Front (Casual)",
  25797. image: {
  25798. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25799. extra: 1478 / 1381,
  25800. bottom: 5.5 / 1484
  25801. }
  25802. },
  25803. },
  25804. [
  25805. {
  25806. name: "Travel-Sized",
  25807. height: math.unit(7.45, "inches")
  25808. },
  25809. {
  25810. name: "Normal",
  25811. height: math.unit(7 + 6.451 / 12, "feet"),
  25812. default: true
  25813. },
  25814. {
  25815. name: "Hitting the Town",
  25816. height: math.unit(37 + 8 / 12, "feet")
  25817. },
  25818. {
  25819. name: "Stomp in the Suburbs",
  25820. height: math.unit(964 + 9.728 / 12, "feet")
  25821. },
  25822. {
  25823. name: "Sit on the City",
  25824. height: math.unit(61747 + 10.592 / 12, "feet")
  25825. },
  25826. {
  25827. name: "Glomp the Globe",
  25828. height: math.unit(252919327 + 4.832 / 12, "feet")
  25829. },
  25830. ]
  25831. ))
  25832. characterMakers.push(() => makeCharacter(
  25833. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25834. {
  25835. front: {
  25836. height: math.unit(6 + 4 / 12, "feet"),
  25837. weight: math.unit(320, "lb"),
  25838. name: "Front",
  25839. image: {
  25840. source: "./media/characters/balina-mahigan/front.svg",
  25841. extra: 447 / 428,
  25842. bottom: 18 / 466
  25843. }
  25844. },
  25845. back: {
  25846. height: math.unit(6 + 4 / 12, "feet"),
  25847. weight: math.unit(320, "lb"),
  25848. name: "Back",
  25849. image: {
  25850. source: "./media/characters/balina-mahigan/back.svg",
  25851. extra: 445 / 428,
  25852. bottom: 4.07 / 448
  25853. }
  25854. },
  25855. arm: {
  25856. height: math.unit(1.88, "feet"),
  25857. name: "Arm",
  25858. image: {
  25859. source: "./media/characters/balina-mahigan/arm.svg"
  25860. }
  25861. },
  25862. backPort: {
  25863. height: math.unit(0.685, "feet"),
  25864. name: "Back Port",
  25865. image: {
  25866. source: "./media/characters/balina-mahigan/back-port.svg"
  25867. }
  25868. },
  25869. hoofpaw: {
  25870. height: math.unit(1.41, "feet"),
  25871. name: "Hoofpaw",
  25872. image: {
  25873. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25874. }
  25875. },
  25876. leftHandBack: {
  25877. height: math.unit(0.938, "feet"),
  25878. name: "Left Hand (Back)",
  25879. image: {
  25880. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25881. }
  25882. },
  25883. leftHandFront: {
  25884. height: math.unit(0.938, "feet"),
  25885. name: "Left Hand (Front)",
  25886. image: {
  25887. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25888. }
  25889. },
  25890. rightHandBack: {
  25891. height: math.unit(0.95, "feet"),
  25892. name: "Right Hand (Back)",
  25893. image: {
  25894. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25895. }
  25896. },
  25897. rightHandFront: {
  25898. height: math.unit(0.95, "feet"),
  25899. name: "Right Hand (Front)",
  25900. image: {
  25901. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25902. }
  25903. },
  25904. },
  25905. [
  25906. {
  25907. name: "Normal",
  25908. height: math.unit(6 + 4 / 12, "feet"),
  25909. default: true
  25910. },
  25911. ]
  25912. ))
  25913. characterMakers.push(() => makeCharacter(
  25914. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25915. {
  25916. front: {
  25917. height: math.unit(6, "feet"),
  25918. weight: math.unit(320, "lb"),
  25919. name: "Front",
  25920. image: {
  25921. source: "./media/characters/balina-mejeri/front.svg",
  25922. extra: 517 / 488,
  25923. bottom: 44.2 / 561
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Normal",
  25930. height: math.unit(6 + 4 / 12, "feet")
  25931. },
  25932. {
  25933. name: "Business",
  25934. height: math.unit(155, "feet"),
  25935. default: true
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25941. {
  25942. kneeling: {
  25943. height: math.unit(6 + 4 / 12, "feet"),
  25944. weight: math.unit(300 * 20, "lb"),
  25945. name: "Kneeling",
  25946. image: {
  25947. source: "./media/characters/balbarian/kneeling.svg",
  25948. extra: 922 / 862,
  25949. bottom: 42.4 / 965
  25950. }
  25951. },
  25952. },
  25953. [
  25954. {
  25955. name: "Normal",
  25956. height: math.unit(6 + 4 / 12, "feet")
  25957. },
  25958. {
  25959. name: "Treasured",
  25960. height: math.unit(18 + 9 / 12, "feet"),
  25961. default: true
  25962. },
  25963. {
  25964. name: "Macro",
  25965. height: math.unit(900, "feet")
  25966. },
  25967. ]
  25968. ))
  25969. characterMakers.push(() => makeCharacter(
  25970. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25971. {
  25972. front: {
  25973. height: math.unit(6 + 4 / 12, "feet"),
  25974. weight: math.unit(325, "lb"),
  25975. name: "Front",
  25976. image: {
  25977. source: "./media/characters/balina-amarini/front.svg",
  25978. extra: 415 / 403,
  25979. bottom: 19 / 433.4
  25980. }
  25981. },
  25982. back: {
  25983. height: math.unit(6 + 4 / 12, "feet"),
  25984. weight: math.unit(325, "lb"),
  25985. name: "Back",
  25986. image: {
  25987. source: "./media/characters/balina-amarini/back.svg",
  25988. extra: 415 / 403,
  25989. bottom: 13.5 / 432
  25990. }
  25991. },
  25992. overdrive: {
  25993. height: math.unit(6 + 4 / 12, "feet"),
  25994. weight: math.unit(400, "lb"),
  25995. name: "Overdrive",
  25996. image: {
  25997. source: "./media/characters/balina-amarini/overdrive.svg",
  25998. extra: 269 / 259,
  25999. bottom: 12 / 282
  26000. }
  26001. },
  26002. },
  26003. [
  26004. {
  26005. name: "Boom",
  26006. height: math.unit(9 + 10 / 12, "feet"),
  26007. default: true
  26008. },
  26009. {
  26010. name: "Macro",
  26011. height: math.unit(280, "feet")
  26012. },
  26013. ]
  26014. ))
  26015. characterMakers.push(() => makeCharacter(
  26016. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26017. {
  26018. goddess: {
  26019. height: math.unit(600, "feet"),
  26020. weight: math.unit(2000000, "tons"),
  26021. name: "Goddess",
  26022. image: {
  26023. source: "./media/characters/lady-kubwa/goddess.svg",
  26024. extra: 1240.5 / 1223,
  26025. bottom: 22 / 1263
  26026. }
  26027. },
  26028. goddesser: {
  26029. height: math.unit(900, "feet"),
  26030. weight: math.unit(20000000, "lb"),
  26031. name: "Goddess-er",
  26032. image: {
  26033. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26034. extra: 899 / 888,
  26035. bottom: 12.6 / 912
  26036. }
  26037. },
  26038. },
  26039. [
  26040. {
  26041. name: "Macro",
  26042. height: math.unit(600, "feet"),
  26043. default: true
  26044. },
  26045. {
  26046. name: "Megamacro",
  26047. height: math.unit(250, "miles")
  26048. },
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26053. {
  26054. front: {
  26055. height: math.unit(7 + 7 / 12, "feet"),
  26056. weight: math.unit(250, "lb"),
  26057. name: "Front",
  26058. image: {
  26059. source: "./media/characters/tala-grovehorn/front.svg",
  26060. extra: 2636 / 2525,
  26061. bottom: 147 / 2781
  26062. }
  26063. },
  26064. back: {
  26065. height: math.unit(7 + 7 / 12, "feet"),
  26066. weight: math.unit(250, "lb"),
  26067. name: "Back",
  26068. image: {
  26069. source: "./media/characters/tala-grovehorn/back.svg",
  26070. extra: 2635 / 2539,
  26071. bottom: 100 / 2732.8
  26072. }
  26073. },
  26074. mouth: {
  26075. height: math.unit(1.15, "feet"),
  26076. name: "Mouth",
  26077. image: {
  26078. source: "./media/characters/tala-grovehorn/mouth.svg"
  26079. }
  26080. },
  26081. dick: {
  26082. height: math.unit(2.36, "feet"),
  26083. name: "Dick",
  26084. image: {
  26085. source: "./media/characters/tala-grovehorn/dick.svg"
  26086. }
  26087. },
  26088. slit: {
  26089. height: math.unit(0.61, "feet"),
  26090. name: "Slit",
  26091. image: {
  26092. source: "./media/characters/tala-grovehorn/slit.svg"
  26093. }
  26094. },
  26095. },
  26096. [
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26101. {
  26102. front: {
  26103. height: math.unit(7 + 7 / 12, "feet"),
  26104. weight: math.unit(225, "lb"),
  26105. name: "Front",
  26106. image: {
  26107. source: "./media/characters/epona/front.svg",
  26108. extra: 2445 / 2290,
  26109. bottom: 251 / 2696
  26110. }
  26111. },
  26112. back: {
  26113. height: math.unit(7 + 7 / 12, "feet"),
  26114. weight: math.unit(225, "lb"),
  26115. name: "Back",
  26116. image: {
  26117. source: "./media/characters/epona/back.svg",
  26118. extra: 2546 / 2408,
  26119. bottom: 44 / 2589
  26120. }
  26121. },
  26122. genitals: {
  26123. height: math.unit(1.5, "feet"),
  26124. name: "Genitals",
  26125. image: {
  26126. source: "./media/characters/epona/genitals.svg"
  26127. }
  26128. },
  26129. },
  26130. [
  26131. {
  26132. name: "Normal",
  26133. height: math.unit(7 + 7 / 12, "feet"),
  26134. default: true
  26135. },
  26136. ]
  26137. ))
  26138. characterMakers.push(() => makeCharacter(
  26139. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26140. {
  26141. front: {
  26142. height: math.unit(7, "feet"),
  26143. weight: math.unit(518, "lb"),
  26144. name: "Front",
  26145. image: {
  26146. source: "./media/characters/avia-bloodbourn/front.svg",
  26147. extra: 1466 / 1350,
  26148. bottom: 65 / 1527
  26149. }
  26150. },
  26151. },
  26152. [
  26153. ]
  26154. ))
  26155. characterMakers.push(() => makeCharacter(
  26156. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26157. {
  26158. front: {
  26159. height: math.unit(9.35, "feet"),
  26160. weight: math.unit(600, "lb"),
  26161. name: "Front",
  26162. image: {
  26163. source: "./media/characters/amera/front.svg",
  26164. extra: 891 / 818,
  26165. bottom: 30 / 922.7
  26166. }
  26167. },
  26168. back: {
  26169. height: math.unit(9.35, "feet"),
  26170. weight: math.unit(600, "lb"),
  26171. name: "Back",
  26172. image: {
  26173. source: "./media/characters/amera/back.svg",
  26174. extra: 876 / 824,
  26175. bottom: 6.8 / 884
  26176. }
  26177. },
  26178. dick: {
  26179. height: math.unit(2.14, "feet"),
  26180. name: "Dick",
  26181. image: {
  26182. source: "./media/characters/amera/dick.svg"
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Normal",
  26189. height: math.unit(9.35, "feet"),
  26190. default: true
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26196. {
  26197. kneeling: {
  26198. height: math.unit(3 + 4 / 12, "feet"),
  26199. weight: math.unit(90, "lb"),
  26200. name: "Kneeling",
  26201. image: {
  26202. source: "./media/characters/rosewen/kneeling.svg",
  26203. extra: 1835 / 1571,
  26204. bottom: 27.7 / 1862
  26205. }
  26206. },
  26207. },
  26208. [
  26209. {
  26210. name: "Normal",
  26211. height: math.unit(3 + 4 / 12, "feet"),
  26212. default: true
  26213. },
  26214. ]
  26215. ))
  26216. characterMakers.push(() => makeCharacter(
  26217. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26218. {
  26219. front: {
  26220. height: math.unit(5 + 10 / 12, "feet"),
  26221. weight: math.unit(200, "lb"),
  26222. name: "Front",
  26223. image: {
  26224. source: "./media/characters/sabah/front.svg",
  26225. extra: 849 / 763,
  26226. bottom: 33.9 / 881
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Normal",
  26233. height: math.unit(5 + 10 / 12, "feet"),
  26234. default: true
  26235. },
  26236. ]
  26237. ))
  26238. characterMakers.push(() => makeCharacter(
  26239. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26240. {
  26241. front: {
  26242. height: math.unit(3 + 5 / 12, "feet"),
  26243. weight: math.unit(40, "kg"),
  26244. name: "Front",
  26245. image: {
  26246. source: "./media/characters/purple-flame/front.svg",
  26247. extra: 1577 / 1412,
  26248. bottom: 97 / 1694
  26249. }
  26250. },
  26251. frontDressed: {
  26252. height: math.unit(3 + 5 / 12, "feet"),
  26253. weight: math.unit(40, "kg"),
  26254. name: "Front (Dressed)",
  26255. image: {
  26256. source: "./media/characters/purple-flame/front-dressed.svg",
  26257. extra: 1577 / 1412,
  26258. bottom: 97 / 1694
  26259. }
  26260. },
  26261. headphones: {
  26262. height: math.unit(0.85, "feet"),
  26263. name: "Headphones",
  26264. image: {
  26265. source: "./media/characters/purple-flame/headphones.svg"
  26266. }
  26267. },
  26268. },
  26269. [
  26270. {
  26271. name: "Really Small",
  26272. height: math.unit(5, "cm")
  26273. },
  26274. {
  26275. name: "Micro",
  26276. height: math.unit(1 + 5 / 12, "feet")
  26277. },
  26278. {
  26279. name: "Normal",
  26280. height: math.unit(3 + 5 / 12, "feet"),
  26281. default: true
  26282. },
  26283. {
  26284. name: "Minimacro",
  26285. height: math.unit(125, "feet")
  26286. },
  26287. {
  26288. name: "Macro",
  26289. height: math.unit(0.5, "miles")
  26290. },
  26291. {
  26292. name: "Megamacro",
  26293. height: math.unit(50, "miles")
  26294. },
  26295. {
  26296. name: "Gigantic",
  26297. height: math.unit(750, "miles")
  26298. },
  26299. {
  26300. name: "Planetary",
  26301. height: math.unit(15000, "miles")
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26307. {
  26308. front: {
  26309. height: math.unit(14, "feet"),
  26310. weight: math.unit(959, "lb"),
  26311. name: "Front",
  26312. image: {
  26313. source: "./media/characters/arsenal/front.svg",
  26314. extra: 2357 / 2157,
  26315. bottom: 93 / 2458
  26316. }
  26317. },
  26318. },
  26319. [
  26320. {
  26321. name: "Normal",
  26322. height: math.unit(14, "feet"),
  26323. default: true
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(6, "feet"),
  26332. weight: math.unit(150, "lb"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/adira/front.svg",
  26336. extra: 1078 / 1029,
  26337. bottom: 87 / 1166
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Micro",
  26344. height: math.unit(4, "inches"),
  26345. default: true
  26346. },
  26347. {
  26348. name: "Macro",
  26349. height: math.unit(50, "feet")
  26350. },
  26351. ]
  26352. ))
  26353. characterMakers.push(() => makeCharacter(
  26354. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26355. {
  26356. front: {
  26357. height: math.unit(16, "feet"),
  26358. weight: math.unit(1000, "lb"),
  26359. name: "Front",
  26360. image: {
  26361. source: "./media/characters/grim/front.svg",
  26362. extra: 622 / 614,
  26363. bottom: 18.1 / 642
  26364. }
  26365. },
  26366. back: {
  26367. height: math.unit(16, "feet"),
  26368. weight: math.unit(1000, "lb"),
  26369. name: "Back",
  26370. image: {
  26371. source: "./media/characters/grim/back.svg",
  26372. extra: 610.6 / 602,
  26373. bottom: 40.8 / 652
  26374. }
  26375. },
  26376. hunched: {
  26377. height: math.unit(9.75, "feet"),
  26378. weight: math.unit(1000, "lb"),
  26379. name: "Hunched",
  26380. image: {
  26381. source: "./media/characters/grim/hunched.svg",
  26382. extra: 304 / 297,
  26383. bottom: 35.4 / 394
  26384. }
  26385. },
  26386. },
  26387. [
  26388. {
  26389. name: "Normal",
  26390. height: math.unit(16, "feet"),
  26391. default: true
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26397. {
  26398. front: {
  26399. height: math.unit(2.3, "meters"),
  26400. weight: math.unit(300, "lb"),
  26401. name: "Front",
  26402. image: {
  26403. source: "./media/characters/sinja/front-sfw.svg",
  26404. extra: 1393 / 1294,
  26405. bottom: 70 / 1463
  26406. }
  26407. },
  26408. frontNsfw: {
  26409. height: math.unit(2.3, "meters"),
  26410. weight: math.unit(300, "lb"),
  26411. name: "Front (NSFW)",
  26412. image: {
  26413. source: "./media/characters/sinja/front-nsfw.svg",
  26414. extra: 1393 / 1294,
  26415. bottom: 70 / 1463
  26416. }
  26417. },
  26418. back: {
  26419. height: math.unit(2.3, "meters"),
  26420. weight: math.unit(300, "lb"),
  26421. name: "Back",
  26422. image: {
  26423. source: "./media/characters/sinja/back.svg",
  26424. extra: 1393 / 1294,
  26425. bottom: 70 / 1463
  26426. }
  26427. },
  26428. head: {
  26429. height: math.unit(1.771, "feet"),
  26430. name: "Head",
  26431. image: {
  26432. source: "./media/characters/sinja/head.svg"
  26433. }
  26434. },
  26435. slit: {
  26436. height: math.unit(0.8, "feet"),
  26437. name: "Slit",
  26438. image: {
  26439. source: "./media/characters/sinja/slit.svg"
  26440. }
  26441. },
  26442. },
  26443. [
  26444. {
  26445. name: "Normal",
  26446. height: math.unit(2.3, "meters")
  26447. },
  26448. {
  26449. name: "Macro",
  26450. height: math.unit(91, "meters"),
  26451. default: true
  26452. },
  26453. {
  26454. name: "Megamacro",
  26455. height: math.unit(91440, "meters")
  26456. },
  26457. {
  26458. name: "Gigamacro",
  26459. height: math.unit(60960000, "meters")
  26460. },
  26461. {
  26462. name: "Teramacro",
  26463. height: math.unit(9144000000, "meters")
  26464. },
  26465. ]
  26466. ))
  26467. characterMakers.push(() => makeCharacter(
  26468. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26469. {
  26470. front: {
  26471. height: math.unit(1.7, "meters"),
  26472. weight: math.unit(130, "lb"),
  26473. name: "Front",
  26474. image: {
  26475. source: "./media/characters/kyu/front.svg",
  26476. extra: 415 / 395,
  26477. bottom: 5 / 420
  26478. }
  26479. },
  26480. head: {
  26481. height: math.unit(1.75, "feet"),
  26482. name: "Head",
  26483. image: {
  26484. source: "./media/characters/kyu/head.svg"
  26485. }
  26486. },
  26487. foot: {
  26488. height: math.unit(0.81, "feet"),
  26489. name: "Foot",
  26490. image: {
  26491. source: "./media/characters/kyu/foot.svg"
  26492. }
  26493. },
  26494. },
  26495. [
  26496. {
  26497. name: "Normal",
  26498. height: math.unit(1.7, "meters")
  26499. },
  26500. {
  26501. name: "Macro",
  26502. height: math.unit(131, "feet"),
  26503. default: true
  26504. },
  26505. {
  26506. name: "Megamacro",
  26507. height: math.unit(91440, "meters")
  26508. },
  26509. {
  26510. name: "Gigamacro",
  26511. height: math.unit(60960000, "meters")
  26512. },
  26513. {
  26514. name: "Teramacro",
  26515. height: math.unit(9144000000, "meters")
  26516. },
  26517. ]
  26518. ))
  26519. characterMakers.push(() => makeCharacter(
  26520. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26521. {
  26522. front: {
  26523. height: math.unit(7 + 1 / 12, "feet"),
  26524. weight: math.unit(250, "lb"),
  26525. name: "Front",
  26526. image: {
  26527. source: "./media/characters/joey/front.svg",
  26528. extra: 1791 / 1537,
  26529. bottom: 28 / 1816
  26530. }
  26531. },
  26532. },
  26533. [
  26534. {
  26535. name: "Micro",
  26536. height: math.unit(3, "inches")
  26537. },
  26538. {
  26539. name: "Normal",
  26540. height: math.unit(7 + 1 / 12, "feet"),
  26541. default: true
  26542. },
  26543. ]
  26544. ))
  26545. characterMakers.push(() => makeCharacter(
  26546. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26547. {
  26548. front: {
  26549. height: math.unit(165, "cm"),
  26550. weight: math.unit(140, "lb"),
  26551. name: "Front",
  26552. image: {
  26553. source: "./media/characters/sam-evans/front.svg",
  26554. extra: 3417 / 3230,
  26555. bottom: 41.3 / 3417
  26556. }
  26557. },
  26558. frontSixTails: {
  26559. height: math.unit(165, "cm"),
  26560. weight: math.unit(140, "lb"),
  26561. name: "Front-six-tails",
  26562. image: {
  26563. source: "./media/characters/sam-evans/front-six-tails.svg",
  26564. extra: 3417 / 3230,
  26565. bottom: 41.3 / 3417
  26566. }
  26567. },
  26568. back: {
  26569. height: math.unit(165, "cm"),
  26570. weight: math.unit(140, "lb"),
  26571. name: "Back",
  26572. image: {
  26573. source: "./media/characters/sam-evans/back.svg",
  26574. extra: 3227 / 3032,
  26575. bottom: 6.8 / 3234
  26576. }
  26577. },
  26578. face: {
  26579. height: math.unit(0.68, "feet"),
  26580. name: "Face",
  26581. image: {
  26582. source: "./media/characters/sam-evans/face.svg"
  26583. }
  26584. },
  26585. },
  26586. [
  26587. {
  26588. name: "Normal",
  26589. height: math.unit(165, "cm"),
  26590. default: true
  26591. },
  26592. {
  26593. name: "Macro",
  26594. height: math.unit(100, "meters")
  26595. },
  26596. {
  26597. name: "Macro+",
  26598. height: math.unit(800, "meters")
  26599. },
  26600. {
  26601. name: "Macro++",
  26602. height: math.unit(3, "km")
  26603. },
  26604. {
  26605. name: "Macro+++",
  26606. height: math.unit(30, "km")
  26607. },
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26612. {
  26613. front: {
  26614. height: math.unit(10, "feet"),
  26615. weight: math.unit(750, "lb"),
  26616. name: "Front",
  26617. image: {
  26618. source: "./media/characters/juliet-a/front.svg",
  26619. extra: 1766 / 1720,
  26620. bottom: 43 / 1809
  26621. }
  26622. },
  26623. back: {
  26624. height: math.unit(10, "feet"),
  26625. weight: math.unit(750, "lb"),
  26626. name: "Back",
  26627. image: {
  26628. source: "./media/characters/juliet-a/back.svg",
  26629. extra: 1781 / 1734,
  26630. bottom: 35 / 1810,
  26631. }
  26632. },
  26633. },
  26634. [
  26635. {
  26636. name: "Normal",
  26637. height: math.unit(10, "feet"),
  26638. default: true
  26639. },
  26640. {
  26641. name: "Dragon Form",
  26642. height: math.unit(250, "feet")
  26643. },
  26644. {
  26645. name: "Macro",
  26646. height: math.unit(1000, "feet")
  26647. },
  26648. {
  26649. name: "Megamacro",
  26650. height: math.unit(10000, "feet")
  26651. }
  26652. ]
  26653. ))
  26654. characterMakers.push(() => makeCharacter(
  26655. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26656. {
  26657. regular: {
  26658. height: math.unit(7 + 3 / 12, "feet"),
  26659. weight: math.unit(260, "lb"),
  26660. name: "Regular",
  26661. image: {
  26662. source: "./media/characters/wild/regular.svg",
  26663. extra: 97.45 / 92,
  26664. bottom: 6.8 / 104.3
  26665. }
  26666. },
  26667. biggums: {
  26668. height: math.unit(8 + 6 / 12, "feet"),
  26669. weight: math.unit(425, "lb"),
  26670. name: "Biggums",
  26671. image: {
  26672. source: "./media/characters/wild/biggums.svg",
  26673. extra: 97.45 / 92,
  26674. bottom: 7.5 / 132.34
  26675. }
  26676. },
  26677. mawRegular: {
  26678. height: math.unit(1.24, "feet"),
  26679. name: "Maw (Regular)",
  26680. image: {
  26681. source: "./media/characters/wild/maw.svg"
  26682. }
  26683. },
  26684. mawBiggums: {
  26685. height: math.unit(1.47, "feet"),
  26686. name: "Maw (Biggums)",
  26687. image: {
  26688. source: "./media/characters/wild/maw.svg"
  26689. }
  26690. },
  26691. },
  26692. [
  26693. {
  26694. name: "Normal",
  26695. height: math.unit(7 + 3 / 12, "feet"),
  26696. default: true
  26697. },
  26698. ]
  26699. ))
  26700. characterMakers.push(() => makeCharacter(
  26701. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26702. {
  26703. front: {
  26704. height: math.unit(2.5, "meters"),
  26705. weight: math.unit(200, "kg"),
  26706. name: "Front",
  26707. image: {
  26708. source: "./media/characters/vidar/front.svg",
  26709. extra: 2994 / 2795,
  26710. bottom: 56 / 3061
  26711. }
  26712. },
  26713. back: {
  26714. height: math.unit(2.5, "meters"),
  26715. weight: math.unit(200, "kg"),
  26716. name: "Back",
  26717. image: {
  26718. source: "./media/characters/vidar/back.svg",
  26719. extra: 3131 / 2928,
  26720. bottom: 13.5 / 3141.5
  26721. }
  26722. },
  26723. feral: {
  26724. height: math.unit(2.5, "meters"),
  26725. weight: math.unit(2000, "kg"),
  26726. name: "Feral",
  26727. image: {
  26728. source: "./media/characters/vidar/feral.svg",
  26729. extra: 2790 / 1765,
  26730. bottom: 6 / 2796
  26731. }
  26732. },
  26733. },
  26734. [
  26735. {
  26736. name: "Normal",
  26737. height: math.unit(2.5, "meters"),
  26738. default: true
  26739. },
  26740. {
  26741. name: "Macro",
  26742. height: math.unit(100, "meters")
  26743. },
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26748. {
  26749. front: {
  26750. height: math.unit(5 + 9 / 12, "feet"),
  26751. weight: math.unit(120, "lb"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/ash/front.svg",
  26755. extra: 2189 / 1961,
  26756. bottom: 5.2 / 2194
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Normal",
  26763. height: math.unit(5 + 9 / 12, "feet"),
  26764. default: true
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(9, "feet"),
  26773. weight: math.unit(10000, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/gygabite/front.svg",
  26777. bottom: 31.7 / 537.8,
  26778. extra: 505 / 370
  26779. }
  26780. },
  26781. },
  26782. [
  26783. {
  26784. name: "Normal",
  26785. height: math.unit(9, "feet"),
  26786. default: true
  26787. },
  26788. ]
  26789. ))
  26790. characterMakers.push(() => makeCharacter(
  26791. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26792. {
  26793. front: {
  26794. height: math.unit(12, "feet"),
  26795. weight: math.unit(35000, "lb"),
  26796. name: "Front",
  26797. image: {
  26798. source: "./media/characters/p0tat0/front.svg",
  26799. extra: 1065 / 921,
  26800. bottom: 55.7 / 1121.25
  26801. }
  26802. },
  26803. },
  26804. [
  26805. {
  26806. name: "Normal",
  26807. height: math.unit(12, "feet"),
  26808. default: true
  26809. },
  26810. ]
  26811. ))
  26812. characterMakers.push(() => makeCharacter(
  26813. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26814. {
  26815. side: {
  26816. height: math.unit(6.5, "feet"),
  26817. weight: math.unit(800, "lb"),
  26818. name: "Side",
  26819. image: {
  26820. source: "./media/characters/dusk/side.svg",
  26821. extra: 615 / 373,
  26822. bottom: 53 / 664
  26823. }
  26824. },
  26825. sitting: {
  26826. height: math.unit(7, "feet"),
  26827. weight: math.unit(800, "lb"),
  26828. name: "Sitting",
  26829. image: {
  26830. source: "./media/characters/dusk/sitting.svg",
  26831. extra: 753 / 425,
  26832. bottom: 33 / 774
  26833. }
  26834. },
  26835. head: {
  26836. height: math.unit(6.1, "feet"),
  26837. name: "Head",
  26838. image: {
  26839. source: "./media/characters/dusk/head.svg"
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(7, "feet"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26853. {
  26854. front: {
  26855. height: math.unit(15, "feet"),
  26856. weight: math.unit(7000, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/jay-direwolf/front.svg",
  26860. extra: 1810 / 1732,
  26861. bottom: 66 / 1892
  26862. }
  26863. },
  26864. },
  26865. [
  26866. {
  26867. name: "Normal",
  26868. height: math.unit(15, "feet"),
  26869. default: true
  26870. },
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26875. {
  26876. front: {
  26877. height: math.unit(4 + 9 / 12, "feet"),
  26878. weight: math.unit(130, "lb"),
  26879. name: "Front",
  26880. image: {
  26881. source: "./media/characters/anchovie/front.svg",
  26882. extra: 382 / 350,
  26883. bottom: 25 / 409
  26884. }
  26885. },
  26886. back: {
  26887. height: math.unit(4 + 9 / 12, "feet"),
  26888. weight: math.unit(130, "lb"),
  26889. name: "Back",
  26890. image: {
  26891. source: "./media/characters/anchovie/back.svg",
  26892. extra: 385 / 352,
  26893. bottom: 16.6 / 402
  26894. }
  26895. },
  26896. frontDressed: {
  26897. height: math.unit(4 + 9 / 12, "feet"),
  26898. weight: math.unit(130, "lb"),
  26899. name: "Front (Dressed)",
  26900. image: {
  26901. source: "./media/characters/anchovie/front-dressed.svg",
  26902. extra: 382 / 350,
  26903. bottom: 25 / 409
  26904. }
  26905. },
  26906. backDressed: {
  26907. height: math.unit(4 + 9 / 12, "feet"),
  26908. weight: math.unit(130, "lb"),
  26909. name: "Back (Dressed)",
  26910. image: {
  26911. source: "./media/characters/anchovie/back-dressed.svg",
  26912. extra: 385 / 352,
  26913. bottom: 16.6 / 402
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Micro",
  26920. height: math.unit(6.4, "inches")
  26921. },
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(4 + 9 / 12, "feet"),
  26925. default: true
  26926. },
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26931. {
  26932. front: {
  26933. height: math.unit(2, "meters"),
  26934. weight: math.unit(180, "lb"),
  26935. name: "Front",
  26936. image: {
  26937. source: "./media/characters/acidrenamon/front.svg",
  26938. extra: 987 / 890,
  26939. bottom: 22.8 / 1009
  26940. }
  26941. },
  26942. back: {
  26943. height: math.unit(2, "meters"),
  26944. weight: math.unit(180, "lb"),
  26945. name: "Back",
  26946. image: {
  26947. source: "./media/characters/acidrenamon/back.svg",
  26948. extra: 983 / 891,
  26949. bottom: 8.4 / 992
  26950. }
  26951. },
  26952. head: {
  26953. height: math.unit(1.92, "feet"),
  26954. name: "Head",
  26955. image: {
  26956. source: "./media/characters/acidrenamon/head.svg"
  26957. }
  26958. },
  26959. rump: {
  26960. height: math.unit(1.72, "feet"),
  26961. name: "Rump",
  26962. image: {
  26963. source: "./media/characters/acidrenamon/rump.svg"
  26964. }
  26965. },
  26966. tail: {
  26967. height: math.unit(4.2, "feet"),
  26968. name: "Tail",
  26969. image: {
  26970. source: "./media/characters/acidrenamon/tail.svg"
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(2, "meters"),
  26978. default: true
  26979. },
  26980. {
  26981. name: "Minimacro",
  26982. height: math.unit(7, "meters")
  26983. },
  26984. {
  26985. name: "Macro",
  26986. height: math.unit(200, "meters")
  26987. },
  26988. {
  26989. name: "Gigamacro",
  26990. height: math.unit(0.2, "earths")
  26991. },
  26992. ]
  26993. ))
  26994. characterMakers.push(() => makeCharacter(
  26995. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26996. {
  26997. front: {
  26998. height: math.unit(6, "feet"),
  26999. weight: math.unit(150, "lb"),
  27000. name: "Front",
  27001. image: {
  27002. source: "./media/characters/kenzie-lee/front.svg",
  27003. extra: 1525 / 1465,
  27004. bottom: 45 / 1570
  27005. }
  27006. },
  27007. side: {
  27008. height: math.unit(6, "feet"),
  27009. weight: math.unit(150, "lb"),
  27010. name: "Side",
  27011. image: {
  27012. source: "./media/characters/kenzie-lee/side.svg",
  27013. extra: 5505 / 5383,
  27014. bottom: 60 / 5573
  27015. }
  27016. },
  27017. paw: {
  27018. height: math.unit(0.57, "feet"),
  27019. name: "Paw",
  27020. image: {
  27021. source: "./media/characters/kenzie-lee/paw.svg"
  27022. }
  27023. },
  27024. },
  27025. [
  27026. {
  27027. name: "Normal",
  27028. height: math.unit(152, "feet"),
  27029. default: true
  27030. },
  27031. {
  27032. name: "Megamacro",
  27033. height: math.unit(7, "miles")
  27034. },
  27035. {
  27036. name: "Gigamacro",
  27037. height: math.unit(8000, "miles")
  27038. },
  27039. ]
  27040. ))
  27041. characterMakers.push(() => makeCharacter(
  27042. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27043. {
  27044. side: {
  27045. height: math.unit(6, "feet"),
  27046. weight: math.unit(150, "lb"),
  27047. name: "Side",
  27048. image: {
  27049. source: "./media/characters/withers/side.svg",
  27050. extra: 1830 / 1728,
  27051. bottom: 96 / 1927
  27052. }
  27053. },
  27054. front: {
  27055. height: math.unit(6, "feet"),
  27056. weight: math.unit(150, "lb"),
  27057. name: "Front",
  27058. image: {
  27059. source: "./media/characters/withers/front.svg",
  27060. extra: 1514 / 1438,
  27061. bottom: 118 / 1632
  27062. }
  27063. },
  27064. },
  27065. [
  27066. {
  27067. name: "Macro",
  27068. height: math.unit(168, "feet"),
  27069. default: true
  27070. },
  27071. {
  27072. name: "Megamacro",
  27073. height: math.unit(15, "miles")
  27074. }
  27075. ]
  27076. ))
  27077. characterMakers.push(() => makeCharacter(
  27078. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27079. {
  27080. front: {
  27081. height: math.unit(6 + 7 / 12, "feet"),
  27082. weight: math.unit(250, "lb"),
  27083. name: "Front",
  27084. image: {
  27085. source: "./media/characters/nemoskii/front.svg",
  27086. extra: 2270 / 1734,
  27087. bottom: 86 / 2354
  27088. }
  27089. },
  27090. back: {
  27091. height: math.unit(6 + 7 / 12, "feet"),
  27092. weight: math.unit(250, "lb"),
  27093. name: "Back",
  27094. image: {
  27095. source: "./media/characters/nemoskii/back.svg",
  27096. extra: 1845 / 1788,
  27097. bottom: 10.5 / 1852
  27098. }
  27099. },
  27100. head: {
  27101. height: math.unit(1.31, "feet"),
  27102. name: "Head",
  27103. image: {
  27104. source: "./media/characters/nemoskii/head.svg"
  27105. }
  27106. },
  27107. },
  27108. [
  27109. {
  27110. name: "Micro",
  27111. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27112. },
  27113. {
  27114. name: "Normal",
  27115. height: math.unit(6 + 7 / 12, "feet"),
  27116. default: true
  27117. },
  27118. {
  27119. name: "Macro",
  27120. height: math.unit((6 + 7 / 12) * 150, "feet")
  27121. },
  27122. {
  27123. name: "Macro+",
  27124. height: math.unit((6 + 7 / 12) * 500, "feet")
  27125. },
  27126. {
  27127. name: "Megamacro",
  27128. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27129. },
  27130. ]
  27131. ))
  27132. characterMakers.push(() => makeCharacter(
  27133. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27134. {
  27135. front: {
  27136. height: math.unit(1, "mile"),
  27137. weight: math.unit(265261.9, "lb"),
  27138. name: "Front",
  27139. image: {
  27140. source: "./media/characters/shui/front.svg",
  27141. extra: 1633 / 1564,
  27142. bottom: 91.5 / 1726
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Macro",
  27149. height: math.unit(1, "mile"),
  27150. default: true
  27151. },
  27152. ]
  27153. ))
  27154. characterMakers.push(() => makeCharacter(
  27155. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27156. {
  27157. front: {
  27158. height: math.unit(12 + 6 / 12, "feet"),
  27159. weight: math.unit(1342, "lb"),
  27160. name: "Front",
  27161. image: {
  27162. source: "./media/characters/arokh-takakura/front.svg",
  27163. extra: 1089 / 1043,
  27164. bottom: 77.4 / 1176.7
  27165. }
  27166. },
  27167. back: {
  27168. height: math.unit(12 + 6 / 12, "feet"),
  27169. weight: math.unit(1342, "lb"),
  27170. name: "Back",
  27171. image: {
  27172. source: "./media/characters/arokh-takakura/back.svg",
  27173. extra: 1046 / 1019,
  27174. bottom: 102 / 1150
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Big",
  27181. height: math.unit(12 + 6 / 12, "feet"),
  27182. default: true
  27183. },
  27184. ]
  27185. ))
  27186. characterMakers.push(() => makeCharacter(
  27187. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27188. {
  27189. front: {
  27190. height: math.unit(5 + 6 / 12, "feet"),
  27191. weight: math.unit(150, "lb"),
  27192. name: "Front",
  27193. image: {
  27194. source: "./media/characters/theo/front.svg",
  27195. extra: 1184 / 1131,
  27196. bottom: 7.4 / 1191
  27197. }
  27198. },
  27199. },
  27200. [
  27201. {
  27202. name: "Micro",
  27203. height: math.unit(5, "inches")
  27204. },
  27205. {
  27206. name: "Normal",
  27207. height: math.unit(5 + 6 / 12, "feet"),
  27208. default: true
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27214. {
  27215. front: {
  27216. height: math.unit(5 + 9 / 12, "feet"),
  27217. weight: math.unit(130, "lb"),
  27218. name: "Front",
  27219. image: {
  27220. source: "./media/characters/cecelia-swift/front.svg",
  27221. extra: 502 / 484,
  27222. bottom: 23 / 523
  27223. }
  27224. },
  27225. back: {
  27226. height: math.unit(5 + 9 / 12, "feet"),
  27227. weight: math.unit(130, "lb"),
  27228. name: "Back",
  27229. image: {
  27230. source: "./media/characters/cecelia-swift/back.svg",
  27231. extra: 499 / 485,
  27232. bottom: 12 / 511
  27233. }
  27234. },
  27235. head: {
  27236. height: math.unit(0.90, "feet"),
  27237. name: "Head",
  27238. image: {
  27239. source: "./media/characters/cecelia-swift/head.svg"
  27240. }
  27241. },
  27242. rump: {
  27243. height: math.unit(1.75, "feet"),
  27244. name: "Rump",
  27245. image: {
  27246. source: "./media/characters/cecelia-swift/rump.svg"
  27247. }
  27248. },
  27249. },
  27250. [
  27251. {
  27252. name: "Normal",
  27253. height: math.unit(5 + 9 / 12, "feet"),
  27254. default: true
  27255. },
  27256. {
  27257. name: "Big",
  27258. height: math.unit(50, "feet")
  27259. },
  27260. {
  27261. name: "Macro",
  27262. height: math.unit(100, "feet")
  27263. },
  27264. {
  27265. name: "Macro+",
  27266. height: math.unit(500, "feet")
  27267. },
  27268. {
  27269. name: "Macro++",
  27270. height: math.unit(1000, "feet")
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(6, "feet"),
  27279. weight: math.unit(150, "lb"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/kaunan/front.svg",
  27283. extra: 2890 / 2523,
  27284. bottom: 49 / 2939
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Macro",
  27291. height: math.unit(150, "feet"),
  27292. default: true
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(175, "cm"),
  27301. weight: math.unit(60, "kg"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/fei/front.svg",
  27305. extra: 2581 / 2400,
  27306. bottom: 82.2 / 2663
  27307. }
  27308. },
  27309. },
  27310. [
  27311. {
  27312. name: "Mortal",
  27313. height: math.unit(175, "cm")
  27314. },
  27315. {
  27316. name: "Normal",
  27317. height: math.unit(3500, "m"),
  27318. default: true
  27319. },
  27320. {
  27321. name: "Stroll",
  27322. height: math.unit(17.5, "km")
  27323. },
  27324. {
  27325. name: "Showoff",
  27326. height: math.unit(175, "km")
  27327. },
  27328. ]
  27329. ))
  27330. characterMakers.push(() => makeCharacter(
  27331. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27332. {
  27333. front: {
  27334. height: math.unit(7, "feet"),
  27335. weight: math.unit(1000, "kg"),
  27336. name: "Front",
  27337. image: {
  27338. source: "./media/characters/edrax/front.svg",
  27339. extra: 2838 / 2550,
  27340. bottom: 130 / 2968
  27341. }
  27342. },
  27343. },
  27344. [
  27345. {
  27346. name: "Small",
  27347. height: math.unit(7, "feet")
  27348. },
  27349. {
  27350. name: "Normal",
  27351. height: math.unit(1500, "meters")
  27352. },
  27353. {
  27354. name: "Mega",
  27355. height: math.unit(12000000, "km"),
  27356. default: true
  27357. },
  27358. {
  27359. name: "Megamacro",
  27360. height: math.unit(10600000, "lightyears")
  27361. },
  27362. {
  27363. name: "Hypermacro",
  27364. height: math.unit(256, "yottameters")
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(10, "feet"),
  27373. weight: math.unit(750, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/clove/front.svg",
  27377. extra: 2031 / 1860,
  27378. bottom: 47.8 / 2080
  27379. }
  27380. },
  27381. back: {
  27382. height: math.unit(10, "feet"),
  27383. weight: math.unit(750, "lb"),
  27384. name: "Back",
  27385. image: {
  27386. source: "./media/characters/clove/back.svg",
  27387. extra: 2025 / 1859,
  27388. bottom: 46 / 2071
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(10, "feet"),
  27396. default: true
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(4, "feet"),
  27405. weight: math.unit(50, "lb"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/alex-rabbit/front.svg",
  27409. extra: 507 / 458,
  27410. bottom: 18.5 / 527
  27411. }
  27412. },
  27413. back: {
  27414. height: math.unit(4, "feet"),
  27415. weight: math.unit(50, "lb"),
  27416. name: "Back",
  27417. image: {
  27418. source: "./media/characters/alex-rabbit/back.svg",
  27419. extra: 502 / 460,
  27420. bottom: 18.9 / 521
  27421. }
  27422. },
  27423. },
  27424. [
  27425. {
  27426. name: "Normal",
  27427. height: math.unit(4, "feet"),
  27428. default: true
  27429. },
  27430. ]
  27431. ))
  27432. characterMakers.push(() => makeCharacter(
  27433. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27434. {
  27435. front: {
  27436. height: math.unit(1 + 3 / 12, "feet"),
  27437. weight: math.unit(80, "lb"),
  27438. name: "Front",
  27439. image: {
  27440. source: "./media/characters/zander-rose/front.svg",
  27441. extra: 916 / 797,
  27442. bottom: 17 / 933
  27443. }
  27444. },
  27445. back: {
  27446. height: math.unit(1 + 3 / 12, "feet"),
  27447. weight: math.unit(80, "lb"),
  27448. name: "Back",
  27449. image: {
  27450. source: "./media/characters/zander-rose/back.svg",
  27451. extra: 903 / 779,
  27452. bottom: 31 / 934
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(1 + 3 / 12, "feet"),
  27460. default: true
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27466. {
  27467. anthro: {
  27468. height: math.unit(6, "feet"),
  27469. weight: math.unit(150, "lb"),
  27470. name: "Anthro",
  27471. image: {
  27472. source: "./media/characters/razz/anthro.svg",
  27473. extra: 1437 / 1343,
  27474. bottom: 48 / 1485
  27475. }
  27476. },
  27477. feral: {
  27478. height: math.unit(6, "feet"),
  27479. weight: math.unit(150, "lb"),
  27480. name: "Feral",
  27481. image: {
  27482. source: "./media/characters/razz/feral.svg",
  27483. extra: 2569 / 1385,
  27484. bottom: 95 / 2664
  27485. }
  27486. },
  27487. },
  27488. [
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(6, "feet"),
  27492. default: true
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(9 + 4 / 12, "feet"),
  27501. weight: math.unit(500, "lb"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/morrigan/front.svg",
  27505. extra: 2707 / 2579,
  27506. bottom: 156 / 2863
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(9 + 4 / 12, "feet"),
  27514. default: true
  27515. },
  27516. ]
  27517. ))
  27518. characterMakers.push(() => makeCharacter(
  27519. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27520. {
  27521. front: {
  27522. height: math.unit(5, "stories"),
  27523. weight: math.unit(4000, "lb"),
  27524. name: "Front",
  27525. image: {
  27526. source: "./media/characters/jenene/front.svg",
  27527. extra: 1780 / 1710,
  27528. bottom: 57 / 1837
  27529. }
  27530. },
  27531. },
  27532. [
  27533. {
  27534. name: "Normal",
  27535. height: math.unit(5, "stories"),
  27536. default: true
  27537. },
  27538. ]
  27539. ))
  27540. characterMakers.push(() => makeCharacter(
  27541. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27542. {
  27543. front: {
  27544. height: math.unit(6, "feet"),
  27545. weight: math.unit(150, "lb"),
  27546. name: "Front",
  27547. image: {
  27548. source: "./media/characters/vix-archaser/front.svg",
  27549. extra: 2767 / 2562,
  27550. bottom: 36 / 2803
  27551. }
  27552. },
  27553. },
  27554. [
  27555. {
  27556. name: "Micro",
  27557. height: math.unit(1, "foot")
  27558. },
  27559. {
  27560. name: "Normal",
  27561. height: math.unit(6 + 5 / 12, "feet")
  27562. },
  27563. {
  27564. name: "Minimacro",
  27565. height: math.unit(500, "feet")
  27566. },
  27567. {
  27568. name: "Macro",
  27569. height: math.unit(4, "miles")
  27570. },
  27571. {
  27572. name: "Megamacro",
  27573. height: math.unit(250, "miles"),
  27574. default: true
  27575. },
  27576. {
  27577. name: "Gigamacro",
  27578. height: math.unit(1, "universe")
  27579. },
  27580. {
  27581. name: "Endgame",
  27582. height: math.unit(100, "multiverses")
  27583. }
  27584. ]
  27585. ))
  27586. characterMakers.push(() => makeCharacter(
  27587. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27588. {
  27589. taurSfw: {
  27590. height: math.unit(10, "meters"),
  27591. weight: math.unit(17500, "kg"),
  27592. name: "Taur",
  27593. image: {
  27594. source: "./media/characters/faey/taur-sfw.svg",
  27595. extra: 1200 / 968,
  27596. bottom: 41 / 1241
  27597. }
  27598. },
  27599. chestmaw: {
  27600. height: math.unit(2.01, "meters"),
  27601. name: "Chestmaw",
  27602. image: {
  27603. source: "./media/characters/faey/chestmaw.svg"
  27604. }
  27605. },
  27606. foot: {
  27607. height: math.unit(2.43, "meters"),
  27608. name: "Foot",
  27609. image: {
  27610. source: "./media/characters/faey/foot.svg"
  27611. }
  27612. },
  27613. jaws: {
  27614. height: math.unit(1.66, "meters"),
  27615. name: "Jaws",
  27616. image: {
  27617. source: "./media/characters/faey/jaws.svg"
  27618. }
  27619. },
  27620. tongues: {
  27621. height: math.unit(2.01, "meters"),
  27622. name: "Tongues",
  27623. image: {
  27624. source: "./media/characters/faey/tongues.svg"
  27625. }
  27626. },
  27627. },
  27628. [
  27629. {
  27630. name: "Small",
  27631. height: math.unit(10, "meters"),
  27632. default: true
  27633. },
  27634. {
  27635. name: "Big",
  27636. height: math.unit(500000, "km")
  27637. },
  27638. ]
  27639. ))
  27640. characterMakers.push(() => makeCharacter(
  27641. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27642. {
  27643. front: {
  27644. height: math.unit(7, "feet"),
  27645. weight: math.unit(275, "lb"),
  27646. name: "Front",
  27647. image: {
  27648. source: "./media/characters/roku/front.svg",
  27649. extra: 903 / 878,
  27650. bottom: 37 / 940
  27651. }
  27652. },
  27653. },
  27654. [
  27655. {
  27656. name: "Normal",
  27657. height: math.unit(7, "feet"),
  27658. default: true
  27659. },
  27660. {
  27661. name: "Macro",
  27662. height: math.unit(500, "feet")
  27663. },
  27664. {
  27665. name: "Megamacro",
  27666. height: math.unit(200, "miles")
  27667. },
  27668. ]
  27669. ))
  27670. characterMakers.push(() => makeCharacter(
  27671. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27672. {
  27673. front: {
  27674. height: math.unit(6 + 2 / 12, "feet"),
  27675. weight: math.unit(150, "lb"),
  27676. name: "Front",
  27677. image: {
  27678. source: "./media/characters/lira/front.svg",
  27679. extra: 1727 / 1605,
  27680. bottom: 26 / 1753
  27681. }
  27682. },
  27683. back: {
  27684. height: math.unit(6 + 2 / 12, "feet"),
  27685. weight: math.unit(150, "lb"),
  27686. name: "Back",
  27687. image: {
  27688. source: "./media/characters/lira/back.svg",
  27689. extra: 1713/1621,
  27690. bottom: 20/1733
  27691. }
  27692. },
  27693. hand: {
  27694. height: math.unit(0.75, "feet"),
  27695. name: "Hand",
  27696. image: {
  27697. source: "./media/characters/lira/hand.svg"
  27698. }
  27699. },
  27700. maw: {
  27701. height: math.unit(0.65, "feet"),
  27702. name: "Maw",
  27703. image: {
  27704. source: "./media/characters/lira/maw.svg"
  27705. }
  27706. },
  27707. pawDigi: {
  27708. height: math.unit(1.6, "feet"),
  27709. name: "Paw Digi",
  27710. image: {
  27711. source: "./media/characters/lira/paw-digi.svg"
  27712. }
  27713. },
  27714. pawPlanti: {
  27715. height: math.unit(1.4, "feet"),
  27716. name: "Paw Planti",
  27717. image: {
  27718. source: "./media/characters/lira/paw-planti.svg"
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Normal",
  27725. height: math.unit(6 + 2 / 12, "feet"),
  27726. default: true
  27727. },
  27728. {
  27729. name: "Macro",
  27730. height: math.unit(100, "feet")
  27731. },
  27732. {
  27733. name: "Macro²",
  27734. height: math.unit(1600, "feet")
  27735. },
  27736. {
  27737. name: "Planetary",
  27738. height: math.unit(20, "earths")
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27744. {
  27745. front: {
  27746. height: math.unit(6, "feet"),
  27747. weight: math.unit(150, "lb"),
  27748. name: "Front",
  27749. image: {
  27750. source: "./media/characters/hadjet/front.svg",
  27751. extra: 1480 / 1346,
  27752. bottom: 26 / 1506
  27753. }
  27754. },
  27755. frontNsfw: {
  27756. height: math.unit(6, "feet"),
  27757. weight: math.unit(150, "lb"),
  27758. name: "Front (NSFW)",
  27759. image: {
  27760. source: "./media/characters/hadjet/front-nsfw.svg",
  27761. extra: 1440 / 1358,
  27762. bottom: 52 / 1492
  27763. }
  27764. },
  27765. },
  27766. [
  27767. {
  27768. name: "Macro",
  27769. height: math.unit(10, "stories"),
  27770. default: true
  27771. },
  27772. {
  27773. name: "Megamacro",
  27774. height: math.unit(1.5, "miles")
  27775. },
  27776. {
  27777. name: "Megamacro+",
  27778. height: math.unit(5, "miles")
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27784. {
  27785. side: {
  27786. height: math.unit(106, "feet"),
  27787. weight: math.unit(500, "tonnes"),
  27788. name: "Side",
  27789. image: {
  27790. source: "./media/characters/kodran/side.svg",
  27791. extra: 553 / 480,
  27792. bottom: 33 / 586
  27793. }
  27794. },
  27795. front: {
  27796. height: math.unit(132, "feet"),
  27797. weight: math.unit(500, "tonnes"),
  27798. name: "Front",
  27799. image: {
  27800. source: "./media/characters/kodran/front.svg",
  27801. extra: 667 / 643,
  27802. bottom: 42 / 709
  27803. }
  27804. },
  27805. flying: {
  27806. height: math.unit(350, "feet"),
  27807. weight: math.unit(500, "tonnes"),
  27808. name: "Flying",
  27809. image: {
  27810. source: "./media/characters/kodran/flying.svg"
  27811. }
  27812. },
  27813. foot: {
  27814. height: math.unit(33, "feet"),
  27815. name: "Foot",
  27816. image: {
  27817. source: "./media/characters/kodran/foot.svg"
  27818. }
  27819. },
  27820. footFront: {
  27821. height: math.unit(19, "feet"),
  27822. name: "Foot (Front)",
  27823. image: {
  27824. source: "./media/characters/kodran/foot-front.svg",
  27825. extra: 261 / 261,
  27826. bottom: 91 / 352
  27827. }
  27828. },
  27829. headFront: {
  27830. height: math.unit(53, "feet"),
  27831. name: "Head (Front)",
  27832. image: {
  27833. source: "./media/characters/kodran/head-front.svg"
  27834. }
  27835. },
  27836. headSide: {
  27837. height: math.unit(65, "feet"),
  27838. name: "Head (Side)",
  27839. image: {
  27840. source: "./media/characters/kodran/head-side.svg"
  27841. }
  27842. },
  27843. throat: {
  27844. height: math.unit(79, "feet"),
  27845. name: "Throat",
  27846. image: {
  27847. source: "./media/characters/kodran/throat.svg"
  27848. }
  27849. },
  27850. },
  27851. [
  27852. {
  27853. name: "Large",
  27854. height: math.unit(106, "feet"),
  27855. default: true
  27856. },
  27857. ]
  27858. ))
  27859. characterMakers.push(() => makeCharacter(
  27860. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27861. {
  27862. side: {
  27863. height: math.unit(11, "feet"),
  27864. weight: math.unit(150, "lb"),
  27865. name: "Side",
  27866. image: {
  27867. source: "./media/characters/pyxaron/side.svg",
  27868. extra: 305 / 195,
  27869. bottom: 17 / 322
  27870. }
  27871. },
  27872. },
  27873. [
  27874. {
  27875. name: "Normal",
  27876. height: math.unit(11, "feet"),
  27877. default: true
  27878. },
  27879. ]
  27880. ))
  27881. characterMakers.push(() => makeCharacter(
  27882. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27883. {
  27884. front: {
  27885. height: math.unit(6, "feet"),
  27886. weight: math.unit(150, "lb"),
  27887. name: "Front",
  27888. image: {
  27889. source: "./media/characters/meep/front.svg",
  27890. extra: 88 / 80,
  27891. bottom: 6 / 94
  27892. }
  27893. },
  27894. },
  27895. [
  27896. {
  27897. name: "Fun Sized",
  27898. height: math.unit(2, "inches"),
  27899. default: true
  27900. },
  27901. {
  27902. name: "Friend Sized",
  27903. height: math.unit(8, "inches")
  27904. },
  27905. ]
  27906. ))
  27907. characterMakers.push(() => makeCharacter(
  27908. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27909. {
  27910. front: {
  27911. height: math.unit(15, "feet"),
  27912. weight: math.unit(2500, "lb"),
  27913. name: "Front",
  27914. image: {
  27915. source: "./media/characters/holly-rabbit/front.svg",
  27916. extra: 1433 / 1233,
  27917. bottom: 125 / 1558
  27918. }
  27919. },
  27920. dick: {
  27921. height: math.unit(4.6, "feet"),
  27922. name: "Dick",
  27923. image: {
  27924. source: "./media/characters/holly-rabbit/dick.svg"
  27925. }
  27926. },
  27927. },
  27928. [
  27929. {
  27930. name: "Normal",
  27931. height: math.unit(15, "feet"),
  27932. default: true
  27933. },
  27934. {
  27935. name: "Macro",
  27936. height: math.unit(250, "feet")
  27937. },
  27938. {
  27939. name: "Macro+",
  27940. height: math.unit(2500, "feet")
  27941. },
  27942. ]
  27943. ))
  27944. characterMakers.push(() => makeCharacter(
  27945. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27946. {
  27947. front: {
  27948. height: math.unit(3.02, "meters"),
  27949. weight: math.unit(500, "kg"),
  27950. name: "Front",
  27951. image: {
  27952. source: "./media/characters/drena/front.svg",
  27953. extra: 282 / 243,
  27954. bottom: 8 / 290
  27955. }
  27956. },
  27957. side: {
  27958. height: math.unit(3.02, "meters"),
  27959. weight: math.unit(500, "kg"),
  27960. name: "Side",
  27961. image: {
  27962. source: "./media/characters/drena/side.svg",
  27963. extra: 280 / 245,
  27964. bottom: 10 / 290
  27965. }
  27966. },
  27967. back: {
  27968. height: math.unit(3.02, "meters"),
  27969. weight: math.unit(500, "kg"),
  27970. name: "Back",
  27971. image: {
  27972. source: "./media/characters/drena/back.svg",
  27973. extra: 278 / 243,
  27974. bottom: 2 / 280
  27975. }
  27976. },
  27977. foot: {
  27978. height: math.unit(0.75, "meters"),
  27979. name: "Foot",
  27980. image: {
  27981. source: "./media/characters/drena/foot.svg"
  27982. }
  27983. },
  27984. maw: {
  27985. height: math.unit(0.82, "meters"),
  27986. name: "Maw",
  27987. image: {
  27988. source: "./media/characters/drena/maw.svg"
  27989. }
  27990. },
  27991. rump: {
  27992. height: math.unit(0.93, "meters"),
  27993. name: "Rump",
  27994. image: {
  27995. source: "./media/characters/drena/rump.svg"
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Normal",
  28002. height: math.unit(3.02, "meters"),
  28003. default: true
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28009. {
  28010. front: {
  28011. height: math.unit(6 + 4 / 12, "feet"),
  28012. weight: math.unit(250, "lb"),
  28013. name: "Front",
  28014. image: {
  28015. source: "./media/characters/remmyzilla/front.svg",
  28016. extra: 4033 / 3588,
  28017. bottom: 123 / 4156
  28018. }
  28019. },
  28020. back: {
  28021. height: math.unit(6 + 4 / 12, "feet"),
  28022. weight: math.unit(250, "lb"),
  28023. name: "Back",
  28024. image: {
  28025. source: "./media/characters/remmyzilla/back.svg",
  28026. extra: 2687 / 2555,
  28027. bottom: 48 / 2735
  28028. }
  28029. },
  28030. frontFancy: {
  28031. height: math.unit(6 + 4 / 12, "feet"),
  28032. weight: math.unit(250, "lb"),
  28033. name: "Front (Fancy)",
  28034. image: {
  28035. source: "./media/characters/remmyzilla/front-fancy.svg",
  28036. extra: 4119 / 3419,
  28037. bottom: 237 / 4356
  28038. }
  28039. },
  28040. paw: {
  28041. height: math.unit(1.73, "feet"),
  28042. name: "Paw",
  28043. image: {
  28044. source: "./media/characters/remmyzilla/paw.svg"
  28045. }
  28046. },
  28047. maw: {
  28048. height: math.unit(1.73, "feet"),
  28049. name: "Maw",
  28050. image: {
  28051. source: "./media/characters/remmyzilla/maw.svg"
  28052. }
  28053. },
  28054. },
  28055. [
  28056. {
  28057. name: "Normal",
  28058. height: math.unit(6 + 4 / 12, "feet")
  28059. },
  28060. {
  28061. name: "Minimacro",
  28062. height: math.unit(12 + 8 / 12, "feet")
  28063. },
  28064. {
  28065. name: "Normal",
  28066. height: math.unit(640, "feet"),
  28067. default: true
  28068. },
  28069. {
  28070. name: "Megamacro",
  28071. height: math.unit(6400, "feet")
  28072. },
  28073. {
  28074. name: "Gigamacro",
  28075. height: math.unit(64000, "miles")
  28076. },
  28077. ]
  28078. ))
  28079. characterMakers.push(() => makeCharacter(
  28080. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28081. {
  28082. front: {
  28083. height: math.unit(2.5, "meters"),
  28084. weight: math.unit(300, "lb"),
  28085. name: "Front",
  28086. image: {
  28087. source: "./media/characters/lawrence/front.svg",
  28088. extra: 357 / 335,
  28089. bottom: 30 / 387
  28090. }
  28091. },
  28092. back: {
  28093. height: math.unit(2.5, "meters"),
  28094. weight: math.unit(300, "lb"),
  28095. name: "Back",
  28096. image: {
  28097. source: "./media/characters/lawrence/back.svg",
  28098. extra: 357 / 338,
  28099. bottom: 16 / 373
  28100. }
  28101. },
  28102. head: {
  28103. height: math.unit(0.9, "meter"),
  28104. name: "Head",
  28105. image: {
  28106. source: "./media/characters/lawrence/head.svg"
  28107. }
  28108. },
  28109. maw: {
  28110. height: math.unit(0.7, "meter"),
  28111. name: "Maw",
  28112. image: {
  28113. source: "./media/characters/lawrence/maw.svg"
  28114. }
  28115. },
  28116. footBottom: {
  28117. height: math.unit(0.5, "meter"),
  28118. name: "Foot (Bottom)",
  28119. image: {
  28120. source: "./media/characters/lawrence/foot-bottom.svg"
  28121. }
  28122. },
  28123. footTop: {
  28124. height: math.unit(0.5, "meter"),
  28125. name: "Foot (Top)",
  28126. image: {
  28127. source: "./media/characters/lawrence/foot-top.svg"
  28128. }
  28129. },
  28130. },
  28131. [
  28132. {
  28133. name: "Normal",
  28134. height: math.unit(2.5, "meters"),
  28135. default: true
  28136. },
  28137. {
  28138. name: "Macro",
  28139. height: math.unit(95, "meters")
  28140. },
  28141. {
  28142. name: "Megamacro",
  28143. height: math.unit(150, "km")
  28144. },
  28145. ]
  28146. ))
  28147. characterMakers.push(() => makeCharacter(
  28148. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28149. {
  28150. front: {
  28151. height: math.unit(4.2, "meters"),
  28152. name: "Front",
  28153. image: {
  28154. source: "./media/characters/sydney/front.svg",
  28155. extra: 1323 / 1277,
  28156. bottom: 111 / 1434
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(4.2, "meters"),
  28164. default: true
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28170. {
  28171. back: {
  28172. height: math.unit(201, "feet"),
  28173. name: "Back",
  28174. image: {
  28175. source: "./media/characters/jessica/back.svg",
  28176. extra: 273 / 259,
  28177. bottom: 7 / 280
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Normal",
  28184. height: math.unit(201, "feet"),
  28185. default: true
  28186. },
  28187. {
  28188. name: "Megamacro",
  28189. height: math.unit(8, "miles")
  28190. },
  28191. ]
  28192. ))
  28193. characterMakers.push(() => makeCharacter(
  28194. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28195. {
  28196. side: {
  28197. height: math.unit(320, "cm"),
  28198. name: "Side",
  28199. image: {
  28200. source: "./media/characters/victoria/side.svg",
  28201. extra: 778 / 346,
  28202. bottom: 56 / 834
  28203. }
  28204. },
  28205. maw: {
  28206. height: math.unit(5.9, "feet"),
  28207. name: "Maw",
  28208. image: {
  28209. source: "./media/characters/victoria/maw.svg"
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(320, "cm"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28223. {
  28224. front: {
  28225. height: math.unit(5 + 6 / 12, "feet"),
  28226. name: "Front",
  28227. image: {
  28228. source: "./media/characters/cat/front.svg",
  28229. extra: 1374 / 1257,
  28230. bottom: 59 / 1433
  28231. }
  28232. },
  28233. back: {
  28234. height: math.unit(5 + 6 / 12, "feet"),
  28235. name: "Back",
  28236. image: {
  28237. source: "./media/characters/cat/back.svg",
  28238. extra: 1337 / 1226,
  28239. bottom: 34 / 1371
  28240. }
  28241. },
  28242. taur: {
  28243. height: math.unit(7, "feet"),
  28244. name: "Taur",
  28245. image: {
  28246. source: "./media/characters/cat/taur.svg",
  28247. extra: 1345 / 1231,
  28248. bottom: 66 / 1411
  28249. }
  28250. },
  28251. lucario: {
  28252. height: math.unit(4, "feet"),
  28253. name: "Lucario",
  28254. image: {
  28255. source: "./media/characters/cat/lucario.svg",
  28256. extra: 1470 / 1318,
  28257. bottom: 65 / 1535
  28258. }
  28259. },
  28260. megaLucario: {
  28261. height: math.unit(4, "feet"),
  28262. name: "Mega Lucario",
  28263. image: {
  28264. source: "./media/characters/cat/mega-lucario.svg",
  28265. extra: 1515 / 1319,
  28266. bottom: 63 / 1578
  28267. }
  28268. },
  28269. nickit: {
  28270. height: math.unit(2, "feet"),
  28271. name: "Nickit",
  28272. image: {
  28273. source: "./media/characters/cat/nickit.svg",
  28274. extra: 1980 / 1585,
  28275. bottom: 102 / 2082
  28276. }
  28277. },
  28278. lopunnyFront: {
  28279. height: math.unit(5, "feet"),
  28280. name: "Lopunny (Front)",
  28281. image: {
  28282. source: "./media/characters/cat/lopunny-front.svg",
  28283. extra: 1782 / 1469,
  28284. bottom: 38 / 1820
  28285. }
  28286. },
  28287. lopunnyBack: {
  28288. height: math.unit(5, "feet"),
  28289. name: "Lopunny (Back)",
  28290. image: {
  28291. source: "./media/characters/cat/lopunny-back.svg",
  28292. extra: 1660 / 1490,
  28293. bottom: 25 / 1685
  28294. }
  28295. },
  28296. },
  28297. [
  28298. {
  28299. name: "Really small",
  28300. height: math.unit(1, "nm")
  28301. },
  28302. {
  28303. name: "Micro",
  28304. height: math.unit(5, "inches")
  28305. },
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(5 + 6 / 12, "feet"),
  28309. default: true
  28310. },
  28311. {
  28312. name: "Macro",
  28313. height: math.unit(50, "feet")
  28314. },
  28315. {
  28316. name: "Macro+",
  28317. height: math.unit(150, "feet")
  28318. },
  28319. {
  28320. name: "Megamacro",
  28321. height: math.unit(100, "miles")
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28327. {
  28328. front: {
  28329. height: math.unit(63.4, "meters"),
  28330. weight: math.unit(3.28349e+6, "kilograms"),
  28331. name: "Front",
  28332. image: {
  28333. source: "./media/characters/kirina-violet/front.svg",
  28334. extra: 2812 / 2725,
  28335. bottom: 0 / 2812
  28336. }
  28337. },
  28338. back: {
  28339. height: math.unit(63.4, "meters"),
  28340. weight: math.unit(3.28349e+6, "kilograms"),
  28341. name: "Back",
  28342. image: {
  28343. source: "./media/characters/kirina-violet/back.svg",
  28344. extra: 2812 / 2725,
  28345. bottom: 0 / 2812
  28346. }
  28347. },
  28348. mouth: {
  28349. height: math.unit(4.35, "meters"),
  28350. name: "Mouth",
  28351. image: {
  28352. source: "./media/characters/kirina-violet/mouth.svg"
  28353. }
  28354. },
  28355. paw: {
  28356. height: math.unit(5.6, "meters"),
  28357. name: "Paw",
  28358. image: {
  28359. source: "./media/characters/kirina-violet/paw.svg"
  28360. }
  28361. },
  28362. tail: {
  28363. height: math.unit(18, "meters"),
  28364. name: "Tail",
  28365. image: {
  28366. source: "./media/characters/kirina-violet/tail.svg"
  28367. }
  28368. },
  28369. },
  28370. [
  28371. {
  28372. name: "Macro",
  28373. height: math.unit(63.4, "meters"),
  28374. default: true
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(60, "feet"),
  28383. name: "Front",
  28384. image: {
  28385. source: "./media/characters/cat-gigachu/front.svg",
  28386. extra: 1024 / 780,
  28387. bottom: 23 / 1047
  28388. }
  28389. },
  28390. back: {
  28391. height: math.unit(60, "feet"),
  28392. name: "Back",
  28393. image: {
  28394. source: "./media/characters/cat-gigachu/back.svg",
  28395. extra: 1024 / 780,
  28396. bottom: 23 / 1047
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Dynamax",
  28403. height: math.unit(60, "feet"),
  28404. default: true
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28410. {
  28411. front: {
  28412. height: math.unit(6, "feet"),
  28413. weight: math.unit(150, "lb"),
  28414. name: "Front",
  28415. image: {
  28416. source: "./media/characters/sfaiyan/front.svg",
  28417. extra: 999 / 978,
  28418. bottom: 5 / 1004
  28419. }
  28420. },
  28421. },
  28422. [
  28423. {
  28424. name: "Normal",
  28425. height: math.unit(1.82, "meters")
  28426. },
  28427. {
  28428. name: "Giant",
  28429. height: math.unit(2.27, "km"),
  28430. default: true
  28431. },
  28432. ]
  28433. ))
  28434. characterMakers.push(() => makeCharacter(
  28435. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28436. {
  28437. front: {
  28438. height: math.unit(179, "cm"),
  28439. weight: math.unit(100, "kg"),
  28440. name: "Front",
  28441. image: {
  28442. source: "./media/characters/raunehkeli/front.svg",
  28443. extra: 1934 / 1926,
  28444. bottom: 0 / 1934
  28445. }
  28446. },
  28447. },
  28448. [
  28449. {
  28450. name: "Normal",
  28451. height: math.unit(179, "cm")
  28452. },
  28453. {
  28454. name: "Maximum",
  28455. height: math.unit(575, "meters"),
  28456. default: true
  28457. },
  28458. ]
  28459. ))
  28460. characterMakers.push(() => makeCharacter(
  28461. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28462. {
  28463. front: {
  28464. height: math.unit(6, "feet"),
  28465. weight: math.unit(150, "lb"),
  28466. name: "Front",
  28467. image: {
  28468. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28469. extra: 2625 / 2518,
  28470. bottom: 60 / 2685
  28471. }
  28472. },
  28473. },
  28474. [
  28475. {
  28476. name: "Normal",
  28477. height: math.unit(6 + 2 / 12, "feet")
  28478. },
  28479. {
  28480. name: "Macro",
  28481. height: math.unit(1180, "feet"),
  28482. default: true
  28483. },
  28484. ]
  28485. ))
  28486. characterMakers.push(() => makeCharacter(
  28487. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28488. {
  28489. front: {
  28490. height: math.unit(5 + 6 / 12, "feet"),
  28491. weight: math.unit(108, "lb"),
  28492. name: "Front",
  28493. image: {
  28494. source: "./media/characters/lilith-zott/front.svg",
  28495. extra: 2510 / 2238,
  28496. bottom: 100 / 2610
  28497. }
  28498. },
  28499. frontDressed: {
  28500. height: math.unit(5 + 6 / 12, "feet"),
  28501. weight: math.unit(108, "lb"),
  28502. name: "Front (Dressed)",
  28503. image: {
  28504. source: "./media/characters/lilith-zott/front-dressed.svg",
  28505. extra: 2510 / 2238,
  28506. bottom: 100 / 2610
  28507. }
  28508. },
  28509. },
  28510. [
  28511. {
  28512. name: "Normal",
  28513. height: math.unit(5 + 6 / 12, "feet")
  28514. },
  28515. {
  28516. name: "Macro",
  28517. height: math.unit(1030, "feet"),
  28518. default: true
  28519. },
  28520. ]
  28521. ))
  28522. characterMakers.push(() => makeCharacter(
  28523. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28524. {
  28525. front: {
  28526. height: math.unit(6, "feet"),
  28527. weight: math.unit(150, "lb"),
  28528. name: "Front",
  28529. image: {
  28530. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28531. extra: 2567 / 2435,
  28532. bottom: 39 / 2606
  28533. }
  28534. },
  28535. frontSuper: {
  28536. height: math.unit(6, "feet"),
  28537. name: "Front (Super)",
  28538. image: {
  28539. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28540. extra: 2567 / 2435,
  28541. bottom: 39 / 2606
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(5 + 10 / 12, "feet")
  28549. },
  28550. {
  28551. name: "Macro",
  28552. height: math.unit(1100, "feet"),
  28553. default: true
  28554. },
  28555. ]
  28556. ))
  28557. characterMakers.push(() => makeCharacter(
  28558. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28559. {
  28560. front: {
  28561. height: math.unit(100, "miles"),
  28562. name: "Front",
  28563. image: {
  28564. source: "./media/characters/sona/front.svg",
  28565. extra: 2433 / 2201,
  28566. bottom: 53 / 2486
  28567. }
  28568. },
  28569. foot: {
  28570. height: math.unit(16.1, "miles"),
  28571. name: "Foot",
  28572. image: {
  28573. source: "./media/characters/sona/foot.svg"
  28574. }
  28575. },
  28576. },
  28577. [
  28578. {
  28579. name: "Macro",
  28580. height: math.unit(100, "miles"),
  28581. default: true
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(6, "feet"),
  28590. weight: math.unit(150, "lb"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/bailey/front.svg",
  28594. extra: 1778 / 1724,
  28595. bottom: 30 / 1808
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Micro",
  28602. height: math.unit(4, "inches")
  28603. },
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(5 + 5 / 12, "feet"),
  28607. default: true
  28608. },
  28609. {
  28610. name: "Macro",
  28611. height: math.unit(250, "feet")
  28612. },
  28613. {
  28614. name: "Megamacro",
  28615. height: math.unit(100, "miles")
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(5 + 2 / 12, "feet"),
  28624. weight: math.unit(120, "lb"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/snaps/front.svg",
  28628. extra: 2370 / 2177,
  28629. bottom: 48 / 2418
  28630. }
  28631. },
  28632. back: {
  28633. height: math.unit(5 + 2 / 12, "feet"),
  28634. weight: math.unit(120, "lb"),
  28635. name: "Back",
  28636. image: {
  28637. source: "./media/characters/snaps/back.svg",
  28638. extra: 2408 / 2258,
  28639. bottom: 15 / 2423
  28640. }
  28641. },
  28642. },
  28643. [
  28644. {
  28645. name: "Micro",
  28646. height: math.unit(9, "inches")
  28647. },
  28648. {
  28649. name: "Normal",
  28650. height: math.unit(5 + 2 / 12, "feet"),
  28651. default: true
  28652. },
  28653. {
  28654. name: "Mini Macro",
  28655. height: math.unit(10, "feet")
  28656. },
  28657. ]
  28658. ))
  28659. characterMakers.push(() => makeCharacter(
  28660. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28661. {
  28662. front: {
  28663. height: math.unit(1.8, "meters"),
  28664. weight: math.unit(85, "kg"),
  28665. name: "Front",
  28666. image: {
  28667. source: "./media/characters/azteck/front.svg",
  28668. extra: 2815 / 2625,
  28669. bottom: 89 / 2904
  28670. }
  28671. },
  28672. back: {
  28673. height: math.unit(1.8, "meters"),
  28674. weight: math.unit(85, "kg"),
  28675. name: "Back",
  28676. image: {
  28677. source: "./media/characters/azteck/back.svg",
  28678. extra: 2856 / 2648,
  28679. bottom: 85 / 2941
  28680. }
  28681. },
  28682. frontDressed: {
  28683. height: math.unit(1.8, "meters"),
  28684. weight: math.unit(85, "kg"),
  28685. name: "Front (Dressed)",
  28686. image: {
  28687. source: "./media/characters/azteck/front-dressed.svg",
  28688. extra: 2147 / 2003,
  28689. bottom: 68 / 2215
  28690. }
  28691. },
  28692. head: {
  28693. height: math.unit(0.47, "meters"),
  28694. weight: math.unit(85, "kg"),
  28695. name: "Head",
  28696. image: {
  28697. source: "./media/characters/azteck/head.svg"
  28698. }
  28699. },
  28700. },
  28701. [
  28702. {
  28703. name: "Bite sized",
  28704. height: math.unit(16, "cm")
  28705. },
  28706. {
  28707. name: "Normal",
  28708. height: math.unit(1.8, "meters"),
  28709. default: true
  28710. },
  28711. ]
  28712. ))
  28713. characterMakers.push(() => makeCharacter(
  28714. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28715. {
  28716. front: {
  28717. height: math.unit(6, "feet"),
  28718. weight: math.unit(150, "lb"),
  28719. name: "Front",
  28720. image: {
  28721. source: "./media/characters/pidge/front.svg",
  28722. extra: 620 / 588,
  28723. bottom: 9 / 629
  28724. }
  28725. },
  28726. back: {
  28727. height: math.unit(6, "feet"),
  28728. weight: math.unit(150, "lb"),
  28729. name: "Back",
  28730. image: {
  28731. source: "./media/characters/pidge/back.svg",
  28732. extra: 620 / 588,
  28733. bottom: 9 / 629
  28734. }
  28735. },
  28736. },
  28737. [
  28738. {
  28739. name: "Macro",
  28740. height: math.unit(1, "mile"),
  28741. default: true
  28742. },
  28743. ]
  28744. ))
  28745. characterMakers.push(() => makeCharacter(
  28746. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28747. {
  28748. front: {
  28749. height: math.unit(6, "feet"),
  28750. weight: math.unit(150, "lb"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/en/front.svg",
  28754. extra: 1697 / 1563,
  28755. bottom: 103 / 1800
  28756. }
  28757. },
  28758. back: {
  28759. height: math.unit(6, "feet"),
  28760. weight: math.unit(150, "lb"),
  28761. name: "Back",
  28762. image: {
  28763. source: "./media/characters/en/back.svg",
  28764. extra: 1700 / 1570,
  28765. bottom: 51 / 1751
  28766. }
  28767. },
  28768. frontDressed: {
  28769. height: math.unit(6, "feet"),
  28770. weight: math.unit(150, "lb"),
  28771. name: "Front (Dressed)",
  28772. image: {
  28773. source: "./media/characters/en/front-dressed.svg",
  28774. extra: 1697 / 1563,
  28775. bottom: 103 / 1800
  28776. }
  28777. },
  28778. backDressed: {
  28779. height: math.unit(6, "feet"),
  28780. weight: math.unit(150, "lb"),
  28781. name: "Back (Dressed)",
  28782. image: {
  28783. source: "./media/characters/en/back-dressed.svg",
  28784. extra: 1700 / 1570,
  28785. bottom: 51 / 1751
  28786. }
  28787. },
  28788. },
  28789. [
  28790. {
  28791. name: "Macro",
  28792. height: math.unit(210, "feet"),
  28793. default: true
  28794. },
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28799. {
  28800. front: {
  28801. height: math.unit(6, "feet"),
  28802. weight: math.unit(150, "lb"),
  28803. name: "Front",
  28804. image: {
  28805. source: "./media/characters/haze-orris/front.svg",
  28806. extra: 3975 / 3525,
  28807. bottom: 137 / 4112
  28808. }
  28809. },
  28810. },
  28811. [
  28812. {
  28813. name: "Micro",
  28814. height: math.unit(150, "mm"),
  28815. default: true
  28816. },
  28817. ]
  28818. ))
  28819. characterMakers.push(() => makeCharacter(
  28820. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28821. {
  28822. front: {
  28823. height: math.unit(6, "feet"),
  28824. weight: math.unit(150, "lb"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/casselene-yaro/front.svg",
  28828. extra: 4721 / 4541,
  28829. bottom: 82 / 4803
  28830. }
  28831. },
  28832. back: {
  28833. height: math.unit(6, "feet"),
  28834. weight: math.unit(150, "lb"),
  28835. name: "Back",
  28836. image: {
  28837. source: "./media/characters/casselene-yaro/back.svg",
  28838. extra: 4569 / 4377,
  28839. bottom: 69 / 4638
  28840. }
  28841. },
  28842. frontDressed: {
  28843. height: math.unit(6, "feet"),
  28844. weight: math.unit(150, "lb"),
  28845. name: "Front-dressed",
  28846. image: {
  28847. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28848. extra: 4721 / 4541,
  28849. bottom: 82 / 4803
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Macro",
  28856. height: math.unit(190, "feet"),
  28857. default: true
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28863. {
  28864. front: {
  28865. height: math.unit(6, "feet"),
  28866. weight: math.unit(150, "lb"),
  28867. name: "Front",
  28868. image: {
  28869. source: "./media/characters/myra-rue-delore/front.svg",
  28870. extra: 1340 / 1308,
  28871. bottom: 67 / 1407
  28872. }
  28873. },
  28874. back: {
  28875. height: math.unit(6, "feet"),
  28876. weight: math.unit(150, "lb"),
  28877. name: "Back",
  28878. image: {
  28879. source: "./media/characters/myra-rue-delore/back.svg",
  28880. extra: 1341 / 1310,
  28881. bottom: 40 / 1381
  28882. }
  28883. },
  28884. frontDressed: {
  28885. height: math.unit(6, "feet"),
  28886. weight: math.unit(150, "lb"),
  28887. name: "Front (Dressed)",
  28888. image: {
  28889. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28890. extra: 1340 / 1308,
  28891. bottom: 67 / 1407
  28892. }
  28893. },
  28894. },
  28895. [
  28896. {
  28897. name: "Macro",
  28898. height: math.unit(150, "feet"),
  28899. default: true
  28900. },
  28901. ]
  28902. ))
  28903. characterMakers.push(() => makeCharacter(
  28904. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28905. {
  28906. front: {
  28907. height: math.unit(10, "feet"),
  28908. weight: math.unit(15015, "lb"),
  28909. name: "Front",
  28910. image: {
  28911. source: "./media/characters/fem!plat/front.svg",
  28912. extra: 2799 / 2604,
  28913. bottom: 149 / 2948
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Normal",
  28920. height: math.unit(10, "feet"),
  28921. default: true
  28922. },
  28923. {
  28924. name: "Macro",
  28925. height: math.unit(100, "feet")
  28926. },
  28927. {
  28928. name: "Megamacro",
  28929. height: math.unit(1000, "feet")
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(15 + 5 / 12, "feet"),
  28938. weight: math.unit(4600, "lb"),
  28939. name: "Front",
  28940. image: {
  28941. source: "./media/characters/neapolitan-ananassa/front.svg",
  28942. extra: 2903 / 2736,
  28943. bottom: 0 / 2903
  28944. }
  28945. },
  28946. side: {
  28947. height: math.unit(15 + 5 / 12, "feet"),
  28948. weight: math.unit(4600, "lb"),
  28949. name: "Side",
  28950. image: {
  28951. source: "./media/characters/neapolitan-ananassa/side.svg",
  28952. extra: 2925 / 2719,
  28953. bottom: 0 / 2925
  28954. }
  28955. },
  28956. back: {
  28957. height: math.unit(15 + 5 / 12, "feet"),
  28958. weight: math.unit(4600, "lb"),
  28959. name: "Back",
  28960. image: {
  28961. source: "./media/characters/neapolitan-ananassa/back.svg",
  28962. extra: 2903 / 2736,
  28963. bottom: 0 / 2903
  28964. }
  28965. },
  28966. },
  28967. [
  28968. {
  28969. name: "Normal",
  28970. height: math.unit(15 + 5 / 12, "feet"),
  28971. default: true
  28972. },
  28973. {
  28974. name: "Post-Millenium",
  28975. height: math.unit(35 + 5 / 12, "feet")
  28976. },
  28977. {
  28978. name: "Post-Era",
  28979. height: math.unit(450 + 5 / 12, "feet")
  28980. },
  28981. ]
  28982. ))
  28983. characterMakers.push(() => makeCharacter(
  28984. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28985. {
  28986. front: {
  28987. height: math.unit(300, "meters"),
  28988. weight: math.unit(125000, "tonnes"),
  28989. name: "Front",
  28990. image: {
  28991. source: "./media/characters/pazuzu/front.svg",
  28992. extra: 877 / 794,
  28993. bottom: 47 / 924
  28994. }
  28995. },
  28996. },
  28997. [
  28998. {
  28999. name: "Macro",
  29000. height: math.unit(300, "meters"),
  29001. default: true
  29002. },
  29003. ]
  29004. ))
  29005. characterMakers.push(() => makeCharacter(
  29006. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29007. {
  29008. side: {
  29009. height: math.unit(10 + 7 / 12, "feet"),
  29010. weight: math.unit(2.5, "tons"),
  29011. name: "Side",
  29012. image: {
  29013. source: "./media/characters/aasha/side.svg",
  29014. extra: 1345 / 1245,
  29015. bottom: 111 / 1456
  29016. }
  29017. },
  29018. back: {
  29019. height: math.unit(10 + 7 / 12, "feet"),
  29020. weight: math.unit(2.5, "tons"),
  29021. name: "Back",
  29022. image: {
  29023. source: "./media/characters/aasha/back.svg",
  29024. extra: 1133 / 1057,
  29025. bottom: 257 / 1390
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Normal",
  29032. height: math.unit(10 + 7 / 12, "feet"),
  29033. default: true
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(6 + 3 / 12, "feet"),
  29042. name: "Front",
  29043. image: {
  29044. source: "./media/characters/nevan/front.svg",
  29045. extra: 704 / 704,
  29046. bottom: 28 / 732
  29047. }
  29048. },
  29049. back: {
  29050. height: math.unit(6 + 3 / 12, "feet"),
  29051. name: "Back",
  29052. image: {
  29053. source: "./media/characters/nevan/back.svg",
  29054. extra: 714 / 714,
  29055. bottom: 21 / 735
  29056. }
  29057. },
  29058. frontFlaccid: {
  29059. height: math.unit(6 + 3 / 12, "feet"),
  29060. name: "Front (Flaccid)",
  29061. image: {
  29062. source: "./media/characters/nevan/front-flaccid.svg",
  29063. extra: 704 / 704,
  29064. bottom: 28 / 732
  29065. }
  29066. },
  29067. frontErect: {
  29068. height: math.unit(6 + 3 / 12, "feet"),
  29069. name: "Front (Erect)",
  29070. image: {
  29071. source: "./media/characters/nevan/front-erect.svg",
  29072. extra: 704 / 704,
  29073. bottom: 28 / 732
  29074. }
  29075. },
  29076. backFlaccid: {
  29077. height: math.unit(6 + 3 / 12, "feet"),
  29078. name: "Back (Flaccid)",
  29079. image: {
  29080. source: "./media/characters/nevan/back-flaccid.svg",
  29081. extra: 714 / 714,
  29082. bottom: 21 / 735
  29083. }
  29084. },
  29085. },
  29086. [
  29087. {
  29088. name: "Normal",
  29089. height: math.unit(6 + 3 / 12, "feet"),
  29090. default: true
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(4, "feet"),
  29099. name: "Front",
  29100. image: {
  29101. source: "./media/characters/arhan/front.svg",
  29102. extra: 3368 / 3133,
  29103. bottom: 0 / 3368
  29104. }
  29105. },
  29106. side: {
  29107. height: math.unit(4, "feet"),
  29108. name: "Side",
  29109. image: {
  29110. source: "./media/characters/arhan/side.svg",
  29111. extra: 3347 / 3105,
  29112. bottom: 0 / 3347
  29113. }
  29114. },
  29115. tongue: {
  29116. height: math.unit(1.42, "feet"),
  29117. name: "Tongue",
  29118. image: {
  29119. source: "./media/characters/arhan/tongue.svg"
  29120. }
  29121. },
  29122. head: {
  29123. height: math.unit(0.85, "feet"),
  29124. name: "Head",
  29125. image: {
  29126. source: "./media/characters/arhan/head.svg"
  29127. }
  29128. },
  29129. },
  29130. [
  29131. {
  29132. name: "Normal",
  29133. height: math.unit(4, "feet"),
  29134. default: true
  29135. },
  29136. ]
  29137. ))
  29138. characterMakers.push(() => makeCharacter(
  29139. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29140. {
  29141. front: {
  29142. height: math.unit(5 + 7.5 / 12, "feet"),
  29143. weight: math.unit(120, "lb"),
  29144. name: "Front",
  29145. image: {
  29146. source: "./media/characters/digi-duncan/front.svg",
  29147. extra: 330 / 326,
  29148. bottom: 16 / 346
  29149. }
  29150. },
  29151. side: {
  29152. height: math.unit(5 + 7.5 / 12, "feet"),
  29153. weight: math.unit(120, "lb"),
  29154. name: "Side",
  29155. image: {
  29156. source: "./media/characters/digi-duncan/side.svg",
  29157. extra: 341 / 337,
  29158. bottom: 1 / 342
  29159. }
  29160. },
  29161. back: {
  29162. height: math.unit(5 + 7.5 / 12, "feet"),
  29163. weight: math.unit(120, "lb"),
  29164. name: "Back",
  29165. image: {
  29166. source: "./media/characters/digi-duncan/back.svg",
  29167. extra: 330 / 326,
  29168. bottom: 12 / 342
  29169. }
  29170. },
  29171. },
  29172. [
  29173. {
  29174. name: "Speck",
  29175. height: math.unit(0.25, "mm")
  29176. },
  29177. {
  29178. name: "Micro",
  29179. height: math.unit(5, "mm")
  29180. },
  29181. {
  29182. name: "Tiny",
  29183. height: math.unit(0.5, "inches"),
  29184. default: true
  29185. },
  29186. {
  29187. name: "Human",
  29188. height: math.unit(5 + 7.5 / 12, "feet")
  29189. },
  29190. {
  29191. name: "Minigiant",
  29192. height: math.unit(8 + 5.25, "feet")
  29193. },
  29194. {
  29195. name: "Giant",
  29196. height: math.unit(2000, "feet")
  29197. },
  29198. {
  29199. name: "Mega",
  29200. height: math.unit(371.1, "miles")
  29201. },
  29202. ]
  29203. ))
  29204. characterMakers.push(() => makeCharacter(
  29205. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29206. {
  29207. front: {
  29208. height: math.unit(2, "meters"),
  29209. weight: math.unit(350, "kg"),
  29210. name: "Front",
  29211. image: {
  29212. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29213. extra: 898 / 838,
  29214. bottom: 9 / 907
  29215. }
  29216. },
  29217. },
  29218. [
  29219. {
  29220. name: "Micro",
  29221. height: math.unit(8, "meters")
  29222. },
  29223. {
  29224. name: "Normal",
  29225. height: math.unit(50, "meters"),
  29226. default: true
  29227. },
  29228. {
  29229. name: "Macro",
  29230. height: math.unit(500, "meters")
  29231. },
  29232. ]
  29233. ))
  29234. characterMakers.push(() => makeCharacter(
  29235. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29236. {
  29237. front: {
  29238. height: math.unit(6 + 6 / 12, "feet"),
  29239. name: "Front",
  29240. image: {
  29241. source: "./media/characters/khardesh/front.svg",
  29242. extra: 888 / 797,
  29243. bottom: 25 / 913
  29244. }
  29245. },
  29246. },
  29247. [
  29248. {
  29249. name: "Normal",
  29250. height: math.unit(6 + 6 / 12, "feet"),
  29251. default: true
  29252. },
  29253. {
  29254. name: "Normal+",
  29255. height: math.unit(4, "meters")
  29256. },
  29257. {
  29258. name: "Macro",
  29259. height: math.unit(50, "meters")
  29260. },
  29261. {
  29262. name: "Macro+",
  29263. height: math.unit(100, "meters")
  29264. },
  29265. {
  29266. name: "Megamacro",
  29267. height: math.unit(20, "km")
  29268. },
  29269. ]
  29270. ))
  29271. characterMakers.push(() => makeCharacter(
  29272. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29273. {
  29274. front: {
  29275. height: math.unit(6, "feet"),
  29276. weight: math.unit(150, "lb"),
  29277. name: "Front",
  29278. image: {
  29279. source: "./media/characters/kosho/front.svg",
  29280. extra: 1847 / 1847,
  29281. bottom: 86 / 1933
  29282. }
  29283. },
  29284. },
  29285. [
  29286. {
  29287. name: "Second-stage micro",
  29288. height: math.unit(0.5, "inches")
  29289. },
  29290. {
  29291. name: "First-stage micro",
  29292. height: math.unit(6, "inches")
  29293. },
  29294. {
  29295. name: "Normal",
  29296. height: math.unit(6, "feet"),
  29297. default: true
  29298. },
  29299. {
  29300. name: "First-stage macro",
  29301. height: math.unit(72, "feet")
  29302. },
  29303. {
  29304. name: "Second-stage macro",
  29305. height: math.unit(864, "feet")
  29306. },
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29311. {
  29312. normal: {
  29313. height: math.unit(4 + 6 / 12, "feet"),
  29314. name: "Normal",
  29315. image: {
  29316. source: "./media/characters/hydra/normal.svg",
  29317. extra: 2833 / 2634,
  29318. bottom: 68 / 2901
  29319. }
  29320. },
  29321. smol: {
  29322. height: math.unit(0.705, "inches"),
  29323. name: "Smol",
  29324. image: {
  29325. source: "./media/characters/hydra/smol.svg",
  29326. extra: 2715 / 2540,
  29327. bottom: 0 / 2715
  29328. }
  29329. },
  29330. },
  29331. [
  29332. {
  29333. name: "Normal",
  29334. height: math.unit(4 + 6 / 12, "feet"),
  29335. default: true
  29336. }
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(0.6, "cm"),
  29344. name: "Front",
  29345. image: {
  29346. source: "./media/characters/daz/front.svg",
  29347. extra: 1682 / 1164,
  29348. bottom: 42 / 1724
  29349. }
  29350. },
  29351. },
  29352. [
  29353. {
  29354. name: "Normal",
  29355. height: math.unit(0.6, "cm"),
  29356. default: true
  29357. },
  29358. ]
  29359. ))
  29360. characterMakers.push(() => makeCharacter(
  29361. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29362. {
  29363. front: {
  29364. height: math.unit(6, "feet"),
  29365. weight: math.unit(235, "lb"),
  29366. name: "Front",
  29367. image: {
  29368. source: "./media/characters/theo-pangolin/front.svg",
  29369. extra: 1996 / 1969,
  29370. bottom: 115 / 2111
  29371. }
  29372. },
  29373. back: {
  29374. height: math.unit(6, "feet"),
  29375. weight: math.unit(235, "lb"),
  29376. name: "Back",
  29377. image: {
  29378. source: "./media/characters/theo-pangolin/back.svg",
  29379. extra: 1979 / 1979,
  29380. bottom: 40 / 2019
  29381. }
  29382. },
  29383. feral: {
  29384. height: math.unit(2, "feet"),
  29385. weight: math.unit(30, "lb"),
  29386. name: "Feral",
  29387. image: {
  29388. source: "./media/characters/theo-pangolin/feral.svg",
  29389. extra: 803 / 791,
  29390. bottom: 181 / 984
  29391. }
  29392. },
  29393. footFive: {
  29394. height: math.unit(1.43, "feet"),
  29395. name: "Foot (Five Toes)",
  29396. image: {
  29397. source: "./media/characters/theo-pangolin/foot-five.svg"
  29398. }
  29399. },
  29400. footFour: {
  29401. height: math.unit(1.43, "feet"),
  29402. name: "Foot (Four Toes)",
  29403. image: {
  29404. source: "./media/characters/theo-pangolin/foot-four.svg"
  29405. }
  29406. },
  29407. handFour: {
  29408. height: math.unit(0.81, "feet"),
  29409. name: "Hand (Four Fingers)",
  29410. image: {
  29411. source: "./media/characters/theo-pangolin/hand-four.svg"
  29412. }
  29413. },
  29414. handThree: {
  29415. height: math.unit(0.81, "feet"),
  29416. name: "Hand (Three Fingers)",
  29417. image: {
  29418. source: "./media/characters/theo-pangolin/hand-three.svg"
  29419. }
  29420. },
  29421. headFront: {
  29422. height: math.unit(1.37, "feet"),
  29423. name: "Head (Front)",
  29424. image: {
  29425. source: "./media/characters/theo-pangolin/head-front.svg"
  29426. }
  29427. },
  29428. headSide: {
  29429. height: math.unit(1.43, "feet"),
  29430. name: "Head (Side)",
  29431. image: {
  29432. source: "./media/characters/theo-pangolin/head-side.svg"
  29433. }
  29434. },
  29435. tongue: {
  29436. height: math.unit(2.29, "feet"),
  29437. name: "Tongue",
  29438. image: {
  29439. source: "./media/characters/theo-pangolin/tongue.svg"
  29440. }
  29441. },
  29442. },
  29443. [
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(6, "feet")
  29447. },
  29448. {
  29449. name: "Macro",
  29450. height: math.unit(400, "feet"),
  29451. default: true
  29452. },
  29453. ]
  29454. ))
  29455. characterMakers.push(() => makeCharacter(
  29456. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29457. {
  29458. front: {
  29459. height: math.unit(6, "inches"),
  29460. weight: math.unit(0.036, "kg"),
  29461. name: "Front",
  29462. image: {
  29463. source: "./media/characters/renée/front.svg",
  29464. extra: 900 / 886,
  29465. bottom: 8 / 908
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Nano",
  29472. height: math.unit(1, "nm")
  29473. },
  29474. {
  29475. name: "Micro",
  29476. height: math.unit(1, "mm")
  29477. },
  29478. {
  29479. name: "Normal",
  29480. height: math.unit(6, "inches")
  29481. },
  29482. {
  29483. name: "Macro",
  29484. height: math.unit(2000, "feet"),
  29485. default: true
  29486. },
  29487. {
  29488. name: "Megamacro",
  29489. height: math.unit(2, "km")
  29490. },
  29491. {
  29492. name: "Gigamacro",
  29493. height: math.unit(2000, "km")
  29494. },
  29495. {
  29496. name: "Teramacro",
  29497. height: math.unit(250000, "km")
  29498. },
  29499. ]
  29500. ))
  29501. characterMakers.push(() => makeCharacter(
  29502. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29503. {
  29504. front: {
  29505. height: math.unit(4, "meters"),
  29506. weight: math.unit(150, "kg"),
  29507. name: "Front",
  29508. image: {
  29509. source: "./media/characters/caledvwlch/front.svg",
  29510. extra: 1760 / 1551,
  29511. bottom: 28 / 1788
  29512. }
  29513. },
  29514. side: {
  29515. height: math.unit(4, "meters"),
  29516. weight: math.unit(150, "kg"),
  29517. name: "Side",
  29518. image: {
  29519. source: "./media/characters/caledvwlch/side.svg",
  29520. extra: 1605 / 1536,
  29521. bottom: 31 / 1636
  29522. }
  29523. },
  29524. back: {
  29525. height: math.unit(4, "meters"),
  29526. weight: math.unit(150, "kg"),
  29527. name: "Back",
  29528. image: {
  29529. source: "./media/characters/caledvwlch/back.svg",
  29530. extra: 1635 / 1565,
  29531. bottom: 27 / 1662
  29532. }
  29533. },
  29534. },
  29535. [
  29536. {
  29537. name: "\"Incognito\"",
  29538. height: math.unit(4, "meters")
  29539. },
  29540. {
  29541. name: "Small rampage",
  29542. height: math.unit(600, "meters")
  29543. },
  29544. {
  29545. name: "Mega",
  29546. height: math.unit(30, "km")
  29547. },
  29548. {
  29549. name: "Home-size",
  29550. height: math.unit(50, "km"),
  29551. default: true
  29552. },
  29553. {
  29554. name: "Giga",
  29555. height: math.unit(300, "km")
  29556. },
  29557. {
  29558. name: "Lounging",
  29559. height: math.unit(11000, "km")
  29560. },
  29561. {
  29562. name: "Planet snacking",
  29563. height: math.unit(2000000, "km")
  29564. },
  29565. ]
  29566. ))
  29567. characterMakers.push(() => makeCharacter(
  29568. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29569. {
  29570. front: {
  29571. height: math.unit(6, "feet"),
  29572. weight: math.unit(215, "lb"),
  29573. name: "Front",
  29574. image: {
  29575. source: "./media/characters/sapphire-svell/front.svg",
  29576. extra: 495 / 455,
  29577. bottom: 20 / 515
  29578. }
  29579. },
  29580. back: {
  29581. height: math.unit(6, "feet"),
  29582. weight: math.unit(216, "lb"),
  29583. name: "Back",
  29584. image: {
  29585. source: "./media/characters/sapphire-svell/back.svg",
  29586. extra: 497 / 477,
  29587. bottom: 7 / 504
  29588. }
  29589. },
  29590. maw: {
  29591. height: math.unit(1.57, "feet"),
  29592. name: "Maw",
  29593. image: {
  29594. source: "./media/characters/sapphire-svell/maw.svg"
  29595. }
  29596. },
  29597. foot: {
  29598. height: math.unit(1.07, "feet"),
  29599. name: "Foot",
  29600. image: {
  29601. source: "./media/characters/sapphire-svell/foot.svg"
  29602. }
  29603. },
  29604. toering: {
  29605. height: math.unit(1.7, "inch"),
  29606. name: "Toering",
  29607. image: {
  29608. source: "./media/characters/sapphire-svell/toering.svg"
  29609. }
  29610. },
  29611. },
  29612. [
  29613. {
  29614. name: "Normal",
  29615. height: math.unit(300, "feet"),
  29616. default: true
  29617. },
  29618. {
  29619. name: "Augmented",
  29620. height: math.unit(1250, "feet")
  29621. },
  29622. {
  29623. name: "Unleashed",
  29624. height: math.unit(3000, "feet")
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29630. {
  29631. side: {
  29632. height: math.unit(2 + 3 / 12, "feet"),
  29633. weight: math.unit(110, "lb"),
  29634. name: "Side",
  29635. image: {
  29636. source: "./media/characters/glitch-flux/side.svg",
  29637. extra: 997 / 805,
  29638. bottom: 20 / 1017
  29639. }
  29640. },
  29641. },
  29642. [
  29643. {
  29644. name: "Normal",
  29645. height: math.unit(2 + 3 / 12, "feet"),
  29646. default: true
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29652. {
  29653. front: {
  29654. height: math.unit(4, "meters"),
  29655. name: "Front",
  29656. image: {
  29657. source: "./media/characters/mid/front.svg",
  29658. extra: 507 / 476,
  29659. bottom: 17 / 524
  29660. }
  29661. },
  29662. back: {
  29663. height: math.unit(4, "meters"),
  29664. name: "Back",
  29665. image: {
  29666. source: "./media/characters/mid/back.svg",
  29667. extra: 519 / 487,
  29668. bottom: 7 / 526
  29669. }
  29670. },
  29671. stuck: {
  29672. height: math.unit(2.2, "meters"),
  29673. name: "Stuck",
  29674. image: {
  29675. source: "./media/characters/mid/stuck.svg",
  29676. extra: 1951 / 1869,
  29677. bottom: 88 / 2039
  29678. }
  29679. }
  29680. },
  29681. [
  29682. {
  29683. name: "Normal",
  29684. height: math.unit(4, "meters"),
  29685. default: true
  29686. },
  29687. {
  29688. name: "Big",
  29689. height: math.unit(10, "meters")
  29690. },
  29691. {
  29692. name: "Macro",
  29693. height: math.unit(800, "meters")
  29694. },
  29695. {
  29696. name: "Megamacro",
  29697. height: math.unit(100, "km")
  29698. },
  29699. {
  29700. name: "Overgrown",
  29701. height: math.unit(1, "parsec")
  29702. },
  29703. ]
  29704. ))
  29705. characterMakers.push(() => makeCharacter(
  29706. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29707. {
  29708. front: {
  29709. height: math.unit(2.5, "meters"),
  29710. weight: math.unit(225, "kg"),
  29711. name: "Front",
  29712. image: {
  29713. source: "./media/characters/iris/front.svg",
  29714. extra: 3348 / 3251,
  29715. bottom: 205 / 3553
  29716. }
  29717. },
  29718. maw: {
  29719. height: math.unit(0.56, "meter"),
  29720. name: "Maw",
  29721. image: {
  29722. source: "./media/characters/iris/maw.svg"
  29723. }
  29724. },
  29725. },
  29726. [
  29727. {
  29728. name: "Mewter cat",
  29729. height: math.unit(1.2, "meters")
  29730. },
  29731. {
  29732. name: "Minimacro",
  29733. height: math.unit(2.5, "meters"),
  29734. default: true
  29735. },
  29736. {
  29737. name: "Macro",
  29738. height: math.unit(180, "meters")
  29739. },
  29740. {
  29741. name: "Megamacro",
  29742. height: math.unit(2746, "meters")
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(6, "feet"),
  29751. weight: math.unit(135, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/axel/front.svg",
  29755. extra: 908 / 908,
  29756. bottom: 58 / 966
  29757. }
  29758. },
  29759. side: {
  29760. height: math.unit(6, "feet"),
  29761. weight: math.unit(135, "lb"),
  29762. name: "Side",
  29763. image: {
  29764. source: "./media/characters/axel/side.svg",
  29765. extra: 958 / 958,
  29766. bottom: 11 / 969
  29767. }
  29768. },
  29769. back: {
  29770. height: math.unit(6, "feet"),
  29771. weight: math.unit(135, "lb"),
  29772. name: "Back",
  29773. image: {
  29774. source: "./media/characters/axel/back.svg",
  29775. extra: 887 / 887,
  29776. bottom: 34 / 921
  29777. }
  29778. },
  29779. head: {
  29780. height: math.unit(1.07, "feet"),
  29781. name: "Head",
  29782. image: {
  29783. source: "./media/characters/axel/head.svg"
  29784. }
  29785. },
  29786. beak: {
  29787. height: math.unit(1.4, "feet"),
  29788. name: "Beak",
  29789. image: {
  29790. source: "./media/characters/axel/beak.svg"
  29791. }
  29792. },
  29793. beakSide: {
  29794. height: math.unit(1.4, "feet"),
  29795. name: "Beak Side",
  29796. image: {
  29797. source: "./media/characters/axel/beak-side.svg"
  29798. }
  29799. },
  29800. sheath: {
  29801. height: math.unit(0.5, "feet"),
  29802. name: "Sheath",
  29803. image: {
  29804. source: "./media/characters/axel/sheath.svg"
  29805. }
  29806. },
  29807. dick: {
  29808. height: math.unit(0.98, "feet"),
  29809. name: "Dick",
  29810. image: {
  29811. source: "./media/characters/axel/dick.svg"
  29812. }
  29813. },
  29814. },
  29815. [
  29816. {
  29817. name: "Macro",
  29818. height: math.unit(68, "meters"),
  29819. default: true
  29820. },
  29821. ]
  29822. ))
  29823. characterMakers.push(() => makeCharacter(
  29824. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29825. {
  29826. front: {
  29827. height: math.unit(3.5, "meters"),
  29828. weight: math.unit(1200, "kg"),
  29829. name: "Front",
  29830. image: {
  29831. source: "./media/characters/joanna/front.svg",
  29832. extra: 1596 / 1488,
  29833. bottom: 29 / 1625
  29834. }
  29835. },
  29836. back: {
  29837. height: math.unit(3.5, "meters"),
  29838. weight: math.unit(1200, "kg"),
  29839. name: "Back",
  29840. image: {
  29841. source: "./media/characters/joanna/back.svg",
  29842. extra: 1594 / 1495,
  29843. bottom: 26 / 1620
  29844. }
  29845. },
  29846. frontShorts: {
  29847. height: math.unit(3.5, "meters"),
  29848. weight: math.unit(1200, "kg"),
  29849. name: "Front (Shorts)",
  29850. image: {
  29851. source: "./media/characters/joanna/front-shorts.svg",
  29852. extra: 1596 / 1488,
  29853. bottom: 29 / 1625
  29854. }
  29855. },
  29856. frontBiker: {
  29857. height: math.unit(3.5, "meters"),
  29858. weight: math.unit(1200, "kg"),
  29859. name: "Front (Biker)",
  29860. image: {
  29861. source: "./media/characters/joanna/front-biker.svg",
  29862. extra: 1596 / 1488,
  29863. bottom: 29 / 1625
  29864. }
  29865. },
  29866. backBiker: {
  29867. height: math.unit(3.5, "meters"),
  29868. weight: math.unit(1200, "kg"),
  29869. name: "Back (Biker)",
  29870. image: {
  29871. source: "./media/characters/joanna/back-biker.svg",
  29872. extra: 1594 / 1495,
  29873. bottom: 88 / 1682
  29874. }
  29875. },
  29876. bikeLeft: {
  29877. height: math.unit(2.4, "meters"),
  29878. weight: math.unit(1600, "kg"),
  29879. name: "Bike (Left)",
  29880. image: {
  29881. source: "./media/characters/joanna/bike-left.svg",
  29882. extra: 720 / 720,
  29883. bottom: 8 / 728
  29884. }
  29885. },
  29886. bikeRight: {
  29887. height: math.unit(2.4, "meters"),
  29888. weight: math.unit(1600, "kg"),
  29889. name: "Bike (Right)",
  29890. image: {
  29891. source: "./media/characters/joanna/bike-right.svg",
  29892. extra: 720 / 720,
  29893. bottom: 8 / 728
  29894. }
  29895. },
  29896. },
  29897. [
  29898. {
  29899. name: "Incognito",
  29900. height: math.unit(3.5, "meters")
  29901. },
  29902. {
  29903. name: "Casual Big",
  29904. height: math.unit(200, "meters")
  29905. },
  29906. {
  29907. name: "Macro",
  29908. height: math.unit(600, "meters")
  29909. },
  29910. {
  29911. name: "Original",
  29912. height: math.unit(20, "km"),
  29913. default: true
  29914. },
  29915. {
  29916. name: "Giga",
  29917. height: math.unit(400, "km")
  29918. },
  29919. {
  29920. name: "Lounging",
  29921. height: math.unit(1500, "km")
  29922. },
  29923. {
  29924. name: "Planetary",
  29925. height: math.unit(200000, "km")
  29926. },
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29931. {
  29932. front: {
  29933. height: math.unit(6, "feet"),
  29934. weight: math.unit(150, "lb"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/hugo-sigil/front.svg",
  29938. extra: 522 / 500,
  29939. bottom: 2 / 524
  29940. }
  29941. },
  29942. back: {
  29943. height: math.unit(6, "feet"),
  29944. weight: math.unit(150, "lb"),
  29945. name: "Back",
  29946. image: {
  29947. source: "./media/characters/hugo-sigil/back.svg",
  29948. extra: 519 / 495,
  29949. bottom: 5 / 524
  29950. }
  29951. },
  29952. maw: {
  29953. height: math.unit(1.4, "feet"),
  29954. weight: math.unit(150, "lb"),
  29955. name: "Maw",
  29956. image: {
  29957. source: "./media/characters/hugo-sigil/maw.svg"
  29958. }
  29959. },
  29960. feet: {
  29961. height: math.unit(1.56, "feet"),
  29962. weight: math.unit(150, "lb"),
  29963. name: "Feet",
  29964. image: {
  29965. source: "./media/characters/hugo-sigil/feet.svg",
  29966. extra: 177 / 177,
  29967. bottom: 12 / 189
  29968. }
  29969. },
  29970. },
  29971. [
  29972. {
  29973. name: "Normal",
  29974. height: math.unit(6, "feet")
  29975. },
  29976. {
  29977. name: "Macro",
  29978. height: math.unit(200, "feet"),
  29979. default: true
  29980. },
  29981. ]
  29982. ))
  29983. characterMakers.push(() => makeCharacter(
  29984. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29985. {
  29986. front: {
  29987. height: math.unit(6, "feet"),
  29988. weight: math.unit(150, "lb"),
  29989. name: "Front",
  29990. image: {
  29991. source: "./media/characters/peri/front.svg",
  29992. extra: 2354 / 2233,
  29993. bottom: 49 / 2403
  29994. }
  29995. },
  29996. },
  29997. [
  29998. {
  29999. name: "Really Small",
  30000. height: math.unit(1, "nm")
  30001. },
  30002. {
  30003. name: "Micro",
  30004. height: math.unit(4, "inches")
  30005. },
  30006. {
  30007. name: "Normal",
  30008. height: math.unit(7, "inches"),
  30009. default: true
  30010. },
  30011. {
  30012. name: "Macro",
  30013. height: math.unit(400, "feet")
  30014. },
  30015. {
  30016. name: "Megamacro",
  30017. height: math.unit(100, "miles")
  30018. },
  30019. ]
  30020. ))
  30021. characterMakers.push(() => makeCharacter(
  30022. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30023. {
  30024. frontSlim: {
  30025. height: math.unit(7, "feet"),
  30026. name: "Front (Slim)",
  30027. image: {
  30028. source: "./media/characters/issilora/front-slim.svg",
  30029. extra: 529 / 449,
  30030. bottom: 53 / 582
  30031. }
  30032. },
  30033. sideSlim: {
  30034. height: math.unit(7, "feet"),
  30035. name: "Side (Slim)",
  30036. image: {
  30037. source: "./media/characters/issilora/side-slim.svg",
  30038. extra: 570 / 480,
  30039. bottom: 30 / 600
  30040. }
  30041. },
  30042. backSlim: {
  30043. height: math.unit(7, "feet"),
  30044. name: "Back (Slim)",
  30045. image: {
  30046. source: "./media/characters/issilora/back-slim.svg",
  30047. extra: 537 / 455,
  30048. bottom: 46 / 583
  30049. }
  30050. },
  30051. frontBuff: {
  30052. height: math.unit(7, "feet"),
  30053. name: "Front (Buff)",
  30054. image: {
  30055. source: "./media/characters/issilora/front-buff.svg",
  30056. extra: 2310 / 2035,
  30057. bottom: 335 / 2645
  30058. }
  30059. },
  30060. head: {
  30061. height: math.unit(1.94, "feet"),
  30062. name: "Head",
  30063. image: {
  30064. source: "./media/characters/issilora/head.svg"
  30065. }
  30066. },
  30067. },
  30068. [
  30069. {
  30070. name: "Minimum",
  30071. height: math.unit(7, "feet")
  30072. },
  30073. {
  30074. name: "Comfortable",
  30075. height: math.unit(17, "feet")
  30076. },
  30077. {
  30078. name: "Fun Size",
  30079. height: math.unit(47, "feet")
  30080. },
  30081. {
  30082. name: "Natural Macro",
  30083. height: math.unit(137, "feet"),
  30084. default: true
  30085. },
  30086. {
  30087. name: "Maximum Kaiju",
  30088. height: math.unit(397, "feet")
  30089. },
  30090. ]
  30091. ))
  30092. characterMakers.push(() => makeCharacter(
  30093. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30094. {
  30095. front: {
  30096. height: math.unit(50 + 9/12, "feet"),
  30097. weight: math.unit(32.8, "tons"),
  30098. name: "Front",
  30099. image: {
  30100. source: "./media/characters/irb'iiritaahn/front.svg",
  30101. extra: 1878/1826,
  30102. bottom: 326/2204
  30103. }
  30104. },
  30105. back: {
  30106. height: math.unit(50 + 9/12, "feet"),
  30107. weight: math.unit(32.8, "tons"),
  30108. name: "Back",
  30109. image: {
  30110. source: "./media/characters/irb'iiritaahn/back.svg",
  30111. extra: 2052/2018,
  30112. bottom: 152/2204
  30113. }
  30114. },
  30115. head: {
  30116. height: math.unit(12.86, "feet"),
  30117. name: "Head",
  30118. image: {
  30119. source: "./media/characters/irb'iiritaahn/head.svg"
  30120. }
  30121. },
  30122. maw: {
  30123. height: math.unit(9.66, "feet"),
  30124. name: "Maw",
  30125. image: {
  30126. source: "./media/characters/irb'iiritaahn/maw.svg"
  30127. }
  30128. },
  30129. frontDick: {
  30130. height: math.unit(8.78461, "feet"),
  30131. name: "Front Dick",
  30132. image: {
  30133. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30134. }
  30135. },
  30136. rearDick: {
  30137. height: math.unit(8.78461, "feet"),
  30138. name: "Rear Dick",
  30139. image: {
  30140. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30141. }
  30142. },
  30143. rearDickUnfolded: {
  30144. height: math.unit(8.78, "feet"),
  30145. name: "Rear Dick (Unfolded)",
  30146. image: {
  30147. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30148. }
  30149. },
  30150. wings: {
  30151. height: math.unit(43, "feet"),
  30152. name: "Wings",
  30153. image: {
  30154. source: "./media/characters/irb'iiritaahn/wings.svg"
  30155. }
  30156. },
  30157. },
  30158. [
  30159. {
  30160. name: "Macro",
  30161. height: math.unit(50 + 9/12, "feet"),
  30162. default: true
  30163. },
  30164. ]
  30165. ))
  30166. characterMakers.push(() => makeCharacter(
  30167. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30168. {
  30169. front: {
  30170. height: math.unit(205, "cm"),
  30171. weight: math.unit(102, "kg"),
  30172. name: "Front",
  30173. image: {
  30174. source: "./media/characters/irbisgreif/front.svg",
  30175. extra: 785/706,
  30176. bottom: 13/798
  30177. }
  30178. },
  30179. back: {
  30180. height: math.unit(205, "cm"),
  30181. weight: math.unit(102, "kg"),
  30182. name: "Back",
  30183. image: {
  30184. source: "./media/characters/irbisgreif/back.svg",
  30185. extra: 713/701,
  30186. bottom: 26/739
  30187. }
  30188. },
  30189. frontDressed: {
  30190. height: math.unit(216, "cm"),
  30191. weight: math.unit(102, "kg"),
  30192. name: "Front-dressed",
  30193. image: {
  30194. source: "./media/characters/irbisgreif/front-dressed.svg",
  30195. extra: 902/776,
  30196. bottom: 14/916
  30197. }
  30198. },
  30199. sideDressed: {
  30200. height: math.unit(195, "cm"),
  30201. weight: math.unit(102, "kg"),
  30202. name: "Side-dressed",
  30203. image: {
  30204. source: "./media/characters/irbisgreif/side-dressed.svg",
  30205. extra: 788/688,
  30206. bottom: 21/809
  30207. }
  30208. },
  30209. backDressed: {
  30210. height: math.unit(216, "cm"),
  30211. weight: math.unit(102, "kg"),
  30212. name: "Back-dressed",
  30213. image: {
  30214. source: "./media/characters/irbisgreif/back-dressed.svg",
  30215. extra: 901/783,
  30216. bottom: 10/911
  30217. }
  30218. },
  30219. dick: {
  30220. height: math.unit(0.49, "feet"),
  30221. name: "Dick",
  30222. image: {
  30223. source: "./media/characters/irbisgreif/dick.svg"
  30224. }
  30225. },
  30226. wingTop: {
  30227. height: math.unit(1.93 , "feet"),
  30228. name: "Wing-top",
  30229. image: {
  30230. source: "./media/characters/irbisgreif/wing-top.svg"
  30231. }
  30232. },
  30233. wingBottom: {
  30234. height: math.unit(1.93 , "feet"),
  30235. name: "Wing-bottom",
  30236. image: {
  30237. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30238. }
  30239. },
  30240. },
  30241. [
  30242. {
  30243. name: "Normal",
  30244. height: math.unit(216, "cm"),
  30245. default: true
  30246. },
  30247. ]
  30248. ))
  30249. characterMakers.push(() => makeCharacter(
  30250. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30251. {
  30252. front: {
  30253. height: math.unit(6, "feet"),
  30254. weight: math.unit(150, "lb"),
  30255. name: "Front",
  30256. image: {
  30257. source: "./media/characters/pride/front.svg",
  30258. extra: 1299/1230,
  30259. bottom: 18/1317
  30260. }
  30261. },
  30262. },
  30263. [
  30264. {
  30265. name: "Normal",
  30266. height: math.unit(7, "feet")
  30267. },
  30268. {
  30269. name: "Mini-macro",
  30270. height: math.unit(11, "feet")
  30271. },
  30272. {
  30273. name: "Macro",
  30274. height: math.unit(15, "meters"),
  30275. default: true
  30276. },
  30277. {
  30278. name: "Macro+",
  30279. height: math.unit(40, "meters")
  30280. },
  30281. ]
  30282. ))
  30283. characterMakers.push(() => makeCharacter(
  30284. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30285. {
  30286. front: {
  30287. height: math.unit(4 + 2 / 12, "feet"),
  30288. weight: math.unit(95, "lb"),
  30289. name: "Front",
  30290. image: {
  30291. source: "./media/characters/vaelophis-nyx/front.svg",
  30292. extra: 2532/2330,
  30293. bottom: 0/2532
  30294. }
  30295. },
  30296. back: {
  30297. height: math.unit(4 + 2 / 12, "feet"),
  30298. weight: math.unit(95, "lb"),
  30299. name: "Back",
  30300. image: {
  30301. source: "./media/characters/vaelophis-nyx/back.svg",
  30302. extra: 2484/2361,
  30303. bottom: 0/2484
  30304. }
  30305. },
  30306. feralSide: {
  30307. height: math.unit(2 + 1/12, "feet"),
  30308. weight: math.unit(20, "lb"),
  30309. name: "Feral (Side)",
  30310. image: {
  30311. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30312. extra: 1721/1581,
  30313. bottom: 70/1791
  30314. }
  30315. },
  30316. feralLazing: {
  30317. height: math.unit(1.08, "feet"),
  30318. weight: math.unit(20, "lb"),
  30319. name: "Feral (Lazing)",
  30320. image: {
  30321. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30322. extra: 822/822,
  30323. bottom: 248/1070
  30324. }
  30325. },
  30326. ear: {
  30327. height: math.unit(0.416, "feet"),
  30328. name: "Ear",
  30329. image: {
  30330. source: "./media/characters/vaelophis-nyx/ear.svg"
  30331. }
  30332. },
  30333. eye: {
  30334. height: math.unit(0.0748, "feet"),
  30335. name: "Eye",
  30336. image: {
  30337. source: "./media/characters/vaelophis-nyx/eye.svg"
  30338. }
  30339. },
  30340. mouth: {
  30341. height: math.unit(0.378, "feet"),
  30342. name: "Mouth",
  30343. image: {
  30344. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30345. }
  30346. },
  30347. spade: {
  30348. height: math.unit(0.55, "feet"),
  30349. name: "Spade",
  30350. image: {
  30351. source: "./media/characters/vaelophis-nyx/spade.svg"
  30352. }
  30353. },
  30354. },
  30355. [
  30356. {
  30357. name: "Normal",
  30358. height: math.unit(4 + 2/12, "feet"),
  30359. default: true
  30360. },
  30361. ]
  30362. ))
  30363. characterMakers.push(() => makeCharacter(
  30364. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30365. {
  30366. front: {
  30367. height: math.unit(7, "feet"),
  30368. weight: math.unit(231, "lb"),
  30369. name: "Front",
  30370. image: {
  30371. source: "./media/characters/flux/front.svg",
  30372. extra: 919/871,
  30373. bottom: 0/919
  30374. }
  30375. },
  30376. back: {
  30377. height: math.unit(7, "feet"),
  30378. weight: math.unit(231, "lb"),
  30379. name: "Back",
  30380. image: {
  30381. source: "./media/characters/flux/back.svg",
  30382. extra: 1040/992,
  30383. bottom: 0/1040
  30384. }
  30385. },
  30386. frontDressed: {
  30387. height: math.unit(7, "feet"),
  30388. weight: math.unit(231, "lb"),
  30389. name: "Front (Dressed)",
  30390. image: {
  30391. source: "./media/characters/flux/front-dressed.svg",
  30392. extra: 919/871,
  30393. bottom: 0/919
  30394. }
  30395. },
  30396. feralSide: {
  30397. height: math.unit(5, "feet"),
  30398. weight: math.unit(150, "lb"),
  30399. name: "Feral (Side)",
  30400. image: {
  30401. source: "./media/characters/flux/feral-side.svg",
  30402. extra: 598/528,
  30403. bottom: 28/626
  30404. }
  30405. },
  30406. head: {
  30407. height: math.unit(1.585, "feet"),
  30408. name: "Head",
  30409. image: {
  30410. source: "./media/characters/flux/head.svg"
  30411. }
  30412. },
  30413. headSide: {
  30414. height: math.unit(1.74, "feet"),
  30415. name: "Head (Side)",
  30416. image: {
  30417. source: "./media/characters/flux/head-side.svg"
  30418. }
  30419. },
  30420. headSideFire: {
  30421. height: math.unit(1.76, "feet"),
  30422. name: "Head (Side, Fire)",
  30423. image: {
  30424. source: "./media/characters/flux/head-side-fire.svg"
  30425. }
  30426. },
  30427. },
  30428. [
  30429. {
  30430. name: "Normal",
  30431. height: math.unit(7, "feet"),
  30432. default: true
  30433. },
  30434. ]
  30435. ))
  30436. characterMakers.push(() => makeCharacter(
  30437. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30438. {
  30439. front: {
  30440. height: math.unit(9, "feet"),
  30441. weight: math.unit(1012, "lb"),
  30442. name: "Front",
  30443. image: {
  30444. source: "./media/characters/ulfra-lupae/front.svg",
  30445. extra: 1083/1011,
  30446. bottom: 67/1150
  30447. }
  30448. },
  30449. },
  30450. [
  30451. {
  30452. name: "Micro",
  30453. height: math.unit(6, "inches")
  30454. },
  30455. {
  30456. name: "Socializing",
  30457. height: math.unit(6 + 5/12, "feet")
  30458. },
  30459. {
  30460. name: "Normal",
  30461. height: math.unit(9, "feet"),
  30462. default: true
  30463. },
  30464. {
  30465. name: "Macro",
  30466. height: math.unit(150, "feet")
  30467. },
  30468. ]
  30469. ))
  30470. characterMakers.push(() => makeCharacter(
  30471. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30472. {
  30473. front: {
  30474. height: math.unit(5 + 2/12, "feet"),
  30475. weight: math.unit(120, "lb"),
  30476. name: "Front",
  30477. image: {
  30478. source: "./media/characters/timber/front.svg",
  30479. extra: 2814/2705,
  30480. bottom: 181/2995
  30481. }
  30482. },
  30483. },
  30484. [
  30485. {
  30486. name: "Normal",
  30487. height: math.unit(5 + 2/12, "feet"),
  30488. default: true
  30489. },
  30490. ]
  30491. ))
  30492. characterMakers.push(() => makeCharacter(
  30493. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30494. {
  30495. front: {
  30496. height: math.unit(5 + 7/12, "feet"),
  30497. weight: math.unit(220, "lb"),
  30498. name: "Front",
  30499. image: {
  30500. source: "./media/characters/nicki/front.svg",
  30501. extra: 453/419,
  30502. bottom: 7/460
  30503. }
  30504. },
  30505. frontAlt: {
  30506. height: math.unit(5 + 7/12, "feet"),
  30507. weight: math.unit(220, "lb"),
  30508. name: "Front-alt",
  30509. image: {
  30510. source: "./media/characters/nicki/front-alt.svg",
  30511. extra: 435/411,
  30512. bottom: 12/447
  30513. }
  30514. },
  30515. back: {
  30516. height: math.unit(5 + 7/12, "feet"),
  30517. weight: math.unit(220, "lb"),
  30518. name: "Back",
  30519. image: {
  30520. source: "./media/characters/nicki/back.svg",
  30521. extra: 440/413,
  30522. bottom: 19/459
  30523. }
  30524. },
  30525. taur: {
  30526. height: math.unit(7 + 6/12, "feet"),
  30527. weight: math.unit(700, "lb"),
  30528. name: "Taur",
  30529. image: {
  30530. source: "./media/characters/nicki/taur.svg",
  30531. extra: 975/773,
  30532. bottom: 0/975
  30533. }
  30534. },
  30535. frontNsfw: {
  30536. height: math.unit(5 + 7/12, "feet"),
  30537. weight: math.unit(220, "lb"),
  30538. name: "Front (NSFW)",
  30539. image: {
  30540. source: "./media/characters/nicki/front-nsfw.svg",
  30541. extra: 453/419,
  30542. bottom: 7/460
  30543. }
  30544. },
  30545. frontNsfwAlt: {
  30546. height: math.unit(5 + 7/12, "feet"),
  30547. weight: math.unit(220, "lb"),
  30548. name: "Front (Alt, NSFW)",
  30549. image: {
  30550. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30551. extra: 435/411,
  30552. bottom: 12/447
  30553. }
  30554. },
  30555. backNsfw: {
  30556. height: math.unit(5 + 7/12, "feet"),
  30557. weight: math.unit(220, "lb"),
  30558. name: "Back (NSFW)",
  30559. image: {
  30560. source: "./media/characters/nicki/back-nsfw.svg",
  30561. extra: 440/413,
  30562. bottom: 19/459
  30563. }
  30564. },
  30565. head: {
  30566. height: math.unit(2.1, "feet"),
  30567. name: "Head",
  30568. image: {
  30569. source: "./media/characters/nicki/head.svg"
  30570. }
  30571. },
  30572. paw: {
  30573. height: math.unit(1.88, "feet"),
  30574. name: "Paw",
  30575. image: {
  30576. source: "./media/characters/nicki/paw.svg"
  30577. }
  30578. },
  30579. },
  30580. [
  30581. {
  30582. name: "Normal",
  30583. height: math.unit(5 + 7/12, "feet"),
  30584. default: true
  30585. },
  30586. ]
  30587. ))
  30588. characterMakers.push(() => makeCharacter(
  30589. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30590. {
  30591. front: {
  30592. height: math.unit(7 + 10/12, "feet"),
  30593. weight: math.unit(3.5, "tons"),
  30594. name: "Front",
  30595. image: {
  30596. source: "./media/characters/lee/front.svg",
  30597. extra: 1773/1615,
  30598. bottom: 86/1859
  30599. }
  30600. },
  30601. hand: {
  30602. height: math.unit(1.78, "feet"),
  30603. name: "Hand",
  30604. image: {
  30605. source: "./media/characters/lee/hand.svg"
  30606. }
  30607. },
  30608. maw: {
  30609. height: math.unit(1.18, "feet"),
  30610. name: "Maw",
  30611. image: {
  30612. source: "./media/characters/lee/maw.svg"
  30613. }
  30614. },
  30615. },
  30616. [
  30617. {
  30618. name: "Normal",
  30619. height: math.unit(7 + 10/12, "feet"),
  30620. default: true
  30621. },
  30622. ]
  30623. ))
  30624. characterMakers.push(() => makeCharacter(
  30625. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30626. {
  30627. front: {
  30628. height: math.unit(9, "feet"),
  30629. name: "Front",
  30630. image: {
  30631. source: "./media/characters/guti/front.svg",
  30632. extra: 4551/4355,
  30633. bottom: 123/4674
  30634. }
  30635. },
  30636. tongue: {
  30637. height: math.unit(1, "feet"),
  30638. name: "Tongue",
  30639. image: {
  30640. source: "./media/characters/guti/tongue.svg"
  30641. }
  30642. },
  30643. paw: {
  30644. height: math.unit(1.18, "feet"),
  30645. name: "Paw",
  30646. image: {
  30647. source: "./media/characters/guti/paw.svg"
  30648. }
  30649. },
  30650. },
  30651. [
  30652. {
  30653. name: "Normal",
  30654. height: math.unit(9, "feet"),
  30655. default: true
  30656. },
  30657. ]
  30658. ))
  30659. characterMakers.push(() => makeCharacter(
  30660. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30661. {
  30662. side: {
  30663. height: math.unit(5, "meters"),
  30664. name: "Side",
  30665. image: {
  30666. source: "./media/characters/vesper/side.svg",
  30667. extra: 1605/1518,
  30668. bottom: 0/1605
  30669. }
  30670. },
  30671. },
  30672. [
  30673. {
  30674. name: "Small",
  30675. height: math.unit(5, "meters")
  30676. },
  30677. {
  30678. name: "Sage",
  30679. height: math.unit(100, "meters"),
  30680. default: true
  30681. },
  30682. {
  30683. name: "Fun Size",
  30684. height: math.unit(600, "meters")
  30685. },
  30686. {
  30687. name: "Goddess",
  30688. height: math.unit(20000, "km")
  30689. },
  30690. {
  30691. name: "Maximum",
  30692. height: math.unit(5, "galaxies")
  30693. },
  30694. ]
  30695. ))
  30696. characterMakers.push(() => makeCharacter(
  30697. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30698. {
  30699. front: {
  30700. height: math.unit(6 + 3/12, "feet"),
  30701. weight: math.unit(190, "lb"),
  30702. name: "Front",
  30703. image: {
  30704. source: "./media/characters/gawain/front.svg",
  30705. extra: 2222/2139,
  30706. bottom: 90/2312
  30707. }
  30708. },
  30709. back: {
  30710. height: math.unit(6 + 3/12, "feet"),
  30711. weight: math.unit(190, "lb"),
  30712. name: "Back",
  30713. image: {
  30714. source: "./media/characters/gawain/back.svg",
  30715. extra: 2199/2111,
  30716. bottom: 73/2272
  30717. }
  30718. },
  30719. },
  30720. [
  30721. {
  30722. name: "Normal",
  30723. height: math.unit(6 + 3/12, "feet"),
  30724. default: true
  30725. },
  30726. ]
  30727. ))
  30728. characterMakers.push(() => makeCharacter(
  30729. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30730. {
  30731. side: {
  30732. height: math.unit(3.5, "meters"),
  30733. weight: math.unit(16000, "lb"),
  30734. name: "Side",
  30735. image: {
  30736. source: "./media/characters/dascalti/side.svg",
  30737. extra: 392/273,
  30738. bottom: 47/439
  30739. }
  30740. },
  30741. breath: {
  30742. height: math.unit(7.4, "feet"),
  30743. name: "Breath",
  30744. image: {
  30745. source: "./media/characters/dascalti/breath.svg"
  30746. }
  30747. },
  30748. fed: {
  30749. height: math.unit(3.6, "meters"),
  30750. weight: math.unit(16000, "lb"),
  30751. name: "Fed",
  30752. image: {
  30753. source: "./media/characters/dascalti/fed.svg",
  30754. extra: 1419/820,
  30755. bottom: 95/1514
  30756. }
  30757. },
  30758. },
  30759. [
  30760. {
  30761. name: "Normal",
  30762. height: math.unit(3.5, "meters"),
  30763. default: true
  30764. },
  30765. ]
  30766. ))
  30767. characterMakers.push(() => makeCharacter(
  30768. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30769. {
  30770. front: {
  30771. height: math.unit(3 + 5/12, "feet"),
  30772. name: "Front",
  30773. image: {
  30774. source: "./media/characters/mauve/front.svg",
  30775. extra: 1126/1033,
  30776. bottom: 65/1191
  30777. }
  30778. },
  30779. side: {
  30780. height: math.unit(3 + 5/12, "feet"),
  30781. name: "Side",
  30782. image: {
  30783. source: "./media/characters/mauve/side.svg",
  30784. extra: 1089/1001,
  30785. bottom: 29/1118
  30786. }
  30787. },
  30788. back: {
  30789. height: math.unit(3 + 5/12, "feet"),
  30790. name: "Back",
  30791. image: {
  30792. source: "./media/characters/mauve/back.svg",
  30793. extra: 1173/1053,
  30794. bottom: 109/1282
  30795. }
  30796. },
  30797. },
  30798. [
  30799. {
  30800. name: "Normal",
  30801. height: math.unit(3 + 5/12, "feet"),
  30802. default: true
  30803. },
  30804. ]
  30805. ))
  30806. characterMakers.push(() => makeCharacter(
  30807. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30808. {
  30809. front: {
  30810. height: math.unit(6 + 3/12, "feet"),
  30811. weight: math.unit(430, "lb"),
  30812. name: "Front",
  30813. image: {
  30814. source: "./media/characters/carlos/front.svg",
  30815. extra: 1964/1913,
  30816. bottom: 70/2034
  30817. }
  30818. },
  30819. },
  30820. [
  30821. {
  30822. name: "Normal",
  30823. height: math.unit(6 + 3/12, "feet"),
  30824. default: true
  30825. },
  30826. ]
  30827. ))
  30828. characterMakers.push(() => makeCharacter(
  30829. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30830. {
  30831. back: {
  30832. height: math.unit(5 + 10/12, "feet"),
  30833. weight: math.unit(200, "lb"),
  30834. name: "Back",
  30835. image: {
  30836. source: "./media/characters/jax/back.svg",
  30837. extra: 764/739,
  30838. bottom: 25/789
  30839. }
  30840. },
  30841. },
  30842. [
  30843. {
  30844. name: "Normal",
  30845. height: math.unit(5 + 10/12, "feet"),
  30846. default: true
  30847. },
  30848. ]
  30849. ))
  30850. characterMakers.push(() => makeCharacter(
  30851. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30852. {
  30853. front: {
  30854. height: math.unit(8, "feet"),
  30855. weight: math.unit(250, "lb"),
  30856. name: "Front",
  30857. image: {
  30858. source: "./media/characters/eikthynir/front.svg",
  30859. extra: 1332/1166,
  30860. bottom: 82/1414
  30861. }
  30862. },
  30863. back: {
  30864. height: math.unit(8, "feet"),
  30865. weight: math.unit(250, "lb"),
  30866. name: "Back",
  30867. image: {
  30868. source: "./media/characters/eikthynir/back.svg",
  30869. extra: 1342/1190,
  30870. bottom: 19/1361
  30871. }
  30872. },
  30873. dick: {
  30874. height: math.unit(2.35, "feet"),
  30875. name: "Dick",
  30876. image: {
  30877. source: "./media/characters/eikthynir/dick.svg"
  30878. }
  30879. },
  30880. },
  30881. [
  30882. {
  30883. name: "Normal",
  30884. height: math.unit(8, "feet"),
  30885. default: true
  30886. },
  30887. ]
  30888. ))
  30889. characterMakers.push(() => makeCharacter(
  30890. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30891. {
  30892. front: {
  30893. height: math.unit(99, "meters"),
  30894. weight: math.unit(13000, "tons"),
  30895. name: "Front",
  30896. image: {
  30897. source: "./media/characters/zlmos/front.svg",
  30898. extra: 2202/1992,
  30899. bottom: 315/2517
  30900. }
  30901. },
  30902. },
  30903. [
  30904. {
  30905. name: "Macro",
  30906. height: math.unit(99, "meters"),
  30907. default: true
  30908. },
  30909. ]
  30910. ))
  30911. characterMakers.push(() => makeCharacter(
  30912. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30913. {
  30914. front: {
  30915. height: math.unit(6 + 5/12, "feet"),
  30916. name: "Front",
  30917. image: {
  30918. source: "./media/characters/purri/front.svg",
  30919. extra: 1698/1610,
  30920. bottom: 32/1730
  30921. }
  30922. },
  30923. frontAlt: {
  30924. height: math.unit(6 + 5/12, "feet"),
  30925. name: "Front (Alt)",
  30926. image: {
  30927. source: "./media/characters/purri/front-alt.svg",
  30928. extra: 450/420,
  30929. bottom: 26/476
  30930. }
  30931. },
  30932. boots: {
  30933. height: math.unit(5.5, "feet"),
  30934. name: "Boots",
  30935. image: {
  30936. source: "./media/characters/purri/boots.svg",
  30937. extra: 905/853,
  30938. bottom: 18/923
  30939. }
  30940. },
  30941. lying: {
  30942. height: math.unit(2, "feet"),
  30943. name: "Lying",
  30944. image: {
  30945. source: "./media/characters/purri/lying.svg",
  30946. extra: 940/843,
  30947. bottom: 146/1086
  30948. }
  30949. },
  30950. devious: {
  30951. height: math.unit(1.77, "feet"),
  30952. name: "Devious",
  30953. image: {
  30954. source: "./media/characters/purri/devious.svg",
  30955. extra: 1440/1155,
  30956. bottom: 147/1587
  30957. }
  30958. },
  30959. bean: {
  30960. height: math.unit(1.94, "feet"),
  30961. name: "Bean",
  30962. image: {
  30963. source: "./media/characters/purri/bean.svg"
  30964. }
  30965. },
  30966. },
  30967. [
  30968. {
  30969. name: "Micro",
  30970. height: math.unit(1, "mm")
  30971. },
  30972. {
  30973. name: "Normal",
  30974. height: math.unit(6 + 5/12, "feet"),
  30975. default: true
  30976. },
  30977. {
  30978. name: "Macro :3c",
  30979. height: math.unit(2, "miles")
  30980. },
  30981. ]
  30982. ))
  30983. characterMakers.push(() => makeCharacter(
  30984. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30985. {
  30986. front: {
  30987. height: math.unit(6 + 2/12, "feet"),
  30988. weight: math.unit(250, "lb"),
  30989. name: "Front",
  30990. image: {
  30991. source: "./media/characters/moonlight/front.svg",
  30992. extra: 1044/908,
  30993. bottom: 56/1100
  30994. }
  30995. },
  30996. feral: {
  30997. height: math.unit(3 + 1/12, "feet"),
  30998. weight: math.unit(50, "kg"),
  30999. name: "Feral",
  31000. image: {
  31001. source: "./media/characters/moonlight/feral.svg",
  31002. extra: 3705/2791,
  31003. bottom: 145/3850
  31004. }
  31005. },
  31006. paw: {
  31007. height: math.unit(1, "feet"),
  31008. name: "Paw",
  31009. image: {
  31010. source: "./media/characters/moonlight/paw.svg"
  31011. }
  31012. },
  31013. paws: {
  31014. height: math.unit(0.98, "feet"),
  31015. name: "Paws",
  31016. image: {
  31017. source: "./media/characters/moonlight/paws.svg",
  31018. extra: 939/939,
  31019. bottom: 50/989
  31020. }
  31021. },
  31022. mouth: {
  31023. height: math.unit(0.48, "feet"),
  31024. name: "Mouth",
  31025. image: {
  31026. source: "./media/characters/moonlight/mouth.svg"
  31027. }
  31028. },
  31029. dick: {
  31030. height: math.unit(1.46, "feet"),
  31031. name: "Dick",
  31032. image: {
  31033. source: "./media/characters/moonlight/dick.svg"
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Normal",
  31040. height: math.unit(6 + 2/12, "feet"),
  31041. default: true
  31042. },
  31043. {
  31044. name: "Macro",
  31045. height: math.unit(300, "feet")
  31046. },
  31047. {
  31048. name: "Macro+",
  31049. height: math.unit(1, "mile")
  31050. },
  31051. {
  31052. name: "Mt. Moon",
  31053. height: math.unit(5, "miles")
  31054. },
  31055. {
  31056. name: "Megamacro",
  31057. height: math.unit(15, "miles")
  31058. },
  31059. ]
  31060. ))
  31061. characterMakers.push(() => makeCharacter(
  31062. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31063. {
  31064. back: {
  31065. height: math.unit(6, "feet"),
  31066. weight: math.unit(150, "lb"),
  31067. name: "Back",
  31068. image: {
  31069. source: "./media/characters/sylen/back.svg",
  31070. extra: 1335/1273,
  31071. bottom: 107/1442
  31072. }
  31073. },
  31074. },
  31075. [
  31076. {
  31077. name: "Normal",
  31078. height: math.unit(5 + 5/12, "feet")
  31079. },
  31080. {
  31081. name: "Megamacro",
  31082. height: math.unit(3, "miles"),
  31083. default: true
  31084. },
  31085. ]
  31086. ))
  31087. characterMakers.push(() => makeCharacter(
  31088. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31089. {
  31090. front: {
  31091. height: math.unit(6, "feet"),
  31092. weight: math.unit(190, "lb"),
  31093. name: "Front",
  31094. image: {
  31095. source: "./media/characters/huttser/front.svg",
  31096. extra: 1152/1058,
  31097. bottom: 23/1175
  31098. }
  31099. },
  31100. side: {
  31101. height: math.unit(6, "feet"),
  31102. weight: math.unit(190, "lb"),
  31103. name: "Side",
  31104. image: {
  31105. source: "./media/characters/huttser/side.svg",
  31106. extra: 1174/1065,
  31107. bottom: 18/1192
  31108. }
  31109. },
  31110. back: {
  31111. height: math.unit(6, "feet"),
  31112. weight: math.unit(190, "lb"),
  31113. name: "Back",
  31114. image: {
  31115. source: "./media/characters/huttser/back.svg",
  31116. extra: 1158/1056,
  31117. bottom: 12/1170
  31118. }
  31119. },
  31120. },
  31121. [
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31126. {
  31127. side: {
  31128. height: math.unit(12 + 9/12, "feet"),
  31129. weight: math.unit(15000, "lb"),
  31130. name: "Side",
  31131. image: {
  31132. source: "./media/characters/faan/side.svg",
  31133. extra: 2747/2697,
  31134. bottom: 0/2747
  31135. }
  31136. },
  31137. front: {
  31138. height: math.unit(12 + 9/12, "feet"),
  31139. weight: math.unit(15000, "lb"),
  31140. name: "Front",
  31141. image: {
  31142. source: "./media/characters/faan/front.svg",
  31143. extra: 607/571,
  31144. bottom: 24/631
  31145. }
  31146. },
  31147. head: {
  31148. height: math.unit(2.85, "feet"),
  31149. name: "Head",
  31150. image: {
  31151. source: "./media/characters/faan/head.svg"
  31152. }
  31153. },
  31154. headAlt: {
  31155. height: math.unit(3.13, "feet"),
  31156. name: "Head-alt",
  31157. image: {
  31158. source: "./media/characters/faan/head-alt.svg"
  31159. }
  31160. },
  31161. },
  31162. [
  31163. {
  31164. name: "Normal",
  31165. height: math.unit(12 + 9/12, "feet"),
  31166. default: true
  31167. },
  31168. ]
  31169. ))
  31170. characterMakers.push(() => makeCharacter(
  31171. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31172. {
  31173. front: {
  31174. height: math.unit(6, "feet"),
  31175. weight: math.unit(300, "lb"),
  31176. name: "Front",
  31177. image: {
  31178. source: "./media/characters/tanio/front.svg",
  31179. extra: 711/673,
  31180. bottom: 25/736
  31181. }
  31182. },
  31183. },
  31184. [
  31185. {
  31186. name: "Normal",
  31187. height: math.unit(6, "feet"),
  31188. default: true
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31194. {
  31195. front: {
  31196. height: math.unit(3, "inches"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/noboru/front.svg",
  31200. extra: 1039/932,
  31201. bottom: 18/1057
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Micro",
  31208. height: math.unit(3, "inches"),
  31209. default: true
  31210. },
  31211. ]
  31212. ))
  31213. characterMakers.push(() => makeCharacter(
  31214. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31215. {
  31216. front: {
  31217. height: math.unit(1.85, "meters"),
  31218. weight: math.unit(80, "kg"),
  31219. name: "Front",
  31220. image: {
  31221. source: "./media/characters/daniel-barrett/front.svg",
  31222. extra: 355/337,
  31223. bottom: 9/364
  31224. }
  31225. },
  31226. },
  31227. [
  31228. {
  31229. name: "Pico",
  31230. height: math.unit(0.0433, "mm")
  31231. },
  31232. {
  31233. name: "Nano",
  31234. height: math.unit(1.5, "mm")
  31235. },
  31236. {
  31237. name: "Micro",
  31238. height: math.unit(5.3, "cm"),
  31239. default: true
  31240. },
  31241. {
  31242. name: "Normal",
  31243. height: math.unit(1.85, "meters")
  31244. },
  31245. {
  31246. name: "Macro",
  31247. height: math.unit(64.7, "meters")
  31248. },
  31249. {
  31250. name: "Megamacro",
  31251. height: math.unit(2.26, "km")
  31252. },
  31253. {
  31254. name: "Gigamacro",
  31255. height: math.unit(79, "km")
  31256. },
  31257. {
  31258. name: "Teramacro",
  31259. height: math.unit(2765, "km")
  31260. },
  31261. {
  31262. name: "Petamacro",
  31263. height: math.unit(96678, "km")
  31264. },
  31265. ]
  31266. ))
  31267. characterMakers.push(() => makeCharacter(
  31268. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31269. {
  31270. front: {
  31271. height: math.unit(30, "meters"),
  31272. weight: math.unit(400, "tons"),
  31273. name: "Front",
  31274. image: {
  31275. source: "./media/characters/zeel/front.svg",
  31276. extra: 2599/2599,
  31277. bottom: 226/2825
  31278. }
  31279. },
  31280. },
  31281. [
  31282. {
  31283. name: "Macro",
  31284. height: math.unit(30, "meters"),
  31285. default: true
  31286. },
  31287. ]
  31288. ))
  31289. characterMakers.push(() => makeCharacter(
  31290. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31291. {
  31292. front: {
  31293. height: math.unit(6 + 7/12, "feet"),
  31294. weight: math.unit(210, "lb"),
  31295. name: "Front",
  31296. image: {
  31297. source: "./media/characters/tarn/front.svg",
  31298. extra: 3517/3220,
  31299. bottom: 91/3608
  31300. }
  31301. },
  31302. back: {
  31303. height: math.unit(6 + 7/12, "feet"),
  31304. weight: math.unit(210, "lb"),
  31305. name: "Back",
  31306. image: {
  31307. source: "./media/characters/tarn/back.svg",
  31308. extra: 3566/3241,
  31309. bottom: 34/3600
  31310. }
  31311. },
  31312. dick: {
  31313. height: math.unit(1.65, "feet"),
  31314. name: "Dick",
  31315. image: {
  31316. source: "./media/characters/tarn/dick.svg"
  31317. }
  31318. },
  31319. paw: {
  31320. height: math.unit(1.80, "feet"),
  31321. name: "Paw",
  31322. image: {
  31323. source: "./media/characters/tarn/paw.svg"
  31324. }
  31325. },
  31326. tongue: {
  31327. height: math.unit(0.97, "feet"),
  31328. name: "Tongue",
  31329. image: {
  31330. source: "./media/characters/tarn/tongue.svg"
  31331. }
  31332. },
  31333. },
  31334. [
  31335. {
  31336. name: "Micro",
  31337. height: math.unit(4, "inches")
  31338. },
  31339. {
  31340. name: "Normal",
  31341. height: math.unit(6 + 7/12, "feet"),
  31342. default: true
  31343. },
  31344. {
  31345. name: "Macro",
  31346. height: math.unit(300, "feet")
  31347. },
  31348. ]
  31349. ))
  31350. characterMakers.push(() => makeCharacter(
  31351. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31352. {
  31353. front: {
  31354. height: math.unit(5 + 7/12, "feet"),
  31355. weight: math.unit(80, "kg"),
  31356. name: "Front",
  31357. image: {
  31358. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31359. extra: 3023/2865,
  31360. bottom: 33/3056
  31361. }
  31362. },
  31363. back: {
  31364. height: math.unit(5 + 7/12, "feet"),
  31365. weight: math.unit(80, "kg"),
  31366. name: "Back",
  31367. image: {
  31368. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31369. extra: 3020/2886,
  31370. bottom: 30/3050
  31371. }
  31372. },
  31373. dick: {
  31374. height: math.unit(0.98, "feet"),
  31375. name: "Dick",
  31376. image: {
  31377. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31378. }
  31379. },
  31380. anatomy: {
  31381. height: math.unit(2.86, "feet"),
  31382. name: "Anatomy",
  31383. image: {
  31384. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31385. }
  31386. },
  31387. },
  31388. [
  31389. {
  31390. name: "Really Small",
  31391. height: math.unit(2, "inches")
  31392. },
  31393. {
  31394. name: "Micro",
  31395. height: math.unit(5.583, "inches")
  31396. },
  31397. {
  31398. name: "Normal",
  31399. height: math.unit(5 + 7/12, "feet"),
  31400. default: true
  31401. },
  31402. {
  31403. name: "Macro",
  31404. height: math.unit(67, "feet")
  31405. },
  31406. {
  31407. name: "Megamacro",
  31408. height: math.unit(134, "feet")
  31409. },
  31410. ]
  31411. ))
  31412. characterMakers.push(() => makeCharacter(
  31413. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31414. {
  31415. front: {
  31416. height: math.unit(9, "feet"),
  31417. weight: math.unit(120, "lb"),
  31418. name: "Front",
  31419. image: {
  31420. source: "./media/characters/sally/front.svg",
  31421. extra: 1506/1349,
  31422. bottom: 66/1572
  31423. }
  31424. },
  31425. },
  31426. [
  31427. {
  31428. name: "Normal",
  31429. height: math.unit(9, "feet"),
  31430. default: true
  31431. },
  31432. ]
  31433. ))
  31434. characterMakers.push(() => makeCharacter(
  31435. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31436. {
  31437. front: {
  31438. height: math.unit(8, "feet"),
  31439. weight: math.unit(900, "lb"),
  31440. name: "Front",
  31441. image: {
  31442. source: "./media/characters/owen/front.svg",
  31443. extra: 1761/1657,
  31444. bottom: 74/1835
  31445. }
  31446. },
  31447. side: {
  31448. height: math.unit(8, "feet"),
  31449. weight: math.unit(900, "lb"),
  31450. name: "Side",
  31451. image: {
  31452. source: "./media/characters/owen/side.svg",
  31453. extra: 1797/1734,
  31454. bottom: 30/1827
  31455. }
  31456. },
  31457. back: {
  31458. height: math.unit(8, "feet"),
  31459. weight: math.unit(900, "lb"),
  31460. name: "Back",
  31461. image: {
  31462. source: "./media/characters/owen/back.svg",
  31463. extra: 1796/1706,
  31464. bottom: 59/1855
  31465. }
  31466. },
  31467. maw: {
  31468. height: math.unit(1.76, "feet"),
  31469. name: "Maw",
  31470. image: {
  31471. source: "./media/characters/owen/maw.svg"
  31472. }
  31473. },
  31474. },
  31475. [
  31476. {
  31477. name: "Normal",
  31478. height: math.unit(8, "feet"),
  31479. default: true
  31480. },
  31481. ]
  31482. ))
  31483. characterMakers.push(() => makeCharacter(
  31484. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31485. {
  31486. front: {
  31487. height: math.unit(4, "feet"),
  31488. weight: math.unit(400, "lb"),
  31489. name: "Front",
  31490. image: {
  31491. source: "./media/characters/ryth/front.svg",
  31492. extra: 876/691,
  31493. bottom: 25/901
  31494. }
  31495. },
  31496. goia: {
  31497. height: math.unit(12, "feet"),
  31498. weight: math.unit(10800, "lb"),
  31499. name: "Goia",
  31500. image: {
  31501. source: "./media/characters/ryth/goia.svg",
  31502. extra: 3450/3198,
  31503. bottom: 61/3511
  31504. }
  31505. },
  31506. },
  31507. [
  31508. {
  31509. name: "Normal",
  31510. height: math.unit(4, "feet"),
  31511. default: true
  31512. },
  31513. ]
  31514. ))
  31515. characterMakers.push(() => makeCharacter(
  31516. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31517. {
  31518. front: {
  31519. height: math.unit(7, "feet"),
  31520. weight: math.unit(180, "lb"),
  31521. name: "Front",
  31522. image: {
  31523. source: "./media/characters/necrolance/front.svg",
  31524. extra: 1062/947,
  31525. bottom: 41/1103
  31526. }
  31527. },
  31528. back: {
  31529. height: math.unit(7, "feet"),
  31530. weight: math.unit(180, "lb"),
  31531. name: "Back",
  31532. image: {
  31533. source: "./media/characters/necrolance/back.svg",
  31534. extra: 1045/984,
  31535. bottom: 14/1059
  31536. }
  31537. },
  31538. wing: {
  31539. height: math.unit(2.67, "feet"),
  31540. name: "Wing",
  31541. image: {
  31542. source: "./media/characters/necrolance/wing.svg"
  31543. }
  31544. },
  31545. },
  31546. [
  31547. {
  31548. name: "Normal",
  31549. height: math.unit(7, "feet"),
  31550. default: true
  31551. },
  31552. ]
  31553. ))
  31554. characterMakers.push(() => makeCharacter(
  31555. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31556. {
  31557. front: {
  31558. height: math.unit(76, "meters"),
  31559. weight: math.unit(30000, "tons"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/tyler/front.svg",
  31563. extra: 1640/1640,
  31564. bottom: 114/1754
  31565. }
  31566. },
  31567. },
  31568. [
  31569. {
  31570. name: "Macro",
  31571. height: math.unit(76, "meters"),
  31572. default: true
  31573. },
  31574. ]
  31575. ))
  31576. characterMakers.push(() => makeCharacter(
  31577. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31578. {
  31579. front: {
  31580. height: math.unit(4 + 11/12, "feet"),
  31581. weight: math.unit(132, "lb"),
  31582. name: "Front",
  31583. image: {
  31584. source: "./media/characters/icey/front.svg",
  31585. extra: 2750/2550,
  31586. bottom: 33/2783
  31587. }
  31588. },
  31589. back: {
  31590. height: math.unit(4 + 11/12, "feet"),
  31591. weight: math.unit(132, "lb"),
  31592. name: "Back",
  31593. image: {
  31594. source: "./media/characters/icey/back.svg",
  31595. extra: 2624/2481,
  31596. bottom: 35/2659
  31597. }
  31598. },
  31599. },
  31600. [
  31601. {
  31602. name: "Normal",
  31603. height: math.unit(4 + 11/12, "feet"),
  31604. default: true
  31605. },
  31606. ]
  31607. ))
  31608. characterMakers.push(() => makeCharacter(
  31609. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31610. {
  31611. front: {
  31612. height: math.unit(100, "feet"),
  31613. weight: math.unit(0, "lb"),
  31614. name: "Front",
  31615. image: {
  31616. source: "./media/characters/smile/front.svg",
  31617. extra: 2983/2912,
  31618. bottom: 162/3145
  31619. }
  31620. },
  31621. back: {
  31622. height: math.unit(100, "feet"),
  31623. weight: math.unit(0, "lb"),
  31624. name: "Back",
  31625. image: {
  31626. source: "./media/characters/smile/back.svg",
  31627. extra: 3143/3031,
  31628. bottom: 91/3234
  31629. }
  31630. },
  31631. head: {
  31632. height: math.unit(26.3, "feet"),
  31633. weight: math.unit(0, "lb"),
  31634. name: "Head",
  31635. image: {
  31636. source: "./media/characters/smile/head.svg"
  31637. }
  31638. },
  31639. collar: {
  31640. height: math.unit(5.3, "feet"),
  31641. weight: math.unit(0, "lb"),
  31642. name: "Collar",
  31643. image: {
  31644. source: "./media/characters/smile/collar.svg"
  31645. }
  31646. },
  31647. },
  31648. [
  31649. {
  31650. name: "Macro",
  31651. height: math.unit(100, "feet"),
  31652. default: true
  31653. },
  31654. ]
  31655. ))
  31656. characterMakers.push(() => makeCharacter(
  31657. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31658. {
  31659. dragon: {
  31660. height: math.unit(26, "feet"),
  31661. weight: math.unit(36, "tons"),
  31662. name: "Dragon",
  31663. image: {
  31664. source: "./media/characters/arimphae/dragon.svg",
  31665. extra: 1574/983,
  31666. bottom: 357/1931
  31667. }
  31668. },
  31669. drake: {
  31670. height: math.unit(9, "feet"),
  31671. weight: math.unit(1.5, "tons"),
  31672. name: "Drake",
  31673. image: {
  31674. source: "./media/characters/arimphae/drake.svg",
  31675. extra: 1120/925,
  31676. bottom: 435/1555
  31677. }
  31678. },
  31679. },
  31680. [
  31681. {
  31682. name: "Small",
  31683. height: math.unit(26*5/9, "feet")
  31684. },
  31685. {
  31686. name: "Normal",
  31687. height: math.unit(26, "feet"),
  31688. default: true
  31689. },
  31690. ]
  31691. ))
  31692. characterMakers.push(() => makeCharacter(
  31693. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31694. {
  31695. front: {
  31696. height: math.unit(8 + 9/12, "feet"),
  31697. name: "Front",
  31698. image: {
  31699. source: "./media/characters/xander/front.svg",
  31700. extra: 848/673,
  31701. bottom: 62/910
  31702. }
  31703. },
  31704. },
  31705. [
  31706. {
  31707. name: "Normal",
  31708. height: math.unit(8 + 9/12, "feet"),
  31709. default: true
  31710. },
  31711. {
  31712. name: "Gaze Grabber",
  31713. height: math.unit(13 + 8/12, "feet")
  31714. },
  31715. {
  31716. name: "Jaw Dropper",
  31717. height: math.unit(27, "feet")
  31718. },
  31719. {
  31720. name: "Show Stopper",
  31721. height: math.unit(136, "feet")
  31722. },
  31723. {
  31724. name: "Superstar",
  31725. height: math.unit(1.9e6, "miles")
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31731. {
  31732. side: {
  31733. height: math.unit(2100, "feet"),
  31734. name: "Side",
  31735. image: {
  31736. source: "./media/characters/osiris/side.svg",
  31737. extra: 1105/939,
  31738. bottom: 167/1272
  31739. }
  31740. },
  31741. },
  31742. [
  31743. {
  31744. name: "Macro",
  31745. height: math.unit(2100, "feet"),
  31746. default: true
  31747. },
  31748. ]
  31749. ))
  31750. characterMakers.push(() => makeCharacter(
  31751. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31752. {
  31753. front: {
  31754. height: math.unit(6 + 8/12, "feet"),
  31755. weight: math.unit(225, "lb"),
  31756. name: "Front",
  31757. image: {
  31758. source: "./media/characters/rhys-londe/front.svg",
  31759. extra: 2258/2141,
  31760. bottom: 188/2446
  31761. }
  31762. },
  31763. back: {
  31764. height: math.unit(6 + 8/12, "feet"),
  31765. weight: math.unit(225, "lb"),
  31766. name: "Back",
  31767. image: {
  31768. source: "./media/characters/rhys-londe/back.svg",
  31769. extra: 2237/2137,
  31770. bottom: 63/2300
  31771. }
  31772. },
  31773. frontNsfw: {
  31774. height: math.unit(6 + 8/12, "feet"),
  31775. weight: math.unit(225, "lb"),
  31776. name: "Front (NSFW)",
  31777. image: {
  31778. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31779. extra: 2258/2141,
  31780. bottom: 188/2446
  31781. }
  31782. },
  31783. backNsfw: {
  31784. height: math.unit(6 + 8/12, "feet"),
  31785. weight: math.unit(225, "lb"),
  31786. name: "Back (NSFW)",
  31787. image: {
  31788. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31789. extra: 2237/2137,
  31790. bottom: 63/2300
  31791. }
  31792. },
  31793. dick: {
  31794. height: math.unit(30, "inches"),
  31795. name: "Dick",
  31796. image: {
  31797. source: "./media/characters/rhys-londe/dick.svg"
  31798. }
  31799. },
  31800. maw: {
  31801. height: math.unit(1.6, "feet"),
  31802. name: "Maw",
  31803. image: {
  31804. source: "./media/characters/rhys-londe/maw.svg"
  31805. }
  31806. },
  31807. },
  31808. [
  31809. {
  31810. name: "Normal",
  31811. height: math.unit(6 + 8/12, "feet"),
  31812. default: true
  31813. },
  31814. ]
  31815. ))
  31816. characterMakers.push(() => makeCharacter(
  31817. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31818. {
  31819. front: {
  31820. height: math.unit(3 + 10/12, "feet"),
  31821. weight: math.unit(90, "lb"),
  31822. name: "Front",
  31823. image: {
  31824. source: "./media/characters/taivas-ensim/front.svg",
  31825. extra: 1327/1216,
  31826. bottom: 96/1423
  31827. }
  31828. },
  31829. back: {
  31830. height: math.unit(3 + 10/12, "feet"),
  31831. weight: math.unit(90, "lb"),
  31832. name: "Back",
  31833. image: {
  31834. source: "./media/characters/taivas-ensim/back.svg",
  31835. extra: 1355/1247,
  31836. bottom: 11/1366
  31837. }
  31838. },
  31839. frontNsfw: {
  31840. height: math.unit(3 + 10/12, "feet"),
  31841. weight: math.unit(90, "lb"),
  31842. name: "Front (NSFW)",
  31843. image: {
  31844. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31845. extra: 1327/1216,
  31846. bottom: 96/1423
  31847. }
  31848. },
  31849. backNsfw: {
  31850. height: math.unit(3 + 10/12, "feet"),
  31851. weight: math.unit(90, "lb"),
  31852. name: "Back (NSFW)",
  31853. image: {
  31854. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31855. extra: 1355/1247,
  31856. bottom: 11/1366
  31857. }
  31858. },
  31859. },
  31860. [
  31861. {
  31862. name: "Normal",
  31863. height: math.unit(3 + 10/12, "feet"),
  31864. default: true
  31865. },
  31866. ]
  31867. ))
  31868. characterMakers.push(() => makeCharacter(
  31869. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31870. {
  31871. front: {
  31872. height: math.unit(9 + 6/12, "feet"),
  31873. weight: math.unit(940, "lb"),
  31874. name: "Front",
  31875. image: {
  31876. source: "./media/characters/byliss/front.svg",
  31877. extra: 1327/1290,
  31878. bottom: 82/1409
  31879. }
  31880. },
  31881. back: {
  31882. height: math.unit(9 + 6/12, "feet"),
  31883. weight: math.unit(940, "lb"),
  31884. name: "Back",
  31885. image: {
  31886. source: "./media/characters/byliss/back.svg",
  31887. extra: 1376/1349,
  31888. bottom: 9/1385
  31889. }
  31890. },
  31891. frontNsfw: {
  31892. height: math.unit(9 + 6/12, "feet"),
  31893. weight: math.unit(940, "lb"),
  31894. name: "Front (NSFW)",
  31895. image: {
  31896. source: "./media/characters/byliss/front-nsfw.svg",
  31897. extra: 1327/1290,
  31898. bottom: 82/1409
  31899. }
  31900. },
  31901. backNsfw: {
  31902. height: math.unit(9 + 6/12, "feet"),
  31903. weight: math.unit(940, "lb"),
  31904. name: "Back (NSFW)",
  31905. image: {
  31906. source: "./media/characters/byliss/back-nsfw.svg",
  31907. extra: 1376/1349,
  31908. bottom: 9/1385
  31909. }
  31910. },
  31911. },
  31912. [
  31913. {
  31914. name: "Normal",
  31915. height: math.unit(9 + 6/12, "feet"),
  31916. default: true
  31917. },
  31918. ]
  31919. ))
  31920. characterMakers.push(() => makeCharacter(
  31921. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31922. {
  31923. front: {
  31924. height: math.unit(5 + 2/12, "feet"),
  31925. weight: math.unit(200, "lb"),
  31926. name: "Front",
  31927. image: {
  31928. source: "./media/characters/noraly/front.svg",
  31929. extra: 4985/4773,
  31930. bottom: 150/5135
  31931. }
  31932. },
  31933. full: {
  31934. height: math.unit(5 + 2/12, "feet"),
  31935. weight: math.unit(164, "lb"),
  31936. name: "Full",
  31937. image: {
  31938. source: "./media/characters/noraly/full.svg",
  31939. extra: 1114/1059,
  31940. bottom: 35/1149
  31941. }
  31942. },
  31943. fuller: {
  31944. height: math.unit(5 + 2/12, "feet"),
  31945. weight: math.unit(230, "lb"),
  31946. name: "Fuller",
  31947. image: {
  31948. source: "./media/characters/noraly/fuller.svg",
  31949. extra: 1114/1059,
  31950. bottom: 35/1149
  31951. }
  31952. },
  31953. fullest: {
  31954. height: math.unit(5 + 2/12, "feet"),
  31955. weight: math.unit(300, "lb"),
  31956. name: "Fullest",
  31957. image: {
  31958. source: "./media/characters/noraly/fullest.svg",
  31959. extra: 1114/1059,
  31960. bottom: 35/1149
  31961. }
  31962. },
  31963. },
  31964. [
  31965. {
  31966. name: "Normal",
  31967. height: math.unit(5 + 2/12, "feet"),
  31968. default: true
  31969. },
  31970. ]
  31971. ))
  31972. characterMakers.push(() => makeCharacter(
  31973. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31974. {
  31975. front: {
  31976. height: math.unit(5 + 2/12, "feet"),
  31977. weight: math.unit(210, "lb"),
  31978. name: "Front",
  31979. image: {
  31980. source: "./media/characters/pera/front.svg",
  31981. extra: 1560/1531,
  31982. bottom: 165/1725
  31983. }
  31984. },
  31985. back: {
  31986. height: math.unit(5 + 2/12, "feet"),
  31987. weight: math.unit(210, "lb"),
  31988. name: "Back",
  31989. image: {
  31990. source: "./media/characters/pera/back.svg",
  31991. extra: 1523/1493,
  31992. bottom: 152/1675
  31993. }
  31994. },
  31995. dick: {
  31996. height: math.unit(2.4, "feet"),
  31997. name: "Dick",
  31998. image: {
  31999. source: "./media/characters/pera/dick.svg"
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Normal",
  32006. height: math.unit(5 + 2/12, "feet"),
  32007. default: true
  32008. },
  32009. ]
  32010. ))
  32011. characterMakers.push(() => makeCharacter(
  32012. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32013. {
  32014. front: {
  32015. height: math.unit(12, "feet"),
  32016. weight: math.unit(3200, "lb"),
  32017. name: "Front",
  32018. image: {
  32019. source: "./media/characters/julian/front.svg",
  32020. extra: 2962/2701,
  32021. bottom: 184/3146
  32022. }
  32023. },
  32024. maw: {
  32025. height: math.unit(5.35, "feet"),
  32026. name: "Maw",
  32027. image: {
  32028. source: "./media/characters/julian/maw.svg"
  32029. }
  32030. },
  32031. paw: {
  32032. height: math.unit(3.07, "feet"),
  32033. name: "Paw",
  32034. image: {
  32035. source: "./media/characters/julian/paw.svg"
  32036. }
  32037. },
  32038. },
  32039. [
  32040. {
  32041. name: "Default",
  32042. height: math.unit(12, "feet"),
  32043. default: true
  32044. },
  32045. {
  32046. name: "Big",
  32047. height: math.unit(50, "feet")
  32048. },
  32049. {
  32050. name: "Really Big",
  32051. height: math.unit(1, "mile")
  32052. },
  32053. {
  32054. name: "Extremely Big",
  32055. height: math.unit(100, "miles")
  32056. },
  32057. {
  32058. name: "Planet Hugger",
  32059. height: math.unit(200, "megameters")
  32060. },
  32061. {
  32062. name: "Unreasonably Big",
  32063. height: math.unit(1e300, "meters")
  32064. },
  32065. ]
  32066. ))
  32067. characterMakers.push(() => makeCharacter(
  32068. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32069. {
  32070. solgooleo: {
  32071. height: math.unit(4, "meters"),
  32072. weight: math.unit(6000*1.5, "kg"),
  32073. volume: math.unit(6000, "liters"),
  32074. name: "Solgooleo",
  32075. image: {
  32076. source: "./media/characters/pi/solgooleo.svg",
  32077. extra: 388/331,
  32078. bottom: 29/417
  32079. }
  32080. },
  32081. },
  32082. [
  32083. {
  32084. name: "Normal",
  32085. height: math.unit(4, "meters"),
  32086. default: true
  32087. },
  32088. ]
  32089. ))
  32090. characterMakers.push(() => makeCharacter(
  32091. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32092. {
  32093. front: {
  32094. height: math.unit(8 + 2/12, "feet"),
  32095. weight: math.unit(4, "tons"),
  32096. name: "Front",
  32097. image: {
  32098. source: "./media/characters/shaun/front.svg",
  32099. extra: 1550/1505,
  32100. bottom: 353/1903
  32101. }
  32102. },
  32103. },
  32104. [
  32105. {
  32106. name: "Lorg",
  32107. height: math.unit(8 + 2/12, "feet"),
  32108. default: true
  32109. },
  32110. ]
  32111. ))
  32112. characterMakers.push(() => makeCharacter(
  32113. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32114. {
  32115. front: {
  32116. height: math.unit(7, "feet"),
  32117. name: "Front",
  32118. image: {
  32119. source: "./media/characters/sini/front.svg",
  32120. extra: 726/678,
  32121. bottom: 35/761
  32122. }
  32123. },
  32124. back: {
  32125. height: math.unit(7, "feet"),
  32126. name: "Back",
  32127. image: {
  32128. source: "./media/characters/sini/back.svg",
  32129. extra: 743/701,
  32130. bottom: 12/755
  32131. }
  32132. },
  32133. mawAnthro: {
  32134. height: math.unit(2.14, "feet"),
  32135. name: "Maw (Anthro)",
  32136. image: {
  32137. source: "./media/characters/sini/maw-anthro.svg"
  32138. }
  32139. },
  32140. dick: {
  32141. height: math.unit(1.45, "feet"),
  32142. name: "Dick (Anthro)",
  32143. image: {
  32144. source: "./media/characters/sini/dick-anthro.svg"
  32145. }
  32146. },
  32147. feral: {
  32148. height: math.unit(13, "feet"),
  32149. name: "Feral",
  32150. image: {
  32151. source: "./media/characters/sini/feral.svg",
  32152. extra: 814/605,
  32153. bottom: 11/825
  32154. }
  32155. },
  32156. mawFeral: {
  32157. height: math.unit(4.6, "feet"),
  32158. name: "Maw-feral",
  32159. image: {
  32160. source: "./media/characters/sini/maw-feral.svg"
  32161. }
  32162. },
  32163. footFeral: {
  32164. height: math.unit(4.2, "feet"),
  32165. name: "Foot-feral",
  32166. image: {
  32167. source: "./media/characters/sini/foot-feral.svg"
  32168. }
  32169. },
  32170. },
  32171. [
  32172. {
  32173. name: "Normal",
  32174. height: math.unit(7, "feet"),
  32175. default: true
  32176. },
  32177. ]
  32178. ))
  32179. characterMakers.push(() => makeCharacter(
  32180. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32181. {
  32182. side: {
  32183. height: math.unit(13, "meters"),
  32184. weight: math.unit(9072, "kg"),
  32185. name: "Side",
  32186. image: {
  32187. source: "./media/characters/raylldo/side.svg",
  32188. extra: 403/344,
  32189. bottom: 42/445
  32190. }
  32191. },
  32192. leaping: {
  32193. height: math.unit(12.3, "meters"),
  32194. weight: math.unit(9072, "kg"),
  32195. name: "Leaping",
  32196. image: {
  32197. source: "./media/characters/raylldo/leaping.svg",
  32198. extra: 470/249,
  32199. bottom: 13/483
  32200. }
  32201. },
  32202. flying: {
  32203. height: math.unit(18, "meters"),
  32204. weight: math.unit(9072, "kg"),
  32205. name: "Flying",
  32206. image: {
  32207. source: "./media/characters/raylldo/flying.svg"
  32208. }
  32209. },
  32210. head: {
  32211. height: math.unit(5.85, "meters"),
  32212. name: "Head",
  32213. image: {
  32214. source: "./media/characters/raylldo/head.svg"
  32215. }
  32216. },
  32217. maw: {
  32218. height: math.unit(5.32, "meters"),
  32219. name: "Maw",
  32220. image: {
  32221. source: "./media/characters/raylldo/maw.svg"
  32222. }
  32223. },
  32224. eye: {
  32225. height: math.unit(0.54, "meters"),
  32226. name: "Eye",
  32227. image: {
  32228. source: "./media/characters/raylldo/eye.svg"
  32229. }
  32230. },
  32231. },
  32232. [
  32233. {
  32234. name: "Normal",
  32235. height: math.unit(13, "meters"),
  32236. default: true
  32237. },
  32238. ]
  32239. ))
  32240. characterMakers.push(() => makeCharacter(
  32241. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32242. {
  32243. anthroFront: {
  32244. height: math.unit(9, "feet"),
  32245. weight: math.unit(600, "lb"),
  32246. name: "Anthro (Front)",
  32247. image: {
  32248. source: "./media/characters/glint/anthro-front.svg",
  32249. extra: 1097/1018,
  32250. bottom: 28/1125
  32251. }
  32252. },
  32253. anthroBack: {
  32254. height: math.unit(9, "feet"),
  32255. weight: math.unit(600, "lb"),
  32256. name: "Anthro (Back)",
  32257. image: {
  32258. source: "./media/characters/glint/anthro-back.svg",
  32259. extra: 1154/997,
  32260. bottom: 36/1190
  32261. }
  32262. },
  32263. feral: {
  32264. height: math.unit(11, "feet"),
  32265. weight: math.unit(50000, "lb"),
  32266. name: "Feral",
  32267. image: {
  32268. source: "./media/characters/glint/feral.svg",
  32269. extra: 3035/1585,
  32270. bottom: 1169/4204
  32271. }
  32272. },
  32273. dickAnthro: {
  32274. height: math.unit(0.7, "meters"),
  32275. name: "Dick (Anthro)",
  32276. image: {
  32277. source: "./media/characters/glint/dick-anthro.svg"
  32278. }
  32279. },
  32280. dickFeral: {
  32281. height: math.unit(2.65, "meters"),
  32282. name: "Dick (Feral)",
  32283. image: {
  32284. source: "./media/characters/glint/dick-feral.svg"
  32285. }
  32286. },
  32287. slitHidden: {
  32288. height: math.unit(5.85, "meters"),
  32289. name: "Slit (Hidden)",
  32290. image: {
  32291. source: "./media/characters/glint/slit-hidden.svg"
  32292. }
  32293. },
  32294. slitErect: {
  32295. height: math.unit(5.85, "meters"),
  32296. name: "Slit (Erect)",
  32297. image: {
  32298. source: "./media/characters/glint/slit-erect.svg"
  32299. }
  32300. },
  32301. mawAnthro: {
  32302. height: math.unit(0.63, "meters"),
  32303. name: "Maw (Anthro)",
  32304. image: {
  32305. source: "./media/characters/glint/maw.svg"
  32306. }
  32307. },
  32308. mawFeral: {
  32309. height: math.unit(2.89, "meters"),
  32310. name: "Maw (Feral)",
  32311. image: {
  32312. source: "./media/characters/glint/maw.svg"
  32313. }
  32314. },
  32315. },
  32316. [
  32317. {
  32318. name: "Normal",
  32319. height: math.unit(9, "feet"),
  32320. default: true
  32321. },
  32322. ]
  32323. ))
  32324. characterMakers.push(() => makeCharacter(
  32325. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32326. {
  32327. side: {
  32328. height: math.unit(15, "feet"),
  32329. weight: math.unit(5000, "kg"),
  32330. name: "Side",
  32331. image: {
  32332. source: "./media/characters/kairne/side.svg",
  32333. extra: 979/811,
  32334. bottom: 13/992
  32335. }
  32336. },
  32337. front: {
  32338. height: math.unit(15, "feet"),
  32339. weight: math.unit(5000, "kg"),
  32340. name: "Front",
  32341. image: {
  32342. source: "./media/characters/kairne/front.svg",
  32343. extra: 908/814,
  32344. bottom: 26/934
  32345. }
  32346. },
  32347. sideNsfw: {
  32348. height: math.unit(15, "feet"),
  32349. weight: math.unit(5000, "kg"),
  32350. name: "Side (NSFW)",
  32351. image: {
  32352. source: "./media/characters/kairne/side-nsfw.svg",
  32353. extra: 979/811,
  32354. bottom: 13/992
  32355. }
  32356. },
  32357. frontNsfw: {
  32358. height: math.unit(15, "feet"),
  32359. weight: math.unit(5000, "kg"),
  32360. name: "Front (NSFW)",
  32361. image: {
  32362. source: "./media/characters/kairne/front-nsfw.svg",
  32363. extra: 908/814,
  32364. bottom: 26/934
  32365. }
  32366. },
  32367. dickCaged: {
  32368. height: math.unit(0.65, "meters"),
  32369. name: "Dick-caged",
  32370. image: {
  32371. source: "./media/characters/kairne/dick-caged.svg"
  32372. }
  32373. },
  32374. dick: {
  32375. height: math.unit(0.79, "meters"),
  32376. name: "Dick",
  32377. image: {
  32378. source: "./media/characters/kairne/dick.svg"
  32379. }
  32380. },
  32381. genitals: {
  32382. height: math.unit(1.29, "meters"),
  32383. name: "Genitals",
  32384. image: {
  32385. source: "./media/characters/kairne/genitals.svg"
  32386. }
  32387. },
  32388. maw: {
  32389. height: math.unit(1.73, "meters"),
  32390. name: "Maw",
  32391. image: {
  32392. source: "./media/characters/kairne/maw.svg"
  32393. }
  32394. },
  32395. },
  32396. [
  32397. {
  32398. name: "Normal",
  32399. height: math.unit(15, "feet"),
  32400. default: true
  32401. },
  32402. ]
  32403. ))
  32404. characterMakers.push(() => makeCharacter(
  32405. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32406. {
  32407. front: {
  32408. height: math.unit(5 + 8/12, "feet"),
  32409. weight: math.unit(139, "lb"),
  32410. name: "Front",
  32411. image: {
  32412. source: "./media/characters/biscuit-jackal/front.svg",
  32413. extra: 2106/1961,
  32414. bottom: 58/2164
  32415. }
  32416. },
  32417. back: {
  32418. height: math.unit(5 + 8/12, "feet"),
  32419. weight: math.unit(139, "lb"),
  32420. name: "Back",
  32421. image: {
  32422. source: "./media/characters/biscuit-jackal/back.svg",
  32423. extra: 2132/1976,
  32424. bottom: 57/2189
  32425. }
  32426. },
  32427. werejackal: {
  32428. height: math.unit(6 + 3/12, "feet"),
  32429. weight: math.unit(188, "lb"),
  32430. name: "Werejackal",
  32431. image: {
  32432. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32433. extra: 2373/2178,
  32434. bottom: 53/2426
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Normal",
  32441. height: math.unit(5 + 8/12, "feet"),
  32442. default: true
  32443. },
  32444. ]
  32445. ))
  32446. characterMakers.push(() => makeCharacter(
  32447. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32448. {
  32449. front: {
  32450. height: math.unit(140, "cm"),
  32451. weight: math.unit(45, "kg"),
  32452. name: "Front",
  32453. image: {
  32454. source: "./media/characters/tayra-white/front.svg",
  32455. extra: 2229/2192,
  32456. bottom: 75/2304
  32457. }
  32458. },
  32459. },
  32460. [
  32461. {
  32462. name: "Normal",
  32463. height: math.unit(140, "cm"),
  32464. default: true
  32465. },
  32466. ]
  32467. ))
  32468. characterMakers.push(() => makeCharacter(
  32469. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32470. {
  32471. front: {
  32472. height: math.unit(4 + 5/12, "feet"),
  32473. name: "Front",
  32474. image: {
  32475. source: "./media/characters/scoop/front.svg",
  32476. extra: 1257/1136,
  32477. bottom: 69/1326
  32478. }
  32479. },
  32480. back: {
  32481. height: math.unit(4 + 5/12, "feet"),
  32482. name: "Back",
  32483. image: {
  32484. source: "./media/characters/scoop/back.svg",
  32485. extra: 1321/1152,
  32486. bottom: 32/1353
  32487. }
  32488. },
  32489. maw: {
  32490. height: math.unit(0.68, "feet"),
  32491. name: "Maw",
  32492. image: {
  32493. source: "./media/characters/scoop/maw.svg"
  32494. }
  32495. },
  32496. },
  32497. [
  32498. {
  32499. name: "Really Small",
  32500. height: math.unit(1, "mm")
  32501. },
  32502. {
  32503. name: "Micro",
  32504. height: math.unit(1, "inch")
  32505. },
  32506. {
  32507. name: "Normal",
  32508. height: math.unit(4 + 5/12, "feet"),
  32509. default: true
  32510. },
  32511. {
  32512. name: "Macro",
  32513. height: math.unit(200, "feet")
  32514. },
  32515. {
  32516. name: "Megamacro",
  32517. height: math.unit(3240, "feet")
  32518. },
  32519. {
  32520. name: "Teramacro",
  32521. height: math.unit(2500, "miles")
  32522. },
  32523. ]
  32524. ))
  32525. characterMakers.push(() => makeCharacter(
  32526. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32527. {
  32528. front: {
  32529. height: math.unit(15 + 7/12, "feet"),
  32530. name: "Front",
  32531. image: {
  32532. source: "./media/characters/saphinara/front.svg",
  32533. extra: 604/546,
  32534. bottom: 19/623
  32535. }
  32536. },
  32537. side: {
  32538. height: math.unit(15 + 7/12, "feet"),
  32539. name: "Side",
  32540. image: {
  32541. source: "./media/characters/saphinara/side.svg",
  32542. extra: 605/547,
  32543. bottom: 6/611
  32544. }
  32545. },
  32546. back: {
  32547. height: math.unit(15 + 7/12, "feet"),
  32548. name: "Back",
  32549. image: {
  32550. source: "./media/characters/saphinara/back.svg",
  32551. extra: 591/531,
  32552. bottom: 13/604
  32553. }
  32554. },
  32555. frontTail: {
  32556. height: math.unit(15 + 7/12, "feet"),
  32557. name: "Front (Full Tail)",
  32558. image: {
  32559. source: "./media/characters/saphinara/front-tail.svg",
  32560. extra: 748/547,
  32561. bottom: 66/814
  32562. }
  32563. },
  32564. },
  32565. [
  32566. {
  32567. name: "Normal",
  32568. height: math.unit(15 + 7/12, "feet"),
  32569. default: true
  32570. },
  32571. {
  32572. name: "Angry",
  32573. height: math.unit(30 + 6/12, "feet")
  32574. },
  32575. {
  32576. name: "Enraged",
  32577. height: math.unit(102 + 1/12, "feet")
  32578. },
  32579. ]
  32580. ))
  32581. characterMakers.push(() => makeCharacter(
  32582. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32583. {
  32584. front: {
  32585. height: math.unit(6 + 8/12, "feet"),
  32586. weight: math.unit(300, "lb"),
  32587. name: "Front",
  32588. image: {
  32589. source: "./media/characters/jrain/front.svg",
  32590. extra: 3039/2865,
  32591. bottom: 399/3438
  32592. }
  32593. },
  32594. back: {
  32595. height: math.unit(6 + 8/12, "feet"),
  32596. weight: math.unit(300, "lb"),
  32597. name: "Back",
  32598. image: {
  32599. source: "./media/characters/jrain/back.svg",
  32600. extra: 3089/2938,
  32601. bottom: 172/3261
  32602. }
  32603. },
  32604. head: {
  32605. height: math.unit(2.14, "feet"),
  32606. name: "Head",
  32607. image: {
  32608. source: "./media/characters/jrain/head.svg"
  32609. }
  32610. },
  32611. maw: {
  32612. height: math.unit(1.77, "feet"),
  32613. name: "Maw",
  32614. image: {
  32615. source: "./media/characters/jrain/maw.svg"
  32616. }
  32617. },
  32618. leftHand: {
  32619. height: math.unit(1.1, "feet"),
  32620. name: "Left Hand",
  32621. image: {
  32622. source: "./media/characters/jrain/left-hand.svg"
  32623. }
  32624. },
  32625. rightHand: {
  32626. height: math.unit(1.1, "feet"),
  32627. name: "Right Hand",
  32628. image: {
  32629. source: "./media/characters/jrain/right-hand.svg"
  32630. }
  32631. },
  32632. eye: {
  32633. height: math.unit(0.35, "feet"),
  32634. name: "Eye",
  32635. image: {
  32636. source: "./media/characters/jrain/eye.svg"
  32637. }
  32638. },
  32639. },
  32640. [
  32641. {
  32642. name: "Normal",
  32643. height: math.unit(6 + 8/12, "feet"),
  32644. default: true
  32645. },
  32646. {
  32647. name: "Casually Large",
  32648. height: math.unit(25, "feet")
  32649. },
  32650. {
  32651. name: "Giant",
  32652. height: math.unit(100, "feet")
  32653. },
  32654. {
  32655. name: "Kaiju",
  32656. height: math.unit(300, "feet")
  32657. },
  32658. ]
  32659. ))
  32660. characterMakers.push(() => makeCharacter(
  32661. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32662. {
  32663. dragon: {
  32664. height: math.unit(5, "meters"),
  32665. name: "Dragon",
  32666. image: {
  32667. source: "./media/characters/sabrina/dragon.svg",
  32668. extra: 3670 / 2365,
  32669. bottom: 333 / 4003
  32670. }
  32671. },
  32672. gryphon: {
  32673. height: math.unit(3, "meters"),
  32674. name: "Gryphon",
  32675. image: {
  32676. source: "./media/characters/sabrina/gryphon.svg",
  32677. extra: 1576 / 945,
  32678. bottom: 71 / 1647
  32679. }
  32680. },
  32681. snake: {
  32682. height: math.unit(12, "meters"),
  32683. name: "Snake",
  32684. image: {
  32685. source: "./media/characters/sabrina/snake.svg",
  32686. extra: 1758 / 1320,
  32687. bottom: 186 / 1944
  32688. }
  32689. },
  32690. collar: {
  32691. height: math.unit(1.86, "meters"),
  32692. name: "Collar",
  32693. image: {
  32694. source: "./media/characters/sabrina/collar.svg"
  32695. }
  32696. },
  32697. eye: {
  32698. height: math.unit(0.53, "meters"),
  32699. name: "Eye",
  32700. image: {
  32701. source: "./media/characters/sabrina/eye.svg"
  32702. }
  32703. },
  32704. foot: {
  32705. height: math.unit(1.86, "meters"),
  32706. name: "Foot",
  32707. image: {
  32708. source: "./media/characters/sabrina/foot.svg"
  32709. }
  32710. },
  32711. hand: {
  32712. height: math.unit(1.32, "meters"),
  32713. name: "Hand",
  32714. image: {
  32715. source: "./media/characters/sabrina/hand.svg"
  32716. }
  32717. },
  32718. head: {
  32719. height: math.unit(2.44, "meters"),
  32720. name: "Head",
  32721. image: {
  32722. source: "./media/characters/sabrina/head.svg"
  32723. }
  32724. },
  32725. headAngry: {
  32726. height: math.unit(2.44, "meters"),
  32727. name: "Head (Angry))",
  32728. image: {
  32729. source: "./media/characters/sabrina/head-angry.svg"
  32730. }
  32731. },
  32732. maw: {
  32733. height: math.unit(1.65, "meters"),
  32734. name: "Maw",
  32735. image: {
  32736. source: "./media/characters/sabrina/maw.svg"
  32737. }
  32738. },
  32739. spikes: {
  32740. height: math.unit(1.69, "meters"),
  32741. name: "Spikes",
  32742. image: {
  32743. source: "./media/characters/sabrina/spikes.svg"
  32744. }
  32745. },
  32746. stomach: {
  32747. height: math.unit(1.15, "meters"),
  32748. name: "Stomach",
  32749. image: {
  32750. source: "./media/characters/sabrina/stomach.svg"
  32751. }
  32752. },
  32753. tongue: {
  32754. height: math.unit(1.27, "meters"),
  32755. name: "Tongue",
  32756. image: {
  32757. source: "./media/characters/sabrina/tongue.svg"
  32758. }
  32759. },
  32760. wingDorsal: {
  32761. height: math.unit(4.85, "meters"),
  32762. name: "Wing (Dorsal)",
  32763. image: {
  32764. source: "./media/characters/sabrina/wing-dorsal.svg"
  32765. }
  32766. },
  32767. wingVentral: {
  32768. height: math.unit(4.85, "meters"),
  32769. name: "Wing (Ventral)",
  32770. image: {
  32771. source: "./media/characters/sabrina/wing-ventral.svg"
  32772. }
  32773. },
  32774. },
  32775. [
  32776. {
  32777. name: "Normal",
  32778. height: math.unit(5, "meters"),
  32779. default: true
  32780. },
  32781. ]
  32782. ))
  32783. characterMakers.push(() => makeCharacter(
  32784. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32785. {
  32786. frontMaid: {
  32787. height: math.unit(5 + 5/12, "feet"),
  32788. weight: math.unit(130, "lb"),
  32789. name: "Front (Maid)",
  32790. image: {
  32791. source: "./media/characters/midnight-tales/front-maid.svg",
  32792. extra: 489/454,
  32793. bottom: 61/550
  32794. }
  32795. },
  32796. frontFormal: {
  32797. height: math.unit(5 + 5/12, "feet"),
  32798. weight: math.unit(130, "lb"),
  32799. name: "Front (Formal)",
  32800. image: {
  32801. source: "./media/characters/midnight-tales/front-formal.svg",
  32802. extra: 489/454,
  32803. bottom: 61/550
  32804. }
  32805. },
  32806. back: {
  32807. height: math.unit(5 + 5/12, "feet"),
  32808. weight: math.unit(130, "lb"),
  32809. name: "Back",
  32810. image: {
  32811. source: "./media/characters/midnight-tales/back.svg",
  32812. extra: 498/456,
  32813. bottom: 33/531
  32814. }
  32815. },
  32816. frontBeast: {
  32817. height: math.unit(40, "feet"),
  32818. weight: math.unit(64000, "lb"),
  32819. name: "Front (Beast)",
  32820. image: {
  32821. source: "./media/characters/midnight-tales/front-beast.svg",
  32822. extra: 927/860,
  32823. bottom: 53/980
  32824. }
  32825. },
  32826. backBeast: {
  32827. height: math.unit(40, "feet"),
  32828. weight: math.unit(64000, "lb"),
  32829. name: "Back (Beast)",
  32830. image: {
  32831. source: "./media/characters/midnight-tales/back-beast.svg",
  32832. extra: 929/855,
  32833. bottom: 16/945
  32834. }
  32835. },
  32836. footBeast: {
  32837. height: math.unit(6.7, "feet"),
  32838. name: "Foot (Beast)",
  32839. image: {
  32840. source: "./media/characters/midnight-tales/foot-beast.svg"
  32841. }
  32842. },
  32843. headBeast: {
  32844. height: math.unit(8, "feet"),
  32845. name: "Head (Beast)",
  32846. image: {
  32847. source: "./media/characters/midnight-tales/head-beast.svg"
  32848. }
  32849. },
  32850. },
  32851. [
  32852. {
  32853. name: "Normal",
  32854. height: math.unit(5 + 5 / 12, "feet"),
  32855. default: true
  32856. },
  32857. {
  32858. name: "Macro",
  32859. height: math.unit(25, "feet")
  32860. },
  32861. ]
  32862. ))
  32863. characterMakers.push(() => makeCharacter(
  32864. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32865. {
  32866. front: {
  32867. height: math.unit(5 + 10/12, "feet"),
  32868. name: "Front",
  32869. image: {
  32870. source: "./media/characters/argon/front.svg",
  32871. extra: 2009/1935,
  32872. bottom: 118/2127
  32873. }
  32874. },
  32875. back: {
  32876. height: math.unit(5 + 10/12, "feet"),
  32877. name: "Back",
  32878. image: {
  32879. source: "./media/characters/argon/back.svg",
  32880. extra: 2047/1992,
  32881. bottom: 20/2067
  32882. }
  32883. },
  32884. frontDressed: {
  32885. height: math.unit(5 + 10/12, "feet"),
  32886. name: "Front (Dressed)",
  32887. image: {
  32888. source: "./media/characters/argon/front-dressed.svg",
  32889. extra: 2009/1935,
  32890. bottom: 118/2127
  32891. }
  32892. },
  32893. },
  32894. [
  32895. {
  32896. name: "Normal",
  32897. height: math.unit(5 + 10/12, "feet"),
  32898. default: true
  32899. },
  32900. ]
  32901. ))
  32902. characterMakers.push(() => makeCharacter(
  32903. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32904. {
  32905. front: {
  32906. height: math.unit(8 + 6/12, "feet"),
  32907. weight: math.unit(1150, "lb"),
  32908. name: "Front",
  32909. image: {
  32910. source: "./media/characters/kichi/front.svg",
  32911. extra: 1267/1164,
  32912. bottom: 61/1328
  32913. }
  32914. },
  32915. back: {
  32916. height: math.unit(8 + 6/12, "feet"),
  32917. weight: math.unit(1150, "lb"),
  32918. name: "Back",
  32919. image: {
  32920. source: "./media/characters/kichi/back.svg",
  32921. extra: 1273/1166,
  32922. bottom: 33/1306
  32923. }
  32924. },
  32925. },
  32926. [
  32927. {
  32928. name: "Normal",
  32929. height: math.unit(8 + 6/12, "feet"),
  32930. default: true
  32931. },
  32932. ]
  32933. ))
  32934. characterMakers.push(() => makeCharacter(
  32935. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32936. {
  32937. front: {
  32938. height: math.unit(6, "feet"),
  32939. weight: math.unit(210, "lb"),
  32940. name: "Front",
  32941. image: {
  32942. source: "./media/characters/manetel-greyscale/front.svg",
  32943. extra: 350/312,
  32944. bottom: 8/358
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Micro",
  32951. height: math.unit(2, "inches")
  32952. },
  32953. {
  32954. name: "Normal",
  32955. height: math.unit(6, "feet"),
  32956. default: true
  32957. },
  32958. {
  32959. name: "Minimacro",
  32960. height: math.unit(17, "feet")
  32961. },
  32962. {
  32963. name: "Macro",
  32964. height: math.unit(117, "feet")
  32965. },
  32966. ]
  32967. ))
  32968. characterMakers.push(() => makeCharacter(
  32969. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32970. {
  32971. side: {
  32972. height: math.unit(5 + 1/12, "feet"),
  32973. weight: math.unit(418, "lb"),
  32974. name: "Side",
  32975. image: {
  32976. source: "./media/characters/softpurr/side.svg",
  32977. extra: 1993/1945,
  32978. bottom: 134/2127
  32979. }
  32980. },
  32981. front: {
  32982. height: math.unit(5 + 1/12, "feet"),
  32983. weight: math.unit(418, "lb"),
  32984. name: "Front",
  32985. image: {
  32986. source: "./media/characters/softpurr/front.svg",
  32987. extra: 1950/1856,
  32988. bottom: 174/2124
  32989. }
  32990. },
  32991. paw: {
  32992. height: math.unit(1, "feet"),
  32993. name: "Paw",
  32994. image: {
  32995. source: "./media/characters/softpurr/paw.svg"
  32996. }
  32997. },
  32998. },
  32999. [
  33000. {
  33001. name: "Normal",
  33002. height: math.unit(5 + 1/12, "feet"),
  33003. default: true
  33004. },
  33005. ]
  33006. ))
  33007. characterMakers.push(() => makeCharacter(
  33008. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33009. {
  33010. front: {
  33011. height: math.unit(260, "meters"),
  33012. name: "Front",
  33013. image: {
  33014. source: "./media/characters/anahita/front.svg",
  33015. extra: 665/635,
  33016. bottom: 89/754
  33017. }
  33018. },
  33019. },
  33020. [
  33021. {
  33022. name: "Macro",
  33023. height: math.unit(260, "meters"),
  33024. default: true
  33025. },
  33026. ]
  33027. ))
  33028. characterMakers.push(() => makeCharacter(
  33029. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33030. {
  33031. front: {
  33032. height: math.unit(4 + 10/12, "feet"),
  33033. weight: math.unit(160, "lb"),
  33034. name: "Front",
  33035. image: {
  33036. source: "./media/characters/chip-mouse/front.svg",
  33037. extra: 3528/3408,
  33038. bottom: 0/3528
  33039. }
  33040. },
  33041. frontNsfw: {
  33042. height: math.unit(4 + 10/12, "feet"),
  33043. weight: math.unit(160, "lb"),
  33044. name: "Front (NSFW)",
  33045. image: {
  33046. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33047. extra: 3528/3408,
  33048. bottom: 0/3528
  33049. }
  33050. },
  33051. },
  33052. [
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(4 + 10/12, "feet"),
  33056. default: true
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33062. {
  33063. side: {
  33064. height: math.unit(10, "feet"),
  33065. weight: math.unit(14000, "lb"),
  33066. name: "Side",
  33067. image: {
  33068. source: "./media/characters/kremm/side.svg",
  33069. extra: 1390/1053,
  33070. bottom: 90/1480
  33071. }
  33072. },
  33073. gut: {
  33074. height: math.unit(5.8, "feet"),
  33075. name: "Gut",
  33076. image: {
  33077. source: "./media/characters/kremm/gut.svg"
  33078. }
  33079. },
  33080. ass: {
  33081. height: math.unit(6.1, "feet"),
  33082. name: "Ass",
  33083. image: {
  33084. source: "./media/characters/kremm/ass.svg"
  33085. }
  33086. },
  33087. jaws: {
  33088. height: math.unit(2.2, "feet"),
  33089. name: "Jaws",
  33090. image: {
  33091. source: "./media/characters/kremm/jaws.svg"
  33092. }
  33093. },
  33094. dick: {
  33095. height: math.unit(4.26, "feet"),
  33096. name: "Dick",
  33097. image: {
  33098. source: "./media/characters/kremm/dick.svg"
  33099. }
  33100. },
  33101. },
  33102. [
  33103. {
  33104. name: "Normal",
  33105. height: math.unit(10, "feet"),
  33106. default: true
  33107. },
  33108. ]
  33109. ))
  33110. characterMakers.push(() => makeCharacter(
  33111. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33112. {
  33113. front: {
  33114. height: math.unit(30, "stories"),
  33115. name: "Front",
  33116. image: {
  33117. source: "./media/characters/kai/front.svg",
  33118. extra: 1892/1718,
  33119. bottom: 162/2054
  33120. }
  33121. },
  33122. },
  33123. [
  33124. {
  33125. name: "Macro",
  33126. height: math.unit(30, "stories"),
  33127. default: true
  33128. },
  33129. ]
  33130. ))
  33131. characterMakers.push(() => makeCharacter(
  33132. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33133. {
  33134. front: {
  33135. height: math.unit(6 + 4/12, "feet"),
  33136. weight: math.unit(145, "lb"),
  33137. name: "Front",
  33138. image: {
  33139. source: "./media/characters/sykes/front.svg",
  33140. extra: 1321 / 1187,
  33141. bottom: 66 / 1387
  33142. }
  33143. },
  33144. back: {
  33145. height: math.unit(6 + 4/12, "feet"),
  33146. weight: math.unit(145, "lb"),
  33147. name: "Back",
  33148. image: {
  33149. source: "./media/characters/sykes/back.svg",
  33150. extra: 1326/1181,
  33151. bottom: 31/1357
  33152. }
  33153. },
  33154. handBack: {
  33155. height: math.unit(0.9, "feet"),
  33156. name: "Hand (Back)",
  33157. image: {
  33158. source: "./media/characters/sykes/hand-back.svg"
  33159. }
  33160. },
  33161. handFront: {
  33162. height: math.unit(0.839, "feet"),
  33163. name: "Hand (Front)",
  33164. image: {
  33165. source: "./media/characters/sykes/hand-front.svg"
  33166. }
  33167. },
  33168. leftFoot: {
  33169. height: math.unit(1.2, "feet"),
  33170. name: "Foot (Left)",
  33171. image: {
  33172. source: "./media/characters/sykes/foot-left.svg"
  33173. }
  33174. },
  33175. rightFoot: {
  33176. height: math.unit(1.2, "feet"),
  33177. name: "Foot (Right)",
  33178. image: {
  33179. source: "./media/characters/sykes/foot-right.svg"
  33180. }
  33181. },
  33182. maw: {
  33183. height: math.unit(1.93, "feet"),
  33184. name: "Maw",
  33185. image: {
  33186. source: "./media/characters/sykes/maw.svg"
  33187. }
  33188. },
  33189. teeth: {
  33190. height: math.unit(0.51, "feet"),
  33191. name: "Teeth",
  33192. image: {
  33193. source: "./media/characters/sykes/teeth.svg"
  33194. }
  33195. },
  33196. tongue: {
  33197. height: math.unit(2.13, "feet"),
  33198. name: "Tongue",
  33199. image: {
  33200. source: "./media/characters/sykes/tongue.svg"
  33201. }
  33202. },
  33203. uvula: {
  33204. height: math.unit(0.16, "feet"),
  33205. name: "Uvula",
  33206. image: {
  33207. source: "./media/characters/sykes/uvula.svg"
  33208. }
  33209. },
  33210. collar: {
  33211. height: math.unit(0.287, "feet"),
  33212. name: "Collar",
  33213. image: {
  33214. source: "./media/characters/sykes/collar.svg"
  33215. }
  33216. },
  33217. },
  33218. [
  33219. {
  33220. name: "Shrunken",
  33221. height: math.unit(5, "inches")
  33222. },
  33223. {
  33224. name: "Normal",
  33225. height: math.unit(6 + 4 / 12, "feet"),
  33226. default: true
  33227. },
  33228. {
  33229. name: "Big",
  33230. height: math.unit(15, "feet")
  33231. },
  33232. ]
  33233. ))
  33234. characterMakers.push(() => makeCharacter(
  33235. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33236. {
  33237. front: {
  33238. height: math.unit(5 + 8/12, "feet"),
  33239. weight: math.unit(190, "lb"),
  33240. name: "Front",
  33241. image: {
  33242. source: "./media/characters/oven-otter/front.svg",
  33243. extra: 1809/1740,
  33244. bottom: 181/1990
  33245. }
  33246. },
  33247. back: {
  33248. height: math.unit(5 + 8/12, "feet"),
  33249. weight: math.unit(190, "lb"),
  33250. name: "Back",
  33251. image: {
  33252. source: "./media/characters/oven-otter/back.svg",
  33253. extra: 1709/1635,
  33254. bottom: 118/1827
  33255. }
  33256. },
  33257. hand: {
  33258. height: math.unit(1.07, "feet"),
  33259. name: "Hand",
  33260. image: {
  33261. source: "./media/characters/oven-otter/hand.svg"
  33262. }
  33263. },
  33264. beans: {
  33265. height: math.unit(1.74, "feet"),
  33266. name: "Beans",
  33267. image: {
  33268. source: "./media/characters/oven-otter/beans.svg"
  33269. }
  33270. },
  33271. },
  33272. [
  33273. {
  33274. name: "Micro",
  33275. height: math.unit(0.5, "inches")
  33276. },
  33277. {
  33278. name: "Normal",
  33279. height: math.unit(5 + 8/12, "feet"),
  33280. default: true
  33281. },
  33282. {
  33283. name: "Macro",
  33284. height: math.unit(250, "feet")
  33285. },
  33286. {
  33287. name: "Really High",
  33288. height: math.unit(420, "feet")
  33289. },
  33290. ]
  33291. ))
  33292. characterMakers.push(() => makeCharacter(
  33293. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33294. {
  33295. front: {
  33296. height: math.unit(5, "meters"),
  33297. weight: math.unit(292000000000000, "kg"),
  33298. name: "Front",
  33299. image: {
  33300. source: "./media/characters/devourer/front.svg",
  33301. extra: 1800/1733,
  33302. bottom: 211/2011
  33303. }
  33304. },
  33305. maw: {
  33306. height: math.unit(1.1, "meter"),
  33307. name: "Maw",
  33308. image: {
  33309. source: "./media/characters/devourer/maw.svg"
  33310. }
  33311. },
  33312. },
  33313. [
  33314. {
  33315. name: "Small",
  33316. height: math.unit(3, "meters")
  33317. },
  33318. {
  33319. name: "Large",
  33320. height: math.unit(5, "meters"),
  33321. default: true
  33322. },
  33323. ]
  33324. ))
  33325. characterMakers.push(() => makeCharacter(
  33326. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33327. {
  33328. front: {
  33329. height: math.unit(6, "feet"),
  33330. weight: math.unit(400, "lb"),
  33331. name: "Front",
  33332. image: {
  33333. source: "./media/characters/ellarby/front.svg",
  33334. extra: 1909/1763,
  33335. bottom: 80/1989
  33336. }
  33337. },
  33338. back: {
  33339. height: math.unit(6, "feet"),
  33340. weight: math.unit(400, "lb"),
  33341. name: "Back",
  33342. image: {
  33343. source: "./media/characters/ellarby/back.svg",
  33344. extra: 1914/1784,
  33345. bottom: 172/2086
  33346. }
  33347. },
  33348. },
  33349. [
  33350. {
  33351. name: "Mischief",
  33352. height: math.unit(18, "inches")
  33353. },
  33354. {
  33355. name: "Trouble",
  33356. height: math.unit(12, "feet")
  33357. },
  33358. {
  33359. name: "Havoc",
  33360. height: math.unit(200, "feet"),
  33361. default: true
  33362. },
  33363. {
  33364. name: "Pandemonium",
  33365. height: math.unit(1, "mile")
  33366. },
  33367. {
  33368. name: "Catastrophe",
  33369. height: math.unit(100, "miles")
  33370. },
  33371. ]
  33372. ))
  33373. characterMakers.push(() => makeCharacter(
  33374. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33375. {
  33376. front: {
  33377. height: math.unit(4.7, "meters"),
  33378. weight: math.unit(6500, "kg"),
  33379. name: "Front",
  33380. image: {
  33381. source: "./media/characters/vex/front.svg",
  33382. extra: 1288/1140,
  33383. bottom: 100/1388
  33384. }
  33385. },
  33386. },
  33387. [
  33388. {
  33389. name: "Normal",
  33390. height: math.unit(4.7, "meters"),
  33391. default: true
  33392. },
  33393. ]
  33394. ))
  33395. characterMakers.push(() => makeCharacter(
  33396. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33397. {
  33398. normal: {
  33399. height: math.unit(6, "feet"),
  33400. weight: math.unit(350, "lb"),
  33401. name: "Normal",
  33402. image: {
  33403. source: "./media/characters/teshy/normal.svg",
  33404. extra: 1795/1735,
  33405. bottom: 16/1811
  33406. }
  33407. },
  33408. monsterFront: {
  33409. height: math.unit(12, "feet"),
  33410. weight: math.unit(4700, "lb"),
  33411. name: "Monster (Front)",
  33412. image: {
  33413. source: "./media/characters/teshy/monster-front.svg",
  33414. extra: 2042/2034,
  33415. bottom: 128/2170
  33416. }
  33417. },
  33418. monsterSide: {
  33419. height: math.unit(12, "feet"),
  33420. weight: math.unit(4700, "lb"),
  33421. name: "Monster (Side)",
  33422. image: {
  33423. source: "./media/characters/teshy/monster-side.svg",
  33424. extra: 2067/2056,
  33425. bottom: 70/2137
  33426. }
  33427. },
  33428. monsterBack: {
  33429. height: math.unit(12, "feet"),
  33430. weight: math.unit(4700, "lb"),
  33431. name: "Monster (Back)",
  33432. image: {
  33433. source: "./media/characters/teshy/monster-back.svg",
  33434. extra: 1921/1914,
  33435. bottom: 171/2092
  33436. }
  33437. },
  33438. },
  33439. [
  33440. {
  33441. name: "Normal",
  33442. height: math.unit(6, "feet"),
  33443. default: true
  33444. },
  33445. ]
  33446. ))
  33447. characterMakers.push(() => makeCharacter(
  33448. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33449. {
  33450. front: {
  33451. height: math.unit(6, "feet"),
  33452. name: "Front",
  33453. image: {
  33454. source: "./media/characters/ramey/front.svg",
  33455. extra: 790/787,
  33456. bottom: 27/817
  33457. }
  33458. },
  33459. },
  33460. [
  33461. {
  33462. name: "Normal",
  33463. height: math.unit(6, "feet"),
  33464. default: true
  33465. },
  33466. ]
  33467. ))
  33468. characterMakers.push(() => makeCharacter(
  33469. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33470. {
  33471. front: {
  33472. height: math.unit(5 + 5/12, "feet"),
  33473. weight: math.unit(120, "lb"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/phirae/front.svg",
  33477. extra: 2491/2436,
  33478. bottom: 38/2529
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Normal",
  33485. height: math.unit(5 + 5/12, "feet"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(6, "feet"),
  33495. weight: math.unit(150, "lb"),
  33496. name: "Front",
  33497. image: {
  33498. source: "./media/characters/stagglas/front.svg",
  33499. extra: 962/882,
  33500. bottom: 53/1015
  33501. }
  33502. },
  33503. },
  33504. [
  33505. {
  33506. name: "Normal",
  33507. height: math.unit(5 + 3/12, "feet"),
  33508. default: true
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33514. {
  33515. front: {
  33516. height: math.unit(5 + 4/12, "feet"),
  33517. weight: math.unit(145, "lb"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/starra/front.svg",
  33521. extra: 1790/1691,
  33522. bottom: 91/1881
  33523. }
  33524. },
  33525. },
  33526. [
  33527. {
  33528. name: "Normal",
  33529. height: math.unit(5 + 4/12, "feet"),
  33530. default: true
  33531. },
  33532. ]
  33533. ))
  33534. characterMakers.push(() => makeCharacter(
  33535. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33536. {
  33537. front: {
  33538. height: math.unit(2.2, "meters"),
  33539. name: "Front",
  33540. image: {
  33541. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33542. extra: 1194/1005,
  33543. bottom: 25/1219
  33544. }
  33545. },
  33546. },
  33547. [
  33548. {
  33549. name: "Normal",
  33550. height: math.unit(2.2, "meters"),
  33551. default: true
  33552. },
  33553. ]
  33554. ))
  33555. characterMakers.push(() => makeCharacter(
  33556. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33557. {
  33558. side: {
  33559. height: math.unit(8 + 2/12, "feet"),
  33560. weight: math.unit(1240, "lb"),
  33561. name: "Side",
  33562. image: {
  33563. source: "./media/characters/mika-valentine/side.svg",
  33564. extra: 2670/2501,
  33565. bottom: 250/2920
  33566. }
  33567. },
  33568. },
  33569. [
  33570. {
  33571. name: "Normal",
  33572. height: math.unit(8 + 2/12, "feet"),
  33573. default: true
  33574. },
  33575. ]
  33576. ))
  33577. characterMakers.push(() => makeCharacter(
  33578. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33579. {
  33580. front: {
  33581. height: math.unit(7 + 2/12, "feet"),
  33582. name: "Front",
  33583. image: {
  33584. source: "./media/characters/xoltol/front.svg",
  33585. extra: 2212/2124,
  33586. bottom: 84/2296
  33587. }
  33588. },
  33589. side: {
  33590. height: math.unit(7 + 2/12, "feet"),
  33591. name: "Side",
  33592. image: {
  33593. source: "./media/characters/xoltol/side.svg",
  33594. extra: 2273/2197,
  33595. bottom: 26/2299
  33596. }
  33597. },
  33598. hand: {
  33599. height: math.unit(2.5, "feet"),
  33600. name: "Hand",
  33601. image: {
  33602. source: "./media/characters/xoltol/hand.svg"
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Small-ish",
  33609. height: math.unit(5 + 11/12, "feet")
  33610. },
  33611. {
  33612. name: "Normal",
  33613. height: math.unit(7 + 2/12, "feet")
  33614. },
  33615. {
  33616. name: "\"Macro\"",
  33617. height: math.unit(14 + 9/12, "feet"),
  33618. default: true
  33619. },
  33620. {
  33621. name: "Alternate Height",
  33622. height: math.unit(20, "feet")
  33623. },
  33624. {
  33625. name: "Actually Macro",
  33626. height: math.unit(100, "feet")
  33627. },
  33628. ]
  33629. ))
  33630. characterMakers.push(() => makeCharacter(
  33631. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33632. {
  33633. front: {
  33634. height: math.unit(5 + 2/12, "feet"),
  33635. name: "Front",
  33636. image: {
  33637. source: "./media/characters/kotetsu-redwood/front.svg",
  33638. extra: 1053/942,
  33639. bottom: 60/1113
  33640. }
  33641. },
  33642. },
  33643. [
  33644. {
  33645. name: "Normal",
  33646. height: math.unit(5 + 2/12, "feet"),
  33647. default: true
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33653. {
  33654. front: {
  33655. height: math.unit(2.4, "meters"),
  33656. weight: math.unit(125, "kg"),
  33657. name: "Front",
  33658. image: {
  33659. source: "./media/characters/lilith/front.svg",
  33660. extra: 1590/1513,
  33661. bottom: 203/1793
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Humanoid",
  33668. height: math.unit(2.4, "meters")
  33669. },
  33670. {
  33671. name: "Normal",
  33672. height: math.unit(6, "meters"),
  33673. default: true
  33674. },
  33675. {
  33676. name: "Largest",
  33677. height: math.unit(55, "meters")
  33678. },
  33679. ]
  33680. ))
  33681. characterMakers.push(() => makeCharacter(
  33682. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33683. {
  33684. front: {
  33685. height: math.unit(8 + 4/12, "feet"),
  33686. weight: math.unit(535, "lb"),
  33687. name: "Front",
  33688. image: {
  33689. source: "./media/characters/beh'kah-bolger/front.svg",
  33690. extra: 1660/1603,
  33691. bottom: 37/1697
  33692. }
  33693. },
  33694. },
  33695. [
  33696. {
  33697. name: "Normal",
  33698. height: math.unit(8 + 4/12, "feet"),
  33699. default: true
  33700. },
  33701. {
  33702. name: "Kaiju",
  33703. height: math.unit(250, "feet")
  33704. },
  33705. {
  33706. name: "Still Growing",
  33707. height: math.unit(10, "miles")
  33708. },
  33709. {
  33710. name: "Continental",
  33711. height: math.unit(5000, "miles")
  33712. },
  33713. {
  33714. name: "Final Form",
  33715. height: math.unit(2500000, "miles")
  33716. },
  33717. ]
  33718. ))
  33719. characterMakers.push(() => makeCharacter(
  33720. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33721. {
  33722. front: {
  33723. height: math.unit(7 + 2/12, "feet"),
  33724. weight: math.unit(230, "kg"),
  33725. name: "Front",
  33726. image: {
  33727. source: "./media/characters/tatyana-milewska/front.svg",
  33728. extra: 1199/1150,
  33729. bottom: 86/1285
  33730. }
  33731. },
  33732. },
  33733. [
  33734. {
  33735. name: "Normal",
  33736. height: math.unit(7 + 2/12, "feet"),
  33737. default: true
  33738. },
  33739. {
  33740. name: "Big",
  33741. height: math.unit(12, "feet")
  33742. },
  33743. {
  33744. name: "Minimacro",
  33745. height: math.unit(20, "feet")
  33746. },
  33747. {
  33748. name: "Macro",
  33749. height: math.unit(120, "feet")
  33750. },
  33751. ]
  33752. ))
  33753. characterMakers.push(() => makeCharacter(
  33754. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33755. {
  33756. front: {
  33757. height: math.unit(7 + 8/12, "feet"),
  33758. weight: math.unit(152, "kg"),
  33759. name: "Front",
  33760. image: {
  33761. source: "./media/characters/helen-arri/front.svg",
  33762. extra: 440/423,
  33763. bottom: 14/454
  33764. }
  33765. },
  33766. back: {
  33767. height: math.unit(7 + 8/12, "feet"),
  33768. weight: math.unit(152, "kg"),
  33769. name: "Back",
  33770. image: {
  33771. source: "./media/characters/helen-arri/back.svg",
  33772. extra: 443/426,
  33773. bottom: 8/451
  33774. }
  33775. },
  33776. },
  33777. [
  33778. {
  33779. name: "Normal",
  33780. height: math.unit(7 + 8/12, "feet"),
  33781. default: true
  33782. },
  33783. {
  33784. name: "Big",
  33785. height: math.unit(14, "feet")
  33786. },
  33787. {
  33788. name: "Minimacro",
  33789. height: math.unit(24, "feet")
  33790. },
  33791. {
  33792. name: "Macro",
  33793. height: math.unit(140, "feet")
  33794. },
  33795. ]
  33796. ))
  33797. characterMakers.push(() => makeCharacter(
  33798. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33799. {
  33800. front: {
  33801. height: math.unit(6, "meters"),
  33802. name: "Front",
  33803. image: {
  33804. source: "./media/characters/ehanu-rehu/front.svg",
  33805. extra: 1800/1800,
  33806. bottom: 59/1859
  33807. }
  33808. },
  33809. },
  33810. [
  33811. {
  33812. name: "Normal",
  33813. height: math.unit(6, "meters"),
  33814. default: true
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33820. {
  33821. front: {
  33822. height: math.unit(7 + 3/12, "feet"),
  33823. name: "Front",
  33824. image: {
  33825. source: "./media/characters/renholder/front.svg",
  33826. extra: 3096/2960,
  33827. bottom: 250/3346
  33828. }
  33829. },
  33830. },
  33831. [
  33832. {
  33833. name: "Normal Bat",
  33834. height: math.unit(7 + 3/12, "feet"),
  33835. default: true
  33836. },
  33837. {
  33838. name: "Slightly Tall Bat",
  33839. height: math.unit(100, "feet")
  33840. },
  33841. {
  33842. name: "Big Bat",
  33843. height: math.unit(1000, "feet")
  33844. },
  33845. {
  33846. name: "City-Sized Bat",
  33847. height: math.unit(200000, "feet")
  33848. },
  33849. {
  33850. name: "Bigger Bat",
  33851. height: math.unit(10000, "miles")
  33852. },
  33853. {
  33854. name: "Solar Sized Bat",
  33855. height: math.unit(100, "AU")
  33856. },
  33857. {
  33858. name: "Galactic Bat",
  33859. height: math.unit(200000, "lightyears")
  33860. },
  33861. {
  33862. name: "Universally Known Bat",
  33863. height: math.unit(1, "universe")
  33864. },
  33865. ]
  33866. ))
  33867. characterMakers.push(() => makeCharacter(
  33868. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33869. {
  33870. front: {
  33871. height: math.unit(6 + 11/12, "feet"),
  33872. weight: math.unit(250, "lb"),
  33873. name: "Front",
  33874. image: {
  33875. source: "./media/characters/cookiecat/front.svg",
  33876. extra: 893/827,
  33877. bottom: 14/907
  33878. }
  33879. },
  33880. },
  33881. [
  33882. {
  33883. name: "Micro",
  33884. height: math.unit(3, "inches")
  33885. },
  33886. {
  33887. name: "Normal",
  33888. height: math.unit(6 + 11/12, "feet"),
  33889. default: true
  33890. },
  33891. {
  33892. name: "Macro",
  33893. height: math.unit(100, "feet")
  33894. },
  33895. {
  33896. name: "Macro+",
  33897. height: math.unit(404, "feet")
  33898. },
  33899. {
  33900. name: "Megamacro",
  33901. height: math.unit(165, "miles")
  33902. },
  33903. {
  33904. name: "Planetary",
  33905. height: math.unit(4600, "miles")
  33906. },
  33907. ]
  33908. ))
  33909. characterMakers.push(() => makeCharacter(
  33910. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33911. {
  33912. front: {
  33913. height: math.unit(10 + 3/12, "feet"),
  33914. weight: math.unit(1500, "lb"),
  33915. name: "Front",
  33916. image: {
  33917. source: "./media/characters/tux-kusanagi/front.svg",
  33918. extra: 944/840,
  33919. bottom: 39/983
  33920. }
  33921. },
  33922. back: {
  33923. height: math.unit(10 + 3/12, "feet"),
  33924. weight: math.unit(1500, "lb"),
  33925. name: "Back",
  33926. image: {
  33927. source: "./media/characters/tux-kusanagi/back.svg",
  33928. extra: 941/842,
  33929. bottom: 28/969
  33930. }
  33931. },
  33932. rump: {
  33933. height: math.unit(5.25, "feet"),
  33934. name: "Rump",
  33935. image: {
  33936. source: "./media/characters/tux-kusanagi/rump.svg"
  33937. }
  33938. },
  33939. beak: {
  33940. height: math.unit(1.54, "feet"),
  33941. name: "Beak",
  33942. image: {
  33943. source: "./media/characters/tux-kusanagi/beak.svg"
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "Normal",
  33950. height: math.unit(10 + 3/12, "feet"),
  33951. default: true
  33952. },
  33953. ]
  33954. ))
  33955. characterMakers.push(() => makeCharacter(
  33956. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33957. {
  33958. front: {
  33959. height: math.unit(58, "feet"),
  33960. weight: math.unit(200, "tons"),
  33961. name: "Front",
  33962. image: {
  33963. source: "./media/characters/uzarmazari/front.svg",
  33964. extra: 1575/1455,
  33965. bottom: 152/1727
  33966. }
  33967. },
  33968. back: {
  33969. height: math.unit(58, "feet"),
  33970. weight: math.unit(200, "tons"),
  33971. name: "Back",
  33972. image: {
  33973. source: "./media/characters/uzarmazari/back.svg",
  33974. extra: 1585/1510,
  33975. bottom: 157/1742
  33976. }
  33977. },
  33978. head: {
  33979. height: math.unit(26, "feet"),
  33980. name: "Head",
  33981. image: {
  33982. source: "./media/characters/uzarmazari/head.svg"
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Normal",
  33989. height: math.unit(58, "feet"),
  33990. default: true
  33991. },
  33992. ]
  33993. ))
  33994. characterMakers.push(() => makeCharacter(
  33995. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33996. {
  33997. side: {
  33998. height: math.unit(15, "feet"),
  33999. name: "Side",
  34000. image: {
  34001. source: "./media/characters/akitu/side.svg",
  34002. extra: 1421/1321,
  34003. bottom: 157/1578
  34004. }
  34005. },
  34006. front: {
  34007. height: math.unit(15, "feet"),
  34008. name: "Front",
  34009. image: {
  34010. source: "./media/characters/akitu/front.svg",
  34011. extra: 1435/1326,
  34012. bottom: 232/1667
  34013. }
  34014. },
  34015. },
  34016. [
  34017. {
  34018. name: "Normal",
  34019. height: math.unit(15, "feet"),
  34020. default: true
  34021. },
  34022. ]
  34023. ))
  34024. characterMakers.push(() => makeCharacter(
  34025. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34026. {
  34027. front: {
  34028. height: math.unit(10 + 8/12, "feet"),
  34029. name: "Front",
  34030. image: {
  34031. source: "./media/characters/azalie-croixland/front.svg",
  34032. extra: 1972/1856,
  34033. bottom: 31/2003
  34034. }
  34035. },
  34036. },
  34037. [
  34038. {
  34039. name: "Original Height",
  34040. height: math.unit(5 + 4/12, "feet")
  34041. },
  34042. {
  34043. name: "Normal Height",
  34044. height: math.unit(10 + 8/12, "feet"),
  34045. default: true
  34046. },
  34047. ]
  34048. ))
  34049. characterMakers.push(() => makeCharacter(
  34050. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34051. {
  34052. side: {
  34053. height: math.unit(7 + 1/12, "feet"),
  34054. weight: math.unit(245, "lb"),
  34055. name: "Side",
  34056. image: {
  34057. source: "./media/characters/kavus-kazian/side.svg",
  34058. extra: 349/342,
  34059. bottom: 15/364
  34060. }
  34061. },
  34062. },
  34063. [
  34064. {
  34065. name: "Normal",
  34066. height: math.unit(7 + 1/12, "feet"),
  34067. default: true
  34068. },
  34069. ]
  34070. ))
  34071. characterMakers.push(() => makeCharacter(
  34072. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34073. {
  34074. normal: {
  34075. height: math.unit(5 + 11/12, "feet"),
  34076. name: "Normal",
  34077. image: {
  34078. source: "./media/characters/moonlight-rose/normal.svg",
  34079. extra: 1979/1835,
  34080. bottom: 14/1993
  34081. }
  34082. },
  34083. demon: {
  34084. height: math.unit(5, "km"),
  34085. name: "Demon",
  34086. image: {
  34087. source: "./media/characters/moonlight-rose/demon.svg",
  34088. extra: 986/916,
  34089. bottom: 28/1014
  34090. }
  34091. },
  34092. },
  34093. [
  34094. {
  34095. name: "\"Natural\" height",
  34096. height: math.unit(5 + 11/12, "feet")
  34097. },
  34098. {
  34099. name: "Comfortable Size",
  34100. height: math.unit(40, "meters")
  34101. },
  34102. {
  34103. name: "Common Size",
  34104. height: math.unit(50, "km"),
  34105. default: true
  34106. },
  34107. {
  34108. name: "Demonic",
  34109. height: math.unit(1.24415e+21, "meters")
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34115. {
  34116. front: {
  34117. height: math.unit(16, "feet"),
  34118. weight: math.unit(610, "kg"),
  34119. name: "Front",
  34120. image: {
  34121. source: "./media/characters/huckle/front.svg",
  34122. extra: 1731/1625,
  34123. bottom: 33/1764
  34124. }
  34125. },
  34126. back: {
  34127. height: math.unit(16, "feet"),
  34128. weight: math.unit(610, "kg"),
  34129. name: "Back",
  34130. image: {
  34131. source: "./media/characters/huckle/back.svg",
  34132. extra: 1738/1651,
  34133. bottom: 37/1775
  34134. }
  34135. },
  34136. laughing: {
  34137. height: math.unit(3.75, "feet"),
  34138. name: "Laughing",
  34139. image: {
  34140. source: "./media/characters/huckle/laughing.svg"
  34141. }
  34142. },
  34143. angry: {
  34144. height: math.unit(4.15, "feet"),
  34145. name: "Angry",
  34146. image: {
  34147. source: "./media/characters/huckle/angry.svg"
  34148. }
  34149. },
  34150. },
  34151. [
  34152. {
  34153. name: "Normal",
  34154. height: math.unit(16, "feet"),
  34155. default: true
  34156. },
  34157. {
  34158. name: "Mini Macro",
  34159. height: math.unit(463, "feet")
  34160. },
  34161. {
  34162. name: "Macro",
  34163. height: math.unit(1680, "meters")
  34164. },
  34165. {
  34166. name: "Mega Macro",
  34167. height: math.unit(175, "km")
  34168. },
  34169. {
  34170. name: "Terra Macro",
  34171. height: math.unit(32, "gigameters")
  34172. },
  34173. {
  34174. name: "Multiverse+",
  34175. height: math.unit(2.56e23, "yottameters")
  34176. },
  34177. ]
  34178. ))
  34179. characterMakers.push(() => makeCharacter(
  34180. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34181. {
  34182. front: {
  34183. height: math.unit(6 + 9/12, "feet"),
  34184. weight: math.unit(280, "lb"),
  34185. name: "Front",
  34186. image: {
  34187. source: "./media/characters/candy/front.svg",
  34188. extra: 234/217,
  34189. bottom: 11/245
  34190. }
  34191. },
  34192. },
  34193. [
  34194. {
  34195. name: "Really Small",
  34196. height: math.unit(0.1, "nm")
  34197. },
  34198. {
  34199. name: "Micro",
  34200. height: math.unit(2, "inches")
  34201. },
  34202. {
  34203. name: "Normal",
  34204. height: math.unit(6 + 9/12, "feet"),
  34205. default: true
  34206. },
  34207. {
  34208. name: "Small Macro",
  34209. height: math.unit(69, "feet")
  34210. },
  34211. {
  34212. name: "Macro",
  34213. height: math.unit(160, "feet")
  34214. },
  34215. {
  34216. name: "Megamacro",
  34217. height: math.unit(22000, "miles")
  34218. },
  34219. {
  34220. name: "Gigamacro",
  34221. height: math.unit(50000, "miles")
  34222. },
  34223. ]
  34224. ))
  34225. characterMakers.push(() => makeCharacter(
  34226. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34227. {
  34228. front: {
  34229. height: math.unit(4, "feet"),
  34230. weight: math.unit(90, "lb"),
  34231. name: "Front",
  34232. image: {
  34233. source: "./media/characters/joey-mcdonald/front.svg",
  34234. extra: 1059/852,
  34235. bottom: 33/1092
  34236. }
  34237. },
  34238. back: {
  34239. height: math.unit(4, "feet"),
  34240. weight: math.unit(90, "lb"),
  34241. name: "Back",
  34242. image: {
  34243. source: "./media/characters/joey-mcdonald/back.svg",
  34244. extra: 1077/879,
  34245. bottom: 5/1082
  34246. }
  34247. },
  34248. },
  34249. [
  34250. {
  34251. name: "Normal",
  34252. height: math.unit(4, "feet"),
  34253. default: true
  34254. },
  34255. ]
  34256. ))
  34257. characterMakers.push(() => makeCharacter(
  34258. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34259. {
  34260. front: {
  34261. height: math.unit(12 + 6/12, "feet"),
  34262. name: "Front",
  34263. image: {
  34264. source: "./media/characters/kass-lockheed/front.svg",
  34265. extra: 354/343,
  34266. bottom: 9/363
  34267. }
  34268. },
  34269. back: {
  34270. height: math.unit(12 + 6/12, "feet"),
  34271. name: "Back",
  34272. image: {
  34273. source: "./media/characters/kass-lockheed/back.svg",
  34274. extra: 364/352,
  34275. bottom: 3/367
  34276. }
  34277. },
  34278. dick: {
  34279. height: math.unit(3.12, "feet"),
  34280. name: "Dick",
  34281. image: {
  34282. source: "./media/characters/kass-lockheed/dick.svg"
  34283. }
  34284. },
  34285. head: {
  34286. height: math.unit(2.6, "feet"),
  34287. name: "Head",
  34288. image: {
  34289. source: "./media/characters/kass-lockheed/head.svg"
  34290. }
  34291. },
  34292. bleh: {
  34293. height: math.unit(2.85, "feet"),
  34294. name: "Bleh",
  34295. image: {
  34296. source: "./media/characters/kass-lockheed/bleh.svg"
  34297. }
  34298. },
  34299. smug: {
  34300. height: math.unit(2.85, "feet"),
  34301. name: "Smug",
  34302. image: {
  34303. source: "./media/characters/kass-lockheed/smug.svg"
  34304. }
  34305. },
  34306. },
  34307. [
  34308. {
  34309. name: "Normal",
  34310. height: math.unit(12 + 6/12, "feet"),
  34311. default: true
  34312. },
  34313. ]
  34314. ))
  34315. characterMakers.push(() => makeCharacter(
  34316. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34317. {
  34318. front: {
  34319. height: math.unit(6 + 2/12, "feet"),
  34320. name: "Front",
  34321. image: {
  34322. source: "./media/characters/taylor/front.svg",
  34323. extra: 639/495,
  34324. bottom: 12/651
  34325. }
  34326. },
  34327. },
  34328. [
  34329. {
  34330. name: "Normal",
  34331. height: math.unit(6 + 2/12, "feet"),
  34332. default: true
  34333. },
  34334. {
  34335. name: "Big",
  34336. height: math.unit(15, "feet")
  34337. },
  34338. {
  34339. name: "Lorg",
  34340. height: math.unit(80, "feet")
  34341. },
  34342. {
  34343. name: "Too Lorg",
  34344. height: math.unit(120, "feet")
  34345. },
  34346. ]
  34347. ))
  34348. characterMakers.push(() => makeCharacter(
  34349. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34350. {
  34351. front: {
  34352. height: math.unit(15, "feet"),
  34353. name: "Front",
  34354. image: {
  34355. source: "./media/characters/kaizer/front.svg",
  34356. extra: 1612/1436,
  34357. bottom: 43/1655
  34358. }
  34359. },
  34360. },
  34361. [
  34362. {
  34363. name: "Normal",
  34364. height: math.unit(15, "feet"),
  34365. default: true
  34366. },
  34367. ]
  34368. ))
  34369. characterMakers.push(() => makeCharacter(
  34370. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34371. {
  34372. front: {
  34373. height: math.unit(2, "feet"),
  34374. weight: math.unit(30, "lb"),
  34375. name: "Front",
  34376. image: {
  34377. source: "./media/characters/sandy/front.svg",
  34378. extra: 1439/1307,
  34379. bottom: 194/1633
  34380. }
  34381. },
  34382. },
  34383. [
  34384. {
  34385. name: "Normal",
  34386. height: math.unit(2, "feet"),
  34387. default: true
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34393. {
  34394. front: {
  34395. height: math.unit(3, "feet"),
  34396. name: "Front",
  34397. image: {
  34398. source: "./media/characters/mellvi/front.svg",
  34399. extra: 1831/1630,
  34400. bottom: 58/1889
  34401. }
  34402. },
  34403. },
  34404. [
  34405. {
  34406. name: "Normal",
  34407. height: math.unit(3, "feet"),
  34408. default: true
  34409. },
  34410. ]
  34411. ))
  34412. characterMakers.push(() => makeCharacter(
  34413. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34414. {
  34415. front: {
  34416. height: math.unit(5 + 11/12, "feet"),
  34417. weight: math.unit(200, "lb"),
  34418. name: "Front",
  34419. image: {
  34420. source: "./media/characters/shirou/front.svg",
  34421. extra: 2491/2383,
  34422. bottom: 189/2680
  34423. }
  34424. },
  34425. back: {
  34426. height: math.unit(5 + 11/12, "feet"),
  34427. weight: math.unit(200, "lb"),
  34428. name: "Back",
  34429. image: {
  34430. source: "./media/characters/shirou/back.svg",
  34431. extra: 2554/2450,
  34432. bottom: 76/2630
  34433. }
  34434. },
  34435. },
  34436. [
  34437. {
  34438. name: "Normal",
  34439. height: math.unit(5 + 11/12, "feet"),
  34440. default: true
  34441. },
  34442. ]
  34443. ))
  34444. characterMakers.push(() => makeCharacter(
  34445. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34446. {
  34447. front: {
  34448. height: math.unit(6 + 3/12, "feet"),
  34449. weight: math.unit(177, "lb"),
  34450. name: "Front",
  34451. image: {
  34452. source: "./media/characters/noryu/front.svg",
  34453. extra: 973/885,
  34454. bottom: 10/983
  34455. }
  34456. },
  34457. },
  34458. [
  34459. {
  34460. name: "Normal",
  34461. height: math.unit(6 + 3/12, "feet"),
  34462. default: true
  34463. },
  34464. ]
  34465. ))
  34466. characterMakers.push(() => makeCharacter(
  34467. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34468. {
  34469. front: {
  34470. height: math.unit(5 + 6/12, "feet"),
  34471. weight: math.unit(170, "lb"),
  34472. name: "Front",
  34473. image: {
  34474. source: "./media/characters/mevolas-rubenido/front.svg",
  34475. extra: 2109/1901,
  34476. bottom: 96/2205
  34477. }
  34478. },
  34479. },
  34480. [
  34481. {
  34482. name: "Normal",
  34483. height: math.unit(5 + 6/12, "feet"),
  34484. default: true
  34485. },
  34486. ]
  34487. ))
  34488. characterMakers.push(() => makeCharacter(
  34489. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34490. {
  34491. front: {
  34492. height: math.unit(100, "feet"),
  34493. name: "Front",
  34494. image: {
  34495. source: "./media/characters/dee/front.svg",
  34496. extra: 2153/2036,
  34497. bottom: 59/2212
  34498. }
  34499. },
  34500. back: {
  34501. height: math.unit(100, "feet"),
  34502. name: "Back",
  34503. image: {
  34504. source: "./media/characters/dee/back.svg",
  34505. extra: 2183/2058,
  34506. bottom: 75/2258
  34507. }
  34508. },
  34509. foot: {
  34510. height: math.unit(19.43, "feet"),
  34511. name: "Foot",
  34512. image: {
  34513. source: "./media/characters/dee/foot.svg"
  34514. }
  34515. },
  34516. hoof: {
  34517. height: math.unit(20.6, "feet"),
  34518. name: "Hoof",
  34519. image: {
  34520. source: "./media/characters/dee/hoof.svg"
  34521. }
  34522. },
  34523. },
  34524. [
  34525. {
  34526. name: "Macro",
  34527. height: math.unit(100, "feet"),
  34528. default: true
  34529. },
  34530. ]
  34531. ))
  34532. characterMakers.push(() => makeCharacter(
  34533. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34534. {
  34535. front: {
  34536. height: math.unit(5 + 6/12, "feet"),
  34537. name: "Front",
  34538. image: {
  34539. source: "./media/characters/teh/front.svg",
  34540. extra: 1002/847,
  34541. bottom: 62/1064
  34542. }
  34543. },
  34544. },
  34545. [
  34546. {
  34547. name: "Normal",
  34548. height: math.unit(5 + 6/12, "feet"),
  34549. default: true
  34550. },
  34551. ]
  34552. ))
  34553. characterMakers.push(() => makeCharacter(
  34554. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34555. {
  34556. side: {
  34557. height: math.unit(6 + 1/12, "feet"),
  34558. weight: math.unit(204, "lb"),
  34559. name: "Side",
  34560. image: {
  34561. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34562. extra: 974/775,
  34563. bottom: 169/1143
  34564. }
  34565. },
  34566. sitting: {
  34567. height: math.unit(6 + 2/12, "feet"),
  34568. weight: math.unit(204, "lb"),
  34569. name: "Sitting",
  34570. image: {
  34571. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34572. extra: 1175/964,
  34573. bottom: 378/1553
  34574. }
  34575. },
  34576. },
  34577. [
  34578. {
  34579. name: "Normal",
  34580. height: math.unit(6 + 1/12, "feet"),
  34581. default: true
  34582. },
  34583. ]
  34584. ))
  34585. characterMakers.push(() => makeCharacter(
  34586. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34587. {
  34588. front: {
  34589. height: math.unit(6, "inches"),
  34590. name: "Front",
  34591. image: {
  34592. source: "./media/characters/tululi/front.svg",
  34593. extra: 1997/1876,
  34594. bottom: 20/2017
  34595. }
  34596. },
  34597. },
  34598. [
  34599. {
  34600. name: "Normal",
  34601. height: math.unit(6, "inches"),
  34602. default: true
  34603. },
  34604. ]
  34605. ))
  34606. characterMakers.push(() => makeCharacter(
  34607. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34608. {
  34609. front: {
  34610. height: math.unit(4 + 1/12, "feet"),
  34611. name: "Front",
  34612. image: {
  34613. source: "./media/characters/star/front.svg",
  34614. extra: 1493/1189,
  34615. bottom: 48/1541
  34616. }
  34617. },
  34618. },
  34619. [
  34620. {
  34621. name: "Normal",
  34622. height: math.unit(4 + 1/12, "feet"),
  34623. default: true
  34624. },
  34625. ]
  34626. ))
  34627. characterMakers.push(() => makeCharacter(
  34628. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34629. {
  34630. front: {
  34631. height: math.unit(6 + 3/12, "feet"),
  34632. name: "Front",
  34633. image: {
  34634. source: "./media/characters/comet/front.svg",
  34635. extra: 1681/1462,
  34636. bottom: 26/1707
  34637. }
  34638. },
  34639. },
  34640. [
  34641. {
  34642. name: "Normal",
  34643. height: math.unit(6 + 3/12, "feet"),
  34644. default: true
  34645. },
  34646. ]
  34647. ))
  34648. characterMakers.push(() => makeCharacter(
  34649. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34650. {
  34651. front: {
  34652. height: math.unit(950, "feet"),
  34653. name: "Front",
  34654. image: {
  34655. source: "./media/characters/vortex/front.svg",
  34656. extra: 1497/1434,
  34657. bottom: 56/1553
  34658. }
  34659. },
  34660. maw: {
  34661. height: math.unit(285, "feet"),
  34662. name: "Maw",
  34663. image: {
  34664. source: "./media/characters/vortex/maw.svg"
  34665. }
  34666. },
  34667. },
  34668. [
  34669. {
  34670. name: "Macro",
  34671. height: math.unit(950, "feet"),
  34672. default: true
  34673. },
  34674. ]
  34675. ))
  34676. characterMakers.push(() => makeCharacter(
  34677. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34678. {
  34679. front: {
  34680. height: math.unit(600, "feet"),
  34681. weight: math.unit(0.02, "grams"),
  34682. name: "Front",
  34683. image: {
  34684. source: "./media/characters/doodle/front.svg",
  34685. extra: 1578/1413,
  34686. bottom: 37/1615
  34687. }
  34688. },
  34689. },
  34690. [
  34691. {
  34692. name: "Macro",
  34693. height: math.unit(600, "feet"),
  34694. default: true
  34695. },
  34696. ]
  34697. ))
  34698. characterMakers.push(() => makeCharacter(
  34699. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34700. {
  34701. front: {
  34702. height: math.unit(6 + 6/12, "feet"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/jai/front.svg",
  34706. extra: 1645/1534,
  34707. bottom: 115/1760
  34708. }
  34709. },
  34710. },
  34711. [
  34712. {
  34713. name: "Normal",
  34714. height: math.unit(6 + 6/12, "feet"),
  34715. default: true
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34721. {
  34722. front: {
  34723. height: math.unit(6 + 8/12, "feet"),
  34724. name: "Front",
  34725. image: {
  34726. source: "./media/characters/pixel/front.svg",
  34727. extra: 1900/1735,
  34728. bottom: 63/1963
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Normal",
  34735. height: math.unit(6 + 8/12, "feet"),
  34736. default: true
  34737. },
  34738. ]
  34739. ))
  34740. characterMakers.push(() => makeCharacter(
  34741. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34742. {
  34743. front: {
  34744. height: math.unit(4 + 11/12, "feet"),
  34745. weight: math.unit(111, "lb"),
  34746. name: "Front",
  34747. image: {
  34748. source: "./media/characters/rhett/front.svg",
  34749. extra: 1682/1586,
  34750. bottom: 92/1774
  34751. }
  34752. },
  34753. },
  34754. [
  34755. {
  34756. name: "Mini",
  34757. height: math.unit(1 + 1/12, "feet")
  34758. },
  34759. {
  34760. name: "Normal",
  34761. height: math.unit(4 + 11/12, "feet"),
  34762. default: true
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34768. {
  34769. front: {
  34770. height: math.unit(3 + 3/12, "feet"),
  34771. name: "Front",
  34772. image: {
  34773. source: "./media/characters/penny/front.svg",
  34774. extra: 1406/1311,
  34775. bottom: 26/1432
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Normal",
  34782. height: math.unit(3 + 3/12, "feet"),
  34783. default: true
  34784. },
  34785. ]
  34786. ))
  34787. characterMakers.push(() => makeCharacter(
  34788. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34789. {
  34790. front: {
  34791. height: math.unit(4 + 11/12, "feet"),
  34792. name: "Front",
  34793. image: {
  34794. source: "./media/characters/monty/front.svg",
  34795. extra: 1479/1209,
  34796. bottom: 0/1479
  34797. }
  34798. },
  34799. },
  34800. [
  34801. {
  34802. name: "Normal",
  34803. height: math.unit(4 + 11/12, "feet"),
  34804. default: true
  34805. },
  34806. ]
  34807. ))
  34808. characterMakers.push(() => makeCharacter(
  34809. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34810. {
  34811. front: {
  34812. height: math.unit(8 + 4/12, "feet"),
  34813. name: "Front",
  34814. image: {
  34815. source: "./media/characters/sterling/front.svg",
  34816. extra: 1420/1236,
  34817. bottom: 27/1447
  34818. }
  34819. },
  34820. },
  34821. [
  34822. {
  34823. name: "Normal",
  34824. height: math.unit(8 + 4/12, "feet"),
  34825. default: true
  34826. },
  34827. ]
  34828. ))
  34829. characterMakers.push(() => makeCharacter(
  34830. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34831. {
  34832. front: {
  34833. height: math.unit(15, "feet"),
  34834. name: "Front",
  34835. image: {
  34836. source: "./media/characters/marble/front.svg",
  34837. extra: 973/937,
  34838. bottom: 32/1005
  34839. }
  34840. },
  34841. },
  34842. [
  34843. {
  34844. name: "Normal",
  34845. height: math.unit(15, "feet"),
  34846. default: true
  34847. },
  34848. ]
  34849. ))
  34850. characterMakers.push(() => makeCharacter(
  34851. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34852. {
  34853. front: {
  34854. height: math.unit(3, "inches"),
  34855. name: "Front",
  34856. image: {
  34857. source: "./media/characters/powder/front.svg",
  34858. extra: 1504/1334,
  34859. bottom: 518/2022
  34860. }
  34861. },
  34862. },
  34863. [
  34864. {
  34865. name: "Normal",
  34866. height: math.unit(3, "inches"),
  34867. default: true
  34868. },
  34869. ]
  34870. ))
  34871. characterMakers.push(() => makeCharacter(
  34872. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34873. {
  34874. front: {
  34875. height: math.unit(4 + 5/12, "feet"),
  34876. name: "Front",
  34877. image: {
  34878. source: "./media/characters/joey-raccoon/front.svg",
  34879. extra: 1273/1197,
  34880. bottom: 0/1273
  34881. }
  34882. },
  34883. },
  34884. [
  34885. {
  34886. name: "Normal",
  34887. height: math.unit(4 + 5/12, "feet"),
  34888. default: true
  34889. },
  34890. ]
  34891. ))
  34892. characterMakers.push(() => makeCharacter(
  34893. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34894. {
  34895. front: {
  34896. height: math.unit(8 + 4/12, "feet"),
  34897. name: "Front",
  34898. image: {
  34899. source: "./media/characters/vick/front.svg",
  34900. extra: 2187/2118,
  34901. bottom: 47/2234
  34902. }
  34903. },
  34904. },
  34905. [
  34906. {
  34907. name: "Normal",
  34908. height: math.unit(8 + 4/12, "feet"),
  34909. default: true
  34910. },
  34911. ]
  34912. ))
  34913. characterMakers.push(() => makeCharacter(
  34914. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34915. {
  34916. front: {
  34917. height: math.unit(5 + 5/12, "feet"),
  34918. name: "Front",
  34919. image: {
  34920. source: "./media/characters/mitsy/front.svg",
  34921. extra: 1842/1695,
  34922. bottom: 0/1842
  34923. }
  34924. },
  34925. },
  34926. [
  34927. {
  34928. name: "Normal",
  34929. height: math.unit(5 + 5/12, "feet"),
  34930. default: true
  34931. },
  34932. ]
  34933. ))
  34934. characterMakers.push(() => makeCharacter(
  34935. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34936. {
  34937. front: {
  34938. height: math.unit(6 + 3/12, "feet"),
  34939. name: "Front",
  34940. image: {
  34941. source: "./media/characters/silvy/front.svg",
  34942. extra: 1995/1836,
  34943. bottom: 225/2220
  34944. }
  34945. },
  34946. },
  34947. [
  34948. {
  34949. name: "Normal",
  34950. height: math.unit(6 + 3/12, "feet"),
  34951. default: true
  34952. },
  34953. ]
  34954. ))
  34955. characterMakers.push(() => makeCharacter(
  34956. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34957. {
  34958. front: {
  34959. height: math.unit(3 + 8/12, "feet"),
  34960. name: "Front",
  34961. image: {
  34962. source: "./media/characters/rodney/front.svg",
  34963. extra: 1956/1747,
  34964. bottom: 31/1987
  34965. }
  34966. },
  34967. frontDressed: {
  34968. height: math.unit(2.9, "feet"),
  34969. name: "Front (Dressed)",
  34970. image: {
  34971. source: "./media/characters/rodney/front-dressed.svg",
  34972. extra: 1382/1241,
  34973. bottom: 385/1767
  34974. }
  34975. },
  34976. },
  34977. [
  34978. {
  34979. name: "Normal",
  34980. height: math.unit(3 + 8/12, "feet"),
  34981. default: true
  34982. },
  34983. ]
  34984. ))
  34985. characterMakers.push(() => makeCharacter(
  34986. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34987. {
  34988. front: {
  34989. height: math.unit(5 + 9/12, "feet"),
  34990. weight: math.unit(194, "lbs"),
  34991. name: "Front",
  34992. image: {
  34993. source: "./media/characters/zakail-sudekai/front.svg",
  34994. extra: 2696/2533,
  34995. bottom: 248/2944
  34996. }
  34997. },
  34998. maw: {
  34999. height: math.unit(1.35, "feet"),
  35000. name: "Maw",
  35001. image: {
  35002. source: "./media/characters/zakail-sudekai/maw.svg"
  35003. }
  35004. },
  35005. },
  35006. [
  35007. {
  35008. name: "Normal",
  35009. height: math.unit(5 + 9/12, "feet"),
  35010. default: true
  35011. },
  35012. ]
  35013. ))
  35014. characterMakers.push(() => makeCharacter(
  35015. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35016. {
  35017. front: {
  35018. height: math.unit(8 + 4/12, "feet"),
  35019. weight: math.unit(1200, "lb"),
  35020. name: "Front",
  35021. image: {
  35022. source: "./media/characters/eleanor/front.svg",
  35023. extra: 1226/1192,
  35024. bottom: 52/1278
  35025. }
  35026. },
  35027. back: {
  35028. height: math.unit(8 + 4/12, "feet"),
  35029. weight: math.unit(1200, "lb"),
  35030. name: "Back",
  35031. image: {
  35032. source: "./media/characters/eleanor/back.svg",
  35033. extra: 1242/1184,
  35034. bottom: 60/1302
  35035. }
  35036. },
  35037. head: {
  35038. height: math.unit(2.62, "feet"),
  35039. name: "Head",
  35040. image: {
  35041. source: "./media/characters/eleanor/head.svg"
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(8 + 4/12, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(8 + 4/12, "feet"),
  35058. weight: math.unit(750, "lb"),
  35059. name: "Front",
  35060. image: {
  35061. source: "./media/characters/tanya/front.svg",
  35062. extra: 1749/1615,
  35063. bottom: 33/1782
  35064. }
  35065. },
  35066. },
  35067. [
  35068. {
  35069. name: "Normal",
  35070. height: math.unit(8 + 4/12, "feet"),
  35071. default: true
  35072. },
  35073. ]
  35074. ))
  35075. characterMakers.push(() => makeCharacter(
  35076. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35077. {
  35078. front: {
  35079. height: math.unit(5, "feet"),
  35080. weight: math.unit(225, "lb"),
  35081. name: "Front",
  35082. image: {
  35083. source: "./media/characters/cindy/front.svg",
  35084. extra: 1320/1250,
  35085. bottom: 42/1362
  35086. }
  35087. },
  35088. frontDressed: {
  35089. height: math.unit(5, "feet"),
  35090. weight: math.unit(225, "lb"),
  35091. name: "Front (Dressed)",
  35092. image: {
  35093. source: "./media/characters/cindy/front-dressed.svg",
  35094. extra: 1320/1250,
  35095. bottom: 42/1362
  35096. }
  35097. },
  35098. back: {
  35099. height: math.unit(5, "feet"),
  35100. weight: math.unit(225, "lb"),
  35101. name: "Back",
  35102. image: {
  35103. source: "./media/characters/cindy/back.svg",
  35104. extra: 1384/1346,
  35105. bottom: 14/1398
  35106. }
  35107. },
  35108. },
  35109. [
  35110. {
  35111. name: "Normal",
  35112. height: math.unit(5, "feet"),
  35113. default: true
  35114. },
  35115. ]
  35116. ))
  35117. characterMakers.push(() => makeCharacter(
  35118. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35119. {
  35120. front: {
  35121. height: math.unit(6 + 9/12, "feet"),
  35122. weight: math.unit(440, "lb"),
  35123. name: "Front",
  35124. image: {
  35125. source: "./media/characters/wilbur-owen/front.svg",
  35126. extra: 1575/1448,
  35127. bottom: 72/1647
  35128. }
  35129. },
  35130. back: {
  35131. height: math.unit(6 + 9/12, "feet"),
  35132. weight: math.unit(440, "lb"),
  35133. name: "Back",
  35134. image: {
  35135. source: "./media/characters/wilbur-owen/back.svg",
  35136. extra: 1578/1445,
  35137. bottom: 36/1614
  35138. }
  35139. },
  35140. },
  35141. [
  35142. {
  35143. name: "Normal",
  35144. height: math.unit(6 + 9/12, "feet"),
  35145. default: true
  35146. },
  35147. ]
  35148. ))
  35149. characterMakers.push(() => makeCharacter(
  35150. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35151. {
  35152. front: {
  35153. height: math.unit(6 + 5/12, "feet"),
  35154. weight: math.unit(650, "lb"),
  35155. name: "Front",
  35156. image: {
  35157. source: "./media/characters/keegan/front.svg",
  35158. extra: 2387/2198,
  35159. bottom: 33/2420
  35160. }
  35161. },
  35162. side: {
  35163. height: math.unit(6 + 5/12, "feet"),
  35164. weight: math.unit(650, "lb"),
  35165. name: "Side",
  35166. image: {
  35167. source: "./media/characters/keegan/side.svg",
  35168. extra: 2390/2202,
  35169. bottom: 47/2437
  35170. }
  35171. },
  35172. back: {
  35173. height: math.unit(6 + 5/12, "feet"),
  35174. weight: math.unit(650, "lb"),
  35175. name: "Back",
  35176. image: {
  35177. source: "./media/characters/keegan/back.svg",
  35178. extra: 2418/2268,
  35179. bottom: 15/2433
  35180. }
  35181. },
  35182. frontSfw: {
  35183. height: math.unit(6 + 5/12, "feet"),
  35184. weight: math.unit(650, "lb"),
  35185. name: "Front (SFW)",
  35186. image: {
  35187. source: "./media/characters/keegan/front-sfw.svg",
  35188. extra: 2387/2198,
  35189. bottom: 33/2420
  35190. }
  35191. },
  35192. beans: {
  35193. height: math.unit(1.85, "feet"),
  35194. name: "Beans",
  35195. image: {
  35196. source: "./media/characters/keegan/beans.svg"
  35197. }
  35198. },
  35199. },
  35200. [
  35201. {
  35202. name: "Normal",
  35203. height: math.unit(6 + 5/12, "feet"),
  35204. default: true
  35205. },
  35206. ]
  35207. ))
  35208. characterMakers.push(() => makeCharacter(
  35209. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35210. {
  35211. front: {
  35212. height: math.unit(9, "feet"),
  35213. name: "Front",
  35214. image: {
  35215. source: "./media/characters/colton/front.svg",
  35216. extra: 1589/1326,
  35217. bottom: 139/1728
  35218. }
  35219. },
  35220. },
  35221. [
  35222. {
  35223. name: "Normal",
  35224. height: math.unit(9, "feet"),
  35225. default: true
  35226. },
  35227. ]
  35228. ))
  35229. characterMakers.push(() => makeCharacter(
  35230. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35231. {
  35232. front: {
  35233. height: math.unit(2 + 9/12, "feet"),
  35234. name: "Front",
  35235. image: {
  35236. source: "./media/characters/bora/front.svg",
  35237. extra: 1265/1250,
  35238. bottom: 24/1289
  35239. }
  35240. },
  35241. },
  35242. [
  35243. {
  35244. name: "Normal",
  35245. height: math.unit(2 + 9/12, "feet"),
  35246. default: true
  35247. },
  35248. ]
  35249. ))
  35250. characterMakers.push(() => makeCharacter(
  35251. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35252. {
  35253. front: {
  35254. height: math.unit(8, "feet"),
  35255. name: "Front",
  35256. image: {
  35257. source: "./media/characters/myu-myu/front.svg",
  35258. extra: 1949/1857,
  35259. bottom: 90/2039
  35260. }
  35261. },
  35262. },
  35263. [
  35264. {
  35265. name: "Normal",
  35266. height: math.unit(8, "feet"),
  35267. default: true
  35268. },
  35269. {
  35270. name: "Big",
  35271. height: math.unit(15, "feet")
  35272. },
  35273. {
  35274. name: "BIG",
  35275. height: math.unit(25, "feet")
  35276. },
  35277. ]
  35278. ))
  35279. characterMakers.push(() => makeCharacter(
  35280. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35281. {
  35282. side: {
  35283. height: math.unit(7 + 5/12, "feet"),
  35284. weight: math.unit(2800, "lb"),
  35285. name: "Side",
  35286. image: {
  35287. source: "./media/characters/haloren/side.svg",
  35288. extra: 1793/409,
  35289. bottom: 59/1852
  35290. }
  35291. },
  35292. frontPaw: {
  35293. height: math.unit(2.36, "feet"),
  35294. name: "Front paw",
  35295. image: {
  35296. source: "./media/characters/haloren/front-paw.svg"
  35297. }
  35298. },
  35299. hindPaw: {
  35300. height: math.unit(3.18, "feet"),
  35301. name: "Hind paw",
  35302. image: {
  35303. source: "./media/characters/haloren/hind-paw.svg"
  35304. }
  35305. },
  35306. maw: {
  35307. height: math.unit(5.05, "feet"),
  35308. name: "Maw",
  35309. image: {
  35310. source: "./media/characters/haloren/maw.svg"
  35311. }
  35312. },
  35313. dick: {
  35314. height: math.unit(2.90, "feet"),
  35315. name: "Dick",
  35316. image: {
  35317. source: "./media/characters/haloren/dick.svg"
  35318. }
  35319. },
  35320. },
  35321. [
  35322. {
  35323. name: "Normal",
  35324. height: math.unit(7 + 5/12, "feet"),
  35325. default: true
  35326. },
  35327. {
  35328. name: "Enhanced",
  35329. height: math.unit(14 + 3/12, "feet")
  35330. },
  35331. ]
  35332. ))
  35333. characterMakers.push(() => makeCharacter(
  35334. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35335. {
  35336. front: {
  35337. height: math.unit(171, "cm"),
  35338. name: "Front",
  35339. image: {
  35340. source: "./media/characters/kimmy/front.svg",
  35341. extra: 1491/1435,
  35342. bottom: 53/1544
  35343. }
  35344. },
  35345. },
  35346. [
  35347. {
  35348. name: "Small",
  35349. height: math.unit(9, "cm")
  35350. },
  35351. {
  35352. name: "Normal",
  35353. height: math.unit(171, "cm"),
  35354. default: true
  35355. },
  35356. ]
  35357. ))
  35358. characterMakers.push(() => makeCharacter(
  35359. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35360. {
  35361. front: {
  35362. height: math.unit(8, "feet"),
  35363. weight: math.unit(300, "lb"),
  35364. name: "Front",
  35365. image: {
  35366. source: "./media/characters/galeboomer/front.svg",
  35367. extra: 4651/4415,
  35368. bottom: 162/4813
  35369. }
  35370. },
  35371. back: {
  35372. height: math.unit(8, "feet"),
  35373. weight: math.unit(300, "lb"),
  35374. name: "Back",
  35375. image: {
  35376. source: "./media/characters/galeboomer/back.svg",
  35377. extra: 4544/4314,
  35378. bottom: 16/4560
  35379. }
  35380. },
  35381. frontAlt: {
  35382. height: math.unit(8, "feet"),
  35383. weight: math.unit(300, "lb"),
  35384. name: "Front (Alt)",
  35385. image: {
  35386. source: "./media/characters/galeboomer/front-alt.svg",
  35387. extra: 4458/4228,
  35388. bottom: 68/4526
  35389. }
  35390. },
  35391. maw: {
  35392. height: math.unit(1.2, "feet"),
  35393. name: "Maw",
  35394. image: {
  35395. source: "./media/characters/galeboomer/maw.svg"
  35396. }
  35397. },
  35398. },
  35399. [
  35400. {
  35401. name: "Normal",
  35402. height: math.unit(8, "feet"),
  35403. default: true
  35404. },
  35405. ]
  35406. ))
  35407. characterMakers.push(() => makeCharacter(
  35408. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35409. {
  35410. front: {
  35411. height: math.unit(5 + 9/12, "feet"),
  35412. weight: math.unit(120, "lb"),
  35413. name: "Front",
  35414. image: {
  35415. source: "./media/characters/chyr/front.svg",
  35416. extra: 1323/1254,
  35417. bottom: 63/1386
  35418. }
  35419. },
  35420. back: {
  35421. height: math.unit(5 + 9/12, "feet"),
  35422. weight: math.unit(120, "lb"),
  35423. name: "Back",
  35424. image: {
  35425. source: "./media/characters/chyr/back.svg",
  35426. extra: 1323/1252,
  35427. bottom: 48/1371
  35428. }
  35429. },
  35430. },
  35431. [
  35432. {
  35433. name: "Normal",
  35434. height: math.unit(5 + 9/12, "feet"),
  35435. default: true
  35436. },
  35437. ]
  35438. ))
  35439. characterMakers.push(() => makeCharacter(
  35440. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35441. {
  35442. front: {
  35443. height: math.unit(7, "feet"),
  35444. weight: math.unit(310, "lb"),
  35445. name: "Front",
  35446. image: {
  35447. source: "./media/characters/solarus/front.svg",
  35448. extra: 2415/2021,
  35449. bottom: 103/2518
  35450. }
  35451. },
  35452. back: {
  35453. height: math.unit(7, "feet"),
  35454. weight: math.unit(310, "lb"),
  35455. name: "Back",
  35456. image: {
  35457. source: "./media/characters/solarus/back.svg",
  35458. extra: 2463/2089,
  35459. bottom: 79/2542
  35460. }
  35461. },
  35462. },
  35463. [
  35464. {
  35465. name: "Normal",
  35466. height: math.unit(7, "feet"),
  35467. default: true
  35468. },
  35469. ]
  35470. ))
  35471. characterMakers.push(() => makeCharacter(
  35472. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35473. {
  35474. front: {
  35475. height: math.unit(16, "feet"),
  35476. name: "Front",
  35477. image: {
  35478. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35479. extra: 1844/1780,
  35480. bottom: 58/1902
  35481. }
  35482. },
  35483. },
  35484. [
  35485. {
  35486. name: "Normal",
  35487. height: math.unit(16, "feet"),
  35488. default: true
  35489. },
  35490. ]
  35491. ))
  35492. characterMakers.push(() => makeCharacter(
  35493. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35494. {
  35495. front: {
  35496. height: math.unit(11 + 6/12, "feet"),
  35497. weight: math.unit(1366, "lb"),
  35498. name: "Front",
  35499. image: {
  35500. source: "./media/characters/lexor/front.svg",
  35501. extra: 1560/1481,
  35502. bottom: 211/1771
  35503. }
  35504. },
  35505. back: {
  35506. height: math.unit(11 + 6/12, "feet"),
  35507. weight: math.unit(1366, "lb"),
  35508. name: "Back",
  35509. image: {
  35510. source: "./media/characters/lexor/back.svg",
  35511. extra: 1614/1533,
  35512. bottom: 76/1690
  35513. }
  35514. },
  35515. maw: {
  35516. height: math.unit(3, "feet"),
  35517. name: "Maw",
  35518. image: {
  35519. source: "./media/characters/lexor/maw.svg"
  35520. }
  35521. },
  35522. dick: {
  35523. height: math.unit(2.59, "feet"),
  35524. name: "Dick",
  35525. image: {
  35526. source: "./media/characters/lexor/dick.svg"
  35527. }
  35528. },
  35529. },
  35530. [
  35531. {
  35532. name: "Normal",
  35533. height: math.unit(11 + 6/12, "feet"),
  35534. default: true
  35535. },
  35536. ]
  35537. ))
  35538. characterMakers.push(() => makeCharacter(
  35539. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35540. {
  35541. front: {
  35542. height: math.unit(5 + 8/12, "feet"),
  35543. name: "Front",
  35544. image: {
  35545. source: "./media/characters/magnum/front.svg",
  35546. extra: 942/855,
  35547. bottom: 26/968
  35548. }
  35549. },
  35550. },
  35551. [
  35552. {
  35553. name: "Normal",
  35554. height: math.unit(5 + 8/12, "feet"),
  35555. default: true
  35556. },
  35557. ]
  35558. ))
  35559. characterMakers.push(() => makeCharacter(
  35560. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35561. {
  35562. front: {
  35563. height: math.unit(18 + 4/12, "feet"),
  35564. weight: math.unit(1500, "kg"),
  35565. name: "Front",
  35566. image: {
  35567. source: "./media/characters/solas-sharpsman/front.svg",
  35568. extra: 1698/1589,
  35569. bottom: 0/1698
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(18 + 4/12, "feet"),
  35577. default: true
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35583. {
  35584. front: {
  35585. height: math.unit(5 + 5/12, "feet"),
  35586. weight: math.unit(180, "lb"),
  35587. name: "Front",
  35588. image: {
  35589. source: "./media/characters/october/front.svg",
  35590. extra: 1800/1650,
  35591. bottom: 0/1800
  35592. }
  35593. },
  35594. frontNsfw: {
  35595. height: math.unit(5 + 5/12, "feet"),
  35596. weight: math.unit(180, "lb"),
  35597. name: "Front (NSFW)",
  35598. image: {
  35599. source: "./media/characters/october/front-nsfw.svg",
  35600. extra: 1392/1307,
  35601. bottom: 42/1434
  35602. }
  35603. },
  35604. },
  35605. [
  35606. {
  35607. name: "Normal",
  35608. height: math.unit(5 + 5/12, "feet"),
  35609. default: true
  35610. },
  35611. ]
  35612. ))
  35613. characterMakers.push(() => makeCharacter(
  35614. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35615. {
  35616. front: {
  35617. height: math.unit(8 + 6/12, "feet"),
  35618. name: "Front",
  35619. image: {
  35620. source: "./media/characters/essynkardi/front.svg",
  35621. extra: 1914/1846,
  35622. bottom: 22/1936
  35623. }
  35624. },
  35625. },
  35626. [
  35627. {
  35628. name: "Normal",
  35629. height: math.unit(8 + 6/12, "feet"),
  35630. default: true
  35631. },
  35632. ]
  35633. ))
  35634. characterMakers.push(() => makeCharacter(
  35635. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35636. {
  35637. front: {
  35638. height: math.unit(6 + 6/12, "feet"),
  35639. weight: math.unit(7, "lb"),
  35640. name: "Front",
  35641. image: {
  35642. source: "./media/characters/icky/front.svg",
  35643. extra: 813/782,
  35644. bottom: 66/879
  35645. }
  35646. },
  35647. back: {
  35648. height: math.unit(6 + 6/12, "feet"),
  35649. weight: math.unit(7, "lb"),
  35650. name: "Back",
  35651. image: {
  35652. source: "./media/characters/icky/back.svg",
  35653. extra: 754/735,
  35654. bottom: 56/810
  35655. }
  35656. },
  35657. },
  35658. [
  35659. {
  35660. name: "Normal",
  35661. height: math.unit(6 + 6/12, "feet"),
  35662. default: true
  35663. },
  35664. ]
  35665. ))
  35666. characterMakers.push(() => makeCharacter(
  35667. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35668. {
  35669. front: {
  35670. height: math.unit(15, "feet"),
  35671. name: "Front",
  35672. image: {
  35673. source: "./media/characters/rojas/front.svg",
  35674. extra: 1462/1408,
  35675. bottom: 95/1557
  35676. }
  35677. },
  35678. back: {
  35679. height: math.unit(15, "feet"),
  35680. name: "Back",
  35681. image: {
  35682. source: "./media/characters/rojas/back.svg",
  35683. extra: 1023/954,
  35684. bottom: 28/1051
  35685. }
  35686. },
  35687. },
  35688. [
  35689. {
  35690. name: "Normal",
  35691. height: math.unit(15, "feet"),
  35692. default: true
  35693. },
  35694. ]
  35695. ))
  35696. characterMakers.push(() => makeCharacter(
  35697. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35698. {
  35699. frontHuman: {
  35700. height: math.unit(5 + 7/12, "feet"),
  35701. name: "Front (Human)",
  35702. image: {
  35703. source: "./media/characters/alek-dryagan/front-human.svg",
  35704. extra: 1687/1667,
  35705. bottom: 69/1756
  35706. }
  35707. },
  35708. backHuman: {
  35709. height: math.unit(5 + 7/12, "feet"),
  35710. name: "Back (Human)",
  35711. image: {
  35712. source: "./media/characters/alek-dryagan/back-human.svg",
  35713. extra: 1670/1649,
  35714. bottom: 65/1735
  35715. }
  35716. },
  35717. frontDemi: {
  35718. height: math.unit(65, "feet"),
  35719. name: "Front (Demi)",
  35720. image: {
  35721. source: "./media/characters/alek-dryagan/front-demi.svg",
  35722. extra: 1669/1642,
  35723. bottom: 49/1718
  35724. }
  35725. },
  35726. backDemi: {
  35727. height: math.unit(65, "feet"),
  35728. name: "Back (Demi)",
  35729. image: {
  35730. source: "./media/characters/alek-dryagan/back-demi.svg",
  35731. extra: 1658/1637,
  35732. bottom: 40/1698
  35733. }
  35734. },
  35735. mawHuman: {
  35736. height: math.unit(0.3, "feet"),
  35737. name: "Maw (Human)",
  35738. image: {
  35739. source: "./media/characters/alek-dryagan/maw-human.svg"
  35740. }
  35741. },
  35742. mawDemi: {
  35743. height: math.unit(3.8, "feet"),
  35744. name: "Maw (Demi)",
  35745. image: {
  35746. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35747. }
  35748. },
  35749. },
  35750. [
  35751. {
  35752. name: "Normal",
  35753. height: math.unit(5 + 7/12, "feet"),
  35754. default: true
  35755. },
  35756. ]
  35757. ))
  35758. characterMakers.push(() => makeCharacter(
  35759. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35760. {
  35761. frontHuman: {
  35762. height: math.unit(5 + 2/12, "feet"),
  35763. name: "Front (Human)",
  35764. image: {
  35765. source: "./media/characters/gen/front-human.svg",
  35766. extra: 1627/1538,
  35767. bottom: 71/1698
  35768. }
  35769. },
  35770. backHuman: {
  35771. height: math.unit(5 + 2/12, "feet"),
  35772. name: "Back (Human)",
  35773. image: {
  35774. source: "./media/characters/gen/back-human.svg",
  35775. extra: 1638/1548,
  35776. bottom: 69/1707
  35777. }
  35778. },
  35779. frontDemi: {
  35780. height: math.unit(5 + 2/12, "feet"),
  35781. name: "Front (Demi)",
  35782. image: {
  35783. source: "./media/characters/gen/front-demi.svg",
  35784. extra: 1627/1538,
  35785. bottom: 71/1698
  35786. }
  35787. },
  35788. backDemi: {
  35789. height: math.unit(5 + 2/12, "feet"),
  35790. name: "Back (Demi)",
  35791. image: {
  35792. source: "./media/characters/gen/back-demi.svg",
  35793. extra: 1638/1548,
  35794. bottom: 69/1707
  35795. }
  35796. },
  35797. },
  35798. [
  35799. {
  35800. name: "Normal",
  35801. height: math.unit(5 + 2/12, "feet"),
  35802. default: true
  35803. },
  35804. ]
  35805. ))
  35806. characterMakers.push(() => makeCharacter(
  35807. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35808. {
  35809. frontImp: {
  35810. height: math.unit(1 + 11/12, "feet"),
  35811. name: "Front (Imp)",
  35812. image: {
  35813. source: "./media/characters/max-kobold/front-imp.svg",
  35814. extra: 1238/1134,
  35815. bottom: 81/1319
  35816. }
  35817. },
  35818. backImp: {
  35819. height: math.unit(1 + 11/12, "feet"),
  35820. name: "Back (Imp)",
  35821. image: {
  35822. source: "./media/characters/max-kobold/back-imp.svg",
  35823. extra: 1334/1175,
  35824. bottom: 34/1368
  35825. }
  35826. },
  35827. frontDemi: {
  35828. height: math.unit(5 + 9/12, "feet"),
  35829. name: "Front (Demi)",
  35830. image: {
  35831. source: "./media/characters/max-kobold/front-demi.svg",
  35832. extra: 1715/1685,
  35833. bottom: 54/1769
  35834. }
  35835. },
  35836. backDemi: {
  35837. height: math.unit(5 + 9/12, "feet"),
  35838. name: "Back (Demi)",
  35839. image: {
  35840. source: "./media/characters/max-kobold/back-demi.svg",
  35841. extra: 1752/1729,
  35842. bottom: 41/1793
  35843. }
  35844. },
  35845. handImp: {
  35846. height: math.unit(0.45, "feet"),
  35847. name: "Hand (Imp)",
  35848. image: {
  35849. source: "./media/characters/max-kobold/hand.svg"
  35850. }
  35851. },
  35852. pawImp: {
  35853. height: math.unit(0.46, "feet"),
  35854. name: "Paw (Imp)",
  35855. image: {
  35856. source: "./media/characters/max-kobold/paw.svg"
  35857. }
  35858. },
  35859. handDemi: {
  35860. height: math.unit(0.80, "feet"),
  35861. name: "Hand (Demi)",
  35862. image: {
  35863. source: "./media/characters/max-kobold/hand.svg"
  35864. }
  35865. },
  35866. pawDemi: {
  35867. height: math.unit(1.1, "feet"),
  35868. name: "Paw (Demi)",
  35869. image: {
  35870. source: "./media/characters/max-kobold/paw.svg"
  35871. }
  35872. },
  35873. headImp: {
  35874. height: math.unit(1.33, "feet"),
  35875. name: "Head (Imp)",
  35876. image: {
  35877. source: "./media/characters/max-kobold/head-imp.svg"
  35878. }
  35879. },
  35880. mawImp: {
  35881. height: math.unit(0.75, "feet"),
  35882. name: "Maw (Imp)",
  35883. image: {
  35884. source: "./media/characters/max-kobold/maw-imp.svg"
  35885. }
  35886. },
  35887. mawDemi: {
  35888. height: math.unit(0.42, "feet"),
  35889. name: "Maw (Demi)",
  35890. image: {
  35891. source: "./media/characters/max-kobold/maw-demi.svg"
  35892. }
  35893. },
  35894. },
  35895. [
  35896. {
  35897. name: "Normal",
  35898. height: math.unit(1 + 11/12, "feet"),
  35899. default: true
  35900. },
  35901. ]
  35902. ))
  35903. characterMakers.push(() => makeCharacter(
  35904. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35905. {
  35906. front: {
  35907. height: math.unit(7 + 5/12, "feet"),
  35908. name: "Front",
  35909. image: {
  35910. source: "./media/characters/carbon/front.svg",
  35911. extra: 1754/1689,
  35912. bottom: 65/1819
  35913. }
  35914. },
  35915. back: {
  35916. height: math.unit(7 + 5/12, "feet"),
  35917. name: "Back",
  35918. image: {
  35919. source: "./media/characters/carbon/back.svg",
  35920. extra: 1762/1695,
  35921. bottom: 24/1786
  35922. }
  35923. },
  35924. frontGigantamax: {
  35925. height: math.unit(150, "feet"),
  35926. name: "Front (Gigantamax)",
  35927. image: {
  35928. source: "./media/characters/carbon/front-gigantamax.svg",
  35929. extra: 1826/1669,
  35930. bottom: 59/1885
  35931. }
  35932. },
  35933. backGigantamax: {
  35934. height: math.unit(150, "feet"),
  35935. name: "Back (Gigantamax)",
  35936. image: {
  35937. source: "./media/characters/carbon/back-gigantamax.svg",
  35938. extra: 1796/1653,
  35939. bottom: 53/1849
  35940. }
  35941. },
  35942. maw: {
  35943. height: math.unit(0.48, "feet"),
  35944. name: "Maw",
  35945. image: {
  35946. source: "./media/characters/carbon/maw.svg"
  35947. }
  35948. },
  35949. mawGigantamax: {
  35950. height: math.unit(7.5, "feet"),
  35951. name: "Maw (Gigantamax)",
  35952. image: {
  35953. source: "./media/characters/carbon/maw-gigantamax.svg"
  35954. }
  35955. },
  35956. },
  35957. [
  35958. {
  35959. name: "Normal",
  35960. height: math.unit(7 + 5/12, "feet"),
  35961. default: true
  35962. },
  35963. ]
  35964. ))
  35965. characterMakers.push(() => makeCharacter(
  35966. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  35967. {
  35968. front: {
  35969. height: math.unit(6, "feet"),
  35970. name: "Front",
  35971. image: {
  35972. source: "./media/characters/maverick/front.svg",
  35973. extra: 1672/1661,
  35974. bottom: 85/1757
  35975. }
  35976. },
  35977. back: {
  35978. height: math.unit(6, "feet"),
  35979. name: "Back",
  35980. image: {
  35981. source: "./media/characters/maverick/back.svg",
  35982. extra: 1642/1631,
  35983. bottom: 38/1680
  35984. }
  35985. },
  35986. },
  35987. [
  35988. {
  35989. name: "Normal",
  35990. height: math.unit(6, "feet"),
  35991. default: true
  35992. },
  35993. ]
  35994. ))
  35995. //characters
  35996. function makeCharacters() {
  35997. const results = [];
  35998. characterMakers.forEach(character => {
  35999. results.push(character());
  36000. });
  36001. return results;
  36002. }